2010-05-11 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / metadata / ChangeLog
1 2010-05-11  Miguel de Icaza  <miguel@novell.com>
2
3         * console-unix.c: Signal handlers now save and restore errno.   We
4         have never had a bug report about this, ioctl does change errno. 
5
6         Hide the unused method.   
7
8         Remove internal declarations from public headers.
9
10         Document what the signal handler is doing
11
12 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
13
14         * sgen-gc.c (clear_unreachable_ephemerons): Clear
15         unreachable keys with a tombstone.
16
17         * sgen-gc.c (mark_ephemerons_in_range): Ignore
18         tombstone keys.
19
20 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
21
22         * icall-def.h:
23         * gc-internals.h:
24         * gc.c: New GC:get_ephemeron_tombstone.
25
26 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
27
28         * appdomain.c (create_exceptions): Rename to
29         create_domain_objects. Create the ephemeron tombstone object.
30
31         * domains-internals.h (MonoDomain): Add new field for the
32         ephemeron tombstone.
33
34         * domain.c (mono_domain_free): Set ephemeron_tombstone to
35         NULL.
36
37 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
38
39         * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
40         and dislinks must be processed before LOS since they
41         could end up with pointers to memory returned to the
42         OS.
43
44 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
45
46         * class.c (mono_class_alloc): New helper function to centralize memory allocation
47         for classes, allocates either from the image mempool or from the heap.
48
49         * class.c: Use mono_class_alloc to allocate memory owned by classes.
50
51         * metadata.c (free_generic_class_dependents): Free more items belonging to
52         generic classes.
53
54 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
55
56         * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
57         as well. Fixes #604054.
58
59 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
60
61         * metadata-verify.c: MS doesn't mind duplicates in the
62         typeref table. Move it to full verification.
63
64         Fixes #600508.
65
66 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
67
68         * image.c (do_mono_image_load): Report verification
69         errors when loading an image fails.
70
71 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
72
73         * reflection.c (mono_type_get_object): Remove chunk of code
74         no longer in use.
75
76 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
77
78         * icall-def.h
79         * icall.c: Delete some unused icalls.
80
81 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
82
83         * appdomain.c (mono_domain_has_type_resolve): Check for
84         NULL domain objects to make pedump happy.
85
86         * object.c (mono_field_get_value): Assert on NULL object.
87         It's the caller resposibility to check for this.
88
89         * object.c (mono_field_get_value_object): Ditto.
90
91         Fixes #601384.
92
93 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
94
95         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
96         checks can avoid doing a mono_class_init.
97
98         * icall.c: Remove mono_class_init from a bunch of icalls that
99         don't need it.
100
101         Hopefully we're now lazy enough to fix most victims of #601431.
102
103 2010-05-07  Mark Probst  <mark.probst@gmail.com>
104
105         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
106
107 2010-05-07  Mark Probst  <mark.probst@gmail.com>
108
109         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
110
111 2010-05-07  Marek Habersack  <mhabersack@novell.com>
112
113         * culture-info-tables.h: updated to include en-TT culture. Fixes
114         bug #594035
115
116 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
117
118         Move mono_class_init from mono_type_get_object to icalls.
119         This causes massive memory savings for Assembly::GetTypes () and
120         make it fail a lot less due to missing dependencies.
121
122         This is a conservative, naive change as it doesn't remove some
123         mono_class_init from places that might not need them. Carefull
124         review of those should follow.
125
126         * reflection.c (mono_type_get_object): Don't mono_class_init the
127         returning type.
128
129         * reflection.c:
130         * cominterop.c:
131         * icall.c:
132         * marshal.c: Call mono_class_init in functions receiving a MonoType
133         object.
134
135         First step into fixing #601431.
136
137 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
138
139         * gc-internal.h: Add new functions required for ephemeron support.
140
141         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
142
143         * icall-def.h: Add GC::register_ephemeron_array.
144
145         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
146         under sgen. Its fields must not be marked.
147
148         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
149
150         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
151         handling finalizable objects. Clean dead ones after all finalizable
152         handling.
153
154         * sgen-gc.c (dump_heap): Add new kind of internal memory.
155
156         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
157         arrays from the dead domain.
158
159         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
160
161         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
162         whose keys are reachable.
163
164         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
165         list of live ephemeron arrays.
166
167 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
168
169         * class.c (mono_class_layout_fields): Don't perform alignment
170         if align is zero.
171
172         * class.c (mono_class_layout_fields): Init field related information
173         to sane defaults.
174
175 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
176
177         * verify.c (mono_verifier_verify_class): Verify the constraint
178         of generic type definitions.
179
180 2010-05-04  Mark Probst  <mark.probst@gmail.com>
181
182         * sgen-marksweep.c: Simplify free list maintenance in sweep.
183
184 2010-05-02  Mark Probst  <mark.probst@gmail.com>
185
186         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
187         major_do_collection() across the two major collectors.
188
189 2010-05-02  Mark Probst  <mark.probst@gmail.com>
190
191         * sgen-gc.c: Add heavy statistics counter for re-added global
192         remsets.
193
194 2010-05-02  Mark Probst  <mark.probst@gmail.com>
195
196         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
197         get rid of a division in critical code.
198
199 2010-04-29  Mark Probst  <mark.probst@gmail.com>
200
201         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
202         blocks for objects without references in mark&sweep, to improve
203         performance.
204
205 2010-04-28  Mark Probst  <mark.probst@gmail.com>
206
207         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
208         statistics up-to-date.
209
210 2010-04-27  Mark Probst  <mark.probst@gmail.com>
211
212         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
213         heap-dump for mark&sweep.
214
215 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
216
217         * loader.c (mono_method_get_header): Move the is_inflated case before the
218         wrapper case, as a method can be both.
219
220 2010-04-27  Mark Probst  <mark.probst@gmail.com>
221
222         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
223         separate pass to scan pinned and large object but use the gray
224         queue like for regular objects.
225
226 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
227
228         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
229         string.h for memmove.
230
231         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
232         ipaddress_to_struct_in6_addr() is only needed when
233         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
234
235 2010-04-25  Mark Probst  <mark.probst@gmail.com>
236
237         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
238         separate copy_object functions for major vs nursery.  Allows us to
239         get rid of a few checks and the start and end parameters for many
240         functions.
241
242 2010-04-25  Mark Probst  <mark.probst@gmail.com>
243
244         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
245         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
246         collector.
247
248 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
249
250         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
251         calling setup_mono_type () since the nested parent could recursively reference
252         the nested class using generic constraints. Fixes #599469.
253
254 2010-04-24  Mark Probst  <mark.probst@gmail.com>
255
256         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
257         abstraction.
258
259 2010-04-24  Mark Probst  <mark.probst@gmail.com>
260
261         * sgen-gc.c: Remove more unneeded code.
262
263 2010-04-24  Mark Probst  <mark.probst@gmail.com>
264
265         * sgen-gc.c: Disable managed allocator and wbarrier when the
266         binary protocol is enabled.
267
268 2010-04-24  Mark Probst  <mark.probst@gmail.com>
269
270         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
271
272 2010-04-24  Mark Probst  <mark.probst@gmail.com>
273
274         * sgen-gc.c: Remove a few commented out and unneeded bits.
275
276 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
277
278         * threadpool.c: patch from Robert Nagy that fixes a nullref and
279         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
280
281 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
282
283         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
284         types.
285
286         Fixes #331126
287
288 2010-04-21  Mark Probst  <mark.probst@gmail.com>
289
290         * sgen-gc.c: Turn off semi-precise stack mark.
291
292 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
293
294         * reflection.c (mono_custom_attrs_from_index): Use right function
295         to free 'list' (i.e. g_list_free) if the verifier fails.
296
297 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
298
299                 * verify.c: Handle the case where mono_type_get_underlying_type_any
300                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
301                 and MONO_TYPE_VALUETYPE in those case.
302
303                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
304
305                 Hopefully Fixes #564253.
306
307 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
308
309         * domain-internals.h: made threadpool_jobs volatile.
310         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
311         all local jobs.
312         * threadpool.c:
313                 -When two threads try to initialize the socket IO pool,
314                 the second one waits until the intialization is finished
315                 instead of continuing right away.
316                 -Add checks for domain unload: no items added in this case.
317                 -Only measure the time every 10 elements added to the queue.
318                 This is an experiment since linux x86 gettimeofday() sucks.
319                 -Create new thread if there are none waiting for work items.
320                 -There was a missing decrement of the busy threads.
321                 -Make sure the local queue is cleaned up before exiting the
322                 thread when the program ends.
323
324 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
325
326         * reflection.c (mono_type_get_object): Normalize generics types
327         as to how managed code expect them to be. A generic instance over
328         the GTD arguments must have the same mirror as the GTD itself.
329
330         Fixes #473289.
331
332 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
333
334         * locales.c: Implement support for DISABLE_NORMALIZATION.
335
336 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
337
338         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
339         since it is not a MonoMethod.
340
341 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
342
343         * icall-def.h: Add get_RequiresElevatedPermissions icall to
344         System.Security.SecurityManager - used only by Moonlight
345         * security-core-clr.c|h: Add Elevated Trust/Permission support
346         for CoreCLR / Moonlight
347
348 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
349
350         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
351         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
352
353 2010-04-16  Marek Habersack  <mhabersack@novell.com>
354
355         * mono-perfcounters.c: added code for the "Mono
356         Memory/Total Physical Memory" performance counter.
357
358         * mono-perfcounters-def.h: added definition of the "Mono
359         Memory/Total Physical Memory" performance counter.
360
361 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
362
363         * class.c (mono_class_get_method_by_index): Return NULL
364         on type load failures.
365
366 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
367
368         * class.c (mono_class_from_typeref): Check if the supplied
369         image has an assembly bound to it.
370
371         Fixes #567884.
372
373 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
374
375         * loader.c (mono_method_get_signature_full): Use new function
376         inflate_generic_signature_checked to check for errors.
377
378         Fixes #560839.
379
380 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
381
382         * loader.c (inflate_generic_signature): Add _checked variant
383         and move this function to use it.
384
385 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
386
387         * class.c (mono_class_setup_vtable_general): Use error checking
388         version of mono_class_inflate_generic_method_full.
389
390         Fixes #596975.
391
392 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
393
394         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
395         error handling passing MonoError around.
396
397         Fixes #560336.
398
399 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
400
401         * socket-io.c: make GetHostByName ("") work on windows.
402         Fixes bug #456723.
403
404 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
405
406         * object-internals.h:
407         * threads.c: use a spin lock when accesing the per-thread appdomain
408         list.
409
410 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
411
412         * threads.c: no need to take the threads lock in push/pop appdomain.
413
414 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
415
416         * reflection.c (_mono_reflection_parse_type): MS supports
417         non-assembly-qualified types in a generic type parameter list
418         when enclosed in '[]' (which signals that they should be a fqn).
419
420         This breaks ECMA specs for how type names are encoded in cattr
421         blobs but F# does it.
422
423         Fixes #576342.
424
425 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
426
427         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
428         for instance methods/ctors.
429
430         Fixes #422113.
431
432 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
433
434         * reflection.c: Use the new verifier support for checking
435         custom attributes.
436
437         Fixes #595306.
438
439 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
440
441         * metadata-verify.c: Implement structural verification
442         of custom attributes. This check requires access to the
443         loader since to resolve the size of an enum we have to
444         look it up.
445         We don't check if named argumenments are encoded in a
446         compatible fashion to their underlying field/prop.
447         Maybe we should?
448
449         * verify-internals.h: Add two new cattr verification API.
450
451 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
452
453         * metadata-verify.c (decode_signature_header): Fix signature.
454
455 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
456
457         * verify.c (mono_verifier_is_enabled_for_method): Handle
458         assembly less images.
459
460         * verify.c (mono_verifier_is_class_full_trust): Ditto.
461
462 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
463
464         * loader.c (mono_method_signature_checked): Properly
465         init MonoError.
466
467         * loader.c (mono_method_signature): It's the calee
468         resposibility to init the error object.
469
470 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
471
472         * metadata-verify.c (decode_signature_header): Do proper
473         overflow checking.
474
475 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
476
477         * reflection.c: maintain the invariants required by
478         mono_class_layout_fields() also in typebuilder_setup_fields ().
479
480 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
481
482         * security-core-clr.c: Call mono_class_setup_methods in 
483         get_default_ctor before checking klass->methods. Fix typo in
484         comment
485
486 2010-04-10  Jb Evain  <jbevain@novell.com>
487
488         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
489         add .net 4.0 RTM version.
490
491 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
492
493         * reflection.c (resolve_object): Properly inflate generic
494         methods when a context is supplied.
495
496         Fixes #591226.
497
498 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
499
500         * verify.c (mono_method_verify): A switch op don't empty
501         the stack for the next one. Fixes a bug when running fsi
502         under --verify-all.
503
504 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
505
506         * metadata-verify.c (is_valid_standalonesig_blob): Accept
507         fields as valid standalone sig too. F# does generate them.
508
509         * metadata-verify.c (verify_typedef_table_full): Ignore
510         what <module> extends.
511
512 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
513
514         * verify.c (do_invoke_method): It's ok to do use call with
515         virtual, non-final methods if their class is sealed.
516
517 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
518
519         * icall.c (ves_icall_MonoField_GetValueInternal): This function
520         is a near identical copy of mono_field_get_value_object. So simply
521         call it.
522
523         * object.c (mono_field_get_value_object): Handle literal fields
524         on open generic classes.
525
526         Fixes #594942.
527
528 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
529
530         * reflection.c (mono_reflection_create_runtime_class): Setup
531         parent/supertype information again since it can be changed
532         without notice.
533
534 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
535
536         * verify.c (verify_type_compatibility_full): Properly handle
537         stores between arrays of primitives.
538
539         Fixes the verifier side of #555950.
540
541 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
542
543         class.c (mono_bounded_array_class_get): Properly init
544         cast_class to take the fact that uint[] and int[] can be
545         casted between each other.
546
547         Fixes #555950.
548
549 2010-04-07  Geoff Norton  <gnorton@novell.com>
550
551         * domain.c: Avoid a deadlock on osx.  Fixes #565765
552
553 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
554
555         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
556         builders. Fixes #594464.
557
558 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
559
560         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
561         waiting for all threads to suspend, as those threads can't be suspended.
562
563 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
564
565         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
566         to avoid crashes on newly created threads.
567
568 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
569
570         * file-io.c: reset the MonoIOStat structure in case of error.
571         Fixes bug #582667.
572
573 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
574
575         * class.c (print_implemented_interfaces): Print proper type name.
576
577         * class.c (mono_class_setup_vtable): Don't try that hard to produce
578         the override map for generic instances since it later ignored.
579
580         * class.c (mono_class_implement_interface_slow): Don't break for
581         dynamic generic instances.
582
583         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
584
585         * reflection.c (mono_reflection_method_get_handle): New method that
586         resolves a method handle.
587
588         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
589         case when we override methods from a dynamic generic instance interface.
590
591         Fixes #575941.
592
593 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
594
595         * threadpool.c: don't attempt to close the pipe when it has not been
596         created.
597
598 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
599
600         * threadpool.c: if there are no waiting threads, try to start a new
601         one. This fixes the not-so-random hangs in System.ServiceModel tests.
602         No need to use InterlockedCompareExchange to read volatile variables.
603
604 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
605
606         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
607         and reference types that point to the same class.
608
609         Fixes #565598.
610
611 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
612
613         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
614         when verifying compatibility between a generic instance and a generic
615         parameter.
616
617         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
618
619         * verify.c (stack_slot_stack_type_full_name): Improve verification type
620         name.
621
622         Fixes #587849.
623
624 2010-04-04  Mark Probst  <mark.probst@gmail.com>
625
626         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
627
628 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
629
630         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
631
632 2010-04-03  Marek Habersack  <mhabersack@novell.com>
633
634         * process.c: when cross-compiling with MinGW, force GetProcessId
635         lookup using GetProcAddress.
636
637 2010-04-02  Mark Probst  <mark.probst@gmail.com>
638
639         * sgen-gc.c: parse_environment_string_extract_number() must be
640         static.
641
642 2010-04-02  Mark Probst  <mark.probst@gmail.com>
643
644         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
645         gray_object_dequeue(), to make sure they're inlined.
646
647 2010-04-02  Mark Probst  <mark.probst@gmail.com>
648
649         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
650         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
651
652 2010-04-02  Jb Evain  <jbevain@novell.com>
653
654         * exception.c: remove dead code.
655
656 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
657
658         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
659         with mono-gc.h.
660
661 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
662
663         * sgen-gc.c: Make the nursery size adjustable by the
664         MONO_GC_PARAMS environment variable.
665
666         Code is contributed under MIT/X11 license.
667
668 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
669
670         * threadpool.c: threadpool threads wait is alertable.
671         Fixes bug #592964.
672         Reduced the stack size of the *poll_wait thread.
673
674 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
675
676         * exception.c|metadata-internals.h: Add new mono_get_exception_
677         field_access_msg and mono_get_exception_method_access_msg 
678         functions that accept a const char* parameter to provide more 
679         details when the exception is thrown.
680         * security-core-clr.c|h: Rework code to allow logging exceptions
681         (export MONO_LOG_MASK="security") and to supply more details in
682         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
683         mono_security_core_clr_is_field_access_allowed and 
684         mono_security_core_clr_is_call_allowed to return an exception,
685         with messages and logging, that can be emitted by method-to-ir.c
686
687 2010-04-01  Mark Probst  <mark.probst@gmail.com>
688
689         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
690         pinned object.
691
692 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
693
694         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
695         the assembly name is not well formed utf8. Fixes #567882.
696
697 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
698
699         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
700         the generic parameters from the builder. Fixes #473298.
701
702 2010-03-31  Miguel de Icaza  <miguel@novell.com>
703
704         * object.c (mono_class_proxy_vtable): Eliminate warning. 
705
706         * marshal.c (emit_marshal_boolean): Eliminate possible
707         uninitialized local warning. 
708
709 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
710
711         * class.c (mono_class_init): Postpone coreclr inheritance check
712         until the end of the initialization (so we can check up the 
713         default ctor manually for the core-clr inheritance rules).
714         * security-core-clr.c: Add the missing (undocumented) checks on
715         default constructors when verifying inheritance rules.
716
717 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
718
719         * domain-internals.h (MonoJitExceptionInfo): Add new field
720         handler_end to the data union. To be used to point the end
721         of a finally block.
722
723 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
724
725         * reflection.c: Add support for new v4 type
726         System.Reflection.MonoModule that is the concrete version
727         of Module which is abstract unver v4.
728
729 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
730
731         * class.c (mono_class_init): Don't set class failure after
732         inited = 1 is set. It must be done before.
733
734 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
735
736         * mono-config.c: Add support for OS "haiku"
737         * ChangeLog: Fix UTF-8 encoding
738
739         Code is contributed under MIT/X11 license.
740
741 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
742
743         * console-unix.c: fixed include logic for sys/ioctl.h.
744
745 2010-03-30  Mark Probst  <mark.probst@gmail.com>
746
747         * threads.c: Fix bitmap generation for TLS marking on 64 bit
748         systems.
749
750 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
751
752         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
753         unfinished/broken typebuilders.
754
755 2010-03-29  Mark Probst  <mark.probst@gmail.com>
756
757         * sgen-gc.c: Use the same heuristic for the LOS target that we use
758         for the minor section allowance.
759
760 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
761
762         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
763         "NoOptimization".
764
765 2010-03-29  Mark Probst  <mark.probst@gmail.com>
766
767         * sgen-gc.c: Count bytes allocated with heavy statistics.
768
769 2010-03-29  Mark Probst  <mark.probst@gmail.com>
770
771         * sgen-gc.c: More detailed time statistics.
772
773 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
774
775         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
776         fix the user defined mark interface to pass a pointer
777         to the object location and not the object itself.
778
779 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
780
781         * reflection.c (mono_method_body_get_object): Release
782         the method header before the call to CACHE_OBJECT since
783         this is a macro that returns.
784
785 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
786
787         * class.c (inflate_generic_type): mono_metadata_type_dup
788         already dupes array information, the g_memdup was just
789         leaking memory.
790
791 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
792
793         * verify.c: Add stack_peek function. Fix CEE_DUP
794         to not read from invalid memory if push did expand
795         the stack.
796
797 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
798
799         * verify.c: Remove old table verification code that has
800         been superseeded by the new metadata verifier.
801
802         * verify.h: Remove mono_image_verify_tables from the public
803         API.
804
805         * pedump.c: Fix for removed bits.
806
807 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
808
809         * verify.c: Allocate stack slows lazily to reduce stack usage
810         in case of methods with huge stacks. Reduces memory consumption
811         for mcs yyparse from 459Mb to 1.8Mb.
812
813 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
814
815         * threadpool.c: don't try executing items from domains being
816         unloaded. Fixes appdomain-async-invoke test.
817
818 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
819
820         * threadpool.c: spin while the threadpool initializes.
821         * mono-wsq.c: if the WSQ has not been initialized or has been shut
822         down, don't do anything.
823
824 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
825
826         * threads.c (mono_thread_create_internal): Set the GC type of the
827         threads_starting_up hash table.
828
829 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
830
831         * threadpool.c: reset 'state' to avoid returning non-null when the
832         event type is not found.
833
834 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
835
836         * sgen-gc.c: make copy_object () take the address of the
837         slot holding the reference. This allows saving memory stores
838         when not needed and it allows keeping track of oldspace->nursery
839         references for the card table code.
840
841 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
842
843         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
844
845         Code is contributed under MIT/X11 license.
846
847 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
848
849         * object.c, threads.c, threads-types.h, threads.h: make the
850         managed thread local storage references precisely tracked.
851
852 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
853
854         * threadpool.[ch]: reworked the threadpool:
855                 -Threadpool threads use a work-stealing queue. Adding a work
856                 item from a threadpool thread will queue it in the thread
857                 local queue without locking (in most cases).
858                 -epoll events are coalesced before being added to the IO
859                 queue.
860                 -Dynamically change the number of active threads
861                 -Changed the global queue to be more GC friendly
862
863         * class-internals.h: add 2 new performance counters for the number of
864         threads in the threadpool and the IO threadpool.
865
866         * object-internals.h: new field in MonoAsyncResult.
867         * icall-def.h: new internal call for queueing work items.
868
869         * Makefile.am: add 2 new files.
870
871         * appdomain.c: bump up corlib version.
872
873         * mono-wsq.[ch]: an implementation of a work-stealing queue.
874
875         * mono-perfcounters-def.h:
876         * mono-perfcounters.c: added 2 new performance counters.
877
878 2010-03-26  Mark Probst  <mark.probst@gmail.com>
879
880         * sgen-gc.c: More FIXME/TODO updates.
881
882 2010-03-25  Mark Probst  <mark.probst@gmail.com>
883
884         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
885         function mono_gc_invoke_with_gc_lock() which invokes a function
886         with the guarantee that no collection will occur during its execution.
887
888 2010-03-25  Mark Probst  <mark.probst@gmail.com>
889
890         * sgen-gc.c: Update a few comments.
891
892 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
893
894         * reflection.c: Add support for new v4 type
895         System.Reflection.MonoAssembly that is the concrete version
896         of Assembly which is abstract unver v4.
897
898 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
899
900         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
901         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
902
903         Expose a few macros that are needed for SR but not SRE to the
904         world (previous inside the SRE ifdef)
905
906 2010-03-24  Mark Probst  <mark.probst@gmail.com>
907
908         * sgen-gc.c (gc_register_current_thread): We need
909         stack_start_limit as well in the non-attribute pthread case.
910
911 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
912
913         * threads.c: Fix windows build.
914
915 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
916
917         * thread-types.h: Add mono_thread_resume_interruption.
918
919         * threads.c: Add mono_thread_resume_interruption, this
920         function should be called after the last protected handler
921         found at interruption time has finished.
922
923 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
924
925         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
926         Check MonoInternalThread's ::state instead of ::abort_exc
927         since the later can be lazily created.
928
929         This is specially problematic when running a finally block
930         under AbortRequested state. ResetAbort must work, but the
931         abort_exc object has not been created because interruption
932         has not began.
933
934 2010-03-22  Geoff Norton  <gnorton@novell.com>
935
936         * locales.c: Its possible for CFStringGetCStringPtr
937         to return null and not convert encodings.  Use
938         CFStringGetCString instead.
939
940 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
941
942         * class-internals.h, class.c, object.c: introduce compressed
943         interface bitmaps (for now only under small config): this saves
944         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
945         startups.
946
947 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
948
949         * mono-debug.c: don't try to get the method header, it causes a
950         deadlock and it is not used for anything anymore.
951
952 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
953
954         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
955         broken by the last change.
956
957 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
958
959         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
960         SOCK_RDM.
961         
962         Code is contributed under MIT/X11 license.
963
964 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
965
966         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
967         nursery.
968
969         Code is contributed under MIT/X11 license.
970
971 2010-03-19  Martin Baulig  <martin@ximian.com>
972
973         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
974         dummy field, containing an empty string.
975         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
976
977
978 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
979
980         * class.c: setup_interface_offsets() refactor to not call
981         mono_class_get_implemented_interfaces () more times than needed and
982         to reduce the runtime memory requirements to be O(num_interfaces)
983         instead of O(max_interface_id).
984
985 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
986
987         * mono-mlist.[ch]: add mono_mlist_set_next ().
988
989 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
990
991         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
992         associated changes to support holes in the protected range of a
993         try block.
994
995         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
996         retrieves the holes table from a given MonoJitInfo.
997
998 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
999
1000         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
1001         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
1002         hide the contents of the MonoString and MonoArray structs from the
1003         public API. Change the accessor macros to accessors functions where
1004         needed. Adjusted the array API to allow for pointer-sized lengths and
1005         starting positions, so 64 bit arrays can be optionally provided in an
1006         API compatible way if needed on 64 bit systems.
1007
1008 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
1009
1010         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
1011         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
1012
1013 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
1014
1015         * class-internals.h: remove the method header from MonoMethod since
1016         from now on it will be transient. We have a header pointer for method
1017         wrappers, since in that case we need to keep track of it. For this
1018         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
1019         structs now. The same happens with MonoMethodInflated.
1020         * class.c: reset the sre_method flag for inflated method structures:
1021         this makes the code that cares look at the header in the MonoMethodInflated
1022         structure.
1023         * loader.c: lookup the method header in the appropriate field now that
1024         it is removed from MonoMethod.
1025         * metadata-internals.h: add a flag to the method header to know if it
1026         can be freed inside mono_metadata_free_mh ().
1027         * method-builder.c: updates after moving the header field from
1028         MonoMethod to MonoMethodWrapper.
1029         * reflection.c: MonoMethods generated from Reflection.Emit use
1030         MonoMethodWrapper structs if they need a method header now (later take
1031         advantage of this and remove all the current unsafe uses of method_aux_hash).
1032         * metadata.c: make method header parsing not leak when verification
1033         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
1034         These changes save a few hundred KB of runtime memory in a mcs
1035         bootstrap or a monodevelop startup.
1036
1037 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1038
1039         * verify.c: Improve error message.
1040
1041 2010-03-12  Jb Evain  <jbevain@novell.com>
1042
1043         * reflection.c (add_exported_type): populate the exported
1044         table with the type's nested type.
1045
1046 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1047
1048         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
1049         can't read parentheses.
1050
1051 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1052
1053         * threads.c (thread_cleanup): Add a guard to dereferencing
1054         "thread" to avoid an unlikely race condition.
1055
1056 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
1057
1058         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
1059         instead of an empty string.
1060
1061 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1062
1063         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
1064         convert to a boolean, recent gcc versions compile this differently.
1065
1066 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1067
1068        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
1069        inlined.
1070
1071 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1072
1073         * sgen-gc.c (STRING_SIZE): Off by one.
1074
1075 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1076
1077         * sgen-archdep.h: Fix the signal context register access for
1078         AMD64.
1079
1080 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1081
1082         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
1083
1084 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1085
1086         * verify.c: Store the initial basic block returned by mono_basic_block_split
1087         so we can release the whole list and not just the first one.
1088
1089 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1090
1091         * verify.c, debug-helpers.c, profiler.c, loader.c,
1092         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1093         MonoMethodHeader a transient entity.
1094
1095 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
1096
1097         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1098         uncontrolled growth of the gray stack.
1099
1100         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1101         added items are removed first, improving cache locality. Avoid freeing queue
1102         segments in the fast path, use the list of segments as the free list, truncate
1103         it to its max size at the start of collection.
1104
1105 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1106
1107         * metadata-internals.h: more memory savings, both with small config and without.
1108
1109
1110 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1111
1112         * appdomain.c, domain-internals.h, domain.c, object.c:
1113         make class_vtable_hash into an array to reduce memory usage.
1114
1115 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1116
1117         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1118         object-internals.h, object.c, reflection.c, threadpool.c:
1119         reduce resource usage when the small config is selected.
1120         In particular, up to 64K of methods/fields/properties/events
1121         are allowed and "other" methods in events are ignored.
1122
1123 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1124
1125         * threads.c: reduce resource usage when compiled for a small config.
1126
1127 2010-03-05  Mark Probst  <mark.probst@gmail.com>
1128
1129         * sgen-gc.c: Also collect number of degraded-alloced objects with
1130         heavy statistics.
1131
1132 2010-03-04  Geoff Norton  <gnorton@novell.com>
1133
1134         * assembly.c: Only support OSX bundling if the bundle is 
1135         actually detectable.
1136
1137 2010-03-04  Geoff Norton  <gnorton@novell.com>
1138
1139         * loader.c: The marshal specs are freed at the end of the call
1140         but it explicitly frees the strings as well as the container,
1141         so we need to dup them too to avoid referencing free'd memory.
1142
1143 2010-03-04  Geoff Norton  <gnorton@novell.com>
1144
1145         * icall-def.h:
1146         * icall.c: Add a new private internal icall to construct
1147         an object from its type without running the ctor.
1148
1149 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1150
1151         * profiler.c: allow multiple profiler engines to be loaded
1152         at the same time.
1153
1154 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1155
1156         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1157         profiler event to track object moves.
1158
1159 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1160
1161         * object.c, profiler.c, profiler.h, string-icalls.c:
1162         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1163
1164 2010-03-03  Miguel de Icaza  <miguel@novell.com>
1165
1166         * decimal.c (mono_double2decimal): Add support for reducing the
1167         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
1168         expected.
1169
1170 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1171
1172         * icall-def.h:
1173         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1174
1175 2010-03-03  Marek Habersack  <mhabersack@novell.com>
1176
1177         * mono-config.c (mono_config_parse_assembly_bindings): added -
1178         parses assembly binding redirections from appdomain's config
1179         file.
1180
1181         * metadata-internals.h: added definition of a new function -
1182         mono_config_parse_assembly_bindings - to support parsing assembly
1183         binding redirections defined in appdomain's config file.
1184
1185         * domain-internals.h: added two new fields to _MonoDomain - a list
1186         of assembly bindings and a flag to parse the config file only
1187         once.
1188
1189         * assembly.c (assembly_binding_maps_name): empty culture name and
1190         NULL culture name are considered equal.
1191         (mono_assembly_apply_binding): added support for domain specific
1192         assembly binding redirections, read from the appdomain's
1193         configuration file. Fixes bug #580185
1194
1195 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
1196
1197         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
1198         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
1199         support.
1200
1201 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1202
1203         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
1204         from this function. The new function receive the parent token instead of a type.
1205
1206         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
1207         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
1208         typebuilders. This make it possible to properly encode generic type builders since
1209         their unmanaged type don't have generics data while unfinished.
1210
1211         Fixes #583655.
1212
1213 2010-03-02  Mark Probst  <mark.probst@gmail.com>
1214
1215         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
1216         writing binary log files (can be enabled by #define'ing
1217         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
1218         bugs in longer running programs.
1219
1220 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
1221
1222         * metadata.c: added some API documentation.
1223
1224 2010-03-01  Robert Jordan  <robertj@gmx.net>
1225
1226         * filewatcher.h: Include glib.h to fix the MSVC build.
1227
1228 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1229
1230         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
1231         a GC handle instead. This is a bit slower to access, but avoids burdening the
1232         GC with 100s of individual roots.
1233
1234         * reflection.c (mono_class_get_ref_info):
1235         (mono_class_set_ref_info):
1236         (mono_class_free_ref_info): New internal helper fuctions.
1237
1238         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
1239         of accessing klass->reflection_info directly.
1240
1241         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
1242         words.
1243
1244         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
1245         the previous array.
1246
1247 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
1248
1249         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
1250         needs an indirection.
1251
1252 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1253
1254         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
1255         so all generic sharing code is in one place.
1256
1257         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
1258         we don't call setup_interface_offsets () for unfinished types.
1259
1260 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1261
1262         * class.c (mono_class_generic_sharing_enabled): Move this to
1263         generic-sharing.c.
1264
1265         * image.c: Add an unload hook which is called before an image is unloaded.
1266
1267         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
1268         metadata.c having to depend on generic sharing.
1269
1270 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1271
1272         * class.c: reduce size of ridiculously large cache.
1273
1274 2010-02-26  Martin Baulig  <martin@ximian.com>
1275
1276         * mono-debug.h
1277         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
1278
1279         * threads.c (mono_thread_internal_reset_abort): New method; resets
1280         the abort, but doesn't throw any exception if no abort was requested.
1281
1282 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1283
1284         * class.c (get_implicit_generic_array_interfaces): Call
1285         mono_class_setup_interface_offsets () before accessing
1286         eclass->interface_offsets_count. This only shows up on platforms without IMT for
1287         some reason.
1288
1289 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1290
1291         * environment.c, environment.h, icall.c: make the GetOSVersionString()
1292         icall internal.
1293
1294 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
1295
1296         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
1297         direct access to the MonoType fields.
1298
1299 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1300
1301         * threads.h: Move some internal functions which were added to this header by
1302         mistake to threads-types.h.
1303
1304         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
1305
1306 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
1307
1308         * class-internals.h, class.h, object.h: make MonoRemoteClass
1309         and mono_remote_class() internal.
1310
1311 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1312
1313         * metadata-internals.h, class-internals.h, metadata.h: make the
1314         MonoType guts internal as well.
1315
1316 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
1317
1318         * reflection.h: the MonoTypeNameParse guts are internal now.
1319         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
1320         are internal now, provide accessors as needed.
1321         * metadata.h, metadata-internals.h: the MonoMethodSignature
1322         guts are internal now.
1323         * Makefile.am: mempool.h is an internal header now.
1324         * *.h, *.c: remove glib.h usage from the public headers.
1325
1326 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
1327
1328         * culture-info-table.h : regenerated.
1329
1330 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1331
1332         * metadata.c: Add mono_method_get_header_summary which returns minimal
1333         information about the header of a method. This is the information used
1334         by the inline oracle to reject methods.
1335
1336         This method doesn't decode local variables and doesn't cache it's result,
1337         so it should cause a minimal reduction in memory usage.
1338
1339         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1340         mono_method_get_header_summary.
1341
1342 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
1343
1344         * threads.c (mono_thread_exit): Make sure that the main thread is
1345         non-null before dereferencing it.
1346
1347 2010-02-21  Geoff Norton  <gnorton@novell.com>
1348
1349         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1350         locale.
1351         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
1352         before falling back to the posix lookup.
1353
1354 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
1355
1356         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1357         the DONT_MANAGE flag set.
1358
1359 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1360
1361         * domain.c: Remove old v1 version strings. Let the runtime
1362         default to 2.0 instead of failing because it can't find a
1363         working 1.0 instalation.
1364
1365 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1366
1367         * domain.c: Add v4 RC version string.
1368
1369 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1370
1371         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1372         of overflow checking function.
1373
1374 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1375
1376         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1377         generic methods.
1378
1379         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1380         cases for ParameterInfo.
1381
1382         Fixes #579493.
1383
1384 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1385
1386         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1387         have has_cctor set. Fixes #575946.
1388
1389 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1390
1391         * appdomain.c: display a warning if the parsing the config file
1392         produces any error.
1393         Skip the BOM in UTF-8 files.
1394         Copy the AppDomainSetup before setting the privateBinPath so that the
1395         correct configuration file is read.
1396
1397 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1398
1399         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1400         vtable trampoline per vtable slot index. Not used yet.
1401
1402 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1403
1404         * icall-def.h:
1405         * icall.c: add internal call that returns the system page size.
1406
1407 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1408
1409         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1410         'int' for system classes.
1411
1412 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1413
1414         * icall.c, icall-def.h: new icall to check for sufficient
1415         stack space.
1416
1417 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1418
1419         * reflection.c (ensure_complete_type): Check that reflection_info
1420         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1421
1422 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1423
1424         * attrdefs.h:
1425         * tabledefs.h: Add NoOptimization flag.
1426
1427 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1428
1429         * sgen-gc.c: Don't consider it a missing remset if the target
1430         object is pinned - we might have done the store but not added the
1431         remset yet.
1432
1433 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1434
1435         * sgen-gc.c: When checking for missing remsets, don't assert on
1436         the first one, but print them all and then assert.
1437
1438 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1439
1440         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1441
1442 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1443
1444         * console-unix.c: On OSX Control-Y is assigned to
1445         VDSUSP (non-Posix), the
1446         suspend-program-next-time-it-tries-to-read-input command (this is
1447         different than C-z, which suspends immediately).
1448
1449         Do the same thing that bash does and ignore this setting,
1450         making our repl/getline support pasting.
1451
1452 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1453
1454         * sgen-gc.c: Simple plausibility check for scan_starts.
1455
1456 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1457
1458         * sgen-gc.c: Round up when calculating the number of scan starts.
1459
1460 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1461
1462         * reflection.c: Export mono_get_object_from_blob.
1463
1464         * object-internals.h: Ditto.
1465
1466         * icall.c: New icall property_info_get_default_value to get the default
1467         value of a property. Since using this is not common, no caching is done.
1468
1469         * icall-def.h: Add new icall.
1470
1471 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1472
1473         * class.c: Add mono_class_get_property_default_value.
1474
1475         * class-internal.h: Export mono_class_get_property_default_value.
1476
1477 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1478
1479         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1480
1481 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1482
1483         * sgen-gc.c: introduced critical regions to allow some lockless
1484         operations and increase scalability.
1485
1486 2010-02-10  Geoff Norton  <gnorton@novell.com>
1487
1488         * reflection.c: Support building with DISABLE_REFLECTION
1489
1490 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1491
1492         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1493         Closes bug #566057.
1494
1495         * exception.c: fix typo in comment.
1496
1497 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1498
1499         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1500         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1501
1502         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1503
1504         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1505         the internal API.
1506
1507         Fixes #574434.
1508
1509 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1510
1511         * threads.c: Removed two assertions that were too strict.  Added a
1512         clarifying comment.  Fixes #577090.
1513
1514 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1515
1516         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1517         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1518
1519         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1520
1521         * verify.c (mono_type_get_stack_name): Fix a warning.
1522
1523 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1524
1525         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1526         mono_marshal_wrapper_info_from_wrapper.
1527
1528         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1529         mono_marshal_method_set_wrapper_data, and export.
1530
1531         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1532         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1533         by calling mono_marshal_get_wrapper_info ().
1534
1535         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1536         small objects which does no size checks.
1537
1538 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1539
1540         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1541
1542 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1543
1544         * verify.c (mono_method_verify): Use the new basic block formation pass
1545         to avoid verifying dead basic blocks. This is the same behavior as the
1546         runtime MS verifier.
1547
1548 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1549
1550         * mono-basic-block.c:
1551         * mono-basic-block.h: New implementation of a basic block formation pass.
1552         The formation pass does static liveness analysis as well to detect dead
1553         basic blocks.
1554
1555 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1556
1557         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1558         'this' argument in icalls.
1559
1560 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1561
1562         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1563
1564 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1565
1566         * object.c, domain.c: When using SGen, we must register
1567         vtable->type as a root if it's not a MonoType, because then it
1568         wasn't pin-alloced.
1569
1570 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1571
1572         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1573         at the start of nursery collections, because we might have had
1574         degraded allocations which changed next_data.
1575
1576 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1577
1578         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1579         custom attr so this function works in cross-compiling mode.
1580
1581 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1582
1583         * class.c (make_generic_param_class): Initialize interface offsets since we
1584         set klass->inited. Fixes #574819.
1585
1586 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1587
1588         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1589         calling the JIT domain cleanup hook.
1590
1591 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1592
1593         * pedump.c (main): Properly set the verifier mode when running the metadata
1594         verifier.
1595
1596 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1597
1598         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1599         overlapping fields now that we're called before has_references is set.
1600
1601         * pedump.c (dump_verify_info): Clear any loader error before verifying another
1602         method. Otherwise all sort of weird stuff happens.
1603
1604 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1605
1606         * object.c (mono_field_get_value_object): Handle nullable types correctly.
1607         Fixes #572874.
1608
1609 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
1610
1611         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
1612         Fixes #573322.
1613
1614 2010-01-23  Mark Probst  <mark.probst@gmail.com>
1615
1616         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
1617         pin_staging_area_index is greater than 0.
1618
1619 2010-01-22 Miguel de Icaza (miguel@novell.com)
1620
1621         * loader.c: Since we do nothing with the error returned, pass NULL
1622         to ignore the error.
1623
1624 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1625
1626         * reflection.c (typebuilder_setup_fields): Pretend field setup already
1627         happened before starting to encode the actual fields. This avoid ciclic
1628         dependencies and eventual crashes.
1629
1630         Fixes #572660.
1631
1632 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1633
1634         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
1635         atomic and remove the half-constructed hack in SGen.
1636
1637 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1638
1639         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
1640         has a recursive reference to itself.
1641
1642         Fixes #571863.
1643
1644 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1645
1646         * loader.c (mono_method_signature): Fix error message.
1647
1648 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1649
1650         * sgen-gc.c: Reuse to-space sections between nursery collections.
1651
1652 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1653
1654         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
1655         from the current assembly or mscorlib. Fixes bug #322957.
1656
1657 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1658
1659         * marshal.c: Calculate the target class of the delegete invoke wrappers using
1660         get_wrapper_target_class.
1661
1662 2010-01-19  Mark Probst  <mark.probst@gmail.com>
1663
1664         * sgen-gc.c: Fix warnings.
1665
1666 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1667
1668         * verify.c (store_local): Better error message.
1669
1670 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1671
1672         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
1673         arguments.
1674
1675 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1676
1677         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
1678         function is generics variance aware.
1679
1680 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
1681
1682         * security-core-clr.c (mono_security_core_clr_can_access_internals):
1683         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
1684
1685 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
1686
1687         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
1688           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
1689
1690         Code is contributed under MIT/X11 license.
1691
1692 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1693
1694         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
1695         on a GTD.
1696
1697 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1698
1699         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
1700         return a point to a wrapper specific info structure describing the wrapper.
1701         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
1702  
1703 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1704  
1705         * sgen-gc.c: Make minor collection section allowance adaptive,
1706         depending on the amount of memory reclaimed in the last major
1707         collection.  If more memory was reclaimed (i.e. more garbage
1708         produced), do the next collection earlier.
1709
1710 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1711
1712         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
1713         to itself.
1714
1715         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
1716         the token as parameter.
1717
1718         * verify-internals.h: Ditto.
1719
1720         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
1721
1722         Fixes #571460.
1723
1724 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1725
1726         * sgen-gc.c: Make store_remset_buffer_index long.
1727
1728 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1729
1730         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
1731
1732         Fixes #569579.
1733
1734 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1735
1736         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
1737         off precise marking if it is available.
1738         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
1739
1740 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
1741
1742         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
1743
1744         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
1745         pinned objects.
1746
1747         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
1748         to the array allocator.
1749
1750 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1751
1752         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
1753         result of mono_compile_method (), it already includes an ftnptr.
1754
1755 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1756
1757         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
1758
1759 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1760
1761         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
1762         hash value which doesn't depend on glib/eglib versions.
1763         (mono_metadata_type_hash): Use it.
1764
1765         * object.c (mono_method_get_imt_slot): Ditto.
1766
1767 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
1768
1769         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
1770         independently of the GTD.
1771
1772         * class.c (mono_class_setup_fields): Fail if field has negative offset.
1773
1774         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
1775         to the upper limit since instance_size includes this amount.
1776
1777         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
1778
1779         Fixes #569544.
1780
1781 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
1782
1783         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
1784         with static methods.
1785
1786         * object.c (build_imt_slots): Avoid asserting when static methods are
1787         encountered in an interface.
1788
1789 2010-01-13  Mark Probst  <mark.probst@gmail.com>
1790
1791         * sgen-gc.c (to_space_expand): Fix assertion.
1792
1793 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
1794
1795         * string-icalls.c: missing declaration fixes.
1796         * sgen-gc.c: portability fixes.
1797
1798 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1799
1800         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
1801
1802         * class.c:
1803         * cominterop.c:
1804         * icall.c:
1805         * object.c: 
1806         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
1807
1808 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1809
1810         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
1811         it can fail loading the type.
1812
1813         * class.c: Add mono_class_inflate_generic_class_checked.
1814
1815         * class.c:
1816         * verify.c:
1817         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
1818
1819 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
1820
1821         * loader.c (mono_method_signature_checked): New internal function taking an
1822         MonoError argument.
1823
1824         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
1825         Fixes build on rh 7.3.
1826
1827 2010-01-10  Aaron Bockover  <abockover@novell.com>
1828
1829         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
1830         at runtime in the same way as on Windows, which yields a relocatable
1831         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
1832         of the running mono process.
1833
1834         On TARGET_ARM, fallback () will always be executed.
1835
1836 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1837
1838         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
1839
1840 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1841
1842         * class.c (mono_class_is_assignable_from_slow): Support variant
1843         generic delegates.
1844
1845         * class.c (mono_class_implement_interface_slow): Support types with
1846         variant generic arguments.
1847
1848 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1849
1850         * verify.c: Remove some code duplication.
1851
1852 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1853
1854         * object.c: Update docs.
1855
1856 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1857
1858         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
1859
1860         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
1861         fallback trampoline as well.
1862
1863         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
1864         out argument that is set to TRUE if the match was direct. 
1865
1866         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
1867
1868         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
1869
1870 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1871
1872         * class.c: Add mono_class_interface_offset_with_variance function that does same
1873         as mono_class_interface_offset but takes variance into account.
1874
1875         * class-internal.h: Export mono_class_interface_offset_with_variance.
1876
1877         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
1878
1879 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1880
1881         * object.c:
1882         * icall.c:
1883         * class.c: Add some FIXME for due to variant generic arguments.
1884
1885         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
1886         can't use the simple bitfield check, so call mono_class_is_assignable_from if
1887         the bitfield check fails.
1888
1889 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1890
1891         * class.c (mono_class_is_assignable_from): Rework the generics variance code
1892         to be easier to read and fix bugs in the case a non generic type implements a variant
1893         interface.
1894
1895         * class.c (mono_class_has_variant_generic_params): Make non static.
1896
1897         * class-internals.h: Export mono_class_has_variant_generic_params as part of
1898         the private API.
1899
1900 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1901
1902         * assembly.c: fix MONO_PATH debug output.
1903
1904 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
1905
1906         * culture-info-table.h : regenerated.
1907
1908 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1909
1910         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
1911         types that are meant to not have a parent.
1912
1913 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1914
1915         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
1916         from the image mempool, so it is not leaked.
1917
1918 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1919
1920         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
1921
1922 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
1923
1924         * verify.c (verify_valuetype_layout_with_target): Fix case
1925         that can lead to infinite recursion. Fix bug #567861
1926
1927 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1928
1929         * pedump.c: Run code verifier even if image verification fails
1930         due to a failed type we. This allows more errors to be shown.
1931
1932 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1933
1934         * class.c (count_virtual_methods): Remove the assert and now
1935         fail properly.
1936         
1937         * class.c (setup_interface_offsets): This can fail now.
1938
1939         * class.c (mono_class_setup_vtable_general): Check for parent vtable
1940         errors. Check setup_interface_offsets errors.
1941
1942         * class.c (setup_interface_offsets): Simplify the return error logic
1943         and remove class_init_ok.
1944
1945         Fixes #560327.
1946
1947 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1948
1949         * class.c (mono_class_init): Do class verification at the beginning. Add
1950         some asserts to avoid tripping into invalid memory.
1951
1952         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
1953         g_error and a decent message.
1954
1955         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
1956
1957         Fixes #567548.
1958
1959 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1960
1961         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
1962         as inline functions instead of defining them in mempool.c.
1963
1964         * metadata-internals.h (MonoImageSet): New structure representing a set of
1965         MonoImages, which own a collection of generic instances.
1966
1967         * metadata.c: Get rid of the global generic caches, instead assign each generic
1968         instance to the image set which consists of all the images referenced by the
1969         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
1970         the memory used by generic instances to be allocated from a per image-set mempool
1971         later.
1972
1973 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1974
1975         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
1976
1977 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1978
1979         * appdomain.c (zero_static_data): Fix a warning.
1980
1981         * locales.c (construct_culture_from_specific_name): Applied patch from
1982         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
1983         not found. Fixes #567900.
1984
1985 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
1986
1987         * loader.c (mono_method_get_signature_full): Remove two asserts.
1988         Return NULL instead so that the verifier can handle both cases 
1989         gracefully.
1990
1991 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1992
1993         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
1994         so we can properly fail types instead of crashing.
1995
1996         Fixes #567676.
1997
1998 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1999
2000         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
2001         generic method.
2002
2003 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2004
2005         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
2006
2007 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2008
2009         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
2010         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
2011         we can't remove it from it since we don't hold the lock.
2012         (mon_new): Free the orphaned events here when a mon structure is added to the
2013         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
2014         this down.
2015
2016 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2017
2018         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
2019         as max stack might be zero.
2020
2021         Fixes #562320.
2022
2023 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2024
2025         Rework all uses of mono_class_setup_methods to accept that it can fail now.
2026
2027         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
2028         instances if the GTD did.
2029
2030         * class.c (mono_class_setup_properties): Ditto.
2031
2032         * class.c (mono_class_setup_events): Ditto.
2033
2034         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
2035
2036         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
2037         error setting.
2038
2039         * class.c (mono_class_init): Fail if GTD did.
2040
2041         * cominterop.c:
2042         * generic-sharing.c:
2043         * icall.c:
2044         * loader.c:
2045         * object.c:
2046         * verify.c: Properly handle failure of mono_class_setup_methods.
2047
2048 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2049
2050         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
2051         mono_class_inflate_generic_method_full internal.
2052
2053         * class.c (inflate_generic_context): Now takes a MonoError argument.
2054
2055         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
2056         errors.
2057
2058 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2059
2060         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
2061         they cannot be patched. Partly fixes #564408.
2062
2063 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2064
2065         * metadata-internals.h, reflection.c: Use the
2066         MonoDynamicImage.handleref hash table only with unmanaged keys,
2067         and add a managed hash table handleref_managed for managed keys.
2068
2069 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2070
2071         * sgen-gc.c: Unset to-space bumper between collections.  It might
2072         become invalid due to degraded allocations.
2073
2074 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
2075
2076         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
2077         with the one from the original method.
2078
2079         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
2080         compatibility.
2081
2082         * verify-internals.h: Add new function to the internal API.
2083
2084 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
2085
2086         * culture-info-tables.h: regenerated it to include the Georgian culture.
2087
2088 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2089
2090         * sgen-gc.c: Include mono/utils/memcheck.h.
2091
2092         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2093         instead of the current domain, since the two might not match if this is called
2094         from the debugger.
2095
2096         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2097         domain which created this assembly.
2098
2099 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2100
2101         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2102
2103 2009-12-17  Mark Probst  <mark.probst@gmail.com>
2104
2105         * sgen-gc.c: Managed implementation of the specialized generic
2106         store write barrier.
2107
2108 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
2109
2110         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2111         A private virtual newslot method is used to implement an interface method without exposing
2112         it to users. When querying for public instance methods, such method would hide a public one
2113         on a parent type.
2114
2115         Fixes #564379.
2116
2117 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2118
2119         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2120         conventions.
2121
2122 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2123
2124         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2125
2126 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2127
2128         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2129         as they are no longer used.
2130         
2131          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2132
2133         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2134
2135 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2136
2137         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2138         if the owner class has not been finished before returning reflection_info.      
2139
2140         Fixes #565127.
2141
2142 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2143
2144         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2145         param doesn't have custom attributes. Fixes #565117.
2146
2147         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2148         #565120.
2149
2150 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2151
2152         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2153
2154 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2155
2156         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2157         same amount done by a core-clr enabled runtime.
2158
2159 2009-12-15  Marek Habersack  <mhabersack@novell.com>
2160
2161         * appdomain.c (mono_make_shadow_copy): make sure access mode of
2162         the target files is reset to writable by owner and readable by
2163         everyone else to prevent problems when updating shadow copies of
2164         files whose source is read-only. Fixes bug #556884
2165
2166 2009-12-15  Mark Probst  <mark.probst@gmail.com>
2167
2168         * class.c (mono_generic_class_get_class): Allocate the generic
2169         class via malloc again, so that it can be freed when any one of
2170         the images of its constituent types is closed.
2171
2172         * metadata.c: When closing an image, don't free generic insts and
2173         generic classes right away, but put them into a list for later
2174         freeing.
2175
2176         * image.c, metadata-internals.h: Store the free list and in the
2177         second pass of closing an image, free it.
2178
2179 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2180
2181         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2182
2183         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2184         types in type_hash.
2185
2186         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2187
2188 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2189
2190         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2191         user type.
2192
2193         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2194         is used.
2195
2196 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2197
2198         * verify.c (mono_method_verify): The Unused opcodes produce an
2199         InvalidProgramException on .NET
2200
2201 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
2202
2203         * loader.c (mono_method_get_header): Move assert after the verifier
2204         has been called on the method header.
2205
2206 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2207
2208         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
2209
2210         * appdomain.c: Bump corlib version.
2211
2212 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2213
2214         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
2215         types as well since otherwise generic instances would not return UT as arguments but
2216         their undelying system type.
2217
2218         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
2219         to reflect the fact that they can have now multiple different types.
2220
2221         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
2222
2223         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
2224
2225         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
2226
2227         * reflection.c (mono_reflection_register_with_runtime): Init super types
2228         if the image is not dynamic.
2229
2230         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
2231         check if the generic type definition is a TypeBuilder.
2232
2233         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
2234         doesn't belong to a dynamic image, skip initialization.
2235
2236         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
2237         base definition is not a dynamic type.
2238
2239 2009-12-11  Marek Habersack  <mhabersack@novell.com>
2240
2241         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
2242         mono_profiler_string_allocation
2243
2244         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
2245         if string profiling is enabled, call
2246         mono_profiler_string_allocation
2247
2248         * profiler.h: added two MonoProfileFlags -
2249         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
2250         installation functions for the hooks below.
2251
2252         * profiler-private.h, profiler.c: added two hooks:
2253         mono_profiler_string_allocation called whenever a string is
2254         allocated by InternalAllocateStr and mono_profiler_iomap called
2255         whenever IOMAP code performs an adjustement on a file path.
2256
2257 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
2258
2259         * boehm-gc.c: fixed race condition while getting the target of a
2260         disappearing link (bug #522233).
2261
2262 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2263
2264         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
2265         the error.
2266
2267 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2268
2269         * reflection.c: Add mono_reflection_register_with_runtime icall to
2270         allow a MonoGenericClass to register itself as the managed mirror of
2271         a given generic instance.
2272         This is a temporary workaround until all MGC instantiation happens in
2273         managed code.
2274
2275         * object-internals.h: Ditto.
2276
2277         * icall-def.h: Ditto.
2278
2279 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2280
2281         * sgen-gc.c (find_in_remsets): Also search the generic store
2282         remsets.
2283
2284 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2285
2286         * sgen-gc.c: Don't access class names in debugging code when
2287         unloading a domain, because they might not be valid anymore.
2288
2289 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2290
2291         * domain.c, domain-internals.h: New function mono_domain_unset().
2292
2293         * appdomain.c (unload_thread_main): Detach the thread again at the
2294         end.
2295
2296         * threads.c: When a thread exists or is detached, unset its domain
2297         so that it's NULL when, for example, a pthread destructor runs.
2298
2299         * sgen-gc.c: Assert that there is no domain set after a thread is
2300         done.
2301
2302 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2303
2304         * class.c (mono_generic_class_get_class),
2305         metadata.c (free_generic_class): Allocate generic MonoClass's from
2306         the image mempool, not via malloc.  The problem with malloc is
2307         that when unloading a domain those classes are freed before
2308         clearing the heap and SGen needs the classes.  Rewriting the
2309         unloading code to do the free later would be more work and there's
2310         no point in using malloc anyway.
2311
2312 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
2313
2314         * loader.c (mono_method_signature): Always call mono_loader_unlock 
2315         before returning.
2316
2317 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2318
2319         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
2320         user string blobs.
2321
2322         * verify-internals.h: Add new function to the internal API.
2323
2324         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
2325         check if it's a valid string.
2326
2327         * object.c (mono_ldstr): Ditto.
2328
2329         Fixes #561943.
2330
2331 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2332
2333         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
2334         from a method before returning it. This is the expected behavior.
2335
2336 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
2337
2338         * reflection.c (inflate_method): Handle the case of a regular system type.
2339
2340 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2341
2342         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2343         gathering code.
2344
2345         * mempool.c, mempool-internals.h: New function
2346         mono_mempool_get_bytes_allocated().
2347
2348         * Makefile.am: sgen-pinning-stats.c added.
2349
2350 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2351
2352         * sgen-gc.c (create_allocator): Only use the fast path if the
2353         object size is within the small object size limit.
2354
2355 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2356
2357         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2358         possibly adding padding to sizeof (GCMemSection).
2359
2360 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2361
2362         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2363         reference is not in the nursery.
2364
2365 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
2366
2367         * class.c (mono_class_from_typeref): Bounds check idx against the 
2368         assemblyref table.
2369
2370 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2371
2372         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2373         through the potential roots, then sort the results and find the
2374         pinned objects from there.
2375
2376         * Makefile.am: sgen-pinning.c added.
2377
2378 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2379
2380         * sgen-gc.c: Record generic stores in specialized remset buffers.
2381
2382 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2383
2384         * sgen-gc.c: Make pinned chunks the same size as major heap
2385         sections, and align them as well, so that we can check whether an
2386         object is in a pinned chunk or a major section in constant time.
2387
2388 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2389
2390         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2391
2392 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2393
2394         * sgen-gc.c: Make all major heap sections the same size (currently
2395         128k) and allocate them on aligned addresses.  Small heap sections
2396         give us better granularity with pinned objects - we can free up
2397         much more memory.
2398
2399 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2400
2401         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2402         output removed.
2403
2404 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2405
2406         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2407
2408         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2409         names in addition to the runtime generated one.
2410
2411         * mono/metadata/image.h: Add a function to take the real name of the assembly
2412         image.
2413
2414         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2415         use it instead of the runtime generated one.
2416
2417         Code is contributed under MIT/X11 license.
2418
2419 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2420
2421         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2422         before the other checks to prevent problems if the DateTime class is blittable.
2423         Hopefully fixes #559600.
2424
2425 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2426
2427         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2428         returns the largest string length that will not be put into the
2429         LOS.
2430
2431         * sgen-gc.c, gc-internal.h: New function that returns the largest
2432         object size that will not be put into the LOS.
2433
2434         * appdomain.c: Bump corlib version.
2435
2436 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2437
2438         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2439
2440         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2441
2442 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2443
2444         * reflection.c (inflate_method): Fix signature.
2445
2446         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2447         in managed code.
2448
2449 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2450
2451         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2452
2453 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2454
2455         * sgen-gc.c: Abstract to-space handling.
2456
2457 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2458
2459         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2460
2461         Fixes #559906.
2462
2463 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2464
2465         * sgen-gc.c: Only add references from outside the nursery to
2466         within the nursery to the global remset list.
2467
2468 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2469
2470         * appdomain.c (create_exceptions): Set the domain temporarily if
2471         necessary to avoid cross-domain references.
2472
2473 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2474
2475         * verify.c (get_stack_type): Return that the type is invalid instead of
2476         asserting.
2477
2478         * verify.c (mono_method_verify): Verify that all locals and arguments
2479         have valid stack types.
2480
2481         Fixes #559913.
2482
2483 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2484
2485         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2486         bounds checking overflow aware.
2487
2488         Fixes #559910.
2489
2490 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2491
2492         * verify.c (do_invoke_method): Check for invalid method signatures.
2493
2494         Fixes #553450.
2495
2496 2009-12-02  Jb Evain  <jbevain@novell.com>
2497
2498         * appdomain.c (MONO_CORLIB_VERSION): bump.
2499         * icall-def.h (get_base_definition): renamed to get_base_method
2500         and add a boolean argument indicating we want the original
2501         method definition, or the immediate base method.
2502         * icall.c: apply the get_base_definition to get_base_method change.
2503
2504 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2505
2506         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2507
2508         Fixes #558042.
2509
2510 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2511
2512         * class.c: remove asserts for invalid type token in
2513         mono_class_name_from_token(), mono_assembly_name_from_token() and
2514         mono_class_create_from_typedef () (fixes bug #553318).
2515
2516 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2517
2518         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2519         incorrect assemblies (bug #553322).
2520
2521 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2522
2523         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2524
2525         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2526
2527         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2528
2529         * class.c (inflate_generic_context): Ditto.
2530
2531         * loader.c (method_from_methodspec): Ditto.
2532
2533         Fixes #558230.
2534
2535 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2536
2537         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2538
2539         * class.c (mono_class_create_from_typespec): Ditto.
2540
2541         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2542
2543         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2544
2545         Fixes #558184.
2546
2547 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2548
2549         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2550
2551         * verify.c (verify_delegate_compatibility): Ditto.
2552
2553         * verify.c (do_newobj): Ditto.
2554
2555         Fixes #558046.
2556
2557 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2558
2559         * sgen-gc.c: Use a gray queue instead of requiring that gray
2560         objects are in a contiguous region.
2561
2562         * sgen-gray.c: The gray queue implementation.
2563
2564         * Makefile.am: sgen-gray.c added.
2565
2566 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2567
2568         * appdomain.c: When unloading a domain, zero its static data and
2569         perform a minor collection when using SGen.  That will get rid of
2570         all the remsets pointing into that domain's static data.
2571
2572         * sgen-gc.c: Allow remsets into static data.  By doing this we
2573         need less checks so we're more efficient.
2574
2575 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2576
2577         * verify.c (mono_method_verify): Check for catch clauses with broken
2578         types.
2579
2580         Fixes #558465.
2581
2582 2009-12-01  Jb Evain  <jbevain@novell.com>
2583
2584         * class.c (make_generic_param_class): set the namespace of
2585         the generic parameter class from its owner, if available.
2586
2587 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2588
2589         * verify.c (code_bounds_check): Do proper overflow checking.
2590
2591         * verify.c (mono_method_verify): The number of switch entries is
2592         an unsigned int. Properly bounds check it.
2593
2594         Fixes #558594.
2595
2596 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2597
2598         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2599         mono_metadata_method_has_param_attrs which only checks if a given param
2600         list has a non zero flags entry.
2601
2602         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2603         to inform how many params should we expect to decode.
2604
2605         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2606         as it's faster than mono_metadata_get_param_attrs.
2607
2608         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2609         add mono_metadata_method_has_param_attrs.
2610
2611 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2612
2613         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
2614         failures.
2615
2616         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
2617         is -1 but its class is broken.
2618
2619         Fixes #558522.
2620
2621 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2622
2623         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
2624         for parameter overflow.
2625
2626         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
2627         of mono_metadata_get_param_attrs.
2628
2629         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
2630         API.
2631
2632         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
2633
2634 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2635
2636         * class.c (mono_class_setup_fields): Check for fields with broken types.
2637
2638         Fixes #558741.
2639
2640 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
2641
2642         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
2643         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
2644         its TypeBuilder::CreateType ().
2645
2646         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
2647         if not needed.
2648
2649         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
2650         to make setup_interface_offsets happy.
2651
2652         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
2653         compilation now works.
2654
2655 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
2656
2657         * appdomain.c (create_exceptions): New helper function extracted from
2658         mono_runtime_init () to precreate objects used during exception handling.
2659         (mono_runtime_init): Call it.
2660         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
2661
2662 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2663
2664         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
2665         compilation until the proper one is found.
2666
2667 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
2668
2669         * class.c (mono_class_setup_vtable_general): Cache the result of
2670         get_virtual_methods () since it can be slow because of the metadata
2671         optimization.
2672
2673         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
2674         from a MonoValueHashTable for now, since the later is based on an earlier
2675         version of hpj's internal probing code and seems to have serious collision
2676         issues.
2677
2678         * loader.c (mono_get_method_full): Update after the change above.
2679
2680 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2681
2682         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
2683
2684 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2685
2686         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
2687         the GTD instead of the DGC instead of crashing.
2688
2689         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
2690         required. Inflate fields if needed.
2691
2692         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
2693         finished. Renamed.
2694
2695 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2696
2697         * class.c (check_interface_method_override): Check for NULL signatures and fail
2698         the type.
2699
2700         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
2701
2702         Fixes #553428.
2703
2704 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2705
2706         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
2707         the MONO_METHOD_FLAGS column instead of decoding the whole row.
2708
2709 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2710
2711         * loader.c (field_from_memberref): Resolve the class first then the field
2712         signature. Remove a lot of duplicated code and make sure we don't pass valid
2713         values to mono_loader_set_error_field_load.
2714
2715         Fixes #553306.
2716
2717 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2718
2719         * class.c (inflate_generic_type): Change code to use new signature of
2720         mono_error_set_bad_image.
2721
2722         Fixes #558124.
2723
2724 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
2725
2726         * verify.c (mono_method_verify): Don't free ctx.params items if 
2727         we aborted while inflating the ctx.locals. Complete previous fix
2728
2729 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
2730
2731         * verify.c (mono_method_verify): Use the uninflated type name, 
2732         when the inflated is null, to report errors. Also take care when
2733         freeing, not to free everything since, in case of an error, some
2734         stuff would be copies (i.e. not allocated by the function itself)
2735         Fix bug #558145
2736
2737 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2738
2739         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
2740         or overflow. The caller must have done this check explicitly. This guard us
2741         from accessing invalid memory.
2742
2743         * verify.c (do_push_static_field): Check for stack overflow.
2744
2745         Fixes #553333.
2746
2747 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2748
2749         * loader.c (find_method_in_class): Don't crash if the signature cannot
2750         be resolved.
2751
2752         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
2753         of asserting for the case of invalid params.
2754
2755         Fixes #553304.
2756
2757 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
2758
2759         * image.c (mono_image_load_module): Fix crash when a bad assembly
2760         has no module at all (fix bug #553412) and also replace the 
2761         g_assert with a return NULL (documented return value for failure)
2762
2763 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
2764
2765         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
2766
2767 2009-11-23  Miguel de Icaza  <miguel@novell.com>
2768
2769         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
2770         file attribute to managed code and avoid doing the mask/attribute
2771         checks here. 
2772
2773 2009-11-22  Miguel de Icaza  <miguel@novell.com>
2774
2775         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
2776         the managed world.
2777
2778         * icall-def.h: New entry points.
2779         
2780 2009-11-19  Mark Probst  <mark.probst@gmail.com>
2781
2782         * process.c: Don't put references to managed objects into a
2783         g_ptr_array.
2784
2785 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
2786
2787         * class.c (can_access_internals): Allow CoreCLR to participate in
2788         allowing (or not) [InternalsVisibleTo] between assemblies.
2789         * security-core-clr.c|h: Make sure that only trusted code (a 
2790         superset of platform code) can access the internals of platform
2791         code.
2792
2793 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
2794
2795         * reflection.c: use the correct base class to get the virtual method
2796         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
2797
2798 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
2799
2800         * security-core-clr.c (get_caller_no_reflection_related): 
2801         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
2802         it's still reflection and must be filtered correctly.
2803
2804 2009-11-16  Mark Probst  <mark.probst@gmail.com>
2805
2806         * object.c (compute_class_bitmap): Fix for large bitmaps.
2807
2808 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
2809
2810         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
2811
2812         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
2813         koush@koushikdutta.com). Disable GC_no_dls on android.
2814
2815 2009-11-12  Mark Probst  <mark.probst@gmail.com>
2816
2817         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
2818         tlab_next points outside the TLAB because the allocator was
2819         interrupted.
2820
2821 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2822
2823         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
2824
2825 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2826
2827         * object-internals.h: Change signature for mono_string_to_utf8_image.
2828
2829         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
2830         argument.
2831
2832         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
2833         exceptions due to mono_string_to_utf8.
2834
2835 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2836
2837         * object-internals.h: Change signature for mono_string_to_utf8_mp.
2838
2839         * object.c (mono_remote_class): Make sure all resources are released before
2840         raising an exception.
2841
2842         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
2843
2844 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2845
2846         * mono-perfcounters.c (network_get_impl): Change variable initialization
2847         ordering to fix potential memory leak in case of exceptions.
2848
2849         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
2850         encoded strings.
2851         
2852 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2853
2854         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
2855         variable initialization ordering to fix potential memory leak in case
2856         of exceptions.
2857
2858 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
2859
2860         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
2861         needed.
2862
2863 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2864
2865         * appdomain.c: Fix shadow path code to better deal with exceptions.
2866
2867 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2868
2869         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
2870         exception in the middle of the runtime code.
2871
2872 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2873
2874         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
2875         leak memory with broken envvar value.
2876
2877 2009-11-06  Mark Probst  <mark.probst@gmail.com>
2878
2879         * reflection.c (mono_reflection_setup_internal_class): Because
2880         nested classes are not added to the name cache, we must put them
2881         in the reflection_info_unregister_classes list.
2882
2883 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
2884
2885         * class.c: When CoreCLR is enabled don't call mono_init_com_types
2886         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
2887         platform (trusted) code. Instead we return a TypeLoadException to
2888         be thrown later. This is the exception thrown by Silverlight 2 if
2889         a type, inside application (user) code is marked with [ComImport]
2890
2891 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2892
2893         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
2894         mono_is_debugger_attached () too.
2895
2896         * mono-debug.c (mono_is_debugger_attached): New helper function.
2897         (mono_set_is_debugger_attached): Ditto.
2898
2899 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2900
2901         * object-internals.h: Add mono_string_to_utf8_checked.
2902
2903         * object.c: Implement mono_string_to_utf8_checked.
2904
2905 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2906
2907         * class.c: Add missing check for load errors after every
2908         call to mono_class_setup_fields
2909
2910         Fixes #552282.
2911
2912 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2913
2914         metadata-verify.c (verify_tables_schema): Fix the error message.
2915
2916 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2917
2918         * metadata.c: Change event table schema to use TDOR for event type
2919         as this is what it's meant to be.
2920
2921         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
2922         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
2923         entry.
2924
2925         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
2926         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
2927         rows in MONO_TABLE_GENERICPARAM.
2928
2929         Fixes #552289.
2930
2931 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2932
2933         * class.c (mono_image_add_to_name_cache): Assert on duplicate
2934         insertion.
2935
2936         * reflection.c (mono_reflection_setup_internal_class): Avoid
2937         registering a gc root the same MonoClass multiple times.
2938         Don't register nested types on the global scope as they should
2939         not be available there.
2940
2941 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2942
2943         * culture-info-tables.h: regenerated.
2944
2945 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2946
2947         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
2948
2949 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
2950
2951         * string-icalls.c|h: Remove string internal calls that are not 
2952         used anymore by the class libraries.
2953         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
2954         which is not used in the class librairies.
2955         * icall-def.h: Update tables.
2956
2957 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2958
2959         * class.h: Move mono_class_inflate_generic_type_checked...
2960
2961         * class-internals.h: to here and make it internal. We don't want to
2962         further expose MonoGenericContext. 
2963
2964 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2965
2966         * verify.c (mono_method_verify): Improve error message.
2967
2968 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2969
2970         * reflection.c (fieldref_encode_signature): If field_image is NULL then
2971         the token is already properly encoded. Fixs 4.0 build.
2972
2973 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2974
2975         * locales.c (construct_number_format): Check if the number index is
2976         valid before trying to use it, if not, just return.
2977         
2978 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
2979
2980         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
2981         since that loses the abort state. Fixes #539394.
2982
2983 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
2984
2985         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
2986         explicit this argument to the call signature.
2987         (mono_marshal_get_icall_wrapper): Ditto.
2988
2989 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2990
2991         * reflection.c (fieldref_encode_signature): Add new field_image parameter
2992         to indicate which assembly to use when resolving a custom-mod.
2993
2994         Fixes handling of volatile fields used across assemblies as reported in #551513.
2995
2996 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2997
2998         * loader.c: Improve error messages.
2999
3000 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3001
3002         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
3003         of interfaces. Fixes IKVM.
3004
3005         * class.c (mono_class_setup_vtable_general): Improve debug spew.
3006
3007 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3008
3009         * verify.c (verifier_inflate_type): Return the inflated type on success.
3010
3011 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3012
3013         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
3014
3015         * threads.c (mono_thread_attach): Call the profiler thread start callback.
3016
3017         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
3018
3019         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
3020         flag set.
3021
3022         * profiler.c: Add new profiler callbacks for runtime invoke.
3023
3024         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
3025
3026 2009-11-01  Mark Probst  <mark.probst@gmail.com>
3027
3028         * sgen-gc.c: Keep track of the reason for a major collection and
3029         write it to the heap-dump file.
3030
3031 2009-10-31  Miguel de Icaza  <miguel@novell.com>
3032
3033         * threads.c: refactor the code that initializes the
3034         thread_start_args into a reusable function and use this in the two
3035         methods that start up threads.
3036
3037 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
3038
3039         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
3040         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
3041
3042 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3043
3044         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
3045         Until now, we only had the per-cpu(core) counters.
3046
3047 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3048
3049         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
3050         mono_gc_get_suspend_signal(), which returns the suspend signal
3051         number used by the GC.
3052
3053 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3054
3055         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
3056
3057         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
3058         signalling start_notify.
3059
3060 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3061
3062         * appdomain.c: do not test the st_mode field for shadow-copies.
3063         Fixes bug #545276.
3064
3065 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3066
3067         * threadpool.[ch]: added hooks for thread start/finish and item
3068         processing begin/end. For monotouch use only.
3069
3070 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3071
3072         * threads.c (mono_thread_get_name): New helper function.
3073
3074         * reflection.c (resolve_object): Set handle_class for strings too.
3075         (mono_reflection_create_custom_attr_data_args): New helper function to decode
3076         a cattr blob into a set of arrays and structures without creating the custom
3077         attributes themselves.
3078         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
3079
3080         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
3081
3082         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
3083         function.
3084
3085 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3086
3087         * verify.c: Replace calls to mono_class_inflate_generic_type with
3088         mono_class_inflate_generic_type_checked. Fixes #480005.
3089
3090 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3091
3092         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3093         object since not all paths lead to callees initing it.
3094
3095 2009-10-23  Alp Toker  <alp@nuanti.com>
3096
3097         Fix embedding API breakage from r144688. mono-compiler.h is an internal
3098         header and should not be shipped:
3099
3100         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3101         which is specific to the mono build. Not going to work.
3102
3103 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
3104
3105         * security-manager.c: Report if core-clr is active from
3106         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3107         to allow Moonlight BCL to behave appropriately (both in browser
3108         and outside, e.g. smcs)
3109
3110 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3111
3112         * mono-config.c: ignore UTF-8 BOM and report parser errors.
3113         Fixes bug #549108.
3114
3115 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3116
3117         * class.c: fix typo.
3118
3119 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
3120
3121         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3122         a MonoError parameter.
3123
3124         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3125         version that can does proper error handling.
3126
3127         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3128
3129         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3130
3131         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3132
3133 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3134
3135         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3136         NO_UNALIGNED_ACCESS is defined.
3137
3138 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3139
3140         * marshal.c (mono_string_builder_to_utf16): Applied patch from
3141         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
3142         Fixes #549173.
3143
3144 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3145
3146         * sgen-gc.c: Shorten sections whenever possible.
3147
3148 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3149
3150         * sgen-gc.c: Use our portable semaphore #defines.
3151
3152 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3153
3154         * sgen-gc.c: A debug option for dumping the heap layout to a file
3155         after each collection.
3156
3157 2009-10-21  Mark Probst  <mark.probst@gmail.com>
3158
3159         * sgen-gc.c: Make managed write barriers atomic via
3160         thread-restarts.
3161
3162 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3163
3164         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3165         methods. Fixes #543021.
3166
3167 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3168
3169         * socket-io.[ch]: fix VS build.
3170
3171 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3172
3173         * icall-def.h:
3174         * socket-io.[ch]: implemented SendFile.
3175
3176 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3177
3178         * class.c (mono_class_create_from_typedef): Initialize class->element_class
3179         before the interfaces to avoid crashes later if class initialization fails.
3180         Fixes #548417.
3181
3182         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3183         Fixes #548276.
3184
3185 2009-10-20  Marek Safar  <marek.safar@gmail.com>
3186
3187         * domain.c: Bump 4.0 version.
3188
3189 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3190
3191         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3192         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3193         check since 'pubkey' can't be NULL at this stage
3194         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3195         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
3196         initialization of 'iter'
3197
3198 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
3199
3200         * cominterop.c : Search the interface parts of vtable to find 
3201           method matches.  Fixes 547030.
3202
3203         Code is contributed under MIT/X11 license.
3204
3205 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
3206
3207         * marshal.c: BeginInvoke cannot be called on multicast delegates with
3208         multiple targets. Fixes bug #574426.
3209
3210 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3211
3212         * profiler.h: Put here the definition of
3213         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
3214         (and fix the build...).
3215
3216 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3217
3218         * profiler.c, profiler.h, profiler-private.h:
3219         Added support for different ways of getting call chains in stat mode.
3220
3221 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3222
3223         * object.c, object-internals.h: New function for computing the
3224         size of an array, factored out of mono_array_new_full().  Use
3225         SGen's functions for allocating arrays and vectors.
3226
3227         * sgen-gc.c, gc-internal.h: Special functions for allocating
3228         arrays and vectors without race conditions.  A managed array
3229         allocator method.
3230
3231         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
3232
3233 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3234
3235         * object.c, object.h, icall.c: Write barriers do the copying now,
3236         as well, so no need for an additional memcpy.
3237
3238         * sgen-gc.c: Lock when storing remsets.  Do the memory
3239         copying/moving in the write barriers.
3240
3241         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
3242
3243         * reflection.c: Added an assert.
3244
3245 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3246
3247         * threads.c, process.c: A few missing write barriers.
3248
3249 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
3250
3251         * mono-perfcounters.c, mono-perfcounters-def.h: Add
3252         network performance counters for bytes sent per second, bytes
3253         received per second, and bytes total per second.
3254
3255         Code is contributed under MIT/X11 license.
3256
3257 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3258
3259         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3260         Fix warning.
3261
3262 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3263
3264         * threads.c, object-internals.h, object.c: Move code for
3265         transferring an object to a different domain (via
3266         serialization/remoting) to object.c.
3267
3268         * object.c (call_unhandled_exception_delegate): If the exception
3269         is in a different domain than the delegate, transfer the exception
3270         to that domain.
3271
3272 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
3273
3274         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
3275         Fixes #322934.
3276
3277 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3278
3279         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
3280
3281 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3282
3283         * object.c (mono_method_return_message_restore): Handle the case
3284         where the argument is an instance of a generic type.  Fixes
3285         #544446.
3286
3287 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3288
3289         * object.c (set_value): Write barrier fix - we must pass the
3290         count, not the size.
3291
3292 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
3293
3294         * domain.c (mono_init_internal): Print a useful error message when encountering
3295         an old mscorlib, instead of crashing. Fixes #544307.
3296
3297 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3298
3299         * appdomain.c (copy_app_domain_setup): Fix a warning.
3300
3301         * debug-helpers.c (dis_one): Ditto.
3302
3303 2009-10-04  Mark Probst  <mark.probst@gmail.com>
3304
3305         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
3306         into the new domain, instead of referencing the original one.
3307
3308         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
3309         non-static.
3310
3311         * appdomain.c: Corlib version bump.
3312
3313 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3314
3315         * threadpool.c: one more...
3316
3317 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3318
3319         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
3320         threads to die because we're shutting down. delgate5.exe works again.
3321
3322 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
3323
3324         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
3325           ccw_interface_hash table when a ccw is finalized.
3326
3327         Code is contributed under MIT/X11 license.
3328
3329 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3330
3331         * assembly.c, domain.c, image.c, metadata-internals.h: Split
3332         domain and image unloading into two steps.  We must do this
3333         because clearing the domain in SGen requires the class metadata to
3334         be intact, but we need to free the mono_g_hash_tables in case a
3335         collection occurs during domain unloading and the roots would trip
3336         up the GC.
3337
3338 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3339
3340         * object-internals.h: Remove serialized culture fields from
3341         MonoInternalThread.
3342
3343         * icall-def.h, thread-types.h, threads.c: Remove serialized
3344         culture icalls.
3345
3346         * appdomain.c: Corlib version bump.
3347
3348 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3349
3350         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3351         Fixes #543133.
3352
3353 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3354
3355         * sgen-gc.c: Try to shorten the new section after a major
3356         allocation to avoid ever-growing sections.
3357
3358 2009-10-13  Martin Baulig  <martin@ximian.com>
3359
3360         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3361         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3362         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3363         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3364
3365         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3366
3367 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3368
3369         * threadpool.c: fixed the order in which 'completed' and the wait
3370         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
3371         No need to use the wait_handle field of ASyncCall. Make sure the
3372         threadpool is active when adding a job or queueing an idle thread.
3373
3374 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3375
3376         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3377
3378         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3379         when using --compile-all.
3380
3381 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3382
3383         * metadata.c (free_generic_class): Unregister the field_objects
3384         roots if we're using SGen.
3385
3386 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3387
3388         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3389         for GenericParamTableEntry.gparam.
3390
3391 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3392
3393         * marshal.c: don't create the handle when calling. It is created later
3394         if needed.
3395
3396 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3397
3398         * sgen-gc.c: Warning fixes.
3399
3400 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3401
3402         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3403         whole heap for cross-domain references before each collection.
3404
3405         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3406         object.
3407
3408         * threadpool-internals.h, threadpool.c: New function
3409         mono_thread_pool_is_queue_array() for checking whether a given
3410         array is used as a (cross-domain) queue by the thread pool code.
3411
3412 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3413
3414         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3415         searches the whole heap for objects containing a specific
3416         reference.  Only for debugging.
3417
3418 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3419
3420         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3421
3422         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3423         byte arrays between domains.
3424
3425 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3426
3427         * threadpool.c:
3428         * class-internals.h:
3429         * mono-perfcounters-def.h:
3430         * mono-perfcounters.c:
3431         -There is a list of idle threads
3432         -Each of those idle threads wait on their own WaitHandle instead
3433         of all of them using the same semaphore. When a new work item is
3434         added, the job is assigned directly to an idle thread or a newly
3435         created one if possible and then the handle for that thread is
3436         signaled. Compare that to the current approach where all the
3437         threads in the pool compete to dequeue a job from the same
3438         queue.
3439         -New struct ThreadPool that brings together the bunch of static
3440         variable for each threadpool (IO and regular).
3441         -New performance counters: # of items added and its rate per
3442         threadpool. The rate will be used later, perhaps together with
3443         other perf. counters, to decide when idle threads should exit.
3444
3445 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3446
3447         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3448         Fix typo on Windows build.      
3449         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3450         
3451         Code is contributed under MIT/X11 license.
3452
3453 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3454
3455         * object-internals.h: The Thread class is split up into Thread and
3456         InternalThread now.  We have exactly one InternalThread per
3457         thread, and at most one Thread per appdomain per thread.  Most
3458         data is stored in InternalThread.  All InternalThread objects live
3459         in the root domain.
3460
3461         * class-internals.h: Add internal_thread_class to MonoDefaults.
3462
3463         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3464         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3465         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3466         resulting from the split of the Thread class.
3467
3468         * gc-internal.h: Prototype for new function for checking whether a
3469         thread is the finalizer thread.
3470
3471         * appdomain.c: Corlib version bump.
3472
3473 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3474
3475         * appdomain.c|h: Add a mono_domain_try_unload method which is
3476         equivalent to mono_domain_unload, except that it returns an exception
3477         instead of throwing it. Make mono_domain_unload use the
3478         mono_domain_try_unload method to avoid code-duplication.
3479
3480 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3481
3482         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3483         a problem.
3484
3485 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3486
3487         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3488         aborting when a conversion is not implemented.
3489
3490 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3491
3492         * verify.c: when comparing culture strings, use g_ascii_strcmp
3493
3494         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3495         when comparing public key tokens to use memcmp on 16 bytes.   I do
3496         not believe this ever worked as advertised in the past.
3497
3498         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3499         which would have always failed earlier.
3500
3501 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3502
3503         * gc.c: Raise a NullArgumentException if the object passed is
3504         null.
3505
3506 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3507
3508         * image.c (mono_image_close): Atomically decrement the reference count and
3509         remove the image from the hash tables, to prevent another thread from seeing a
3510         dying MonoImage. Fixes #541194.
3511
3512 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3513
3514         * threadpool.c: actually use the minimum number of 'completion ports'
3515         (for us is just a potential worker thread).
3516
3517 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3518
3519         * threadpool.c: remove ares_htable. It does not make sense any more
3520         since the same objects are now stored in GC-tracked arrays while they are
3521         in the queue.
3522
3523 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3524
3525         * threadpool.c: increase the minimum length of the queues to 128.
3526         Remove warning.
3527
3528 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3529
3530         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3531         return the modified signature used by string ctors.
3532
3533 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3534
3535         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3536         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3537         method, to be used by full-aot.
3538
3539 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3540
3541         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3542         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3543         be known to be good.
3544
3545         * class.c (mono_class_init): Fail array types if their element type fails initialization
3546         as well.
3547
3548         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3549         initialization, additionally we request the element_type vtable to be initialized as well.
3550
3551         This is fine and should not increase the working set in any meaningful way since it's reasonable
3552         to assume       that most code will create an array and eventually populate it, which will require the
3553         type's vtable to be initialized.
3554
3555         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3556
3557 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3558
3559         * normalization-tables.h : regenerated.
3560
3561 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3562
3563         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3564         a leb128 encoding can take up to 5 bytes.
3565
3566 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3567
3568         * class.c (verify_class_overrides): Remove useless argument.
3569
3570         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3571         before interface enumeration as this is no longer required.
3572
3573 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3574
3575         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3576         used under mono_class_init context. This functions avoid any code path that
3577         calls mono_class_init, which leads it to be slow as some things like the interface
3578         bitmap are not available.
3579
3580         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3581         of it's own broken version. Fixes the verifier part of #538588.
3582
3583         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3584         API.
3585
3586 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3587
3588         * class.c (mono_class_init): Always set an exception in a class if
3589         vtable setup fails.  Fixes #538577.
3590
3591         * generic-sharing.c: Raise an exception if mono_class_vtable()
3592         returns NULL.
3593
3594 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3595
3596         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3597         methods of vtypes, as they could be incorrectly shared with static methods
3598         taking an IntPtr argument.
3599
3600 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3601
3602         * domain.c:
3603         * object.c:
3604         * class-internals.h: renamed waithandle_class to
3605         manualresetevent_class.
3606         * marshal.c: propagate the exception if a remoting BeginInvoke call
3607         fails.
3608
3609 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3610
3611         * object.c: Properly handle vtable failures.
3612
3613 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3614
3615         * socket-io.c: Assert on vtable failure.
3616
3617         * mono-mlist.c: Assert on vtable failure.
3618
3619 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3620
3621         * marshal.c: Assert on vtable failure.
3622
3623 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3624
3625         * icall.c: Properly handle vtable failures.
3626
3627 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3628
3629         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
3630
3631 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3632
3633         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
3634
3635         * console-unix.c (do_console_cancel_event): Same.
3636
3637 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3638
3639         * class-internals.h: Add mono_class_vtable_full function that allows control
3640         if an exception should be raised or not.
3641
3642         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
3643         to do what its documentation say, that is to return NULL and set exception_type on
3644         failure.
3645
3646         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
3647         and change the code to honor it.
3648
3649 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3650
3651         * verify.c: Fix typo in error message.
3652
3653 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
3654
3655         * security-core-clr.c: Fix default_platform_check so it can run
3656         the runtime coreclr tests (without an infinite recursion when
3657         throwing an exception).
3658
3659 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3660
3661         object.c (mono_delegate_ctor_with_method): Guard against null method.
3662
3663 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3664
3665         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
3666         that should be replaced with error handling later.
3667
3668 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3669
3670         * marshal.c (mono_delegate_end_invoke): Fix warning.
3671
3672 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3673
3674         * loader.c (mono_field_from_token): Properly handle invalid
3675         dynamic tokens.
3676
3677 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3678
3679         * pedump.c (verify_image_file): Skip types that can't be
3680         decoded.
3681
3682 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3683
3684         * verify.c: Look for recursive valuetypes only against the
3685         type been initialized as this is a lot simpler and works.
3686
3687 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3688
3689         * verify.c: Ensure that fields are properly loaded before
3690         checking them.
3691
3692 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3693
3694         * object.c (mono_object_get_virtual_method) : Call 
3695           mono_cominterop_get_invoke if the object is a COM object.
3696
3697         Code is contributed under MIT/X11 license.
3698
3699 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
3700
3701         * verify.c: Check for recursive valuetype definitions.
3702
3703 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3704
3705         Use inheritance-aware interface offsets. Inherited types use the same offsets
3706         of their parents. This reduce offset duplication in case more than one type in
3707         the inheritance tree explicitly implements the same interface.
3708
3709         This also removes a source of vtable bubbles found in #532409. An abstract type
3710         isn't required to provide abstract methods to all interfaces it implements, which
3711         resulted in a bubble with the previous scheme as the child would get a non-full
3712         vtable from its parent. We fail all concrete types with vtable bubbles, so this
3713         should be fixed.
3714
3715         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
3716         it's expected to not cause any significant increase beyond that.
3717
3718         * class.c (setup_interface_offsets): Compute super class iface offsets
3719         first to force sharing.
3720
3721         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
3722         dumping only the relevant ones.
3723
3724         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
3725         methods a new slot regardless if they belong to an interface or not. This allows
3726         an inherited type to override the iface method separately from the class one.
3727
3728 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3729
3730         * threadpool.c: make the Sleep() alertable to prevent delays exiting
3731         applications that take less than 2s to execute.
3732         Bug #524984 fixed.
3733
3734 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
3735
3736         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
3737
3738         * object.c (mono_get_runtime_callbacks): New helper function to return
3739         the runtime callbacks.
3740
3741         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
3742         mono_get_runtime_build_info () as the display name.
3743         
3744 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3745
3746         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
3747         argument, since NEWARR expects a native int. Fixes #481559.
3748
3749 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3750
3751         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
3752         against broken SRE methods.
3753
3754 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3755
3756         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
3757         a NULL variable. Abort early on failure.
3758
3759 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3760
3761         * class.c (can_access_type): Fail visibility test for non nested
3762         types with nested visibility.
3763
3764 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
3765
3766         * assembly.c (parse_public_key): Avoid allocating (and not 
3767         freeing) the public key array when it's not requested by the 
3768         caller.
3769         * threads.c (mono_thread_manage, mono_thread_create_internal, 
3770         ves_icall_System_Threading_Thread_Thread_internal): Free 
3771         allocated memory on error.
3772
3773 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3774
3775         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
3776
3777 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3778
3779         * class.c (mono_class_setup_fields): Remove duplicated local variable
3780         named gklass.
3781         Rename gklass to gtd to reflect the fact that it points to the generic
3782         type definition.
3783         Remove the duplicated call to mono_class_setup_fields on gtd and move
3784         the error check to the beginning.
3785
3786 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3787
3788         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
3789         Remove cruft of the previous patch.
3790
3791 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3792
3793         * metadata-verify.c (verify_method_table): Check for abstract + final.
3794         Fixes #534175.
3795
3796 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3797
3798         * verify.c (verify_class_fields): Check for duplicate fields.
3799
3800 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3801
3802         * metadata-verify.c: Verify the typeref table for duplicates.
3803
3804 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3805
3806         This reverts r140936 and properly handles interfaces with static methods. The
3807         right fix is to ensure vtables without bubles which is an easier to verify
3808         constraint. We should avoid such special cases as of the reverted patch as those
3809         only make the runtime more brittle.
3810
3811         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
3812         static methods on interfaces.
3813
3814         * class.c (setup_interface_offsets): Use the number of virtual methods when
3815         calculating interface offsets instead of the number of methods. This way we
3816         avoid bubles on the layout.
3817
3818 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
3819
3820         * metadata-verify.c (verify_metadata_header): Some very smart
3821         obfuscators like to add extra stream headers. Ignore them.
3822
3823 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
3824
3825         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
3826         methods correctly.
3827
3828 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
3829
3830         * metadata-verify.c: Verify for duplicated types.
3831
3832 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
3833
3834         * metadata-verify.c (verify_typedef_table): Verify for nested types
3835         without an entry on the nested class table.
3836
3837 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
3838
3839         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
3840         <tom_hindle@sil.org>. Add locking around hash table accesses.
3841
3842 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3843
3844         * verify.c (mono_verifier_verify_class): Verify all interface if
3845         really are interfaces. Fixes #534184.
3846
3847 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
3848
3849         * pedump.c: Initialize all types during metadata validation so we report
3850         errors only detected as part of class initialization.
3851
3852 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
3853
3854         * metadata-verify.c (verify_method_table): PInvoke requires method to
3855         be static. Fixes #534189
3856
3857 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
3858
3859         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
3860         being NULL.
3861
3862 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3863
3864         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
3865         for holes or bad methods. Fixes #525314.
3866
3867 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3868
3869         * class.c (setup_interface_offsets): Don't allocate slot
3870         for the same interface multiple times. This creates bubbles
3871         that waster space and make vtable verification harder.
3872
3873         The same interface get a slot multiple times since we need
3874         to get the closure of all implemented interfaces, which means
3875         the same interface is reported multiple times.
3876
3877 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3878
3879         * verify.c (mono_verifier_verify_class): Don't check the fields
3880         of generic instances since the context on which they got expanded
3881         might lead to false positives.
3882
3883         Such thing happens when a generic type is inflated in the context
3884         of a generic method and the inflated type of a field turns into a
3885         generic method argument, which causes the checking code to think
3886         it's an invalid class when it's not.
3887
3888 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3889
3890         * verify.c (mono_type_is_valid_in_context): Verify if type
3891         is NULL and remove duplicate test.
3892
3893 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3894
3895         * verify.c (mono_verifier_verify_class): Check fields for
3896         invalid generic arguments.
3897
3898 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3899
3900         * class.c (verify_class_overrides): Verify if for static
3901         and non virtual methods.
3902
3903 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3904
3905         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
3906         Check for errors after retrieving the vtable.
3907
3908 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3909
3910         * class.c (mono_class_setup_vtable_general): Verify
3911         if method overrides are valid before processing them.
3912
3913 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3914
3915         * marshal.c (mono_array_to_lparray): Fix minimal build with
3916         cominterop disabled.
3917
3918         * marshal.c (mono_free_lparray): Same.
3919
3920 2009-08-21  Mark Probst  <mark.probst@gmail.com>
3921
3922         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
3923         the hash function for the ares_htable.
3924
3925 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
3926
3927         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
3928         bit for assembly flags. MS is ok with it but there is no spec anywhere
3929         on its mean
3930
3931 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3932
3933         * class.c (mono_class_create_from_typedef): Emit profiler events
3934         in all cases.
3935
3936 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3937
3938         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
3939         Release memory on failure.
3940
3941 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3942
3943         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
3944         to the internal API.
3945
3946         * metadata.c (get_constraints): Use a single-linked table as we don't
3947         traverse it backward. Fail and return FALSE if only of the contraint types
3948         is not found.
3949
3950         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
3951         to mono_metadata_load_generic_param_constraints except for having a return value.
3952         This has to be done since the later is part of the public API.
3953
3954         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
3955         and fail the type.
3956
3957         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
3958         and fail the method.
3959
3960 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3961
3962         * metadata-verify.c (is_valid_method_header): Add work-around to deal
3963         with MS broken behavior of emmitting EH section sizes without the
3964         header size added.
3965
3966 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3967
3968         * metadata.c (mono_type_create_from_typespec): Don't allocate image
3969         memory until we're sure that we'll need it. This avoids leaking for
3970         broken types or duplicated instantiation.
3971
3972 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3973
3974         * metadata-verify.c (is_valid_method_header): Fix stupid formating
3975         mistake.
3976
3977 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3978
3979         * metadata-verify.c (is_valid_method_header): Fix number of clauses
3980         and expected size calculation.
3981
3982 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3983
3984         * class.c (mono_class_get_field_idx): Add fixme for broken
3985         behavior for types with multiple fields with the same name.
3986         I would rather fix it, but have no idea on how to generate
3987         such artifact for testing.
3988
3989 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3990
3991         * verify.c (verifier_load_field): We should allow references to
3992         fields to be made using the generic type definition. It's up to
3993         the loader system to fail invalid ops.
3994
3995         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
3996         are invalid.
3997
3998 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3999
4000         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
4001
4002         * metadata-internals.h: Fix declaration of 
4003         mono_metadata_interfaces_from_typedef_full.
4004
4005         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
4006         heap_alloc_result parameter that controls if the result should be
4007         g_malloc'd.
4008
4009         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
4010         array be g_malloc'd and properly document this public API function.
4011
4012 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4013
4014         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
4015         remove METHOD_HEADER_TINY_FORMAT1.
4016
4017         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
4018
4019         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
4020
4021         Both spec and MS uses only 2 bits to enumerate the kind of header.
4022         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
4023         is superfluous, only used for tiny headers with odd code lengths.
4024
4025         This change also make sure that mono doesn't wronly interpret bit 2
4026         of fat header flags, which is currently reserved.
4027
4028 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4029
4030         * metadata.c (do_mono_metadata_parse_type): Do error
4031         checking for element types. Don't abort if presented
4032         with a broken type kind.
4033
4034 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4035
4036         * metadata.c (mono_metadata_parse_method_signature_full):
4037         Gracefully fail bad vararg signatures.
4038
4039 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4040
4041         * profiler.c:
4042         * class.c: Fix warnings for uninitialized variables.
4043
4044 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4045
4046         * icall.c: Fix _NSGetEnviron method declaration warning.
4047
4048 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4049
4050         * icall.c:
4051         * reflection.c: Make bitwise checks explicit.
4052
4053 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4054
4055         * debug-helpers.c:
4056         * marshal.c: Fix printf warnings.
4057
4058 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4059
4060         * reflection.c (encode_cattr_value): Fix a warning.
4061
4062 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4063
4064         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
4065         of array bounds.
4066
4067 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4068
4069         * loader.c (mono_method_signature): Don't assert on broken
4070         signature. Print a more useful error message.
4071
4072 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4073
4074         * loader.c (mono_method_get_marshal_info): Assert if
4075         signature is invalid. Bounds check stores to the
4076         mspecs array;
4077
4078 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4079
4080         * loader.c (field_from_memberref): Fix warning.
4081
4082 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4083
4084         * loader.c (mono_method_get_param_names): Check if signature
4085         is null. Don't store beyond the size of the name array.
4086
4087 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4088
4089         * loader.c (mono_get_method_constrained): Check if signature
4090         is null.
4091
4092 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4093
4094         * loader.c (mono_loader_set_error_bad_image): Improve
4095         error messages.
4096
4097 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4098
4099         * loader.c (mono_get_method_full): Convert an assertion
4100         into a loader error.
4101
4102 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4103
4104         * class-internals.h, class.c: Better naming and documentation.
4105
4106 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
4107
4108         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4109         obj is NULL.
4110
4111 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4112
4113         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4114         parsing fails.
4115
4116 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4117
4118         * loader.c (mono_loader_error_prepare_exception): Handle missing field
4119         errors with no class set.
4120
4121         * loader.c (field_from_memberref): If the field signature is of the wrong
4122         type fail with a MissingFieldException instead of a BadImageException as
4123         this is the behavior observed on MS. 
4124
4125 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4126
4127         * loader.c (field_from_memberref): Don't crash if either the field
4128         signature or the typespec class are invalid.
4129
4130 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4131
4132         * verify.c (verifier_load_field): Don't allow field related
4133         ops to reference fields on generic type definition.
4134
4135 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4136
4137         * metadata-verify.c: Add new warning level for errors specified
4138         by ECMA 335 but that MS ignores.
4139
4140         * metadata-verify.c (verify_method_table): Make compiler controled
4141         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4142         this check is safe because the end result will only be some visibility
4143         exceptions been thrown.
4144
4145 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4146
4147         * verify.c (get_boxable_mono_type): Don't allow the
4148         use of the generic type definition on boxed type positions.
4149
4150         Fixes #531237.
4151
4152 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4153
4154         * threadpool.c: Make sure no cross-domain references remain in
4155         ares_htable or the arrays that are thrown away when resizing.
4156
4157 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4158
4159         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4160         list of classes for which we have to unregister reflection_info
4161         with the GC and which are not in the namespace cache.
4162
4163         * reflection.c (mono_reflection_initialize_generic_parameter): Add
4164         the class to the list.
4165
4166 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4167
4168         * domain.c (mono_domain_free): Unregister the GC roots in
4169         MonoDomain.
4170
4171 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4172
4173         * reflection.c (mono_reflection_type_get_handle): Fix typo.
4174
4175 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4176
4177         * class.c: Add mono_class_get_field_from_name_full which does
4178         the same as mono_class_get_field_from_name but does check field
4179         signature as well.
4180
4181         * class-internals.h: Export mono_class_get_field_from_name_full as
4182         part of the internal API.
4183
4184         * loader.c (field_from_memberref): Search fields by name and signature
4185         as it's valid to have two fields with same name but different types.
4186
4187         Fixes #528055.
4188
4189 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
4190
4191         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4192
4193         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4194
4195         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
4196         System.Type.
4197
4198 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
4199
4200         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
4201
4202         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
4203
4204 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4205
4206         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
4207         to sgen-scan-object.h, which can be included and parameterized via
4208         macros.
4209
4210         * Makefile.am: sgen-scan-object.h added.
4211
4212 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4213
4214         * gc.c: #define GC_dont_gc if we're compiling with SGen.
4215
4216 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4217
4218         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
4219         before clearing a domain in the GC.
4220
4221 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4222
4223         * exception.c (mono_exception_from_name_domain): Actually create
4224         the exception in the specified domain.
4225
4226         * appdomain.c (mono_domain_create_appdomain_internal): Create the
4227         OutOfMemoryException a bit later so that the domain is inialized
4228         "enough" that it works.
4229
4230 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4231
4232         * threads.c (thread_cleanup): Clean up the cached_culture_info
4233         array to prevent cross-domain references.
4234
4235 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
4236
4237         * metadata.c: more documentation for MonoType accessors.
4238
4239 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
4240
4241         Fix incorrect size definitions where the tail array isn't a list
4242         of pointers
4243         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
4244         define size.
4245         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
4246         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
4247         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
4248
4249 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4250
4251         * reflection.h:
4252         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
4253
4254 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4255
4256         * metadata.c:
4257         * loader.c:
4258         * metadata-internals.h:
4259         * method-builder.c:
4260         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
4261
4262 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4263
4264         * cominterop.c:
4265         * metadata.c:
4266         * metadata.h:
4267         * loader.c:
4268         * marshal.c:
4269         * reflection.c: #define for sizeof in MonoType and
4270         MonoMethodSignature.
4271
4272 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4273
4274         * domain.c:
4275         * domain-internals.h: add and use #define's instead of sizeof()
4276         for MonoJitInfo and MonoJitInfoTable.
4277
4278 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4279
4280         * object.c:
4281         * class.h: use #define instead of sizeof() for MonoRemoteClass.
4282
4283 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4284
4285         * metadata.c:
4286         * metadata.h:
4287         * object.c:
4288         * class-internals.h:
4289         * generic-sharing.c:
4290         * marshal.c: use a #define instead of sizeof() for a few
4291         structures that use a zero-length array.
4292
4293 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
4294
4295         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
4296         to handle inflated generic methods.
4297
4298         * appdomain.c: Bump corlib version.
4299
4300         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
4301         instances.
4302
4303         * reflection.c (fixup_method): Same
4304
4305         * reflection.c (resolve_object): Same.
4306
4307         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
4308         g_error and a decent message.
4309
4310 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
4311
4312         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
4313         from the object because it could not yet be available globally
4314         (it happens if the profiler tries to create a gchandle on the
4315         MonoThread object of a thread that is still registering itself
4316         with the runtime).
4317
4318 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
4319
4320         * reflection.c (mono_generic_class_get_object): Initialized the
4321         managed type arguments array.
4322
4323         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
4324
4325         * appdomain.c: Bump corlib version.
4326
4327 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
4328
4329         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
4330         #527902.
4331
4332 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
4333
4334         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4335         Avoid a crash if synch_cs is not set.
4336         
4337         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4338         Handle the case when the handle is 0.
4339
4340         * appdomain.c: Bump corlib version.
4341
4342 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
4343
4344         * reflection.c (mono_type_get_object): Fix a warning.
4345
4346 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4347
4348         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4349         descriptor here.  We assume it's already been computed.
4350
4351         * generic-sharing.c (instantiate_other_info): Compute the GC
4352         descriptor for info type MONO_RGCTX_INFO_KLASS.
4353
4354 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4355
4356         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4357         type, so don't use MONO_OBJECT_SETREF to set a field.
4358
4359 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4360
4361         * gc.c: We were missing one case where invoking a finalizer would
4362         not reset the domain.  Also, in the finalizer thread loop, assert
4363         that we're in the root domain.
4364
4365 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4366
4367         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4368         if the type is not an array.
4369
4370 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4371
4372         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4373         method bound to the declaring type of the method. Raise an exception
4374         if the type is not a generic param.
4375
4376 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4377
4378         * class.c (print_unimplemented_interface_method_info): Print the
4379         full type name.
4380
4381         * class.c (mono_class_setup_vtable_general): When dealing with a
4382         generic instance first check if the generic type definition is
4383         not broken.
4384
4385 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4386
4387         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4388
4389         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4390
4391         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4392
4393         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4394
4395         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4396
4397         Code is contributed under MIT/X11 license
4398
4399 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4400
4401         * verify.c: Fix naming of stelem and ldelem.
4402
4403 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4404
4405         * generic-sharing.c: Replace the templates lock with the loader
4406         lock because of very hard to resolve deadlock issues.
4407
4408 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4409
4410         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4411         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4412         directly. Fixes #525338.
4413
4414         * class.c (mono_class_get_vtable_size): New helper function.
4415
4416         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4417         the field belongs to the type. Fixes #525733.
4418
4419 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4420
4421         * sgen-gc.c: When we stop a thread and its stack top is not within
4422         its allocated stack (because it's in an altstack signal handler),
4423         restart it and stop it again, until it is.
4424
4425 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4426
4427         * sgen-gc.c: Take a thread's stack top and registers from the
4428         sigcontext in the suspend signal handler.
4429
4430         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4431         stuff to sgen-archdep.h.
4432
4433         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4434         caller, because have code in sgen-archdep.h to acquire that data.
4435
4436 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4437
4438         * profiler.c, profiler.h, profiler-private.h:
4439         Added support for keeping track of code chunks and buffers.
4440
4441 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4442
4443         * metadata-verify.c: Fix endianness problems on decoding functions.
4444         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4445
4446 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4447
4448         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4449         schema for vectors and one dimension SZARRAY.
4450
4451 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4452
4453         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4454         schema for vectors and one dimension SZARRAY.
4455
4456 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4457
4458         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4459         Interlocked.(Compare)Exchange with object arguments, which invoke
4460         write barriers.
4461
4462 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4463
4464         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4465         passed invalid arguments.   Fixes another crasher in the
4466         Silverlight test suite.
4467
4468         * class.c (mono_class_array_element_size): Return 0 for the size
4469         of the class;  This fixes the crasher exposed by :
4470
4471         typeof (void).MakeArrayType ();
4472
4473         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4474         if there is no method to dereference.    Put all the code that
4475         depends on this inside the if (method) block.
4476
4477         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4478         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4479
4480         With this change, we pass the test.
4481         
4482         * reflection.c (mono_reflection_sighelper_get_signature_local):
4483         Only dereference the assembly if it has been set.    Fixes a
4484         crasher exposed by #525328
4485
4486 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4487
4488         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4489         don't perform the store in mono_gc_wbarrier_generic_nostore().
4490         Remove the second argument (value), which is not needed.
4491
4492 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4493
4494         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4495         the build.
4496
4497         * boehm-gc.c: Ditto.
4498         
4499 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4500
4501         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4502         not perform the store itself.  Introduce
4503         mono_gc_wbarrier_generic_nostore(), which is the same as
4504         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4505         store.
4506
4507 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4508
4509         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4510         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4511         we still need the memcpy().
4512
4513 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4514
4515         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4516         so that big arrays are handled correctly.  Always use
4517         safe_object_get_size() to calculate array object sizes, which
4518         takes bounds into account.
4519
4520 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4521
4522         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4523         GC descriptor is computed before we use it.
4524
4525 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4526
4527         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4528         write barrier if necessary.
4529
4530 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4531
4532         * icall-def.h, icall.c, thread-types.h: New separate icall for
4533         VolatileWrite(object&,object) that uses a write barrier.
4534
4535         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4536         barriers in icalls which write to "ref" or "out" arguments.
4537
4538 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4539
4540         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4541         handler in a separate icall, to reduce the size of the wrappers.
4542
4543 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4544
4545         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4546
4547 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4548
4549         * metadata-verify.c (parse_field): Allow byref field.
4550
4551         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4552
4553         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4554
4555 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4556
4557         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4558         Fixes #522784.
4559
4560 2009-07-20  Robert Jordan  <robertj@gmx.net>
4561
4562         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4563         Fix invalid IL in valuetype handling (STOBJ must push the
4564         corresponding class). Fixes bug #523149.
4565
4566         Code is contributed under MIT/X11 license.
4567
4568 2009-07-20  Geoff Norton  <gnorton@novell.com>
4569
4570         * gc.c: Use proper semaphores where available on posix and darwin.
4571
4572 2009-07-19  Geoff Norton  <gnorton@novell.com>
4573
4574         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4575
4576 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4577
4578         * refletion.c (is_sre_usertype): Change name to is_usertype and
4579         invert it's result so it returns true if the type is an user type
4580         and not the opposite.
4581
4582         * reflection.c (is_*_type): Change all of those to use new macro
4583         check_corlib_type_cached that cached the type lookup so we don't
4584         need to do string comparisons all the type. Changed the signature
4585         to take a MonoClass instead.
4586
4587         * reflection.c: Change mono_image_create_token and resolve_object
4588         to use is_sre_* functions.
4589
4590 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4591
4592         * sgen-gc.c: Check for writes to the stack in the managed
4593         wbarrier as well.
4594
4595 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4596
4597         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4598         but put them on a list which is processed with the other thread's
4599         remsets.
4600
4601 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4602
4603         * sgen-gc.c: Fix and enable the internal allocator instead of
4604         using malloc/free (which causes deadlocks).
4605
4606 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4607
4608         * refletion.c: Fix builds with SRE disabled by adding a minimal
4609         implementation of mono_reflection_type_get_handle.
4610
4611 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4612
4613         * refletion.c: Make mono_reflection_type_get_handle non static.
4614
4615         * object-internals.h: Export mono_reflection_type_get_handle.
4616
4617         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
4618         unmanaged handle using mono_reflection_type_get_handle.
4619
4620 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4621
4622         * refletion.c: Replace all reads of MonoReflectionType::type with
4623         calls to mono_reflection_type_get_handle. Only the functions that
4624         deal with constructing TypeBuilder::type have not been changed
4625         because they have to deal with NULL values.
4626
4627         This is a first step into supporting reflection types that don't
4628         map directly into their unmanaged counterpart.
4629
4630 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4631
4632         * metadata-verify.c (parse_locals_signature): Don't complain
4633         on signature with zero locals since MS generates it and doesn't
4634         bother with.
4635
4636 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4637
4638         * reflection.c (mono_image_get_array_token): Resolve return
4639         type using mono_reflection_type_get_handle.
4640
4641         * reflection.c (mono_image_get_array_token): Resolve array method
4642         parent type using mono_reflection_type_get_handle.
4643
4644 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4645
4646         * reflection.c (mono_image_basic_init): Applied patch from
4647         <Dax@daxxfiles.net>. Set the public key token from the assembly
4648         builder. Fixes #518909.
4649
4650         * appdomain.c: Bump corlib version.
4651
4652 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4653
4654         * class.c (mono_class_needs_cctor_run): Make this return false if
4655         the class has no cctor.
4656
4657 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4658
4659         * sgen-gc.c: When the minor GC needs to allocate a new section,
4660         invoke the major GC afterwards.
4661
4662 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
4663
4664         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
4665           Applying the window_style field to the SHELLEXECUTEINFO struct.
4666
4667         Code is contributed under MIT/X11 license.
4668
4669 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4670
4671         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
4672         locking earlier.  Fix it in the managed allocator by making sure
4673         that no thread is stopped there before the GC runs.  If we do stop
4674         a thread there, we restart it and let it run a but, until it stops
4675         somewhere else.
4676
4677         * gc-internal.h, gc.c: Function for getting the IP from a signal
4678         context via a function registered by mini.
4679
4680 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
4681
4682         * object-internals.h (MonoIntPtr): New structure describing a boxed
4683         IntPtr.
4684
4685         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
4686         returns. Fixes #519953.
4687
4688         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
4689
4690 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4691
4692         * class-internals.h, generic-sharing.c: New RGCTX info type for
4693         getting a remoting invoke with check wrapper.
4694
4695 2009-07-07  Geoff Norton  <gnorton@novell.com>
4696
4697         * icall-def.h: Fix the enable-minimal build.
4698
4699 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4700
4701         * object-internals.h: Add MonoReflectionDerivedType.
4702
4703         * reflection.c: Implement support for PointerType.
4704         Fixed tons of warnings.
4705
4706 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4707
4708         * object-internals.h: Add MonoReflectionByRefType.
4709
4710         * reflection.c: Implement support for ByRefType.
4711
4712 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4713
4714         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
4715
4716         * object-internals.h: Add MonoReflectionArrayType and
4717         mono_reflection_create_unmanaged_type.
4718
4719         * reflection.c: Implement support for ArrayType.
4720
4721 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4722
4723         * metadata-verify.c (is_valid_method_header): Parse EH block
4724         flags correctly.
4725
4726 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4727
4728         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
4729         processing the disappearing links, and process disappearing links
4730         in a loop until no new objects are copied.
4731
4732 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4733
4734         * object.c (handle_enum): Invoke the write barrier when copying
4735         value type instances.
4736
4737         * sgen-gc.c: Register remsets for unmanaged write barriers only
4738         when the address written to is actually on the heap.  This makes
4739         set_value() in object.c work without requiring that the result be
4740         on the heap.
4741
4742 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
4743
4744         The runtime wrappers are all bound to a given type that must
4745         exist in the same image. For regular images we use the <Module>
4746         type, which is required to exist for all images.
4747
4748         The <Module> type can't be used for dynamic images because it
4749         might not exist at the time the wrapper is required, so we create
4750         a synthetic type to use instead.
4751
4752         The current code works because of the 2 stage setup of MonoClass,
4753         but once this is gone it will no longer work.
4754
4755         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
4756
4757         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
4758
4759         * object-internals.h: Export mono_image_set_wrappers_type icall
4760         as part of the internal API.
4761
4762         * marshal.c (get_wrapper_target_class): If the image is dynamic,
4763         use MonoDynamicImage::wrappers_type instead of the <Module> type.
4764
4765         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
4766         image wrappers_type to the provided value.
4767
4768 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
4769
4770         * appdomain.c (deregister_reflection_info_roots): No need
4771         to use the image lock here.
4772
4773 2009-07-02  Mark Probst  <mark.probst@gmail.com>
4774
4775         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
4776
4777 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
4778
4779         * threads.c: Store the thread start argument in a hash table instead of
4780         registering it as a root, as libgc doesn't support unregistering roots
4781         under windows, leading to 'too many root sets' errors when many threads
4782         are created.
4783
4784         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
4785         shutdown, they can still be referenced by the other dying objects.
4786         Fixes #514506.
4787
4788 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4789
4790         * socket-io.c: DontLinger does not allow LingerOptions.
4791
4792 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4793
4794         * metadata-verify.c: The spec doesn't mention that it's possible to add
4795         custom attribute to a generic parameter. Fixed.
4796
4797 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4798
4799         * class.c (inflate_generic_type): Don't crash while trying to output a message
4800         on why we're aborting.
4801
4802 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4803
4804         * socket-io.c: DontLinger can take an int or a boolean too.
4805
4806 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
4807
4808         * gc.c: check for a null argument to SuppressFinalize () and
4809         ReRegisterForFinalize ().
4810
4811 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4812
4813         * loader.c (method_from_methodspec): Call into the verifier to check
4814         the signature.
4815
4816         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
4817
4818         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
4819         part of the internal API.
4820
4821 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4822
4823         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
4824         the signature.
4825
4826         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
4827
4828         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
4829         part of the internal API.
4830
4831 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4832
4833         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
4834         the signature.
4835
4836         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
4837         blob verification.
4838
4839         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4840         part of the internal API.
4841
4842 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4843
4844         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
4845         when doing basic verification. 
4846
4847         This check must be done since the runtime peeks into signatures in much
4848         more places than it does decoding so it makes sense to ensure that all
4849         pointers to blob objects are well formed.
4850
4851 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4852
4853         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
4854         Use proper overflow dectection. Fix usage of it.
4855
4856 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4857
4858         * loader.c (field_from_memberref): Call into the verifier to check
4859         the signature.
4860
4861         * loader.c (mono_method_get_signature_full): Same.
4862
4863         * loader.c (method_from_memberref): Same.
4864
4865         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
4866
4867         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4868         part of the internal API.
4869
4870 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4871
4872         * threadpool.c (mono_thread_pool_add): If the domain is unloading
4873         or unloaded, still return an AsyncResult, but don't add it to the
4874         threadpool.
4875
4876 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4877
4878         * threads.c: fix missing colon when DEBUG is defined.
4879
4880 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4881
4882         * threadpool.c: Don't add new calls to a threadpool if the domain
4883         of the call is unloading or unloaded.  When dequeuing a job, null
4884         the reference in the queue.
4885
4886 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4887
4888         * sgen-gc.c (null_link_in_range): Add the dislink for the old
4889         generation if an object was moved.
4890
4891 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
4892
4893         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
4894           parameters of type SAFEARRAY[VARIANT].
4895
4896         * reflection.c (encode_marshal_blob): Properly generate element type
4897           (SafeArraySubType marshal attribute option).
4898
4899         Code is contributed under MIT/X11 license.
4900
4901 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
4902
4903         * reflection.c: in mono_method_clear_object () really ensure all the
4904         objects are removed.
4905
4906 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4907
4908         * loader.c (mono_method_signature): Call into the verifier to check
4909         the method signature.
4910
4911         * metadata-verify.c (verify_method_table): Move signature verification
4912         to verify_method_table_full.
4913
4914         * metadata-verify.c: Add mono_verifier_verify_method_signature.
4915
4916         * verify-internals.h: Export mono_verifier_verify_method_signature as
4917         part of the internal API.
4918
4919 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4920
4921         * loader.c (mono_method_get_header): Call into the verifier to
4922         check the method header.
4923
4924         * metadata-verify.c: Add mono_verifier_verify_method_header.
4925
4926         * verify-internals.h: Export mono_verifier_verify_method_header as
4927         part of the internal API.
4928
4929 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4930
4931         * class.c (mono_class_find_enum_basetype): Call into the verifier to
4932         check the field signature. Replace an assert with an explicit check.
4933
4934         * class.c (mono_class_setup_fields): Call into the verifier to check
4935         the field signature.
4936
4937         * metadata-verify.c: Add mono_verifier_verify_field_signature.
4938
4939         * verify-internals.h: Export mono_verifier_verify_field_signature as
4940         part of the internal API.
4941
4942 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4943
4944         * class.c (mono_class_find_enum_basetype): Simplify this function
4945         by moving code outside of the loop and not decoding static fields.
4946
4947 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4948
4949         * metadata-verify.c (verify_typedef_table): Check the extends
4950         token here. Move to here a flags check from verify_typedef_table_full.
4951
4952 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4953
4954         * metadata-verify.c (is_valid_method_header): Fix a warning.
4955
4956         * metadata-internals.h (MonoImage): Remove the unused 
4957         static_rgctx_invoke_wrapper_cache.
4958
4959         * image.c marshal.c: Ditto.
4960
4961 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4962
4963         * image.c (do_mono_image_load): Enable table data verification.
4964
4965 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4966
4967         * metadata-verify.c (is_valid_constant): Fix nullref check.
4968
4969 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4970
4971         * metadata-verify.c (is_valid_constant): Fix string bounds check.
4972
4973 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4974
4975         * sgen-gc.c: Managed allocation with pthreads TLS.
4976
4977         * threads.c, threads-types.h: Functions for the JIT to tell the
4978         runtime whether it supports the MONO_TLS opcode.
4979
4980 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4981
4982         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
4983         without methods.
4984
4985 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4986
4987         * metadata-verify.c (is_valid_constant): Fix the string length check.
4988         Use safe overflow checking. Add decent error messages.
4989
4990 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4991
4992         * metadata-verify.c: Move remaininh blob checks to the offline
4993         verification path.
4994
4995 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4996
4997         * metadata-verify.c: Move more blob checks to the offline verification
4998         path.
4999
5000 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
5001
5002         * object-internals.h : Adding interrupt_on_stop field.
5003
5004         * threads.c (mono_thread_request_interruption) : On Windows exit the
5005           thread if interrupt_on_stop is set.
5006
5007         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5008          Removing old interrupt logic and setting the interrupt_on_stop for the
5009          thread when calling accept.
5010
5011         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
5012          setting the interrupt_on_stop for the thread when calling accept.
5013
5014         Contributed under MIT/X11 license.
5015
5016 2009-06-20  Martin Baulig  <martin@ximian.com>
5017
5018         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
5019
5020 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
5021
5022         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
5023         running in no-exec mode.
5024
5025 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5026
5027         * metadata-verify.c (verify_method_table): Move header
5028         checking to verify_method_table_full.
5029
5030         * metata-verify.c (mono_verifier_verify_full_table_data):
5031         Call verify_method_table_full.
5032
5033 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5034
5035         * metadata-verify.c (verify_field_table): Move signature
5036         checking to verify_field_table_full.
5037
5038         * metata-verify.c (mono_verifier_verify_full_table_data):
5039         Call verify_field_table_full.
5040
5041 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5042
5043         * metadata-verify.c (verify_typedef_table): Move remaining
5044         stuff to verify_typedef_table_full.
5045
5046 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5047
5048         * metadata-verify.c: Kill is_corlib from VerifyContext.
5049         It is only used by the offline mode.
5050         So we better remove it from the runtime path.
5051
5052 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5053
5054         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
5055         function that perform the offline metadata verification steps.
5056
5057         * metadata-verify.c (verify_typedef_table): Move some checks to
5058         verify_typedef_table_full and make it been called by new function
5059         mono_verifier_verify_full_table_data.
5060
5061         * pedump.c: Call mono_verifier_verify_full_table_data.
5062
5063         * verify-internals.h: Export mono_verifier_verify_full_table_data as
5064         part of the internal API.
5065
5066 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5067
5068         * metadata-verify.c (typedef_is_system_object): Fix System.Object
5069         check.
5070
5071         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
5072         flags bits. SupportLastError was confused as bit 7 instead of 6.
5073
5074         * metadata-verify.c (verify_implmap_table): Fix import scope verification
5075         to check against the module ref table instead of module.
5076
5077         * metadata-verify.c (verify_implmap_table): Fix corlib check.
5078
5079         * pedump.c: Call mono_image_load_names.
5080
5081 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5082
5083         * image.c: Extract mono_image_load_names from do_mono_image_load.
5084
5085         * metadata-internals.h: Export mono_image_load_names as part of
5086         the internal API.
5087         
5088 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
5089
5090         * metadata.c (mono_metadata_cleanup): Free the generic method cache
5091         first, as it could reference data in the other caches.
5092
5093 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5094
5095         * metadata-verify.c: Finished with method header verification.
5096
5097 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5098
5099         * metadata-verify.c: Added more header verification code.
5100         Now only EH clauses are missing.
5101
5102 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
5103
5104         * marshal.c (get_runtime_invoke_type): Don't share primitive types
5105         for return values.
5106
5107 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5108
5109         * metadata-verify.c: Initial method header verification.
5110
5111 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5112
5113         * metadata-verify.c (verify_import_table): The IAT contents
5114         might end been patched by the windows DL when running with
5115         coree enabled.
5116
5117 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
5118
5119         * class.c (mono_class_from_typeref): If the enclosing type is not
5120         found return null instead of crashing. Fixes #508487.
5121
5122 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
5123
5124         * normalization-tables.h : updated to the latest unicode charcter
5125           data.
5126         * appdomain.c : bump corlib version.
5127
5128 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
5129
5130         * class.c (mono_class_from_name): Fix support for assembly references
5131         in the EXPORTEDTYPE table. Fixes #511704.
5132
5133 2009-06-13  Geoff Norton  <gnorton@novell.com>
5134
5135         * domain.c: Ensure that mono_domain_assembly_open actually opens the
5136         assembly in the target domain.
5137
5138 2009-06-12  Robert Jordan  <robertj@gmx.net>
5139
5140         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5141         because "this" of the managed signature has become an
5142         ordinary parameter in the unmanaged signature.
5143
5144 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
5145
5146         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5147         field for owner-less generic containers.
5148
5149         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5150         image field of the owner-less generic containers created here.
5151
5152         * metadata.c (mono_metadata_load_generic_params): Ditto, the
5153         contain is ownerless until the caller sets its owner.
5154
5155         * metadata.c (type_in_image): Handle owner-less generic containers
5156         correctly.
5157         
5158 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5159
5160         * image.c (mono_image_close): Support debug_assembly_unload for
5161         dynamic images too.
5162
5163 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
5164
5165         * class.c: Fix some typos in comments.
5166
5167 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5168
5169         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5170
5171         * threads.c (mono_thread_execute_interruption): Avoid creating the
5172         abort exception object while holding the synch_cs lock.
5173
5174 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5175
5176         * metadata-verify.c: Verify basic cattr content.
5177
5178 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
5179
5180         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5181         nested types.
5182         
5183         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5184         support for nested types. Fixes #511704.
5185
5186 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5187
5188         * metadata-verify.c: Verify methodspec signatures.
5189
5190 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5191
5192         * metadata-verify.c: Verify typespec signatures.
5193
5194 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
5195
5196         * metadata.c (free_inflated_method): Call 
5197         mono_marshal_free_inflated_wrappers (), which was missed earlier.
5198
5199 2009-06-08  Miguel de Icaza  <miguel@novell.com>
5200
5201         * mono-config.c: Small change to report the PPC64/ILP32 model.
5202
5203 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5204
5205         * metadata-verify.c (parse_type): Check szarray.
5206
5207 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5208
5209         * metadata-verify.c (parse_type): Check fnptr.
5210
5211 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5212
5213         * metadata-verify.c (parse_type): Check generic instances.
5214
5215 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5216
5217         * metadata-verify.c (parse_type): Check array shape.
5218
5219 2009-06-05  Robert Jordan  <robertj@gmx.net>
5220
5221         * class.c (mono_class_create_from_typedef): Check only for
5222         mscorlib's System.Array.
5223
5224 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5225
5226         * metadata-verify.c (parse_type): Check pointer, class/valuetype
5227         and generic params. 
5228
5229         * metadata-verify.c (parse_field): Check the signature.
5230
5231 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5232
5233         * metadata-verify.c: Implement locals signature check.
5234
5235 2009-06-04  Marek Safar  <marek.safar@gmail.com>
5236
5237         * domain.c: Add .NET 4.0 Beta 1 version.
5238
5239 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
5240
5241         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
5242           For QueryInterface on CCWs consider the base class
5243           interfaces as well.
5244
5245         Code is contributed under MIT/X11 license.
5246
5247 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5248
5249         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
5250
5251         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
5252         used.
5253
5254         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5255         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
5256
5257         * generic-sharing.c (inflate_other_data): Ditto.
5258         
5259 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5260
5261         * metadata-verify.c: Implement property signature check.
5262
5263 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5264
5265         * sgen-gc.h: Register saving support for PPC.
5266
5267 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5268
5269         * sgen-gc.c: Fixed a pthread TLS screwup.
5270
5271 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5272
5273         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
5274         supported.
5275
5276 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5277
5278         * sgen-gc.c: Disable TLA and managed allocation if the __thread
5279         keyword is not supported.
5280
5281 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5282
5283         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
5284         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
5285         the inflated method is freed. Fixes #508389.
5286
5287         The code is contributed under the MIT/X11 license.
5288         
5289 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
5290
5291         * marshal.c (get_wrapper_target_class): New helper function.
5292         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
5293         the <Module> class of the image. Fixes #509049.
5294
5295 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5296
5297         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
5298         Check if the thread was interrupted and proccess it straight away.
5299         Makes abortion much more responsive.
5300
5301 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5302
5303         * threads.c (mono_thread_execute_interruption): Use atomic cas with
5304         MonoThread::interruption_requested to match it's counterpart.
5305
5306         Fixes a hang in abort-stress-1 on a 2 core x86.
5307
5308         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
5309         Fix warning.
5310
5311 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5312
5313         Change MonoImage::name_cache to be protected by the image lock
5314         instead of the loader lock.
5315
5316         * appdomain.c (deregister_reflection_info_roots): Protect access
5317         to name_cache.
5318
5319         * class.c (mono_image_init_name_cache): Change from the loader lock
5320         to the image lock. Check if the cache wasn't already created.
5321
5322         * class.c: Change from the loader to the image lock.
5323
5324         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
5325         the code to hold the image lock while iterating over name_cache and
5326         not go into mono_array_new holding it.
5327
5328         * metadata-internals.h: Add a comment about this change.
5329
5330 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5331
5332         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5333         Under the 2.0 profile raise the loader error.
5334
5335         Fixes #508532.
5336
5337 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5338
5339         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5340         of ldind opcode for generic instances so we don't fail for direct wrappers.
5341         This only affect direct calls.
5342
5343 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5344
5345         * reflection.c (create_dynamic_mono_image): Fix warnings.
5346
5347         * generic-sharing.c (other_info_equal): Ditto.
5348         
5349 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5350
5351         * metadata-verify.c: Implement field signature check.
5352
5353 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5354
5355         * metadata-verify.c: Implement standalone signature check.
5356
5357 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5358
5359         * metadata-verify.c: Implement methodref signature check.
5360
5361 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5362
5363         * object-internals.h (MonoRuntimeCallbacks): New structure containing
5364         callbacks supplied by the runtime.
5365
5366         * object.c (mono_install_callbacks): New internal function to install
5367         the callbacks.
5368
5369         * object.c (mono_create_ftnptr): Move the implementation of this to
5370         mini/.
5371
5372         * object.c (mono_get_addr_from_ftnptr): Ditto.  
5373
5374 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5375
5376         * metadata-verify.c (parse_return_type): Proper byref check.
5377         * metadata-verify.c (is_valid_method_signature): Check for zero arity
5378         generic signatures and method params.
5379
5380 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5381
5382         * metadata-verify.c (decode_signature_header): Fix bounds check.
5383
5384         * metadata-verify.c (parse_custom_mods): Check custom mods.
5385
5386         * metadata-verify.c (parse_type): Do initial basic verification
5387         of valid values.
5388         
5389         * metadata-verify.c (is_valid_method_signature): Parse the generic
5390         param count.
5391
5392 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5393
5394         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5395         discarded based on their most specific definition so we set the method_slots
5396         array before checking if the method is acceptable or not.
5397
5398         Fixes #506757.
5399
5400 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5401
5402         * icall.c: Free the old array when resizing a mono_ptr_array.
5403
5404 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5405
5406         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5407         for the hashes whose keys are managed objects.
5408
5409 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5410
5411         * object-internals.h, threads.c: Set the execution context on
5412         thread start here, not in corlib.
5413
5414         * appdomain.c: Bump corlib version.
5415
5416 2009-05-27  Martin Baulig  <martin@ximian.com>
5417
5418         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5419         if `_mono_debug_using_mono_debugger' is set to make things work
5420         properly when embedding Mono.
5421
5422 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5423
5424         * class.c (mono_class_setup_fields): Don't mark simd types as having
5425         16 bytes alignment as the whole runtime doesn't support.
5426
5427 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5428
5429         * metadata-verify.c (safe_read): Use endian safe read macros.
5430
5431 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5432
5433         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5434         it is read-only when using full aot.
5435
5436 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5437
5438         * metadata-verify.c (is_valid_method_signature): Verify parts
5439         of the return type. Provide an error message in case of failure.
5440
5441 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5442
5443         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5444
5445 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5446
5447         * metadata-verify.c: Include the size prefix in the bounds check.
5448
5449 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5450
5451         * icall.c: Remove warnings.
5452
5453         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5454         prevent auto-detection based on GCC defines.
5455
5456         Add PS3
5457
5458         * metadata-verify.c: Do not include signal.h
5459
5460         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5461         messages.  Not sure why the g_assert_not_reached is not enough to
5462         quiet the compiler.
5463         
5464
5465         * appdomain.c: Remove code that is not used when
5466         DISABLE_SHADOW_COPY is set.
5467
5468         * image.c: use g_getenv
5469
5470 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5471
5472         * reflection.c: Remove code that it not used with
5473         DISABLE_REFLECTION_EMIT is defined.
5474
5475 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5476
5477         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5478         invoke wrappers.
5479
5480 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5481
5482         * socket-io.c
5483         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5484         the ifdef here and instead put that on io-layer
5485
5486 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5487
5488         * metadata-verify.c: Verify the generic param constraint table.
5489
5490 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5491
5492         * metadata-verify.c (verify_generic_param_table): Fix
5493         thinko on the valid flags bits for generic params.
5494
5495 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5496
5497         * metadata-verify.c: Verify the methodspec table.
5498
5499 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5500
5501         * metadata-verify.c: Verify the generic param table.
5502
5503 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5504
5505         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5506
5507 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5508
5509         * sgen-gc.c: Use generation enum more consistently and use the
5510         correct generation in mono_gc_register_for_finalization().
5511
5512 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5513
5514         * metadata-verify.c: Verify the nested class table.
5515
5516 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5517
5518         * metadata-verify.c: Verify the manifest resource table.
5519
5520 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5521
5522         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5523
5524 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5525
5526         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5527         wrappers, this is now done in the JIT.
5528         
5529         * class.c (mono_set_generic_sharing_supported): New internal function.
5530         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5531
5532 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5533
5534         * metadata-verify.c: Verify the exported type table.
5535
5536 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5537
5538         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5539
5540 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5541
5542         * metadata-verify.c: Verify the file table.
5543
5544 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5545
5546         * metadata-verify.c (verify_assembly_table): Fix an error message.
5547
5548         * metadata-verify.c: Verify the assemblyref table.
5549
5550 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5551
5552         * metadata-verify.c (verify_assembly_table): Fix the valid
5553         bits mask for flags.
5554
5555 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5556
5557         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5558         generic methods as well.
5559
5560 2009-05-15  Geoff Norton  <gnorton@novell.com>
5561
5562         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5563         use-case and is significantly more performant than the wapi layer.
5564
5565 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5566
5567         * metadata-verify.c: Verify the assembly table.
5568
5569 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5570
5571         * metadata-verify.c: Fix rows limit check.
5572
5573 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5574
5575         * metadata-verify.c: Verify the fieldrva table.
5576
5577 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5578
5579         * sgen.c: Speed up weak links and finalizers by grouping them by
5580         generation.
5581
5582 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5583
5584         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5585         free the old GCHandle (only applies to SGen).
5586
5587 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5588
5589         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5590         mono_metadata_load_generic_params () for non-generic methods.
5591
5592 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5593
5594         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5595         New function for returning a monitor's weak link if it has one.
5596
5597         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5598         one) when clearing a domain.  These can still be around because
5599         the object might not have been collected.
5600
5601 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5602
5603         * gc.c: Fix a warning.
5604
5605 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
5606
5607         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5608         prevous wait that resulted in a deadlock on Windows when initializing
5609         the runtime form DllMain. Also results in improved startup time.
5610         (finalizer_thread): Get rid of thread_started_event.
5611         * threads.c, threads-types.h (mono_thread_create_internal): Return the
5612         resulting MonoThread.
5613
5614         Contributed under MIT/X11 license.
5615
5616 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
5617
5618         * metadata-verify.c: Verify the implmap table.
5619         Don't require that #US and #Strings be present.
5620
5621 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
5622
5623         * security-core-clr.c: Delegate checks are done at creation time,
5624         not a invocation time. Fix exception for Telerik Silverlight demo
5625
5626 2009-05-11  Mark Probst  <mark.probst@gmail.com>
5627
5628         * sgen-gc.c (need_remove_object_for_domain): Remove the special
5629         case for the Thread class.
5630
5631         * threads.c: Do clean-up of abort exception/state in
5632         thread_cleanup() instead of Thread.free_internal().  Also clean up
5633         current_appcontext.  The reason we have to do that is because
5634         those references might point into another domain and if that
5635         domain is unloaded before the thread is finalized, they point to
5636         invalid data.
5637
5638 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
5639
5640         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
5641         stub signatures.
5642         
5643         Contributed unter MIT/X11 license.
5644
5645 2009-05-09  Miguel de Icaza  <miguel@novell.com>
5646
5647         * verify.c, metadata-verifier.c: Add support for disabling the
5648         verifier in some builds.
5649
5650         [ Sorry, my previous commit accidentally commited some work in
5651         progress ]
5652
5653 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5654
5655         * class.c (mono_class_setup_fields): Set class->field.first for
5656         generic instances.
5657
5658 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5659
5660         * metadata-verify.c: Verify the typespec table.
5661
5662 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5663
5664         * metadata-verify.c: Verify the module table.
5665
5666 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5667
5668         * metadata-verify.c: Verify the methodimpl table.
5669
5670 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5671
5672         * metadata-verify.c: Verify the property table.
5673
5674 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5675
5676         * debug-helpers.c (mono_method_desc_match): Add support for generic
5677         glob patterns.
5678
5679 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
5680
5681         * metadata-verify.c: Verify the propertymap table.
5682
5683 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
5684
5685         * metadata-verify.c: Verify the event table.
5686
5687         * metadata-verify.c (search_sorted_table): Fix offset
5688         calculation.
5689
5690 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5691
5692         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
5693
5694 2009-05-01  Mark Probst  <mark.probst@gmail.com>
5695
5696         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
5697         because mono_delegate_free_ftnptr() needs it.
5698
5699 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5700
5701         * metadata-verify.c: Verify the eventmap table.
5702
5703 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5704
5705         * metadata-verify.c: Verify the standalonesig table.
5706
5707 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5708
5709         * metadata-verify.c: Verify the field layout table.
5710
5711 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5712
5713         * class.c (mono_type_get_name_recurse): Don't crash
5714         for ownerless generic params.
5715
5716         * debug-helpers.c (mono_type_get_desc): Correct the format
5717         for ownerless generic params.
5718
5719 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5720
5721         * metadata-verify.c: Verify the class layout table.
5722
5723 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5724
5725         * metadata-verify.c: Verify the decl security table.
5726
5727 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5728
5729         * domain.c (mono_domain_set_internal_with_options): Don't do
5730         anything if the old domain is the same as the old one.  Fixes
5731         #499326.
5732
5733 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5734
5735         * appdomain.c: Deregister the reflection_info roots when unloading
5736         a domain.
5737
5738         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
5739         memory allocated by a domain and frees its disappearing links.
5740
5741         * boehm-gc.c, null-gc.c: Empty implementation of
5742         mono_gc_clear_domain().
5743
5744 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5745
5746         * appdomain.c (clear_cached_vtable): Free the static fields memory
5747         block.
5748
5749 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5750
5751         * gc.c: Set the correct domain when invoking finalizers.
5752
5753         * appdomain.c: Set the correct domain when creating threads.
5754
5755 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5756
5757         * sgen-gc.c: Fix skip size for vectors.
5758
5759 2009-05-03  Martin Baulig  <martin@ximian.com>
5760
5761         * mono-debug-debugger.c
5762         (mono_debugger_check_breakpoints): Check class init handlers even
5763         if we don't have any method load handers.
5764
5765 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
5766
5767         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
5768         returning refonly assemblies if refonly is FALSE. Fixes #499013.
5769
5770 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5771
5772         * metadata-verify.c: Verify the field marshal table.
5773
5774 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5775
5776         * metadata-verify.c: Verify the custom attribute table.
5777
5778 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5779
5780         * metadata-verify.c: Verify the constant table.
5781
5782 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5783
5784         * metadata-verify.c: Verify the memberef table.
5785
5786 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5787
5788         * metadata-verify.c (get_coded_index_token): Remove
5789         dead argument.
5790
5791 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5792
5793         * metadata-verify.c: Verify the interfaceimpl table.
5794
5795 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5796
5797         * verify.c: Improve error message.
5798
5799         * debug-helpers.c (mono_type_get_desc): Harden the code that
5800         deals with VAR and MVAR.
5801
5802 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
5803
5804         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
5805         part of #498692.
5806
5807 2009-04-23 Tom Hindle <tom_hindle@sil.org>
5808
5809         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
5810         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
5811
5812 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
5813
5814         * security-core-clr.c: Avoid redundant checks for platform code, 
5815         e.g. check for method and for class (very common) and check
5816         for class and outer class (less common)...
5817
5818 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
5819
5820         * reflection.c: Avoid returning random cattrs for synthetic methods.
5821         Fixes #498545.
5822
5823 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5824
5825         * assembly.c: assemblies in the GAC should never be shadow-copied.
5826
5827 2009-04-26  Mark Probst  <mark.probst@gmail.com>
5828
5829         * domain.c, domain-internals.h: Disable
5830         track_resurrection_{objects,handles}_hash in MonoDomain if using
5831         SGen.
5832
5833 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5834
5835         * metadata-verify.c: Verify the param table.
5836
5837 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5838
5839         * metadata-verify.c (verify_typedef_table): Range check FieldList and
5840         MethodList.
5841
5842         * metadata-verify.c (verify_method_table): Proper check the ParamList
5843         field.
5844
5845 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5846
5847         * metadata-verify.c (verify_method_table): Check for runtime
5848         implemented functions such as delegate .ctors. Remove spurious
5849         printf.
5850         
5851 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5852
5853         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
5854
5855 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5856
5857         Don't allocate MonoGenericInfo for ownerless generic params.
5858         * class-internals.h (MonoGenericParam::info): Move field to ...
5859         (MonoGenericParamFull): ... this.  New struct.
5860         (MonoGenericContainer::type_params): Change type to
5861         MonoGenericParamFull.
5862         (MonoGenericParam, MonoGenericContainer): Update accessors.
5863         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
5864         'info' field for ownerless generic param.
5865         (mono_metadata_load_generic_params): Update to changes.
5866         * reflection.c (mono_reflection_create_generic_class): Likewise.
5867         (reflection_methodbuilder_to_mono_method): Likewise.
5868         (mono_reflection_initialize_generic_parameter): Likewise.
5869
5870 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5871
5872         Don't use MonoGenericParamInfo for ownerless generic params.
5873         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
5874         use ParamInfo class at all.
5875         (mono_class_from_generic_parameter): Use them.
5876         (make_generic_param_class): Fix a couple of instances where 'pinfo
5877         == NULL' wasn't handle.
5878
5879 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5880
5881         * class.c (make_generic_param_class): Carve out of ...
5882         (mono_class_from_generic_parameter): ... here.
5883
5884 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5885
5886         Simplify mono_class_from_generic_parameter
5887         * class-internals.h (MonoGenericParamInfo::token): New field.
5888         * metadata.c (mono_metadata_load_generic_params): Initialize it
5889         from metadata.
5890         * class.c (mono_class_from_generic_parameter): Use it instead of
5891         searching through metadata.
5892
5893 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5894
5895         * metadata-verify.c: Add verification of the method table.
5896
5897 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5898
5899         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
5900         Delegate::Invoke optimization.
5901
5902 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5903
5904         * appdomain.c (mono_domain_create_appdomain_internal): Free the
5905         string returned by get_shadow_assembly_location_base.
5906
5907         * appdomain.c (get_shadow_assembly_location_base): Add a comment
5908         about caller's ownership.
5909
5910 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5911
5912         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
5913         reflection memory on domain unload.
5914
5915         * domain.c (mono_domain_free): Don't free refobject_hash, let the
5916         reflection cleanup code do it.
5917
5918         * domain-internals.h: Add mono_reflection_cleanup_domain.
5919
5920         This fixes a memory leak for managed mirrors of reflection objects
5921         on domain unload. 
5922
5923 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5924
5925         * metadata-verify.c: Implement more verification of the field table.
5926
5927 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5928
5929         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
5930         doesn't try to parse the input assembly, which can be broken.
5931
5932 2009-04-23  Mark Probst  <mark.probst@gmail.com>
5933
5934         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
5935         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
5936         by using the lowest bit in the link to store whether the link is
5937         tracked.  Move the track_resurrection hashes into boehm-gc.c.
5938
5939 2009-04-22  Miguel de Icaza  <miguel@novell.com>
5940
5941         * Makefile.am: Split the console support in platform specific code
5942         and put together a framework for making this easy in the future so
5943         that we can start splitting code instead of having a mess of PLATFORM_WIN32
5944
5945 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5946
5947         * pedump.c: Fix a warning.
5948
5949 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5950
5951         * verify.c (mono_delegate_type_equal): Compare valuetypes using
5952         mono_class_from_mono_type to avoid bad interactions with the dual representation
5953         of the generic type definition.
5954
5955 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5956
5957         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
5958         get the MonoClass for the call context type as it might be a generic
5959         instance.
5960
5961         Fixes #491483.
5962
5963 2009-04-21  Mark Probst  <mark.probst@gmail.com>
5964
5965         * object-internals.h: The Thread object has no execution_context
5966         member anymore.
5967
5968         * threads.c, threadpool.c, threads-types.h: Accessor functions for
5969         the execution context.
5970
5971         * appdomain.c: Bump corlib version.
5972
5973 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5974
5975         * verify.c (do_newobj): Improve error message.
5976
5977 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5978
5979         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
5980         is nested in the filter block.
5981
5982         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
5983         block is not fully nested.
5984
5985         Fixes #495656.
5986
5987 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5988
5989         * verify.c (verify_type_compatibility_full): Compare MonoClass and
5990         not MonoType to check for equality of valuetypes as the generic type
5991         definition allows for two different encodings: the generic type definition
5992         class or a generic instance over the GTD arguments.
5993
5994         Fixes #496175.
5995
5996 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5997
5998         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
5999
6000         * verify.c (do_initobj): Improve error message.
6001
6002 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6003
6004         * metadata-verify.c: Enable pe verification as the issue with #496453
6005         is that the authenticode data directory have a different unspecified
6006         format. Ignore it for now.
6007
6008         * pedump.c: Run the metadata verifier together with the IL verifier.
6009
6010         Fixes ##496453.
6011
6012 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6013
6014         * metadata-verify.c: Temporarily disable pe verification due to #496453.
6015
6016 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6017
6018         * class.c (can_access_type): Check visibility against
6019         the element type for pointers and arrays.
6020
6021         Fixes #496150.
6022
6023 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6024
6025         * metadata-verify.c: Fix cli and table verification to use information
6026         from the MonoImage. A lot of duplicated code got killed.
6027
6028 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6029
6030
6031         This patch starts to integrate the metadata verifier with the runtime code.
6032
6033         This patch causes major regression in functionality for the metadata verifier
6034         as cli and table verification are disabled since they require to be ported to
6035         use MonoImage information.
6036
6037         * image.c (do_mono_image_load): Split the code in this function
6038         into mono_image_load_pe_data and mono_image_load_cli_data.
6039         Add     care_about_pecoff parameter to not load pecoff data.
6040         Call into the metadata verifier for pecoff and cli verification.
6041
6042         * image.c (mono_image_open_raw): New function that doesn't perform
6043         any parsing of the image contents.
6044         
6045         The reason for the 3 new functions is to give pedump better control
6046         into the interaction with the verifier.
6047
6048         * metadata-internals.h: Add new functions from image.c as part of the
6049         internal mono API.
6050
6051         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
6052         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
6053         to make those functions work together with the runtime.
6054
6055         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
6056         true if the image needs to be verified.
6057
6058         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
6059
6060         * pedump.c: Use new metadata verifier API.
6061
6062 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
6063
6064         * object.c (mono_install_vtable_trampoline): Make this receive a
6065         trampoline creation function instead of trampoline, allowing the JIT
6066         to use a different trampoline for each vtable.
6067
6068 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6069
6070         * object.c (mono_raise_exception): Don't reset the thread abort
6071         exception state here.
6072
6073 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6074
6075         * icall-def.h: New icall for getting the thread abort exception
6076         state for a thread.
6077
6078         * object.c, thread.c, object-internals.h: A thread's abort
6079         exception state is now a GC handle.  To get the object it stands
6080         for, we must move it into the current app domain, if it's
6081         different than the one where it originated from.
6082
6083         * appdomain.c: Bump corlib version.
6084
6085         * domain.c, domain-internals.h: New function for setting the
6086         domain and migrate the thread abort exception or not.
6087
6088 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6089
6090         * metadata-verify.c: Add initial verification of the
6091         field table.
6092
6093 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6094
6095         * metadata-verify.c: Add a macro to conditionally enable
6096         dumping of verification information. Add  make_coded_token
6097         and search_sorted_table to enable search sorted tables
6098         by a given coded token.
6099
6100 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6101
6102         * metadata-verify.c: Add array mapping from table index
6103         to description offset. Add get_col_offset and get_col_size
6104         functions.
6105
6106 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6107
6108         * metadata-verify.c: Add remaining table descriptions offsets.
6109         Add remaining coded index descriptions.
6110
6111 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6112
6113         * metadata-verify.c: Fixed constant table description.
6114         Fixed calculation of HasCustomAttribute coded index size.
6115         Fixed calculation of size for many table indexes. 
6116
6117 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6118
6119         * pedump.c (dump_metadata): Dump table offset instead
6120         of useless pointer in memory.
6121
6122 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6123
6124         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6125
6126 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6127
6128         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6129         a missing of for interface types.
6130
6131 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6132
6133         * metadata-verify.c (verify_pe_optional_header): Add comment of why
6134         the code is commented.
6135
6136         * metadata-verify.c (verify_resources_table): Remove spurious printf
6137         and don't fail if there are unmanaged resources. Gmcs generates a useless
6138         one     for all assemblies - I bet it's some MS compatibility junk.
6139
6140 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6141
6142         * metadata-verify.c (verify_typedef_table): Verify the extends field.
6143
6144         * metadata-verify.c (mono_image_verify): Add a is_corlib.
6145
6146         * verify-internals.h: Same.
6147
6148         * pedump.c: Fix for mono_image_verify new signature.
6149
6150 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6151
6152         * metadata-verify.c (verify_typedef_table): Verify for some invalid
6153         flags combinations.
6154
6155 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6156
6157         * metadata-verify.c (verify_module_table): Ignore the generation field.
6158
6159 2009-04-15  Martin Baulig  <martin@ximian.com>
6160
6161         * debug-mono-symfile.c
6162         (mono_debug_symfile_lookup_location): Don't print a warning for
6163         unknown extended opcodes if they're within 0x40 and 0x7f.
6164
6165 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
6166
6167         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6168         invoke signatures returning an enum. Fixes #494847.
6169
6170 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6171
6172         * metadata-verify.c: Initial code to verify the typedef table.
6173
6174 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6175
6176         * verify.c (mono_method_verify): Don't fail if an unconditional branch
6177         with non empty stack happens before the beginning of a try block.
6178
6179         Fixes #494812.
6180
6181 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6182
6183         * metadata-verify.c: Verify typename and typenamespace fields of
6184         the typeref table.
6185
6186 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6187
6188         * metadata-verify.c: Initial code to verify the typeref table.
6189
6190 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6191
6192         * verify.c (verify_delegate_compatibility): Fix error message.
6193
6194 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6195
6196         * security-core-clr.c: Fix typo
6197
6198 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6199
6200         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
6201         a MonoGHashTable to keep its values alive.
6202         (emit_marshal_boolean): Fix a warning.
6203
6204 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6205
6206         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
6207         not have any interface configured for IPv4/IPv6.
6208
6209 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6210
6211         * assembly.c: fix typo in error message.
6212
6213 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6214
6215         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
6216         allocating the location holding the this argument to prevent
6217         'too many root sets' errors.
6218
6219         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
6220         to mark fields as special static.
6221         (mono_field_static_get_value): Handle special static fields.
6222         (mono_field_static_set_value): Ditto.
6223
6224         * class-internals.h (struct _MonoClassField): Document this.
6225
6226 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6227
6228         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
6229           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
6230           case.  This will handle when managed code returns null to native code.
6231
6232         Code is contributed under MIT/X11 license.
6233
6234 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6235
6236         * object.c (build_imt_slots): Changing a free to a g_free to match
6237           the g_malloc0 in add_imt_builder_entry that allocated this memory.
6238
6239         Code is contributed under MIT/X11 license.
6240
6241 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6242
6243         * marshal.c (emit_marshal_boolean): Adding code to ensure that
6244           the correct TRUE value is passed through the marshaling layer.
6245
6246         Code is contributed under MIT/X11 license.
6247
6248 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
6249
6250         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
6251         correctly. Fixes #492330.
6252         
6253         * marshal.c: Fix the embedding of object pointers into JITted code in
6254         the native-to-managed wrappers by allocating some GC tracked memory, and
6255         embedding the address of that.
6256
6257 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
6258
6259         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
6260         pointers into the vtable.
6261
6262 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6263
6264         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
6265
6266         * verify.c (verify_ldftn_delegate): Improve error message.
6267
6268 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6269
6270         * reflection.c (my_mono_class_from_mono_type): Remove.
6271
6272 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6273
6274         Prepare to reduce memory usage of owner-less generic parameters (1/n)
6275         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
6276         and constraints fields into ...
6277         (MonoGenericParamInfo): ... this.
6278         (mono_generic_param_info, mono_generic_container_get_param_info):
6279         New accessors.
6280         * class.c, debug-helpers.c, icall.c: Update to changes.
6281         * metadata.c, reflection.c, verify.c: Likewise.
6282
6283 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
6284
6285         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
6286
6287         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
6288         
6289         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
6290         booleans with sbytes.
6291
6292 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6293
6294         * class.c (can_access_instantiation): Verify accesibility of element types
6295         for arrays and pointers.
6296
6297         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
6298
6299         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
6300
6301         Fixes #493068.
6302
6303 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6304
6305         * verify.c (do_invoke_method): Improve error messages.
6306
6307 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
6308
6309         * verify.c:  Fixing the MSVC build.
6310
6311         Code is contributed under MIT/X11 license.
6312
6313 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
6314
6315         * security-core-clr.c: Simplify get_reflection_caller not to call
6316         mono_method_get_last_managed (another stack walk) and adjust the
6317         callers to handle a (should not happen) NULL return value.
6318
6319 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6320
6321         Add accessors to some MonoGenericParam fields
6322         * class-internals.h (mono_generic_param_owner): New accessor.
6323         (mono_generic_param_num): Likewise.
6324         (mono_type_get_generic_param_owner): New helper.
6325         (mono_type_get_generic_param_num): New helper.
6326         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
6327
6328 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6329
6330         * class-internals.h (mono_generic_container_get_param): New wrapper.
6331         * class.c, icall.c, metadata.c, verify.c: Use it.
6332
6333 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6334
6335         Fix gtest-252.cs
6336         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6337         the standard case/loop.  In particular, don't complain about
6338         references to generic type definitions.
6339
6340 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
6341
6342         * debug-helpers.c (dis_one): Decode string arguments.
6343
6344 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6345
6346         * pedump.c (dump_verify_info): Dump type name correctly.
6347
6348 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6349
6350         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6351         are larger than code size.
6352
6353         This can happen in valid code if the try/catch block is not followed by any instruction
6354         and do a backward branch on the leave instruction.
6355
6356         Fixes #492494.
6357
6358 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
6359
6360         * security-core-clr.c: Fix typo while comparing second method names
6361         in can_avoid_corlib_reflection_delegate_optimization
6362
6363 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6364
6365         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6366
6367         Fixes #487738.
6368
6369 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6370
6371         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6372         a MVAR using a class context.
6373
6374         Fixes #490335.
6375
6376 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
6377
6378         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6379
6380         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6381
6382         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6383         functions supplied by the JIT for the SGEN GC.
6384
6385         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6386         
6387 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6388
6389         monitor.c (mono_monitor_try_enter_internal):
6390         Added calls to profile monitor contentions.
6391         Also duplicated a small piece of code (the "get the monitor" logic)
6392         from the fast path to the slow path, and changed the relevant goto
6393         statements, so that monitor acquisition events can be emitted from the
6394         slow path (this is by Paolo Molaro).
6395
6396 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6397
6398         * profiler.c, profiler.h, profiler-private.h:
6399         Added support for profiling monitor contentions.
6400
6401 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6402
6403         * metadata-verify.c: Verify the modules table.
6404
6405 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6406
6407         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6408         using the context of the method been verifier and not of the method been called.
6409
6410         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6411         safely inflate generic types. 
6412
6413 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6414
6415         * security-core-clr.c: Change the strategy for checking the 
6416         "reflection using delegates optimization" to avoid unneeded 
6417         attributes in multiple class libraries.
6418
6419 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6420
6421         * sgen-gc.c: Remove object element in the disappearing link struct
6422         by storing the object pointer in the link.
6423
6424 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6425
6426         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6427
6428 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6429
6430         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6431
6432         * verify.c (mono_method_verify): Do proper bounds checking of exception
6433         clause ranges.
6434
6435 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6436
6437         * loader.c (mono_field_from_token): Don't crash if the field parent could
6438         not be decoded.
6439
6440 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6441
6442         * sgen-gc.c: Execute critical finalizers after ordinary
6443         finalizers.
6444
6445         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6446         mono_defaults.
6447
6448 2009-03-31 Jb Evain <jbevain@novell.com>
6449
6450         * verify.c (do_ldstr): don't check if a string is in the user strings
6451         heap if the current image is dynamic.
6452
6453 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6454
6455         * sgen-gc.c: Wait until the last finalizer has executed when
6456         returning from WaitForPendingFinalizers.
6457
6458 2009-03-31  Martin Baulig  <martin@ximian.com>
6459
6460         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6461         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6462         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6463         (mono_debugger_event_create_appdomain): New function.
6464         (mono_debugger_event_unload_appdomain): New function.
6465
6466         * appdomain.c (mono_domain_create_appdomain_internal): Call
6467         mono_debugger_event_create_appdomain().
6468
6469 2009-03-31  Martin Baulig  <martin@ximian.com>
6470
6471         * mono-debug-debugger.c
6472         (mono_debugger_register_class_init_callback): Also register the
6473         class init callback if the class is already initialized to make
6474         things work with shadow copied assemblies.
6475
6476 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6477
6478         * security-core-clr.c
6479         (mono_security_core_clr_ensure_reflection_access_field): Let 
6480         critical code access the field (just like we do for methods). Use
6481         check_field_access helper.
6482         (mono_security_core_clr_ensure_reflection_access_method): Use 
6483         check_field_access helper.
6484
6485 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6486
6487         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6488         call the run-finalize function directly.
6489
6490         * gc.c, gc-internal.h: Make run_finalize() non-static.
6491
6492 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6493
6494         * sgen-gc.c: Use a separate struct for disappearing links.
6495
6496 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6497
6498         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6499         * MaxIOVectorLength enabled, just ignore them.
6500         Fixes bug #349688.
6501
6502 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6503
6504         * metadata-verify.c: Fix eglib build.
6505
6506 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6507
6508         * threads-types.h: Fix the win32 build.
6509
6510 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6511
6512         * class.c: move coreclr inheritance/override checks to 
6513         security-core.clr.c
6514         * security-core.clr.c|h: add code from class.c with additional
6515         documentation. Fix override check when the method is not critical.
6516
6517 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6518
6519         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6520         (match_class): Ditto.
6521
6522 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6523
6524         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6525
6526         * metadata-verify.c: Implement table layout row size calculation. Verify
6527         the total size of the tables.
6528
6529 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6530
6531         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6532
6533 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6534
6535         * appdomain.c:
6536         * console-io.[ch]: added new mono_console_init() to make sure that
6537         file descriptors 0, 1 and 2 are opened.
6538         Bug #489019 fixed.
6539
6540 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6541
6542         * appdomain.h: Export a new callback type and a new function to
6543         set this callback. This allow a mono host to provide it's own
6544         definition for "platform code".
6545         * metadata-internals.h: Add a core_clr_platform_code flag on 
6546         _MonoImage to (cache and) know if it is representing platform 
6547         code.
6548         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6549         on platform code images.
6550         * security-core-clr.c|h 
6551         (mono_security_set_core_clr_platform_callback): Allow the host
6552         to provide it's own platform check definition.
6553         (mono_security_core_clr_determine_platform_image): Detect if an 
6554         image is platform code (using the specified callback).
6555         (mono_security_core_clr_is_platform_image): Return cached value 
6556         for platform code.
6557
6558 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6559
6560         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6561         which has different parameter types for the 'tid' argument in windows and
6562         the io-layer.
6563
6564         * appdomain.c attach.c threads.c: Use the new helper.
6565
6566 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6567
6568         * metadata-verify.c: Verify valid table bits.
6569
6570 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6571
6572         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6573
6574         * metadata-verify.c: Add initial table schema verification.
6575
6576 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6577
6578         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6579         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6580         #488383.
6581
6582         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6583
6584         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6585
6586 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6587
6588         * security-core-clr.c: Add/update documentation
6589
6590 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6591
6592         * marshal.c (emit_marshal_object): Generate code to throw an exception
6593         instead of throwing it. Fixes #488670.
6594
6595 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6596
6597         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6598         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6599         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6600         and add a call to mono_security_core_clr_ensure_delegate_creation
6601         to do the extra checks required by CoreCLR.
6602         * security-core-clr.c|h: Add function to check delegate creation,
6603         both in the binding and accessibility, under CoreCLR.
6604
6605 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
6606
6607         * reflection.c (mono_reflection_create_dynamic_method): when 
6608         coreclr is enabled make sure that every resolved object are
6609         checked (e.g. field and method access).
6610         * security-core-clr.c|h: Add function to check objects resolved
6611         when a dynamic method is created.
6612
6613 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6614
6615         * metadata-verify.c: Cache directory rva translations.
6616
6617         * metadata-verify.c: Add cli-header and streams verification.
6618
6619 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6620
6621         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
6622         the wrong offset (8 instead of 6).
6623
6624 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6625
6626         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
6627         methods, return the native function address itself. Fixes
6628         #487758.
6629
6630 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6631
6632         * console-io.c: some of the values for control characters might not be
6633         present.
6634
6635 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
6636
6637         * exception.c|h: Add helpers to create [Field|Method]AccessException
6638         * icall.c: Add required coreclr check calls for field reflection.
6639         Move the existing (method) check logic into security-core-clr.c
6640         * security-core-clr.c: Add functions to check if the access of a
6641         field or method is allowed when reflecting under coreclr. This is
6642         mostly done using a stack walk to find the "real" caller: i.e. the
6643         code that is calling the reflection
6644
6645 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
6646
6647         * gc-internal.h: Change location of gc_wrapper.h
6648
6649 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
6650
6651         * class.c: Simplification to coreclr checks for overrides that
6652         makes it easier to set breakpoints.
6653
6654 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
6655
6656         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
6657         mono_security_core_clr_method_level): Avoid potential 
6658         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
6659         user/application code) and make it easier to set breakpoints
6660
6661 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6662
6663         * metadata-verify.c: Reject cli header tables that mono don't handle.
6664
6665 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6666
6667         * pedump.c: Fix CLI header dumping.
6668
6669 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6670
6671         * metadata-verify.c: More CLI header verification.
6672
6673 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6674
6675         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
6676
6677 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6678
6679         * metadata-verify.c: Initial verification of the CLI header.
6680
6681 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6682
6683         * metadata-verify.c (verify_resources_table): Fix verification of zero
6684         sized resource section and id entries count.
6685
6686 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
6687
6688         * icall.c: Handle user types in many Type icalls. Fixes #486303.
6689
6690 2009-03-17  Jb Evain  <jbevain@novell.com>
6691
6692         * profiler.c: call mono_gc_base_init from mono_profiler_load.
6693
6694 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
6695
6696         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
6697         (mono_gc_make_descr_for_array): Ditto.
6698
6699 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6700
6701         * verify.c (mono_verifier_is_class_full_trust): Add support for
6702         CoreCLR security mode where trusted assemblies are defined as
6703         "platform code".
6704
6705 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6706
6707         * metadata-verify.c: Add minimal PECOFF resource verification.
6708
6709 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6710
6711         * metadata-verify.c: Be less restrictive with some coff fields.
6712
6713 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6714
6715         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
6716         params as boxed values on stack. Fixes #485706.
6717
6718 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6719
6720         * console-io.c: the termios values may vary in different flavors of unix.
6721
6722 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6723
6724         * console-io.[ch]: return the entire set of control characters when
6725         initializing the terminal.
6726         * appdomain.c: bump corlib version.
6727
6728 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
6729
6730         * mono-perfcounters.c: added support for in-process custom
6731         performance counters.
6732
6733 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6734
6735         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
6736
6737 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6738
6739         * metadata-verify.c: Verify the data pointed by the import table. 
6740
6741 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6742
6743         * metadata-verify.c (load_data_directories): Store data
6744         directory contents.
6745
6746         * metadata-verify.c: Verify the import table. 
6747
6748 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6749
6750         * metadata-verify.c: Verify data directories.
6751
6752 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6753
6754         * metadata-verify.c: Check section header flags.
6755
6756 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6757
6758         * appdomain.c: if the assembly name is a shadow-copied file, return
6759         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
6760         in mono_make_shadow_copy.
6761         * icall.c: if the assembly name is a shadow-copied file, replace it
6762         with the original assembly path.
6763
6764         Bug #484244 fixed. NUnit tests for corlib can be run without
6765         --noshadow now.
6766
6767 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
6768
6769         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
6770         entries when the table is reallocated.
6771
6772         * icall.c: Allocate the memory used by the mono_ptr_array macros using
6773         mono_gc_alloc_fixed () since it contains GC refs.
6774
6775 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
6776
6777         * reflection.c (ensure_complete_type): New helper function to call
6778         type resolve handlers for unfinished dynamic types.
6779         (resolve_object): Call it for MonoClassFields. Fixes #483852.
6780
6781 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
6782
6783         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
6784         #483247.
6785
6786 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
6787
6788         * appdomain.c (get_shadow_assembly_location): Fix memleak.
6789
6790 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
6791
6792         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
6793         between GCHandles of type WeakTrackResurrection and the objects they
6794         point to.
6795
6796         * gc.c: Partly implement the sematics of GCHandles of type 
6797         WeakTrackResurrection: these handles should only be cleared after the
6798         finalizer of the object they are pointing to has ran.
6799
6800 2009-03-06  Mark Probst  <mark.probst@gmail.com>
6801
6802         * icall.c: Partially revert r126631 because using the jump
6803         trampolines for generic shared methods makes it superfluous.
6804
6805 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
6806
6807         * threads.c (handle_store): Create the 'threads' hash table with the proper
6808         MONO_HASH_VALUE_GC type.
6809
6810 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
6811
6812         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
6813         FIRST_GC_TRACKED.
6814
6815         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
6816         and LAST_GC_TRACKED as a GC root.
6817
6818         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
6819
6820         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
6821         the static data even if it consists of 1 reference.
6822
6823         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
6824         if there is a GC descriptor.
6825
6826         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
6827         instead of through the GC since they contain no object references.
6828
6829 2009-03-05  Mark Probst  <mark.probst@gmail.com>
6830
6831         * generic-sharing.c (instantiate_other_info): Always return a jump
6832         trampoline for method code.
6833
6834 2009-03-05  Marek Habersack  <mhabersack@novell.com>
6835
6836         * culture-info-tables.h: generated to include the en-tt culture.
6837
6838 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6839
6840         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
6841         capture the thread context.
6842
6843         * object.c (mono_async_result_new): Cache the invoke wrappers to
6844         ExecutionContext::Capture.
6845
6846 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6847
6848         * marshal.h: Add a prototype for what mono_compile_method returns
6849         for invoke wrappers.
6850
6851         * gc.c: Use the new prototype declaration.
6852
6853 2009-03-04  Geoff Norton  <gnorton@novell.com>
6854
6855         * boehm-gc.c: Add some MONO_LOG tracing for the GC
6856         * gc-internal.h:
6857         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
6858
6859 2009-03-04  Martin Baulig  <martin@ximian.com>
6860
6861         * mono-debug.h
6862         (mono_debugger_runtime_invoke): Removed.
6863
6864         * mono-debug-debugger.c
6865         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
6866
6867 2009-03-02  Martin Baulig  <martin@ximian.com>
6868
6869         * mono-debug.h
6870         (mono_debugger_unhandled_exception): Removed.
6871         (mono_debugger_handle_exception): Removed.
6872         (mono_debugger_throw_exception): Removed.
6873
6874         * mono-debug.c
6875         (mono_debug_debugger_version): Bump to 5.
6876
6877         * mono-debug-debugger.c: Moved the exception handling code to
6878         ../mini/debug-mini.c
6879
6880 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6881
6882         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
6883         finalize_objects_hash.
6884
6885         * gc.c: Use the separate lock to access the finalize_objects_hash field.
6886         
6887         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
6888         field.
6889
6890         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
6891         cache.
6892
6893         * image.c (mono_image_close): Free it.
6894         
6895         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
6896         allowing a creation of a wrapper which invokes its method using a CALLVIRT
6897         on the this argument.
6898
6899         * gc.c (run_finalize): Optimize the calling of the finalizers.
6900
6901 2009-03-03  Martin Baulig  <martin@ximian.com>
6902
6903         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
6904         of the `MonoGenericInst' changes.
6905
6906 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6907
6908         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
6909         mono_array_class_get_cached to reduce locking contention. Extract
6910         a domain var.
6911
6912         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
6913         intermediary managed arrays. Use caching version of mono_array_new
6914         to allocate the result array.
6915
6916         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
6917
6918         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
6919
6920         * locales.c (create_names_array_idx):  Use mono_array_new_cached
6921         to reduce locking contention.
6922
6923 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6924                 
6925         * object.c (mono_method_add_generic_virtual_invocation): Put back the
6926         thunk builder code for the non-interface case.
6927
6928 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
6929
6930         * object.c (get_generic_virtual_entries): New helper function to collect
6931         the virtual generic method instances which need to be added to an IMT
6932         thunk.
6933         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
6934         Instead of creating a new IMT thunk, reset the vtable slot to the
6935         trampoline, the thunk will be created the next time the trampoline is called.
6936         (build_imt_slots): Add support for virtual generic methods in interfaces by
6937         adding to the IMT thunk all the methods registered using 
6938         mono_method_add_generic_virtual_invocation ().
6939
6940         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
6941         (struct _MonoIMTCheckItem): Ditto.
6942
6943         * object.c (mono_method_add_generic_virtual_invocation): Take a
6944         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
6945         the IMT thunk to include all items.
6946         
6947         * object.c (mono_class_create_runtime_vtable): Add a missing
6948         mono_loader_unlock ().
6949
6950 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6951
6952         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6953
6954         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
6955
6956 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6957
6958         * object-internals.h: Rename _MonoReflectionEvent to
6959         MonoReflectionMonoEvent so it reflects the right managed type.
6960         Add a MonoReflectionEvent that correctly represents System.EventInfo.
6961
6962         * icall.c:
6963         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
6964         type.
6965
6966 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6967
6968         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
6969         intermediary managed arrays. Use caching version of mono_array_new
6970         to allocate the result array.
6971
6972 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6973
6974         * reflection.c: Use cached version of mono_array_new alongside
6975         the mono_reflection_get_custom_attrs_by_type call path.
6976
6977 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6978
6979         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
6980         intermediary managed arrays. Use caching version of mono_array_new
6981         to allocate the result array.
6982
6983         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
6984
6985 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6986
6987         * icall.c: Add small implementation of a growable stack bound array.
6988
6989         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
6990
6991         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
6992         intermediary managed arrays. Use caching version of mono_array_new
6993         to allocate the result array.
6994
6995 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
6996
6997         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
6998         helps Enum::CompareTo to be implemented without reboxing all enums
6999         to their underlying type.
7000 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
7001
7002         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
7003         since it acquires a global lock leading to scalability problems.
7004
7005         * profiler.c: Make the stat profiler work with multiple appdomains, this
7006         currently only works when no appdomains are unloaded.
7007
7008 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7009
7010         * appdomain.c: make the check to avoid copying when the assembly is
7011         already shadow copied actually work.
7012
7013 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
7014
7015         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7016
7017         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
7018         changes to the managed side.
7019
7020 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
7021
7022         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
7023         classes + a separate lock for it, as it is used frequently at runtime, not
7024         just during metadata loading/JIT compilation.
7025
7026         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
7027         for szarrays.
7028         
7029         * object-internals.h (mono_class_from_name_cached): New macro to cache
7030         the results of the lookup locally without having to declare a static
7031         variable to hold it.
7032         (mono_class_get_field_from_name_cached): Ditto.
7033         (mono_array_class_get_cached): Ditto.
7034
7035         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
7036         the new macros.
7037         
7038         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
7039         slower search in metadata.
7040
7041         * pedump.c: Fix a warning.
7042
7043 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
7044
7045         * reflection.c (encode_locals): Add checks for user types.
7046         (method_encode_clauses): Ditto.
7047         (method_encode_code): Ditto.
7048         (mono_image_create_token): Ditto.
7049
7050         * object-internals.h: Change the type of more fields from MonoReflectionType*
7051         to MonoObject*.
7052
7053 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
7054
7055         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
7056         the a thread does not suspend within 100ms.
7057
7058         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
7059         in addition to StopRequested as well.
7060
7061         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
7062
7063         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
7064         search the method_hash before inserting a new entry, to avoid crashes when
7065         the same method is inserted multiple times, causing the old 
7066         MonoDebugMethodInfo structure to be freed by the value dtor function.
7067
7068 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7069
7070         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
7071         SO_EXLUSIVEADDRUSE where available.
7072
7073 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
7074
7075         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
7076         runtime invoke wrappers, this time it is string ctor wrappers, which
7077         pass a dummy string as 'this' instead of their obj argument. Fixes
7078         #478473.
7079
7080 2009-02-21  Jb Evain  <jbevain@novell.com>
7081
7082         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7083         only get create_culture once.
7084
7085 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
7086
7087         * reflection.c (mono_reflection_setup_internal_class): Move the user type
7088         check before the locking.
7089         
7090         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
7091         (mono_reflection_create_runtime_class): Ditto.
7092         (mono_reflection_sighelper_get_signature_local): Ditto.
7093         (mono_reflection_sighelper_get_signature_field): Ditto.
7094
7095         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7096         is a System.MonoType object or similar.
7097         (monotype_cast): New helper function to cast a MonoObject to a 
7098         MonoReflectionType object.
7099
7100         * object-internals.h: Change MonoReflectionType* members in structures to
7101         MonoObject* members to force the usage of the monotype_cast () function.
7102
7103         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7104         structures/arrays. This causes us to assert instead of crashing when 
7105         instances of user defined subclasses of System.Type are encountered.
7106
7107 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7108
7109         * cil-coff.h:
7110         * icall-def.h:
7111         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7112         win32 resource loaded from a PE file.
7113
7114         * image.c: fix mono_image_lookup_resource.
7115
7116 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7117
7118         * icall-def.h:
7119         * threads-types.h:
7120         * threads.c: added internal call for WaitHandle.SignalAndWait.
7121
7122 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
7123
7124         * cominterop.c : Adding cominterop_type_from_handle and 
7125           registering it as an icall.  Replacing all references
7126           to type_from_handle.
7127
7128         Code is contributed under MIT/X11 license.
7129
7130 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7131
7132         * Makefile.am: Add lock-tracer.h and lock-trace.c.
7133
7134         * appdomain.c: Call the tracer init function.
7135
7136         * domain-internals.h: Enable the tracer for the domain locks.
7137
7138         * image.c: Enable the tracer for image locks.
7139
7140         * loader.c: Enable the trace for the loader lock.
7141
7142         * lock-tracer.h:
7143         * lock-tracer.c: Initial implementation of the lock trace utility.
7144         The tracer requires a compile time define to be enabled and a env var
7145         to be enabled at runtime.
7146
7147 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7148
7149         * domain.c (mono_domain_code_foreach): Improve documentation.
7150
7151 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7152
7153         * appdomain.c:
7154         * generic-sharing.c:
7155         * object.c:
7156         * reflection.c:  Adjust locking order to the new semantics where the loader lock
7157         comes first.
7158
7159 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7160
7161         * domain.c: Add mono_domain_code_* functions that perform locking
7162         around the domain codeman.
7163
7164         * domain-internals.h: Export those functions.
7165
7166         * object.c: Use new functions instead of acquiring the domain lock.
7167
7168 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
7169
7170         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7171         delegate. Fixes #477396.
7172
7173 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7174
7175         * reflection.c (create_custom_attr): Get rid of alloca.
7176
7177 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
7178
7179         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7180           Adding exception handling for all CCW calls.
7181
7182         Code is contributed under MIT/X11 license.
7183
7184 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7185
7186         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7187
7188         * marshal.c (emit_marshal_boolean): Add null checks to the new 
7189         native->managed marshalling code. Fixes #476247.
7190
7191 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7192
7193         * class.c (mono_class_get_vtable_entry): Move the addition of
7194         static rgctx invoke wrappers for vtable methods here, this simplifies
7195         a lot of code and causes fewer rgctx wrappers to be created.
7196
7197         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
7198         name of the statistics to begin with an uppercase.
7199
7200 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7201
7202         * reflection.c: Revert previous change as it breaks the build.
7203         
7204 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7205
7206         * verify.c: Properly handle SZARRAY element type.
7207
7208         Fixes #474271.
7209
7210 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7211
7212         * reflection.c (mono_image_create_method_token): Correctly encode
7213         MethodDef MemberRefParent token.
7214
7215         Fixes #472845.
7216
7217 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7218
7219         * image.c (mono_image_close): Delete the critical section before
7220         freeing the memory holding it.
7221
7222 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7223
7224         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
7225         Fixes #476257.
7226
7227 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7228
7229         * pedump.c (main): Call mono_marshal_init so pedump
7230         doesn't crash.
7231
7232 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7233
7234         * loader.c (method_from_memberref): Properly fix #474271 and
7235         don't break the runtime bad.
7236
7237 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7238
7239         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
7240         (mono_domain_alloc0): Ditto.
7241
7242 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7243
7244         * loader.c (method_from_memberref): Don't abort if the array
7245         method is not found. A regular loader failure is more informative
7246         and correct.
7247
7248         Fixes #474271.
7249
7250 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7251
7252         *loader.c: Guard MonoImage::method_cache/methodref_cache
7253         using the image lock instead of the loader lock.
7254
7255         * metadata.h: Add comments about which fields are protected by
7256         the image lock.
7257
7258 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7259
7260         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
7261
7262         * generic-sharing.c (mono_method_construct_object_context): Remove the
7263         wrapper_type == NONE assert, it is not needed.
7264
7265 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
7266
7267         * reflection.c (clear_cached_object): New helper function.
7268         (mono_method_clear_object): New function to clear the cached reflection
7269         objects for a dynamic method.
7270
7271         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
7272         Partly fixes # 463323.
7273         
7274 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7275
7276         * class.c:
7277         * loader.c:
7278         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
7279
7280 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7281
7282         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
7283         take the image lock instead of the loader lock.
7284
7285         * metadata-internals.h: Export new functions.
7286
7287 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7288
7289         * domain.c (app_config_parse): Remove another use of stat that is
7290         not necessary as g_file_get_contents already does the presence
7291         check. 
7292
7293 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7294
7295         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
7296
7297         * marshal.c: Move the bstr handling code to cominterop.c.
7298
7299         * marshal.c: Remove some COM interop code missed previously.
7300
7301 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7302
7303         More Paolo patches from the Wii port:
7304         
7305         * security.c: Remove ves_icall_System_Environment_get_UserName
7306         from here.
7307
7308         * icall.c: And put ves_icall_System_Environment_get_UserName
7309         here. 
7310
7311         * appdomain.c (mono_set_private_bin_path_from_config): Remove
7312         redundant call to stat that was only used to test for the file
7313         existence.   Patch from Paolo.
7314
7315         * gc.c (run_finalize): If COM is disabled, do not link in
7316         mono_marshal_free_ccw.
7317
7318         * generic-sharing.c: Use alloca.h here as well.
7319
7320 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
7321
7322         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
7323
7324 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7325
7326         * cominterop.c cominterop.h: New files.
7327
7328         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
7329         function/typedefs which are needed by cominterop.c global.
7330
7331 2009-02-12  Mark Probst  <mark.probst@gmail.com>
7332
7333         * generic-sharing.c: Don't take the loader lock to guard image
7334         mempool allocs.
7335
7336 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7337
7338         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7339         called without the loader lock which is required to guard MonoImage:tokens.
7340
7341 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7342
7343         * class.c:
7344         * metadata.c:
7345         * method-builder.c:
7346         * marshal.c:
7347         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7348
7349 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7350
7351         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7352         Rework the code to use regular mono_image_alloc/0.
7353
7354         * loader.c: Rework the code to use regular mono_image_alloc/0.
7355
7356         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7357
7358 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
7359
7360         * object-internals.h : Fixing a typo in the 
7361           MonoReflectionComVisibleAttribute struct.
7362
7363         * marshal.c (cominterop_com_visible): Check the implemented 
7364           interfaces for ComImport.
7365
7366         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
7367           assume that bools should be treated as VARIANTBOOLs.
7368
7369         * marshal.c (emit_marshal_boolean): Adding cases for 
7370           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7371
7372         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
7373           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7374
7375         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7376           should be treated as VARIANTBOOLs.    
7377
7378         Code is contributed under MIT/X11 license.
7379
7380 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7381
7382         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7383         allocation with the image lock.
7384
7385 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7386
7387         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7388         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7389
7390         * object.c: Add mono_string_to_utf8_image.
7391
7392         * object-internals.h: Export mono_string_to_utf8_image.
7393
7394         * reflection.c: Rework all explicit references to the the image mempool to go thought
7395         the mono_image_alloc set of functions.
7396
7397 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7398
7399         This patch is the third 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 marshal.c
7401         and generics-sharing.c.
7402
7403         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7404         as first argument. Note that this function remains broken as it doesn't perform locking around the
7405         mempool allocation.
7406
7407         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7408
7409         * image.c: Add g_slist_append_image.
7410
7411         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7412         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7413
7414         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7415         Fix all related code to do the same.
7416
7417         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7418
7419         * metadata-internals.h: Fix the signatures.
7420
7421 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7422
7423         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7424         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7425         and similar to work using MonoImage.
7426
7427         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7428         MonoMemPool.
7429
7430         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7431
7432         * class.c (mono_metadata_signature_deep_dup): Same.
7433
7434         * class.c (inflate_generic_type): Same.
7435
7436         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7437
7438         * metadata.c (mono_metadata_signature_dup_full): Same.
7439
7440         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7441         mono_metadata_signature_dup_full.
7442
7443         * metadata.c (mono_metadata_type_dup): Same.
7444
7445         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7446
7447         * reflection.c: Same.
7448
7449         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7450
7451         * metadata-internals.h: Fix the signatures.
7452
7453         * class-internals.h: Same.
7454
7455 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7456
7457         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7458         and use mono_image_alloc set of functions instead. 
7459
7460         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7461         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7462         of a MonoMemPool.
7463
7464         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7465
7466         * class.c (g_list_prepend_mempool): Removed.
7467
7468         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7469
7470         * image.c: Add g_list_prepend_image.
7471
7472         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7473
7474         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7475
7476
7477 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7478
7479         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7480         mono_image_unlock.
7481
7482         * image.c (mono_image_init): Init the lock field.
7483  
7484         * image.c (mono_image_init): Cleanup the lock field.
7485
7486         * image.c: Add mono_image_(un)lock functions.
7487
7488 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7489
7490         * class.c, class-internals.h: mono_method_get_context_general()
7491         combines the functionality of mono_method_get_context() and
7492         mini_method_get_context().
7493
7494         * generic-sharing.c, domain-internals.h:
7495         mono_method_construct_object_context() and
7496         mono_domain_lookup_shared_generic() moved from mini.
7497
7498         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7499         method doesn't have the correct instantiation because it's shared
7500         generic code.  Fixes #473999.
7501
7502 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7503
7504         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7505
7506         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7507         
7508 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7509
7510         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7511
7512         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7513
7514         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7515         and recheck the cache for dups after it.
7516
7517         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7518
7519         Fixes one of the deadlocks found in #473150.
7520
7521 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7522
7523         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7524           For Win32, add additional break conditions for accept.
7525
7526         Code is contributed under MIT/X11 license.
7527
7528 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7529
7530         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7531         lazily initialize the native wrapper cache.
7532         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7533         cache, since they are different from the normal wrappers.
7534
7535         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7536
7537         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7538         AOT compiled native wrappers.
7539
7540 2009-02-09  Geoff Norton  <gnorton@novell.com>
7541
7542         * appdomain.h:
7543         * security-core-clr.c: Allow enabling core-clr from the embedding
7544         API.
7545
7546 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7547
7548         * socket-io.c: when requesting all the local ips, if there are no
7549         interfaces up and running, MS returns 127.0.0.1.
7550
7551 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7552
7553         * mono-perfcounters-def.h: processor time is an inverse time.
7554         Fixes bug #468625.
7555
7556 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7557
7558         * socket-io.c: an empty host name returns the list of local IPs.
7559         Fixes bug #386637 part 1/2.
7560
7561 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7562
7563         * verify.c (mono_class_interface_implements_interface): Call
7564         mono_class_setup_interfaces ().
7565         (merge_stacks): Ditto.
7566
7567 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7568
7569         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7570         klass->interfaces.
7571         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7572         (mono_generic_class_get_class): Ditto.
7573
7574 2009-02-06  U-QUACK\miguel  <miguel@quack>
7575
7576         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7577         they live in security.c
7578
7579         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7580         another bit from Paolo's code.
7581
7582 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7583
7584         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7585         methods which will be discarded by add_imt_builder_entry ().
7586
7587         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7588         need to be boxed.
7589
7590         * loader.c: Add a statistics for the size of the memberref signature cache.
7591         
7592         * loader.c (find_cached_memberref_sig): New helper function.
7593         (cache_memberref_sig): Ditto.
7594
7595         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7596         they will be parsed again for every generic instantiation, leading to unbounded
7597         memory growth.
7598
7599 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7600
7601         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7602         parameters of generic methods.
7603
7604         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7605         after the original method is copied to the inflated method.
7606         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7607
7608         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7609         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
7610
7611         * class.c metadata.c: Update after the changes above.
7612
7613 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7614
7615         * metadata-verify.c: Simplified error handling and added
7616         section table validation.
7617
7618 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7619
7620         * class-internals.h (MonoClassExt): New structure containing rarely used
7621         fields of MonoClass.
7622         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
7623         through a new 'ext' field.
7624
7625         * class.c (mono_class_alloc_ext): New helper function to allocate 
7626         class->ext.
7627
7628         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
7629
7630 2009-02-05  Mark Probst  <mark.probst@gmail.com>
7631
7632         * object.c (mono_object_get_virtual_method): Properly inflate
7633         generic methods.  Fixes #472692.
7634
7635 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7636
7637         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
7638         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
7639         for the parent type, the created type must be ready to be used on a generic
7640         instantiation.
7641         We fill this_arg/byval_arg if the parent is a generic instance to make sure
7642         we won't have duplicated entries in generic_inst_cache.
7643
7644         Fixes #469553.
7645
7646 2009-02-05  Miguel De Icaza  <miguel@novell.com>
7647
7648         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
7649         replace with plain BSD per the comments on the bug MONO77637.
7650
7651 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7652
7653         * class.c (mono_class_get_generic_class): New accessor function.
7654         (mono_class_get_generic_container): Ditto.
7655
7656         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
7657         fields, similar to the ones in MonoMethod.
7658
7659         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
7660         (mono_class_create_from_typedef): Set klass->is_generic if needed.
7661
7662         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
7663         
7664         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
7665         the same information as element_class->byval_arg.
7666
7667         * class.c reflection.c: Remove references to class->byval_arg.
7668
7669         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
7670         klass->enum_basetype directly.
7671
7672         * verify.c metadata.c object.c icall.c reflection.c: Use 
7673         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
7674         directly.
7675
7676 2009-02-04  Miguel de Icaza  <miguel@novell.com>
7677
7678         * icall-def.h: Remove internal calls for sockets when
7679         DISABLE_SOCKET is defined, file system writing features when the
7680         OS only support reading and not writing data and Policy support if
7681         the Policy is disabled.
7682         
7683         * image.c (do_mono_image_open): Apply Paolo's patches for using
7684         mono_file_map_ APIs here.
7685
7686         * assembly.c: Add support for platforms to avoid prefix
7687         auto-detection. 
7688
7689 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
7690
7691         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
7692         warning.
7693
7694         * class.c (mono_class_inflate_generic_class): New helper function.
7695
7696         * class.c: Use mono_class_inflate_generic_class in a few places. Add
7697         statistics for inflated methods/classes.
7698
7699         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
7700
7701         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
7702         the call is made from Delegate.CreateDelegate () for the invoke method of
7703         a delegate.
7704
7705         * loader.c: Add a statistics for the memory occupied by inflated signatures.
7706
7707         * metadata.c (mono_metadata_signature_size): New helper function.
7708
7709         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
7710         generic instances.
7711
7712         * metadata.c (inflated_method_in_image): Avoid calling 
7713         mono_method_signature () if the method does not already have a signature.
7714
7715 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7716
7717         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
7718         valuetype is compatible with target type, check by inheritance as a
7719         VT is not really compatible with System.ValueType, for example.
7720
7721         * verify.c (do_invoke_method): Improve error message.
7722
7723         * verify.c (do_box_value): If boxing a nullable, use the type argument
7724         on stack instead.
7725
7726         * verify.c (do_newobj): Improve error message.  
7727
7728         Fixes #469549.
7729
7730 2009-02-03  Miguel de Icaza  <miguel@novell.com>
7731
7732         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
7733
7734 2009-02-03  Mark Probst  <mark.probst@gmail.com>
7735
7736         * generic-sharing.c: Don't hold domain lock when calling
7737         instantiate_other_info().  Fixes #471958.
7738
7739         * domain-internals.h, loader.c: Describe locking policy of domain
7740         lock vs loader lock.
7741
7742 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7743
7744         * verify.c (mono_delegate_signature_equal): Make it possible to check
7745         first-arg-bound delegates to static method.
7746
7747         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
7748         static methods with the first arg bound.
7749
7750         Fixes #469529.
7751
7752 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7753
7754         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
7755         errors.
7756
7757         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
7758         under strict mode. Any type, when boxed can be seen as a reference type.
7759
7760         Fixes #469528.
7761
7762 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7763
7764         * object.h: The lower bound of an array is a signed integer value.
7765         Introduce mono_array_lower_bound_t typedef. It should be used instead of
7766         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
7767
7768         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
7769         calculate the upper bound.
7770         
7771         Fixes #471252.
7772
7773 2009-02-02  Miguel de Icaza  <miguel@novell.com>
7774
7775         From Paolo's work, refactored, cleared up:
7776         
7777         * threadpool.c, icall.c: ifdef code that requires a working socket
7778         stack.
7779
7780         * metadata.c (mono_metadata_field_info): Do not attempt to return
7781         a value from a function declared as void.
7782
7783         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
7784         from the console stack.
7785
7786         * assembly.c: use strrchr instead of rindex.
7787
7788         * class.c, object.c, marshal.c, icall.c, reflection.c: include
7789         alloca.h on systems that have it.
7790
7791         * environment.c: Avoid code that uses stuff from
7792         HAVE_SYS_UTSNAME_H
7793         
7794         * appdomain.c: Include sys/time.h.
7795
7796         * console-io.c: include sys/ioctl.h if it is available.
7797
7798 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
7799
7800         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
7801
7802         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
7803         the method builder.
7804
7805         * marshal.c: Set mb->skip_visibility instead of setting it on the method
7806         after it was created and cached, as the later is not thread safe.
7807         
7808 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7809
7810         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
7811         called while the debugging module is not initialized. Fixes #471669.
7812
7813 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
7814
7815         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
7816
7817         Fixes #471255.
7818
7819 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7820
7821         * generic-sharing.c (lookup_or_register_other_info): Make sure the
7822         loader lock is not taken while the templates lock is held.  Fixes
7823         #471089.
7824
7825 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7826
7827         * metadata.c (type_in_image): Added a check to fix a monodis
7828         crash.
7829
7830 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7831
7832         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
7833         nullable arguments.
7834
7835         * object.c (mono_runtime_invoke_array): Ditto.
7836         
7837         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
7838         freeing wrappers of dynamic methods.
7839
7840         * loader.c (mono_free_method): Call it. Fixes #463323.
7841         
7842         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
7843         methods taking vtype/byref arguments, to fix yet another bug caused by
7844         the sharing of runtime invoke wrappers. Partly fixes #471259.
7845
7846 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
7847
7848         * debug-mono-symfile.c (check_line): Return NULL instead of returning
7849         <first file in file table>:1 when the IL offset does not have an associated
7850         line number.
7851
7852 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
7853
7854         * mono-debug.c (mono_debug_lookup_locals): New function to return local
7855         variable info for a method.
7856
7857         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
7858         
7859 2009-01-30  Jb Evain  <jbevain@novell.com>
7860
7861         * pedump.c: reuse code from monodis to make sure pedump honors
7862         MONO_PATH, which is needed to verify net_2_1 assemblies.
7863
7864 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
7865
7866         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
7867         there is no line number info.
7868
7869 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
7870
7871         Avoid some MonoType allocations
7872         * reflection.c (mono_reflection_initialize_generic_parameter):
7873         Reuse MonoType from param->pklass rather than allocating one.
7874         (mono_dynamic_image_free): Update to changes.
7875
7876 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7877
7878         Rearrange some code to improve consistency
7879         * reflection.c (mono_reflection_setup_generic_class): Move body ...
7880         (mono_reflection_initialize_generic_parameter): ... here.
7881
7882 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
7883
7884         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
7885         with type constraints as an experiment.
7886
7887         * boehm-gc.c (on_gc_notification): Update mono_stats.
7888
7889 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7890
7891         Avoid some allocations
7892         * class-internals.h (_MonoGenericInst::type_argv): Convert from
7893         pointer to tail array to avoid extra allocation.
7894         * metadata.c (free_generic_inst): Update to changes.
7895         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
7896         on-stack struct.
7897
7898 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
7899
7900         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
7901         return TRUE if the two type objects are the same.
7902
7903 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7904
7905         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
7906         (mono_class_native_size): Use klass->marshal_info->min_align instead of
7907         klass->min_align, since klass->min_align contains the managed alignment,
7908         while the native alignment can be different, like for longs on x86.
7909         Fixes #469135.
7910
7911         * class-internals.h (MonoMarshalType): Add a min_align field.
7912
7913 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
7914
7915         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
7916         the 1.0 format.
7917
7918 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7919
7920         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
7921         some comments about the usage of the used_regs field.
7922
7923         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
7924         Fixes #469217.
7925
7926 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
7927
7928         * appdomain.c: return NULL instead of throwing FileNotFoundException
7929         when LoadAssembly() fails.
7930
7931 2009-01-23  Mark Probst  <mark.probst@gmail.com>
7932
7933         * metadata.c (mono_metadata_generic_param_equal): Only compare the
7934         image if the owner is NULL.  Fixes the AOT failures.
7935
7936 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
7937
7938         * metadata.c (mono_metadata_load_generic_params): Initialize the 
7939         MonoGenericParam structure using memset so the image field is initialized
7940         as well.
7941
7942 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7943
7944         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
7945         a plain store.
7946
7947 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
7948
7949         * class.c (mono_class_setup_vtable_general): In the generic instance
7950         optimization, set method->slot for abstract virtual methods. Fixes part of
7951         #467834.
7952
7953 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7954
7955         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
7956         which signals that the unloading has started but all appdomain services must
7957         remain operational.
7958
7959         * appdomain.c (mono_domain_unload): The initial state for unloading now
7960         is unloading_start and we switch to unloading after the managed call to
7961         AppDomain::DomainUnload has finished.
7962
7963         The new unloading state has to be created because managed code in the
7964         DomainUnload event can depend on things like the threadpool still working.
7965         The domain must remain fully functional while the event executes.
7966
7967         This shown as an issue due to Process::WaitForExit, which waits for
7968         async reads of stdout and stderr to complete. Since those are processed
7969         in the threadpool the code deadlocks because the DomainUnload callback 
7970         waits for the async read finished event, which should have been set by a
7971         threadpool job but has been discarded due to the domain been in unload
7972         state.
7973
7974 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7975
7976         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
7977         image must match.
7978
7979 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7980
7981         * reflection.c (resolve_object): For fields, inflate the class and
7982         then get the field in the inflated class.
7983
7984 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7985
7986         * object-internals.h (struct _MonoException): Added a comment
7987         explaining the new use of trace_ips.
7988
7989 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7990
7991         * generic-sharing.c (inflate_other_data): Inflate array methods
7992         correctly.
7993
7994         * loader.c, class-internals.h: Rename search_in_array_class() to
7995         mono_method_search_in_array_class() and make it non-static.
7996
7997 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7998
7999         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
8000         Hopefully fixes #458168.
8001
8002 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8003
8004         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
8005         as it is performed elsewhere.
8006
8007         Code is contributed under MIT/X11 license
8008
8009 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8010
8011         * mono-perfcounters-def.h: Add counters for asp.net requests total and
8012         requests queued.
8013         * object.c (mono_raise_exception): Increment the exceptions total
8014         counter when an exception is thrown.
8015         * class-internals.h: Add a location for storing the total number of
8016         asp.net requests served.
8017         * mono-perfcounters.c: Implement update support for asp.net counters
8018         from the class libraries. Implement read support for asp.net counters
8019         and exceptions total counter.
8020
8021 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8022
8023         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
8024         accessing klass->methods. Fixes #467385.
8025
8026 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8027
8028         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
8029         for byval arguments without an [Out] attribute. Fixes #467212.
8030
8031         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
8032         Fix compilation under android.
8033         
8034         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
8035         processed, scan them directly after they are copied, to achieve better locality
8036         and cache usage.
8037
8038         * socket-io.c: Applied patch from Koushik Dutta
8039         (koush@koushikdutta.com). Disable IPV6 when running under android.
8040
8041 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8042
8043         * icall.c (ves_icall_InternalExecute): Add write barriers.
8044
8045         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
8046         the GC code.
8047
8048         * sgen-gc.c: Implement write barriers in IL code.
8049
8050 2009-01-17  Geoff Norton  <gnorton@novell.com>
8051
8052         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
8053
8054 2009-01-17  Geoff Norton  <gnorton@novell.com>
8055
8056         * image.c: When unloading the image->references table, there can be gaps
8057         in it.  Ensure that we iterate every entry to avoid leaking assembly references
8058         when unloading an appdomain.
8059
8060 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
8061
8062         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
8063         speed up ptr-in-nursery checks.
8064
8065         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
8066         threads_lock () to prevent deadlocks.
8067
8068         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
8069         does not need to be scanned during minor collections, since writes to it
8070         must use write barriers.
8071
8072 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
8073
8074         * metadata-verify.c: Add pe nt header verification.
8075         
8076 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8077
8078         * gc.c: Fix a few warnings when using SGEN.
8079
8080 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
8081
8082         * metadata-verify.c: Add pe optional header verification.
8083
8084 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8085
8086         * sgen-gc.c: Add support for user defined marker functions, used by
8087         MonoGHashTable to avoid registering a GC root for every hash node.
8088
8089 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8090
8091         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8092         non-pinned roots into separate hashes to avoid having to traverse them
8093         in functions which are only interested in one kind.
8094
8095 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8096
8097         * metadata-verify.c: Add pe header machine field verification.
8098         
8099 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8100
8101         * metadata-verify.c: Add pe header size verification.
8102
8103 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8104
8105         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8106         using the GC, they don't contain references.
8107
8108         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8109
8110 2009-01-13  Geoff Norton  <gnorton@novell.com>
8111
8112         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
8113         AppDomains created on the native side can be cleaned up on the native side.
8114
8115 2009-01-13  Geoff Norton  <gnorton@novell.com>
8116
8117         * appdomain.c: Ensure that we call mono_context_init for the embedding api
8118         as well as the managed api.
8119
8120 2009-01-13  Geoff Norton  <gnorton@novell.com>
8121
8122         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8123         with a MonoAppDomain initialized against it.
8124
8125 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8126
8127         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8128         
8129         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8130
8131         * marshal.c: Avoid setting the exception clauses after a method has been entered 
8132         into the wrapper caches. Fixes #465700.
8133
8134         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8135         method builder.
8136         (mono_mb_create_method): Set the clauses from the method builder.
8137
8138 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8139
8140         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8141         Patch from Makoto Kishimoto.
8142
8143 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8144
8145         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
8146         encoding them as ROOT_DESC_COMPLEX.
8147         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8148
8149 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
8150
8151         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8152         no longer point to the nursery.
8153
8154         * sgen-gc.c: Add a few comments/FIXMEs.
8155         
8156         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8157
8158         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
8159         initialization of the various _method variables thread safe. Fixes
8160         #465377.
8161
8162 2009-01-12  Mark Probst  <mark.probst@gmail.com>
8163
8164         * domain.c, domain-internals.h: Remove the shared_generics_hash
8165         and its lookup functions.
8166
8167 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
8168
8169         * socket-io.c:  Fixing the MSVC build. 
8170
8171         Code is contributed under MIT/X11 license.
8172
8173 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
8174
8175         * metadata-verify.c: Add pe header watermark verification.
8176
8177 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8178
8179         * metadata-verify.c: Add lfanew verification.
8180
8181 2009-01-12  Jb Evain  <jbevain@novell.com>
8182
8183         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8184         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8185
8186 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
8187
8188         * socket-io.c: Fix the build.
8189
8190         * environment.c: Fix an #ifdef.
8191
8192 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8193
8194         * threadpool.c (async_invoke_thread): Handle the wait function returning
8195         WAIT_IO_COMPLETION as well.
8196         (async_invoke_io_thread): Ditto.
8197
8198 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
8199
8200         * threads.c: Fixing the Windows build.
8201
8202         Code is contributed under MIT/X11 license.
8203
8204 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8205  
8206         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
8207         interrupt a wait.
8208         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
8209         the thread to wait again.
8210
8211 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8212
8213         * metadata-verify.c: Initial skeleton of the metadata verifier.
8214
8215         * pedump.c: Add support for the metadata verifier.
8216
8217         * verify-internal.h: Export the whole assembly metadata verifier function.
8218
8219 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8220
8221         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
8222
8223 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8224
8225         * Makefile.am: Upgrade dtrace-prelink.sh location.
8226
8227 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8228
8229         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
8230         well. Otherwise the shutdown deadlock that happens on unix will can happen
8231         as well.
8232         If the main thread code finishes too fast it's possible that the finalizer
8233         thread won't have executed yet, won't record itself as the finalizer thread
8234         and the shutdown sequence will wait on it forever.
8235
8236 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8237
8238         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
8239         with MSVC.
8240
8241 2009-01-08  Miguel de Icaza  <miguel@novell.com>
8242
8243         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
8244         Robert Jordan for pointing this out.
8245
8246 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
8247
8248         * icall.c
8249         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
8250         ves_icall_System_IO_DriveInfo_GetDriveType.
8251
8252 2009-01-07  Miguel de Icaza  <miguel@novell.com>
8253
8254         * icall.c: Wrap calls to mono_strtod in CriticalSection
8255         invocations when using eglib, to work around #464316.
8256
8257 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8258
8259         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
8260         return value of GetCurrentDirectory to never access unitialized memory.
8261
8262 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8263
8264         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
8265         return value of GetCurrentDirectory and expand the buffer if needed.
8266
8267         Fixes #459094.
8268
8269 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
8270
8271         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
8272           Adding a call to mono_init_com_types.
8273
8274         Code is contributed under MIT/X11 license.
8275
8276 2009-01-07  Geoff Norton  <gnorton@novell.com>
8277
8278         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
8279         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
8280         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
8281         be the value of the ip buffer.
8282
8283 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8284
8285         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
8286         interfaces_packed here.
8287
8288         Fixes part of #463294.
8289
8290 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8291
8292         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
8293
8294         Fixes part of #463294.
8295
8296 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8297
8298         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
8299         is a boxed complex as well.
8300
8301         Fixes part of #463294.
8302
8303 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8304
8305         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
8306         control if a methodspec should be created for the generic method definition from external assemblies.
8307         Caching of methodspec is done using the handleref hash table.
8308
8309         Fixes #462592.
8310
8311 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
8312
8313         * loader.c (find_method): When searching the interfaces of a class
8314         check the transitive closure of implemented interfaces.
8315
8316         Fixes #463303.
8317
8318 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8319
8320         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
8321         
8322 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8323
8324         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
8325         interfaces calculation to fill_valuetype_array_derived_types.
8326
8327         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
8328         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
8329         for example.
8330
8331         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
8332         interfaces for valuetypes if needed.    
8333
8334         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8335         for their basetype as well. Types are array expanded if rank is > 0.
8336
8337         Fixes #400716.
8338
8339 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
8340
8341         * socket-io.h : Changing the signature of
8342           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8343           the blocking state.
8344
8345         * icall-def.h :  Changing the signature of
8346           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8347
8348         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8349           For Windows only.  Avoid blocking when calling accept by
8350           querying for a connection via select.  The loop also queries
8351           the thread state every 1000 micro seconds for the thread
8352           stop state.  This will avoid the process hanging on shutdown
8353           when using a TcpChannel that is never connected to.
8354
8355         Code is contributed under MIT/X11 license.
8356
8357 2008-12-30  Marek Safar  <marek.safar@gmail.com>
8358
8359         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8360
8361 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8362
8363         * class.c (get_implicit_generic_array_interfaces): Extract common
8364         code to a helper function making it a lot easier on the eyes.
8365
8366 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8367
8368         * class.c (get_implicit_generic_array_interfaces): If the internal
8369         enumerator is an interface inflate System.Object instead of itself.
8370
8371         Fixes #461261.
8372
8373 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
8374
8375         * object.c (mono_runtime_invoke_array): Don't assert with
8376         byref nullable types.
8377
8378         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8379         byref nullables we unbox the object and store it on the
8380         stack. 
8381         We can't use the boxed object since it is the T of Nullable<T>
8382         and the boxed representation of a nullable it's underlying type
8383         or null.
8384         We could cheat and create a boxed nullable and use the same
8385         machinery of other byref VTs but this feels like a hack and
8386         using the stack has the bonus of reducing heap pressure.
8387
8388         Fixes #461941.
8389
8390 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8391
8392         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8393         return value.
8394
8395         Fixes #461867.
8396
8397 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8398
8399         * icall-def.h : Adding an internal call definition for 
8400           System.Environment.internalBroadcastSettingChange.
8401
8402         * icall.c : Adding a Windows only implementation to broadcast a 
8403           WM_SETTINGCHANGE when an environment variable has changed.
8404
8405         Code is contributed under MIT/X11 license.
8406
8407 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8408
8409         * class.c, class-internals.h: Made
8410         mono_class_has_parent_and_ignore_generics() non-static.
8411
8412 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8413
8414         * image.c: deal with the mmap failing when loading an image.
8415
8416 2008-12-17  Geoff Norton  <gnorton@novell.com>
8417
8418         * threadpool.c: Ensure that the io_queue_lock is initialized
8419         in all circumstances, as we always attempt to cleanup against it.
8420
8421 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8422
8423         * icall.c (ves_icall_System_Environment_get_Platform): For
8424         compatibility reasons for existing client code we will keep
8425         returning 4 for a while.   
8426
8427         For how long will depend on the documentation being updated, and
8428         for us to give client code a chance to be updated.
8429
8430         This reverts the original decison on #433108 since we did not
8431         catch roughly 33 instances of the broken code in our own source
8432         code base, we did not catch failures on the buildbots, and QA did
8433         not bring this as a problem.
8434
8435         Only today I found some customer's code breaking due to our own
8436         class libraries not being fully updated and tracked it down to
8437         this change.  I am reverting it because if we could not even get
8438         our story straight in our own code base, how can we hope that our
8439         end user code be fixed?
8440
8441         As of this morning, our Wiki page that documents how to detect
8442         Unix had not been fixed.    
8443
8444 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8445
8446         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8447
8448         * class.c (mono_class_get_fields): Handle loading errors.
8449
8450 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8451
8452         * 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.
8453         
8454 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8455
8456         * mono-perfcounters.c: avoid warning.
8457
8458 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8459
8460         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8461         make sure all interfaces have MonoClass::interface_id set.
8462
8463         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8464         method table is property set.
8465
8466 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8467
8468         * class.c: New function mono_class_setup_interface_id that setup
8469         MonoClass::interface_id if needed.
8470
8471         * class-internals.h: Export new function.
8472
8473 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8474
8475         * class.c: Add code to sanity check the vtable after setup_vtable_general
8476         has done it's work.
8477
8478 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8479
8480         * icall.c: make Assembly.GetExecutingAssembly work properly when
8481         reflection is used to invoke the method.
8482         Bug #321781 fixed.
8483
8484 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8485
8486         * metadata/generic-sharing.c: Look for constraints in all type
8487         arguments, not just the first one.
8488
8489 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8490
8491         * appdomain.c: return the correct CodeBase for an Assembly instance
8492         that was loaded from the shadow-copy directories.
8493         Bug #458190 fixed.
8494
8495 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8496
8497         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8498
8499         * sgen-gc.c (check_object): New debugging helper function.
8500
8501         * object.c: Fix calls to mono_value_copy_array ().
8502
8503 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8504
8505         * class.c (mono_class_setup_fields): If working on an inflated class
8506         first check if the generic definition did init with success.
8507
8508         Fixes #445361.
8509
8510 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8511
8512         pedump.c (main): Fix a warning.
8513
8514 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8515
8516         * object-internals.h : Adding a definition for 
8517           MonoReflectionComVisibleAttribute.
8518
8519         * marshal.c (cominterop_com_visible) :  Method added to check the 
8520           ComVisible attribute of a class.
8521
8522         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8523           cominterop_raise_hr_exception added to consolidate common code 
8524           to raise hr exceptions.
8525
8526         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8527           if a managed class should support IDispatch.
8528
8529         * marshal.c 
8530           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8531           Added additional checks for managed object when getting 
8532           an IDispatch interface.
8533
8534         Code is contributed under MIT/X11 license.
8535
8536 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8537
8538         pedump.c (main): Handle mono_get_method () returning NULL. 
8539
8540 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8541
8542         * marshal.h: Fix a warning.
8543
8544 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8545
8546         * marshal.c : Adding cominterop_release_all_rcws to release all
8547           runtime callable wrappers held by the runtime.
8548
8549         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8550           
8551         Code is contributed under MIT/X11 license.
8552
8553 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8554
8555         * metadata.c (mono_image_alloc_lock): New helper function.
8556         (mono_image_alloc0_lock): Ditto.
8557
8558         * metadata.c: Use the alloc_lock () helper functions for allocating
8559         memory from the image mempool.
8560
8561 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8562
8563         * class.c (mono_class_from_generic_parameter): Document it's
8564         locking behavior. Fix double checked locking here, we stored in
8565         param->pklass a partially initialized MonoClass and no membar was used.
8566
8567 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8568
8569         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8570         (3) functions are present in the C library use them to do the
8571         job. If they are absent, make sure that the sum of int_part and
8572         dec_part is rounded before returning. This is necessary due to the
8573         division of dec_part by the power of 10 before the final addition
8574         is performed - if the result is not rounded in some cases it will
8575         yield invalid results.
8576
8577 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8578
8579         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8580         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8581         instruction instead of a pointer constant.
8582
8583 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8584
8585         * loader.c (mono_method_get_header): Do most of the work outside the
8586         loader lock, to avoid assembly load hook deadlocks.
8587
8588         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8589         (mono_metadata_parse_type_full): Ditto.
8590
8591 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8592
8593         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8594         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8595         funtions. Finally, use a lock to produce well ordered output.
8596
8597         The lock looks silly, as all calls to the corlib mempool should be guarded
8598         with the loader lock, but for some reason this fact doesn't help. 
8599
8600         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8601
8602 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8603
8604         * socket-io.c: 64 bit big-endian fixes.
8605
8606 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
8607
8608         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8609         targets that require strict compatibility between the types.
8610
8611         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
8612         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
8613         Kill the strict argument and create a new one valuetype_must_be_boxed.
8614
8615         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
8616         state that all valuetypes must be boxed.
8617
8618         Fixes #448560.
8619
8620 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
8621
8622         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
8623         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
8624
8625         Contributed under MIT/X11 license.
8626
8627 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
8628
8629         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
8630         the inflate_generic_type machinery should handle it.
8631
8632         This avoids a crash when the field's flags is zero and it's type is
8633         a primitive.
8634         What happens is that mono_metadata_parse_type_full will see that opt_attrs
8635         is zero and will return one of the cached built-in primitive types. Since
8636         those types live in read-only memory, the code that copies it crashes.  
8637
8638 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8639
8640         * object.c: Don't put function descriptors into generalized IMT
8641         thunks.
8642
8643 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8644
8645         * class.c: Enable generic code sharing on PPC64.
8646
8647 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8648
8649         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
8650         from mini/mini.c.
8651
8652         * generic-sharing.c: Allocate the method template slists from the
8653         image mempool so it doesn't leak.
8654
8655 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
8656
8657         * class.c (generic_array_methods): Release the linked list.
8658
8659 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8660
8661         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
8662         invocation to g_utf16_to_utf8().
8663
8664 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8665
8666         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
8667         arguments on big endian archs.
8668
8669 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8670
8671         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
8672         the type name (test added in corlib).
8673
8674 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8675
8676         * pedump.c: initialize perf. counters. Fixes a segv.
8677
8678 2008-11-25  Martin Baulig  <martin@ximian.com>
8679
8680         * mono-debug-debugger.c
8681         (mono_debugger_runtime_invoke): Return the exception object if an
8682         exception was thrown.  Visual Studio displays the exception object
8683         in the locals window.
8684
8685 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8686
8687         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
8688         ftnptr.
8689
8690 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8691
8692         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
8693         MONO_TYPE_U are sizeof (gpointer), too.
8694
8695 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8696
8697         * marshal.c (mono_type_native_stack_size): Fixed size and
8698         alignment for reference types.
8699
8700 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8701
8702         * class.c (mono_class_generic_sharing_enabled): Disable generic
8703         code sharing for PPC64.
8704
8705 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
8706
8707         * icall.c (mono_method_get_equivalent_method): Make sure
8708         method->klass->methods is inited before looping over it.
8709
8710 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8711
8712         * object.c: when calling ExecuteAssembly in a newly created domain,
8713         the configuration file and application base are already set up.
8714         Bug #446353 take 2 fixed.
8715
8716 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
8717
8718         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
8719         Fixes #444715. Fix a warning.
8720
8721 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
8722
8723         * appdomain.c: write the full path of the assembly to the .ini file
8724         created when "shadow-copying"
8725         Bug #446353 fixed.
8726
8727 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8728
8729         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
8730         if signature==FALSE.
8731
8732 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8733
8734         * marshal.h : Fix the cygwin build.
8735            marshal.c:12442: undefined reference to `_IID_IMarshal'
8736           
8737         Code is contributed under MIT/X11 license.
8738
8739 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8740
8741         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
8742           free threaded marshaler when QueryInterface is called on a COM callable
8743           wrapper requesting the IMarshal interface.
8744           
8745         Code is contributed under MIT/X11 license.
8746
8747 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8748
8749         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
8750
8751         * reflection.c (mono_type_get_object): Special case the very common
8752         void type.
8753
8754         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
8755         hold typeof(void).
8756
8757 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
8758
8759         * process.h : Adding method declaration for
8760           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8761           
8762         * process.c : Adding implementation for
8763           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8764           
8765         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
8766           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8767
8768         Code is contributed under MIT/X11 license.
8769
8770 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
8771
8772         * appdomain.c (unload_thread_main): Clean up threadpool by
8773         calling mono_thread_pool_remove_domain_jobs.
8774
8775         * domain-internals.h (struct _MonoDomain): Add new fields to
8776         help coordinate the cleanup of the threadpool.
8777
8778         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
8779         that cleans up the threadpool of all jobs associated with an appdomain.
8780         It does that by cleaning up the queues and making sure all active
8781         threads are accounted.
8782
8783         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
8784         unloaded or in the process of. Take this is such way that there is
8785         no race condition between another thread starting the unload and the
8786         current thread acknowledging it.
8787
8788         * threadpool.c (async_invoke_thread): Same.
8789
8790         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
8791         firing the new thread.
8792
8793         * threadpool.c (start_tpthread): Same.
8794
8795         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
8796
8797         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
8798
8799 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
8800
8801         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8802         Add support for DuplicateHandle.
8803         
8804         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8805         Add support for DuplicateHandle.
8806         
8807         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8808         Add support for DuplicateHandle.
8809
8810         Code is contributed under MIT/X11 license.
8811
8812 2008-11-06  Mark Probst  <mark.probst@gmail.com>
8813
8814         * class-internals.h: Make min_align into a whole byte.
8815
8816         * class.c: Set min_align for SIMD types to 16.
8817
8818 2008-11-05  Geoff Norton  <gnorton@novell.com>
8819
8820         * attach.c: Default the attacher to enabled for all cases including
8821         embedded.
8822
8823 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8824
8825         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
8826         change r117650.
8827
8828 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8829
8830         * monitor.c, monitor.h: New function for querying offsets of
8831         members of MonoThreadsSync.
8832
8833 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8834
8835         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
8836         to speed up this function and to avoid the boundless memory growth caused by
8837         the signature_dup () calls.
8838
8839 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
8840
8841         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
8842         wrapper.
8843
8844         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
8845         by 1 bit.
8846
8847         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
8848
8849 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8850
8851         * appdomain.c:
8852         * domain-internals.h: made mono_set_private_bin_path_from_config()
8853         "internal".
8854         * object.c: call the above function after setting the configuration
8855         file path for the root domain.
8856         Fixes bug #314478.
8857
8858 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8859
8860         * assembly.c: when the assembly is loaded from an absolute path, end
8861         basedir with a directory separator.
8862         Bug #440781 fixed.
8863
8864 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8865
8866         * monitor.c (mono_monitor_get_fast_enter_method): If
8867         CompareExchange is not available, don't create the fastpath
8868         instead of asserting.  (The method is missing in the 1.1 profile.)
8869
8870 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8871
8872         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
8873
8874         * monitor.c, monitor.h: Code for generating Monitor.Enter and
8875         Monitor.Exit IL fastpaths.
8876
8877 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8878
8879         * class.c (mono_class_create_from_typedef): Added Vector2ul.
8880
8881 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8882
8883         * class.c (mono_class_create_from_typedef): Added Vector2l.
8884
8885 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8886
8887         * class.c (mono_class_create_from_typedef): Added Vector2d.
8888
8889 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
8890
8891         * appdomain.c: translate \ into / for cache_path.
8892         * domain-internals.h: new mono_is_shadow_copy_enabled().
8893         * icall.c: (fill_reflection_assembly_name) do the same path
8894         manipulations that get_code_base does.
8895         (get_code_base) use mono_is_shadow_copy_enabled.
8896
8897 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
8898
8899         * appdomain.c: shadow-copied assemblies go to CachePath +
8900         ApplicationName when both are set. DynamicBase has nothing to do with
8901         shadow copies.
8902         Bug #406877 fixed.
8903
8904 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
8905
8906         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
8907         STANDALONESIG table.
8908
8909         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
8910         standalone signatures.
8911
8912         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
8913         comparison code: instead of comparing the signatures using a custom
8914         equals function, transform them to a common signature and compare that. This
8915         works better with AOT.
8916
8917 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
8918
8919         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
8920
8921         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
8922         call for generic instances.
8923         (mono_class_setup_properties): Call setup_properties () before accessing
8924         gklass->properties.
8925
8926         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8927         over the virtual methods of a class using metadata if possible, avoiding the
8928         creation of MonoMethod's for non-virtual methods.
8929         
8930         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8931         get_virtual_methods () to iterate over the virtual methods of classes.
8932
8933 2008-10-25  Martin Baulig  <martin@ximian.com>
8934
8935         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
8936
8937 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8938
8939         * class.c (mono_class_create_from_typedef): Added Vector4i.
8940
8941 2008-10-24  Mark Probst  <mark.probst@gmail.com>
8942
8943         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
8944         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
8945         special-casing applies to eliminate the call completely.
8946
8947 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8948
8949         * class.c (mono_class_create_from_typedef): Added Vector8s.
8950
8951 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8952
8953         * class.c (mono_class_create_from_typedef): Added Vector16sb.
8954
8955 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8956
8957         * icall.c: get rid of annoying warning.
8958
8959 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8960
8961         * threadpool.c: in 1.x, if you change the background status of the
8962         threadpool thread, it's not reset.
8963         Remove unnecessary calls to SetState.
8964
8965 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8966
8967         * threadpool.c: asynchronously create a set of idle threads upon first
8968         use of the threadpool. SetMinThreads will now start the appropriate
8969         number of idle threads if they are not already running. The default is
8970         1 threadpool thread per CPU. Increased the maximum number of threads
8971         per CPU to 10.
8972
8973 2008-10-22  Martin Baulig  <martin@ximian.com>
8974
8975         Revert r116521 from Zoltan, it breaks the debugger:
8976
8977         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8978         over the virtual methods of a class using metadata if possible, avoiding the
8979         creation of MonoMethod's for non-virtual methods.
8980         
8981         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8982         get_virtual_methods () to iterate over the virtual methods of classes.
8983
8984 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8985
8986         * threads.c: when creating a threadpool thread, set its state to
8987         'background'.
8988         * threadpool.c: reset the background state of a threadpool thread
8989         after finishing each work item
8990         Bug #437888 fixed.
8991
8992 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8993
8994         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
8995         
8996         * class.c (mono_class_setup_vtable_general): Add an optimized version for
8997         generic instances which works by inflating the methods in the container
8998         class's vtable.
8999
9000         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
9001         variant which doesn't make a copy if no inflation was done.
9002         (mono_class_setup_fields): Use it.
9003
9004         * metadata.c (mono_metadata_get_shared_type): New helper function to
9005         return a shared instance of a given MonoType.
9006
9007         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
9008         a copy of most non-generic types.
9009
9010 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9011
9012         * threadpool.c: remove one more GetSystemInfo () call.
9013
9014 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9015
9016         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
9017         use the code in mono-proclib.h to get processor information.
9018
9019 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9020
9021         * appdomain.c: fixed the logic that determines whether assemblies in a
9022         directory are "shadow-copied" or not. Bug #433483 fixed.
9023
9024 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9025
9026         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
9027         warning.
9028
9029 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9030
9031         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
9032         returning a vtype.
9033
9034         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
9035         reflection.c: Use mono_field_get_name () for accessing a field's name.
9036
9037         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
9038         class.c
9039
9040         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
9041         field.
9042
9043         * loader.c (find_method_in_class): Reenable the metadata optimization by
9044         not using it for generic instances.
9045
9046         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
9047         data/def_type fields from MonoClassField into a separate structure.
9048         (struct MonoClassField): Remove data/def_type fields.
9049         (struct _MonoClass): Add a 'field_def_values' array to store the default
9050         values/RVA for fields.
9051
9052         * class.c reflection.c: Update after the changes.
9053         
9054         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
9055         for accessing field->data.
9056
9057         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
9058
9059         * loader.c (find_method_in_class): Revert the last change for now as
9060         it breaks Mono.C5 unit tests.
9061
9062         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
9063         'field_generic_types' and 'field_objects' which contain the information
9064         previously stored in MonoInflatedField.
9065         (MonoInflatedField): Delete.
9066         (struct _MonoClassField): Delete 'generic_info' field.
9067
9068         * reflection.c: Store the information which was previously in 
9069         field->generic_info in MonoDynamicGenericClass instead.
9070
9071         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
9072         MonoClassField changes.
9073
9074 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
9075
9076         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
9077         store the value inside the data array of the MonoMethodWrapper.
9078         This saves memory, is faster and fixes the lifetime issues (methods
9079         were never removed from the hash previously). May also fix bug#436996.
9080
9081 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9082
9083         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
9084         generic instances, compute the type from the generic definition instead of
9085         looking in field->generic_info.
9086
9087         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
9088         for inflated fields, the only user was get_fieldref_token () which no
9089         longer needs it.
9090
9091         * class.c (mono_class_init): Revert the last change as it seems to cause
9092         crashes.
9093
9094         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9095         bytes on 64 bit platforms.
9096
9097         * object.c (mono_class_create_runtime_vtable): Fix a warning.
9098         
9099         * object.c (mono_class_create_runtime_vtable): Don't initalize
9100         field->data/field->def_type here, it is done lazily by 
9101         mono_class_get_field_default_value ().
9102
9103         * icall.c (ves_icall_get_enum_info): Call 
9104         mono_class_get_field_default_value () instead of directly accessing
9105         field->data and field->def_type.
9106
9107         * object.c (get_default_field_value): Ditto.
9108
9109         * class.c (mono_field_get_data): Ditto.
9110         
9111         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9112         call for generic instances.
9113
9114         * loader.c (find_method_in_class): If klass != from_class, then inflate
9115         the method with the context of from_class, since the caller assumes this.
9116
9117 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
9118
9119         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9120         for accessing method->slot.
9121
9122 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
9123
9124         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9125
9126 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9127
9128         * class.c (mono_method_get_vtable_index): Use
9129         mono_method_get_vtable_slot () for accessing method->slot.
9130
9131         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9132         accessing klass->methods.
9133
9134         * class.c (mono_method_get_vtable_slot): New helper function.
9135         (mono_class_get_vtable_entry): Ditto.
9136         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9137         accessing method->slot.
9138
9139         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9140         method to get_inflated_method ().
9141
9142         * class.c (mono_class_get_inflated_method): New helper method to obtain
9143         a method of an inflated class without calling setup_methods ().
9144         (mono_class_get_cctor): Use get_inflated_method.
9145
9146         * generic-sharing.c (mono_class_get_method_generic): Ditto.
9147         
9148         * marshal.c image.c: Lazily create all the marshal caches.
9149
9150         * image.c (mono_image_init): Move initialization of runtime_invoke
9151         caches to marshal.c.
9152
9153         * marshal.c (get_cache): New helper function to lazily initialize a 
9154         wrapper cache.
9155         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9156
9157         * debug-helpers.c (mono_method_full_name): Include generic arguments.
9158
9159 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9160
9161         * loader.c: fixed check for interface type.
9162
9163 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9164
9165         * appdomain.c: check for NULL setup before it's referenced.
9166
9167 p
9168 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9169
9170         * class.c: remove the unused old vtable setup code.
9171
9172 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9173
9174         * class.c: don't depend on interface order in
9175         setup_interface_offsets (bug #435777).
9176         * reflection.c: sort the InterfaceImpl table (patch from
9177         Jb Evain  <jbevain@novell.com>).
9178
9179 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9180
9181         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9182         the low level assemblies lock.
9183
9184 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9185
9186         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9187         object.c, reflection.c, socket-io.c, threads.c: introduced
9188         mono_framework_version () to return the major framewrok version,
9189         changed the code that was using more complex patterns to use it.
9190         Return the correct value for PlatformID for OSX.
9191
9192 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9193
9194         * icall-def.h, process.h, process.c: added an icall to get info about
9195         processes using mono-proclib.
9196
9197 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
9198
9199         * mono-perfcounters.c: use the mono-proclib functions to
9200         access process information.
9201
9202 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9203
9204         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
9205         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
9206         reflection.c: remove rawbuffer usage: mmap support is more sanely
9207         provided by utils/mono-mmap.
9208
9209 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
9210
9211         * gc.c: use posix semaphores when possible so that
9212         mono_gc_finalize_notify() is signal safe.
9213
9214 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
9215
9216         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
9217         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
9218         be #ifdef-ed out, the linker will remove the rest.
9219
9220         * marshal.c: Implement DISABLE_COM.
9221
9222         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
9223
9224 2008-10-11  Miguel de Icaza  <miguel@novell.com>
9225
9226         * locales.c (string_invariant_compare_char): Optimization: do not
9227         call g_unichar_type unless we actually need the information.
9228
9229 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9230
9231         * object.c, class-internals.h: Also create remoting trampolines
9232         for generic methods.  Pass the domain to the remoting trampoline
9233         creation function, too.
9234
9235 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
9236
9237         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
9238
9239 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9240
9241         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
9242         Vector4ui.
9243
9244 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9245
9246         * assembly.c:
9247         * locales.c: remove the use of g_strdown. Fixes bug #322313.
9248
9249 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
9250
9251         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
9252         for the least possible amount of time (extending the fix in r113458).
9253
9254 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9255
9256         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
9257
9258 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9259
9260         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
9261         as possible simd intrinsic types.
9262         Optimized the test to check for the common prefix first.
9263
9264 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
9265
9266         * class.c: back out part of a broken optimization committed on
9267         May 23th (bug #433908).
9268
9269 2008-10-09  Mark Probst  <mark.probst@gmail.com>
9270
9271         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
9272         Win32.  Should fix #432388 for most cases until we have the new
9273         profiler on Win32.
9274
9275 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9276
9277         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
9278         instead of using inst->id so the hash is stable for AOT.
9279
9280 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
9281
9282         * appdomain.c:
9283         * icall.c: create a .ini file for shadow-copied assemblies that
9284         contains the location of the original assembly. Use this to return the
9285         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
9286         Also fix the number of '/' for windows when returning the CodeBase.
9287         Fixes bug #430920.
9288
9289 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9290
9291         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
9292
9293         Code is contributed under MIT/X11 license.
9294
9295 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9296
9297         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
9298           if if the class vtable needs initialized.
9299
9300         Code is contributed under MIT/X11 license.
9301
9302 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9303
9304         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
9305           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
9306           STRING->BSTR, and CLASS->INTERFACE.
9307
9308         Code is contributed under MIT/X11 license.
9309
9310 2008-10-07  Marek Habersack  <mhabersack@novell.com>
9311
9312         * sysmath.h: changed the declaration of the
9313         ves_icall_System_Math_Round2 icall by adding an extra
9314         away_from_zero parameter.
9315
9316         * sysmath.c (ves_icall_System_Math_Round2): added support for
9317         away from zero rounding. The icall now takes an extra boolean
9318         parameter to signal that away from zero operation is requested.
9319
9320 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9321
9322         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
9323         the delegate klass so it can work with full-aot.
9324         (mono_marshal_get_delegate_end_invoke): Ditto.
9325         (mono_marshal_get_delegate_invoke): Ditto.
9326
9327 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
9328
9329         * gc.c, attach.h, attach.c: remove a bad pattern:
9330         add_finalizer_callback () is not implemented correctly, it can't
9331         without adding more overhead to the finalizer loop and it's not
9332         even needed, since we know exactly what we need to call, so there is
9333         no need to do so through an expensive function pointer.
9334
9335 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
9336
9337         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9338         for the no-gc case.
9339         * attach.c (mono_attach_init): Remove the #ifdef.
9340
9341 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
9342
9343         * attach.c (mono_attach_init): Don't use
9344         mono_gc_add_finalizer_thread_callback when compiling without GC.
9345         Fixes #432306.
9346         
9347         Code is contributed under MIT/X11 license.
9348
9349 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9350
9351         * class.c (mono_class_create_from_typedef): Remove the 
9352         #ifndef DISABLE_SIMD stuff.
9353
9354 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9355
9356         * class-internals.h (MonoClass): Added simd_type bit field.
9357
9358         * class.c (mono_class_create_from_typedef): Check if type is a simd
9359         intrinsic.
9360
9361 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9362
9363         * object.c (mono_method_add_generic_virtual_invocation): Only add
9364         instantiations to the thunk whose count is at least as large as
9365         the threshold.
9366
9367 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9368
9369         * icall.c: changed the Type of the exception thrown when trying to
9370         invoke a constructor on an abstract class. Part of the fix for bug
9371         #324185.
9372
9373 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9374
9375         * class.c, class-internals.h (mono_method_get_vtable_index): New
9376         function which returns the index into the vtable and properly
9377         handles inflated virtual generic methods.
9378
9379 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9380
9381         * object.c, domain.c, object-internals.h, domain-internals.h:
9382         Generalize IMT thunk machinery to also handle thunks for virtual
9383         generic method invokes.  When a virtual generic method is invoked
9384         more than a number of times we insert it into the thunk so that it
9385         can be called without lookup in unmanaged code.
9386
9387         * generic-sharing.c, class-internals.h: Fetching a
9388         MonoGenericInst* for a method from an (M)RGCTX.
9389
9390 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9391
9392         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9393         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9394         marshalling. Fixes #431304.
9395
9396 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9397
9398         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9399           handle when ref is specified without In or Out.
9400
9401         Code is contributed under MIT/X11 license.
9402
9403 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9404
9405         * loader.c (mono_get_method_constrained): Don't expand method with
9406         the class's context, because it's already a method of that class.
9407
9408 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9409
9410         * attach.c : should be correct build fix.
9411
9412 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9413
9414         * attach.c: Fix the previous change.
9415
9416 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9417
9418         * attach.c : quick w32 build fix.
9419
9420 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9421
9422         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9423         crashes MonoDevelop: #430455.
9424
9425 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9426
9427         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9428         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9429
9430         * domain.c: Remove initialization/cleanup of the removed fields.
9431
9432 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9433
9434         * class.c (mono_class_generic_sharing_enabled): Enable generic
9435         code sharing for PPC.
9436
9437 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9438
9439         * attach.c : Fixing the Windows builds.
9440
9441         Code is contributed under MIT/X11 license.
9442
9443 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9444
9445         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9446         the default generic sharing mode to 'all'.
9447
9448 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9449
9450         * generic-sharing.c, class-internals.h: New function for checking
9451         whether a method needs a static RGCTX invoke wrapper.  A few
9452         funtions moved from mini/generic-sharing.c.
9453
9454         * icall.c: New function used.
9455
9456 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9457
9458         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9459         Static RGCTX invoke wrapping applies to value type methods, too.
9460
9461         * class.c (mono_class_setup_vtable_general): In generic-shared
9462         value types, wrap methods with a static RGCTX invoke wrapper.
9463
9464 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9465
9466         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9467         osx build.
9468
9469 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9470
9471         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9472         register a callback which is called when the finalizer thread is woken
9473         up.
9474         (finalizer_thread): Call the callback if it exists.
9475
9476         * attach.h attach.c: New files, implementing the attach mechanism.
9477
9478         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9479         
9480         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9481         by the previous change.
9482
9483 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9484
9485         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9486         loader.c, marshal.c, metadata-internals.h, metadata.c,
9487         method-builder.c, object.c, reflection.c: introduced specific functions
9488         to allocate from the domain and image mempools and cleaned up most of
9489         the code to use them (still missing a few in reflection.c).
9490         Keep the loader bytes counter updated.
9491
9492 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9493
9494         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9495         loader-related counters.
9496
9497 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9498
9499         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9500         added more MS-compatible counters.
9501
9502 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9503
9504         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9505         class->blittable. Fixes #428217.
9506
9507 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9508
9509         * reflection.c (mono_image_get_field_on_inst_token): Call 
9510         field_encode_signature () since that handles custom modifiers too.
9511         Fixes #424663.
9512
9513 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9514
9515         * reflection.c (add_custom_modifiers): New helper function to merge custom
9516         modifiers stored in objects to a MonoType.
9517         (fieldref_encode_signature): Encode custom modifiers.
9518         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9519         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9520
9521 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9522
9523         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9524         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9525         64-bit IL only images because imports are not resolved for IL only images.
9526         Special thanks to Bill Holmes for finding this bug and testing the patch.
9527         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9528
9529         Contributed under MIT/X11 license.
9530
9531 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9532
9533         * mono-config.c (dllmap_start): Add support for the bits keyword
9534         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9535
9536 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9537
9538         * reflection.c (inflate_mono_method): When the class the method is
9539         to be inflated for is itself not inflated, just return the method.
9540
9541 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9542
9543         * mono-perfcounters.c: use more user friendly process instance names.
9544
9545 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9546
9547         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9548           handle "[in] ref" and "[in][out] ref" cases.
9549
9550         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9551           to mono_mb_create_method.  This was causing problems calling native to
9552           managed passing Variants by value.
9553
9554         Code is contributed under MIT/X11 license.
9555
9556 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9557
9558         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9559         before accessing the friend_assembly_names field.
9560
9561         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9562         times.
9563         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9564         called lazily when it is needed.
9565
9566         * metadata-internals.h (struct _MonoAssembly): Add 
9567         'friend_assembly_names_inited' flag.
9568
9569 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9570
9571         * mono-perfcounters-def.h: fix the types of a few counters.
9572         * mono-perfcounters.c: implemented the instance names getter
9573         and a few bugfixes.
9574
9575 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9576
9577         * culture-info-table.h : regenerated.
9578
9579 2008-09-17  Robert Jordan  <robertj@gmx.net>
9580
9581         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9582         context bound objects. Fixes #415577.
9583
9584         Code is contributed under MIT/X11 license.
9585
9586 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9587
9588         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9589         implementation (bug #423582).
9590
9591 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9592
9593         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9594         is not set. Fixes #426309.
9595
9596 2008-09-16  Jb Evain  <jbevain@novell.com>
9597
9598         * class.c (mono_class_from_name): fix the exported type look up
9599         when the type is defined in a referenced assembly.
9600
9601 2008-09-16  Jb Evain  <jbevain@novell.com>
9602
9603         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9604         increment the next index counter on each iteration to make that work
9605         for more than one type forwarder. Unmanaged part to fix #422929.
9606
9607 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9608
9609         * object-internals.h: enum ComInterfaceType in
9610         MonoInterfaceTypeAttribute is guint32, not guint16.
9611
9612 2008-09-12  Mark Probst  <mark.probst@gmail.com>
9613
9614         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
9615         writing code.
9616
9617 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9618
9619         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
9620         not gboolean.
9621
9622 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9623
9624         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
9625         Endianness fixes for MonoSymbolFileOffsetTable.
9626
9627 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9628
9629         * process.c (complete_path) : Removing quotes from the 
9630           input path.  The glib file routines do not handle file paths
9631           that have quotes around them.
9632
9633         Code is contributed under MIT/X11 license.
9634
9635 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9636
9637         * socket-io.h : Adding a comment to provide locations where 
9638           changes to MonoSocketAsyncResult need to be synced.
9639
9640         Code is contributed under MIT/X11 license.
9641
9642 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
9643
9644         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
9645         parameters as well. Fixes #425001.
9646
9647 2008-09-08  Miguel de Icaza  <miguel@novell.com>
9648
9649         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
9650         windows build.
9651
9652 2008-09-07  Miguel de Icaza  <miguel@novell.com>
9653
9654         * console-io.c: Add support for tracking the window size if it
9655         changes.
9656
9657         The setup is very simple: the TtySetup function will now return a
9658         pointer to a location in memory that tracks the current console
9659         size.  The managed code checks its current value every time its
9660         queried against the last value set, and updates accordingly.
9661
9662         With this setup we can work with multiple consoles, and we do not
9663         require to poke into managed code from a signal handler.
9664
9665         Additionally, the environment for COLUMNS and LINES is now handled
9666         in unmanaged code.
9667
9668         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
9669
9670 2008-09-07  Mark Probst  <mark.probst@gmail.com>
9671
9672         * marshal.c (mono_type_native_stack_size): Treat
9673         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
9674
9675 2008-09-04  Jb Evain  <jbevain@novell.com>
9676
9677         * class.c (mono_class_is_assignable_from): fix assignability of nullables
9678         to nullables.
9679
9680 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
9681
9682         * verify.c (verify_type_compatibility_full): Revert change
9683         to allow converting a native int to unmanaged pointer be verifiable
9684         under non-strict mode.
9685         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
9686
9687         * verify.c: Added some TODOs.
9688
9689 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
9690
9691         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
9692           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
9693           Changed to use GlobalAlloc for the memory returned on Windows platforms.
9694
9695         Code is contributed under MIT/X11 license.
9696
9697 2008-09-02  Jb Evain  <jbevain@novell.com>
9698
9699         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
9700
9701 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
9702
9703         reflection.c (typebuilder_setup_fields): Handle classes with
9704         explicit size.
9705
9706 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
9707
9708         class.c (mono_class_setup_events): Add memory barrier due to
9709         double checked locking.
9710         
9711         class.c (mono_class_setup_properties): Same.
9712
9713 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
9714
9715         * class.c (mono_class_is_assignable_from): Fix the build.
9716         
9717         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
9718         before accessing klass->interface_bitmap. Fixes #421744.
9719
9720 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
9721
9722         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
9723         the runtime into no-exec mode, useful when running the AOT compiler.
9724
9725         * appdomain.c gc.c object.c: Avoid executing managed code when running
9726         in no-exec mode.
9727         
9728         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
9729
9730         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
9731         special case when the mono_assembly_loaded () returns NULL because the 
9732         search hook is not installed.
9733
9734 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
9735
9736         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
9737         crashes in bstr marshalling on linux.
9738
9739 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9740
9741         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
9742         with more than one parameter.
9743
9744 2008-08-24  Miguel de Icaza  <miguel@novell.com>
9745
9746         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
9747         start/stop flow control as well when turning off ICANON (allows
9748         C-s and C-q to be read by Console.ReadKey).
9749
9750 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9751
9752         * class.c (mono_class_init): Move the initialization of nested classes
9753         into mono_class_get_nested_types (). Fixes #418433.
9754
9755         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
9756         flag.
9757
9758         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
9759         iterating tough the nested classes of a class.
9760
9761 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
9762
9763         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
9764         on arm.
9765
9766 2008-08-22  Miguel de Icaza  <miguel@novell.com>
9767
9768         * console-io.c (sigcont_handler): Support signal chaining for
9769         SIGCONT.
9770
9771         (console_set_signal_handlers): Use best practices with sigaction,
9772         clear the structure before using it. 
9773
9774 2008-08-22  Robert Jordan  <robertj@gmx.net>
9775
9776         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
9777         Fix the Windows build.
9778
9779 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
9780
9781         * class.c (mono_class_generic_sharing_enabled): Make the default
9782         sharing mode 'corlib'.
9783
9784 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
9785
9786         * console-io.c (console_set_signal_handlers): Fix a warning.
9787
9788         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
9789         method normally, the JIT will take care of avoiding recursion.
9790
9791 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
9792
9793         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
9794
9795         Code is contributed under MIT/X11 license.
9796
9797 2008-08-20  Miguel de Icaza  <miguel@novell.com>
9798
9799         * console-io.c (sigcont_handler): We need to restore the entire
9800         termios state, not only the original settings, as things like echo
9801         can be controlled after this (Booish exposes this issue with its
9802         own ReadLine implementation).
9803
9804         Additionally, we need to set the terminal back into keypad_xmit
9805         mode.
9806         
9807         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
9808         string as a paramter as well.   Otherwise we get different
9809         keyboard sequences.
9810
9811 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
9812
9813         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
9814         delegates with byref out parameter passing. Fixes #351520.
9815
9816         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
9817         a generic context.
9818         (mono_type_get_desc): Add the type arguments for GENERICINST.
9819         (mono_method_full_name): Stringify the class name using mono_type_full_name
9820         so it picks up generic arguments.
9821
9822 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
9823
9824         * console-io.c: Removed debug output.
9825
9826 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
9827
9828         reflection.c (mono_reflection_create_runtime_class): Alloc
9829         the nested classes linked list using the dynamic image mempool.
9830         Fixes leak in corlib compilation.
9831
9832 2008-08-19  Miguel de Icaza  <miguel@novell.com>
9833
9834         * console-io.c: Fix incredibly annoying behavior on the console
9835         after resuming execution after control-z.   This affected every
9836         console application.
9837
9838 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
9839
9840         * mempool-internals.h: Header for mono private mempool functions. The first
9841         two function are for allocating glib linked lists using pools.
9842
9843         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
9844
9845         * Makefile.am: Added mempool-internals.h.
9846
9847 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
9848
9849         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
9850         (mono_domain_free): Ditto.
9851
9852         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
9853         be used by the JIT to store its domain-specific information, instead of putting
9854         it directly into MonoDomain.
9855
9856         * domain.c (mono_install_create_domain_hook): New helper function to install
9857         a hook which initializes domain->runtime_info.
9858
9859         * domain.c (mono_install_free_domain_hook): Ditto.
9860         
9861 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
9862
9863         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
9864         asserting if the ares parameter is null.
9865
9866         * mono-perfcounters.c: Fix warnings.
9867
9868         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
9869         is not needed, don't check for interruptions either.
9870         (mono_marshal_get_delegate_end_invoke): Ditto.
9871
9872 2008-08-15  Marek Habersack  <mhabersack@novell.com>
9873
9874         * mono-perfcounters.c (predef_readonly_counter): added support for
9875         reading the ASP.NET Requests Queued counter from another process.
9876
9877 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
9878
9879         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
9880         MonoImage to simplify the AOT code.
9881
9882 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
9883
9884         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
9885         marshalling. Fixes #416078.
9886
9887 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9888         
9889         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
9890         it is set, looking up the icall address is deferred to the JIT, since 
9891         in embedded scenarios, the icall might not be registered in the runtime
9892         doing the AOT compilation. Backported from the 2.0 branch.
9893
9894 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9895
9896         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
9897         Fixes #415621.
9898
9899 2008-08-05  Marek Habersack  <mhabersack@novell.com>
9900
9901         * Makefile.am: added support for cross-compilation.
9902
9903 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
9904
9905         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
9906
9907 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9908
9909         * mono-perfcounters.c: jitted methods and jitted bytes counters.
9910
9911 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
9912
9913         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
9914         mono-perfcounters.c: performance counters implementation.
9915
9916 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
9917
9918         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
9919         to gpointer, letting the AOT code decide what to store in it.
9920
9921 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
9922
9923         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
9924           mono_class_setup_methods if the methods are not initialized.
9925
9926         Code is contributed under MIT/X11 license.
9927
9928 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9929
9930         * verify.c: Remove some debug code I commited by accident.
9931
9932         * verify.c (mono_method_is_valid_in_context): Change the return value
9933         to make possible to distinguish between invalid and unverifiable.
9934
9935         * verify.c (verifier_load_method): Don't return NULL for unverifiable
9936         methods.
9937
9938 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9939
9940         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
9941         constraints. Fixes regression in gtest-253.
9942
9943 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9944
9945         * verify.c (mono_verifier_verify_class): Don't allow generic types
9946         with explicit layout.
9947
9948         * verify.c (mono_method_verify): Check locals and argument types.
9949
9950 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
9951
9952         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
9953         wait if the thread is in StopRequested state.
9954
9955         * class.c (mono_class_from_name): Refactor the module searching code into
9956         a separate function so it can be reused in the AOT case too.
9957
9958 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
9959
9960         * verify.c (mono_type_is_valid_in_context): Improve the error message.
9961         Check both the type and it's generic type definition for loader errors.
9962         
9963         * verify.c (mono_method_is_valid_in_context): Don't generate another
9964         error when a type errors occur, this leads to the wrong exception been
9965         thrown.
9966
9967 2008-07-28  Dick Porter  <dick@ximian.com>
9968
9969         * icall-def.h
9970         * process.c
9971         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
9972         New internal calls to duplicate and close a process handle.
9973
9974 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
9975
9976         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
9977
9978 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
9979
9980         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
9981
9982 2008-07-27  Robert Jordan  <robertj@gmx.net>
9983
9984         * class.c (mono_class_init): Don't compute class.has_finalize for
9985         valuetypes. Fixes #412477.
9986
9987 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
9988
9989         * verify.c: Implement constraint equivalence checking.
9990         This is required when a generic parameter is used as
9991         argument to a constrained one.
9992
9993         Fixes #410637.
9994
9995 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
9996
9997         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9998
9999         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
10000
10001         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
10002         synch with managed object layout.
10003
10004 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10005
10006         * verify.c (do_branch_op): Handle valuetypes and generic
10007         arguments properly.
10008
10009         * verify.c (do_cmp_op): Same.
10010
10011         Fixes #410383.
10012
10013 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10014
10015         * generic-sharing.c: Fix memory leaks.
10016
10017         * class.c, class-internals.h: Make
10018         mono_class_inflate_generic_type_with_mempool() non-static.
10019
10020 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10021
10022         * pedump.c (dump_verify_info): Dump full class name.
10023
10024 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10025
10026         * generic-sharing.c: Removed some old code that didn't do anything.
10027
10028 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
10029         * profiler.c: Added runtime_initialized_event,
10030         mono_profiler_install_runtime_initialized and
10031         mono_profiler_runtime_initialized. This new hook tells the profiler
10032         when the runtime is sufficiently initialized to be able to call
10033         mono_thread_attach on the root appdomain.
10034         * profiler.h, profiler-private.h: Likewise.
10035
10036 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10037
10038         * verify.c (do_cast): Do boxing for generic arguments as well.
10039
10040         * class.c (is_nesting_type): Drop generic instantiations before
10041         checking for nesting.
10042
10043         * class.c (can_access_instantiation): Allow access to generic
10044         arguments.
10045
10046 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10047
10048         * verify.c (verify_class_for_overlapping_reference_fields):
10049         On some cases, the field size might be zero, guard against that.
10050         Fix the explicit layout check to work as expected.
10051
10052 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10053
10054         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
10055         mono_thread_resume () during shutdown, since the thread we want to abort
10056         might be suspended.
10057
10058 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10059
10060         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
10061         warning.
10062
10063         * debug-mono-symfile.c: Fix a warning.
10064
10065         * mono-perfcounters.c (get_cpu_times): Fix a warning.
10066
10067         * object.c (mono_class_vtable): Check if exception_type is set, and return
10068         NULL as defined by the function comments.
10069
10070 2008-07-22  Mark Probst  <mark.probst@gmail.com>
10071
10072         * mempool.c: Use malloc for every single mempool allocation if the
10073         configure option is set.  This makes it easier to track mempool
10074         allocations with tools like Valgrind.
10075
10076 2008-07-22  Jb Evain  <jbevain@novell.com>
10077
10078         * reflection.c (create_dynamic_mono_image): emit the same
10079         metadata version that SL2 does when creating a SL2 image.
10080
10081 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
10082
10083         * icall-def.h:
10084         * icall.c: New icall System.Enum:get_hashcode. This function
10085         avoids the overhead of boxing the enum to the underlying type.
10086
10087 2008-07-21  Mark Probst  <mark.probst@gmail.com>
10088
10089         * reflection.c (mono_method_get_object): Don't let static RGCTX
10090         invoke wrappers get into MonoReflectionMethods.
10091
10092 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
10093
10094         * object-internals.h:
10095         * object.c: New mono_runtime_class_init_full function
10096         that makes throwing the exception optinal.
10097
10098         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10099         for the case where the exception object is supplied.
10100
10101 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
10102
10103         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10104         old ld versions.
10105
10106         Contributed under MIT/X11 license.
10107
10108 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10109
10110         * string-icalls.c (ves_icall_System_String_InternalSplit):
10111         Optimize array allocation by caching the MonoClass of the
10112         array type.
10113
10114         * icall.c (ves_icall_Type_GetMethodsByName): Same.
10115
10116         * reflection.c (mono_param_get_objects): Same.
10117
10118 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10119
10120         * icall-def.h:
10121         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10122         It inflates the given type using the class context.
10123
10124 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
10125
10126         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10127         the vtable if it already exists.
10128
10129         * object-internals.h: Add mono_class_try_get_vtable as part of the
10130         internal API.
10131
10132         * reflection.c (mono_type_get_object): Use the MonoObject from the
10133         vtable when possible. Reduces locking contention on reflection heavy
10134         code.
10135
10136 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
10137
10138         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10139         g_bit_nth_msf () since that macro is not implemented in eglib.
10140
10141 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10142
10143         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10144         on platforms which do not support it.
10145
10146 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10147
10148         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10149
10150 2008-07-11  Martin Baulig  <martin@ximian.com>
10151
10152         * mono-debug-debugger.h
10153         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10154
10155         * mono-debug-debugger.c
10156         (_mono_debugger_interruption_request): New global volatile variable.
10157         (mono_debugger_check_interruption): New public function.
10158
10159         * threads.c
10160         (mono_thread_current_check_pending_interrupt): Call
10161         mono_debugger_check_interruption().
10162         (mono_thread_interruption_checkpoint_request): Likewise.
10163
10164 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10165
10166         * verify.c: Add more type checks for loaded types. Verify the result
10167         handle from ldtoken.
10168
10169 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10170
10171         * loader.c (field_from_memberref): Don't crash if the field
10172         wasn't found.
10173
10174 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10175
10176         * verify.c: Verify if type and method instantiations
10177         don't have invalid VAR or MVAR arguments.
10178
10179 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10180
10181         * verify.c: Fix double free of function pointer list.
10182
10183 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10184
10185         * object.c (mono_string_to_utf8): Comment the new code as it
10186         breaks under eglib.
10187
10188 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
10189
10190         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10191
10192 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10193
10194         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10195           is not throw too many times.
10196
10197         Code is contributed under MIT/X11 license.
10198
10199 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10200
10201         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
10202         debugging is turned off.
10203
10204 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
10205
10206         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
10207
10208 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10209
10210         * class-internals.h, class.c: Added new generic sharing option:
10211         Share only stuff in System.Collections.Generic, which is now the
10212         default.
10213
10214 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10215
10216         * generic-sharing.c, class-internals.h: New function for getting a
10217         generic method in a generic class given the corresponding method
10218         for a different instantiation of the class.  Partly refactored
10219         from mini-trampolines.c.
10220
10221         * class.c: Make sure generic methods have a class_inst if they are
10222         part of a generic class.
10223
10224         * metadata.c (mono_type_stack_size_internal): Handle type
10225         variables.
10226
10227 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10228
10229         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
10230         Signifies whether information on the this/vtable/mrgctx variable
10231         is available.
10232
10233 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10234
10235         * object.c, object-internals.h, icall.c: New function
10236         mono_delegate_ctor_with_method(), which does the same as
10237         mono_delegate_ctor(), but takes an explicit method argument
10238         instead of taking the method from the jit info.
10239
10240         * marshal.c: When creating a delegate with an inflated method take
10241         the "this" argument as the target class for the castclass.
10242
10243 2008-07-03  Mark Probst  <mark.probst@gmail.com>
10244
10245         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
10246         mono_jit_info_table_find() to perform very badly in some cases.
10247
10248 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
10249
10250         * icall.c (type_from_typename): Handle 'string'.
10251
10252         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
10253         wrappers into the wrapper_hash, since the key is not a MonoMethod.
10254
10255 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
10256
10257         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
10258
10259         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
10260         number of available managed allocator types.
10261
10262         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
10263         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
10264
10265 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
10266
10267         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
10268         which is a low level lock protecting just the 'jit_code_hash' hash table.
10269
10270         * domain.c: Initialize+cleanup jit_code_hash_lock.
10271         
10272 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10273
10274         * coree.c (mono_load_coree): Set coree_module_handle global variable only
10275         after initialization.
10276
10277         * coree.h: Make MonoFixupExe internal.
10278
10279         Contributed under MIT/X11 license.
10280
10281 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10282
10283         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
10284         because that is platform independent. Check NumberOfRvaAndSizes in PE32
10285         as well.
10286         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
10287         image being loaded is a CLI image and _CorValidateImage gets called.
10288
10289         * coree.h: Add MonoLoadImage.
10290
10291         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
10292         instead of LoadLibrary.
10293
10294         Contributed under MIT/X11 license.
10295
10296 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
10297
10298         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
10299         for any primitive type.
10300
10301 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
10302
10303         * object.c (mono_array_new_specific): Optimize this and the other allocation
10304         functions a bit.
10305         
10306         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
10307         domains too if mono_dont_free_domains is set.
10308
10309         * domain-internals.h (mono_dont_free_domains): New internal option controlling
10310         whenever to free appdomain data after it has been unloaded.
10311
10312         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
10313         
10314 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
10315
10316         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
10317         (mono_method_get_equivalent_method): Fix a warning.
10318
10319         * object.c (mono_message_init): Avoid looking up array types for each call.
10320
10321 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
10322
10323         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
10324         call.
10325
10326         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
10327         even more.
10328
10329         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
10330         each iteration.
10331
10332         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
10333         fields of an enum.
10334
10335 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
10336
10337         * object.c (mono_value_box): Fix boxing of nullables.
10338
10339 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
10340
10341         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10342         mono_module_handle that is defined by the linker; no initialization required.
10343         * coree.h: Remove mono_module_handle, add __ImageBase, update
10344         mono_image_open_from_module_handle.
10345         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10346         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10347         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10348         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10349         to 4 GB away from image base address. IA64 version is not tested but was very
10350         easy to implement and should work if we ever need it.
10351         * domain.c (mono_init_internal): Avoid system error message boxes.
10352         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10353         with has_entry_point. Handle do_mono_image_load fauilre correctly.
10354         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10355         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10356         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10357
10358         Contributed under MIT/X11 license.
10359
10360 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10361
10362         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10363         as part of the private mono API.
10364         
10365         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10366         Do proper argument checking for methods that belong to generic classes.
10367         Do proper type resolution for GMFH/2.
10368         Fixes #377324.
10369         
10370 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10371
10372         * verify.c (do_switch): Fix a memory corruption bug with
10373         the jump index is out of bound.
10374
10375 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10376
10377         * verify.c: Disable debug code.
10378
10379 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10380
10381         * reflection.c (mono_image_get_methodbuilder_token): Use
10382         mono_image_get_methodspec_token_for_generic_method_definition
10383         instead of mono_image_get_memberref_token. We cache more memberef
10384         entries now.
10385
10386 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10387
10388         * verify.c: Inflate exception clause types.
10389         Fixes #402606.
10390         
10391 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10392
10393         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10394         name.
10395
10396         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10397
10398         * reflection.c (mono_image_create_method_token): Same.
10399
10400 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10401
10402         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10403         It does the same as mono_image_get_methodref_token but works on
10404         MethodBuilder.
10405
10406         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10407         and always generate a methodspec. This follows the old behavior and fixes
10408         the regressions in System.Core. 
10409
10410 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10411
10412         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10413         don't event mono_class_get () succeeds. Fixes #402182.
10414
10415 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10416
10417         * metadata-internals.h: Added MonoDynamicImage::methodspec
10418         hashtable to store methodspec tokens created for MethodBuilders.
10419
10420         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10421         MethodBuilders as open instantiations if a methodspec was requested.
10422
10423         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10424
10425         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10426
10427         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10428
10429         Fixes bug #349190.
10430
10431 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10432
10433         * loader.c (method_from_methodspec): Avoid crashing if the
10434         method lookup fails.
10435
10436 2008-06-20  Dick Porter  <dick@ximian.com>
10437
10438         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10439         classes being in a different assembly.  Fixes bug 399184.
10440
10441 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10442
10443         * loader.c (mono_loader_init): Make this callable multiple times.
10444         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10445         the runtime is initialized. Fixes #401755.
10446
10447 2008-06-19  Dick Porter  <dick@ximian.com>
10448
10449         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10450         Fixes bug 349688.
10451
10452 2008-06-19  Dick Porter  <dick@ximian.com>
10453
10454         * socket-io.c:
10455         * icall-def.h: Implement Socket generic Send() and Receive()
10456         methods.  Fixes bug 395168.
10457
10458 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10459
10460         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10461
10462         Contributed under MIT/X11 license.
10463
10464 2008-06-18  Martin Baulig  <martin@ximian.com>
10465
10466         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10467         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10468         set to 80.0.  The debugger <-> runtime interface is now frozen as
10469         well.   
10470
10471         * mono-debug.c
10472         (mono_debug_debugger_version): Bump to 4.
10473
10474 2008-06-18  Martin Baulig  <martin@ximian.com>
10475
10476         * debug-mono-symfile.c
10477         (load_symfile): Don't check the minor version.
10478
10479         * debug-mono-symfile.h: Bump the version number to 50.0.
10480
10481 2008-06-18  Martin Baulig  <martin@ximian.com>
10482
10483         * debug-mono-symfile.c
10484         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10485         minimum required version.
10486
10487 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10488
10489         * reflection.c (mono_custom_attrs_from_property): Fix support for
10490         retriveving cattrs of dynamic inflated generic types.
10491
10492         * reflection.c (mono_custom_attrs_from_event): Same.
10493
10494         * reflection.c (mono_custom_attrs_from_field): Same;
10495
10496         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10497
10498         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10499         Moved to metadata.c.
10500
10501         * metadata.c: New functions to retrive the equivalent field, event
10502         of property from the generic type definition.
10503
10504         * metadata-internals.h: Added new functions from metadata.c.
10505
10506 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10507
10508         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10509         to cached in a mempool is used.
10510
10511         * metadata.c (free_generic_class): In some situations field generic_info type
10512         is not properly dup'ed and leads to double free'ing.
10513
10514         Fixes #400643.
10515
10516 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10517
10518         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10519         this arguments (will be needed later for generic methods).
10520         Collect stats.
10521
10522 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10523
10524         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10525         Create a static RGCTX invoke wrapper for methods which require it.
10526
10527 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10528
10529         * object.c, class-internals.h: New function for checking whether
10530         an individual field is special static.
10531
10532 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10533
10534         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10535         linear search since the table is sorted.
10536
10537         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10538         Fixes #324180.
10539
10540 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10541
10542         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10543         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10544
10545         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10546
10547         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10548         
10549         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10550         InterlockedCompareExchange to query and modify 
10551         thread->interruption_requested.
10552
10553         * object-internals.h (struct _MonoThread): Change interruption_requested
10554         to a gint32 so it can be modified by atomic operations. Add 
10555         'critical_region_level' from the managed side, change small_id to a guint32,
10556         add new set of 'unused' fields.
10557
10558         * appdomain.c: Bump corlib version.
10559
10560 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10561
10562         * class.c (mono_class_from_name): Search modules as well. Fixes
10563         #322332.
10564
10565 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10566
10567         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10568         templates.  Templates are generalized with an additional type_argc
10569         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10570         have type_argc>0.
10571
10572         * domain-internals.h, domain.c: New hash table for looking up
10573         MRGCTXs.
10574
10575         * metadata.c, metadata-internals.h: Rename hash and equal
10576         functions for MonoGenericInst's and make them public.
10577
10578         * class-internals.h: New data structures for the MRGCTX.  Macros
10579         for distinguishing slots in the RGCTX and the MRGCTX.
10580
10581 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10582
10583         * object.c (mono_method_get_imt_slot): Put the same methods of
10584         different instantiations of the same generic interface in the same
10585         IMT slots, to make generic sharing simpler.
10586
10587 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10588
10589         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10590
10591         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10592         This function works just like mono_metadata_field_info, but
10593         accept a mempool as argument to be used allocating memory.
10594
10595         * marshal.c (mono_marshal_load_type_info): Use new function
10596         to load marshal data into image mempool.
10597
10598 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10599
10600         * class.c (mono_class_inflate_generic_type_with_mempool):
10601         This function allows to inflate a generic type using
10602         a mempool.
10603
10604         * class.c (inflate_generic_type): Take a mempool as argument
10605         and use it to do type dup'ing.
10606
10607         * class.c (mono_class_setup_fields): Field type for generic
10608         generic classes are allocated from the image mempool.
10609
10610         * metadata.c (free_generic_class): Inflated field type is
10611         now allocated in the image mempool.
10612
10613 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10614
10615         * threads.c (thread_cleanup): Free MonoThread::name.
10616
10617 2008-06-12  Marek Habersack  <mhabersack@novell.com>
10618
10619         * appdomain.c (ensure_directory_exists): avoid unnecessary
10620         mkdir(2) calls when the shadow directory already exists.
10621         (mono_make_shadow_copy): copy also satellite assemblies from the
10622         private bin directories.
10623
10624 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10625
10626         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
10627         
10628         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
10629         a page boundary. Fixes #396219.
10630
10631 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10632
10633         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
10634         due to double-checked locking.
10635
10636 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10637
10638         * assembly.c (build_assembly_name): Release memory on failure.
10639
10640         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
10641
10642 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10643
10644         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
10645         memory on failure.
10646
10647 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10648
10649         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
10650         memory on failure.
10651
10652 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10653
10654         * loader.c (field_from_memberref): Check if field signature type is equal
10655         to the non-inflated type of the field. Fixes #398980.
10656
10657 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10658
10659         * assembly.c (mono_assembly_load_from_full): Call 
10660         mono_assembly_load_friends () outside the assemblies lock, since it can
10661         acquire the loader lock. Fixes #323696.
10662
10663         * reflection.c (resolve_object): Inflate the inst with the context for
10664         FieldOnTypeBuilderInst. Fixes #399010.
10665
10666 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10667
10668         * reflection.c (mono_image_get_field_on_inst_token): Don't
10669         inflate the field to encode it's signature. If it's a
10670         VAR or MVAR it should stay that way in the signature.
10671         Fixes #399047.
10672
10673 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10674
10675         * reflection.c (resolve_object): Release memory of inflated types.
10676
10677 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10678
10679         * loader.c (mono_method_get_signature_full): Remove assert about
10680         loading a methodspec to a generic method. We have such methods, such as
10681         System.Threading.Interlocked::CompareExchange<T>.
10682         This assert was removed since it crashes the verifier when it checks
10683         methods calling CompareExchange<T>.
10684
10685 2008-06-10  Marek Safar  <marek.safar@gmail.com>
10686
10687         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
10688         of Type array and not MonoType.
10689
10690 2008-06-10  Marek Habersack  <mhabersack@novell.com>
10691
10692         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
10693         <lupus@ximian.com>
10694
10695 2008-06-10  Martin Baulig  <martin@ximian.com>
10696
10697         * debug-mono-symfile.h
10698         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
10699         changes to the file format, but we were generating incorrect
10700         source file indices in the line number table due to a bug, which
10701         made backtraces report an incorrect source file.
10702
10703 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10704
10705         * mono-debug.c: Moved mono_debug_free_method_jit_info from
10706         mini/debug-mini.c to here.
10707
10708         * mono-debug.c (il_offset_from_address): Free memory from find_method.
10709
10710         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
10711         use it to release structs returned by mono_debug_find_method.
10712
10713 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
10714
10715         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
10716         since it needs to set method->slot for all interface methods.
10717
10718 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10719
10720         * class-internals.h: Forgot to add.
10721
10722 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10723
10724         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
10725
10726         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
10727         Lookup the custom attributes from property_hash.
10728
10729         * reflection.c (mono_save_custom_attrs): Save the custom attributes
10730         in property_hash. Allocate all data using the image mempool.
10731
10732         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
10733         for dynamic_custom_attrs to checks if the image is dynamic.
10734
10735 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10736
10737         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
10738         assemblies array.
10739         
10740         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
10741         runtime functions while holding the domain assemblies lock.
10742
10743 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10744
10745         * verify.c: Reapplied the last bit of the reverted changes.
10746
10747 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10748
10749         * verify.c: Reapplied more of the reverted changes.
10750
10751 2008-06-09  Martin Baulig  <martin@ximian.com>
10752
10753         * debug-mono-symfile.c (load_symfile): Check the major version
10754         first; if it's wrong, don't print the minor version in the error message.
10755
10756 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10757
10758         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
10759         lock instead of the domain lock to avoid deadlocks, since the thread might
10760         already hold the loader lock.
10761
10762         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
10763         (mono_thread_attach): Ditto.
10764
10765         * monitor.c: Use a TLS variable for holding the current thread id instead
10766         of calling pthread_self ().
10767         (mono_monitor_init_tls): New internal function to initialize the TLS
10768         variable.
10769         (mono_monitor_try_enter_internal): Put the owner == id check after the
10770         owner == 0 check.
10771
10772         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
10773         missed optimizations when using gcc-4.3.
10774
10775 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
10776
10777         * reflection.c (mono_dynamic_image_free): Free the memory
10778         used by MonoGenericParam in MonoDynamicImage::gen_param.
10779
10780         * reflection.c (mono_reflection_setup_generic_class): Allocate
10781         container from mempool.
10782
10783         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
10784         container from mempool.
10785
10786 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10787
10788         * threads.c (mono_set_pending_exception): New internal function to set the
10789         pending exception of the current thread.
10790         (mono_thread_get_and_clear_pending_exception): Check for 
10791         thread->pending_exception as well.
10792
10793         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
10794
10795         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
10796         it can trigger a collection.
10797
10798 2008-06-06  Martin Baulig  <martin@ximian.com>
10799
10800         Merged the `debugger-kahalo' branch.
10801
10802         * mono-debug.h
10803         (MONO_DEBUGGER_VERSION): Bumped to 72.
10804
10805         * debug-mono-symfile.h
10806         (MonoSymbolFileMethodIndexEntry): Removed.
10807         (MonoSymbolFileMethodEntry): New public typedef.
10808         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
10809         (MonoSymbolFileSourceEntry): Remove everything except `index' and
10810         `data_offset'.
10811         (MonoSymbolFileMethodEntry): Removed.
10812         (MonoSymbolFileLexicalBlockEntry): Removed.
10813         (MonoSymbolFileLineNumberEntry): Removed.
10814         (MonoDebugLexicalBlockEntry): Removed.
10815         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
10816         removed `num_il_offsets' and `il_offsets'.
10817         (MonoSymbolFile): Replace `version' with `major_version' and
10818         `minor_version'.
10819         (MONO_SYMBOL_FILE_VERSION): Replace with
10820         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
10821         `MONO_SYMBOL_FILE_MINOR_VERSION'.
10822
10823         * debug-mono-symfile.c
10824         (mono_debug_symfile_lookup_location): Add support for the new line
10825         number table format.
10826
10827 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10828
10829         * metadata.c (free_generic_class): Release the inflated
10830         MonoClass of dynamic generic classes if it's not a generic
10831         type definition.
10832
10833 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10834
10835         * verify.c: Reapplied more of the reverted changes.
10836
10837 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10838
10839         * reflection.c (lookup_custom_attr): Clean the cached flag or
10840         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
10841         for SRE types.
10842
10843 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10844
10845         * verify.c: Reapplied a small part of the reverted changes.
10846
10847 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10848
10849         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10850
10851         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
10852         previously in managed code.
10853         (mono_monitor_exit): Ditto.
10854         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
10855
10856         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
10857         the managed definition.
10858
10859 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10860
10861         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
10862
10863 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10864
10865         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
10866         
10867         * monitor.c: Add some micro optimizations.
10868
10869         * icall.c (type_from_typename): Handle 'bool'.
10870
10871 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10872
10873         * verify.c: Implement constructor verification per P III 1.8.1.4.
10874         Fixes #396716.
10875
10876 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10877
10878         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
10879         holding the assemblies lock here too.
10880
10881 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10882
10883         * verify.c: Kill stack_top function.
10884
10885 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10886
10887         * verify.c: Kill stack_get function.
10888
10889 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10890
10891         * verify.c (mono_method_verify): Last change broke the build. Fixed.
10892
10893 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10894
10895         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
10896         more reliable.
10897
10898         * verify.c (mono_method_verify): Inflate params and locals to avoid
10899         mismatch when checking for compatibility.
10900
10901 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
10902
10903         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
10904         Length prefix should be size in bytes. Fix bug #339530.
10905         
10906         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
10907         Length prefix should be size in bytes. Fix bug #339530.
10908
10909         Code is contributed under MIT/X11 license.
10910
10911 2008-06-05  Bill Holmes <billholmes54@gmail.com>
10912
10913         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
10914
10915         Contributed under MIT/X11 license.
10916
10917 2008-06-05  Martin Baulig  <martin@ximian.com>
10918
10919         * mono-debug-debugger.c
10920         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
10921
10922 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
10923
10924         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
10925         while holding the assemblies lock to prevent deadlocks. Handle the case
10926         where the search hook returns NULL but the assembly was still loaded.
10927         Fixes #323696.
10928
10929         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
10930         modify domain state.
10931
10932 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
10933
10934         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
10935         * Makefile.am (pedump_LDADD): Post-process object files and
10936         add dtrace-generated object file, if necessary.
10937
10938         Code is contributed under MIT/X11 license.
10939
10940 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10941
10942         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
10943
10944 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10945
10946         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
10947
10948 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10949
10950         * threads.c: Try to free everything from the delayed free table
10951         when shutting down threads, and set the variable to NULL after the
10952         table is freed so that calling
10953         mono_thread_hazardous_try_free_all() when shutting down the root
10954         domain doesn't crash.
10955
10956 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10957
10958         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
10959         the caller if resulting type was inflated.
10960
10961         * class.c (mono_class_create_from_typespec): Free the MonoType if it
10962         was inflated.
10963
10964         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
10965
10966
10967 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
10968
10969         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
10970         class library tests.
10971
10972         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
10973         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
10974         #396989.
10975
10976 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10977
10978         * domain.c, domain-internals.h: The JIT infos are now freed by the
10979         JIT info table code.  They are freed immediately if there only a
10980         single JIT info table in circulation.  If there is more, the free
10981         is delayed via a queue.
10982
10983         * threads.c, threads-types.h: New hazard pointer function for
10984         freeing all freeable delayed items in one sitting.
10985
10986 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10987
10988         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
10989
10990         * reflection.c (typebuilder_setup_properties): Same.
10991
10992         * reflection.c (typebuilder_setup_events): Same.
10993
10994 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10995
10996         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
10997         and use it for allocating memory.
10998
10999         * reflection.c (mono_marshal_spec_from_builder): Same.
11000
11001         * reflection.c: Change code to use new signatures.
11002
11003         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
11004
11005 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11006
11007         * decimal.c (rescale128): Put back one line which was accidently commented
11008         out.
11009         
11010         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
11011         to cause crashes.
11012
11013 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11014
11015         * reflection.c (mono_reflection_generic_class_initialize): Name must
11016         be always malloc'ed so we can free it later on. Do this for field, property
11017         and event.
11018
11019         * metadata.c (free_generic_class): Free field, property and event names.
11020
11021 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11022
11023         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
11024         instead of g_memdup.
11025
11026         * reflection.c (typebuilder_setup_fields): Same.
11027
11028 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11029
11030         * decimal.c (rescale128): Optimize this function a bit more.
11031
11032 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11033
11034         * metadata.c (free_generic_class): Release some memory from
11035         SRE generic classes.
11036
11037 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11038
11039         * reflection.c (mono_image_get_generic_field_token): No reference
11040         to name is kept, free it.
11041
11042         * reflection.c (mono_reflection_generic_class_initialize): Free
11043         more memory of the inflated field.
11044
11045 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11046
11047         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
11048         code.
11049
11050 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11051
11052         * reflection.c (mono_dynamic_image_free): Release memory used by
11053         MonoDynamicImage::array_methods elements.
11054
11055         * reflection.c (assembly_add_win32_resources): Release memory after
11056         encoding.
11057
11058 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11059
11060         * decimal.c (log2_32): Use an optimized version for this function too.
11061         
11062         * decimal.c (log2_64): Fix this on 32 bit machines.
11063
11064 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11065
11066         * class.c (mono_dup_array_type): Implement allocation using a mempool.
11067
11068         * class.c (mono_metadata_signature_deep_dup): Same.
11069
11070         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
11071         a mempool.
11072
11073         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
11074
11075         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
11076
11077         * metadata-internals.h: Added mono_metadata_signature_dup_full.
11078
11079         * class-internals.h: Update signatures to take a MonoMemPool.
11080
11081 2008-06-02  Dick Porter  <dick@ximian.com>
11082
11083         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
11084         * icall-def.h: Add
11085         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
11086         FormatMessage API to get the error text.  Fixes bug 321827.
11087
11088 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11089
11090         * decimal.c: Add some micro optimizations to make decimal operations faster.
11091
11092 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
11093
11094         * reflection.c (method_encode_clauses): Take a mempool
11095         as parameter and use it to allocate the clause array.
11096
11097         * reflection.c (mono_image_get_field_on_inst_token): Free
11098         the inflated type after encoding it.
11099
11100         * reflection.c (mono_dynamic_image_free): Free each element
11101         of MonoDynamicImage::gen_params.
11102
11103         * reflection.c (reflection_methodbuilder_to_mono_method):
11104         Allocate the generic param array from the mempool.
11105         Allocate signature params from the mempool.
11106
11107         * reflection.c (mono_reflection_generic_class_initialize):
11108         Free inflated fields after been used.
11109
11110 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11111
11112         * icall.c: Reapply the memory leak fixes as they no
11113         longer make mono crash.
11114
11115 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11116
11117         * reflection.c (mono_type_get_object): Don't store the suplied
11118         MonoType with type_hash. A caller which pass a type that
11119         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11120         might end with a pointer to freed memory.
11121         The solution is to use byval_arg or this_arg from the associated
11122         MonoClass of the supplied type.
11123
11124 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
11125
11126         * icall.c: Revert the rest of the last change as it breaks the build too.
11127
11128 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11129
11130         * icall.c: Revert a leak fix as it's breaking the build.
11131
11132 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11133
11134         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11135
11136 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11137
11138         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11139
11140 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11141
11142         * icall.c: Fix some memory leaks.
11143
11144 2008-05-29  Dick Porter  <dick@ximian.com>
11145
11146         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11147         async socket operations from the pending list when a socket
11148         closes.  Leaving it until the threadpool services the event
11149         exposes a race condition when a socket descriptor is reused.
11150         Fixes bug 377589.
11151
11152 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11153
11154         * object.c: Fix negative index check for array alocation.
11155
11156 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11157
11158         * icall.c, marshal.c: Delegate wrappers should skip visibility.
11159         This check is performed by the verifier for IL created delegates
11160         and by Delegate::CreateDelegate for programatically created ones.
11161         Fixes #372406.
11162
11163 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11164
11165         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11166         Fix code to use mono_array_size_t instead of int.
11167
11168         Based on patch by Luis F. Ortiz.
11169         Contributed under X11 license.
11170         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11171
11172 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11173
11174         * icall.c: Added ves_icall_System_Array_GetLongLength and
11175         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11176         arrays.
11177
11178         * icall.h: Export both new functions.
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  Martin Baulig  <martin@ximian.com>
11185
11186         The debugger now requires exactly r103463.
11187
11188         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11189         This version is not supported by the debugger, wait for 72.
11190
11191 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11192
11193         * object.h: Changed array related functions to use
11194         mono_array_size_t instead of guint32. Forgot to commit this file.
11195
11196         Patch by Luis F. Ortiz.
11197         Contributed under X11 license.
11198         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11199
11200
11201 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11202
11203         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
11204         don't define it. Use the number literal instead.
11205
11206 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11207
11208         * icall.c: Changed array related functions to use
11209         mono_array_size_t instead of guint32.
11210
11211         * icall.c (ves_icall_System_Array_GetLength): Check for length
11212         overflow under MONO_BIG_ARRAYS.
11213
11214         Based on patch by Luis F. Ortiz.
11215         Contributed under X11 license.
11216         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11217
11218 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11219
11220         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
11221
11222         Based on patch by Luis F. Ortiz.
11223         Contributed under X11 license.
11224         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11225
11226 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11227
11228         * object.c, object.h: Changed array related functions to use
11229         mono_array_size_t instead of guint32.
11230
11231         Patch by Luis F. Ortiz.
11232         Contributed under X11 license.
11233         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11234
11235 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11236
11237         * object.h: Introduced mono_array_size_t typedef. This must be used
11238         in all places an array length is expected. This is 64bits wide if
11239         MONO_BIG_ARRAYS is enabled.
11240
11241         Patch by Luis F. Ortiz.
11242         Contributed under X11 license.
11243         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11244
11245 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
11246
11247         * security-manager.c class.c: Set the class exception info by calling
11248         mono_class_set_failure ().
11249
11250         * class.c (mono_class_get_exception_data): New accessor function.
11251         (mono_class_set_failure): Store exception_data in the property hash.
11252
11253         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
11254         the struct as a property.
11255
11256         * loader.c (mono_get_method_full): Store the lookup result for method
11257         tokens in method_cache, the others in methodref_cache to decrease the memory
11258         usage of hash tables.
11259
11260         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
11261         (mono_image_init): method_cache is lazy inited now.
11262
11263         * metadata-internals.h (struct _MonoImage): Change method_cache to
11264         a MonoValueHashTable, add a separate methodref_cache.
11265
11266 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
11267
11268         * number-formatter.h: Fix tables to avoid arithemtic overflow in
11269           Double.ToString as exposed by Bug #383531.
11270
11271 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
11272
11273         * number-formatter.h: Make some tables static.
11274
11275         * class.c (mono_method_set_generic_container): New accessor function.
11276         (mono_method_get_generic_container): Ditto.
11277
11278         * class-internals.h (struct _MonoMethod): Remove rarely used 
11279         'generic_container' field, store it in the property hash instead. Add 
11280         'is_generic' boolean field instead.
11281
11282         * image.c (mono_image_init): Initialize property_hash.
11283         (mono_image_close): Destroy property_hash.
11284
11285         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
11286         hold rarely used fields of runtime structures belonging to this image.
11287
11288         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
11289         to get/set method->generic_container.
11290
11291         * loader.c (mono_get_method_from_token): Avoid loading the method header for
11292         generic methods.
11293
11294 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
11295
11296         * class.c (mono_class_inflate_generic_method_full): Don't increase
11297         mono_stats.inflated_method_count for methods found in the cache.
11298
11299         * threads.c (mono_thread_request_interruption): Add a comment about 
11300         QueueUserAPC ().
11301
11302 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
11303
11304         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
11305         interface_offsets_packed table.
11306         
11307         * class.c (mono_class_init): Remove some dead code.
11308
11309         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
11310         mono_class_setup_vtable () when CAS is active to detect security problems.
11311
11312 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
11313
11314         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
11315
11316         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
11317         parameters as it's irrelevant for delegate checking.
11318
11319 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
11320
11321         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
11322
11323         * class.c (mono_class_init): Control the creation of a generic vtable using
11324         a global which is true by default, but set to false by the runtime startup code.
11325         
11326         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
11327         Disabled for now since it breaks the embedding API.
11328         Move the setup of class->methods for arrays to mono_class_setup_methods ().
11329         (mono_class_setup_methods): Add a memory barrier.
11330
11331         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
11332         when mono_class_init () doesn't compute the generic vtable.
11333         
11334 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11335         * profiler.c: Added mono_profiler_install_statistical_call_chain,
11336         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11337         to support call chains (backtrace) in the stat profiler.
11338         * profiler.c, profiler-private.h: Likewise.
11339
11340 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11341
11342         * generic-sharing.c: Init generic class when a method of it is
11343         requested via a runtime generic context.
11344
11345 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11346
11347         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11348
11349         * reflection.c (mono_type_get_object): Add a FIXME.
11350
11351         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11352
11353         * class.c (mono_class_get_method_by_index): New helper function, returning an
11354         entry in the class->methods array.
11355
11356 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11357
11358         * class.c (mono_class_init): Only do the array optimization for szarrays. 
11359         Avoid creating a generic vtable for generic instances as well.
11360         (mono_class_get_method_from_name_flags): Don't search in the metadata for
11361         generic instances.
11362
11363 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
11364
11365         * loader.c (mono_get_method_constrained): Inflate the signature
11366         with class context. Fix #325283.
11367
11368 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11369
11370         * object.c (mono_class_create_runtime_vtable): Add a comment.
11371
11372         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11373         where needed.
11374         (setup_interface_offsets): Handle the case when this is called twice for arrays.
11375         (mono_class_setup_vtable_general): Add an assert.
11376         (mono_class_init): Avoid creating a generic vtable for arrays.
11377
11378         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11379         here, let mono_class_init () do that.
11380
11381         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11382         interfaces in mscorlib.
11383
11384         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11385         interfaces. Add some comments.
11386         (mono_class_init): Call mono_class_setup_methods () here since it is no
11387         longer called by mono_class_setup_vtable ().
11388
11389         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11390         not set in class->vtable.
11391         (mono_class_create_runtime_vtable): Reenable the disabled code.
11392
11393         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11394         now as it causes some test failures.
11395
11396         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11397         if using the vtable trampoline. Also remove some strange code which put the
11398         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11399         stuff as it is no longer needed.
11400
11401 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11402
11403         * pedump.c: Give make --verify all option check code as well.
11404         Using --verify code won't check for metadata now.
11405
11406 2008-05-19  Martin Baulig  <martin@ximian.com>
11407
11408         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11409
11410         * mono-debug.c
11411         (_mono_debug_using_mono_debugger): New global variable; it's set
11412         directly by the debugger, so mono_debug_using_mono_debugger() also
11413         works after attaching.
11414
11415 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11416
11417         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11418         as we do double checked locking on MonoClass::runtime_info and
11419         MonoClassRuntimeInfo::domain_vtables.
11420
11421 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11422
11423         * debug-helpers.c (print_field_value): Fix a warning.
11424
11425 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11426
11427         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11428         set in the AOT case.
11429
11430 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11431
11432         * class.c (mono_class_setup_vtable_general): Use memory barriers
11433         as we do double checked locking on MonoClass::vtable.
11434
11435 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11436
11437         * reflection.c (resolve_object): Inflate only if the generic context
11438         is not null. Fixes #389886.
11439
11440 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11441
11442         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11443         instead of g_free.
11444
11445         Code is contributed under MIT/X11 license.
11446
11447 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11448
11449         * class.c: Revert unrelated change.
11450
11451 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11452
11453         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11454         a generic instantiation, use mono_class_from_mono_type instead of playing
11455         with MonoType directly.
11456
11457 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11458
11459         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11460         checks must ignore generic instantiations, so mono_class_has_parent is not
11461         suitable. Fixes #390128.
11462
11463 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11464
11465         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11466         it to avoid registering tokens during metadata generation. Fixes #390023.
11467
11468 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11469
11470         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11471         consistent.
11472
11473         Contributed under MIT/X11 license.
11474
11475 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11476
11477         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11478         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11479         to fixup the EXE image.
11480         (mono_cleanup): Use mono_close_exe_image.
11481         (mono_close_exe_image): New function.
11482         * image.c: Include "marshal.h".
11483         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11484         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11485         counting when the image is loaded outside of mono_image_open_full. Set status
11486         based on GetLastError.
11487         * coree.c: Include required headers. Add init_from_coree.
11488         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11489         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11490         (_CorExeMain): Set init_from_coree.
11491         (CorExitProcess): Only call ExitProcess for now.
11492         (CorBindToRuntimeEx): New stub implementation.
11493         (CorBindToRuntime): New function.
11494         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11495         (MonoFixupExe): ILONLY executables require no fixups.
11496         (mono_set_act_ctx): New function to set activation context.
11497         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11498         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11499         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11500         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11501         as MONO_INTERNAL.
11502         * domain-internals.h: Add mono_close_exe_image.
11503
11504         Contributed under MIT/X11 license.
11505
11506 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11507
11508         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11509         size for generic param and event tables. Fixes #388977.
11510
11511 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11512
11513         * loader.c (mono_method_signature): Use memory barriers because of the double
11514         checked locking pattern.
11515
11516         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11517         aborting or aborted as well. Fixes #376391.
11518         
11519         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11520         existing runtime state in the Suspend handler during shutdown.
11521
11522 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11523
11524         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11525
11526         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11527         which are starting up or shutting down.
11528
11529         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11530         this function never returns if the runtime is already shutting down.
11531
11532         * icall.c (ves_icall_System_Environment_Exit): Update after 
11533         mono_threads_set_shutting_down () signature change.
11534         
11535 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11536
11537         * class.c: Added can_access_instantiation to verify if the instantiation
11538         is visible. Fix access check for nested types as they returned TRUE
11539         before doing type and generic instantiation visibility checks.
11540
11541 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11542
11543         * reflection.c (mono_reflection_create_generic_class): The created type
11544         must have a different container from its TypeBuilder. Otherwise they
11545         will end sharing generic arguments, which is wrong.
11546
11547         Due to the sharing, making a generic instance of the created type using
11548         the TypeBuider generic arguments resulted in the generic type definition
11549         been returned, which is wrong as well.
11550
11551         As a bonus the code was leaking the type_params array. This memory should
11552         be allocated from the image mempool.
11553
11554         This fixes bug #354047.
11555
11556 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11557
11558         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11559         to here         as they are now used in assembly.c new code.
11560         Added a skipverification flag to MonoAssembly.
11561         New internal function mono_assembly_has_skip_verification.
11562
11563         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11564         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11565         part of #387274.
11566
11567 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11568
11569         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11570         needed. Fixes #387034.
11571
11572         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11573
11574 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11575
11576         * assembly.c (mono_assembly_load_reference): Prevent crash while
11577         disassembling Silverlight 2.0 executables while we still do not
11578         have GACed libraries.
11579
11580 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11581
11582         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11583
11584 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11585
11586         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11587         of the dynamic case. Fixes #387404.
11588
11589 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11590
11591         *verify.c (mono_verifier_is_class_full_trust): If under
11592         verify_all and the verifier mode was not set, only
11593         gac and corlib types are fulltrust. This makes --verify-all
11594         usable to detect unverifiable code, which is the expected
11595         use case.
11596
11597 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11598
11599         * verify.h: Ops, commited the header with debug
11600         enabled.
11601
11602 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11603
11604         * verify.c (merge_stack): Use the new value on unverifiable
11605         stack merges.
11606
11607         * verify.c (verify_type_compatibility_full): Comparison
11608         of nullable types can't use mono_class_is_assignable_from.
11609
11610         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
11611         that makes all verification errors be reported.
11612
11613         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
11614         mono_method_verify.
11615
11616 2008-05-05  Robert Jordan  <robertj@gmx.net>
11617
11618         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
11619         support for value types. See #386415.
11620
11621         * object.c: comments.
11622
11623         Code is contributed under MIT/X11 license.
11624
11625 2008-05-05  Martin Baulig  <martin@ximian.com>
11626
11627         * debug-mono-symfile.h
11628         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
11629         for old pre-terrania symbol files.
11630
11631 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11632
11633         * mono-config.c: Add ppc64 architecture.
11634
11635         Code is contributed under MIT/X11 license.
11636
11637 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11638
11639         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
11640           PPC64 uses function descriptors as well.
11641
11642         Code is contributed under MIT/X11 license.
11643
11644 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
11645
11646         * object.c (compute_class_bitmap): Ignore literal static fields.
11647
11648         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
11649         var has an invalid format.
11650         (describe_ptr): Add some sanity checks for the vtable.
11651         (add_nursery_frag): Clear unused nursery fragments.
11652         (major_collection): Clear all remaining nursery fragments.
11653
11654 2008-05-03  Robert Jordan  <robertj@gmx.net>
11655
11656         * image.c, metadata-internals.h: add thunk_invoke_cache.
11657
11658         * marshal.c, marshal.h: implement
11659         mono_marshal_get_thunk_invoke_wrapper ().
11660
11661         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
11662
11663         Code is contributed under MIT/X11 license.
11664
11665 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11666
11667         * verify.c (do_leave): Empty the stack.
11668
11669 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11670
11671         * class.c (mono_class_is_assignable_from): Variance
11672         doesn't work between reference and value types. For example,
11673         given type C<T+>, C<int32> is not assignable to C<object>.
11674         Break the argument checking loop on first error. 
11675
11676 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
11677
11678         * icall.c : base64_to_byte_array() needs some more strict
11679           check for sequence of '=' characters. Patch by Santa
11680           Marta (http://deee.g.hatena.ne.jp/santamarta).
11681
11682           Contributed under MIT/X11 license.
11683           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
11684
11685 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
11686
11687         * domain.c: Disable LoadLibrary support to fix Win32 build.
11688
11689         Code is contributed under MIT/X11 license.
11690
11691 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
11692
11693         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
11694         to help with cache behaviour.
11695
11696 2008-05-01  Miguel de Icaza  <miguel@novell.com>
11697
11698         * appdomain.c (mono_domain_from_appdomain): Add new accessor
11699         method. 
11700
11701 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
11702
11703         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
11704
11705 2008-05-01  Dick Porter  <dick@ximian.com>
11706
11707         * process.c (process_get_fileversion): Only pass 16 bits of
11708         language ID to VerLanguageName.  Fixes bug 381204.
11709
11710 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11711
11712         * verify.c (mono_method_verify): Fix the comparison
11713         operator for code bounds check.
11714
11715 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11716
11717         * verify.c (mono_method_verify): Check the bounds of
11718         all access of the code array.
11719
11720 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
11721
11722         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
11723
11724 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
11725
11726         * image.c (mono_image_strong_name_position): Fix return value when the rva is
11727         not valid.
11728
11729 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
11730
11731         * loader.c (mono_get_method_from_token, mono_method_signature): Add
11732         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
11733         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
11734         fixup main EXE images when using mono.exe for mixed-mode assembly support.
11735         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
11736         mono_runtime_load.
11737         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
11738         runtime initialization from metadata.
11739         * assembly.c: Remove obsolete ceGetModuleFileNameA.
11740         (mono_set_rootdir): Use mono_get_module_file_name.
11741         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
11742         handles.
11743         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
11744         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
11745         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
11746         MonoCLIImageInfo. Add support for module handles.
11747         (load_cli_header): Update mono_cli_rva_image_map signature.
11748         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
11749         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
11750         (mono_image_rva_map): Add support for module handles.
11751         (mono_image_ensure_section_idx): Add support for module handles.
11752         (mono_image_close): Add support for module handles.
11753         (do_load_header): Add support for module handles.
11754         (mono_image_open_from_module_handle): New function for internal use.
11755         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
11756         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
11757         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
11758         handles.
11759         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
11760         * image.h: Add mono_image_fixup_vtable.
11761         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
11762         support.
11763         * coree.h: New file.
11764         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
11765         unsupported native code.
11766         (mono_marshal_set_callconv_from_modopt): New function splitted from
11767         mono_marshal_get_managed_wrapper.
11768         (mono_marshal_get_managed_wrapper): Use
11769         mono_marshal_set_callconv_from_modopt.
11770         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
11771         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
11772         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
11773         that results in a deadlock when the runtime is loaded in _CorDllMain.
11774         * Makefile.am: Add coree.c and coree.h.
11775
11776         Contributed under MIT/X11 license.
11777
11778 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11779
11780         * generic-sharing.c: Search for type arguments in array element
11781         types as well.
11782
11783 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11784
11785         * class-internals.h, generic-sharing.c: New, small runtime generic context.
11786
11787         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
11788
11789         * object.c: Don't setup the RGCTX when the vtable is created,
11790         because we're setting it up lazily now.
11791
11792 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
11793
11794         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
11795         64 bit support.
11796
11797 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11798
11799         * verify.c (verify_class_for_overlapping_reference_fields): 
11800         If class is under fulltrust allow reference types to overllap
11801         if they have the same RVA.
11802
11803 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11804
11805         * pedump.c: Added new flag valid-only, that makes the verifier
11806         behaves just like --security=validil. It won't fail type load
11807         due to unverifiable restrictions.
11808
11809 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11810
11811         * class-internals.h (struct MonoMethod): Added a verification_success
11812         field to cache verifier executions. Reduced MonoMethod:slot size by
11813         one bit.
11814
11815 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
11816
11817         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
11818         instead of a 'vt' argument to save an indirection and to allow these to be used
11819         for valuetypes.
11820         (scan_vtype): New helper function to scan an area using a gc descriptor.
11821         (mono_gc_wbarrier_value_copy): Implement this.
11822         (handle_remset): Add support for REMSET_VTYPE.
11823         (find_in_remset_loc): Ditto.
11824         (mono_gc_base_init): Allow some debugging options to be controlled through the
11825         use of the MONO_GC_DEBUG env variable.
11826         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
11827         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
11828
11829 2008-04-23  Martin Baulig  <martin@ximian.com>
11830
11831         * domain.c (mono_domain_create): Move the call to
11832         mono_debug_domain_create() down, after allocating the domain id.
11833
11834 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11835
11836         verify.c (verify_class_for_overlapping_reference_fields): Skip
11837         static fields while verifying for overlapping fields as they
11838         don't matter at all.
11839
11840 2008-04-23  Marek Habersack  <mhabersack@novell.com>
11841
11842         * domain-internals.h: added a declaration of
11843         mono_make_shadow_copy.
11844
11845         * assembly.c (mono_assembly_open_full): shadow copying of
11846         assemblies moved to here, so that all the assemblies within the
11847         application domain's private binary directories can be
11848         processed. Fixes bug #380546
11849
11850         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
11851         mono_make_shadow_copy and made non-static. The decision whether
11852         to shadow-copy an assembly is made based on its location - it's
11853         copied if it's in one of the private application domain binary
11854         directories and its different to the target file in the shadow
11855         directory. Fixes bug #380546
11856
11857 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
11858
11859         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
11860
11861         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
11862         types.
11863
11864         * reflection.c (mono_image_create_token): Handle 
11865         Method/ConstructorOnTypeBuilderInst.
11866         (resolve_object): Ditto.
11867         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
11868         so it can be called from resolve_object. Also handle the case when the inflated
11869         class already has its methods setup.
11870
11871 2008-04-21  Martin Baulig  <martin@ximian.com>
11872
11873         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
11874
11875 2008-04-20  Geoff Norton  <gnorton@novell.com>
11876
11877         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
11878         pointer dereference.
11879
11880 2008-04-15  Marek Habersack  <mhabersack@novell.com>
11881
11882         * appdomain.c (try_load_from): if IOMAP is in effect, call the
11883         portability API to look up the assembly file. Fixes behavior in
11884         situations when the application has a bin/ directory, but the
11885         assembly search patch refers to Bin/ (and thus the requested file
11886         name is Bin/SomeLibrary.dll). Fixes bug #379888
11887
11888 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
11889
11890         verify.c (mono_type_is_generic_argument): Extracted this check
11891         from a dozen places to here.
11892
11893         verify.c: Fixed all issues related to boxing generic arguments
11894         and their constraints.
11895
11896 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
11897
11898         verify.c (mono_class_interface_implements_interface): Fix win32 build.
11899
11900 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
11901
11902         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
11903         isn't finished yet. Fixes #363447.
11904
11905 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
11906
11907         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
11908         Fixes #346419.
11909
11910 2008-04-13  Jb Evain  <jbevain@novell.com>
11911
11912         * domain.c: update the 2.1 profile versions.
11913         Merged from the Moonlight 2 branch.
11914
11915 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
11916
11917         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
11918         mscorlibs for the non-refonly case as well.
11919
11920         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
11921         in mono_assembly_load_from_full (). Fixes #378924.
11922
11923 2008-04-11  Geoff Norton  <gnorton@novell.com>
11924
11925         * icall.c: The global extern environ doesn't exist on Mac.  We
11926         need to call NSGetEnviron instead.
11927
11928 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11929
11930         verify.c: Add generic method constraint verification.
11931
11932 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11933
11934         class.c (mono_class_inflate_generic_method_full): Add a long
11935         explanation to the is_mb_open hack. Remove the FIXME.
11936
11937 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11938
11939         * verify.c (mono_method_verify): Mark all unknown opcodes
11940         as invalid. Mark jmp as unverifiable.
11941
11942 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11943
11944         * verify.c: Add code to do type constraint verification on class instances.
11945
11946         * verify.c (mono_verifier_verify_class): Use the type constraint 
11947         verification code.
11948
11949 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11950
11951         * class.c (mono_class_get_field_default_value): Don't pass cindex
11952         as hint to mono_metadata_get_constant_index. The local is not initialized
11953         and should contain garbage most of the time. This could only work
11954         with a lot of luck.
11955
11956 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11957
11958         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
11959
11960 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11961
11962         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
11963
11964         * class.c (mono_class_from_generic_parameter): Save the token of the
11965         generic param in MonoClass::sizes.generic_param_token.
11966
11967         * reflection.c (mono_custom_attrs_from_class): If the class type is
11968         VAR or MVAR retrieve the attributes of the generic param.
11969
11970 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11971
11972         * class.c (mono_class_init): Do class verification if the verifier
11973         is enabled.
11974
11975 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11976
11977         * verify-internal.h: Added mono_verifier_verify_class.
11978
11979         * verify.c: Added mono_verifier_verify_class. It checks for
11980         classes with explicit layout that have overlapping reference fields.
11981
11982         * pedump.c: Init the verifier state prior to verification. Fixed
11983         command line arguments.
11984
11985 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11986
11987         * Makefile.am: Added verify-internals.h, hopefully fix the build.
11988
11989 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
11990
11991         * verify-internals.h: Fix a warning.
11992
11993 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11994
11995         * verify-internals.h: New header with the verifier configuration
11996         extracted from mini.c.
11997
11998         * verify.c: Implemented the new functions exported by verify-internals.h.
11999
12000 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12001
12002         * verify.c: Add proper verification of ckfinite.
12003
12004 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12005
12006         * verify.c (do_conversion): Improved error message to something
12007         more meanfull.
12008
12009         * verify.c (check_is_valid_type_for_field_ops): Fix to work
12010         with primitive types.
12011
12012 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12013
12014         * verify.c: Added tail prefix checking. Marked icall
12015         as unverifible.
12016
12017 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12018
12019         * verify.c: Fix the detection of branches to the middle
12020         of an instruction.
12021
12022 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
12023
12024         * verify.c: Implemented verification of volatile. and
12025         unaligned. prefix. Check if a type is valid after retrieving it.
12026
12027 2008-04-01  Dick Porter  <dick@ximian.com>
12028
12029         * process.c (process_get_fileversion): If there's no string block,
12030         set the file language to en_US.  Fixes the other new part of bug
12031         374600.
12032
12033 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
12034
12035         * class.c: New functions mono_method_can_access_field_full and
12036         mono_method_can_access_method_full. They perform type visibility
12037         and type site check.
12038
12039         * class-internal.h: Added exported functions.
12040
12041         * verify.c: Use new functions to implement proper visibility checks.
12042
12043 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
12044
12045         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
12046
12047 2008-03-28  Dick Porter  <dick@ximian.com>
12048
12049         * process.c (process_get_fileversion): Use the first language ID
12050         we see, rather than insisting on an invariant language.  Fixes bug
12051         374600.
12052
12053 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
12054
12055         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
12056         the streams to fix reading of invalid memory later.
12057
12058         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
12059         to ease debugging.
12060
12061 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12062
12063         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
12064         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
12065
12066 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
12067         * threads.h: Added MonoThreadManageCallback type and
12068         mono_thread_set_manage_callback prototype
12069         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
12070         (used to store the mono_thread_manage callback).
12071         * threads.c: Added mono_thread_set_manage_callback, and handle
12072         "MonoThread->manage_callback" in build_wait_tids.
12073
12074 2008-03-26  Dick Porter  <dick@ximian.com>
12075
12076         * process.c (process_get_fileversion): Set FileVersionInfo strings
12077         to Empty when the resource doesn't have the particular info.
12078         Fixes bug 355717.
12079
12080 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
12081
12082         * verify.c (mono_method_verify): Proper prefix validation.
12083
12084 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12085
12086         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
12087         itself in a separate argument instead of throwing them. Fixes #373448.
12088
12089         * appdomain.c: Bump corlib version.
12090
12091 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
12092
12093         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12094
12095 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
12096
12097         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12098         version macros.
12099
12100 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12101
12102         * generic-sharing.c, class-internals.h: Code for putting
12103         reflection types into the runtime generic context.
12104
12105 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
12106
12107         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12108         Fixes #340662. 
12109
12110
12111 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
12112
12113         * verify.c (VerifyContext): Added instruction prefix data to the struct.
12114
12115         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12116
12117         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12118
12119         * verify.c (do_cast): Let the result value keep the boxed status.
12120
12121         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12122
12123 2008-03-17  Jb Evain  <jbevain@novell.com>
12124
12125         * reflection.c: when running on a 2.0 runtime, emit
12126         unconditionally the #~ header version as 2.0, and the
12127         CLI header version as 2.5, for symmetry's sake with csc.
12128
12129 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12130
12131         * class.c: Remove the unused cache_interface_offsets stuff.
12132
12133         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12134         profiler.c: Fix warnings.
12135
12136 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12137
12138         * generic-sharing.c, class-internals.h: Support for putting
12139         methods into the runtime generic context.
12140
12141 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12142
12143         * class.c (mono_class_setup_fields): Ignore calls made to this function for
12144         classes which are generic instances of not-yet finished typebuilders. Fixes
12145         #351172.
12146
12147         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12148
12149 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
12150
12151         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12152
12153         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12154         field, replace it with a hash table in MonoDynamicImage.
12155
12156         * reflection.c (inflate_mono_method): Access the generic definition object from
12157         image->generic_def_objects instead of imethod->reflection_info.
12158
12159         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
12160
12161         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12162         
12163         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12164         function in reflection.c so it is easier to keep in sync with the dynamic image
12165         creation code.
12166
12167         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12168         mono_image_close ().
12169
12170 2008-03-15  Mark Probst  <mark.probst@gmail.com>
12171
12172         * class.c (mono_class_generic_sharing_enabled): Disable generic
12173         sharing for all architectures except AMD64 and x86 to fix build.
12174
12175 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12176
12177         * verify.c: Use the generic definition MonoGenericContext when available.
12178         Remove code for checking generics instance compatibility in favor of
12179         mono_class_is_assignable_from.
12180
12181 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12182
12183         * marshal.c, marshal.h, metadata-internals.h, image.c,
12184         wrapper-types.h: New wrapper for invoking a shared static method
12185         without having to pass the runtime generic context argument.
12186
12187 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12188
12189         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12190
12191 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12192
12193         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12194         
12195         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
12196         create a token from a FieldOnTypeBuilderInst.
12197         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
12198         (resolve_object): Ditto.
12199
12200         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
12201         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
12202
12203 2008-03-14  Martin Baulig  <martin@ximian.com>
12204
12205         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
12206
12207         * debug-mono-symfile.h
12208         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
12209         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
12210
12211 2008-03-10  Martin Baulig  <martin@ximian.com>
12212
12213         * debug-mono-symfile.h
12214         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
12215         `lexical_block_table_offset'.
12216         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
12217         `lexical_blocks'.
12218         (MonoSymbolFile): Added `version'.
12219
12220         * mono-debug.h
12221         (MonoDebugLexicalBlockEntry): Removed.
12222         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
12223         `lexical_blocks'.
12224
12225         * mono-debug.c (mono_debug_add_method): Don't compute lexical
12226         blocks here; the debugger now does this internally.
12227
12228 2008-02-27  Martin Baulig  <martin@ximian.com>
12229
12230         * object.c (mono_runtime_exec_main): Call
12231         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
12232         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
12233
12234 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12235
12236         * verify.c (verify_type_compatibility_full): Allow native int to be converted
12237         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
12238
12239 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12240
12241         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
12242         ldftn with a virtual method.
12243
12244 2008-03-13  Geoff Norton  <gnorton@novell.com>
12245
12246         * decimal.c:  Only include memory.h if the platform has it.
12247
12248 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
12249
12250         * assembly.c, class.c, metadata-internals.h: make sure public key
12251         tokesns are compared in a case-insensitive way. Also, all
12252         the lookups in the GAC use a lowercase public key token
12253         (gaacutil already does the lowercasing on install). Fixes
12254         bug #369541.
12255
12256 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
12257
12258         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
12259         and return value.
12260
12261 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
12262
12263         * image.c: when someone loads a mscorlib from a file, return the
12264         currently loaded mscorlib (fixes bug #369253).
12265
12266 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12267
12268         * class.c: handle types with no parents by forcing them to have
12269         System.Object as a parent and marking them as broken (this currently
12270         allows the first part of bug #369173 to work as well, likely because
12271         we don't check for typeload exceptions everywhere yet).
12272
12273 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
12274
12275         * class.c: more complete check that types belong to corlib
12276         (fixes second part of bug #369173).
12277
12278 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
12279
12280         * generic-sharing.c:  Including glib.h for the MSVC builds to define
12281           "inline" to "__inline" before including mono-membar.h.
12282           
12283         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
12284           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
12285           MSVC builds.
12286
12287         Contributed under MIT/X11 license.
12288
12289 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12290
12291         * verify.c (do_invoke_method): Remove return type validation.
12292
12293         * verify.c (do_ret): Do return type validation at return site instead of
12294         call site.
12295
12296 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12297
12298         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
12299
12300         * verify.c: Some todos cleaned and improved a few error messages.
12301
12302 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
12303
12304         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
12305
12306 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12307
12308         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
12309         system types correctly.
12310
12311         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
12312         function.
12313
12314 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12315
12316         * assembly.c (build_assembly_name): Fix a warning.
12317
12318 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
12319
12320         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
12321         the called function takes an object type argument. Fixes storing or
12322         valuetypes across remoting as well as reducing memory usage.
12323         * image.c, metadata-internals.h: remove now unused ldfld_remote and
12324         stfld_remote wrapper caches.
12325
12326 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12327
12328         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
12329         is not found.
12330
12331         * reflection.c (mono_image_register_token): New helper function to save
12332         a token->object mapping.        
12333
12334         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12335         managed code.
12336
12337         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12338         one dimension arrays. Fixes #367670.
12339         (mono_reflection_get_type_internal): Ditto.
12340
12341 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12342
12343         * marshal.c: mono_load_remote_field_new() always returns object.
12344         so use the proper signature (fixes bug #366445).
12345
12346 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12347         
12348         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
12349         add an 'inline_failure' flag instead.
12350
12351 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12352
12353         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12354         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
12355         contains the location of "this", used for exception handling.
12356
12357 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12358
12359         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12360         their size on all platforms for perf reasons.
12361
12362 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12363
12364         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12365         object-internal.h
12366
12367         * object-internal.h: Same.
12368
12369 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12370
12371         * reflection.h: Fix the build I just broke.
12372
12373 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12374
12375         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12376         Test if a token is valid, this remove explicit usage of 
12377         MonoDynamicImage::tokens from the verifier code.
12378
12379         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12380
12381         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12382         instead of direct access to MonoDynamicImage::tokens.
12383
12384 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12385
12386         * verify.c (token_bounds_check): Fix the build I just broke.
12387
12388 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12389
12390         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12391
12392         * verify.c (verifier_load_method): Fixed the errors message.
12393
12394         * verify.c (mono_method_verify): Fixed a debug message.
12395
12396 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12397
12398         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12399         mono-perfcounters.h, class-internals.h: support for predefined
12400         writable counters, query of categories and counters, bugfixes.
12401
12402 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12403
12404         * verify.c (do_refanytype): Verify the refanytype opcode.
12405
12406         * verify.c (mono_method_verify): Use do_refanytype.
12407
12408 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12409
12410         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12411
12412         * verify.c (mono_method_verify): Use do_mkrefany.
12413
12414 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12415
12416         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12417         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12418         implementation.
12419
12420 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12421
12422         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12423         the type load exception.
12424
12425 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12426
12427         * verify.c: Added a few FIXME for method signatures
12428
12429         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12430         of mono_method_get_signature and get vararg call working. Removed unused
12431         checks for return value.
12432
12433         * verify.c (do_refanyval): Verify the refanyval opcode.
12434
12435         * verify.c (mono_method_verify): Implemented verification of arglist and
12436         use do_refanyval.
12437
12438 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12439
12440         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12441         vtypes to marshal.c.
12442
12443         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12444         it works for AOT as well.
12445
12446 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12447
12448         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12449         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12450         the system time is adjusted.
12451
12452 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12453
12454         * icall.c, icall-def.h: use the new time functions (fixes the
12455         non-monotonic behaviour of TickCount).
12456
12457 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12458
12459         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12460         it breaks the build.
12461         
12462         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12463         cattr is not finished yet.
12464
12465 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12466
12467         * verify.c: Proper token validation for field, method and type.
12468
12469 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12470
12471         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12472
12473         * loader.c (method_from_memberref): Generate type load error instead of method missing
12474         if the type is not found.
12475
12476 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12477
12478         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12479         some of the conversions caused the generation of a marshal directive exception.
12480
12481 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12482
12483         verify.c: Report which exception should be thrown by the JIT.
12484         Added a lot of FIXME notes.
12485
12486 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12487
12488         * generic-sharing.c: Runtime generic context slots are not
12489         instantiated on init anymore.  Instead, provide function to do the
12490         instantiating on demand.
12491
12492         * class-internals.h: Added vtable to runtime generic context.
12493         Macros for encoding direct and indirect slot offsets in one
12494         guint32.
12495
12496 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12497
12498         * object.c, generic-sharing.c: Moved some generic sharing code
12499         from object.c to generic-sharing.c.
12500
12501         * generic-sharing.c: Added support for extensible runtime generic
12502         context.
12503
12504         * metadata-internals.h: Two new hash tables in MonoImage for
12505         extensible runtime generic context support.
12506
12507         * domain.c: Unregister generic vtables upon domain unloading.
12508
12509         * image.c: Destroy new hash tables upon image unloading.
12510
12511         * metadata.c: Unregister generic subclasses upon image unloading.
12512
12513         * class-internals.h: New data structure for runtime generic
12514         context template.  New fields in the runtime generic context for
12515         extensible part.
12516
12517         * Makefile.am: Added generic-sharing.c.
12518
12519 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12520
12521         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12522         there is a pending loader exception, raise it.
12523
12524         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12525         same.
12526
12527         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12528         same.
12529
12530         Fixes #363450.
12531
12532 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12533
12534         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12535
12536         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12537         
12538         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12539         ref-only requests for compatibility with MS.
12540
12541 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12542
12543         * reflection.c (mono_custom_attrs_from_method): Don't silently
12544         return an empty list for generic method instances.
12545         (mono_custom_attrs_from_param): Likewise.
12546
12547 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12548             Raja R Harinath  <harinath@hurrynot.org>
12549
12550         Fix #354757
12551         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12552         * class.c (mono_class_inflate_generic_method_full): Initialize it
12553         when a fully-open method is instantiated.
12554         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12555         to new field.
12556         * reflection.c (inflate_mono_method): Don't create a temporary context.
12557
12558 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12559
12560         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12561         Compute correct value, to prepare for imethod->reflection_info going away.
12562
12563 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12564
12565         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12566
12567 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12568
12569         * verify.c: Implement skip visibility flag.
12570
12571 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12572
12573         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12574         which contains an extra field to tell the kind of exception that should be thrown.
12575
12576         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12577
12578 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12579
12580         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12581         'method' is updated.
12582
12583 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12584
12585         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12586         explicit layout as well. Fixes #360375.
12587
12588 2008-02-11  Geoff Norton  <gnorton@novell.com>
12589
12590         * loader.c: Guard and dereference against inflated generic methods
12591
12592 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12593
12594         * class.c: Include Retargetable spec in assembly name.
12595         * assembly.c: Always include PublicKeyToken spec in assembly name
12596         (with value "null" if assembly is not signed), and include
12597         Retargetable spec.
12598         * icall-def.h: Added icall for Assembly.get_fullname.
12599         * icall.c: Added icall returning the fullname of an assembly.
12600
12601 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12602
12603         * class.c (mono_class_setup_vtable_general): Add a missing call to
12604         mono_class_setup_methods () which is needed in the AOT case.
12605
12606 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
12607
12608         * verify.c (mono_type_get_stack_name): Added. Return the name for the
12609         stack type of the given MonoType.
12610
12611         * verify.c (verify_type_compatibility_full): Handle the void type.
12612
12613         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
12614         way stack merging works.
12615
12616         * verify.c (store_local): Improved verification message.
12617
12618         * verify.c (do_branch_op): If the merging is invalid, the method
12619         is unverifiable and not invalid. Improved error message.
12620
12621         * verify.c (merge_stacks): Properly merge a boxed valuetype and
12622         a reference type diferent than System.Object. Improved error
12623         message.
12624
12625 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
12626
12627         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
12628
12629         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
12630         type of an enum even if the argument is byref.
12631
12632         * verify.c: Replace all explicit uses of enumtype and enum_basetype
12633         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
12634
12635         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
12636
12637         *verify.c (verify_type_compatibility_full): Make enum types
12638         compatible with their base types.
12639
12640         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
12641         types are compatible for the special case of a boxed valuetype and
12642         System.Object.
12643
12644         * verify.c (verify_stack_type_compatibility): The function
12645         is_compatible_boxed_valuetype was extracted from here.
12646
12647         * verify.c (push_arg): Only set ctx->has_this_store if the method
12648         is not static.
12649
12650         * verify.c (do_ldelem): Fixed a typo in an error message and added
12651         strict check for mixing int32 and native int as the array type
12652         and ldelem type.
12653
12654         * verify.c (merge_stacks): Consider boxed valuetypes in the
12655         compatibility checks.
12656
12657 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
12658         * profiler.h: (MonoGCEvent): Added start-stop the world events.
12659
12660 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12661         *class.c: use_new_interface_vtable_code: renamed the env var to have
12662         a "MONO_" prefix, and fix the logic to enable it by default.
12663
12664 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12665         *class.c:
12666         mono_class_setup_vtable_general: rewrote the way in which interface
12667         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
12668         makes the code more maintainable.
12669         For now the old code is still there, and can be activated setting
12670         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
12671
12672 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
12673
12674         * verify.c: guarded some debug functions around and #ifdef.
12675
12676         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
12677
12678 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12679
12680         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
12681         changes for now since they seem to break too many things.
12682
12683 2008-02-05  Mark Probst  <mark.probst@gmail.com>
12684
12685         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
12686         mono_marshal_find_nonzero_bit_offset): Added macro and function
12687         for finding the byte- and bit-offset of a bitfield within a
12688         struct.
12689
12690 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
12691
12692         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
12693         (mono_marshal_get_struct_to_ptr): Ditto.
12694
12695         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
12696         cctor_signature.
12697
12698 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
12699
12700         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
12701         between methods for non-corlib types.
12702
12703 2008-02-02  Geoff Norton  <gnorton@novell.com>
12704
12705         * loader.c (mono_method_get_param_names): Populate the parameter name for 
12706         generic parameters as well. (Fixes #342536)
12707
12708 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
12709
12710         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
12711
12712         * verify.c (do_invoke_method): Fix for calling with byref structs.
12713
12714         * verify.c (do_cast): push a boxed value type based on the type token and not
12715         the type of stack.
12716
12717 2008-01-31  William Holmes  <billholmes54@gmail.com>
12718
12719         * process.c (process_module_string_read): Check the size returned form 
12720           VerQueryValue to avoid out of memory exception. 
12721
12722 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
12723
12724         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12725         Handle properly modules which are not in the moduleref table. Fixes
12726         #356938.
12727
12728 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
12729
12730         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
12731         the dynamic case which is now in managed code.
12732         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
12733
12734         * marshal.c (mono_string_to_bstr): Fix a warning.
12735         (init_com_provider_ms): Ditto.
12736
12737         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
12738
12739         * exception.c (mono_get_exception_out_of_memory): New helper function.
12740
12741 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
12742
12743         * marshal.c: Add support for BSTR marshalling
12744         using other COM systems.
12745
12746         Code is contributed under MIT/X11 license.
12747
12748 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12749
12750         * object.c (mono_runtime_invoke_array): reverted previous
12751         commit as it breaks the build.
12752
12753 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12754
12755         * object.c (mono_runtime_invoke_array): Verify arguments for
12756         invalid types. Fixes #348522.
12757
12758 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12759
12760         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
12761         non-final virtual calls using call. 
12762
12763         * verify.c (do_invoke): fixed some TODOs.
12764
12765         * verify.c (push_arg): set has_this_store for "ldarga 0".
12766
12767 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
12768
12769         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
12770         which belong to an inflated class. Fixes #356531.
12771
12772 2008-01-26  Robert Jordan  <robertj@gmx.net>
12773
12774         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
12775         which resort to FindFirstFile when a certain error condition
12776         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
12777         Code is contributed under MIT/X11 license.
12778
12779 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
12780
12781         * marshal.c (emit_marshal_string): Fix out string marshalling
12782         to use specified encoding. Fixes #323900.
12783
12784         Code is contributed under MIT/X11 license.
12785
12786 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
12787
12788         * class.c (mono_class_inflate_generic_method_full): Don't modify
12789         iresult->context after cache check.
12790
12791 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
12792
12793         * class.c (mono_class_inflate_generic_method_full): Change the
12794         struct assignments to memcpy for better visibility and add some comments.
12795
12796 2008-01-23  Dick Porter  <dick@ximian.com>
12797
12798         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
12799         procedure, and make it work on windows.
12800
12801 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
12802
12803         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
12804         a MonoReflectionTypeBuilder since it is always of that type.
12805
12806         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
12807
12808         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
12809
12810         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
12811         
12812         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
12813
12814         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
12815
12816         * reflection.c (mono_reflection_create_runtime_class): Remove already created
12817         instantiations from the type cache.
12818
12819 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12820
12821         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
12822
12823         * verify.c (do_unbox_value): push a controled mutability managed pointer.
12824
12825 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12826
12827         * verify.c (do_ldstr): added, verifies if the #US token is valid.
12828
12829         * verify.c (mono_method_verify): removed old TODO
12830
12831 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12832
12833         * verify.c (do_newobj): add visibility check.
12834
12835 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12836
12837         * verify.c (do_load_function_ptr): add visibility check.
12838
12839 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
12840         *class.c:
12841         mono_generic_class_get_class: hook profiler events.
12842         mono_field_get_offset: added to support heap-shot in the new profiler.
12843         *class.h: exported mono_field_get_offset.
12844         * reflection.c:
12845         mono_reflection_setup_internal_class: hook profiler events.
12846
12847 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
12848
12849         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
12850         argument here too and use it to avoid checking for pending exceptions if 
12851         possible.
12852
12853 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
12854
12855         * assembly.c (build_assembly_name): add arg for passing the assembly
12856         flags. Do not consider a PublicKey with value "null" valid.
12857         (mono_assembly_name_parse_full): added boolean argument that will be
12858         set if the assembly name contains a PublicKeyToken spec. Added support
12859         for the Retargetable spec for which only Yes or No are allowed as valid
12860         value. Consider assembly name invalid if Retargetable spec is set, but
12861         either version, culture or public key (token) are not specified.
12862         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
12863         with implementation in assembly.c.
12864         * icall.c (fill_reflection_assembly_name): also copy assembly flags
12865         from MonoAssemblyName.
12866         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
12867         introduced argument for mono_assembly_name_parse_full to know if the
12868         assembly name has a PublicKeyToken spec, and if it has instruct
12869         fill_reflection_assembly_name to use default value for keyToken (if
12870         PublicKeyToken is null).
12871
12872 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12873
12874         * verify.c (mono_method_verify): fixed ovf ops with
12875         float values. They are unverifiable now.
12876
12877 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12878
12879         * class.c (set_failure_from_loader_error): add BadImageException to the
12880         list of exceptions that can cause a type to fail to load.
12881
12882         * class.c (mono_class_get_exception_for_failure): same.
12883
12884 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
12885
12886         * verify.c (in_any_exception_block): added, check if offset
12887         is part of any exception handling clause.
12888
12889         * verify.c (get_stack_type): added VAR and MVAR types.
12890
12891         * verify.c (do_stobj): better error messages.
12892
12893         * verify.c (do_cpobj): added, check cpobj.
12894
12895         * verify.c (do_initobj): added, check initobj.
12896
12897         * verify.c (do_sizeof): added, check sizeof.
12898
12899         * verify.c (do_localloc): added, check localloc.
12900
12901         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
12902
12903 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
12904
12905         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
12906         save_lmf/restore_lmf opcodes.
12907
12908         * threads.c (mono_threads_install_notify_pending_exc): New function to
12909         install a callback notifying the JIT there is a pending exception on a thread.
12910         (mono_thread_request_interruption): Call the new callback.
12911         (mono_thread_get_and_clear_pending_exception): New function to return the
12912         exception pending on a thread.
12913
12914         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
12915         to turn off checking for pending exceptions.
12916         (mono_marshal_get_native_wrapper): Ditto.
12917
12918 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12919
12920         * threads-types.h: Get rid of the unnecessary extern declarations.
12921
12922 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
12923
12924         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
12925         return field from parent class if not private.
12926         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
12927         returns fields from parent class if they are not private.
12928         (method_nonpublic): added function to determine if a given method
12929         should be considered non-public. Returns false for private methods
12930         on parent class, and internal methods from parent on the 1.0 profile.
12931         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
12932         use method_nonpublic function to determine whether method should be
12933         returned.
12934         (property_accessor_public): use newly introduced method_nonpublic
12935         function to determine whether accessor is non-public. 
12936         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
12937         event from parent class if not private. Only return static event if
12938         Static flag is set, and only return static event from parent class if
12939         FlattenHierarchy flag is set.
12940         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
12941         include non-private events from parent class.
12942
12943 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12944
12945         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
12946         warning.
12947
12948 2008-01-16  Wade Berrier <wberrier@novell.com>
12949
12950         * security.c: Add assembly.h header to appease some warnings
12951
12952 2008-01-16  Dick Porter  <dick@ximian.com>
12953
12954         * process.c (process_module_string_read): Remove trailing null
12955         when saving string.
12956
12957 2008-01-16  Mark Probst  <mark.probst@gmail.com>
12958
12959         * class-internals.h: A new data structure describing the layout of
12960         a runtime generic context (MonoRuntimeGenericContextTemplate).
12961
12962         * metadata-internals.h: Added a hash table to MonoDomain that maps
12963         from open generic classes to their runtime generic context
12964         templates.
12965
12966         * object.c: Building of the runtime generic context, including
12967         proper handling of generic type arguments of superclasses.
12968         Building of the runtime generic context according to the template.
12969
12970 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
12971
12972         * class.c (mono_class_setup_fields): Set field.count for generic instances.
12973         Fixes #350856.
12974
12975         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
12976         mono_portability_find_file (). Fixes #325466.
12977         (mono_image_get_public_key): Fix a warning.
12978
12979 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
12980
12981         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
12982         Fixes #353550.
12983         (mono_class_from_name_case): Ditto.
12984
12985 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
12986
12987         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
12988           common storage for the tables used in the System/NumberFormatter class.
12989
12990 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
12991
12992         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
12993
12994 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
12995
12996         * verify.c (get_boxable_mono_type): check if the token is valid.
12997
12998         * verify.c (set_stack_value): changed to add an error if an
12999         invalid type is set on stack. Changed all callers due to signature change.
13000
13001         * verify.c (do_stobj): implement stobj validation.
13002
13003 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13004
13005         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
13006         set container->is_method, it was set earlier.
13007
13008         * metadata.c (type_in_image): Handle MVARs which belong to not finished
13009         generic methods.
13010
13011         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13012         is_method of the generic container to TRUE for methods.
13013
13014 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13015
13016         * metadata.c (type_in_image): Handle type parameters properly.
13017
13018         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
13019         memory ownership of this structure.
13020
13021 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
13022
13023         * verify.c (get_boxable_mono_type): make typedref types been just
13024         unverifiable. check for void type.
13025
13026         * verify.c (do_unbox_any): added, verify opcode unbox.any.
13027
13028         * verify.c (do_load_function_ptr): accept method spec tokens.
13029
13030 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13031
13032         * marshal.c (mono_class_native_size): Always set *align even if this is called
13033         recursively.
13034
13035 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
13036
13037         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
13038         out-of-date.
13039
13040 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
13041
13042         * verify.c: removed some old unused tables. A huge bunch of small fixes
13043         to things found while testing the verifier with mono basic.
13044
13045         * verify.c (dump_stack_value): dump null literal flag to.
13046
13047         * verify.c (verify_type_compatibility_full): fix comparison
13048         for types that have a generic super type.
13049
13050         * verify.c (verify_stack_type_compatibility): fix compatibility
13051         between null literals and reference types. fix compatibility between
13052         boxed valuetypes and object. fix corner case test for enums.
13053
13054         * verify.c (do_cmp_op): proper verification of cgt.un in case
13055         of reference types.
13056
13057         * verify.c (do_invoke_method): fix error message.
13058
13059         * verify.c (do_store_indirect
13060
13061         * verify.c (check_is_valid_type_for_field_ops): proper verification
13062         of managed pointers to valuetypes and boxed valuetypes. proper verification
13063         of null literals.
13064
13065         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
13066         allow token to be a reference type.
13067
13068         * verify.c (do_cast): proper handling of boxes valuetypes.
13069
13070         * verify.c (do_stelem): proper handling of storing a boxed valuetype
13071         in object[].
13072
13073         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
13074         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
13075         fixed the decoding of unbox_any
13076
13077 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13078
13079         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
13080
13081 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
13082
13083         * verify.c (do_newobj): do delegate verification.
13084
13085         * verify.c (verify_delegate_compatibility): perform delegate
13086         verification.
13087
13088         * verify.c (verify_ldftn_delegate): perform tests related to
13089         ldftn delegates.
13090
13091         * verify.c (mono_delegate_signature_equal): perform the
13092         slightly diferent signature comparison required by delegates.
13093
13094         * metadata.c (mono_metadata_type_equal_full): added and exported
13095         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13096         allows signature only comparison.
13097
13098         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13099         as MONO_INTERNAL.
13100
13101 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
13102
13103         * verify.c: added a bunch of stack_slot_* functions to
13104         make access to stack slot type easier. This is required to
13105         allow optional flags, like null literal, boxed value and
13106         this pointer.
13107         All access paths to IlStackDesc::stype have been changed 
13108         to use these new funcions.
13109         Removed a bunch of unused functions and cleared all warnings.
13110         This patch introduces the usage of the this pointer and 
13111         boxed value flags.
13112
13113 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
13114
13115         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13116
13117 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13118
13119         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13120         match managed version.
13121
13122         * appdomain.c: Bump corlib version.
13123         
13124         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13125         argument.
13126
13127 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
13128
13129         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13130         Set public key token to zero-length byte array if assembly is not
13131         strongnamed.
13132
13133 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13134
13135         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13136         writing a vtype array elem.
13137
13138 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
13139
13140         * assembly.c (build_assembly_name): return FALSE if length of token is
13141         not 16 (if not "null").
13142         (mono_assembly_name_parse_full): return FALSE if value of version,
13143         culture, token or key is 0.
13144         * icall.c (fill_reflection_assembly_name): add boolean arguments to
13145         specify whether public key and public key token must be set to default
13146         value (zero-length byte array) if not available. Set versioncompat to
13147         SameMachine. If public key is available or the default is set, then
13148         set PublicKey flag.
13149         (ves_icall_System_Reflection_Assembly_FillName): if no public key
13150         is available, use empty byte array as default value. On the 2.0
13151         profile, use default value for public key token if not set.
13152         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13153         profile, use default value for public key if not set. On the 2.0
13154         profile, use default value for public key token if not set.
13155         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13156         default values for public key and public key token.
13157
13158 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13159
13160         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13161         field to keep it in synch with the managed object.
13162
13163         * marshal.c (emit_marshal_object): Add support for byref marshalling of
13164         delegates. Fixes #351520.
13165
13166         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13167         contains defined memory.
13168         
13169         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13170
13171         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13172         
13173         * sgen-gc.c (check_consistency): New helper function to do a consistency check
13174         of the GC data structures.
13175
13176         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13177
13178         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13179         
13180         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13181         barrier.
13182         (mono_array_clone_in_domain): Ditto.
13183         (mono_array_clone_in_domain): Ditto.
13184
13185         * threads.c (start_wrapper): Register the thread start argument as a GC root.
13186         (cache_culture): Use a write barrier.
13187
13188         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13189         (ves_icall_get_property_info): Ditto.
13190
13191         * object.h (MONO_STRUCT_SETREF): New macro.
13192
13193         * class-internals.h (MonoStats): Add some GC statistics.
13194
13195         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
13196
13197 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
13198
13199         * exception.c (mono_exception_from_name_two_strings):
13200         Break from loop after method is found.
13201
13202 2008-01-04  Dick Porter  <dick@ximian.com>
13203
13204         * process.c (process_module_string_read): Rename variable to
13205         reflect correct usage, after fixing bug 345972.
13206
13207 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
13208
13209         * verify.c (mono_type_create_fnptr_from_mono_method): 
13210         created a MonoType function pointer instance to be used during
13211         verification. The verifier releases this memory at end.
13212
13213         * verify.c (mono_method_is_constructor): extracted repeated
13214         checks for constructor into a single class.
13215
13216         * verify.c (do_push_field): use new extracted method
13217         for constructor check.
13218
13219         * verify.c (do_newobj): same.
13220
13221         * verify.c (do_ldftn): renamed to do_load_function_ptr
13222         and make it verify ldvirtftn too.
13223
13224         * verify.c (mono_method_verify: proper verification
13225         of ldvirtftn. release created MonoMethod instances.
13226
13227 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13228
13229         * verify.c (token_bounds_check): added.
13230
13231         * verify.c (do_ldftn): added.
13232
13233         * verify.c (mono_method_verify): proper verificartion of ldftn.
13234
13235 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13236
13237         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
13238         than the table row count. It's the resposibility of the caller to
13239         make the bounds check and raise the correct error.
13240
13241         * metadata.c (mono_metadata_decode_row_col): Same.
13242
13243         * loader.c (mono_get_method_from_token): perform bounds check
13244         on token for methoddef table.
13245
13246 2007-12-29  Miguel de Icaza  <miguel@novell.com>
13247
13248         * icall.c
13249         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
13250         assert into a negative result, the managed code already coped with
13251         that.
13252
13253         Some folks on Windows reported this error. 
13254
13255 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
13256
13257         * appdomain.c: Bump corlib version.
13258         * icall.c:
13259         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
13260         CultureInfo.CreateCulture to create CultureInfo for name.
13261         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
13262         create CultureInfo for name. Fixes bug #347174.
13263
13264 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13265
13266         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
13267         flags.
13268
13269         * verify.c (is_valid_branch_instruction): allow branching to the
13270         first instruction of the protected block.
13271
13272         * verify.c (is_valid_cmp_branch_instruction): same.
13273
13274         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
13275         avoid double initialization.
13276
13277         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
13278         detect which cases the eval stack should just be copied.
13279
13280         * verify.c (mono_method_verify): check if the eval stack
13281         is empty when entering a protected block.
13282
13283 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13284
13285         * verify.c: added is_clause_in_range, is_clause_inside_range,
13286         is_clause_nested and verify_clause_relationship. They perform
13287         the verifications stated in P1 12.4.2.7.
13288
13289         * verify.c (mono_method_verify): remove some unused variables,
13290         add the new exception clause checks, add instruction border
13291         checks for protected block start/end, improved some error 
13292         messages and fixed a bug in the way invalid instruction access
13293         is detected.
13294
13295 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13296
13297         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
13298         from GC 7.0 if available.
13299
13300         * object.c: Remove an unused define.
13301         
13302         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
13303
13304         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
13305
13306         * null-gc.c (mono_gc_make_descr_for_array): Implement.
13307
13308         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
13309
13310         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
13311         to take the same arguments as the other make_descr functions.
13312
13313         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
13314
13315         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
13316         directly.
13317
13318         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
13319         mini.c.
13320
13321         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
13322         call to boehm-gc.c.
13323
13324         * boehm-gc.c (mono_gc_register_root): Fix a warning.
13325
13326         * null-gc.c (mono_gc_register_root): Fix a warning.
13327
13328         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
13329
13330         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
13331         (mono_gc_base_init): Call GC_init ().
13332
13333         * null-gc.c: Define mono_gc_register_root () as a no-op.
13334
13335         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13336
13337 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
13338
13339         * verify.c: add prototype for merge_stacks at top
13340
13341         * verify.c (do_switch): added.
13342
13343         * verify.c (merge_stacks): on some cases the stack merging
13344         was not happening properly. Unequal stack sizes at merge
13345         points should be invalid.
13346
13347         * verify.c (mono_method_verify): added more debug info on stack state.
13348         verify switch properly.
13349
13350 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
13351
13352         * method-builder.h: New file, moved the mono_mb_ declarations here from 
13353         marshal.h.
13354
13355         * boehm-gc.c marshal.c: Include method-builder.h.
13356
13357         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13358
13359         * marshal.c: Remove some code which is now in method-builder.c.
13360
13361 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13362
13363         * method-builder.c: New file, extraction of the method builder functionality 
13364         from marshal.c.
13365
13366         * marshal.c: Move the mb functions into method-builder.c.
13367
13368         * marshal.h marshal.c: Export some mono_mb_... functions.
13369
13370         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13371
13372         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13373         the caller.
13374
13375         * class.c (mono_class_get_full): Check the token type in the dynamic case.
13376
13377         * loader.c (mono_field_from_token): Ditto.      
13378
13379         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13380         type as well.
13381         
13382         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13383         Fixes #342565.
13384
13385         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13386         a helper function for setting it.
13387
13388         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13389
13390         
13391         * assembly.c: Significally simplify code now that referenced assemblies are 
13392         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13393
13394         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13395         #349952.
13396
13397 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13398
13399         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13400         instructions that were target of branches or are at protected block boundaries.
13401
13402         * verify.c (in_same_block): handle filter clauses.
13403
13404         * verify.c (is_valid_branch_instruction): added. checks the target of
13405         instructions br or brtrue/false.
13406
13407         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13408         binary branch instructions such as beq and bge.
13409
13410         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13411         and made it pin the instruction as been part of the exception block.
13412
13413         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13414         of in_same_block.
13415
13416         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13417         of in_same_block.
13418
13419         * verify.c (do_ret): ret from a protected block is unverifiable and
13420         not invalid.
13421
13422         * verify.c (do_static_branch): verify br and br.s instructions.
13423
13424         * verify.c (merge_stacks): add extra param to support detection
13425         of branches in the middle of instructions.
13426         
13427         * verify.c (mono_method_verify): verify branches and exception blocks
13428         that target the middle of instructions. Proper verification of br and br.s.
13429
13430 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13431
13432         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13433         skip_visibility field.
13434         (reflection_methodbuilder_from_dynamic_method): Ditto.
13435
13436         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13437         registrations. Fixes #348193.
13438
13439         * threads.h: Move the internal mono_thread_get_pending_exception () to
13440         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13441
13442 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13443
13444         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13445         icall registration. Fixes #348193.
13446
13447         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13448         for corlib classes into object. Fixes #349621.
13449
13450 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13451
13452         * icall.c (property_accessor_nonpublic): new function to determine
13453         whether an accessor allows a property to be considered non-public.
13454         Returns false for private accessor(s) from parent class, and internal
13455         accessor(s) from parent on 2.0 profile (and higher).
13456         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13457         to determine whether property should be included if NonPublic flag
13458         is set. Fixes bug #349078.
13459
13460 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13461
13462         * verify.c (init_stack_with_value): added.
13463
13464         * verify.c (mono_method_verify): extracted common
13465         code for exception initialization into init_stack_with_value.
13466
13467         * verify.c (mono_method_verify): initialize the exception
13468         for handler clauses as well.
13469
13470         * verify.c (mono_method_verify): fix the exception clause
13471         ordering rules, it should use handler end offset and not
13472         start offset.
13473
13474 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13475
13476         * rawbuffer.c: remove useless warning.
13477
13478 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13479
13480         * threads.h, threads-types.h: move functions to the correct header
13481         (fixes bug#349952).
13482
13483 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13484
13485         * verify.c (mono_method_verify): proper verification
13486         of exception handling clauses ranges and fallthru in
13487         and out of protected blocks.
13488
13489 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13490
13491         * verify.c (mono_method_verify): fixed compilation issue.
13492
13493 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13494
13495         * verify.c (mono_method_verify): a printf slipped in, changed
13496         to use verifier debug macro.
13497
13498 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13499
13500         * verify.c (is_correct_leave): check for filter clauses.
13501
13502         * verify.c (do_filter): added.
13503
13504         * verify.c (mono_method_verify): property verification of leave.
13505
13506
13507 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13508
13509         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13510         Win32 build, until we figure out how to do the proper thing on
13511         Win32.
13512
13513 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13514
13515         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13516         by the previous patch.
13517         
13518         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13519         the assembly resolve handler for refonly assemblies.
13520
13521 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13522
13523         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13524         Make sure only one thread is allowed to commence shutdown, and
13525         don't allow new threads to be started once shutdown is in
13526         progress.
13527
13528 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13529
13530         * verify.c (is_correct_endfilter): added.
13531
13532         * verify.c (is_unverifiable_endfilter): added.
13533
13534         * verify.c (do_endfilter): added.
13535
13536         * verify.c (mono_method_verify): property verification of endfilter
13537         and fixed a corner case or endfinally.
13538
13539 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13540
13541         * verify.h: new flags to support fail fast of unverifiable code and
13542         do non-strict verification. Non-strict verification is required to
13543         have MS runtime compatibility. There are a huge amount of unverifiable
13544         code that it accepts as verifiable. The strict mode verifies the code
13545         as the specs says.
13546         Non-strict mode will be required in cases where code needs to be
13547         accepted as verifiable but fails under strict mode.
13548
13549         * pedump.c: added support to fail fast and non-strict verification.
13550
13551         * verify.c: added support for both fail fast and non-strict verification.
13552
13553 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13554
13555         * verify.c (is_correct_endfinally): added.
13556
13557         * verify.c (mono_method_verify): property verification of endfinally.
13558
13559 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13560
13561         * verify.c (in_any_block): check for filter clauses.
13562
13563         * verify.c (is_correct_rethrow): added.
13564
13565         * verify.c (mono_method_verify): property verification of rethrow.
13566
13567         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13568
13569 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13570
13571         * verify.c (do_throw): added.
13572
13573         * verify.c (mono_method_verify): property verification of throw
13574
13575 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13576
13577         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13578         assemblies. Fixes #346425.
13579
13580 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13581
13582         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13583         FieldBuilders.
13584
13585         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13586
13587         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13588         prevent asserts when this is called with a token which might not be valid.
13589
13590         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13591         lookup_dynamic_token_class with valid_token == FALSE.
13592
13593         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13594
13595         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13596
13597         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13598         
13599 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13600
13601         * gc.c: Don't delay threadpool thread finalization unless Mono is
13602         shutting down.
13603
13604 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13605
13606         * threads.c: turn an assert into a non-fatal warning.
13607
13608 2007-12-09  Robert Jordan  <robertj@gmx.net>
13609
13610         * icall.c (GetVirtualMethod): Add missing argument validation.
13611
13612 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13613
13614         * verify.c (do_cast): added.
13615
13616         * verify.c (mono_method_verify): property verification of castclass and isinst.
13617
13618
13619 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13620
13621         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
13622
13623         * verify.c (do_stelem): added.
13624
13625         * verify.c (mono_method_verify): property verification of stelem.X.
13626
13627 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13628
13629         * class.c, class-internals.h: Introduce an environment variable
13630         (MONO_GENERIC_SHARING) through which the extent of generic code
13631         sharing can be controlled (share all classes, share only corlib
13632         classes, or share nothing).
13633
13634         * object.c: Only create runtime generic context for classes for
13635         which sharing is enabled.
13636
13637 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13638
13639         * verify.c (do_ldelem): refactor it to work with ldelem.any.
13640
13641         * verify.c (mono_method_verify): property verification of ldelem.any.
13642
13643 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13644
13645         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
13646         added ldelem.X opcodes.
13647
13648         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
13649
13650         * verify.c: proper verification of ldelem.X 
13651
13652 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13653
13654         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
13655
13656 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13657
13658         * verify.c (mono_method_verify): null literal requires special handling,
13659         the value pushed on stack need to be flagged as so.
13660
13661         * verify.c (do_ldelema): Verify ldelema properly.
13662
13663 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13664
13665         * verify.c: Verify ldlen properly.
13666
13667 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
13668
13669         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
13670         to the target object's type. Fixes #346160.
13671
13672 2007-12-05  Dick Porter  <dick@ximian.com>
13673
13674         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
13675         Solaris needs the same workaround as BSD-derived systems.  Fixes
13676         bug 323524, patch by Burkhard Linke
13677         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
13678
13679 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
13680
13681         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
13682         handle to use when error dialog is shown; otherwise, update mask
13683         to show no error dialog when an error occurs.
13684
13685 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13686
13687         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
13688
13689         * class.c (mono_class_get_field_default_value): New helper function to initialize
13690         field->def_type and field->data.
13691
13692 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13693
13694         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
13695         the general one.
13696
13697         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
13698
13699         * marshal.c: Avoid depending on delegate->method_info being set.
13700
13701         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
13702         
13703         * object.c (mono_delegate_ctor): Set delegate->method.
13704
13705         * object-internals.h (struct _MonoDelegate): Add 'method' field.
13706
13707         * appdomain.c: Bump corlib version.
13708
13709 2007-11-27  Raja R Harinath  <harinath@gmail.com>
13710
13711         * metadata.c (mono_generic_inst_equal_full): Short-circuit
13712         equality check if we're comparing canonicalized MonoGenericInsts.
13713
13714 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13715
13716         * class.c (generic_array_methods): Call mono_class_setup_methods () before
13717         accessing class->methods.
13718
13719 2007-11-22  Dick Porter  <dick@ximian.com>
13720
13721         * threads.c: Ensure that the synch_cs is set before trying to use
13722         it.
13723
13724 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
13725
13726         * profiler.c: r89126 broke the statistial profiler, unbreak.
13727
13728 2007-11-22  Martin Baulig  <martin@ximian.com>
13729
13730         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
13731
13732         * mono-debug.c
13733         (mono_debug_debugger_version): Bump to 3.
13734         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
13735         -> mono_debugger_class_initialized().
13736
13737         * mono-debug-debugger.c
13738         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
13739
13740         * class.c
13741         (mono_debugger_start_class_init_func): Removed.
13742         (mono_debugger_class_loaded_methods_func): Added.
13743         (mono_class_setup_methods): Call it here.
13744
13745 2007-11-22  Martin Baulig  <martin@ximian.com>
13746
13747         * mono-debug.c
13748         (mono_debug_add_delegate_trampoline): New public method.
13749         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
13750
13751         * mono-debug.h
13752         (MonoSymbolTable): Added `global_data_table'.
13753         (MonoDebuggerTypeKind): Removed.
13754
13755 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
13756
13757         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
13758         these methods.
13759
13760         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13761         
13762 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13763
13764         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
13765
13766 2007-11-20  Martin Baulig  <martin@ximian.com>
13767
13768         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
13769
13770         * mono-debug-debugger.c
13771         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
13772         (mono_debugger_remove_breakpoint): Likewise.
13773         (mono_debugger_check_breakpoints): Likewise.
13774         (mono_debugger_register_class_init_callback): New public method.
13775         (mono_debugger_remove_class_init_callback): Likewise.
13776         (mono_debugger_add_type): Likewise.
13777
13778         * mono-debug-debugger.h
13779         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
13780
13781 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
13782
13783         * class.c: more interface implementations needed for the
13784         array enumerator (fixes bug #341112).
13785
13786 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
13787
13788         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
13789         fix ParamName of ArgumentNullExceptions.
13790
13791 2007-11-17  Miguel de Icaza  <miguel@novell.com>
13792
13793         * reflection.c (mono_reflection_encode_sighelper): Generate the
13794         modopts and modreqs.   I have a useless test that crashes monodis,
13795         but that shows the code working.
13796
13797 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
13798
13799         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
13800         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
13801
13802 2007-11-15  Dick Porter  <dick@ximian.com>
13803
13804         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
13805         When joining a thread, it's the thread that's calling Join that
13806         gets WaitSleepJoin state not the target.  Fixes the standalone
13807         test case in bug 334740, and hopefully the whole bug too.
13808
13809 2007-11-15  Dick Porter  <dick@ximian.com>
13810
13811         * process.c: Read file version info from the files pointed at by
13812         process modules, not the current process.  Fixes bug 315969.
13813
13814         Use windows typedef names in some places to fix warnings on the
13815         windows build.
13816
13817 2007-11-15  Mark Probst  <mark.probst@gmail.com>
13818
13819         * image.c, metadata-internals.h: Added a generic_class_cache hash
13820         to MonoImage for looking up generic classes when sharing generics.
13821
13822 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13823
13824         * sgen-gc.c: warning cleanups.
13825
13826 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
13827
13828         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
13829         inherited properties.
13830
13831 2007-11-14  Mark Probst  <mark.probst@gmail.com>
13832
13833         * object.c, class-internals.h: Added more information to the
13834         runtime generic context.
13835
13836 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
13837
13838         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
13839         instead of just the target method. Generalize the abstract method handling to
13840         handle any non-static method.
13841
13842         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13843         mono_marshal_get_delegate_invoke () signature change.
13844
13845 2007-11-13  Mark Probst  <mark.probst@gmail.com>
13846
13847         * class.c, class-internals.h: Made
13848         mono_type_get_basic_type_from_generic () public.  Fixed member
13849         access check for shared generics.
13850
13851         * loader.c: Don't insert field into field cache if it's part of a
13852         non-inflated generic class.
13853
13854         * domain.c, domain-internals.h: The generic sharing context is now
13855         part of the jit info data structure.  Added two accessor
13856         functions.
13857
13858 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
13859
13860         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
13861         the array Get/Set/Address methods, since the JIT inlines them.
13862
13863         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
13864
13865         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
13866         (mono_image_init): Initialize runtime_invoke_direct_cache.      
13867
13868         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13869         mono_marshal_get_delegate_invoke signature change.
13870
13871         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
13872         an additional argument. Add support for invoking abstract methods.
13873
13874         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
13875
13876         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
13877
13878 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13879
13880         * class.c: Do field layout for open generic classes as well.
13881
13882 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13883
13884         * gc.c, gc-internal.h: Don't finalize threadpool threads with
13885         other objects, because the threadpool is still around.  Put them
13886         in a list instead and after finalizing all other objects in the
13887         root domain shut down the thread pool and then finalize the
13888         threads.  Fixes bug #337383.
13889
13890         * threads.c, thread-types.h: New mono_thread_create_internal()
13891         function for marking a thread with the threadpool flag before it
13892         started.  Set synch_cs to NULL after freeing it.
13893
13894         * threadpool.c: Mark threadpool threads before they start.
13895
13896 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13897
13898         * reflection.h, reflection.c: don't export random functions
13899         and lazy load dbnull and missing objects.
13900
13901 2007-11-07  Jonathan Chambers <joncham@gmail.com>
13902
13903         * class.c: Initialize COM types if COM interfaces
13904         are present (not just COM classes).
13905         
13906         Code is contributed under MIT/X11 license.
13907
13908 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13909         * reflection.c:
13910         create_dynamic_mono_image: hook module profiler events (dynamic case).
13911         mono_image_basic_init: hook assembly profiler events (dynamic case).
13912
13913 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13914         * profiler.c:
13915         simple_appdomain_unload: completely terminate the profiler
13916         instead of only processing the statistical samples.
13917         simple_shutdown: make sure this is really called exactly once,
13918         even in multithreaded applications, and always listen to
13919         appdomain events.
13920         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
13921         here, the "[un]load" functions will do it.
13922         Fixes bugs #333791 and #325261.
13923
13924 2007-11-07  Geoff Norton  <gnorton@novell.com>
13925
13926         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
13927         rather than depend on __APPLE__.
13928
13929 2007-11-07  Mark Probst  <mark.probst@gmail.com>
13930
13931         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
13932
13933 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
13934
13935         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
13936         UTF16 MonoString. Fix the crash from bug #335488
13937
13938 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
13939
13940         * marshal.c: Correct (for non-Win32 OS) length != size in 
13941         mono_string_from_bstr. Fix #339530.
13942
13943 2007-11-06  Geoff Norton  <gnorton@novell.com>
13944
13945         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
13946         to succeed
13947
13948 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
13949
13950         * process.c: Added run-time GetProcessId API detection for Windows.
13951
13952 2007-11-04  Miguel de Icaza  <miguel@novell.com>
13953
13954         * reflection.c  (mono_param_get_objects): If a parameter has the
13955         attribute [System.Runtime.InteropServices.Optional] we should
13956         set the DefaultValue of the ParameterInfo to be
13957         System.Reflection.Missing instead of DBNull.
13958
13959         See bug #339013.
13960
13961         (mono_get_reflection_missing_object): New method,
13962         returns the System.Reflection.Missing.Value singleton instance.
13963
13964 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
13965
13966         * culture-info-table.h : regenerated.
13967
13968 2007-11-02  Jonathan Chambers <joncham@gmail.com>
13969
13970         * icall.c: Use GetEnvironmentStrings on windows
13971         so we are using the same environment block as 
13972         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
13973         #333740.
13974         
13975         Code is contributed under MIT/X11 license.
13976
13977 2007-10-31  Martin Baulig  <martin@ximian.com>
13978
13979         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
13980
13981         * mono-debug-debugger.h
13982         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
13983
13984 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
13985
13986         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
13987         classes.
13988
13989 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
13990
13991         * culture-info-table.h : regenerated.
13992
13993 2007-10-30  Robert Jordan  <robertj@gmx.net>
13994
13995         * icall-def.h, icall.c:
13996         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
13997
13998         Code is contributed under MIT/X11 license.
13999
14000 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14001
14002         * class.c (mono_class_setup_vtable): Find the inflated methods in the
14003         inflated class instead of inflating them again.
14004         
14005         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
14006         dynamic case.
14007
14008         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
14009         Call setup_supertypes () after klass->parent is set.
14010         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
14011
14012         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
14013         for inflated instances of not yet created dynamic generic classes.
14014         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
14015         times from inflated_method.
14016         (methodbuilder_to_mono_method): Ditto.
14017
14018 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14019
14020         * gc.c: code cleanup and removed old untested option of not creating the
14021         finalizer thread.
14022
14023 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14024
14025         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
14026         creating a jump trampoline for dynamic methods.
14027
14028 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
14029
14030         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
14031         generic TypeBuilders when called from another method of the same type (bug #335131).
14032
14033
14034 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
14035
14036         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
14037         doesn't seem to work perfectly.
14038         
14039         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
14040         called multiple times.
14041         (methodbuilder_to_mono_method): Ditto.
14042         (resolve_object): Inflate FieldBuilder's.
14043
14044 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14045
14046         * string-icalls.c, string-icalls.h, appdomain.c: patch from
14047         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
14048         RemoveEmptyEntries in the string.Split implementation (bug #322375).
14049
14050 2007-10-26  Dick Porter  <dick@ximian.com>
14051
14052         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
14053         Thread initialisation changes
14054
14055 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14056
14057         * verify.c: fix compatibility check between arrays and System.Array
14058
14059 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
14060
14061         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
14062         too. Fixes #336999.
14063
14064 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14065
14066         * object.c (mono_value_box): Use typed allocation here.
14067
14068 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14069
14070         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
14071         trampoline instead of compiling the method right away.
14072
14073         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
14074
14075 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
14076
14077         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
14078         related fields for dynamic classes. Fixes #334493.
14079
14080 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
14081
14082         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
14083         
14084         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
14085
14086         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
14087         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
14088
14089         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
14090
14091         * reflection.c (create_generic_typespec): Initialize klass->generic_container
14092         if needed.
14093         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14094
14095 2007-10-18  Jonathan Chambers <joncham@gmail.com>
14096
14097         * marshal.c: Use correct key when removing item
14098         from ccw_hash.
14099         
14100         Code is contributed under MIT/X11 license.
14101
14102 2007-10-17  William Holmes  <billholmes54@gmail.com>
14103
14104         *marshal.c: Adding a case to marshal booleans to U1
14105
14106         Code is contributed under MIT/X11 license.
14107
14108 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
14109
14110         * class.c (mono_class_from_name): Search the modules compromising dynamic
14111         assemblies. Fixes #331601.
14112
14113 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
14114
14115         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14116         exception if the type name contains an assembly component. Fixes #334203.
14117
14118         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14119         modules inside dynamic assemblies. Fixes #334200.
14120         
14121         * reflection.c: Set image->public_key and image->public_key_length;
14122
14123         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14124         fields.
14125
14126         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
14127         
14128 2007-10-16  Mark Probst  <mark.probst@gmail.com>
14129
14130         * metadata.c: Implemented correct comparing of generic classes.
14131         An inflated generic class can be equal to a non-inflated one if it
14132         is inflated with generic type variables as type arguments.  Fixes
14133         bug #333798.
14134
14135 2007-10-15  Dick Porter  <dick@ximian.com>
14136
14137         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14138         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
14139         81646.
14140
14141         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14142         instead of a monitor lock.  This means that monitor_try_enter and
14143         co can set the thread state safely.
14144         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14145         thread_interrupt_requested, so interrupt actually works.
14146
14147         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14148         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14149         state accessor function
14150
14151 2007-10-15  Martin Baulig  <martin@ximian.com>
14152
14153         * mono-debug.h
14154         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14155         the debugger with the current runtime.
14156
14157 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14158
14159         * object.c, object-internals.h: added the ability to set a single
14160         trampoline for all the slots in a vtable.
14161
14162 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14163
14164         * marshal.c: deal with a possible race condition during multicast
14165         delegate invocation.
14166
14167 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14168
14169         * class.c: ensure value type methods don't have the synchronized
14170         flag set.
14171
14172 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14173
14174         * string-icalls.c, string-icalls.h: reverted unapproved patch that
14175         breaks the build.
14176
14177 2007-10-11  Joel Reed  <joelwreed@comcast.com>
14178
14179         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14180         to take an options parameter so that empty entries can be removed during
14181         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14182
14183 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14184
14185         * marshal.c: make sure we don't store the signature from a dynamic
14186         method into the runtime invoke cache (bug #327189).
14187
14188 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14189
14190         * marshal.c: make sure the wrapper methods are properly initialized.
14191
14192 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14193
14194         * metadata.c, metadata-internals.h: Generalized
14195         mono_type_stack_size() to mono_type_stack_size_internal() which
14196         takes an additional argument specifying whether it allows open
14197         types.
14198
14199 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
14200
14201         * verify.c (do_invoke_method): handle typedbyref params
14202         correctly and check for unverifiable return values.
14203
14204         * verify.c (do_newobj): fix a warning.
14205
14206 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14207
14208         * verify.c: don't tread typedbyref as allways unverifable,
14209         so uses, like (ld/st)loc.0 are valid. verify for the cases
14210         that it matters, like boxing related operations.
14211
14212 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14213
14214         * verify.c: add verification of the newobj opcode. verification
14215         of delegate instantation still missing due ldftn and virldftn not
14216         pushing the function type on stack
14217
14218 2007-10-08  Mark Probst  <mark.probst@gmail.com>
14219
14220         * class-internals.h: Runtime generic context data structure
14221         definition.
14222
14223         * object.c: Initialization of runtime generic context at runtime
14224         vtable creation time.
14225
14226 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
14227         * class.c (mono_class_create_from_typedef,
14228         mono_class_from_generic_parameter, mono_ptr_class_get,
14229         mono_fnptr_class_get, mono_bounded_array_class_get)
14230         * domain.c (mono_domain_create, mono_domain_free)
14231         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
14232         * image.c (do_mono_image_load, mono_image_close):
14233         Hooked up load-unload profiler events.
14234
14235 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14236
14237         * domain.c: track statistics about the actual amount of native code
14238         allocated.
14239
14240 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14241
14242         * class.c: the valuetype enumerators don't have the additional
14243         supertypes interfaces.
14244
14245 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14246
14247         * class.c: need more interfaces setup for the IEnumerator<T>
14248         object created for arrays (tests/ienumerator-interfaces.2.cs).
14249
14250 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
14251
14252         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
14253
14254 2007-10-05  Alp Toker  <alp@atoker.com>
14255
14256         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14257         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14258         #315863.
14259
14260 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14261
14262         * verify.c (verify_type_compatibility_full): verification of
14263         compatibility improved, validates correctly non-strict checks between
14264         native int and I4 types different than (unsigned)int32.
14265
14266         * verify.c (do_store_indirect): added, do all verification of
14267         ldind.X opcodes. 
14268
14269         * verify.c (get_load_indirect_mono_type): renamed to
14270         get_indirect_op_mono_type, as it now returns the MonoType for 
14271         ldind.X and stind.X opcodes.
14272
14273 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14274
14275         * reflection.c: Fix the encoding of generic type definition for
14276         TypeBuilders.
14277
14278         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
14279         mono_image_typedef_or_ref but allows to specify if typespec lookups should
14280         be made. Typespec check is done prior to typeref cache lookup.
14281
14282         * reflection.c (mono_image_typedef_or_ref): now just delegate to
14283         mono_image_typedef_or_ref_full.
14284
14285         * reflection.c (encode_generic_class): encode the generic class
14286         directly instead of calling encode_type.
14287
14288         * reflection.c (encode_type): encode the generic type definition
14289         MonoClass as a generic instantiation.
14290
14291         * reflection.c (create_typespec): cache typespec tokens in
14292         the assembly->typespec cache. Don't create typespec for a generic
14293         instance MonoClass. Create typespec for the generic type defintion.
14294
14295         * reflection.c (create_generic_typespec): encode the generic
14296         class directly instead of calling encode_type.
14297
14298         * reflection.c (mono_image_create_token): encode the generic
14299         type definition not using a typespec for MonoType instances.
14300
14301
14302 2007-10-04  Raja R Harinath  <rharinath@novell.com>
14303
14304         Fix #328812
14305         * class.c (mono_image_init_name_cache): Don't return nested
14306         'protected internal' classes.
14307         (mono_class_from_name_case): Likewise.
14308
14309 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
14310
14311         * icall-def.h, icall.c : get_bundled_machine_config() is now the
14312           common function used by both DefaultConfig in System.dll and
14313           InternalConfigurationHost in System.Configuration.dll.
14314
14315 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14316
14317         * class.c: automatically add to vectors only a few essential explicit
14318         generic interfaces. The rest of the interfaces that arrays should
14319         provide are currently implicitly added (but still not lazily, see the
14320         design in the discussion of bug#325495 for the details of what is
14321         needed for that). Additionally, implicit interfaces are assigned the
14322         same vtable slot as the explicit interfaces (as they are compatible):
14323         this enables huge memory savings since we don't need to instantiate
14324         as many memthods and as large vtables anymore. Also, Since
14325         GetEnumerator<T> returns an instance of a type that is required to
14326         support a similarly large set of interfaces as arrays, we add
14327         implicit interfaces and interface offset sharing support to those
14328         types, too. This change adds all the required interfaces so that
14329         the anonarray.cs test case in the bug report works (we don't add
14330         all the interfaces to arrays of arrays 3-level deep and more because
14331         of the memory requirements explained in the bug and since they are much
14332         less common: the lazy-loading support will enabled them to work, too).
14333
14334 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14335
14336         * verify.c (merge_stacks): major clean up, all type compatibility
14337         checks are done by verify_type_compatibility. This fix my earlier lack
14338         of understanding of the CLR type system and merge_stacks no longer looks
14339         scary.
14340
14341         * verify.c: fixed some bad spelling.
14342
14343 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14344
14345         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14346         a given stack slock.
14347         
14348         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14349         verify_type_compatibility_full. This removed a near indentical function and fixed
14350         handling of Int32 and IntPtr across all opcodes.
14351
14352 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14353
14354         * class.c: only vectors have the additional generic interfaces.
14355
14356 2007-10-01  Jonathan Chambers <joncham@gmail.com>
14357
14358         * mono-config.c: Use g_strcasecmp instead of
14359         strcasecmp like everywhere else to fix
14360         compilation with MSVC.
14361         
14362         Code is contributed under MIT/X11 license.
14363
14364 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14365
14366         * object.c, object-internals.h: refactored the IMT code to enable
14367         building a single slot at a time and lazily creating the IMT trampolines
14368         and thunks.
14369
14370 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
14371
14372         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14373
14374         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14375         Fixes #328501.
14376         
14377 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14378
14379         * loader.c (method_from_methodspec): Rearrange to avoid
14380         un-necessary exposition.  Don't assert out if the method's
14381         declaring type is a generic type definition.
14382
14383 2007-09-28  Martin Baulig  <martin@ximian.com>
14384
14385         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14386
14387 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14388
14389         * class-internals.h: optimize field layout of MonoClass to
14390         requires less cachelines at runtime and save a few bytes on 64 bit
14391         systems.
14392
14393 2007-09-28  Jb Evain  <jbevain@novell.com>
14394
14395         * reflection.c: when encoding type names in custom attributes,
14396         if the type is a closed generic type, its generic arguments
14397         have to be serialized as AssemblyQualifiedName, so that when
14398         they are deserialized, it's possible to re-create them properly.
14399         Fixes #329450.
14400
14401
14402 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14403
14404         * object.c, class-internals.h: added delegate-creation counter.
14405
14406 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14407
14408         * class.c: cleanup of the code that synthetizes interfaces for
14409         arrays in 2.0: saves quit a bit of corlib mempool memory.
14410         Code to fix bug #325495 ifdeffed out for now until the issues
14411         with memory usage and O(n^2) behaviour are fixed.
14412
14413 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14414
14415         * marshal.c: when possible, do not duplicate the name of the methods
14416         in the method builder and in the generated MonoMethod.
14417
14418 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14419         * verify.c: added support for type checking ldind_* opcodes.
14420
14421 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14422
14423         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14424         which is used to distinguish the fully open instantiation of a TypeBuilder
14425         with the rest. This temporary hack is required to restore the property that
14426         the fully open instantiation is the same type of the generic type definition.
14427
14428         * class-internals.h (mono_generic_class_is_generic_type_definition):
14429         new function as part of the internal API.
14430
14431         * class.c (inflate_generic_type): return NULL when the generic inst is
14432         fully open. The fully open generic type is now the same as the generic type
14433         definition for non TypeBuilder types.
14434
14435         * class.c (mono_generic_class_get_class): removed assert since it is
14436         no longer valid, gklass->cached_class can point to the generic type definition.
14437
14438         * class.c (mono_generic_class_is_generic_type_definition): new.
14439
14440         * metadata.c (mono_generic_class_hash): added is_tb_open field
14441         to the hash calculation.
14442
14443         * metadata.c (free_generic_class): if the generic class is associated
14444         with the generic type definition, its field will come from the mempool and
14445         must not be freed.
14446
14447         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14448         new, this function identifies the corner case of a TypeBuilder fully open
14449         instantiation.
14450
14451         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14452         for lookup. Set gclass->cached_class to be the container class in case of
14453         the fully open instantiation of non TypeBuilder types.
14454
14455         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14456         to compare generic classes.
14457
14458         * reflection.c (method_encode_methodspec): remove assert that
14459         no longer is valid.
14460
14461         * reflection.c (mono_reflection_generic_class_initialize): add
14462         an aditional assert to ensure the proper type is used.
14463
14464 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14465
14466         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14467         to enjoy it.
14468
14469 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14470
14471         * verify.c (push_arg): Fixed support for ldarga
14472         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14473         MonoType used as first arg in case of instance calls.
14474
14475 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14476
14477         * verify.c: Support for verifying VAR and MVAR types, 
14478
14479 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14480
14481         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14482         accessors correctly.
14483
14484 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14485
14486         * threads.c: support OSX and other systems in
14487         mono_thread_get_stack_bounds (bug #328026).
14488
14489 2007-09-25  Martin Baulig  <martin@ximian.com>
14490
14491         * mono-debug.h
14492         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14493
14494 2007-09-24  Martin Baulig  <martin@ximian.com>
14495
14496         * mono-debug.h
14497         (MonoDebugClassEntry): Moved the definition of this struct into
14498         mono-debug.c to make it private.
14499
14500         * mono-debug.c
14501         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14502         type table per symbol file, we don't need to store the symfile id
14503         any longer.
14504
14505 2007-09-24  Martin Baulig  <martin@ximian.com>
14506
14507         Create one type table per symbol file, since a `MonoClass *' gets
14508         invalid when its image is unloaded.
14509
14510         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14511         (MonoDebugHandle): Added `type_table'.
14512
14513 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14514
14515         * mempool.c, mempool.h: added mono_mempool_new_size () API
14516         to be able to specify a smaller initial size for the pool.
14517         Adjusted the code to slowly increase pool size before using
14518         the previous default size.
14519         * image.c: use a small initial size for image mempools.
14520
14521 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14522
14523         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14524         Fixes ##320990.
14525
14526         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14527         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14528
14529 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14530
14531         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14532         free. Fixes #327438.
14533
14534 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14535
14536         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14537         generic instantiations, etc.
14538         <MONO_TYPE_ARRAY>: Likewise.
14539
14540 2007-09-21  Martin Baulig  <martin@ximian.com>
14541
14542         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14543         these structs were never defined.
14544         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14545
14546 2007-09-21  Martin Baulig  <martin@ximian.com>
14547
14548         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14549
14550 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14551
14552         * image.c: removed the guid hash tables: we can get the same info
14553         without the additional memory usage hit (partially fixes also bug #327052).
14554
14555 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14556
14557         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14558         event to handle unloading methods. After the event is called, the
14559         corresponding MonoMethod* must be considered invalid.
14560         * loader.c (mono_free_method): call the new mono_profiler_method_free
14561         event.
14562
14563 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14564
14565         * domain-internals.h: New flag in MonoJitInfo which marks shared
14566         generic methods.  New hash table (shared_generics_hash) in
14567         MonoDomain to keep track of shared generic methods.  Prototypes
14568         for functions to register and lookup shared generic methods.
14569
14570         * domain.c: Support for registering and looking up shared generic
14571         methods via a hash table (shared_generics_hash) in MonoDomain.
14572
14573         * class-internals.h: New exception to signal failure of shared
14574         compilation of a generic method.  New counters for generics
14575         sharing in MonoStats.
14576
14577 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14578
14579         * image.c, metadata-internals.h: don't keep a file descriptor open
14580         for loaded assemblies (bug#325988).
14581
14582 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14583
14584         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14585         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14586         use the corresponding datatypes.
14587         (type_in_image): Update to changes.
14588         (CleanForImageUserData): Simplify.
14589         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14590         Avoid quadratic behaviour in handling the "stolen" list by
14591         separating the filter predicate out, and by prepending the stolen
14592         items rather than appending them.
14593         (steal_ginst_in_image): Likewise.
14594         (mono_metadata_clean_for_image): Update to changes.
14595
14596 2007-09-19  Martin Baulig  <martin@ximian.com>
14597
14598         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14599
14600 2007-09-19  Martin Baulig  <martin@ximian.com>
14601
14602         * mono-debug.c (mono_debug_cleanup): Don't call
14603         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14604
14605 2007-09-19  Raja R Harinath  <harinath@gmail.com>
14606
14607         Fix crash on 'make run-test' in mcs/errors
14608         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
14609         Avoid more potential allocations in mono_class_from_mono_type.
14610         (ginst_in_image): Update to changes.
14611         (gclass_in_image): Rearrange slightly.
14612
14613 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14614
14615         * class.c (mono_class_init): Move the code that sets up class->methods to 
14616         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
14617
14618         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
14619         canonical instance of an inflated generic signature.
14620         (mono_type_create_from_typespec): Remove an invalid free.
14621
14622         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
14623
14624 2007-09-18  Marek Habersack  <mhabersack@novell.com>
14625
14626         * domain-internals.h: added a declaration of the
14627         mono_assembly_load_full_nosearch internal function.
14628
14629         * assembly.c (mono_assembly_load_with_partial_name): use
14630         mono_try_assembly_resolve return value properly.
14631         (mono_assembly_load_full_nosearch): copied the function body from
14632         mono_assembly_load_full, without the code to invoke assembly
14633         search hooks.
14634         (mono_assembly_load_full): calls the above new function and if the
14635         assembly is not resolved, invokes the search hooks.
14636
14637         * appdomain.c (mono_runtime_init): restore the global postload
14638         assembly search handlers.
14639
14640 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14641
14642         * class.c (mono_class_init): Make sure class->methods and class->properties
14643         are never NULL in the generics case.
14644
14645         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
14646
14647 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14648
14649         * metadata.c (free_generic_class): Disable some code to fix the build.
14650
14651         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
14652
14653         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
14654         from the image mempool.
14655
14656         * metadata.c (free_generic_class): Free more data from the inflated class.
14657
14658         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
14659
14660         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
14661         mempool.
14662         (mono_type_create_from_typespec): Ditto.
14663
14664         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
14665         MonoImage to the caller.
14666         (mono_init_internal): Save the opened image in a global variable.
14667         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
14668
14669         * reflection.c (resolve_object): Fix a leak.
14670
14671         * metadata.c: Fix the freeing of data in the generics caches.
14672         
14673         * metadata.c (free_generic_inst): Comment this out to fix the build.
14674         (free_generic_class): Ditto.
14675
14676         * metadata.c: Free cached generic methods, instantinations and classes when
14677         they are removed from the caches.
14678         (mono_metadata_free_type): Free the type itself.
14679
14680         * class.c: Free the result of mono_class_inflate_generic_type () in a few
14681         places.
14682
14683 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14684
14685         * boehm-gc.c: restrict managed allocs to __thread supporting
14686         architectures.
14687
14688 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
14689
14690         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
14691         (mono_generic_class_get_class): Fix a leak.
14692
14693         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
14694         mono_metadata_free_type ().
14695         (mono_metadata_inflate_generic_inst): Fix a leak.
14696
14697 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14698
14699         * mono-debug.c (free_header_data): Fix a leak missed earlier.
14700
14701         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
14702         mempool.
14703
14704         * mono-debug.c (mono_debug_close_image): Fix call to 
14705         g_hash_table_remove ().
14706
14707 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14708
14709         * icall-def.h: redirect all the string ctor to the managed
14710         CreateString () methods.
14711         * string-icalls.c, string-icalls.h: removed dead code for string
14712         ctors and icalls.
14713
14714 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14715
14716         * mono-debug.c: Fix memory leaks.
14717
14718 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14719
14720         * threads-types.h: Implement mono_hazard_pointer_set and 
14721         mono_hazard_pointer_clear macros using do/while(0) to fix
14722         compilation with MSVC.
14723         
14724         Code is contributed under MIT/X11 license.
14725
14726 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14727
14728         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
14729         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
14730
14731 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14732
14733         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
14734         icalls.
14735
14736 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14737
14738         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
14739         managed-code allocated as well.
14740
14741 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14742
14743         * class.c (mono_class_is_assignable_from): Add support for generic variance.
14744
14745 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14746
14747         * boehm-gc.c: fixed the build after the AOT changes.
14748
14749 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14750
14751         * wrapper-types.h: Add an ALLOC wrapper type.
14752
14753         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
14754         reference managed allocator methods.
14755
14756 2007-09-12  Marek Safar  <marek.safar@gmail.com>
14757
14758         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
14759         of Type array and not MonoType, a fix suggested by Hari.
14760         
14761 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14762
14763         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
14764         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
14765         
14766         Code is contributed under MIT/X11 license.
14767
14768 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14769
14770         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
14771
14772 2007-09-12  Marek Habersack  <mhabersack@novell.com>
14773
14774         * image.c (do_mono_image_open): if assembly file fails to open and
14775         MONO_IOMAP is in effect, try to find the path in a
14776         case-insensitive way.
14777
14778         * appdomain.c (mono_runtime_init): do not install postload hooks -
14779         tests show that MS.NET doesn't use anything of that sort to
14780         trigger the AppDomain.AssemblyResolve event.
14781         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
14782         made non-static.
14783         (mono_runtime_init): init portability helpers here.
14784
14785         * assembly.c (mono_assembly_load_with_partial_name): if other   
14786         attempts fail, trigger the AppDomain.AssemblyResolve event handler
14787         to resolve the assembly.
14788
14789         * domain-internals.h: added mono_try_assembly_resolve and marked
14790         it as internal.
14791
14792 2007-09-11  Jb Evain  <jbevain@novell.com>
14793
14794         * object-internals.h (MonoReflectionDynamicMethod): add
14795         a `MonoReflectionType *owner` field. The owner is used
14796         * reflection.c:
14797         (mono_reflection_create_dynamic_method): use the owner of the dynamic
14798         method as the class declaring the dynamic method.
14799         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
14800         dynamic method to the declaring type of the methodbuilder.
14801
14802 2007-09-11  Mark Probst  <mark.probst@gmail.com>
14803
14804         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
14805         rules for calling methods via reflection.
14806
14807 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
14808
14809         * reflection.c (resolve_object): Add support for MonoGenericClass. 
14810         Inflate MonoType's.
14811
14812 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
14813
14814         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
14815         provide a managed method that does fast allocations without needing
14816         a managed->unmanaged transition. Boehm GC implementation currently
14817         enabled for ptrfree objects on sane architectures.
14818
14819 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14820
14821         * marshal.c, marshal.h: exported a couple of useful functions and
14822         added mono_mb_get_label () to easily handle backward branches.
14823
14824 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
14825
14826         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
14827
14828 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14829
14830         * loader.c (find_method): Fixed the regression introduced while
14831         fixing bug #81466.
14832
14833 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
14834
14835         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
14836         well.
14837         
14838         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
14839         icall.c reflection.c: Pass a MonoGenericContext argument to 
14840         mono_lookup_dynamic_token ().
14841
14842         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
14843         #82744.
14844         
14845 2007-09-09  Robert Jordan  <robertj@gmx.net>
14846
14847         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
14848         for generic methods.
14849
14850         * object.c (mono_object_get_virtual_method): Handle generic methods.
14851         Fixes bug #78882.
14852
14853         Code is contributed under MIT/X11 license.
14854
14855 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14856
14857         * image.c: fix locking in mono_image_load_file_for_image ().
14858
14859 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
14860
14861         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
14862         used only as a cache: added an icall to fill it.
14863
14864 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
14865
14866         * reflection.h: exposed mono_reflection_free_type_info
14867         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
14868         since mono_reflection_bind_generic_parameters makes a copy of it.
14869         * reflection.c (free_type_info): subinfos should be freed.
14870         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
14871         made non static.
14872         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
14873         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
14874         this fixes #82695 and #81726.
14875    
14876
14877 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
14878
14879         * process.h, process.c:  added support for user profile/info in
14880           ProcessStartInfo. For now only Windows works.
14881
14882 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14883
14884         * metadata.c: consider the generic arguments when comparing
14885         signatures (bug #82614).
14886
14887 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14888
14889         * cil-coff.h, image.c: updated assembly loader to cope with the
14890         PE32+ 64 bit file format.
14891
14892 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14893
14894         * assembly.c, class.c, domain.c, loader.c: remove useless
14895         inclusion of cil-coff.h.
14896
14897 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
14898
14899         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
14900         if interface is marked with CoClassAttribute. 
14901    
14902         Code is contributed under MIT/X11 license.
14903
14904 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14905
14906         * sgen-gc.c: ensure no object from the to space is copied again or finalized
14907         if it's seen twice in major collections.
14908
14909 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14910
14911         * sgen-gc.c: big objects are not copied to the gray area, but they
14912         need to be considered for scanning, too, if they are brought alive
14913         by an object ready for finalizations or a survived one.
14914
14915 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14916
14917         * sgen-gc.c: properly account the number of disappearing links when
14918         they are nullified.
14919
14920 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14921
14922         * sgen-gc.c: share the code to scan the registered roots between the
14923         different types of collections.
14924
14925 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14926
14927         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
14928
14929 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14930
14931         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
14932         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
14933
14934 2007-08-28  Mark Probst  <mark.probst@gmail.com>
14935
14936         * security-manager.c (mono_security_manager_get_methods):
14937         LinkDemandSecurityException now has 2 arguments instead of 3.
14938
14939 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
14940
14941         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
14942         platforms which need it.
14943
14944 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14945
14946         * sgen-gc.c: unregister thread data structures with a pthread_key_t
14947         dtor.
14948
14949 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14950
14951         * threads.c: free the thread static data on thread exit.
14952
14953 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
14954
14955         * class.c: walk the hierarchy to find the generic definition for
14956         a class (fixes runtime part of bug #82498).
14957
14958 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14959
14960         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
14961         ...
14962
14963         * image.c (mono_image_close): Here. Hopefully fixes #82510.
14964
14965 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14966
14967         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
14968
14969 2007-08-24  Robert Jordan  <robertj@gmx.net>
14970
14971         * appdomain.c: don't perform the ':'->';' substitution on Win32.
14972
14973 2007-08-24  Jb Evain  <jbevain@novell.com>
14974
14975         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
14976         for byref types.
14977
14978 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14979
14980         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
14981         #82286.
14982
14983 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14984
14985         * assembly.c: Fix a warning.
14986         
14987 2007-08-23  Marek Habersack  <mhabersack@novell.com>
14988
14989         * appdomain.c: parse the <runtime> section looking for the probing
14990         element with the 'privatePath' attribute, which sets additional
14991         directories in which the runtime should look for assemblies.
14992
14993 2007-08-23  Robert Jordan  <robertj@gmx.net>
14994
14995         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
14996         Fixes #82499.
14997
14998 2007-08-23  Martin Baulig  <martin@ximian.com>
14999
15000         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
15001         _mono_debug_init_corlib() and remove it from the header file.
15002
15003 2007-08-23  Martin Baulig  <martin@ximian.com>
15004
15005         * mono-debug-debugger.c
15006         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
15007         don't notify the debugger about it.
15008
15009         * mono-debug-debugger.h
15010         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
15011
15012 2007-08-23  Robert Jordan  <robertj@gmx.net>
15013
15014         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
15015         Code is contributed under MIT/X11 license.
15016
15017 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15018
15019         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
15020
15021 2007-08-22  Martin Baulig  <martin@ximian.com>
15022
15023         * mono-debug.c: Store debugging info on a per-domain basis and
15024         free it on domain unload.  Add support for unloading symbol files.
15025
15026         * mono-debug.h
15027         (MonoDebugList): New typedef.
15028         (MonoSymbolTable):
15029         - add `data_tables and `type_table'.
15030         - replace 'symbol_files' and `num_symbol_files' with a
15031           `MonoDebugList *'.
15032         (mono_debug_data_table): Removed.
15033         (mono_debug_list_add): New public function.
15034         (mono_debug_list_remove): New public function.
15035         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
15036         (mono_debug_init_2_memory): Renamed into
15037         mono_debug_open_image_from_memory().
15038         (mono_debug_close_image): New public function.
15039         (mono_debug_domain_create): Likewise.
15040         (mono_debug_domain_unload): Likewise.
15041         (MONO_DEBUGGER_VERSION): Bump to 60.
15042
15043         * mono-debug-debugger.h
15044         (MonoDebuggerEvent):
15045         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
15046         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
15047         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
15048         - rename `THREAD_CREATED' and `THREAD_EXITED' into
15049           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
15050         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
15051           meaning.
15052         (mono_debugger_add_symbol_file): Removed.
15053         (mono_debugger_add_type): Removed.
15054         (mono_debugger_lookup_type): Removed.
15055         (mono_debugger_lookup_assembly): Removed.
15056
15057         * domain.c
15058         (mono_domain_create): Call mono_debug_domain_create().
15059         (mono_init_internal): Call mono_debug_init_corlib().
15060
15061         * assembly.c
15062         (mono_assembly_close): Call mono_debug_close_image().
15063
15064 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15065
15066         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
15067         mmap call.
15068
15069 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15070
15071         * sgen-gc.c: ensure section->pin_queue_end is initialized
15072         correctly when non pinning objects in the section have been found.
15073
15074 2007-08-22  Marek Habersack  <mhabersack@novell.com>
15075
15076         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
15077         containing a list of directories separated by ':'. MSDN docs say
15078         the directories should be separated with ';'. Part of a bugfix for
15079         bug #81446
15080
15081 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
15082
15083         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
15084         it should MonoType and not MonoClass.
15085
15086 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
15087
15088         * culture-info-table.h : regenerated.
15089
15090 2007-08-20  William Holmes  <billholmes54@gmail.com>
15091
15092         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15093          to call ReplaceFile Kernel32 on windows or in io-layer.
15094         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15095         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15096          as an internal call.
15097
15098         Code is contributed under MIT/X11 license.
15099
15100 2007-08-20  Jb Evain  <jbevain@novell.com>
15101
15102         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15103         and MONO_EXCEPTION_FIELD_ACCESS.
15104
15105         * debug-helpers.[c|h]: new mono_field_full_name function.
15106
15107 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15108
15109         * class.c: Removed class_security_level() and moved it to
15110         security-core-clr.c.
15111
15112         * security-core-clr.c, security-core-clr.h: class_security_level()
15113         is now public and renamed to mono_security_core_clr_class_level().
15114         It also looks for security attributes in the classes a class is
15115         nested in.
15116
15117 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15118
15119         * security-core-clr.c, security-core-clr.h: CoreCLR security
15120         utility functions.
15121
15122         * Makefile.am: Added security-core-clr.[ch].
15123
15124         * security-manager.c, security-manager.h: Functions and enum for
15125         setting and getting the security mode.
15126
15127         * class.c: CoreCLR security checks.
15128
15129 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15130
15131         * icall-def.h, process.c, process.h: implemented icall to get
15132         user/system processor times.
15133
15134 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15135
15136         * domain.c, threads.c, class-internals.h, domain-internals.h: New
15137         reader-lock-free jit_info_table.
15138
15139 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
15140
15141         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15142
15143         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
15144
15145         * object-internals.h (MonoException): Add missing _data member.
15146
15147 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15148
15149         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15150         checking that only methods with matching qname or fqname are picked
15151         from implemented interfaces.
15152
15153 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15154
15155         * verify.c (do_newarr):added, do type verification of
15156         newarr ops, push the right value on the eval stack.
15157         * verify.c (mono_method_verify): use do_newarr
15158
15159
15160 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15161
15162         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15163         factored the common code into get_boxable_mono_type, which
15164         is now using mono_type_get_full, this fixed byref related tests.
15165
15166 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15167
15168         * class.c: added mono_type_get_full, this function has the same
15169         behavior of mono_class_get_full but the returned MonoType has
15170         all metadata of the associated token in case of a typespec token.
15171         * class.c: added mono_type_retrieve_from_typespec, used by 
15172         mono_type_get_full to retrieve the token type.
15173         * class.c (mono_class_create_from_typespec): changed to use
15174         mono_type_retrieve_from_typespec.
15175         * class.c (mono_ldtoken): changed to use mono_type_get_full
15176         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15177         * class-internals.h: exported mono_type_get_full for internal use.
15178
15179 2007-08-16  Jb Evain  <jbevain@novell.com>
15180
15181         * domain.c (supported_runtimes): add entry for
15182         the 'moonlight' runtime version.
15183
15184 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15185
15186         * verify.c (mono_method_verify): small typo sliped in.  
15187
15188 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15189
15190         * verify.c (do_unbox_value): added, do type verification of
15191         unboxing ops
15192         * verify.c (mono_method_verify): use do_unbox_value
15193
15194
15195 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15196
15197         * verify.c (dump_stack_value): fixed typo, was printing string
15198         instead of object on stack.
15199         * verify.c (do_box_value): moved the byref check up as it leads
15200         to invalid code and should be done earlier.
15201         * verify.c: improved error messages for and ldobj
15202
15203 2007-08-15  William Holmes  <billholmes54@gmail.com>
15204
15205         * marshal.c (emit_marshal_custom): Omit the call to 
15206           marshal_native_to_managed when calling native to managed 
15207           and the argument is specified as an out argument.
15208
15209         Code is contributed under MIT/X11 license.
15210
15211 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15212
15213         * verify.c: fixed the type checks for generics, function pointers and vectors.
15214         Added type verification for ldobj and ldtoken. The verifier
15215         would segfault if header or signature of a method contained references
15216         to non-existant types.
15217
15218 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15219
15220         * marshal.c (cominterop_get_ccw): Patch from
15221         Bill Holmes to no walk up interface hierarchy. 
15222         All parent methods should be present in the interface for COM.
15223    
15224         Code is contributed under MIT/X11 license.
15225
15226 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15227
15228         * marshal.c (emit_marshal_com_interface): Patch from
15229         Bill Holmes to handle COM Interfaces as return values
15230         for native->managed calls.
15231    
15232         Code is contributed under MIT/X11 license.
15233
15234 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
15235
15236         * marshal.c (cominterop_get_idispatch_for_object): Implement
15237         for runtime callable wrappers.
15238    
15239         Code is contributed under MIT/X11 license.
15240
15241 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
15242
15243         * pedump.c (main): changed from mono_init to mono_init_from_assembly
15244         so 2.0 types are accessible
15245
15246
15247 2007-08-13  Miguel de Icaza  <miguel@novell.com>
15248
15249         * domain.c (mono_init_internal): Call mono_assembly_load_friends
15250         once we load mscorlib.   Due to the order in which we initialize,
15251         the mono_assembly_load_full routine that loads mscorlib did not
15252         load friends.   We now load it once we load the
15253         mono_defaults.internals_visible_class class. 
15254
15255         * assembly.c: Expose the mono_load_friend_assemblies method.
15256
15257 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
15258
15259         * verify.c: improved the handling of boxing, better
15260         type checking for unary ops and conversion. Fix bug
15261         regarding managed pointer compatibility checking
15262
15263 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
15264
15265         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
15266
15267         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
15268
15269 2007-08-09  Raja R Harinath  <rharinath@novell.com>
15270
15271         * reflection.c (dup_type): Remove.
15272         * class.c (dup_type): Remove.
15273         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
15274         instead of the dodgy 'dup_type'.
15275         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
15276         handle the case where 'dup_type' needed the second argument.
15277
15278 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
15279
15280         * domain.c: Fix a warning.
15281
15282 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15283
15284         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
15285         checking that methods with the same fqname are not overridden
15286         with a method from an ancestor.
15287
15288 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
15289
15290         * threads.c (free_thread_static_data_helper): Avoid a crash if
15291         thread->static_data is not yet set.
15292
15293 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
15294
15295         * marshal.c: Use correct image when emitting
15296         native wrapper for COM calls.
15297    
15298         Code is contributed under MIT/X11 license.
15299
15300 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
15301
15302         * icall-def.h, security.c, security.h :
15303           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
15304
15305 2007-08-07  Martin Baulig  <martin@ximian.com>
15306
15307         * mono-debug-debugger.h
15308         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
15309
15310         * domain.c (mono_domain_free): Call
15311         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
15312
15313 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
15314
15315         * verify.c (check_underflow, check_overflow): error message now returns IL offset
15316         * verify.c (in_same_block): code should test if either offset is inside the clauses
15317         * verify.c (mono_method_verify): push the exception into the eval stack of exception
15318         and filter blocks
15319
15320 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15321
15322         * image.c (mono_image_close): Fix a leak.
15323
15324         * object.c (mono_runtime_invoke_array): Avoid using alloca.
15325
15326         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
15327
15328 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15329
15330         * domain.c, threads.c, threads-types.h: fix memory retention issue
15331         with thread static variables not being cleared on domain unload.
15332         Reuse thread static slots after domain unload.
15333
15334 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15335
15336         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15337         nullable type.
15338
15339         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15340         now done in mono_runtime_invoke_array.
15341
15342         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
15343         receiver is a nullable type.
15344
15345         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
15346         generic parameter.
15347
15348 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
15349
15350         * marshal.c: Implement COM Objects as return type for 
15351         managed->unmanaged calls. Added Release calls for COM Object
15352         out/return values in managed->unmanaged calls.
15353
15354         Code is contributed under MIT/X11 license.
15355
15356 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15357
15358         * threads.h, threads-type.h: move the hazard pointer declarations
15359         to the private header.
15360
15361 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15362
15363         * file-io.c, appdomain.c: memory leak fixes.
15364
15365 2007-08-02  Dick Porter  <dick@ximian.com>
15366
15367         * socket-io.c
15368         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15369         SO_REUSEADDR setting into io-layer/sockets.c.
15370
15371 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15372
15373         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15374         from Object when called on a generic parameter. Fixes #82211.
15375
15376 2007-08-01  Dick Porter  <dick@ximian.com>
15377
15378         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15379         Fixes bug 79250 yet again.
15380
15381 2007-07-30  Martin Baulig  <martin@ximian.com>
15382
15383         Merged the `debugger-dublin' branch.
15384
15385         * mono-debug.h
15386         (MonoDebugDataTable): New typedef.
15387         (MonoDebugMethodAddressList): New typedef.
15388         (MonoDebugWrapperData): Removed.
15389         (MonoDebugSymbolTable): Removed `current_data_table',
15390         `current_data_table_size', `current_data_table_offset'.
15391         (MonoDebugDataItemType): Moved into mono-debug.c.
15392         (MonoDebugMethodJitInfo): Remove `address'.
15393         (mono_debug_data_table): New global variable.
15394         (mono_debug_lookup_method_addresses): New public function.
15395         (mono_debug_find_method): Take a `MonoMethod *', not a
15396         `MonoDebugMethodInfo *'.
15397
15398         * mono-debug.c: Drop support for the old symbol tables.
15399
15400 2007-06-28  Martin Baulig  <martin@ximian.com>
15401
15402         * mono-debug.c (mono_debug_debugger_version): New public variable.
15403
15404 2007-07-31  William Holmes  <billholmes54@gmail.com>
15405
15406         * metadata.c Changed mono_type_create_from_typespec to not insert
15407           the type into the hash map until after
15408           do_mono_metadata_parse_type has completed.
15409         Fixes Bug #82194
15410         Code is contributed under MIT/X11 license.
15411
15412 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15413
15414         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15415         generic parameter. Fixes #82211.
15416
15417 2007-07-27  Jb Evain  <jbevain@novell.com>
15418
15419         * pedump.c (dump_metadata, dump_metadata_header): dump
15420         versions contained in the metadata header.
15421
15422 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15423
15424         * threads.c: register small_id_table with the GC.
15425
15426 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15427
15428         * threads.c, threads.h, class-internals.h, object-internals.h:
15429         Hazard pointers, to be used by lock-free parallel algorithms.
15430
15431 2007-07-26  Dick Porter  <dick@ximian.com>
15432
15433         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15434         routine on non-windows platforms, as I've not managed to think of
15435         a non-kludgy way of doing this.  Finishes off bug 78739.
15436
15437 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15438
15439         * object.c: properly setup interface_bitmap in proxy vtables.
15440
15441 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15442
15443         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15444         to create unique shadow copy target directories, use the domain's
15445         serial number instead. Each domain gets a unique target directory
15446         that way.
15447
15448         * domain.c (mono_domain_create): added code to increment domain
15449         shadow copy serial number and cache the value in the current
15450         domain structure.
15451
15452         * domain-internals.h (struct _MonoDomain): added a new field -
15453         shadow_serial to hold the serial number used in generation of
15454         shadow-copy directories. This is to make sure that the directory
15455         name is unique for each and every domain created. We avoid a race
15456         condition with overriding assemblies already in use by other app
15457         domains.
15458
15459 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15460
15461         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15462         binding generic parameters.
15463
15464 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15465
15466         * metadata.c (do_mono_metadata_parse_generic_class): Use
15467         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15468         error.
15469
15470 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15471
15472         * loader.c, class-internals.h, reflection.c: removed the per-method
15473         generics hashtable: we use the global one through the call of
15474         mono_class_inflate_generic_method ().
15475
15476 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15477
15478         * class.c, metadata.c, class-internals.h: introduce yet another
15479         generics global cache for inflated methods (fixes 98% of the perf
15480         issue in bug #81806).
15481
15482 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15483
15484         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15485         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15486         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15487         return a MonoGenericInst containing (a copy) of those types.
15488         (mono_metadata_inflate_generic_inst): Update to changes.
15489         (mono_metadata_parse_generic_inst): Likewise.
15490         (mono_get_shared_generic_inst): Likewise.
15491         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15492         (mono_reflection_bind_generic_method_parameters): Likewise.
15493         * metadata-internals.h: Likewise.
15494         * icall.c (free_generic_context): Kill.
15495         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15496
15497         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15498         mono_metadata_type_dup.
15499         * marshal.c (mono_mb_create_method): Likewise.
15500
15501         * metadata.c (mono_metadata_type_dup): Rename from
15502         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15503         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15504         * marshal.c, metadata-internals.h: Update to changes.
15505
15506 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15507
15508         * class.c: fixed a small leak for array classes and removed warning.
15509
15510 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15511
15512         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15513         Return 0x8000000 for return parameters. Fixes #82161.
15514
15515 2007-07-21  Marek Habersack  <grendello@gmail.com>
15516
15517         * appdomain.c (get_shadow_assembly_location): append the current
15518         ticks value to the path. Avoids overwriting the same assemblies by
15519         several threads at the same time.
15520
15521 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15522         and Raja R Harinath  <rharinath@novell.com>
15523
15524         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15525         Simplify slightly.
15526         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15527         property for testing if a method is a generic method definition.
15528
15529 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15530
15531         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15532
15533 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15534
15535         * verify.c: used function from private branch, reverted to the one in class.h 
15536
15537 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15538
15539         * verify.c: a typo slipped in and the code wont compile
15540
15541 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15542
15543         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15544         disabled box instruction as it is doing the wrong thing
15545         improved stack dump messages, now it is easier to debug type related issues
15546
15547
15548 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15549
15550         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15551
15552 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15553
15554         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15555         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15556         grouped with class and valuetype. This change will simply 
15557         the code as it should be handled just like unmanaged pointers.
15558
15559 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15560
15561         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15562
15563 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15564
15565         * verify.c: several stack merge issues fixed, reference comparisons now
15566         check the type size. strict type check now works correctly.
15567         added more uses of IS_MANAGED_POINTER macro.
15568         fixed issues pointed by running the test suite against .net.
15569         
15570
15571 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15572
15573         * class.c, loader.c, class-internals.h: Removed the
15574         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15575         defines.
15576
15577         * icall.c: Better error checking in some internal reflection
15578         methods.
15579
15580 2007-07-18  William Holmes  <billholmes54@gmail.com>
15581
15582         * filewatcher.c : removed unused variable 'filename' in 
15583           ves_icall_System_IO_FSW_SupportsFSW
15584
15585 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15586
15587         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15588         obsolete, removed.
15589
15590 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15591
15592         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15593         
15594         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15595
15596 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15597
15598         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15599         Implement generics support.
15600         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15601
15602         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15603         type_args and method_args arguments.
15604         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15605         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15606         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15607
15608 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
15609
15610         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
15611           It adds a rootimage parameter to mono_reflection_get_type_internal,
15612           adds new function mono_reflection_get_type_with_rootimage and use
15613           the rootimage to resolve the types instead of the current image
15614
15615 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15616
15617         * culture-info-table.h: Forgot to update after r78304.
15618
15619 2007-07-13  Raja R Harinath  <rharinath@novell.com>
15620
15621         * class.c (mono_class_is_open_constructed_type)
15622         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
15623
15624 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
15625
15626         * class.c (mono_bounded_array_class_get):  method fails if used with
15627         an incomplete TypeBuilder enum (no basetype field), fixed it by 
15628         avoiding calculating the size for such array as it cannot be instantiated.
15629         Fix bug #82015
15630
15631 2007-07-12  Raja R Harinath  <rharinath@novell.com>
15632
15633         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
15634         field.
15635         * metadata.c, reflection.c: Update to changes.
15636
15637 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
15638
15639         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
15640         mono_class_is_valid_enum, they are used to valide a enum when loading.
15641         * reflection.c: used new functions to throw TypeLoadException when and
15642         invalid enum is build with TypeBuilder. Fixes #82018
15643   
15644 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15645
15646         * object.c: forgot commit of mono_class_setup_methods () to access
15647         iface->methods.
15648         * object-internals.h: added a few more handy fields to
15649         MonoIMTCheckItem.
15650
15651 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15652
15653         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
15654         iface->methods.
15655
15656 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15657
15658         * class-internals.h, object-internals.h, object.c: IMT-based
15659         interface invocation core from Massimiliano Mantione
15660         (massi@ximian.com) with a reworked arch-specific interface,
15661         bsearch implementation and a few bugfixes and memory savings by me.
15662
15663 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
15664
15665         * class.c (mono_class_create_from_typedef): mono would segfault if 
15666         an enum did not have a __value field. It now throws a TypeLoadException
15667         for such cases. Fix bug #82022
15668
15669 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15670
15671         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
15672
15673 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15674
15675         * class.c (mono_class_init): If a class is already inited but has
15676         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
15677
15678 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15679
15680         * class.c: Properly handle the case of an unimplemented interface
15681         method.  Fixes: 81673.
15682
15683 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15684
15685         * class-internals.h, object.c: cleanup patch from massi: use
15686         MonoVTable->interface_bitmap since the vtable interfaces offset array
15687         is going away.
15688
15689 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15690
15691         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
15692         GetMDStreamVersion icall instead.
15693
15694 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
15695
15696         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
15697         not use mono_dl_build_path() with a full library name: makes
15698         fallbacks to libgaim and libfam work.
15699
15700 2007-07-06  William Holmes  <billholmes54@gmail.com>
15701
15702         * assembly.c: Added a continue statement in probe_for_partial_name when
15703          parse_assembly_directory_name fails.  Fixes : 82002
15704
15705 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
15706
15707         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
15708         and added a verification  for TYPEDBYREF.
15709         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
15710         make native int interchangeable with int32 and some small cleanup and formating.
15711         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
15712         handle byref of byref.
15713         * verify.c (push_local): handle byref of byref.
15714         * verify.c (do_binop): invalid mix of values is unverifiable
15715         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
15716         added visibility checks
15717         * verify.c (field related method): added visibility checks
15718         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
15719
15720 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
15721
15722         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
15723         string.
15724
15725 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15726
15727         * profiler.c (mono_profiler_load): Fix an off-by-one error.
15728
15729         * marshal.c (emit_marshal_string): When returning a string from managed code,
15730         allways make a copy even for unicode strings. Fixes #81990.
15731
15732 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
15733
15734         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
15735         of byref generic inst types (bug #81997).
15736
15737 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
15738
15739         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
15740         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
15741
15742 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
15743
15744         * marshal.c (emit_marshal_string): Add support for unicode strings in
15745         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
15746
15747 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
15748
15749         * verify.c: field load/store are now verified, missing only access checks now
15750
15751 2007-06-28  Martin Baulig  <martin@ximian.com>
15752
15753         * mono-debug.c (mono_debug_debugger_version): New public variable.
15754
15755 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
15756
15757         * locales.c: When constructing DateTimeFormat or NumberFormat for
15758         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
15759         MonoCultureInfo contructed from the current locale is always
15760         read-only and has UseUserOverride set to true. All MonoCultureInfo
15761         instances returned for GetCultures have both IsReadOnly and
15762         UseUserOverride set to true. Fixes part of bug #81930.
15763
15764 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
15765
15766        * icall-def.h: Update System.__ComObject icalls
15767        * marshal.c: Avoid managed transition (and object creation)
15768        when looking up COM interface in RCW.
15769        * marshal.h: Ditto.
15770        
15771        Code is contributed under MIT/X11 license.
15772
15773 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
15774
15775         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
15776         to avoid crashes during assembly unloading.
15777
15778 2007-06-22  Raja R Harinath  <rharinath@novell.com>
15779
15780         Fix MethodInfo.IsGenericMethodDefinition
15781         * reflection.c (mono_reflection_bind_generic_method_parameters):
15782         Rearrange code to ensure we always uses a generic method definition.
15783         * class.c (mono_class_inflate_generic_method_full): Set
15784         'generic_container' field only for generic method definitions.
15785         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15786         Use presense of 'generic_container' field as indication of being a
15787         generic method definition.
15788
15789 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
15790
15791         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15792
15793         * object-internals.h: Reflect changes in the layout of the managed Delegate
15794         class.
15795         
15796         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
15797         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
15798         runtime memory used by the dynamic method. Fixes #77146.
15799
15800 2007-06-21  Dick Porter  <dick@ximian.com>
15801
15802         * file-io.h: 
15803         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
15804         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
15805         81767.
15806
15807 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15808
15809         * reflection.c (method_encode_methodspec): Add a tripwire.
15810         * class.c (inflate_generic_type): The fully open generic type is
15811         not the same as the generic type definition.
15812
15813 2007-06-21  Martin Baulig  <martin@ximian.com>
15814
15815         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
15816
15817         * mono-debug-debugger.h
15818         (MonoDebuggerBreakpointInfo): Removed.
15819         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
15820         (mono_debugger_remove_breakpoint): Likewise.
15821         (mono_debugger_breakpoint_callback): Likewise.
15822         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
15823
15824 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15825
15826         * metadata.c (mono_metadata_lookup_generic_class): The fully open
15827         generic type is not the same as the generic type definition.
15828         * class.c (mono_generic_class_get_class): Likewise.
15829
15830 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
15831
15832         * icall.c: The second argument to 
15833         System.Reflection.MethodBase.GetMethodFromHandleInternalType
15834         is a MonoType not a MonoClass.
15835
15836 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15837
15838         * verify.c: support for function pointers in the verifier
15839
15840 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15841
15842         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
15843
15844 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
15845
15846         * assembly.c: removed Mono.Data.SqliteClient from the list of
15847         forward-compatible assemblies as it breaks the ABI (bug #81899).
15848
15849 2007-06-19  Raja R Harinath  <rharinath@novell.com>
15850
15851         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
15852         lookup/update with the loader lock.
15853         * reflection.c (mono_class_bind_generic_parameters): No need to
15854         protect mono_metadata_lookup_* with the loader lock.
15855         * class.c (inflate_generic_type): Likewise.
15856         
15857         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
15858         on a generic instantiated type.
15859
15860 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
15861
15862         *verify.c: produce meanfull error messages on verification error
15863         *verify.c: fixed some cases of verification errors reported as validation errors
15864         *pedump.c: fixed the error name array, now it shows validation errors properly
15865         *verify.h: fixed the contant that should be used for verification errors
15866
15867 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
15868
15869         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
15870         for bug #77596, 81858 and 80743 (generics data structures on domain
15871         unload).
15872
15873 2007-06-15  Raja R Harinath  <rharinath@novell.com>
15874
15875         Avoid allocating 'MonoGenericContext' on the heap.
15876         * class-internals (_MonoMethodInflated::context): Make field
15877         inline, not a pointer.
15878         * loader.c (method_from_methodspec): Allocate 'new_context' on the
15879         stack.  Use the context embedded within the inflated method as the
15880         hash key, rather than 'new_context'.
15881         * class.c (inflate_generic_context): Simplify.  Return a struct
15882         rather than allocating on the heap.
15883         (mono_class_inflate_generic_method_full): Update to changes.  Now,
15884         doesn't salt away a copy of the context -- simplifying the
15885         lifetime rules of a 'MonoGenericContext *'.
15886         (mono_method_get_context): Return pointer to embedded context.
15887         (setup_generic_array_ifaces): Allocate temporary context on stack.
15888         * reflection.c (inflate_mono_method): Likewise.
15889         (mono_reflection_bind_generic_method_parameters): Likewise.
15890         Use the context embedded within the inflated method as the hash key.
15891
15892         Avoid a source of allocation of 'MonoGenericContext'.
15893         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
15894         and 'cached_context' fields into embedded 'MonoGenericContext' field.
15895         * class.c: Update to changes.
15896         (mono_generic_class_get_context): Simplify drastically.  Now just
15897         returns a pointer to the field.
15898         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
15899         argument as a const pointer.
15900         (mono_metadata_generic_context_equal): Likewise.
15901         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
15902         Update to changes.
15903
15904 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
15905
15906         * verify.c improved the handling of brtrue/brfalse, factored out common code
15907
15908 2007-06-14  Raja R Harinath  <rharinath@novell.com>
15909
15910         Kill MonoGenericMethod.
15911         * class-internals.h (MonoGenericContext::method_inst): Rename from
15912         'gmethod' and convert to a MonoGenericInst.
15913         (MonoGenericMethod): Remove.
15914         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
15915         * loader.c (method_from_methodspec): Update to changes.  Use a
15916         MonoGenericContext as the key to the hashtable.
15917         * metadata.c (mono_metadata_generic_context_equal): Rename from 
15918         'mono_metadata_generic_method_equal' and take MonoGenericContext.
15919         (mono_metadata_generic_context_hash): Likewise from
15920         'mono_metadata_generic_method_hash'.  Change hash function.
15921         (mono_metadata_load_generic_params): Update to changes.
15922         (mono_get_shared_generic_method): Remove.
15923         * metadata-internals.h (mono_get_shared_generic_method): Remove.
15924         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
15925         (inflate_generic_context): Likewise.
15926         (mono_class_inflate_generic_method_full): Likewise.
15927         (setup_generic_array_ifaces): Likewise.
15928         (mono_class_create_from_typespec): Likewise.
15929         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
15930         (method_encode_methodspec): Update callsite.
15931         (reflection_methodbuilder_to_mono_method): Update to changes.
15932         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
15933         MonoGenericContext as the key to the hashtable.
15934         (inflate_mono_method): Update to changes.
15935
15936         * class-internals.h (MonoGenericMethod::container): Remove.
15937         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15938
15939 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
15940
15941         * profiler-private.h, profiler.c, profiler.h: added API to profile
15942         exception events.
15943
15944 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15945
15946         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
15947
15948 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15949
15950         * verify.c: method invocation is now validated, now we verify parameter types on stack.
15951         Fixed overflow and underflow not aborting the verification process.
15952
15953 2007-06-13  Mark Probst  <mark.probst@gmail.com>
15954
15955         * class-internals.h (MonoStats): Added stats entries for dynamic
15956         code allocations.
15957
15958 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
15959
15960         * loader.c (mono_free_method): Free header->locals and header->clauses.
15961
15962         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
15963         dynamic case.
15964
15965         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
15966
15967         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
15968
15969 2007-06-12  Raja R Harinath  <rharinath@novell.com>
15970
15971         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
15972         the tables.
15973
15974 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15975
15976         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
15977
15978 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15979
15980         MonoGenericMethod on a diet
15981         * class-internals.h (_MonoMethodInflated::reflection_info): Move
15982         here ...
15983         (_MonoGenericMethod::reflection_info): ... from here.
15984         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
15985         Update to changes.
15986         * reflection.c (inflate_mono_method): Likewise.
15987         (mono_reflection_bind_generic_method_parameters): Likewise.
15988
15989 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15990
15991         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
15992         *verify.c: factored long ldarg forms to share code with short forms
15993
15994 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15995
15996         *verify.c: fixed code formating factored some duplicate code
15997         into a new function
15998
15999         *verify.h: fixed binary incompatibility introduced earlier
16000
16001         *pedump.c: fixed formating
16002
16003 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16004
16005         Fix assertion when disassembling Mono.C5.dll
16006         * loader.c (method_from_methodspec): Avoid inflating a method
16007         twice with the same context.  If the methodref is inflated, use
16008         the declaring method instead.
16009
16010         * class.c (mono_class_from_generic_parameter): Fix case similar to
16011         bug #81830 handled below, but for method containers.
16012
16013 2007-06-10  Raja R Harinath  <harinath@gmail.com>
16014
16015         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
16016         get_shared_generic_class.  Directly inflate the instance.
16017         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
16018         (inflate_generic_class): Delete.
16019         (get_shared_generic_class): Delete.  Move setting of
16020         'cached_class' and 'cached_context' ...
16021         * metadata.c (mono_metadata_lookup_generic_class): ... here.
16022
16023         * metadata.c (mono_metadata_lookup_generic_class): Change
16024         signature to take the components of a MonoGenericClass rather than
16025         an allocated MonoGenericClass.  Change semantics to be intern-like.
16026         * reflection.c (mono_class_bind_generic_parameters): Update to
16027         changes.  Make locking region tighter.
16028         * class.c (inflate_generic_class): Update to changes.
16029         (get_shared_generic_class): Likewise.
16030         * metadata-internals.h: Likewise.
16031
16032         * reflection.c (mono_class_bind_generic_parameters): Take and
16033         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
16034         (mono_reflection_bind_generic_parameters): Use
16035         'mono_class_bind_generic_parameters' rather than duplicate the code.
16036         * class.c (mono_bounded_array_class_get): Update to changes.
16037         * object-internals.h: Likewise.
16038
16039         * reflection.c (mono_class_bind_generic_parameters): Only support
16040         parameterizing generic type definitions.  Remove support for other
16041         open types.
16042
16043 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
16044
16045         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
16046
16047         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
16048         in the dynamic case.
16049
16050 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
16051
16052         * threads.c: When cleaning up thread, reset the Background bit.
16053         Fixes bug #81720.
16054
16055 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
16056
16057        * metadata.c: Move variable declarations to top of scope.
16058        * verify.c: Move variable declarations to top of scope.
16059
16060        Code is contributed under MIT/X11 license.
16061
16062 2007-06-08  Raja R Harinath  <rharinath@novell.com>
16063
16064         * reflection.c (mono_class_bind_generic_parameters): Replace
16065         open-coded loop with mono_metadata_inflate_generic_inst.
16066
16067         * class.c (get_shared_generic_class): Don't call
16068         mono_get_shared_generic_inst.  Use the container's own
16069         'class_inst'.
16070
16071         * metadata.c (mono_metadata_load_generic_params): Move
16072         initialization of 'context' field here from ...
16073         * class.c (mono_class_create_from_typedef): ... here, and ...
16074         * loader.c (mono_get_method_from_token): ... here.
16075
16076         * class.c (get_shared_generic_class): Rename from
16077         mono_get_shared_generic_class and make static.
16078         (mono_get_shared_generic_inst): Move to metadata.c.
16079         * loader.c (mono_get_shared_generic_method): Likewise.
16080         * class-internals.h, metadata-internals.h: Update to changes.
16081
16082         Fix #81830
16083         * class.c (mono_class_from_generic_parameter): Don't assume a
16084         generic container owner exists.  Generic containers from monodis
16085         don't have any.
16086
16087 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
16088
16089         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
16090         * verify.h: new typedefs to returns the non-verifiable status
16091         * verify.c: initial implementation of generics, stack merging and object compatibility check
16092
16093 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16094
16095         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16096         a MonoInternalHashTable again (fixed bug in internal hash table
16097         code).
16098
16099 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16100
16101         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16102         MonoInternalHashTable again (fixed bug in internal hash table
16103         code).
16104
16105 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16106
16107         * class.c, image.c, class-internals.h, domain.c,
16108         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16109         changes.  Have to figure out what makes them break the SWF
16110         regression.
16111
16112 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16113
16114         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16115         a MonoInternalHashTable now.
16116
16117 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16118
16119         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16120         MonoInternalHashTable now.
16121
16122 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
16123
16124         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16125         invoke_impl code.
16126
16127         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16128
16129         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16130         dependent trampoline.
16131
16132         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16133
16134         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16135
16136 2007-05-29  Robert Jordan  <robertj@gmx.net>
16137
16138         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16139
16140 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
16141
16142         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16143
16144 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
16145
16146        * marshal.c: Fix interface lookup loops for
16147        cominterop_get_com_slot_for_method and 
16148        cominterop_get_method_interface. Only need to lookup
16149        if type is a class, else use interface type method is on.
16150
16151        Code is contributed under MIT/X11 license.
16152
16153 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
16154
16155         * reflection.c: HasSecurity can be present even if no specially 
16156         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16157         SecurityAttribute). Fix CAS regression tests on buildbot.
16158
16159 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
16160
16161        * appdomain.c: Add configure checks for header files.
16162        * image.c: Add configure checks for header files.
16163        * file-io.c: Add configure checks for header files.
16164        * debug-mono-symfile.c: Add configure checks for header files.
16165        * threadpool.c: Add configure checks for header files.
16166        * console-io.c: Add configure checks for header files.
16167        * profiler.c: Add configure checks for header files.
16168        * rawbuffer.c: Add configure checks for header files.
16169        * icall.c: Add configure checks for header files.
16170        * rand.c: Add configure checks for header files.
16171        * socket-io.c: Add configure checks for header files.
16172
16173        Code is contributed under MIT/X11 license.
16174
16175 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
16176
16177         * reflection.c (mono_custom_attrs_from_builders): Remove the 
16178         assertion as it breaks the build.
16179         
16180         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16181
16182         * reflection.c (lookup_custom_attr): Make a copy here too.
16183
16184         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16185         dynamic images.
16186
16187         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16188         images.
16189
16190         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16191         info.
16192
16193 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
16194
16195         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
16196         (load_cattr_value): Ditto.
16197
16198 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
16199
16200         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
16201
16202 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
16203
16204         * threads.c: In "start_wrapper", set apartment_state to MTA if
16205         apartment_state is Unknown and we're running on 2.0 profile or
16206         higher.
16207         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
16208         to main method, then set apartment_state to Unknown on 1.0 profile,
16209         and MTA on 2.0 profile.
16210
16211 2007-05-16  Jb Evain  <jb@nurv.fr>
16212
16213         * class-internals.h (MonoDefaults): Add an attribute_class and
16214           customattribute_data_class.
16215         * domain.c (mono_init_internal): Populate them.
16216         * reflection.c: Use them to remove duplicates. Make a vew
16217         MonoClass variables `static'.
16218
16219 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
16220
16221         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
16222         step in implementing IMT, so that all isinst checks now can go
16223         through the bitmap.
16224         This was needed because vtables for TransparentProxy need to look
16225         like the vtable of the "target" class, so they need to point to
16226         its interface bitmap directly.
16227
16228         * object.c: inside "mono_class_create_runtime_vtable" and
16229         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
16230
16231 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16232
16233         * object-internals.h
16234           culture-info.h : added territory field in MonoCulture and
16235           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
16236         * locales.c : fill territory field above too.
16237         * culture-info-table.h : regenerated.
16238
16239 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
16240
16241         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
16242         Fixes #81599.
16243
16244 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
16245
16246         * object.c: Always initialize apartment, even if 
16247         there is no custom attributes on entry point.
16248         
16249         Code is contributed under MIT/X11 license.
16250
16251 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
16252
16253         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
16254         * metadata.c: If no encoding is set, check for unicode
16255         on class.
16256         
16257         Code is contributed under MIT/X11 license.
16258
16259 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16260
16261         * threads.c: Handle if mono_thread_current returns NULL 
16262         
16263         Code is contributed under MIT/X11 license.
16264
16265 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16266
16267         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
16268         in start_wrapper. Added mono_thread_init_apartment_state and
16269         mono_thread_cleanup_apartment_state.
16270         * object.c: Initialize thread apartment state on main thread
16271         by checking for STAThreadAttribute on entry point.
16272         * object-internals.h: Add apartment_state field to MonoThread.
16273         * threads-types.h: Add unmanaged definition of 
16274         System.Threading.ApartmentState, MonoThreadApartmentState.
16275         
16276         Code is contributed under MIT/X11 license.
16277         
16278 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
16279
16280         * class.c: Fix windows build.
16281         * class-internals.h: Fix windows build.
16282         
16283         Code is contributed under MIT/X11 license.
16284
16285 2007-05-08  Robert Jordan  <robertj@gmx.net>
16286
16287         * process.c (CreateProcess_internal):
16288         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
16289         .CreateNoWindow was specified. Fixes #81496.
16290
16291 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16292
16293         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
16294         step in implementing IMT, replaced it with two compact arrays
16295         (interfaces_packed and interface_offsets_packed) and a bitmap that
16296         is used for isinst checks (interface_bitmap).
16297
16298         * class.c: (compare_interface_ids): compare function to pass to
16299         bsearch when looking for an interface with a given id.
16300         (mono_class_interface_offset): reimplemented using bsearch on
16301         interfaces_packed, getting the offset from interface_offsets_packed.
16302         (print_implemented_interfaces): utility debugging function.
16303         (setup_interface_offsets): reworked to initialize interfaces_packed,
16304         interface_offsets_packed and interface_bitmap.
16305
16306         * object.c: replaced all accesses to "MonoClass.interface_offsets"
16307         with uses of interfaces_packed and interface_offsets_packed.
16308
16309 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16310
16311         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
16312         mono_class_interface_offset prototype to wrap all accesses to
16313         "MonoClass.interface_offsets".
16314
16315         * class.c: Implemented mono_class_interface_offset, and wrapped all
16316         accesses to "MonoClass.interface_offsets".
16317
16318         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
16319         "MonoClass.interface_offsets".
16320
16321 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16322
16323         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
16324         GetMethodFromHandle overloads (bug #78637).
16325
16326 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16327
16328         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
16329         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
16330
16331 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
16332
16333         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
16334         #81498.
16335
16336         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16337         gracefully.
16338         (mono_custom_attrs_from_index): Ditto.
16339
16340         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
16341         Fixes #81501.
16342
16343 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
16344
16345         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16346         is now allocated from a mempool.
16347
16348 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
16349
16350         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16351         caller holds threads_lock, leading to deadlocks. Fixes #81476.
16352
16353 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
16354
16355         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16356         mono_loader_clear_error () too late. Fixes #81463.
16357
16358 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
16359
16360         * culture-info-table.h : regenerated.
16361
16362 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
16363
16364         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16365         is missing.
16366
16367 2007-04-25  Dick Porter  <dick@ximian.com>
16368
16369         * Makefile.am: Put the mingw enforced-optimisation back into the
16370         PLATFORM_WIN32 section.
16371
16372 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
16373
16374         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16375         patch.
16376
16377         * image.c (mono_image_load_module): New API function to load a module reference.
16378
16379         * image.c (load_modules): Load modules lazily. Fixes #80812.
16380
16381         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16382         
16383         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16384
16385         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16386         to mono_image_load_module_dynamic.
16387
16388 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16389
16390         * marshal.c: Fix calling convention for CCW on non-windows
16391         platforms. STDCALL on windows, CDECL everywhere else to work 
16392         with XPCOM and MainWin COM.
16393         
16394         Code is contributed under MIT/X11 license.
16395
16396 2007-04-23  Martin Baulig  <martin@ximian.com>
16397
16398         Fix #80969.
16399
16400         * loader.c
16401         (method_from_memberref): Added `gboolean *used_context' argument.
16402         (mono_get_method_from_token): Likewise.
16403         (mono_get_method_full): Don't insert the method in the cache when
16404         `used_context' is true.
16405
16406 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16407
16408         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16409
16410         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16411         create new MonoTypes for returned types.
16412         * class.c (mono_generic_class_get_class): Export mono-internal.
16413         * class-internals.h: Update to changes.
16414
16415 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16416
16417         * threadpool.c, threadpool.h, icall-def.h: patch from
16418         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16419
16420 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16421
16422         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16423         
16424         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16425
16426         * threads.c (mono_thread_get_stack_bounds): New helper function.
16427
16428         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16429         Correctly compute stack bounds when attaching. Fixes #81394.
16430
16431 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16432
16433         * reflection.c: fix handling of doubles in custom attributes
16434         for the arm-fpa format (bug #81368).
16435
16436 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16437
16438         * reflection.c (assembly_add_win32_resources): Mildly relax an
16439         bounds check to let the end pointer point just past the end of the
16440         allocated buffer.  (may fix #81384)
16441
16442 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16443
16444         * culture-info-table.h : regenerated.
16445
16446 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16447
16448         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16449         the thread is aborted early.
16450
16451 2007-04-05  Dick Porter  <dick@ximian.com>
16452
16453         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16454         FindFirstFile()/FindNextFile() to find entries.  This lets the
16455         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16456         81038.
16457
16458         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16459         the parameters of
16460         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16461
16462 2007-04-04  Martin Baulig  <martin@ximian.com>
16463
16464         * debug-helpers.c
16465         (mono_method_desc_full_match): Add support for nested classes.
16466
16467 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16468
16469         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16470
16471 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16472
16473         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16474         waiting for too many threads.
16475
16476 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16477
16478         * environment.c: Fix return value check on uname so we can get the 
16479         executing version on Solaris operating systems.
16480
16481 2007-03-28  Jb Evain  <jbevain@gmail.com>
16482
16483         * class.c (mono_type_get_name_recurse): Complete the
16484         fix for the creation of assembly qualified names for
16485         pointer types. Fixes #81208.
16486
16487 2007-03-27  Dick Porter  <dick@ximian.com>
16488
16489         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16490         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16491         changed.
16492
16493         * threads.c
16494         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16495         the value of ReleaseMutex().
16496
16497 2007-03-27  Dick Porter  <dick@ximian.com>
16498
16499         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16500         in little-endian order, not network endian, so must be converted
16501         to host endian here.  Fixes bug 80593.
16502
16503 2007-03-22  Jb Evain  <jbevain@gmail.com>
16504
16505         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16506         qualified names for pointer types. Fixes #81208.
16507
16508 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16509
16510         * marshal.c: Add support for PreserveSigAttribute. 
16511         
16512         Code is contributed under MIT/X11 license.
16513
16514 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16515
16516         * process.c: Fix endianness issues. Fixes #81126.
16517
16518         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16519         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16520
16521         * image.c (mono_image_lookup_resource): Make this work on big-endian
16522         machines.Change API contract so the caller needs to free the return value.
16523         
16524         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16525         API change.
16526         
16527 2007-03-14  Martin Baulig  <martin@ximian.com>
16528
16529         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16530         mono_type_get_desc() as well.
16531
16532 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16533
16534         * icall.c:  Fix environ access in VS.  
16535         
16536 2007-03-13  Alp Toker  <alp@atoker.com>
16537
16538         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16539         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16540         #63841.
16541
16542 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16543
16544         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16545         circular references among dynamic methods. Fixes #81091.
16546
16547         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16548
16549 2007-03-09  Martin Baulig  <martin@ximian.com>
16550
16551         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16552
16553 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16554
16555         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16556         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16557         
16558         Code is contributed under MIT/X11 license.
16559         
16560 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16561
16562         * loader.c: Reapply patch for bug #79424.
16563
16564 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16565
16566         * metadata.c (mono_type_to_unmanaged): Only convert object to
16567         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16568
16569 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16570
16571         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16572         (and incorrectly set) is_reference field from MonoGenericInst.
16573
16574 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16575
16576         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16577         a little earlier.
16578
16579         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16580
16581         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16582
16583 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16584
16585         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16586         FileOptions.1 value to mean "temporary", map that to
16587         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16588
16589         Fixes 80688
16590
16591 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16592
16593         * appdomain.c: implement MS .Net style shadow copying. Copies of
16594         the assemblies are made in a subdirectory of the dynamic base
16595         directory, the assembly names are preserved.
16596         Copy .mdb and .config files along with the assemblies being shadowed.
16597
16598 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16599
16600         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16601         (emit_marshal_handleref): Ditto.
16602
16603         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16604         on Visual C++. Fixes #80671.
16605
16606 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16607
16608         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16609         for clone operations.
16610
16611 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16612
16613         * marshal.c: Fix warnings.
16614
16615 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
16616
16617         * loader.c: allow case-insensitive matching of the dll name
16618         in dllmap handling when prefixed with "i:".
16619
16620 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
16621
16622         * threads.c: Fix #ifdef for dummy_apc function for VS.
16623
16624 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16625
16626         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
16627
16628 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
16629         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
16630         giving precedence to the methods with a fully qualified name
16631         (InterfaceName.MethodName) when building the interface sections
16632         of the vtable.
16633
16634 2007-02-16  Dick Porter  <dick@ximian.com>
16635
16636         * threadpool.c (append_job): Fix fast-path array handling, so it's
16637         less likely the array will grow exponentially when the load is
16638         heavy.
16639
16640 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16641
16642         * metadata-internals.h, loader.c: fix dllmap lookup order
16643         for non-function maps, too, and prepare for fallback code.
16644
16645 2007-02-12  Robert Jordan  <robertj@gmx.net>
16646
16647         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
16648         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
16649         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
16650         GlobalFree. Fixes a part of bug #77075.
16651
16652 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
16653
16654         * loader.c: implemented typedef parent in field memberref.
16655
16656 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
16657
16658         * marshal.c: Fix warnings and remember to call Release on
16659         IUnknown of RCW.
16660         
16661         Code is contributed under MIT/X11 license.
16662
16663 2007-02-10  Miguel de Icaza  <miguel@novell.com>
16664
16665         * class-internals.h: Add MonoHandleRef definition, and
16666         handleref_class to mono_defaults. 
16667
16668         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
16669         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
16670
16671         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
16672         (do nothing on this stage)
16673         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
16674         (emit_marshal_handleref): New method, used for argument handling
16675         of HandleRefs. 
16676
16677 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
16678
16679         * class.c (mono_class_setup_parent): Lazily init com types.
16680         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
16681         init com types.
16682         * object.c (mono_remote_class_vtable): Lazily init com types.
16683         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
16684         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
16685         * domain-internals.h: Expose mono_init_com_types.
16686         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
16687         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
16688         Add support for COM Callable Wrapper marshalling.
16689         * marshal.h: Add icall definitions.
16690         * gc.c: Handle freeing of CCWs in finalizer code.
16691         
16692         Code is contributed under MIT/X11 license.
16693
16694 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
16695
16696         * reflection.c: changed all the signature encoding code to use
16697         a variable-sized buffer.
16698
16699 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16700
16701         * marshal.c: locking fixes: never take the loader lock
16702         or other runtime locks when holding the marshal lock
16703         (fixes bug#80664).
16704
16705 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
16706
16707         * marshal.c: make the delegate function pointer mapping
16708         work for the moving GC.
16709
16710 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
16711
16712         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
16713         for bug #80618.
16714
16715 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16716
16717         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
16718         gmodule.
16719
16720 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16721
16722         * threadpool.c: made the code moving-GC safe.
16723
16724 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
16725
16726         * assembly.c, boehm-gc.c, class-internals.h, class.c,
16727         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
16728         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
16729         warning cleanup.
16730         * reflection.c: warning cleanup, some threading and moving GC fixes.
16731
16732 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
16733
16734         * class.c, loader.c: create the needed Set/Get/Address array methods
16735         as well as the .ctors in mono_class_init (), fixes bug #80567.
16736
16737 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
16738
16739         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
16740         we doesn't decrease its alignment. Should fix the sparc build.
16741
16742 2007-01-24  Dick Porter  <dick@ximian.com>
16743
16744         * socket-io.c
16745         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
16746         Create the returned object if we need to ignore an unsupported
16747         socket option.  Fixes a segfault reported by Atsushi.
16748
16749 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
16750
16751         * class.c, object.c: restrict GC-tracked fields to
16752         UIntPtr fields used inside corlib, so we provide better
16753         type info to the GC and also allow broken packing as in
16754         bug #80580.
16755
16756 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
16757
16758         * sgen-gc.c: removed duplicated function.
16759
16760 2007-01-19  Miguel de Icaza  <miguel@novell.com>
16761
16762         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
16763         value that means that the value is not supported, but that we
16764         should not return a failure, but instead report this as a
16765         successful operation.
16766
16767 2007-01-19  Raja R Harinath  <rharinath@novell.com>
16768
16769         Fix tests/bug79956.2.il
16770         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
16771         (mono_generic_class_get_class): If the generic definition in an
16772         enum, copy over other fields related to it.
16773
16774 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
16775
16776         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
16777         genericinst enums (bug #79215).
16778
16779 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
16780         * class.c: Fix bug 80307.
16781
16782 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
16783
16784         * image.c: if the file table is not present, try to load
16785         all the modules, since we don't have info about them
16786         having or not metadata (bug #80517).
16787         * assembly.c: allow mono_assembly_load_references () to
16788         work for netmodules.
16789
16790 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16791
16792         * image.c, metadata-internals.h, object.c: execute module
16793         cctors when running on the 2 runtime if present (bug #80487).
16794
16795 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
16796
16797         * icall.c: optimized InitializeArray() on bigendian.
16798
16799 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
16800
16801         * icall.c: fix for the broken ARM FPA double format.
16802
16803 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16804
16805         * icall.c: handle endian issues for r4 and r8 types, too, in
16806         the InitializeArray() icall.
16807
16808 2007-01-15  Miguel de Icaza  <miguel@novell.com>
16809
16810         * loader.c (mono_loader_error_prepare_exception): Clear the error
16811         once we have extracted the information from it, do this before we
16812         call into the JIT's class loading mechanisms.
16813
16814         * object.c (mono_class_create_runtime_vtable): Do not clear the
16815         loader error before calling mono_class_get_exception_for_failure
16816         as the loader error is needed inside
16817         mono_class_get_exception_for_failure to throw the error (thinko).
16818
16819         Fixes #80521
16820         
16821 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
16822
16823         * reflection.c: align fields rva data so it's faster to load at
16824         runtime.
16825
16826 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16827
16828         Prepare to simplify GenericMethod handling.
16829         * class-internals.h (mono_method_get_context): New accessor function.
16830         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
16831         rather than directly accessing '->context' field.
16832
16833         * class-internals.h (_MonoGenericParam.method): Move ...
16834         (_MonoGenericContainer): ... here.  Add into union with klass field.
16835         * class.c, icall.c, loader.c, metadata.c, reflection.c:
16836         Update to changes.
16837
16838 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
16839
16840         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
16841         the wrapper type enum and reduce relocations.
16842
16843 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16844
16845         * reflection.c (inflate_mono_method): Reuse method instantiation
16846         from the generic method, if available.
16847
16848 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16849
16850         * marshal.c (emit_marshal_variant): Fix conv_arg
16851         type in last commit, based on whether parameter is byref.
16852         
16853 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16854
16855         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
16856         marshalling.
16857         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
16858         MONO_TYPE_OBJECT back for VARIANT support.
16859
16860 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16861
16862         * marshal.c, marshal.h, icall-def.h: Implement 
16863         Marshal.ReAllocCoTaskMem.
16864
16865 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
16866
16867         * marshal.c: memory retention fixes: use the proper
16868         image cache for runtime_invoke method lookups.
16869
16870 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
16871
16872         * mempool.c: added code to help debug mempool allocations.
16873
16874 2007-01-11  Dick Porter  <dick@ximian.com>
16875
16876         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
16877         support (experimenting with faking it with IP_MTU_DISCOVER for
16878         systems that don't have IP_DONTFRAGMENT.)
16879         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
16880         icall.
16881
16882         * icall-def.h: new System.Net.Sockets.Disconnect icall.
16883
16884         * socket-io.h: Add new fields to MonoSocketAsyncResult
16885         corresponding to the new ones in Socket.cs.
16886
16887 2007-01-11  Raja R Harinath  <rharinath@novell.com>
16888
16889         Fix IronPython regression mentioned in #80249
16890         * metadata.c (do_mono_metadata_parse_generic_class): Clear
16891         'cached_context' field, since it may have been initialized as a
16892         side-effect of metadata parsing.
16893
16894         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
16895         (_MonoGenericClass.cached_class): Move here and rename from lone
16896         remaining field of ...
16897         (_MonoInflatedGenericClass): ... this.  Remove.
16898         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
16899         to changes.
16900
16901         Fix mcs/tests/test-128.cs regression.
16902         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
16903         2007-01-10 change below.
16904         [MONO_TYPE_OBJECT]: Recurse into array case.
16905
16906 2007-01-11  Raja R Harinath  <harinath@gmail.com>
16907
16908         * class-internals.h (mono_get_inflated_generic_class): Remove.
16909         * class.c (mono_get_inflated_generic_class): Remove.
16910         (mono_generic_class_get_class): Rename from
16911         mono_class_create_generic.
16912         (mono_class_from_mono_type) [GENERICINST]: Use it.
16913         * reflection.c, metadata.c: Update to changes.  Use
16914         'mono_class_from_mono_type'.
16915
16916 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
16917
16918         * reflection.c: use passed type when encoding an array element
16919         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
16920
16921 2007-01-09  Robert Jordan  <robertj@gmx.net>
16922
16923         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
16924         result arguments (someDelegate.EndInvoke (unrelatedAres)).
16925         Fixes bug #80392.
16926
16927 2007-01-09  Raja R Harinath  <rharinath@novell.com>
16928
16929         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
16930
16931         * object.c (set_value): Avoid aliasing between type->data.klass
16932         and type->data.generic_class.
16933
16934         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
16935
16936 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16937
16938         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
16939         between type->data.klass and type->data.generic_class.
16940
16941 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
16942
16943         * marshal.c: In MS.NET, StringBuilder objects are not copied by
16944         value in out parameters.
16945
16946 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16947
16948         Simplify invariant for MonoGenericClass::klass field.
16949         * class.c (mono_class_create_generic): Verify 'klass' is null.
16950         * metadata.c (do_mono_metadata_parse_generic_class): Don't
16951         initialize 'klass' field.
16952
16953 2007-01-05  Raja R Harinath  <rharinath@novell.com>
16954
16955         Ongoing work to avoid redundant data and simplify invariants.
16956         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
16957         'generic_class', and change type to a GenericInst.
16958         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
16959         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16960
16961 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
16962
16963         * class.c : skip io-layer under PLATFORM_WIN32.
16964
16965 2007-01-03  Tor Lillqvist  <tml@novell.com>
16966
16967         Fix #80305: In a bundled executable, look in the bundled exe
16968         assembly to determine the runtime version. Add the possibility to
16969         bundle also the machine.config file.
16970         
16971         * assembly.c (mono_assembly_open_from_bundle): Make
16972         non-static. Allow being called even if we have no bundled
16973         assemblies, and return NULL right away in that case.
16974
16975         * domain-internals.h: Declare mono_assembly_open_from_bundle()
16976         here.
16977
16978         * domain.c (app_config_parse): Take an assembly exe file name as
16979         parameter instead of a config file name. Check for a bundled
16980         config file for that assembly by calling
16981         mono_config_string_for_assembly_file() (see below) before looking
16982         for one in the file system.
16983         (get_runtimes_from_exe): Corrsponding change to call of
16984         app_config_parse().
16985         (get_runtimes_from_exe): Check for bundled assembly exe file first
16986         by calling mono_assembly_open_from_bundle(). If no bundled
16987         assembly exe file is found, call mono_image_open() as before to
16988         look it up in the file system.
16989
16990         * mono-config.c: Add variable bundled_machinec_onfig.
16991         (mono_config_string_for_assembly_file): New function.
16992         (mono_config_for_assembly): Move code snippet that looks for a
16993         bundled assembly .config file into the above new function. Call
16994         it.
16995         (mono_register_machine_config, mono_get_machine_config): New
16996         functions to set and retrieve
16997
16998         * assembly.h: Declare mono_register_machine_config().
16999
17000         * mono-config.h: Declare mono_get_machine_config() and
17001         mono_config_string_for_assembly_file().
17002
17003         * icall.c: No declaration of environ necessary on Win32. It is
17004         declared (as a macro expanding to a function call) in stdlib.h.
17005         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
17006         New internal mono function. Returns the value of
17007         mono_get_machine_config() as a Mono string.
17008
17009         * icall-def.h: Add get_bundled_machine_config().
17010
17011 2007-01-04  Raja R Harinath  <rharinath@novell.com>
17012
17013         Remove redundant field
17014         * class-internals.h (_MonoGenericContext.container): Remove field.
17015         * loader.c (mono_method_get_signature_full): Don't parse a
17016         "container" for a signature parse when the signature is inflated
17017         immediately.
17018         (method_from_methodspec): Likewise, for a generic_inst.
17019         * class.c, metadata.c, reflection.c: Update to changes.
17020
17021 2006-01-04  Raja R Harinath  <rharinath@novell.com>
17022
17023         * class-internals.h (_MonoGenericClass): Rename 'context' field to
17024         'cached_context', and change semantics -- it starts off NULL, and
17025         is initialized on demand.
17026         * class.c (mono_generic_class_get_context): New accessor to
17027         replace 'context' field accesses.
17028         (mono_class_get_context): New helper.
17029         (*): Update to changes.
17030         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
17031
17032 2007-01-03  Miguel de Icaza  <miguel@novell.com>
17033
17034         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
17035         before the memcpy.   Fixes Marshal2 regression.
17036
17037 2007-01-02  Jb Evain  <jbevain@gmail.com>
17038
17039         * blob.h: add a MONO_TYPE_ENUM definition
17040         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
17041         fix the encoding of arrays of enums in custom attributes.
17042
17043         Fixes #79666.
17044
17045 2007-01-01  Miguel de Icaza  <miguel@novell.com>
17046
17047         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
17048         string is null terminated, but only cut the string short if it
17049         overflows the buffer.   
17050         
17051         (mono_string_to_byvalstr): Also fix this routine.   The code here
17052         was not properly terminating a string (it was only terminated
17053         because of the previous catch-all memset). 
17054
17055         I left the memset, because I do not know if applications expect
17056         the runtime to clear this region. 
17057
17058         Fixes #79944.
17059
17060         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
17061         Clear the error before returning to unmanaged code to prevent the
17062         runtime from being confused later on (fixes  80420).
17063         (ves_icall_type_from_name): Always call mono_loader_clear_error
17064         after parsing a type that could have failed.
17065         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
17066
17067         * loader.c (mono_loader_clear_error): Fix indentation.
17068
17069 2006-12-28  Martin Baulig  <martin@ximian.com>
17070
17071         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
17072
17073 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17074
17075         * reflection.c: patch from Rolf Bjarne Kvinge to fix
17076         getting a token for an EnumBuilder.
17077
17078 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17079
17080         * reflection.c: be more careful in case resource generation
17081         fails to create the data array.
17082
17083 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17084
17085         * sgen-gc.c: write barrier for clone and fix unregister handles.
17086
17087 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17088
17089         * reflection.c: some fixes needed in the generics code for the moving GC.
17090
17091 2006-12-22  Robert Jordan  <robertj@gmx.net>
17092
17093         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17094         account. Fixes bug #80299.
17095
17096 2006-12-21  Raja R Harinath  <rharinath@novell.com>
17097
17098         Fix WaitHandle usage in delegates.
17099         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17100         * object.c (mono_wait_handle_new): Use the property set method to
17101         initialize the handle.
17102         (mono_wait_handle_get_handle): New.
17103         * threadpool.c (mono_async_invoke): Use it.
17104         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17105         Likewise.
17106         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17107
17108 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
17109
17110         * marshal.c (emit_marshal): Call emit_marshal_variant and
17111         emit_marshal_com_interface when applicable.
17112         (emit_marshal_variant, emit_marshal_com_interface): Add
17113         methods for this case and remove if's from emit_marshal_object.
17114         
17115 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17116
17117         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17118
17119 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
17120
17121         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17122         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17123         and GlobalFree on Windows. Remove FIXME.
17124
17125 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17126
17127         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17128         implementation for managed objects.
17129
17130 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17131
17132         * object.c: implemented code to be used for checking
17133         that no reference field overlaps with non-references.
17134
17135 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17136
17137         * threadpool.c: fix queue code to be compatible with the
17138         moving GC.
17139
17140 2006-12-18  Miguel de Icaza  <miguel@novell.com>
17141
17142         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17143         in structures by throwing ArgumentNullException.
17144
17145         (emit_marshal_safehandle): Also when they are null parameters.
17146
17147         (emit_marshal_safehandle): Add support for ref
17148         SafeHandles parameters
17149
17150 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17151
17152         * profiler.c: updated to use the mono-dl API instead of
17153         gmodule.
17154
17155 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17156
17157         * profiler.c: updated to use the mono-dl dynamic loading
17158         API instead of gmodule.
17159
17160 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17161
17162         * profiler.c: use readlink, older versions of glib don't have
17163         g_file_read_link ().
17164
17165 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17166
17167         * profiler.c: try to detect the path to mono if libc fails to provide
17168         a useful name (bug #80286).
17169
17170 2006-12-16  Raja R Harinath  <rharinath@novell.com>
17171
17172         Fix #80242
17173         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17174         instance, use the generic type definition instead.
17175         (ves_icall_Type_GetNestedTypes): Likewise.
17176         * class.c (mono_class_create_generic): Always set the
17177         nested_classes of a generic instance to NULL, even if the generic
17178         type definition has nested types.
17179
17180 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
17181
17182         * marshal.c (mono_string_from_bstr): Revert previous Windows change
17183         and fix on Linux.
17184         
17185 2006-12-15  Miguel de Icaza  <miguel@novell.com>
17186
17187         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17188         my arguments were in the wrong order.   I also fixed the Windows
17189         version which seems to have had the same issue.
17190
17191         (mono_free_bstr): On Unix, this is g_free.
17192         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17193         conversions (for the tests in corlib to pass).
17194
17195 2006-12-14  Miguel de Icaza  <miguel@novell.com>
17196
17197         * marshal.c (emit_ptr_to_object_conv): For now, ignore
17198         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
17199         exception if a ref SafeHandle in a struct has changed).
17200         
17201         (emit_struct_conv): Do not perform layout checks for classes
17202         derived from SafeHandle, as those are specially handled. 
17203
17204         (emit_object_to_ptr_conv): Add support for
17205         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
17206
17207         (emit_marshal_safehandle): Implement conversion of return values
17208         of safehandles (MARSHAL_ACTION_CONV_RESULT).
17209         
17210         * threads.c: WaitHandle now is compiled with two different handles
17211         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
17212         for 2.0.
17213         
17214         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
17215         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
17216         these routines to cope with both kinds of fields.
17217
17218 2006-12-12  Miguel de Icaza  <miguel@novell.com>
17219
17220         * metadata.c (mono_type_to_unmanaged): Handle the case where
17221         type->data.klass is a SafeHandle, and in that case, return the
17222         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
17223         MONO_MARSHAL_CONV_SAFEHANDLE. 
17224
17225 2006-12-11  Miguel de Icaza  <miguel@novell.com>
17226
17227         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
17228         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
17229         calling emit_marshal_object.
17230
17231         (emit_marshal_safehandle): Implement marshalling of
17232         SafeHandle parameters (no ref support yet).
17233
17234         (MarshalAction): Document the defines as I implement
17235         them for SafeHandle.
17236
17237         (emit_marshal_object): indentation police.
17238
17239         * class-internals.h: Define MonoSafeHandle.
17240         Add safehandle_class to MonoDefaults type.
17241
17242         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
17243         list of classes to check for fields. 
17244
17245         * domain.c (mono_init_internal): Add SafeHandle to the list of
17246         mono_defaults loaded.
17247
17248 2006-12-15  Raja R Harinath  <rharinath@novell.com>
17249
17250         Fix #80253
17251         * reflection.c (mono_reflection_bind_generic_parameters): If the
17252         generic type definition is a type builder, ensure that it is fully
17253         initialized before instantiating it.  Kill some dead code.
17254
17255 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17256
17257         * object.c: clear the loader_error () before loading
17258         more metadata stuff (bug #80258).
17259
17260 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
17261
17262         * icall.c, icall-defs.h: type modifiers icalls for
17263         parameters and properties.
17264
17265 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
17266
17267         * object.c, icall.c: fixed warnings.
17268
17269 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17270
17271         * marshal.c: fixed a couple of leaks and coding style in a few places.
17272
17273 2006-12-08  Dick Porter  <dick@ximian.com>
17274
17275         * process.c: Cope with NULL ProcessStartInfo arguments on windows
17276         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
17277         80173.
17278
17279 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17280
17281         * process.c: ProcessStartInfo may have only filename set and
17282         arguments can be NULL.
17283
17284 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17285
17286         * icall.c: fix leak found by Robert Jordan.
17287
17288 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17289
17290         * marshal.c, marshal.h: generate managed method to access an element
17291         of a multi-dimensional array.
17292
17293 2006-11-30  Paolo Molaro (lupus@ximian.com)
17294
17295         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
17296
17297 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17298
17299         * icall.c: back out GetFields () fix until the serialization code is
17300         fixed to not depend on the incorrect behaviour.
17301
17302 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17303
17304         * profiler.c: provide defaults if none are set.
17305
17306 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17307
17308         * Makefile.am, attrdefs.h: new public header file with
17309         constants for attributes for use by embedders.
17310
17311 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17312
17313         * icall.c: GetFields () fix for bug #80064.
17314
17315 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
17316
17317         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
17318         removed long unused icalls.
17319
17320 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
17321   
17322         * marshal.c: 
17323                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
17324                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
17325                 can be generated without a delegate class.
17326                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
17327         
17328         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17329
17330 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17331
17332         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
17333         #80069.
17334
17335 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17336
17337         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17338         icall-def.h: added icalls needed by System.GC.
17339
17340 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17341
17342         * loader.c: ensure the class in catch clauses is handled
17343         correctly for generics methods (fixes bug#79980).
17344
17345 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17346
17347         * monitor.h, monitor.c: added mono_locks_dump () function
17348         to help debug deadlocks involving managed locks.
17349
17350 2006-11-13  Dick Porter  <dick@ximian.com>
17351
17352         * file-io.c (get_file_attributes): If the file is a symlink try
17353         and get the stat data for the target, but also add the
17354         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
17355         the specs for the windows symlink support, but will probably have
17356         to be reworked when I have test data from a vista machine.  Fixes
17357         bug 79887.
17358
17359 2006-11-13  Dick Porter  <dick@ximian.com>
17360
17361         * gc.c (mono_domain_finalize): 
17362         * marshal.c (mono_delegate_begin_invoke): 
17363         * threadpool.c (socket_io_init, mono_thread_pool_init)
17364         (mono_thread_pool_finish): 
17365         * monitor.c (mono_monitor_try_enter_internal): 
17366         * threads.c (mono_thread_resume, mono_thread_init)
17367         (mono_thread_suspend_all_other_threads)
17368         (mono_thread_execute_interruption): 
17369         * appdomain.c (mono_domain_unload): Check for NULL error returns
17370         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
17371         75733.
17372
17373 2006-11-11  Miguel de Icaza  <miguel@novell.com>
17374
17375         * process.c
17376         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17377         Only close the handle if the value of the handle is not
17378         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17379         robust.
17380
17381         Improvement for #75733, so that we do not run into this problem. 
17382
17383         
17384         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17385         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17386         internal variables.  Fixes #79462 
17387         
17388
17389 2006-11-09  Dick Porter  <dick@ximian.com>
17390
17391         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17392         Use poll() not select().  Fixes bug 79397.
17393
17394 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17395
17396         Fix #79872
17397         * assembly.c (mono_assembly_load_from_full): Check that the given
17398         image has an assembly manifest.
17399
17400 2006-11-09  Ankit Jain  <jankit@novell.com>
17401
17402         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17403         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17404         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17405
17406 2006-11-07  Dick Porter  <dick@ximian.com>
17407
17408         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17409         Put the old resolver behaviour back for pre-2.0 profiles.
17410
17411 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17412
17413         * threadpool.c: precise GC and locking fixes.
17414
17415 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17416
17417         * class.c: don't load types that have an explicit unaligned
17418         managed reference. Provide better info in the TypeLoad exception.
17419         Part of the fix for bug #79744.
17420         * object.c: use the correct check for class type load issues.
17421
17422 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17423
17424         * class.c: enforce alignment of fields with managed references
17425         even when Pack=1 is forced by the user (bug #77788).
17426
17427 2006-11-03  Dick Porter  <dick@ximian.com>
17428
17429         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17430         If the address reverse lookup fails, return it as the hostname
17431         anyway.  Fixes bug 79721.
17432
17433 2006-11-03  Dick Porter  <dick@ximian.com>
17434
17435         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17436         Fix build on Windows.
17437
17438 2006-11-02  Dick Porter  <dick@ximian.com>
17439
17440         * icall-def.h: 
17441         * object-internals.h: 
17442         * exception.c (mono_get_exception_thread_interrupted): 
17443         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17444         Fixes bug 74525.
17445
17446         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17447         Check for pending Thread.Interrupt.
17448
17449 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17450         * loader.c: Fixed bug 79684.
17451
17452 2006-10-27  Dick Porter  <dick@ximian.com>
17453
17454         * file-io.c (get_file_attributes): Force symlinks to directories
17455         to be returned as a regular file.  Fixes bug 79733.
17456 2006-10-26  Dick Porter  <dick@ximian.com>
17457
17458         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17459         CreateFile to open a directory then we need to set the
17460         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17461
17462 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17463
17464         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17465         friends.
17466
17467 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17468
17469         * sgengc.c: small cleanup of timer code.
17470
17471 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17472
17473         * sgen-gc.c: fix some warnings and start adding support for
17474         complete object removal on domain unload.
17475
17476 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17477
17478         * assembly.c: build_assembly_name should not consider a version
17479         number without build or revision number invalid. Fixes bug #79715.
17480
17481 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17482
17483         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17484         call kernel32 function OutputDebugString directly.
17485         
17486         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17487         
17488 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17489
17490         * reflection.c: small cleanup, using a function to insert a MonoString
17491         in the string heap.
17492
17493 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17494
17495         * reflection.c: moving GC fixes.
17496
17497 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17498
17499         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17500         all the objects with finalizers belonging to an unloading appdomain.
17501
17502 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17503
17504         * sgen-gc.c: added ability to allocate even when the nursery is fully
17505         pinned and fixed a couple of bugs.
17506
17507 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17508
17509         * threads.h: Revert the last change for now.
17510
17511         * threads.h (mono_thread_get_pending_exception): Rename this to
17512         mono_thread_get_undeniable_exception ().
17513
17514 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17515
17516         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17517         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17518         when fname does not refer to valid assembly. This result in a more
17519         meaningful error message.
17520         * exception.c: added mono_get_exception_bad_image_format2 which 
17521         constructs a BadImageFormatException using the ctor taking a custom
17522         message and the file name. Passing in a NULL msg results in a default
17523         message.
17524         * exception.h: define mono_get_exception_bad_image_format2 function.
17525         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17526         when file name pointed to an invalid IL image. Use 
17527         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17528         as this results in a more meaningful error message.
17529
17530 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17531
17532         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17533         #79465.
17534
17535 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17536
17537         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17538         consistency with the other _size functions.
17539         (mono_type_stack_size): Ditto.
17540
17541         * class.c object.c icall.c: Fix warnings caused by the above change.
17542
17543         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17544
17545         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17546
17547         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17548
17549 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17550
17551         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17552         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17553         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17554         threadpool.h, threads-types.h: mark more internal functions.
17555
17556 2006-10-11  Dick Porter  <dick@ximian.com>
17557
17558         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17559         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17560         reproduce the bug even before applying the fix.)
17561
17562 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17563
17564         * reflection.c: allow retrieving attributes for arguments in generic
17565         methods (bug #79241).
17566
17567 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17568
17569         * debug-mono-symfile.c: properly check fopen () result (found by
17570         coverity).
17571
17572 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17573
17574         * reflection.c: make error message clearer and fixed two
17575         issuelets found by Coverity.
17576
17577 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17578
17579         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17580
17581 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17582
17583         * object-internals.h, gc-internal.h, profiler-private.h:
17584         mark internal functions.
17585
17586 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17587
17588         * reflection.c: put data in the text section.
17589         * icall.c: recognize more types in type_from_typename ().
17590         * process.c, marshal.c: added some GC FIXMEs.
17591
17592 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17593
17594         * loader.c: check for NULL before initializing.
17595
17596 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17597
17598         * gc.c (finalizer_thread): Use a non-alertable wait here.
17599
17600         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17601         until the correct solution is found.
17602
17603 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17604
17605         * reflection.c (mono_module_get_object): Avoid an assert when operating on
17606         modules with no metadata. Fixes #79596.
17607
17608         * image.c (load_metadata_ptrs): Put back the error message when
17609         the #- heap is encountered since the support is not complete yet.
17610
17611 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17612
17613         * gc.c: do not allow the user to SuppressFinalize () a
17614         delegate because it would leak the trampoline if present.
17615
17616 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17617
17618         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
17619         PropertyPtr table.
17620
17621 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
17622
17623         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
17624
17625         * metadata.c (mono_metadata_get_param_attrs): Ditto.
17626
17627         * row-indexes.h: Add definitions for *Ptr tables.
17628
17629         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
17630
17631         * metadata.c (mono_metadata_translate_token_index): New helper function to
17632         translate table indexes used in uncompressed metadata.
17633         (mono_metadata_decode_table_row): Ditto.
17634         (mono_metadata_decode_table_row_col): Ditto.
17635
17636         * metadata.c: Add table schema for *Ptr tables.
17637
17638         * class.c loader.c: Use the new helper function to access the affected metadata
17639         tables.
17640         
17641         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
17642         #38532.
17643         
17644 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
17645
17646         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
17647         sequences which can be unbounded in size. Fixes #79583.
17648
17649 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
17650
17651         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
17652         static initialization.
17653
17654         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
17655
17656         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
17657
17658         * domain.c (mono_domain_free): Free up type_init_exception_hash.
17659
17660         * object.c (mono_runtime_class_init): Implement correct semantics when a static
17661         ctor fails, i.e. throw the same exception on subsequent accesses.
17662         
17663 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
17664
17665         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
17666         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
17667         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
17668         Handle marshalling of interfaces and VARIANTs contained in structs.
17669         
17670         Code is contributed under MIT/X11 license.
17671         
17672 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
17673
17674         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
17675         
17676         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
17677         mempool.
17678
17679 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17680
17681         * console-io.c: ignore previous SIGINT handler.
17682
17683 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
17684
17685         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
17686         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
17687         #79460, #79461, #79485.
17688
17689         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
17690
17691         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
17692         #79217.
17693
17694 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
17695
17696         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
17697         could be generated from it.
17698
17699 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
17700
17701         * rand.c: fix read loop to correctly handle EINTR.
17702
17703 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17704
17705         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
17706         internal calls are defined to keep methods closer to the declaring
17707         type and allow a significant reduction in runtime relocations and
17708         memory usage.
17709
17710 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
17711
17712         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
17713         exception message to have FileNotFoundException use the default
17714         assembly load error message. Fixes bug #79426.
17715         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
17716
17717 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17718
17719         * threadpool.c: (start_thread_or_queue) use the root domain when
17720         creating the thread instead of the async object one.
17721
17722 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
17723
17724         * class.c, object.c, class-internals.h, reflection.c:
17725         for arrays, store element_size inside MonoClass (speedup
17726         for array object creation).
17727
17728 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
17729
17730         * icall.c: fixed CodeBase to use the file name and not the module
17731         name (bug #79365).
17732
17733 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17734
17735         * mono-debug.c, mono-debug.h: export find_method as
17736         mono_debug_find_method ().
17737
17738 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17739
17740         * debug-helpers.c, class-internals.h: added a few functions useful
17741         when debugging under gdb.
17742
17743 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17744
17745         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
17746         characters that need special handling.
17747
17748 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
17749
17750         * mono-config.c: make the os/cpu specification more flexible,
17751         allowing lists and negation.
17752
17753 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
17754
17755         * marshal.c: COM Interop fixes. Handle case where method->klass.
17756         is interface. Handle BSTR/MonoString when null. Use CDECL as 
17757         calling convention on non-windows platforms. This is for
17758         compatibility with XPCOM and MainWin COM.
17759         
17760         Code is contributed under MIT/X11 license.
17761         
17762
17763 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
17764
17765         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
17766         correctly. Fixes #79217.
17767
17768         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
17769
17770 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
17771
17772         * mono-config.c: allow both an os and cpu attribute for dllmap
17773         and dllentry elemnets to enable a single config file to be used
17774         for multiple architectures.
17775
17776 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
17777
17778         * loader.c: MonoLoaderError was cleared too soon on load failure.
17779         Fixes bug #79424.
17780
17781 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
17782
17783         * icall.c: use the defining class vtable when accessing a
17784         static field, not a pobblibly derived class.
17785
17786 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
17787
17788         * icall.c string-icalls.c: Remove references to unicode.h.
17789
17790         * unicode.h unicode.c Makefile.am: Remove these unused source files.
17791
17792         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
17793
17794         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
17795         indicating the image where custom marshaller types should be looked up.
17796         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
17797         custom marshallers, instead of corlib. Fixes #79425.
17798
17799 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
17800
17801         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
17802
17803 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
17804
17805         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
17806         Implement Environment.ProcessorCount.
17807         
17808         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
17809         Implement Environment.ProcessorCount.
17810         
17811         * icall.c: 
17812         Add Environment.ProcessorCount icall.
17813         
17814         Patch by Jason McFall.
17815
17816 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17817
17818         * assembly.c: don't append .exe/.dll when the filename already contains
17819         one of those extensions.
17820
17821 2006-09-12  Martin Baulig  <martin@ximian.com>
17822
17823         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
17824         to array interfaces.
17825
17826 2006-09-11  Martin Baulig  <martin@ximian.com>
17827
17828         * reflection.c (mono_image_build_metadata): Create the
17829         MethodImpl's after emitting all types and methods, so we don't
17830         need another fixup pass for them.
17831
17832 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
17833
17834         * class.c (mono_class_from_name_case): Fix regression introduced by the last
17835         change.
17836
17837 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
17838
17839         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
17840         unload.
17841
17842 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
17843
17844         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
17845         args is not set. Fixes #78926.
17846
17847 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
17848
17849         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
17850
17851         * image.c (load_class_names): Move this to class.c, and rename it to 
17852         'mono_image_init_name_cache'.
17853         (load_modules): Fix a warning.
17854
17855         * class.c icall.c image.c: Initialize image->name_cache lazily.
17856
17857         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
17858         on its name using information in the AOT file.
17859
17860         * class.c (mono_class_from_name): Use the new hook function.
17861
17862 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
17863
17864         * reflection.c (mono_param_get_objects): Handle enum default parameter values
17865         correctly.
17866
17867         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
17868         Fixes #79289.
17869         
17870 2006-09-06  Martin Baulig  <martin@ximian.com>
17871
17872         * icall.c (mono_lookup_internal_call): Small fix.
17873
17874 2006-09-05  Raja R Harinath  <rharinath@novell.com>
17875
17876         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
17877         double g_free.
17878
17879 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
17880
17881         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
17882         when --debug is specified.
17883
17884 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
17885
17886         * class.c (setup_generic_array_ifaces): Fix a warning.
17887
17888 2006-09-04  Miguel de Icaza  <miguel@novell.com>
17889
17890         * Temporarily remove the patch to assemly.c that checks the
17891         assembly versions as it breaks our gacutil.
17892
17893 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
17894
17895         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
17896
17897         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
17898         a net 1.0 runtime.
17899
17900         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
17901         created using the default ctor. Fixes #79152.
17902         (mono_string_builder_to_utf16): Ditto.
17903
17904 2006-09-01  Martin Baulig  <martin@ximian.com>
17905
17906         Fix handling of the generic array interfaces.
17907
17908         * class-internals.h
17909         (MonoDefaults): Removed `generic_array_class' and added
17910         `generic_ilist' class.
17911
17912         * class.c
17913         (mono_bounded_array_class_get): Add the new generic array interfaces.
17914         (setup_generic_array_ifaces): New static method; create vtable
17915         entries for each method in the generic array interfaces.
17916
17917         * metadata.c
17918         (select_container): Allow "parent-less" generic methods.
17919
17920         * marshal.c
17921         (mono_marshal_get_generic_array_helper): New public method.
17922
17923         * icall.c
17924         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
17925         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
17926         moved the interncall into System.Array.
17927
17928 2006-09-01  Raja R Harinath  <rharinath@novell.com>
17929
17930         A few more cases of avoiding work on types with ->byref set.
17931         Has the real fix for #79238
17932         * icall.c (is_generic_parameter): New helper.
17933         (ves_icall_Type_GetGenericParameterPosition): Use it.
17934         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
17935         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
17936         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17937         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
17938         reference types.
17939         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
17940         reference types.
17941         (ves_icall_Type_get_IsGenericInstance): Likewise.
17942         (ves_icall_Type_get_IsGenericType): Likewise.
17943
17944 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
17945
17946         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
17947         class if possible.
17948
17949         * mempool.h (mono_mempool_get_allocated): New helper function.
17950
17951         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
17952         change.
17953
17954         * mempool.c: Fix warnings and the calculation of stats.
17955
17956         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
17957
17958         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
17959
17960         * loader.c (mono_get_method_from_token): Update method_count stat.
17961
17962         * class-internals.h (MonoStats): Add some stats.
17963
17964 2006-08-31 Robert Jordan  <robertj@gmx.net>
17965
17966         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
17967         with managed variants.
17968         All code is contributed under the MIT/X11 license.
17969         
17970 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
17971
17972         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
17973         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
17974
17975         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
17976
17977         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
17978         with cycles in classes.
17979
17980         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
17981
17982         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
17983         missing a [MarshalAs] directive. Fixes #79203.
17984
17985         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
17986         klass->marshal_info. Fixes #79217.
17987
17988 2006-08-30  Martin Baulig  <martin@ximian.com>
17989
17990         Committing a patch from Joachim Ante <joe@otee.dk>:
17991         Add support for binary data symbol stores.
17992
17993         * debug-mono-symfile.c
17994         (mono_debug_open_mono_symbol_file): Renamed into
17995         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
17996         arguments.
17997
17998         * mono-debug.c
17999         (mono_debug_open_image): Added `raw_contents' and `size' args.
18000         (mono_debug_init_2_memory): New public function.
18001
18002 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
18003
18004         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
18005
18006 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18007
18008         * appdomain.c: implement support for ShadowCopyFiles.
18009
18010 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
18011
18012         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
18013         when value is NULL (and should remove CID #51).
18014
18015 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18016
18017         * image.c: moved 2 functions to ../utils.
18018
18019 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
18020
18021         * gc.c: cope with the target object of a GC handle being NULL
18022         (bug #78877).
18023
18024 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
18025
18026         * class.c: recursively check parent's explicit implementations
18027         of interface methods (fixes bug #79125).
18028
18029 2006-08-19  Miguel de Icaza  <miguel@novell.com>
18030
18031         * filewatcher.c: Avoid warnings when building, do not redefine
18032         constants that are defined.
18033
18034         Remove warnings.
18035
18036 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18037
18038         * image.c: don't fail when the link points to an absolute path.
18039
18040 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
18041
18042         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
18043         Fix CID #3.
18044
18045 2006-08-17  Miguel de Icaza  <miguel@novell.com>
18046
18047         * image.c (full_path): A new method used to obtain the actual path
18048         of an assembly even in the presence of symbolic links.  
18049
18050         This is necessary for the case where we are running a binary that
18051         has been GACed, but we are using the "published" path name
18052         ($prefix/mono/1.0/blah.exe) which happens to point to the real
18053         file in the GAC.
18054
18055         This was the source of the failure for the `xsp' command with the
18056         recent AppDomain changes, as far as the runtime was concerned,
18057         there were two different assemblies: $prefix/mono/1.0/blah.exe and
18058         $prefix/mono/gac/blah/version/blah.exe.
18059
18060         (do_mono_image_open): use full path
18061
18062 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18063
18064         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
18065
18066 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
18067
18068         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
18069         domain_id is supplied. Fix CID #241 and corlib's unit tests.
18070
18071 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18072
18073         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
18074         small structures. Fixes #78990.
18075
18076 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18077
18078         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
18079
18080         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
18081
18082 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18083
18084         * appdomain.c:
18085         * marshal.c: don't load all the assemblies from a domain into newly
18086         created ones. The new domains might have different rules and load
18087         assemblies from different locations. Fixes bug #76757.
18088
18089         Patch by Lluis. Conflicts resolved by Brian Crowell.
18090
18091 2006-08-16  Alp Toker  <alp@atoker.com>
18092
18093         * socket-io.c: First half of the fix for #79084.
18094         Set sa_size to the length of the content, not that of the struct.
18095         Don't add NULL suffix to the content, this should be done in
18096         managed code if needed.
18097
18098 2006-08-14  Raja R Harinath  <rharinath@novell.com>
18099
18100         Fix part of #79012
18101         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18102         mono_metadata_parse_type returns NULL.
18103
18104 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
18105
18106         * normalization-tables.h : new file for string normalization data.
18107         * locales.c, locales.h, icall.c :
18108           added load_normalization_resource() for string normalization,
18109           and icall as well.
18110         * Makefile.am : added normalization-tables.h to the sources.
18111
18112 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
18113
18114         * marshal.c: Add more helper functions to reduce code duplication and use them
18115         everywhere.
18116
18117 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
18118
18119         * marshal.c: Fix non-x86 stdcall warnings.
18120         
18121         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
18122         them everywhere.
18123
18124 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
18125
18126         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18127         type check on multi-dimensional arrays. Fixes #79000.
18128
18129 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
18130
18131         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18132         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18133         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18134         * class-internals.h: add is_com_object to class structure.
18135         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18136         null checks to COM object marshalling. Fix .ctor call on RCW.
18137         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18138         
18139         All code is contributed under the MIT/X11 license.
18140
18141 2006-08-09  Dick Porter  <dick@ximian.com>
18142
18143         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18144         racing mono_monitor_allocator_lock() somewhere, so don't delete
18145         the critical section for now.  Found by running and exiting
18146         monodevelop.
18147
18148 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
18149
18150         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18151         (ves_icall_System_ComObject_FindInterface): Ditto.
18152         (ves_icall_System_ComObject_CacheInterface): Ditto.
18153
18154         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18155         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18156
18157 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18158
18159         * threadpool.c: treat pipes from process asynchronous reads as sockets
18160         when reading from them, so we get select/poll or epoll to wait for
18161         data.
18162
18163 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
18164
18165         * loader.c: Fix a typo (CID #233) in the null check.
18166
18167 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
18168
18169         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18170         Hopefully fixes #78949.
18171         
18172         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
18173         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18174         bytes. Fixes #78972.
18175
18176 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18177
18178         * filewatcher.c: we need to set errno here.
18179
18180 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18181
18182         * filewatcher.c: let Win32Exception get the error value.
18183
18184 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18185
18186         * filewatcher.c: translate errno into win32 errors for Win32Exception
18187         to know what happened.
18188
18189 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
18190
18191         * threadpool.c: Fix more warnings.
18192
18193         * assembly.c (search_loaded): Fix warnings.
18194
18195         * threadpool.c (mono_thread_pool_finish): Fix warnings.
18196         (mono_async_invoke): Ditto.
18197
18198 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
18199
18200         * object.c (mono_remote_class_vtable): Need to create proxy vtable
18201         entries for __ComObject type in addition to ComImport types.
18202         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
18203         about hash table.
18204         
18205         All code is contributed under the MIT/X11 license.
18206
18207 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18208
18209         * image.c: avoid tentative loading of modulerefs that contain
18210         no metadata (P/Invoke library names).
18211
18212 2006-07-28  Dick Porter  <dick@ximian.com>
18213
18214         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
18215         mono_loader_lock() somewhere, so don't delete the critical section
18216         for now.  Found by running and exiting monodevelop.
18217
18218 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18219
18220         * filewatcher.c: define the inotify syscalls when we're building on
18221         linux and have sys/syscall.h. The build system might not have support
18222         for inotify but the target system might have it.
18223
18224 2006-07-26  Miguel de Icaza  <miguel@novell.com>
18225
18226         * domain.c: Documentation updates.
18227
18228         * loader.c (mono_free_method): Do not release the method
18229         information if we are being profiled, as profilers will use this
18230         information at shut down to present some data to the user.
18231
18232         This is needed so that the profiler does not crash, as the
18233         profiler tends to keep MonoMethods around, and they might become
18234         invalid if we free these.
18235
18236         (mono_get_method_constrained): Return the original CIL stream
18237         method as well, so verification can be performed against it.
18238
18239 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18240
18241         * filewatcher.[ch]: support for inotify file system watcher.
18242         * icall.c: add new internal calls for the inotify file system watcher.
18243
18244 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18245
18246         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
18247         #78888.
18248
18249 2006-07-20  Dick Porter  <dick@ximian.com>
18250
18251         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
18252         warning.
18253
18254 2006-07-20  Dick Porter  <dick@ximian.com>
18255
18256         * threads.c (start_wrapper): Do the thread cleanup while we still
18257         hold a reference to its object.  Fixes bug 78123.
18258
18259 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
18260
18261         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
18262         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
18263           "managed-to-managed".
18264         * icall.c: Redirect string constructors that take sbyte* to
18265           ves_icall_System_String_ctor_RedirectToCreateString.
18266         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
18267           to CreateString () methods with matching signature.
18268         * reflection.c: Use original security informations for
18269           MONO_WRAPPER_MANAGED_TO_MANAGED.
18270         * security-manager.c: Use original security informations for
18271           MONO_WRAPPER_MANAGED_TO_MANAGED.
18272         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
18273           that is a placeholder and only its address should be used.
18274         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
18275           that is a placeholder and only its address should be used.
18276
18277 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
18278
18279         Begin implementing COM Interop.
18280         * appdomain.c: Increment corlib version.
18281         * class.c: Set ComImport classes' parent to __ComObject.
18282         * loader.c: Mark cominterop methods as such.
18283         * domain.c: Add __ComObject class to MonoDefaults structure.
18284         * image.c: Add 2 hashtables to the image for COM Interop related methods
18285         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
18286         using the mempool allocator
18287         
18288         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
18289         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
18290         declaration for mono_metadata_type_dup_mp.
18291         
18292         * debug-helpers.c: Added strings for two additional wrapper types
18293         * object.c: Create proxy objects for ComImport classes
18294         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
18295         and added __ComObject class to MonoDefaults structure.
18296         
18297         * object-internals.h: Finish MonoRealProxy definition, and add definition of
18298         MonoComInteropProxy and MonoComObject.
18299         
18300         * marshal.c: Added support for COM Interop
18301         (signature_cominterop): Converts managed signature to corresponding
18302         unmanaged COM signature.
18303         (cominterop_get_function_pointer): gets unmanaged function pointer via
18304         COM object vtable
18305         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
18306         (cominterop_get_method_interface): returns interface type that method is defined on
18307         (mono_mb_emit_cominterop_call): emits native call to function pointer
18308         gotten from vtable
18309         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
18310         that matches signature of unmanaged function.
18311         (cominterop_get_native_wrapper): wrapper around adjusted method call.
18312         (cominterop_get_invoke): forwards call from proxy to __ComObject
18313         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
18314         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
18315         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
18316         
18317         * marshal.h: Added Marshal icall declarations.
18318         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
18319         so we can access them in finalizer
18320         
18321 2006-07-14  Dick Porter  <dick@ximian.com>
18322
18323         * object.c (mono_type_initialization_cleanup): Fix a race
18324         condition by temporarily commenting out the critical section
18325         deletion.
18326
18327 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
18328
18329         * reflection.c (create_custom_attr): Fix some warnings.
18330         (create_custom_attr_data): Ditto.
18331         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
18332         types. Fixes #78855.
18333
18334 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
18335
18336         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18337
18338         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18339
18340 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
18341
18342         * reflection.c (resolve_object): Add support for DynamicMethod.
18343
18344         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18345         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18346
18347 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
18348
18349         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
18350         don't leak GPtrArray's pdata has we have no use (nor free) for it.
18351
18352 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
18353
18354         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18355         Fixes #77888.
18356
18357 2006-06-30  Raja R Harinath  <rharinath@novell.com>
18358
18359         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18360         slightly: remove a shadow local variable.
18361
18362 2006-06-29  Raja R Harinath  <rharinath@novell.com>
18363
18364         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18365         definition that introduces the virtual function slot.
18366         Also fix Coverity #105.
18367
18368 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
18369
18370         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18371         for dynamic assemblies. Fixes #78724.
18372
18373 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
18374
18375         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18376         Fixes #78722.
18377
18378 2006-06-21  Martin Baulig  <martin@ximian.com>
18379
18380         * reflection.c
18381         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18382         fixes #76484.
18383
18384 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18385
18386         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18387
18388 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18389
18390         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18391         nor TYPEREFs.
18392         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18393         Inflate result if necessary.
18394         (mono_class_get_full): Remove old version.  Rename from
18395         'mono_class_get' and add 'context' argument.  Pass it to
18396         ..._create_from_typespec.
18397         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18398         (mono_ldtoken): Revert change below.
18399
18400 2006-06-20  Martin Baulig  <martin@ximian.com>
18401
18402         * class.c (mono_ldtoken): Don't pass the generic context to
18403         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18404
18405 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18406
18407         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18408         and later freeing it. Fixes #78638.
18409
18410 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18411
18412         * icall.c (mono_class_get_throw): Revert over-zealous error
18413         throwing, the caller for mono_class_get_throw will cope with
18414         errors when classes are not properly initialized already.
18415
18416         The code still copes with loader exceptions though.
18417
18418         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18419         
18420 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18421
18422         Fixes the `make run1' version of RuntimeAbort (to be commited,
18423         source is in Bugzilla).
18424         
18425         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18426         FALSE on class loading failure instead of returning true.
18427
18428         * class.c (mono_class_create_from_typedef): It is possible for
18429         mono_metadata_interfaces_from_typedef_full to fail if a class is
18430         not found, cope with this.
18431         
18432
18433 2006-06-14  Dick Porter  <dick@ximian.com>
18434
18435         * socket-io.c: 
18436         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18437         4.1.1
18438
18439 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18440
18441         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18442
18443 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18444
18445         * icall.c: Another fix for building mono in Visual Studio.
18446
18447 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18448
18449         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18450         
18451 2006-06-09  Martin Baulig  <martin@ximian.com>
18452
18453         * debug-mono-symfile.c: Put this back and really fix it this
18454         time. Sorry for all the trouble.
18455
18456 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18457
18458         * icall.c (mono_class_get_throw): Fix a warning.
18459         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18460         ReflectionTypeLoadException if needed. Fixes #78606.
18461
18462         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18463         (mono_class_init): Ditto.
18464
18465         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18466         ref_only exceptions.
18467         (mono_loader_clear_error): Make this work even if there is no error.
18468
18469 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18470
18471         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18472         Marshal.GetComSlotForMethodInfo using internal call.
18473
18474 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18475
18476         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18477         a function for signalling it.
18478
18479         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18480         a referenced assembly is not found.
18481
18482         * loader.c (mono_loader_error_prepare_exception): Add support for 
18483         LOADER_ERROR_ASSEMBLY. Fix formatting.
18484
18485 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18486
18487         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18488         for VARIANT marshalling on windows and increment corlib version
18489         since Variant struct was added.
18490
18491 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18492
18493         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18494         stack trace line information:
18495
18496         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18497         (Martin) when looking up B which is between A and C, return A not C.
18498
18499         Bug is #78573.
18500
18501         Thanks to Alexander Olk for tracking this down.
18502
18503 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18504
18505         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18506         
18507         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18508         avoid clobbering its value.
18509         (mono_string_to_lpstr): Fix a warning on windows.
18510
18511 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18512
18513         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18514
18515         * reflection.c loader.c: Removed references to 'dummy' flag.
18516
18517         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18518
18519         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18520         it gets GC tracking.
18521
18522         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18523         GC tracking.
18524         
18525         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18526
18527         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18528
18529         * appdomain.c: Bump corlib version.
18530
18531 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18532
18533         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18534         CEE_STIND_REF when working with object references.
18535
18536 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18537
18538         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18539         Fixes #78539.
18540
18541 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18542
18543         * loader.c (method_from_memberref): Fix argument value for
18544         mono_loader_set_error_method_load (I was passing the MonoClass
18545         instead of the class name char *).
18546
18547 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18548
18549         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18550         CEE_STIND_REF when working with object references.
18551
18552 2006-05-30  Martin Baulig  <martin@ximian.com>
18553
18554         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18555         mono_method_full_name() change and replace the ':' with a '.'
18556         here.
18557
18558 2006-05-30  Martin Baulig  <martin@ximian.com>
18559
18560         * debug-mono-symfile.c
18561         (mono_debug_symfile_lookup_location): Fix the algorithm:
18562         when looking up B which is between A and C, return A not C.
18563
18564 2006-05-29  Martin Baulig  <martin@ximian.com>
18565
18566         * mono-debug.h
18567         (MonoDebugMethodInfo): Make the typedef public.
18568         (MonoDebugSourceLocation): New public struct.
18569
18570         * mono-debug.c
18571         (mono_debug_source_location_from_address): Removed.
18572         (mono_debug_source_location_from_il_offset): Removed.
18573         (mono_debug_il_offset_from_address): Removed.
18574         (mono_debug_address_from_il_offset): Removed.
18575         (mono_debug_lookup_method): New public function.
18576         (mono_debug_lookup_source_location): New public function; replaces
18577         the old mono_debug_source_location_from_*() functions; see the
18578         inline documentation.
18579         (mono_debug_free_source_location): New public function.
18580         (mono_debug_print_stack_frame): New public function; see the
18581         inline documentation.
18582
18583         * debug-mono-symfile.c
18584         (mono_debug_find_source_location): Renamed into
18585         mono_debug_symfile_lookup_location(); only take a
18586         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18587         documentation.
18588         (mono_debug_find_method): Renamed into
18589         mono_debug_symfile_lookup_method().
18590
18591 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18592
18593         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18594         returned by mono_image_open_full ().
18595
18596         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18597         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18598         #78517.
18599
18600         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18601         #78518.
18602
18603 2006-05-27  Miguel de Icaza  <miguel@novell.com>
18604
18605         * class.c (mono_class_from_typeref): handle missing images
18606         earlier, deals with bug #78418.   Refactor code; 
18607
18608         Fix a warning introduced in my previous commit (some stale code
18609         from before I revisited my patch).
18610
18611         * class.c (mono_class_create_from_typedef): On failure, remove the
18612         class from the MonoImage->class_cache as the class is not
18613         initialized;   Fixes the leak pointed out by Paolo.
18614
18615 2006-05-25  Dick Porter  <dick@ximian.com>
18616
18617         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
18618         DeleteCriticalSections until I figure out which one may still be
18619         sometimes locked when mono_thread_cleanup is called.
18620
18621 2006-05-24  Dick Porter  <dick@ximian.com>
18622
18623         * threads.c (mono_thread_cleanup): Move the threading cleanup out
18624         of mono_thread_manage and back into its own function, so it can be
18625         called after the finalizer thread has finished.
18626
18627         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
18628
18629 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
18630
18631         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
18632         Fixes #78495.
18633
18634         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
18635         with non-blittable elements.
18636         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
18637
18638 2006-05-24  Martin Baulig  <martin@ximian.com>
18639
18640         * mono-debug-debugger.h (MonoDebuggerEvent): Added
18641         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
18642
18643         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
18644         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
18645         `mono_debugger_event_handler' to NULL.
18646
18647 2006-05-24  Martin Baulig  <martin@ximian.com>
18648
18649         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
18650
18651 2006-05-24  Martin Baulig  <martin@ximian.com>
18652
18653         * mono-debug-debugger.h
18654         (mono_debugger_create_notification_function): Added
18655         `MonoCodeManager *' argument.
18656
18657 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
18658
18659         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
18660
18661 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
18662
18663         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
18664         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
18665         implementation.
18666
18667 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
18668
18669         * icall.c: precise GC support: objects can't be stored in unmanaged
18670         memory anymore, even if they are kept alive by other references: since
18671         they can move the GC needs to be able to always find them.
18672
18673 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18674
18675         * object.c: precise GC support for static fields. Support
18676         for moving GCs: write barriers and pinned allocation for interned
18677         strings.
18678
18679 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18680
18681         * domain.c, domain-internals.h: precise GC support for the MonoDomain
18682         structure.
18683
18684 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18685
18686         * class.c, gc.c: sgen and precise GC updates.
18687
18688 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
18689
18690         * marshal.h, marshal.c: added write barrier wrapper and precise type
18691         fixes.
18692
18693 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
18694
18695         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
18696         support.
18697
18698 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
18699
18700         * reflection.c: precise and sgen GC updates.
18701
18702 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
18703
18704         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
18705
18706 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
18707
18708         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
18709
18710 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
18711
18712         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
18713         MONO_TYPE_OBJECT. Fixes #78462.
18714
18715 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
18716
18717         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
18718         and blittable types.
18719
18720 2006-05-17  Miguel de Icaza  <miguel@novell.com>
18721
18722         * class.c (mono_class_get_exception_for_failure): Implement parts
18723         of a TODO: if the loader error is set (instead of the class
18724         error), we return a Loader exception that can be properly thrown
18725         elsewhere.
18726
18727         This was exposed by some Winforms 2.0 code that I tried to run
18728         (Atsushi pointed me to it).
18729
18730 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
18731
18732         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
18733         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
18734         
18735         * marshal.c (emit_marshal_vtype): Add limited support for 
18736         UnmanagedType.LPStruct. Fixes #78427.
18737
18738         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
18739         Applied a patch from kangaroo to fix #77523.
18740
18741 2006-05-17  Martin Baulig  <martin@ximian.com>
18742
18743         * threads.c
18744         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
18745         (debugger_thread_created): Removed.
18746         (debugger_thread_exited): Removed.
18747
18748 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
18749
18750         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18751
18752         * object-internals.h (MonoReflectionResource): Sync with managed version.
18753
18754 2006-05-12  Wade Berrier <wberrier@novell.com>
18755
18756         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
18757
18758 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
18759
18760         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
18761         functions try to allocate from the image mempool.
18762
18763 2006-05-12  Dick Porter  <dick@ximian.com>
18764
18765         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
18766
18767 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
18768
18769         * object.c: The FieldGetter and FieldSetter methods require the full
18770         name of the class, not only the name. Fixes bug #78277.
18771
18772 2006-05-11  Miguel de Icaza  <miguel@novell.com>
18773
18774         * loader.c (method_from_memberref): Do not pass the NULL klass to
18775         mono_loader_set_error_() methods.  Pass the non-NULL value
18776         (class). 
18777
18778 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
18779
18780         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
18781         (mono_assembly_close): Null out assembly->image->references after freeing it.
18782
18783         * image.c (mono_image_close): Free image->references.
18784         
18785         * reflection.c (mono_image_basic_init): Fix a small memory leak.
18786
18787 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18788
18789         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
18790         before checking if it's NULL (g_assert).
18791
18792 2006-05-10  Martin Baulig  <martin@ximian.com>
18793
18794         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
18795         I thought I already killed that two months ago, but now it somehow reappeared.
18796
18797 2006-05-10  Martin Baulig  <martin@ximian.com>
18798
18799         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
18800
18801 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
18802
18803         * reflection.c: Allocate memory for dynamically created methods in the image
18804         mempools.
18805
18806 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18807
18808         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
18809         don't use the ad pointer before checking if it's NULL (g_assert).
18810
18811 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
18812
18813         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
18814         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
18815
18816         * marshal.c: Allocate all signatures from mempools.
18817
18818         * marshal.c: Allocate some more signatures from mempools.
18819
18820 2006-05-09  Miguel de Icaza  <miguel@novell.com>
18821
18822         * object.c (mono_load_remote_field): The code used to provide a
18823         temporary variable for returning results if the user did not
18824         provide a result pointer.  But our temporary variable was allocted
18825         on the satck.
18826
18827         Fix calling code to always pass a result area.   Coverity ID 103.
18828
18829 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
18830
18831         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
18832         value, not the old. Fixes #78312.
18833         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
18834
18835         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
18836         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
18837         per-image cache.
18838
18839         * assembly.c (mono_assembly_close): Free image->references.
18840
18841         * assembly.c (mono_assembly_names_equal): Fix a warning.
18842         (mono_assemblies_cleanup): Cleanup more global data.
18843
18844         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
18845
18846         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
18847         ptr_cache and image->modules.
18848
18849         * image.c (mono_image_init): Allocate array_cache lazily.
18850         
18851 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18852
18853         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
18854         behavior was changed recently and has bad side effects.
18855
18856 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
18857
18858         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
18859         
18860         * assembly.c (mono_assembly_close): Remove a debug printf.
18861
18862         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
18863
18864         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
18865         to also allow for temporary references between mono_image_open ()/close ().
18866
18867         * domain.c (get_runtimes_from_exe): Add a FIXME.        
18868
18869 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
18870
18871         * marshal.c: Fix support for dynamic methods.
18872
18873         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
18874
18875         * marshal.c (mono_marshal_cleanup): New cleanup function.
18876
18877         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
18878         image mempools.
18879
18880         * class.c (mono_class_init): Fix leaking class->nested_classes.
18881
18882         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
18883
18884         * image.c (mono_image_init): Initialize the new cashes.
18885
18886         * image.c (mono_image_close): Destroy the new cashes.
18887
18888         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
18889
18890         * mempool.c (mono_mempool_strdup): New helper function.
18891
18892         * class-internals.h: Add prototype for mono_loader_unlock ().
18893
18894         * domain.c (mono_jit_info_table_find): Fix a warning.
18895         (mono_debugger_check_runtime_version): Ditto.
18896
18897         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
18898         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
18899         functions to these modules.
18900
18901         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
18902         metadata modules.
18903         
18904         * marshal.c (mono_free_bstr): Fix a warning.
18905
18906         * assembly.c (mono_assembly_open_full): Fix another small leak.
18907
18908         * object.c: Fix some unload leaks in the remoting code.
18909
18910         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
18911         function.
18912
18913         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
18914
18915         * reflection.c: Fix some unload leaks in dynamic assemblies.
18916
18917 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
18918
18919         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
18920         * marshal.h: Add BSTR support on Win32
18921         * icall.c: Add BSTR icalls
18922         * metadata.h: Add BSTR enums
18923
18924 2006-04-28  Miguel de Icaza  <miguel@novell.com>
18925
18926         Work to catch the crash from #76795 and turn it into an
18927         exception.   As I stubbed out pieces of the VisualBasic support,
18928         I found a number of places where the code was failing and I added
18929         checks to those places. 
18930         
18931         * metadata.c (do_mono_metadata_parse_generic_class): Make this
18932         function return a status code.  If we fail to parse the signature
18933         from mono_metadata_parse_generic_inst, return FALSE.
18934
18935         * loader.c (mono_get_method_from_token): If we fail to load the
18936         method (mono_class_get) return NULL.   
18937
18938         * (method_from_memberref): Return NULL if we are unable to parse
18939         the method signature
18940
18941         (mono_loader_error_prepare_exception): Since we now use the
18942         loader_error flag internally to stop processing, and obtaining
18943         exceptions that might be thrown will walk this code path the
18944         proper way of going from a MonoLoaderError into a
18945         MonoException was convoluted.   This new routine encapsulates the
18946         process of turning the error into an exception and *clearing* the
18947         error afterwards.
18948         
18949 2006-04-27  Miguel de Icaza  <miguel@novell.com>
18950
18951         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
18952         with missing assemblies), and to cope with:
18953
18954                 * Missing fieldref from a non-existing assembly.
18955                 * Missing methodref from a non-existing assembly.
18956
18957         The first batch of work to address *some* of the issues from 76661.
18958         
18959         * object.c (mono_class_create_runtime_vtable): If we fail to
18960         initialize the class raise the exception here. 
18961
18962         * metadata.c (mono_class_get_overrides_full): If any methods fail
18963         to load return the failure to the caller.
18964
18965         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
18966         flagging assemblies that failed to load.   
18967
18968         Do not crash if we are unable to load the assembly.
18969
18970         (mono_assembly_close): Do nothing with REFERENCE_MISSING
18971         assemblies. 
18972
18973         * loader.c (mono_loader_set_error_type_load): Change the
18974         convention to always pass unallocated strings, so we make our own
18975         copies (I know our own code had duplicated strings before, but
18976         this keeps the normal conventions).
18977         (method_from_memberref): Call mono_loader_set_error_method_load
18978         for all possible failures of loading the class. 
18979         Remove assert, turn into a loader error.
18980
18981         (mono_loader_error_to_exception): Move this routine from mini
18982         (mini_loader_error_to_exception) there was no need to have that in
18983         mini. 
18984
18985         * class.c (mono_class_from_typeref): If we were not able to load
18986         the assembly with mono_assembly_load_reference, call the
18987         mono_loader_set_error_type_load to register the problem.
18988
18989         (mono_class_setup_fields): If we fail to load the type from
18990         mono_metadata_parse_type_full, call mono_class_set_failure and
18991         break from the loop.
18992
18993         If class->exception_type is set, we do not layout the fields as
18994         that might crash the runtime, and instead return (from breaking
18995         from the previous loop).
18996
18997         (mono_class_setup_vtable): This now returns a boolean indicating
18998         whether the table was properly setup.   The decision is driven by
18999         mono_class_get_overrides_full which might run into non-existing
19000         methods. 
19001         
19002         (mono_class_init): Returns TRUE on success or FALSE if there was a
19003         problem in loading the type (incorrect assemblies, missing
19004         assemblies, methods, etc).
19005
19006         When we call mono_class_setup_fields we also check for a potential
19007         error inside this call (either a class exception or a general
19008         loader exception).
19009
19010         (mono_class_create_from_typedef): If the parent fails to load
19011         (calling mono_class_get_full) return NULL.
19012         
19013         ** Important **
19014
19015         calls to mono_metadata_parse_type_full should be checked
19016         everywhere and set the mono_class_set_failure
19017         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
19018
19019         The current patch checks the places where my manually constructed
19020         tests show the errors are showing up, but we should do it
19021         everywhere. 
19022
19023         ** Important2 **
19024
19025         mono_class_init return values should be tested everywhere, like
19026         the previous case this is something that we should audit
19027         everywhere and not only on the cases exposed by the tests I
19028         created. 
19029
19030 2006-04-26  Miguel de Icaza  <miguel@novell.com>
19031
19032         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
19033         boolean parameter and instead pass the information on `options'
19034         parameter (FileOptions).
19035
19036         * icall.c: Register the new signature for MonoIO.Open.
19037
19038         * debug-helpers.c (dis_one): Trying to understand how coverity
19039         works.  Fix Run 5, item 78.
19040
19041 2006-04-26  Dick Porter  <dick@ximian.com>
19042
19043         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
19044         dereference.
19045
19046 2006-04-25  Martin Baulig  <martin@ximian.com>
19047
19048         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
19049
19050         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
19051         debugger_thread_created().
19052         (debugger_gc_push_all_stacks): Don't handle the main thread in any
19053         special way.
19054         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
19055         (mono_debugger_finalize_threads): New function; undo the effects
19056         of mono_debugger_init_threads().
19057         (mono_debugger_create_all_threads): Removed.
19058
19059 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
19060
19061         * image.c (mono_image_close): Tidy up trace messages.
19062
19063         * assembly.c (mono_assembly_close): Ditto.
19064
19065         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
19066         no longer references an already freed assembly. Fixes #78168.
19067
19068 2006-04-21  Dick Porter  <dick@ximian.com>
19069
19070         * threads.c (mono_thread_detach): Fix reference counting when
19071         detaching threads.
19072
19073 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
19074
19075         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
19076         #78155.
19077
19078 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
19079
19080         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
19081         (mono_type_to_stind): Ditto.
19082
19083         * marshal.c: Use the new helper functions to simplify code.
19084
19085         * image.c (mono_image_close): Add some code for help debug assembly unloading
19086         problems.
19087
19088         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
19089         image mempool.
19090
19091         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19092         assembly was already loaded in another appdomain. Fixes #78083.
19093
19094 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
19095
19096         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19097         referenced assemblies.
19098         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19099
19100         * domain.c (mono_domain_free): Add a trace message.
19101
19102         * appdomain.c (add_assemblies_to_domain): Ditto.        
19103
19104         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19105         field.  
19106
19107 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19108
19109         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19110
19111 2006-04-12  Martin Baulig  <martin@ximian.com>
19112
19113         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19114         `USE_INCLUDED_LIBGC'.   
19115
19116 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19117
19118         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19119         the patch contains ../ and a small directory name later. Hopefully fixes
19120         #78035.
19121
19122 2006-04-10  Martin Baulig  <martin@ximian.com>
19123
19124         Clean up the debugger's thread-handling code.
19125
19126         The debugger's thread-handling code has been moved from
19127         ../mini/debug-debugger.c to threads.c.  We now iterate directly
19128         over the `threads' hash, keep track of exiting threads and also
19129         use proper locking.
19130
19131         We can now debug XSP and XSP based applications with the debugger.
19132
19133         * object-internals.h (MonoThread): Added `gpointer end_stack'.
19134
19135         * threads.h
19136         (MonoThreadCallbacks): Removed; this was only used by the debugger.
19137         (mono_install_thread_callbacks): Likewise.      
19138
19139         * threads.c (mono_thread_callbacks): Removed.
19140         (debugger_thread_created, debugger_thread_exited): New static functions.
19141         (start_wrapper): Call debugger_thread_created().
19142         (thread_cleanup): Call debugger_thread_exited().
19143         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19144         (mono_debugger_init_threads): New public function.
19145         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19146         iterate directly over the `threads' hash and also use proper locking.
19147
19148         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19149
19150         * mono-debug-debugger.h
19151         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19152
19153 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
19154
19155         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
19156         argument type=array. Fixes #78057.
19157
19158 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
19159
19160         * culture-info-table.h : regenerated. Fixed bug #69652.
19161
19162 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
19163
19164         * loader.c metadata.c: Reapply a variant r59116.
19165         
19166         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19167
19168         * class.c (mono_class_setup_interface_offsets): New internal function.
19169
19170         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19171         interfaces too. Fixes #77398.
19172
19173         * reflection.c (encode_cattr_value): Add support for 
19174         parameter type=object, argument type=array.
19175         (load_cattr_value): Ditto. Fixes #77916.
19176
19177         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19178         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19179
19180         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19181         a byval char array and CharSet is Ansi.
19182
19183         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19184
19185 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
19186
19187         * metadata.c: Add some locking comments.
19188         
19189         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19190         mempool.
19191         (mono_metadata_free_method_signature): Don't free the signature itself.
19192
19193         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
19194
19195         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
19196         reference the same MonoImage.
19197         (mono_assembly_load_from_full): Add an assert.
19198
19199 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
19200
19201         * image.c (mono_image_close): Don't put the image we are about to free into the
19202         loaded_images_guid_hash.
19203
19204         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
19205         to reduce code duplication.
19206
19207         * marshal.c: Register the native functions called by this module as icalls, to
19208         somewhat centralize the creation of MonoMethodSignature's.
19209
19210         * loader.c (mono_method_signature): Add a cache for method signatures.
19211
19212         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
19213         the parameter attributes of a method.
19214         (mono_metadata_parse_method_signature_full): Refactored the computation of
19215         parameter attributes into a separate function. Also avoid one allocation in
19216         most cases.
19217
19218         * assembly.c (mono_assembly_close): Ditto.
19219
19220         * image.c (mono_image_close): Log trace messages with INFO level.
19221
19222         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
19223
19224         * image.c reflection.c: Correct reference counting of image modules.
19225         
19226         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
19227         of this function from the image mempool.
19228         
19229         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
19230         to allow more cached types to be used.
19231
19232         * mono-debug.c (mono_debug_add_method): Appled patch from
19233         David S. Miller  <davem@sunset.davemloft.net>: Access 
19234         minfo->lexical_blocks[] entry elements using read32().
19235
19236 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
19237
19238         * loader.c (mono_free_method): No longer free the method header for non-dynamic
19239         methods as it is allocated from the mempool.
19240
19241         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
19242         image mempool.
19243
19244         * metadata-internals.h: Add comments describing the reference counting scheme
19245         used for MonoImage and MonoAssembly.
19246
19247         * image.c assembly.c reflection.c: Rework reference counting of images and 
19248         assemblies so they are freed when the runtime is shut down. Free some 
19249         additional memory structures when an image is unloaded.
19250         
19251 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
19252
19253         * class.c loader.c reflection.c: Allocate more data structures in
19254         the image mempool.
19255
19256 2006-03-31  Miguel de Icaza  <miguel@novell.com>
19257
19258         * icall.c
19259         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
19260         build on pre glib 2.4 systems.
19261
19262 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
19263
19264         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
19265
19266         * icall.c: Fix some warnings.
19267
19268 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
19269
19270         * culture-info-table.h : regenerated.
19271
19272 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
19273
19274         * threads.c, object-internals.h, verify.c: changed the culture caching
19275         code to use a normal MonoArray for storage so the GC can keep track of
19276         them easily. Fixed bits of the cache logic, too and simplified the
19277         code.
19278
19279 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
19280
19281         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
19282         thread for non-Boehm GCs.
19283
19284 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
19285
19286         * domain.c, object.c, domain-internals.h: reduce the amount of memory
19287         needed to keep track of the data for static fields.
19288
19289 2006-03-29  Raja R Harinath  <rharinath@novell.com>
19290
19291         Fix #75172
19292         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
19293         for interface classes.  Use 'num_methods' instead.
19294         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
19295         before using '->vtable_size' field.
19296
19297 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
19298
19299         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
19300         doesn't contain managed pointers, so use a normal hashtable.
19301
19302 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
19303
19304         * reflection.c, class-internals.h, domain.c: fixed handling of types
19305         used as values for objects in custom attributes (bug #77915):
19306
19307 2006-03-24  Martin Baulig  <martin@ximian.com>
19308
19309         * class.c (mono_class_setup_fields): Added support for generic
19310         instances; fixes #77580.
19311
19312 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19313
19314         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
19315
19316 2006-03-24  Dick Porter  <dick@ximian.com>
19317
19318         * file-io.c (get_file_attributes): More stat macro breakage.
19319         Fixes bug 77759.
19320
19321 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
19322
19323         * profiler.c: added the file=filename option in the default profiler
19324         to output the profile data to filename.
19325
19326 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19327
19328         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
19329         bug #77877.
19330
19331 2006-03-22  Martin Baulig  <martin@ximian.com>
19332
19333         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
19334         allocated `MonoClassField *' in `fb->handle'.
19335
19336 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19337
19338         * class.c, image.c, metadata-internals.h: implemented new mechanism to
19339         allocate interface ID to save memory and allow better ID reuse on
19340         appdomain unload. setup_generic_vtable () removal from Martin.
19341
19342 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19343
19344         * object.h, appdomain.c, domain.c, exception.c, icall.c,
19345         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19346         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19347         write barriers for reference stores with managed objects accessed with
19348         C structures in the runtime and in embedding programs.
19349
19350 2006-03-20  Raja R Harinath  <rharinath@novell.com>
19351
19352         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19353         'interface_id' and 'max_interface_id' fields of MonoClasses
19354         representing open generic types.
19355
19356 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19357
19358         * object.h, object.c, icall.c: added functions to deal with
19359         storing valuetypes that contain references in managed objects.
19360         * reflection.c, string-icalls.c, threads.c, marshal.c: small
19361         fixes and comments around uses of mono_array_addr ().
19362
19363 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19364
19365         * object.h, icall.c, monitor.c: object.GetHashCode ()
19366         implementation that supports the moving garbage collector.
19367
19368 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19369
19370         * icall.c, threads-types.h, threads.c: implemented finalizer for
19371         LocalDataStoreSlot.
19372
19373 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
19374
19375         * metadata.c (mono_type_size): Add a fixme.
19376         (mono_type_stack_size): Ditto.
19377
19378         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19379         'type_forwarders' field.
19380
19381         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19382         attribute from net 2.0.
19383
19384         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19385         from class.c.
19386
19387         * class.c (mono_class_setup_fields): Fix a warning.
19388         
19389         * class.c (mono_class_from_name): Add support for assemblyref entries
19390         in the EXPORTEDTYPE table.
19391
19392         * reflection.c: Add support for handling type forwarders under net 2.0.
19393
19394         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19395         
19396 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19397
19398         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19399         overwriting entries in ModuleBuild->types, also clean up the code
19400         a little. Fixes #77774.
19401
19402 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19403
19404         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19405         load friend assembly info when present.
19406
19407 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19408
19409         Fix crasher on gtest-158.cs.
19410         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19411         the return value if the MonoClass we want is yet in an
19412         inconsistent state.
19413         * class.c (mono_class_create_from_typedef): Add an comment
19414         explaining an order dependency between mono_class_setup_parent and
19415         mono_class_setup_mono_type.
19416
19417 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19418
19419         * class.c: documentation updates and events bug fix.
19420
19421 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19422
19423         * class.c: some cleanup, locking fixes.
19424
19425 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19426
19427         * class.c: fix the generics code to setup nested
19428         type info to the instantiated type (bug #77770).
19429
19430 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19431
19432         * marshal.c: fixed a few type correctness issues.
19433
19434 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19435
19436         * loader.c: the Set/Get/Addrtess array methods should be public.
19437
19438 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19439
19440         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19441         
19442         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19443         info->wrapper.
19444
19445 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19446
19447         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19448
19449         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19450
19451         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19452         (mono_mempool_alloc0): Ditto.
19453
19454 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19455
19456         * socket-io.c:
19457         (create_object_from_sockaddr): it was allocating 4 extra bytes
19458         for the AF_UNIX data. Fixes bug #77747.
19459
19460 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19461
19462         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19463
19464 2006-03-09  Dick Porter  <dick@ximian.com>
19465
19466         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19467         Fixes bug 76966 again.
19468
19469 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19470
19471         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19472         names from r57532
19473         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19474
19475 2006-03-07  Martin Baulig  <martin@ximian.com>
19476
19477         * object.c
19478         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19479
19480 2006-03-07  Martin Baulig  <martin@ximian.com>
19481
19482         * class.c
19483         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19484         regression introduced in r56970; see gtest-252.cs.
19485
19486         * loader.c (mono_get_method_constrained): Correctly handle generic
19487         methods; see gtest-253.cs.
19488
19489 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19490
19491         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19492
19493 2006-03-04  Martin Baulig  <martin@ximian.com>
19494
19495         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19496         compute the parent type at runtime, just like we're already doing
19497         it for interfaces.
19498
19499         * reflection.c
19500         (mono_reflection_bind_generic_parameters): Don't compute the
19501         parent type anymore.
19502
19503         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19504
19505 2006-03-04  Martin Baulig  <martin@ximian.com>
19506
19507         * mono-debug-debugger.h
19508         (mono_debugger_create_notification_function): Allocate memory at
19509         runtime and return a pointer to it.
19510
19511 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19512
19513         * assembly.c: Fix windows build.
19514         
19515         * assembly.c: Fix build.
19516
19517         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19518
19519         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19520         
19521 2006-03-03  Dick Porter  <dick@ximian.com>
19522
19523         * process.c
19524         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19525         Check parameters before dereferencing them.  Fixes Aaron's part of
19526         bug 77393.
19527
19528 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19529
19530         Fix performance regression.
19531         * loader.c (find_method_in_class): Add 'from_class' argument.
19532         Rename 'klass' argument to 'in_class'.  The signature is compared
19533         against the method in 'in_class', and the corresponding method is
19534         returned from 'from_class'.
19535         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19536         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19537         type definition and generic instantiation in parallel.
19538         (mono_get_method_constrained): Update to changes.
19539
19540 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19541
19542         * threads.c: make sure the domain is correct, too when doing
19543         mono_thread_attach ().
19544
19545 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19546
19547         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19548         windows. Fixes #77683.
19549
19550 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19551
19552         * object.h, *: introduced specific way to set elements of an array
19553         of references to be used as write barrier. Still need to audit the
19554         uses of mono_array_addr.
19555
19556 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19557
19558         * object-internals.h: New field to cache the assmebly name, patch
19559         from Tambet Ingo (tambet@ximian.com)
19560
19561 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19562
19563         * decimal.h, class-internals.h, metadata-internals.h,
19564         file-io.h: mark a few function declarations as internal, to
19565         reduce the number of PLT entries.
19566
19567 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19568
19569         * file-io.c: fix typo in warning message.
19570
19571 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19572
19573         * loader.c: on unix, lookup the "*A" version of a function
19574         if charset is auto as a second option before failing.
19575
19576 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19577
19578         * class.h (mono_class_inflate_generic_method): Revert to two
19579         argument version.
19580         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19581         (mono_class_inflate_generic_method_full): Add.
19582         * class.c (mono_class_inflate_generic_method_full): Rename from
19583         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19584         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19585         * loader.c, reflection.c: Update to changes.
19586
19587 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19588
19589         * icall.c: const fixes and small improvements.
19590
19591 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19592
19593         * threadpool.c: for asynchronous connect(), enable the same workaround
19594         for BSD 6 as for the Mac. Fixes bug #77637.
19595
19596 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19597
19598         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19599         formatted classes. Fixes #77524.
19600
19601 2006-02-24  Raja R Harinath  <rharinath@novell.com>
19602
19603         * class.c (inflate_generic_type): Add a couple more
19604         micro-optimizations.
19605         (inflate_generic_context): Don't use the 'gmethod' from
19606         'inflate_with'.
19607         (mono_class_inflate_generic_method): If the method has generic
19608         parameters, but the passed-in context doesn't have a 'gmethod',
19609         create one.  Use the possibly simplified generic instantiation
19610         from the declaring class instead of the one passed in.
19611
19612 2006-02-24  Raja R Harinath  <harinath@gmail.com>
19613
19614         Make generic method signature and method header handling lazy.
19615         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
19616         (inflate_generic_header): Likewise.
19617         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
19618         parameter to avoid inflating types.
19619         (mono_get_inflated_method): Empty out.
19620         * class.h (mono_class_inflate_generic_method): Update to changes.
19621         * loader.c (mono_get_method_from_token): Don't parse signature for
19622         generic methods, nor methods of generic classes.
19623         (mono_method_signature): Rename from 'mono_method_signature'.
19624         Inflate signature on demand.
19625         (mono_method_get_header): Inflate method header on demand.
19626         * reflection.c: Update to changes.
19627
19628 2006-02-23  Raja R Harinath  <rharinath@novell.com>
19629
19630         * metadata.c (mono_metadata_inflate_generic_inst): If the
19631         instantiation is closed, don't bother expanding it in the new
19632         context.
19633         * class.c (inflate_generic_class): If the generic instantiation
19634         doesn't change after inflation, return the argument itself.
19635         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
19636         Add bounds checks.
19637         (inflate_generic_context): If neither the generic class nor the
19638         generic method instantiations change, return the original context.
19639         * reflection.c (mono_method_get_object): Do
19640         'mono_get_inflated_method' before accessing the ->klass field.
19641         (inflate_mono_method): Don't create a MonoGenericMethod unless
19642         necessary.
19643         (inflate_method): Don't pass a constructed type as the declaring
19644         type of a methodbuilder.
19645
19646 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
19647
19648         * object.c: fix memory overwrite.
19649
19650 2006-02-22  Dick Porter  <dick@ximian.com>
19651
19652         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
19653         it doesn't work any more.
19654         (mono_threads_request_thread_dump): Fix unused variable warnings.
19655
19656 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19657
19658         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
19659         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
19660         the public header file.
19661
19662 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
19663
19664         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
19665
19666 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
19667
19668         * class-internals.h, object.c: reduce the size of MonoVTable
19669         and store the interface_offsets array at negative offsets.
19670
19671 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
19672
19673         * metadata.c: tweak table descriptors data structures to reduce
19674         size and runtime relocations.
19675
19676 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19677
19678         * marshal.c: fix some types and opcodes to be type-safe
19679         in marshaling wrappers.
19680
19681 2006-02-21  Ankit Jain  <jankit@novell.com>
19682
19683         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
19684
19685 2006-02-21  Raja R Harinath  <rharinath@novell.com>
19686
19687         * metadata.c (get_constraints): Relax debugging checks for monodis.
19688
19689 2006-02-21  Ankit Jain  <jankit@novell.com>
19690
19691         * metadata.c (mono_metadata_load_generic_params): Move the code
19692         checking for ambiguous generic params from here to mono/dis/get.c
19693         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
19694
19695 2006-02-21  Raja R Harinath  <harinath@gmail.com>
19696
19697         Fix assertion triggered when compiling nemerle.
19698         * class.c (mono_get_shared_generic_inst): Rename from
19699         get_shared_inst and make non-static.
19700         * loader.c (mono_get_shared_generic_method): New.  Used to create
19701         the MonoGenericContext-equivalent of a MonoGenericContainer.
19702         (mono_get_method_from_token): Initialize the 'context' field of
19703         the created MonoGenericContainer.
19704         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
19705         * metadata.c (get_constraints): Add sanity check.
19706         * class-internals.h: Add new internal methods.
19707
19708         * reflection.c (verify_safe_for_managed_space): New sanity check.
19709         Currently checks that owner-less generic parameters aren't allowed
19710         in managed space.
19711         (mono_type_get_object): Use it.
19712         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
19713         that are now in mono_type_get_object.
19714         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
19715
19716 2006-02-19  Raja R Harinath  <harinath@gmail.com>
19717
19718         * metadata.c (mono_type_create_from_typespec): Rename from
19719         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
19720         argument and caching of types in the generic container.
19721         (unwrap_arrays, find_generic_param): Remove.
19722         * metadata-internals.h: Update.
19723         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
19724
19725 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
19726
19727         * class.c (mono_class_get_exception_for_failure): Fix a warning.
19728
19729         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
19730         return values. Fixes #77581.
19731
19732         * class.c (mono_fnptr_class_get): Switch name and name_space.
19733
19734         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
19735         classes and add support for [In, Out] attributes.
19736         (mono_marshal_free_asany): Ditto. Fixes #77524.
19737
19738 2006-02-18  Raja R Harinath  <harinath@gmail.com>
19739
19740         * class.c (mono_class_from_generic_parameter): Make more robust to
19741         incomplete MonoGenericContainers from monodis.
19742
19743 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19744
19745         * class-internals.h: added some more exception types.
19746         * class.c, metadata.c: added a few checks to handle missing
19747         types.
19748
19749 2006-02-17  Raja R Harinath  <rharinath@novell.com>
19750
19751         Use owner-less generic-params some more.
19752         * class.c (my_mono_class_from_generic_parameter): Remove.
19753         (mono_class_from_generic_parameter): Handle null image,
19754         param->name and param->owner.
19755         (mono_class_from_mono_type): Update.
19756         (mono_class_create_from_typespec): Remove 'container' parameter.
19757         If that parameter is non-null, the result is always inflated by
19758         'mono_class_get_full' anyway.
19759         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
19760         parameter.
19761         (mono_class_get_full): Update.
19762
19763         * class.c (inflate_generic_type) [GENERICINST]: If the generic
19764         instance is not open, don't bother inflating.
19765         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
19766         parse metadata for inflated classes.
19767         (_mono_class_get): Change GenericContext* parameter to
19768         GenericContainer*.
19769         (mono_class_create_from_typespec): Likewise.  Simplify, and
19770         implement trivially.  All the cases are handled in
19771         mono_class_from_mono_type.  Don't inflate returned class.
19772         (mono_class_get_full): Delegate GENERICINST optimization to
19773         inflate_generic_type.
19774         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
19775
19776 2006-02-16  Dick Porter  <dick@ximian.com>
19777
19778         * socket-io.c (create_object_from_sockaddr): Fix typo.
19779         (create_sockaddr_from_object): Check array lengths before
19780         potentially accessing items off the end.
19781         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
19782         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
19783         (ves_icall_System_Net_Sockets_Socket_Send_internal)
19784         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
19785         length checks to avoid wraparound overflows.
19786         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
19787         contents of the array of sockets
19788         (hostent_to_IPHostEntry2)
19789         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
19790         Check return value of inet_ntop ().
19791         (addrinfo_to_IPHostEntry): Fix typo
19792
19793 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19794
19795         Type metadata parsing doesn't use generic-instantiation information.
19796         * metadata.c (mono_metadata_parse_array_full): Change
19797         MonoGenericContext* parameter to MonoGenericContainer*.
19798         (mono_metadata_parse_type_full): Likewise.
19799         (mono_type_create_from_typespec_full): Likewise.
19800         (mono_metadata_parse_mh_full): Likewise.
19801         (mono_metadata_parse_generic_inst): Likewise.
19802         (do_mono_metadata_parse_generic_class): Likewise.
19803         (do_mono_metadata_parse_type): Likewise.
19804         * metadata-internals.h: Update to changes.
19805         * class.c (mono_class_find_enum_basetype): Likewise.
19806         (mono_class_setup_fields): Likewise.
19807         (mono_class_create_from_typespec): Likewise.
19808         * loader.c (method_from_methodspec): Likewise.
19809         (mono_get_method_from_token): Likewise.
19810         (mono_method_get_header): Likewise.
19811
19812 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19813
19814         * marshal.c: handle additional GENERICINST case (patch from
19815         Thong Nguyen <tum@veridicus.com>).
19816         Fix a few cases where LDIND_I/STIND_I was used for references.
19817
19818 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19819
19820         * reflection.c (mono_reflection_get_token): Remove unused variable.
19821
19822 2006-02-16  Martin Baulig  <martin@ximian.com>
19823
19824         * reflection.c (mono_reflection_get_token): Add support for fields
19825         in instantiated generic types.
19826
19827         * icall.c
19828         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
19829
19830 2006-02-15  Martin Baulig  <martin@ximian.com>
19831
19832         * icall.c
19833         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
19834         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
19835         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
19836         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
19837
19838 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
19839
19840         * class.c, metadata.c, metadata.h, object.c, icall.c,
19841         marshal.c: changed mono_type_get_underlying_type () to do
19842         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
19843         Fixed handling of instantiated generic valuetypes (bug #75479).
19844
19845 2006-02-15  Raja R Harinath  <rharinath@novell.com>
19846
19847         * metadata.c (mono_metadata_decode_signed_value): Simplify.
19848         Delegate to mono_metadata_decode_value, and work on the returned value.
19849
19850         * icall.c (ves_icall_MonoType_GetGenericArguments):
19851         Add consistency check here too.
19852         
19853 2006-02-15  Ankit Jain  <jankit@novell.com>
19854
19855         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
19856         char/short etc.
19857
19858 2006-02-15  Ankit Jain  <jankit@novell.com>
19859
19860         * metadata.c (mono_metadata_decode_signed_value): New function to decode
19861         signed values, used only for representing lower bounds of arrays.
19862         (mono_metadata_parse_array_full): Use new
19863         mono_metadata_decode_signed_value to decode lower bounds.
19864
19865 2006-02-14  Martin Baulig  <martin@ximian.com>
19866
19867         * reflection.c
19868         (mono_reflection_get_token): Support "MonoGenericMethod" and
19869         "MonoGenericCMethod" and allow generic instances / methods.
19870
19871 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
19872
19873         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
19874         to obtain the terminal size using an ioctl.
19875
19876         * object.c (mono_nullable_init): Revert this as nullable reference
19877         types are not valid.
19878         (mono_nullable_box): Ditto.
19879
19880 2006-02-09  Dick Porter  <dick@ximian.com>
19881
19882         * threads.c (mono_thread_detach): Drop a reference to the thread
19883         we're detaching.
19884
19885 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
19886
19887         * object.c (mono_nullable_init): Handle nullable reference types.
19888         (mono_nullable_box): Ditto. Fixes #77446.
19889
19890 2006-02-07  Martin Baulig  <martin@ximian.com>
19891
19892         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
19893
19894 2006-02-07  Ankit Jain  <jankit@novell.com>
19895
19896         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
19897         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
19898         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
19899         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
19900         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
19901         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
19902
19903 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
19904
19905         * class.c (mono_class_create_generic): Set type_token as well.
19906
19907         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
19908         compatible with MS.
19909
19910 2006-02-02  Martin Baulig  <martin@ximian.com>
19911
19912         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
19913         has never been used so far.
19914
19915 2006-02-02  Martin Baulig  <martin@ximian.com>
19916
19917         * mono-debug-debugger.h: Changed comment at the top of this file;
19918         the header is not installed, but it's safe to #include it from
19919         within the JIT.
19920
19921         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
19922         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
19923
19924 2006-02-02  Martin Baulig  <martin@ximian.com>
19925
19926         * mono-debug.h
19927         (MonoSymbolTable): Removed the `metadata_info' field.
19928
19929         * mono-debug.c
19930         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
19931
19932         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19933         (mono_debugger_add_builtin_types): Removed.
19934         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
19935         (mono_debugger_create_notification_function): We now operate on a
19936         pre-allocated area; take a `gpointer' and return `void'.
19937
19938         * mono-debug-debugger.c
19939         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
19940         (mono_debugger_add_builtin_types): Removed.
19941
19942 2006-02-02  Martin Baulig  <martin@ximian.com>
19943
19944         * threads.c (mono_debugger_create_all_threads): New public method.
19945
19946 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19947
19948         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
19949         breaks on several platforms.
19950
19951 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
19952
19953         * assembly.c: the VS.NET build doesn't supply default values for
19954         MONO_ASSEMBLIES and MONO_CFG_DIR.
19955
19956 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
19957
19958         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
19959         helper function.
19960
19961         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
19962
19963         * loader.c (method_from_memberref): Fix a warning.
19964
19965         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
19966
19967         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
19968         with explicit layout. Fixes #77433.
19969
19970 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
19971
19972         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
19973         max_interface_id is initialized before using it. Fixes #77398.
19974         (ves_icall_Type_GetInterfaces): Ditto.
19975
19976 2006-01-30  Raja R Harinath  <rharinath@novell.com>
19977
19978         * metadata.c (mono_metadata_parse_method_signature_full): Don't
19979         allocate memory for parameter attributes when parsing memberref
19980         signatures.
19981         * loader.c (mono_loader_set_error_method_load): Don't warn.
19982         (method_from_memberref): Ensure MissingMethodException gets thrown
19983         if method is not found.  Make warning more informative.
19984
19985 2006-01-29  Raja R Harinath  <harinath@gmail.com>
19986
19987         Fix #77397
19988         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
19989         return true if is byref.
19990         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
19991         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
19992         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
19993
19994 2006-01-27  Raja R Harinath  <rharinath@novell.com>
19995
19996         Fix tests/find-method.2.il
19997         * loader.c (find_method, find_method_in_class): Remove is_inflated
19998         argument.  Revert 2006-01-18 change.
19999         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
20000         is generic, search for method in its generic definition.
20001         * class.c (mono_class_setup_vtable_general): Print generic
20002         arguments of generic types in debugging printf.
20003
20004 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
20005
20006         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
20007
20008         * threads.c (mono_threads_request_thread_dump): New helper function.
20009
20010 2006-01-25  Raja R Harinath  <rharinath@novell.com>
20011
20012         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
20013
20014 2006-01-25  Ankit Jain  <jankit@novell.com>
20015
20016         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
20017         move definition to ..
20018         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
20019         
20020 2006-01-25  Ankit Jain  <jankit@novell.com>
20021             Raja R Harinath  <rharinath@novell.com>
20022
20023         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
20024         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
20025         as necessary.
20026
20027 2006-01-25  Martin Baulig  <martin@ximian.com>
20028
20029         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
20030         `MonoDebuggerThread' into debug-debugger.c.
20031
20032 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
20033
20034         * profiler.c: fix printing of data.
20035
20036 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
20037
20038         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
20039           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
20040
20041 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
20042
20043         * object.c: fix deadlock related to string interning.
20044
20045 2006-01-23  Martin Baulig  <martin@ximian.com>
20046
20047         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20048
20049         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
20050
20051 2006-01-23  Martin Baulig  <martin@ximian.com>
20052
20053         * mono-debug.h: Moved the prototypes of some functions which are
20054         used by the JIT here from mono-debug-debugger.h.
20055
20056 2006-01-21  Martin Baulig  <martin@ximian.com>
20057
20058         * Makefile.am: Don't install mono-debug-debugger.h.
20059
20060 2006-01-21  Martin Baulig  <martin@ximian.com>
20061
20062         * mono-debug-debugger.h: Enforce the private status of this header
20063         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
20064         Moved some stuff from mono-debugger-jit-wrapper.h here.
20065
20066 2006-01-20  Raja R Harinath  <rharinath@novell.com>
20067
20068         * class.c (mono_class_from_typeref): Add a sanity test to help
20069         catch lack of assembly load/search hooks.
20070
20071 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
20072
20073         * marshal.c (emit_struct_conv): Relax the fields with same offset
20074         check even more. Fixes #77230.
20075
20076 2006-01-18  Martin Baulig  <martin@ximian.com>
20077
20078         * loader.c (find_method_in_class): Added `gboolean is_inflated'
20079         argument; if false, we compare the uninstantiated signatures.
20080         (method_from_memberref): Compare the uninstantiated signatures;
20081         fixes #76417.
20082
20083 2006-01-18  Robert Jordan  <robertj@gmx.net>
20084
20085         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
20086         Clear the weak link. Fixes bug #77170.
20087
20088         * gc.c (mono_gchandle_free):
20089         Reflect *-gc.c changes (tiny optimization).
20090
20091 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
20092
20093         * metadata.c (mono_metadata_signature_dup): Applied patch from
20094         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20095         Fixes #77288.
20096
20097 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
20098
20099         * marshal.c (emit_struct_conv): Allow fields with the same offset when
20100         marshalling from native to managed code. Fixes #77230.
20101
20102 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20103
20104         * threadpool.c: fix problem (Mac only) when more than one asynchronous
20105         connect. Fixes bug #77020.
20106
20107 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20108
20109         * class.c: fixed id assignement for nested interfaces (bug #77275).
20110         Added also better info for --print-vtable debugging.
20111
20112 2006-01-12  Martin Baulig  <martin@ximian.com>
20113
20114         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20115         interfaces on-the-fly; fixes #76625.
20116
20117         * class-internals.h
20118         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20119         don't need that anymore.
20120
20121 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20122
20123         * socket-io.c
20124         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20125         To avoid initing the nested_classes when not needed I turned the
20126         PeerCredData as a toplevel internal class, as it has to be shared
20127         anyways. 
20128
20129         Fixes the CASA issue.
20130
20131 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
20132
20133         * domain.c: Accessors for MonoJitInfo
20134
20135         * profiler-private.h: Add jitinfo to the end jit hook
20136
20137         * profiler.[ch]: Define new hooks, called after jitting which give
20138         the MonoJitInfo that was compiled
20139
20140 2006-01-10  Martin Baulig  <martin@ximian.com>
20141
20142         * class.c (mono_class_setup_events): Add support for generic
20143         classes; fixes #76440.
20144
20145 2006-01-06  Raja R Harinath  <rharinath@novell.com>
20146
20147         Fix #77160.
20148         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20149         on passed-in method.
20150
20151 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20152
20153         * object.c (mono_runtime_invoke_array): Add Nullable support.
20154
20155         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20156
20157 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
20158
20159         * file-io.c: Don't consider sockets as directory and avoid an endless
20160         loop. Fix bug #76966.
20161
20162 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20163
20164         * object.c (mono_nullable_init): New helper function.
20165         (mono_nullable_box): Ditto.
20166
20167         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20168
20169         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20170
20171         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20172         
20173 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
20174
20175         * class.c (mono_class_is_assignable_from): Make T assignable to 
20176         Nullable<T>.
20177
20178 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
20179
20180         * appdomain.c: Bump corlib version to 46.
20181         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20182         serialization purpose) and changed ves_icall_System_Reflection_
20183         Assembly_get_code_base signature to accept a boolean (to escape, or 
20184         not, the assembly code base).
20185
20186 2005-12-23  Dick Porter  <dick@ximian.com>
20187
20188         * icall.c: 
20189         * threads-types.h: 
20190         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20191         CreateEvent icall now returns "created" boolean parameter.
20192
20193 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
20194
20195         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
20196         #76967.
20197
20198         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
20199         when attr_klass is an interface. Fixes #77045.
20200
20201 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
20202
20203         * marshal.c (emit_struct_conv): Fix previous patch.
20204         
20205         * marshal.c (emit_struct_conv): Add a check for fields with the same
20206         offset.
20207
20208 2005-12-20  Raja R Harinath  <rharinath@novell.com>
20209
20210         Fix regression in Mono.C5.
20211         * class.c (mono_class_create_generic): If 'klass' is an interface
20212         set up the interface offsets.
20213         (mono_class_is_assignable_from): Don't throw away generic arguments.
20214
20215 2005-12-19  Raja R Harinath  <rharinath@novell.com>
20216
20217         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
20218         type parameters.
20219
20220 2005-12-15  Raja R Harinath  <rharinath@novell.com>
20221
20222         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
20223         dead store.
20224         (do_mono_metadata_parse_generic_class): Don't pass the current
20225         generic context when parsing the type being instantiated: it
20226         cannot use it, anyway.
20227
20228         * loader.c (method_from_memberref): Don't inflate a signature if
20229         it doesn't contain any type parameters.
20230
20231 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
20232
20233         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
20234
20235 2005-12-14  Martin Baulig  <martin@ximian.com>
20236
20237         * class.c
20238         (mono_type_get_name_recurse): Don't return null for type
20239         parameters and open generic classes.
20240         (mono_class_setup_methods): Don't exclude generic instances.
20241         (mono_get_unique_iid): Use different IDs for different
20242         instantiations of the same generic type.
20243         (mono_class_setup_vtable): Only use setup_generic_vtable() for
20244         open generic instances; create a normal vtable for closed generic
20245         instances.
20246         (mono_class_setup_vtable_general): We're now also called for
20247         closed generic instances.
20248
20249         * reflection.c
20250         (mono_reflection_bind_generic_parameters): Correctly use
20251         mono_metadata_lookup_generic_inst() everywhere.
20252
20253 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
20254
20255         * object.c (mono_class_create_runtime_vtable): Call 
20256         mono_class_setup_vtable ().
20257
20258         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
20259         function.
20260         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
20261         #76959.
20262
20263         * loader.c (mono_loader_set_error_type_load): Print the type load
20264         warnings to the console so they are more visible to the user.
20265         (mono_loader_set_error_method_load): Ditto.
20266
20267         * reflection.c (ensure_runtime_vtable): Revert the last change as it
20268         is still broken.
20269         
20270         * reflection.c (ensure_runtime_vtable): Fix build.
20271
20272         * reflection.c (ensure_runtime_vtable): Disable an optimization which
20273         doesn't work in all cases.
20274
20275 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
20276
20277         * object.c (mono_array_new_full): Treat a single dimensional array
20278         with 0 lower bounds as an szarray. Fixes #76973.
20279
20280         * reflection.c (custom_attr_visible): Really fix this.
20281
20282 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
20283
20284         * reflection.c (custom_attr_visible): Allow nested public attributes
20285         as well.
20286
20287         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
20288         interface check.
20289
20290 2005-12-12  Raja R Harinath  <harinath@gmail.com>
20291
20292         * class.c (set_generic_param_owner): Delete.
20293         (mono_class_create_from_typedef): Don't set ->owner field of
20294         generic parameters to "param containers" of enclosing classes.
20295         * reflection.c (mono_reflection_initialize_generic_parameter):
20296         Likewise.
20297
20298 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
20299
20300         * reflection.c (custom_attr_visible): Fix build.
20301
20302 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
20303
20304         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
20305         private attributes.
20306         
20307         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
20308         handling of null parameter defaults.
20309
20310 2005-12-09  Raja R Harinath  <rharinath@novell.com>
20311
20312         * class.c (mono_class_from_generic_parameter): Don't set
20313         klass->generic_container.
20314         (my_mono_class_from_generic_parameter): Likewise.
20315
20316 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
20317
20318         * reflection.c (load_public_key): Fix a warning.
20319         (method_encode_code): Fix unaligned accesses.
20320
20321 2005-12-07  Martin Baulig  <martin@ximian.com>
20322
20323         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
20324
20325         * reflection.c
20326         (write_generic_param_entry): Encode our custom attrs.
20327
20328         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
20329
20330 2005-12-07  Martin Baulig  <martin@ximian.com>
20331
20332         * reflection.c (encode_new_constraint): Removed; we don't use the
20333         `NewConstraintAttribute' anymore.
20334
20335 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
20336
20337         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20338         not fire a TypeResolve event when Assembly.GetType () is called.
20339
20340 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
20341
20342         Beginning of support for nullable types in the runtime. Parts of
20343         this patch are from Martin.
20344
20345         * appdomain.c (MONO_CORLIB_VERSION): Bump
20346
20347         * domain.c (mono_init_internal): get the nullable type
20348
20349         * class.c (mono_class_is_nullable): New method
20350         (mono_class_get_nullable_param): New mehod
20351         (mono_class_create_generic): In types T? set cast_class to T
20352
20353         * class-internals.h (MonoDefaults): new nullable default class
20354         (mono_class_get_nullable_param, mono_class_get_nullable_param):
20355         new methods.
20356
20357 2005-12-05  Raja R Harinath  <rharinath@novell.com>
20358
20359         * metadata.c (select_container): New.  Refactor code to select the
20360         appropriate GenericContainer given the type of generic parameter
20361         we are looking for.
20362         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20363         not a MonoGenericContext.  Use select_container.  Update parameters.
20364         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20365         and MONO_TYPE_MVAR.
20366         (unwrap_arrays): Remove duplicate tests.
20367         (find_generic_param): Rename from 'has_same_context'.  Now walks a
20368         generic instantiated class to find any arguments that are generic
20369         parameters.
20370         (mono_type_create_from_typespec_full): Use find_generic_param to
20371         avoid evicting some generic instantiations from the typespec
20372         cache.
20373
20374 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20375
20376         * reflection.c: fixed writing of doubles on ARM FPA.
20377
20378 2005-12-02  Robert Jordan  <robertj@gmx.net>
20379
20380         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20381
20382 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20383
20384         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20385         least on SUSE 10 they are not the same (on debian, they are just the
20386         same thing).
20387
20388 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20389
20390         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20391         DeclaringType for VARs and MVARs.
20392         * class.c (set_generic_param_owner): Fix initialization of owner
20393         fields.
20394
20395 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20396
20397         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20398
20399 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20400
20401         * threadpool.c: workaround for a bug that shows up on the Mac:
20402         select()+connect() on a blocking socket is not like it should
20403         be, so we proceed to connect() in that case, wasting the I/O
20404         threadpool thread until connect succeedes. Fixes bug #75436.
20405
20406 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20407
20408         * threadpool.c: fix typo when setting file descriptor states.
20409
20410 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20411
20412         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20413         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20414         create a temporary signature container.
20415         (mono_metadata_parse_generic_param): Update to changes.
20416         (mono_type_create_from_typespec_full): Update to changes.
20417         * loader.c (method_from_memberref): Don't use a
20418         MonoGenericContainer while parsing a memberref signature.
20419         (method_from_methodspec): Remove dead-store of the 'container'
20420         variable.  It's overwritten before use.
20421
20422         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20423         checks tighter.
20424         (mono_metadata_parse_generic_param): Likewise.
20425         * loader.c (find_method_in_class): Does not need a
20426         MonoGenericContainer.  Use 'mono_method_signature' rather than
20427         'mono_method_signature_full'.
20428         (find_method, mono_get_method_constrained, method_from_memberref):
20429         Update to changes.
20430
20431         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20432         owner-less generic-parameters are never evicted from the typespec
20433         cache.
20434
20435         * loader.c (method_from_memberref): Don't use the current context
20436         when parsing signatures.
20437         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20438
20439         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20440         side-effects in g_assert.
20441         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20442         that we don't potentially lose information.
20443
20444 2005-11-26  Dick Porter  <dick@ximian.com>
20445
20446         * icall.c:
20447         * threads.c: icalls to implement basic (ie, not named)
20448         System.Threading.Semaphore.
20449
20450 2005-11-24  Dick Porter  <dick@ximian.com>
20451
20452         * process.c
20453         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20454         Use GetProcessId() if it's available.
20455
20456 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20457
20458         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20459
20460 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20461             Ankit Jain  <jankit@novell.com>
20462
20463         * loader.c (mono_get_method_from_token): Initialize 'method' field
20464         of all generic parameters before parsing the signature.  Remove
20465         code that "fixed"-up MVAR references.
20466
20467 2005-11-23  Ankit Jain  <jankit@novell.com>
20468
20469         * metadata.c (mono_metadata_has_generic_params):
20470         (mono_metadata_load_generic_param_constraints):
20471         (mono_metadata_load_generic_params): Move duplicate code ...
20472         (mono_metadata_get_generic_param_row): ... here. Returns the
20473         first row-id in GenericParam table for a given owner (token).
20474         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20475         prototype.
20476
20477 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20478             Ankit Jain  <jankit@novell.com>
20479
20480         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20481         comparing VARs too.
20482         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20483         type->data.generic_param only if the type is an MVAR.
20484         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20485         leak owner-less VARs and MVARs into managed space.
20486
20487 2005-11-21  Martin Baulig  <martin@ximian.com>
20488
20489         * class-internals.h
20490         (MonoMethod): Moved the `generic_container' here from
20491         `MonoMethodNormal' since we now also need it for
20492         `MonoMethodPInvoke';
20493         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20494         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20495         an union containing both `MonoMethodNormal' and
20496         `MonoMethodPInvoke'.
20497
20498         * loader.c
20499         (mono_get_method_from_token): Allow implementing generic methods
20500         as interncalls.
20501
20502         * threads.c
20503         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20504         icall.
20505
20506 2005-11-17  Dick Porter  <dick@ximian.com>
20507
20508         * icall.c: 
20509         * process.h: 
20510         * process.c: Split the Process Start_internal icall into
20511         ShellExecuteEx_internal and CreateProcess_internal, which are
20512         called depending on whether UseShellExecute is true.  Fixes bug
20513         76670.
20514
20515         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20516
20517 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20518
20519         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20520         'msize' parameters, use the information in 'mspec' instead.
20521         (emit_object_to_ptr_conv): Ditto.
20522
20523         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20524         fields out of order. Fixes #76733.
20525
20526 2005-11-17  Ankit Jain  <jankit@novell.com>
20527
20528         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20529
20530 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20531
20532         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20533           bug #76575.
20534
20535 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20536
20537         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20538         for types with non-auto layout. Fixes #76717.
20539
20540 2005-11-16  Ankit Jain  <jankit@novell.com>
20541
20542         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20543         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20544         if generic_context is null.
20545           (mono_metadata_generic_param_equal): param->owner can be null.
20546           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20547         null.
20548
20549 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20550
20551         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20552         the correct value.
20553
20554 2005-11-15  Martin Baulig  <martin@ximian.com>
20555
20556         * object.c (set_value): Use mono_class_from_mono_type() instead of
20557         the hack for generic instances; fixes #76136.
20558
20559 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20560
20561         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20562         fields.
20563
20564         * image.c (load_metadata_ptrs): Initialize the new fields.
20565
20566         * reflection.c (create_dynamic_mono_image): Ditto.
20567
20568         * reflection.c (build_compressed_metadata): Use the new fields.
20569
20570         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20571         icall.
20572
20573         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20574         icall.
20575         
20576 2005-11-15  Ankit Jain  <jankit@novell.com>
20577             Raja R Harinath  <harinath@gmail.com>
20578
20579         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20580         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20581         new per-generic_container cache if the cached MonoType's context matches
20582         the current context.
20583           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20584         to the expected context.
20585           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20586
20587 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20588
20589         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20590         we changed the signature of an icall.
20591         * icall.c: Modify to mono_double_ParseImpl return true/false 
20592         depending on the success, instead of throwing the exception. This will
20593         help us in Double.TryParse methods.
20594         
20595 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20596
20597         * marshal.c (emit_marshal_object): Throw an exception when
20598         marshalling 'object' instead of crashing. Fixes #76696.
20599
20600 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20601
20602         * class-internals.h: Add prototype for mono_type_get_full_name ().
20603
20604 2005-11-11  Dick Porter  <dick@ximian.com>
20605
20606         * threads.c (mono_thread_manage): Make sure the main thread has
20607         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
20608
20609 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20610
20611         * loader.c (mono_loader_set_error_type_load): Log a warning to the
20612         console about the missing type.
20613         (mono_loader_set_error_method_load): Ditto.
20614
20615 2005-11-09  Miguel de Icaza  <miguel@novell.com>
20616
20617         * mono-config.c (mono_get_config_dir): Set the system defaults if
20618         none is specified.
20619
20620         * assembly.c (mono_set_dirs): New API entry point to set the
20621         assembly and the config directory in one call
20622
20623 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
20624
20625         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
20626         the ftnptr was created from a delegate in a domain other than the
20627         current domain. Fixes #75377.
20628
20629         * exception.h exception.c: Add mono_get_exception_not_supported ().
20630
20631 2005-11-08  Martin Baulig  <martin@ximian.com>
20632
20633         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
20634
20635 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
20636
20637         * security-manager.h: Added definitions to deal with strongname key 
20638         pairs bigger (and smaller) than 1024 bits.
20639         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
20640         adjust wrt the public key length being used.
20641
20642 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
20643
20644         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
20645           Windows build (r51396-51397).
20646
20647 2005-11-03  Martin Baulig  <martin@ximian.com>
20648
20649         * class.c (mono_class_setup_vtable_general): Also add generic
20650         methods to the vtable; fixes #76581.
20651
20652 2005-11-01  Miguel de Icaza  <miguel@novell.com>
20653
20654         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
20655         sure that we lookup GetString method from the System.Text.Encoding
20656         class, not the derived class or we get an empty method.
20657
20658         Fixed class #76612.
20659
20660 2005-10-25  Miguel de Icaza  <miguel@novell.com>
20661
20662         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
20663         if it has been previously set (embedders). 
20664
20665         Make mono_set_rootdir available also on Unix.
20666
20667 005-10-24  Robert Jordan  <robertj@gmx.net>
20668
20669         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
20670
20671 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
20672
20673         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
20674         only calls which are made to native code use this flag.
20675
20676         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
20677
20678 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
20679
20680         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
20681         Add support for FieldBuilders.
20682
20683 2005-10-29  Martin Baulig  <martin@ximian.com>
20684
20685         * mono-debug.c
20686         (mono_debug_using_mono_debugger): New public method; returns
20687         whether we're running inside the debugger.
20688
20689 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
20690
20691         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
20692         for Method/Constructor/FieldBuilders.
20693
20694 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
20695
20696         * reflection.c (module_add_cattrs): Save custom attributes for global methods
20697         and fields as well.
20698
20699 2005-10-26  Martin Baulig  <martin@ximian.com>
20700
20701         * mono-debug-debugger.c
20702         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
20703
20704 2005-10-24  Raja R Harinath  <harinath@gmail.com>
20705
20706         * icall.c (base64_to_byte_array): Don't pass an out-of-range
20707         integer to isspace.
20708
20709 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
20710
20711         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
20712         when passing valuetypes byref. Fixes #76502.
20713
20714 2005-10-19  Jackson Harper  <jackson@ximian.com>
20715
20716         * profiler.c: Don't put a . in front of types that are not in a
20717         namespace.
20718
20719 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
20720
20721         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
20722
20723 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
20724
20725         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
20726         #76436.
20727         (mono_marshal_get_ldflda_wrapper): Fix a warning.
20728
20729 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20730
20731         * assembly.c metadata-internals.h icall.c: Define an additional
20732         parameter for mono_assembly_name_parse_full, so we can avoid creating
20733         S.R.AssemblyName.Version when no version info wasn't passed.
20734         
20735 2005-10-09  Miguel de Icaza  <miguel@novell.com>
20736
20737         * class.c (mono_type_get_full_name): Reimplement method that was
20738         removed. 
20739
20740         * image.c: Some docs
20741
20742 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
20743
20744         * profiler.c (output_newobj_profile): Fix printing of Total memory
20745         on x86.
20746
20747 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20748
20749         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
20750
20751 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
20752
20753         * threads.c: remove debug output.
20754
20755 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20756
20757         * threads.c (mono_thread_manage): Fix crashes if more than 64
20758         threads need to be aborted. Hopefully fixes #75899.
20759
20760         * assembly.c (mono_stringify_assembly_name): New helper function.
20761
20762         * class.c: Use mono_stringify_assembly_name instead of the similar
20763         static function.
20764
20765         * assembly.h assembly.c: Add support for calling a postload search 
20766         hook if an assembly cannot be loaded.
20767
20768         * appdomain.c: Register new search hooks which call the AssemblyResolve
20769         events in AppDomain. Fixes #75231
20770
20771 2005-10-07  Martin Baulig  <martin@ximian.com>
20772
20773         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
20774         methods without debug info.
20775
20776 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
20777
20778         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
20779         wrappers.
20780
20781 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20782
20783         * file-io.c: now that we return symlinks, use lstat and, when the file
20784         is a symbolic link, stat, to get the file attributes. Also avoid the
20785         conversion to/from utf16/external.
20786
20787 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
20788
20789         * class.c (mono_class_layout_fields): Compute klass->has_references
20790         correctly if an embedded valuetype is not yet initialized. Fixes
20791         #76331.
20792
20793 2005-10-04  Martin Baulig  <martin@ximian.com>
20794
20795         * metadata.c
20796         (mono_metadata_load_generic_param_constraints): New public
20797         function; splitted the constraints loading out from
20798         mono_metadata_load_generic_params().
20799
20800         * class.c (mono_class_create_from_typedef): Call
20801         mono_metadata_load_generic_param_constraints() after setting up
20802         the type and creating our parent; fixes #75329.
20803
20804 2005-10-04  Martin Baulig  <martin@ximian.com>
20805
20806         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
20807         non-dynamic parent classes.
20808
20809 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
20810
20811         * file-io.c : win32 build fix (ETXTBSY seems not found).
20812
20813 2005-10-04  Martin Baulig  <martin@ximian.com>
20814
20815         * reflection.c
20816         (mono_image_get_methodspec_token): Make the cache actually work;
20817         fixes #75974.
20818
20819 2005-10-04  Martin Baulig  <martin@ximian.com>
20820
20821         * class.c (mono_class_name_from_token): Removed the unneccessary
20822         `MonoGenericContext *' argument.
20823
20824 2005-10-04  Martin Baulig  <martin@ximian.com>
20825
20826         * loader.c
20827         (method_from_methodspec): Make the caching work again; fixes the
20828         performance regression from #76262.
20829
20830 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20831
20832         * file-io.c:
20833         * file-io.h:
20834         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
20835         GetFileSystemEntries that performs the same work but without going
20836         into io-layer, locking, etc.
20837
20838 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
20839
20840         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
20841         ThreadState_Stopped as well. Fixes #76047.
20842
20843 2005-09-29  Martin Baulig  <martin@ximian.com>
20844
20845         * class.c
20846         (inflate_generic_context): If the new context has a `gmethod', set
20847         its `container' that that gmethod's `container'.
20848
20849         * metadata.c
20850         (mono_metadata_parse_generic_param): Simplify things;
20851         `generic_container = generic_context->container;' is just fine.
20852
20853         * loader.c (method_from_methodspec): Code cleanups.
20854
20855 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
20856
20857         * decimal.c: fix warning (and let gcc generate correct
20858         code on ARM with optimizations).
20859
20860 2005-09-28  Martin Baulig  <martin@ximian.com>
20861
20862         * loader.c
20863         (method_from_memberref): Added `MonoGenericContext *class_context'
20864         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
20865         (method_from_methodspec): If we're a memberref, use the enclosing
20866         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
20867
20868 2005-09-28  Martin Baulig  <martin@ximian.com>
20869
20870         * object.c (mono_runtime_invoke_array): Added support for
20871         MONO_TYPE_GENERICINST; fixes #75917.
20872
20873 2005-09-27  Martin Baulig  <martin@ximian.com>
20874
20875         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
20876         `k->byval_arg.type' to determine the actual type.
20877
20878         * loader.c (method_from_methodspec): Removed some hacks.
20879
20880 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
20881
20882         * class-internals.h (mono_field_is_deleted): Do the test for
20883         rtspecialname before we check the actual name of the field. This
20884         prevents us from dereferencing a pointer into the string table,
20885         saving us from accessing a few pages
20886
20887         * *.c: Replace the use of {Enter,Leave}CriticalSection with
20888         macros. This will allow a deadlock debugger to easily be plugged
20889         in.
20890
20891 2005-09-27  Martin Baulig  <martin@ximian.com>
20892
20893         * loader.c (method_from_methodspec): Create a "signature"
20894         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
20895
20896 2005-09-27  Martin Baulig  <martin@ximian.com>
20897
20898         * class.c
20899         (inflate_generic_class): Correctly set the new context's
20900         container.
20901
20902         * loader.c
20903         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
20904         instead of a `MonoGenericContext *'.
20905         (mono_method_signature_full): Take a `MonoGenericContainer *'
20906         instead of a `MonoGenericContext *'.
20907
20908         * metadata.c
20909         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
20910         instead of a `MonoGenericContext *'.
20911         (mono_metadata_parse_method_signature_full): Likewise.
20912
20913 2005-09-26  Martin Baulig  <martin@ximian.com>
20914
20915         * class.c
20916         (mono_class_from_generic_parameter): Set `klass->generic_container'
20917         (mono_class_from_generic_parameter): Likewise.
20918         (mono_bounded_array_class_get): We inherit the generic container
20919         from the element class.
20920
20921         * loader.c
20922         (find_method, find_method_in_class): Take a `MonoGenericContext *'
20923         argument rather than computing it here.
20924         (method_from_memberref): Correctly set the generic context before
20925         parsing the signature.  Fixes #75681.
20926
20927 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
20928
20929         * object.c (mono_class_has_special_static_fields): Fix warnings.
20930
20931 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20932
20933         * assembly.c: Add parse_public_key function, to
20934         par the public keys. Also added mono_assembly_name_parse_full,
20935         to define it the parsed key should be freed or not.
20936         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
20937         to parse a long format assembly name.
20938         * metadata-internals.h: Keep mono_assembly_name_parse_full as
20939         private, since calling it to preserve the key requires
20940         freeing it manually.
20941         
20942 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
20943
20944         * locales.c : removed HAVE_ICU part.
20945
20946 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
20947
20948         * object.c (mono_class_create_runtime_vtable): Avoid calling 
20949         field_is_special_static if the klass has no special static fields.
20950
20951         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
20952         (MonoCachedClassInfo): Likewise.
20953
20954         * object.c (mono_class_has_special_static_fields): New helper function.
20955
20956 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20957
20958         * class.c (mono_class_create_from_typedef): Don't call 
20959         interfaces_from_typedef_full for enums.
20960         (mono_class_create_from_typedef): Compute the base types of enums directly
20961         without calling mono_class_setup_fields ().
20962         (mono_class_find_enum_basetype): New helper function.
20963
20964         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
20965         one place inside the string heap.
20966         
20967 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
20968
20969         * class.c: locking fixes, code cleanups, some docs added.
20970         Allocate some data structures in the image mempool.
20971
20972 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20973
20974         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20975         the example code.
20976         
20977 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
20978
20979         * class-internals.h, class.c, reflection.c: reduce memory taken by
20980         MonoClass.
20981
20982 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
20983
20984         * metadata.c, metadata.h, loader.h: documentation updates, code and
20985         API cleanups.
20986
20987 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20988
20989         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20990         the example code.
20991
20992         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
20993         page faults caused by the runtime while reading metadata.
20994
20995 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20996
20997         * socket-io.c: the field names were changed 3 months ago and no one
20998         realized until bug #76077 got filed!
20999
21000 2005-09-20  Martin Baulig  <martin@ximian.com>
21001
21002         * icall.c (assembly_icalls): Removed some unused debugger icalls.
21003
21004 2005-09-20  Martin Baulig  <martin@ximian.com>
21005
21006         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
21007         write the rank into the class entry.
21008
21009 2005-09-20  Martin Baulig  <martin@ximian.com>
21010
21011         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
21012
21013 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
21014
21015         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21016
21017         * icall.c (custom_attrs_defined_internal): New icall.
21018
21019         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
21020         function.
21021         (mono_custom_attrs_construct_by_type): New helper function.
21022
21023 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
21024
21025         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
21026         terminate the resulting string. Fixes #76123.
21027
21028 2005-09-16  Martin Baulig  <martin@ximian.com>
21029
21030         * mono-debug.c
21031         (mono_debug_add_method): Ignore inflated methods for the moment.
21032
21033 2005-09-14  Martin Baulig  <martin@ximian.com>
21034
21035         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
21036
21037 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
21038
21039         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
21040         return a success/failure indication.
21041         (mono_metadata_interfaces_from_typedef_full): Ditto.
21042         (get_constraints): Ditto.
21043
21044 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
21045
21046         * marshal.c (emit_marshal_array): Fix handling of null arrays.
21047         
21048         * marshal.c (emit_marshal_array): Add support for returning string
21049         arrays from delegates. Fixes #76063.
21050
21051         * marshal.c: Use the emit_ldloc/stloc macros where possible.
21052
21053 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
21054
21055         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
21056         icall.
21057
21058 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
21059
21060         * reflection.c icall.c: Fix after mono_get_exception_type_load
21061         signature change.
21062
21063         * assembly.c (mono_assembly_get_assemblyref): New helper function.
21064         (mono_assembly_load_reference): Use the new helper.
21065
21066         * class-internals.h (MonoLoaderError): New structure containing 
21067         information about type loading errors.
21068
21069         * class-internals.h loader.c: Add APIs to store per-thread loader
21070         error information.
21071
21072         * loader.c class.c: Set the loader error if needed.
21073
21074         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
21075
21076 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
21077
21078         * decimal.c: fixed to handle the broken ARM fp format.
21079
21080 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
21081
21082         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
21083         broken.
21084
21085 2005-09-06  Martin Baulig  <martin@ximian.com>
21086
21087         * domain.c (supported_runtimes): Added v2.0.50727.
21088
21089 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
21090
21091         * culture-info.h: reduce the size of some structures.
21092
21093 2005-09-05  Martin Baulig  <martin@ximian.com>
21094
21095         Reflect latest API changes in the August CTP.
21096
21097         * icall.c
21098         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21099         ("MonoType.HasGenericArguments"): Removed.
21100         ("MonoMethod.BindGenericParameters"): Renamed to
21101         "MakeGenericMethod".
21102         ("MethodBuilder.BindGenericParameters"): Renamed to
21103         "MakeGenericMethod".    
21104
21105 2005-09-05  Martin Baulig  <martin@ximian.com>
21106
21107         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21108
21109 2005-09-05  Martin Baulig  <martin@ximian.com>
21110
21111         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21112
21113         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21114         generic_container is non-NULL.
21115
21116 2005-09-05  Martin Baulig  <martin@ximian.com>
21117
21118         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21119
21120         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21121
21122 2005-08-29  Michal Moskal  <malekith@nemerle.org>
21123
21124         * reflection.c (encode_locals,
21125         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21126         for large generic types.
21127
21128 2005-09-05  Martin Baulig  <martin@ximian.com>
21129
21130         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21131
21132         * class.c (mono_dup_array_type): New public method.
21133         (mono_metadata_signature_deep_dup): New public method.
21134         (dup_type): Correctly duplicate array and function types.
21135
21136 2005-09-05  Martin Baulig  <martin@ximian.com>
21137
21138         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21139
21140         * reflection.c (get_default_param_value_blobs): Handle generic types
21141         and generic methods.
21142
21143 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
21144
21145         * class.c: Fixed error reporting (method/class were inversed) for 
21146         inheritance demands.
21147         * security-manager.c|h: Added the AppDomain when calling the managed
21148         System.Security.SecurityManager.InheritanceDemand method.
21149
21150 2005-09-01  Raja R Harinath  <rharinath@novell.com>
21151
21152         * reflection.c (encode_marshal_blob): 'marshaltype' and
21153         'marshaltyperef' are alternate sources for the custom marshaler
21154         name.
21155
21156 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21157
21158         * class.c: fix creation of array classes with rank == 1
21159         (patch by Ankit Jain <jankit@novell.com>).
21160
21161 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21162
21163         * object.c: fix check for creating the bound data for arrays vs
21164         szarrays.
21165
21166 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21167
21168         * object.c: configuration file name is now based on the executable name,
21169         not the image name. Fixes bug #75931.
21170
21171 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
21172
21173         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21174         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21175
21176 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
21177
21178         * rand.c: Use wincrypt.h instead of WinCrypt.h.
21179
21180 2005-08-24  Ankit Jain  <jankit@novell.com>
21181             Raja R Harinath  <rharinath@novell.com>
21182
21183         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21184           called by it recursively.
21185           (mono_class_init): Remove special case in pending_init handling, since it's
21186           superseded by the fix to mono_class_from_typeref.
21187
21188 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
21189
21190         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
21191         BROKEN_THREAD_START stuff.
21192
21193 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
21194
21195         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
21196         trampoline.
21197
21198         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
21199         
21200         * object.c (mono_delegate_ctor): Replace the original function address with
21201         a delegate trampoline.
21202
21203 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
21204
21205         * icall.c: add boolean argument to base64_to_byte_array and 
21206         InternalFromBase64String to control whether a whitespace-only string
21207         is allowed (or should casue a FormatException to be thrown). We need
21208         this as the behavior has changed between MS.NET 1.x and 2.0, and we
21209         to match the MS behaviour in both profiles.
21210         * appdomain.c: Bump corlib version.
21211
21212 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21213
21214         This patch implements a big portion of publisher policy
21215         support, used to bind assembly versions and redirect
21216         one assembly from version A to version B.
21217
21218         * assembly.c:
21219         New GSList loaded_assembly_bindings, for storing the cached
21220         assembly bindings.
21221         (assembly_binding_maps_name): New static function for checking if a 
21222         assembly binding information maps an assembly name.
21223         (mono_assembly_binding_info_free): New function for freeing
21224         assembly binding information resources.
21225         (get_publisher_policy_info): New static function for retrieving 
21226         assembly binding information from a MonoImage.
21227         (compare_versions): New static function for comparing an assembly
21228         binding information data and the version of an assembly name.
21229         (check_policy_versions): New static function for checking if an
21230         assembly binding info mapping an assembly name is valid for it.
21231         (mono_assembly_load_publisher_policy): New static function for
21232         loading the 'policy.major.minor.MyAssembly' image for an assembly
21233         with an assembly name 'aname'.
21234         (mono_assembly_bind_version): New static function for updating
21235         assembly redirection.
21236         (mono_assembly_apply_binding): New static function for applying
21237         assembly binding.
21238         (search_binding_loaded): New static function for searching 
21239         loaded assembly binding infos in the cache domain.
21240         (mono_assembly_load_full): Don't apply assembly binding for
21241         reflection only assemblies.
21242
21243         * metadata-internals.h: Add MonoAssemblyBindingInfo,
21244         which contains information about assembly binding. Also
21245         declare signature for mono_config_parse_publisher_policy ()
21246         function, used to retrieve pub policy info.
21247         
21248         * mono-config.c:
21249         (publisher_policy_start): New static function used to parse publisher 
21250         policy config files.
21251         (publisher_policy_parser): New static MonoParseHandler containing 
21252         the functions used when parsing config files.
21253         (mono_config_parse_publisher_policy): New function for parsing
21254         publisher policy files.
21255         
21256 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
21257
21258         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
21259
21260         * marshal.c (mono_delegate_free_ftnptr): Ditto.
21261
21262         * object.c (mono_get_addr_from_ftnptr): New helper function.
21263
21264         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
21265
21266         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21267
21268 2005-08-19  Dick Porter  <dick@ximian.com>
21269
21270         * threads.c, threads.h, appdomain.c, appdomain.h,
21271         profiler-private.h, monitor.c, object.c, object-internals.h,
21272         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
21273         store the thread ID, so it can hold a 64 bit value if needed.
21274
21275 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
21276
21277         * reflection.c (mono_reflection_create_dynamic_method): Store the
21278         handle class into the method references as well so ldtoken works in
21279         dynamic methods.
21280
21281         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
21282         types.
21283
21284 2005-08-19  Ankit Jain <jankit@novell.com>
21285
21286         Fix #75847.
21287         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
21288           here rather than using the method signature of a arbitrary function
21289           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
21290           two arguments.
21291           Hack done with Harinath.
21292
21293 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21294
21295         * threadpool.c: disable printing stack traces when we get a exception
21296         in a threadpool thread. I need to do more testing to figure out which
21297         cases actually print this. Fixes bug #75828.
21298
21299 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21300
21301         * icall.c: there might be ignored whitespace after the last '='. This
21302         fixes length computation and bug #75840.
21303
21304 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
21305
21306         * assembly.c (mono_assembly_load_full): Consider .exe extension as
21307         well. Fixes #75809.
21308
21309         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
21310         #75784.
21311         
21312         * reflection.c (create_custom_attr_data): Ditto.
21313
21314 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
21315
21316         * locales.c, culture-info.h : removed RegionLCIDMap.
21317         * culture-info-tables.h : regenerated.
21318
21319 2005-08-16  Martin Baulig  <martin@ximian.com>
21320
21321         * class.c (mono_type_get_name_recurse): Small fix.
21322
21323 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
21324
21325         * locales.c : indentation fixie.
21326
21327 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
21328
21329         * object-internals.h,
21330           locales.h,
21331           locales.c,
21332           culture-info.h,
21333           icall.c : added RegionInfo table support.
21334         * culture-info-table.h : regenerated for region support.
21335
21336 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
21337
21338         * reflection.c (resolve_object): handle all kinds of MonoMethod
21339         including generic ones
21340
21341 2005-08-12  Ankit Jain <jankit@novell.com>
21342
21343         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21344           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
21345
21346 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
21347
21348         * process.c: Don't close a thread handle when it's NULL. This is a
21349         workaround for bug #75733.
21350
21351 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
21352
21353         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21354
21355 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
21356
21357         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21358
21359 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21360
21361         * threadpool.c: if a work item in the thread pool has a callback that
21362         catches a exception, don't propagate it after invoking the callback.
21363         Fixes bug #75336.
21364
21365 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
21366
21367         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21368
21369         * class-internals.h (MonoCachedClassInfo): Add some new fields.
21370
21371         * class.c (mono_class_init): Load field info lazily in the AOT case.    
21372
21373         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21374
21375 2005-08-03  Ankit Jain  <jankit@novell.com>
21376
21377         Fix #75683.
21378         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21379           PInvoke calling convention is 0.
21380
21381 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21382
21383         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21384         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21385
21386 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21387
21388         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21389         to handle threads not started by the GC (patch by Michael Meeks
21390         <michael.meeks@novell.com>).
21391
21392 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21393
21394         * reflection.c: Make buffer used in emitting types larger for some
21395         big generic types (patch by Michal Moskal).
21396
21397 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21398
21399         * mono-debug.c: Fix some (not all) alignment problems.
21400
21401 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21402
21403         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21404         Invoke mono_image_load_from_data_full passing the refonly
21405         parameter.
21406
21407         * assembly.c
21408         (mono_assembly_open_from_bundle): Add the refonly argument, 
21409         in order to pass it to other methods it calls to.
21410         (do_mono_assembly_open): Add the refonly argument, in order 
21411         to pass it to other methods it calls to.
21412         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21413         the refonly parameter to it.
21414
21415         * image.c: Add loaded_images_refonly_hash and
21416         loaded_images_refonly_guid_hash to cache the reflection
21417         only loaded images.
21418         (mono_images_init): Initialize the hash tables used for
21419         caching the reflection only images.
21420         (load_modules): Invoke mono_image_open_full passing the refonly
21421         parameter to load the modules the correct way.
21422         (build_guid_table): Add the refonly argument, to re-build the 
21423         correct hash table.
21424         (do_mono_image_open): Added the refonly argument, in order to
21425         define it for the loaded image.
21426         (mono_image_loaded_full): New function, which receives an
21427         additional parameter to look for the image in the refonly or
21428         non-refonly section.
21429         (mono_image_loaded): Updated, using mono_image_loaded_full.
21430         (mono_image_loaded_by_guid_full): The same case that happens
21431         with mono_image_loaded_full.
21432         (mono_image_loaded_by_guid): Likewise.
21433         (register_image): Use the ref_only variable inside MonoImage
21434         to decide in which hash table store the current image.
21435         (mono_image_open_from_data_full): Rename
21436         mono_image_open_from_data to mono_image_open_from_data_full,
21437         adding the refonly argument, to define the ref_only variable 
21438         inside MonoImage.
21439         (mono_image_open_from_data): Return 
21440         mono_image_open_from_data_full.
21441         (mono_image_open_full): Rename mono_image_open to
21442         mono_image_open_full, receiving the new refonly argument,
21443         to pass it to inner methods.
21444         (mono_pe_file_open): Update this function, to open
21445         a MonoImage as a non-refonly image.
21446         (mono_image_close): Use the refonly variable inside
21447         MonoImage to remove the image from the correct caches.
21448
21449         * image.h: Add the signatures of mono_image_open_full,
21450         mono_image_open_from_data_full, mono_image_loaded_full,
21451         mono_image_loaded_by_guid_full.
21452
21453         * metadata-internals.h: Add the ref_only field to 
21454         MonoImage.
21455         
21456 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21457
21458         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21459         Fix the last behavior, which used to load the assemblies and
21460         extract MonoReflectionAssemblyName information, instead of
21461         extract it from the metadata tables. Needed for Reflection
21462         Only assemblies.
21463         
21464 2005-07-29  Martin Baulig  <martin@ximian.com>
21465
21466         * mono-debug-debugger.c
21467         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21468         not initialized.
21469
21470         * mono-debug.c
21471         (mono_debug_address_from_il_offset): Check whether we have
21472         debugging support before attempting to take the lock.
21473         (mono_debug_source_location_from_address): Likewise.
21474         (mono_debug_source_location_from_il_offset): Likewise.
21475         (mono_debug_il_offset_from_address): Likewise.
21476         (mono_debug_address_from_il_offset): Likewise.
21477
21478 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21479
21480         * class.c (mono_class_from_name_case): Add support for dynamic images.
21481         Fixes #75650.
21482
21483         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21484         for #75479.
21485
21486 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21487         
21488         * reflection.c (mono_method_get_object): Fix warning.
21489
21490 2005-07-28  Martin Baulig  <martin@ximian.com>
21491
21492         * mono-debug.c
21493         (mono_debug_add_wrapper): Also write the wrapper type.
21494
21495 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21496
21497         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21498         
21499         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21500         data indicates the class has none.
21501
21502 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21503
21504         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21505         loader lock with the debugger lock. Prevents deadlocks for beagle.
21506
21507         Beagle can now run on an smp box for a weekend without any
21508         issues. Woohoo!
21509
21510 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21511
21512         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21513         in a module. Fixes #75629.
21514
21515 2005-07-26  Martin Baulig  <martin@ximian.com>
21516
21517         * mono-debug.c (mono_debug_add_wrapper): New static method.
21518         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21519         interncall or a wrapper.
21520
21521         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21522         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21523         (MONO_DEBUGGER_VERSION): Bump to 51.
21524
21525         * mono-debug-debugger.c
21526         (mono_debugger_add_type): Removed this empty function.
21527         (mono_debugger_add_method): Likewise.
21528
21529 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21530
21531         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21532         before accessing method->slot.
21533
21534 2005-07-21  Jb Evain  <jbevain@gmail.com>
21535
21536         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21537         Fixes #75010.
21538
21539 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21540
21541         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21542         #75587.
21543
21544 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21545
21546         * image.h image.c: Add mono_image_get_guid () API function.
21547
21548 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21549
21550         There were issues when multiple threads tried to load
21551         assemblies. A deadlock was created between assemblies_mutex and
21552         mono_domain_assemblies_lock. This fixes the issue by making the
21553         assembly ref counting be lock free. See bug 75586.
21554         
21555         * image.c (mono_image_close): The add ref function here was using
21556         Interlocked operations while the unref was using a mutex and a
21557         --. I don't think this was ever a bug that would be exposed in a
21558         non-pendantic way (ie, by an embedder doing a ref on one thread
21559         and an unref on another), but for the sake of correctness, this is
21560         now Interlocked.
21561
21562         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21563         (mono_assembly_load_reference): Call mono_assembly_addref rather
21564         than touching the refcount ourselves.
21565         (mono_assembly_close): Use InterlockedDecrement to unref the
21566         assembly. Don't acquire the lock unless it is actually needed.
21567
21568 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21569
21570         * class.c (mono_class_layout_fields): Fix calculation of has_references
21571         for generic types.
21572
21573 2005-07-12  Martin Baulig  <martin@ximian.com>
21574
21575         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21576
21577         * metadata.c
21578         (mono_type_hash): Provide better hashing for generic instances.
21579         (mono_generic_inst_hash): Improve hashing.
21580         (mono_generic_class_hash): Likewise.
21581
21582         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21583         generic instances.
21584
21585 2005-07-12  Martin Baulig  <martin@ximian.com>
21586
21587         * reflection.c (mono_reflection_create_runtime_class): Remove the
21588         hack for generic type definitions and non-`Run' assemblies.
21589         (mono_reflection_bind_generic_parameters): Also use
21590         `klass->wastypebuilder' to check for TypeBuilders.
21591
21592 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21593
21594         * class.c (mono_class_layout_fields): Fix calculation of has_references
21595         for generic types.
21596
21597         * class.c (inflate_generic_class): Fix a leak.
21598         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21599         for generic types.
21600
21601 2005-07-11  Martin Baulig  <martin@ximian.com>
21602
21603         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21604         on error.
21605
21606 2005-07-11  Martin Baulig  <martin@ximian.com>
21607
21608         * loader.c (find_method): Also lookup in
21609         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
21610
21611 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21612
21613         * appdomain.c (mono_domain_unload): Don't free the error message
21614         before passing it to mono_get_exception_...
21615
21616         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
21617         
21618 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
21619
21620         * threads.c: try to better guess an available RT signal (bug #75387).
21621
21622 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21623
21624         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
21625         and CACHE_OBJECT.
21626
21627 2005-07-07  Martin Baulig  <martin@ximian.com>
21628
21629         * class.c (mono_type_get_name_full): Return NULL for
21630         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
21631         fixes #75408.
21632
21633 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21634
21635         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
21636         exit the appdomain as well being aborted.
21637
21638         * threadpool.c: Create all threadpool threads inside the root appdomain, and
21639         change back to the root domain after calling managed code. This enables
21640         appdomains using threadpools to be unloaded.
21641
21642 2005-07-07  Martin Baulig  <martin@ximian.com>
21643
21644         * class-internals.h
21645         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
21646         into `MonoDynamicGenericClass' since we only need it for dynamic
21647         types.
21648
21649         * reflection.c (mono_class_bind_generic_parameters): We don't need
21650         to compute the `parent' here.
21651
21652 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
21653
21654         * culture-info-table.h : regenerated.
21655
21656 2005-07-06  Martin Baulig  <martin@ximian.com>
21657
21658         * icall.c
21659         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
21660
21661         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
21662
21663 2005-07-06  Martin Baulig  <martin@ximian.com>
21664
21665         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
21666         we're doing a signature-only comparision; fixes #74945.
21667
21668 2005-07-06  Martin Baulig  <martin@ximian.com>
21669
21670         * class-internals.h (MonoGenericClass): Moved some things out into
21671         a new `MonoInflatedGenericClass' type.  
21672         (MonoInflatedGenericClass): New type; the `klass' of a
21673         `MonoGenericClass' is now computed lazyly in
21674         mono_get_inflated_generic_class().      
21675
21676         * class.c (mono_get_inflated_generic_class): New public function.
21677         (mono_class_inflate_generic_method): Removed the unused
21678         `MonoClass *' argument.
21679         (setup_generic_vtable): Don't call mono_get_inflated_method() on
21680         all the methods.
21681         (mono_class_create_generic): Make this static and merge it with
21682         mono_class_create_generic_2(); we're now called automatically from
21683         mono_get_inflated_generic_class().
21684
21685         * loader.c (mono_method_signature): Call
21686         mono_get_inflated_method() here.
21687
21688 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
21689
21690         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
21691         type of fields with RVA.
21692
21693         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
21694         for this pseudo class.
21695         (my_mono_class_from_generic_parameter): Likewise.
21696         (mono_class_init): Allow interfaces to have cctors.
21697
21698 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21699
21700         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
21701         lazily for AOT methods.
21702
21703 2005-07-05  Martin Baulig  <martin@ximian.com>
21704
21705         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
21706         returns FALSE for a successful match, not TRUE.
21707
21708 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21709
21710         * loader.c (mono_method_get_index): Optimize this a bit.
21711
21712 2005-07-04  Martin Baulig  <martin@ximian.com>
21713
21714         * class.c
21715         (class_compute_field_layout): Move the check for generic type
21716         definitions into mono_class_layout_fields().  Fixes #74684.
21717         (mono_class_from_generic_parameter): Correctly compute
21718         `klass->parent'; fixes #75457.
21719
21720         * reflection.c (register_assembly, register_module): Make sure
21721         `domain->rejobject_hash' is already created.
21722
21723 2005-07-02  Martin Baulig  <martin@ximian.com>
21724
21725         * class-internals.h
21726         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
21727         `MonoDynamicGenericClass'.      
21728
21729 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
21730
21731         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
21732         returned by a field getter is null, since null is a valid value.
21733
21734 2005-07-01  Martin Baulig  <martin@ximian.com>
21735
21736         * reflection.c (mono_reflection_generic_class_initialize): Update
21737         the `dgclass->fields [i].parent' to the correct class.
21738         (mono_image_get_fieldref_token): Use the declaring type, not the
21739         reflected type.
21740
21741 2005-07-01  Martin Baulig  <martin@ximian.com>
21742
21743         * loader.c (find_method): Also look in the interfaces; fixes #75429.
21744
21745 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
21746
21747         * threads.c (thread_cleanup): assert that thread != NULL
21748         (wait_for_tids_or_state_change): We were using the wrong variable
21749         when accessing wait->threads. `i' was always out of the bounds of
21750         the array.
21751
21752 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21753
21754         * loader.c: map user32 and kernel32 to libMonoSupportW
21755
21756 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
21757
21758         * appdomain.c (unload_thread_main): Mark this as WINAPI.
21759
21760 2005-06-28  Martin Baulig  <martin@ximian.com>
21761
21762         * loader.c (method_from_methodspec): Fix #75334.
21763
21764 2005-06-28  Martin Baulig  <martin@ximian.com>
21765
21766         Fix #74953 - Arrays now implement the generic IList<T> interface
21767         on the 2.0 platform.
21768
21769         * class-internals.h (MonoDefaults): Added `generic_array_class'.
21770
21771         * reflection.c (mono_class_bind_generic_parameters): New public
21772         function; similar to mono_reflection_bind_generic_parameters(),
21773         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
21774
21775         * domain.c (mono_init_internal): Try to initialize.
21776         `mono_defaults.generic_array_class' here; this'll only succeed if
21777         we're using the 2.0 corlib.
21778
21779         * icall.c
21780         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
21781         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
21782         (mono_lookup_internal_call): Added support for nested classes.
21783
21784         * loader.c
21785         (mono_get_method_from_token): Set `result->signature->pinvoke' if
21786         we're an interncall and have generic arguments.
21787
21788         * class.c
21789         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
21790         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
21791         instance of System.Array.InternalArray<T> for arrays, so they
21792         implement the generic IList<T> interface.
21793
21794 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
21795
21796         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
21797         (chastamar@yahoo.com). Fixes #75374.    
21798
21799 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
21800
21801         * culture-info-table.h: regenerated.
21802
21803 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21804
21805         * icall.c: handle spaces correctly for base64 strings.
21806
21807 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
21808
21809         * *.c: Kill some warnings.
21810
21811 2005-06-23  Duncan Mak  <duncan@novell.com>
21812
21813         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
21814         that this builds on Solaris 10 (x86).
21815
21816 2005-06-23  Martin Baulig  <martin@ximian.com>
21817
21818         * class.c
21819         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
21820         generic type definitions.
21821
21822 2005-06-23  Martin Baulig  <martin@ximian.com>
21823
21824         Fix #75331.
21825
21826         * metadata.c (mono_class_get_overrides): Renamed to
21827         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
21828         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
21829         pass it to mono_get_method_full().
21830
21831 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
21832
21833         * reflection.c (mono_reflection_create_runtime_class): take the
21834         mono_domain_lock in this method. Prevents deadlocks
21835
21836 2005-06-22  Martin Baulig  <martin@ximian.com>
21837
21838         * loader.c (method_from_methodspec): Fix #75330.
21839
21840 2005-06-22  Martin Baulig  <martin@ximian.com>
21841
21842         * reflection.c (type_get_qualified_name): Use
21843         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
21844         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
21845         argument; use it if we don't have an assembly name.
21846
21847 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
21848
21849         * object.c: In mono_message_init, set "copy out" flag for in
21850         parameters with the [Out] flag.
21851
21852 2005-06-21  Martin Baulig  <martin@ximian.com>
21853
21854         * class.c
21855         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
21856         and MONO_TYPE_PTR.
21857
21858 2005-06-21  Martin Baulig  <martin@ximian.com>
21859
21860         * class.c (mono_class_init): Don't initialize `class->fields' for
21861         generic instances since they're initialized again in
21862         compute_field_layout(). 
21863         (compute_field_layout): Set the field's `generic_info' here; fix
21864         #75320. 
21865
21866 2005-06-21  Martin Baulig  <martin@ximian.com>
21867
21868         * class-internals.h
21869         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
21870
21871         * metadata.c (mono_metadata_generic_method_equal): Also
21872         distinguish the `generic_class'; fixes #75334.
21873
21874 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21875
21876         * domain.c:
21877         * appdomain.c:
21878         * domain-internals.h:
21879         * reflection.c: 'domain_assemblies' field is now protected by its own
21880         lock. Don't call into managed code to run the AssemblyLoad event if we
21881         now there are no registered delegates for it.
21882
21883 2005-06-20  Martin Baulig  <martin@ximian.com>
21884
21885         * class.c (mono_class_is_assignable_from): Use a custom version of
21886         mono_class_has_parent() to make things work for generic instances;
21887         fix #75300.
21888
21889 2005-06-20  Martin Baulig  <martin@ximian.com>
21890
21891         * loader.c (method_from_methodspec): Apply a patch from
21892         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
21893
21894 2005-06-20  Martin Baulig  <martin@ximian.com>
21895
21896         * class.c (mono_class_init): Reverted Zoltan's last change; it
21897         breaks generics.
21898
21899 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
21900
21901         * threads.c (wait_for_tids_or_state_change): Add missing locking.
21902
21903 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21904
21905         * socket-io.c: fix the index in the socket array for writable/error
21906         sockets. Fixes bug #75306.
21907
21908 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
21909
21910         * class.c (mono_class_init): Allow interfaces to have static ctors.
21911
21912 2005-06-17  Martin Baulig  <martin@ximian.com>
21913
21914         * loader.c (method_from_methodspec): Use `context->container' when
21915         parsing the `gmethod->inst'.
21916
21917 2005-06-17  Martin Baulig  <martin@ximian.com>
21918
21919         * class.c (mono_type_get_name_recurse): Don't add the assembly
21920         name for type arguments.
21921
21922 2005-06-15  Martin Baulig  <martin@ximian.com>
21923
21924         * reflection.c (mono_image_get_inflated_method_token): Encode
21925         correct klass; fixes #75260.
21926
21927 2005-06-13 Michal Moskal <malekith@nemerle.org>
21928
21929         * icall.c: Make GetCorrespondingMethod/Constructor take
21930         MonoReflectionMethod method not MonoMethod. Removed
21931         MonoType.GetCorrespondingField, and make
21932         MonoGenericType.GetCorrespondingField take name not
21933         MonoClassField.
21934
21935 2005-06-13  Michal Moskal <malekith@nemerle.org>
21936
21937         * reflection.c (field_encode_signature, encode_locals):
21938          Make sizes of buffers for types larger (for big generic types).
21939          (create_generic_typespec,
21940          mono_reflection_sighelper_get_signature_local,
21941          mono_reflection_sighelper_get_signature_field):
21942          Add asserts for too small buffers.
21943
21944 2005-06-15  Martin Baulig  <martin@ximian.com>
21945
21946         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
21947         if our parent is not a dynamic type.
21948
21949 2005-06-15  Martin Baulig  <martin@ximian.com>
21950
21951         * class-internals.h (MonoTypeNameFormat): New enum.
21952
21953         * class.c
21954         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
21955         (mono_type_get_full_name): Removed.
21956         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
21957         argument instead of the boolean's.
21958
21959         * icall.c (ves_icall_System_MonoType_getFullName):
21960         Added `gboolean assembly_qualified'.    
21961
21962         * reflection.h
21963         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
21964
21965         * reflection.c (mono_reflection_parse_type): Parse the new type
21966         name format.
21967
21968 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21969
21970         * icall.c: no need to convert from utf16 to utf8 and then back again
21971         after the call to GetLogicalDrives.
21972
21973 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21974
21975         * icall.c: frombase64. Fix problems exposed by new tests.
21976
21977 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21978
21979         * icall.c: added internal calls for converting char [] and strings in
21980         base64 into byte [].
21981
21982 2005-06-10  Martin Baulig  <martin@ximian.com>
21983
21984         * class.c (mono_class_create_generic_2): Read the nested classes
21985         from the metadata rather than from `gklass->nested_classes' since
21986         `gklass' might not be initialized yet.
21987
21988 2005-06-09  Duncan Mak  <duncan@novell.com>
21989
21990         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
21991         all public headers. Fixes #74919.
21992
21993 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
21994
21995         * domain.c: The key for proxy_vtable_hash is now a pointer
21996         array. Added new GHashFunc and GCompareFunc functions for this.
21997
21998         * class.h: The list of interfaces in MonoRemoteClass is known in
21999         advance and can't grow (we create a new MonoRemoteClass if needed),
22000         so now the interface array can be allocated together with
22001         MonoRemoteClass.
22002         
22003         * object.c: Added a new method create_remote_class_key.
22004         Fixed mono_remote_class so it does not depend on
22005         mono_upgrade_remote_class.
22006         Removed extend_interface_array.
22007         Added new method clone_remote_class(), which makes a copy of a remote
22008         class and adds a new interface or class to it.
22009         mono_upgrade_remote_class() now creates a new remote class (or gets
22010         it from the cache) if an vtable upgrade is needed. In this way
22011         we make sure that other objects sharing the same remote class
22012         don't get the new vtable with unwanted interfaces.
22013         
22014         * object-internals.h:
22015         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
22016         
22017         * marshal.c: Track changes in mono_upgrade_remote_class().
22018
22019 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
22020         * icall.c: Add runtime methods for obtaining members of inflated
22021         class, which were created from supplied non-inflated members. It
22022         is used in internal Get{Method,Constructor,Field} methods in
22023         System.Type
22024
22025 2005-06-09  Martin Baulig  <martin@ximian.com>
22026
22027         * reflection.c
22028         (mono_reflection_bind_generic_method_parameters): Fix #75169.
22029
22030 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22031         * reflection.c (mono_image_basic_init): Define
22032         Version in MonoDynamicAssembly. 
22033         
22034 2005-06-08  Martin Baulig  <martin@ximian.com>
22035
22036         Fix #75136.
22037
22038         * loader.c
22039         (mono_method_signature_full): New public method; takes a
22040         `MonoGenericContext *'.
22041         (find_method): Use mono_method_signature_full() and pass the
22042         klass'es context to it.
22043
22044         * class.c (mono_class_is_inflated_method): Use
22045         mono_method_signature_full() and pass the context to it.
22046
22047 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
22048
22049         * object.c: add proper locking in mono_remote_class_vtable(),
22050         fixes possible memory corruption.
22051
22052 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
22053
22054         * marshal.c (mono_remoting_marshal_init): set
22055         initialized after initialization.
22056
22057 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
22058
22059         * locales.c : hush.
22060
22061 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
22062
22063         * object.c (extend_interface_array): fix really silly
22064         memory corrupting / comparison bug.
22065
22066 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22067
22068         * reflection.c: Functions added to support the creation
22069         of CustomAttributeData, which includes Attribute data
22070         used by ReflectionOnly methods.
22071
22072         * reflection.h:  mono_reflection_get_custom_attrs_data and
22073          mono_custom_attrs_data_construct added (functions exposed).
22074
22075          * icall.c: Added mono_reflection_get_custom_attrs_data
22076          as icall.
22077         
22078 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
22079
22080         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
22081         lupus's request.
22082
22083 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
22084
22085         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
22086
22087         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
22088         dynamic DllImportAttribute.
22089
22090         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
22091         dynamic DllImportAttribute.
22092
22093         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22094         Fixes #75162.
22095
22096 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22097
22098         * threads.c: avoid segfault when an unstarted thread is aborted.
22099
22100 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
22101
22102         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22103         Returns the name and version of the runtime for reporting.
22104
22105 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22106
22107         * appdomain.c: bump corlib version.
22108         * object-internals.h: new field in MonoReflectionAssembly.
22109
22110 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22111
22112         * object-internals.h: Carlos forgot to add this field.
22113
22114 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22115
22116         * icall.c: Added create_version to create instances
22117         of Version of MonoReflectionAssemblyName. This change helps
22118         the AssemblyName tests to keep running fine.
22119         
22120 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
22121   
22122         * object.c (mono_method_return_message_restore): A somehow less
22123         intrusive fix for #75138.
22124
22125 2005-06-03  Raja R Harinath  <rharinath@novell.com>
22126
22127         * object.c (mono_method_return_message_restore): Fix computation
22128         of expected number of out args.
22129
22130 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22131
22132         * reflection.c (mono_image_get_method_info): Fix the case when the
22133         charset is empty.
22134
22135 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
22136
22137         * object.c: Added missing null check in
22138           mono_method_return_message_restore.
22139
22140 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22141
22142         * reflection.c (mono_image_get_method_info): Handle the case when
22143         dllentry is empty.
22144
22145 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
22146
22147         * object.c: When creating the vtable for a proxy, take into account
22148         all inherited interfaces, not only the ones registered in
22149         iclass->interfaces. This fixs bug #74996.
22150         Also, in mono_method_return_message_restore, verify that the array
22151         of out args has the expected lengh.
22152
22153 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22154
22155         * socket-io.c: update the timeout in Poll when the call is interrupte.
22156
22157 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22158
22159         * socket-io.c: support abort/suspend in Select_internal after last
22160         change.
22161
22162 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22163
22164         * threadpool.c: remove warning.
22165
22166 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22167
22168         * icall.c:
22169         * socket-io.[ch]: Select_internal uses poll() now when available, thus
22170         removing the 1024 limit from select(). Runtime part of the fix for
22171         bug #71203.
22172
22173 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22174
22175         * socket-io.c: when resolving the addresses for the same
22176         host returned by gethostname(), get the local IPs from the interface
22177         list. Loopback addresses are discarded if the are interfaces up with
22178         non-loopback ones. Fixes bug #63265.
22179
22180 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
22181
22182         * appdomain.c, verify.c, object-internals.h, reflection.c:
22183         bumped corlib number to 36, and added new extra_flags field
22184         to ReflectionMethodBuilder and friends.  Fixes #75060.
22185
22186 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22187
22188         * gc.c: register a new weak link only if the object is non-null
22189         (fixes bug#75047).
22190
22191 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22192
22193         * culture-info.h : short time pattern too.
22194
22195 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22196
22197         * culture-info.h : expand long time pattern string length.
22198
22199 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22200
22201         * culture-info-table.h : update (more French date format; #72788).
22202
22203 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
22204
22205         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
22206         the method is static. Fixes #75029.
22207
22208 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
22209
22210         * reflection.c: Update the table_idx field of method builders after
22211         saving the module, since it can change. This is a workaround for
22212         bug #74914. 
22213
22214 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22215
22216         * culture-info-table.h : update (additional French date format).
22217
22218 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
22219
22220         * icall.c (ves_icall_type_Equals): Revert last change.
22221         
22222         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
22223
22224         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
22225
22226 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
22227
22228         * class-internals.h: Added executioncontext_class field to 
22229         MonoDefaults structure.
22230         * domain.c: Cache System.Threading.ExecutionContext class in 
22231         mono_defaults.
22232         * object.c: Capture the ExecutionContext for asynchroneous calls in
22233          mono_async_result_new.
22234         * object-internals.h: Added execution_context and original_context 
22235         fields to MonoAsyncResult. Added execution_context to MonoThread.
22236         * security-manager.c|.h: Added mono_get_context_capture_method to 
22237         return the capture method (if required by the security manager or by
22238         the framework version used).
22239         * threadpool.c: Apply capture (if present) ExecutionContext in 
22240         mono_async_invoke and revert to original context after it completes.
22241
22242 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
22243
22244         * culture-info-table.h : updated (real hacky solution for zh-CHT).
22245
22246 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
22247
22248         * culture-info-table.h : zh-CHT related workaround.
22249
22250 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22251
22252         * marshal.c (emit_marshal_custom): Add some error checking and call the
22253         methods in the ICustomMarshaler interface. Fixes #74875.
22254         
22255         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
22256         native->managed wrappers.
22257
22258 2005-05-12  Martin Baulig  <martin@ximian.com>
22259
22260         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
22261         here and use the loader lock.
22262
22263         * mono-debug.c: Properly lock when the debugger is not attached.
22264         (mono_debug_init): Release the initial lock if we're not running
22265         in the debugger.
22266
22267 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22268
22269         * marshal.c (emit_marshal_custom): Pass through NULL values without
22270         calling the custom marshalling routines.
22271
22272         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
22273         conversion in structures. Fixes #74882.
22274
22275 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
22276
22277         * culture-info-table.h : zh-* cultures were missing.
22278
22279 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
22280
22281         * threads.c: Added a new event background_change_event which is signaled
22282         when a thread changes its background mode.
22283         Moved here several checks previously done in managed code. The checks
22284         require the thread lock, and using the thread lock in managed code
22285         can result in deadlocks.
22286         Merged Start_internal and Thread_internal into a single method. Now 
22287         Thread_internal does all work of creating and starting a thread.
22288         Added icalls for setting and getting the state of the object. Moved from
22289         managed code to avoid locking there.
22290         Added wait_for_tids_or_state_change() which is called instad of
22291         wait_for_tids when waiting for non-backround threads to end. This method
22292         will return if one of the threads ends or the background_change_event
22293         is signaled.
22294         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
22295         the background mode. This method signals the background_change_event
22296         event.
22297         * icall.c:
22298         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
22299         removed Start_internal.
22300         
22301 2005-05-11  Martin Baulig  <martin@ximian.com>
22302
22303         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
22304         to order of some fields to get proper alignment on 64-bit machines.
22305
22306 2005-05-11  Martin Baulig  <martin@ximian.com>
22307
22308         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
22309         changes as they're broken and completely fuck up the debugger.
22310
22311         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
22312
22313 2005-05-10  Martin Baulig  <martin@ximian.com>
22314
22315         * reflection.c (mono_reflection_generic_class_initialize): Don't
22316         call mono_class_setup_parent() here.
22317
22318 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22319
22320         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
22321         send/receive timeout use an integer in milliseconds. We were using a
22322         struct timeval.
22323
22324 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22325
22326         * locales.c:
22327         (internal_get_cultures): reserve the first slot of the array for the
22328         InvariantCulture, which will be filled in managed code.
22329
22330 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
22331
22332         * reflection.c (mono_image_fill_module_table): Initialize the
22333         GENERATION field as well.
22334
22335 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22336
22337         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22338         Monitor.Enter on the object.
22339
22340 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
22341
22342         * threads.c: Enable the wait for running threads when exiting.
22343         * icall.c: Suspend all threads before exiting.
22344
22345 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
22346
22347         * assembly.c (mono_assembly_load_reference): Fix warning.
22348
22349 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22350
22351         * threadpool.c: changed the default number of threads per cpu. From now
22352         on, the default will be 20 + (5 * number of cpus) instead of 50.
22353
22354 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
22355
22356         * loader.c (mono_method_get_signature_full): Add locking here.
22357
22358 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
22359
22360         * appdomain.c: Moved methods for parsing and freeing assembly
22361         names to assembly.c.
22362         * assembly.c, domain-internals.h: Created public methods for parsing
22363         assembly names. Fixed mono_assembly_load_with_partial_name:
22364         it now finds the best match, taking into account the version,
22365         token and culture specified in the partial name. Also return
22366         the latest version if no version information is specified.
22367
22368 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22369
22370         * threadpool.c: replace check for SocketAsyncCall class.
22371
22372 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22373
22374         * threadpool-internals.h:
22375         * Makefile.am: added threadpool-internals.h
22376
22377         * threadpool.c: call mono_unhandled_exception on exceptions not handled
22378         that happen in threadpool threads (tested on MS).
22379         (mono_thread_pool_remove_socket): new function that dispatch any pending
22380         AIO call on a socket that is closing. By now only epoll really needs it,
22381         as select/poll wake up when the socket closes.
22382
22383
22384         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22385
22386 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22387
22388         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22389
22390 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22391
22392         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22393
22394 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22395
22396         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22397         has an abort request, convert it into a suspend request.
22398
22399 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22400
22401         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22402         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22403         is not supported yet.
22404
22405 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22406
22407         * image.c: register assemblies loaded from data (bundles) in the loaded
22408         assemblies hash. Fixes bug #74772.
22409
22410 2005-04-29  Martin Baulig  <martin@ximian.com>
22411
22412         * class.c (mono_type_get_name_recurse): Update to the new naming
22413         schema from the latest .NET 2.x beta2.
22414         (mono_class_setup_vtable_general): If we're a generic instance,
22415         copy the vtable from our generic type definition and inflate all
22416         the methods in it.
22417
22418         * loader.c (find_method): Update to the new naming schema from the
22419         latest .NET 2.x beta2.
22420
22421 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22422
22423         * class.c (mono_class_init): Add a mono_loader_unlock to the
22424         #74734 fix.
22425
22426 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22427
22428         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22429         suspend_all_other_threads () call for the time being, since it can hang.
22430
22431         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22432         the background threads to exit, since it can also hang.
22433
22434         * class.c (mono_class_init): Applied patch from Ankit Jain 
22435         (radical@gmail.com). Avoid pending init errors when a field refers
22436         to a nested class using a typeref. Fixes #74734.
22437
22438         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22439         this for dynamic modules.
22440
22441 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22442
22443         * threads.c: don't wait for threads that are in the process of aborting
22444         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22445         and waiting for background threads to finish. This makes xsp and
22446         mod-mono-server exit without random length delays and/or hangs.
22447
22448 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22449
22450         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22451
22452 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22453
22454         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22455         dynamic types to prevent infinite loops. Fixes #74727.
22456
22457         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22458         ..._is_assignable_to.
22459
22460 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22461
22462         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22463
22464 2005-04-25  Martin Baulig  <martin@ximian.com>
22465
22466         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22467
22468         * domain.c
22469         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22470
22471         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22472
22473         * reflection.c (build_compressed_metadata): Set metadata header
22474         version to 2.0.
22475
22476 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22477
22478         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22479         number into an integral and a decimal part. Fixes #70473.
22480
22481         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22482
22483 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22484
22485         * culture-info-table.h : reflected the latest locale-builder output.
22486
22487 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22488
22489         * threadpool.c: check for SuspendRequested too when deciding if
22490         mono_thread_interruption_checkpoint should be called.
22491
22492 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22493
22494         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22495         * threads.c: remove interruption_mutex and use Interlocked instead. When
22496         suspending all the threads, wait for all the suspended events at once.
22497         If we're shutting down and get an APC that is going to be queued,
22498         call mono_thread_execute_interruption immediately, as the thread might
22499         be sleeping on a pthread condition or mutex.
22500
22501         * icall.c: call mono_runtime_set_shutting_down before suspending the
22502         threads.
22503
22504         Fixes bug #74693. And now xsp is happier when exiting.
22505
22506 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22507
22508         * loader.c (mono_stack_walk): Fix #74690.
22509
22510 2005-04-22  Martin Baulig  <martin@ximian.com>
22511
22512         * mono-debug.h (MonoDebugMethodJitInfo): Added
22513         `MonoDebugMethodJitInfo *jit'.
22514
22515         * mono-debug.c (mono_debug_read_method): Cache the
22516         MonoDebugMethodJitInfo in `address->jit'.
22517         (mono_debug_free_method_jit_info): New public method.
22518
22519 2005-04-22  Martin Baulig  <martin@ximian.com>
22520
22521         * class.c (mono_class_is_assignable_from): Disallow
22522         type parameter -> interface.
22523
22524 2005-04-21  Dick Porter  <dick@ximian.com>
22525
22526         * threads.c (mono_thread_create): Turn an assertion into an error.
22527
22528 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22529
22530         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22531         
22532         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22533         Fix some gcc 4.0 warnings.
22534
22535 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22536
22537         * file-io.c: fix alt dir separator char on unix systems
22538         and cleanup (fixes bug #71214).
22539
22540 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22541
22542         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22543         a call to a remote domain, since the method may be an
22544         interface method in the client domain. This fixes bug #74192.
22545
22546 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22547
22548         * threadpool.c: recv/send are now performed before going back to managed
22549         code to save one transition.
22550
22551 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22552
22553         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22554
22555         * metadata/threadpool.c: removed hack to workaround the bug above.
22556
22557         Fixes bug #74618.
22558
22559 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22560
22561         * reflection.c reflection.h: Fix handling of parameter defaults in
22562         dynamic methods. Also fixes handling of parameter attributes.
22563         Fixes #74609.
22564
22565         * mono-debug.c (mono_debug_close_image): Fix warning.
22566
22567 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22568
22569         * socket-io.h: replaced old unused field with new 'blocking'.
22570         * threadpool.c: restore socket blocking state on windows(tm).
22571
22572 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22573
22574         * icall.c: don't return the codebase in the AssemblyName[] returned by
22575         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22576         * object-internals.h: Removed FIXME (fields were presents) and fixed
22577         versioncompat declaration.
22578
22579 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22580
22581         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22582         not closed, so don't cleanup when it happens.
22583
22584 2005-04-13  Chris Toshok  <toshok@ximian.com>
22585
22586         * mono-debug-debugger.h: change prototype for
22587         mono_debugger_lookup_type.
22588
22589         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22590         this function, although it should probably be named
22591         mono_debugger_init_type.
22592
22593 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22594
22595         * threadpool.c: fix non-AIO case.
22596
22597 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22598
22599         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22600         the built-in profiler to measure just JIT compilation times.
22601
22602 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22603
22604         * threadpool.c: the epollfd might be closed by another thread at
22605         any time, so ignore EBADF at treat it as a "we're closing" sign.
22606
22607 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22608
22609         * threadpool.c: release the semaphores with a count equals to the number
22610         of working threads in both IO and regular pools. Fixed typo that messed
22611         up the count of IO pool threads. Don't initialize the pipe handles if
22612         we're using epoll.
22613
22614 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22615
22616         * threadpool.c: some systems don't like a NULL when deleting the socket
22617         from epoll.
22618
22619 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22620
22621         * threadpool.c: fix semaphore allocation.
22622
22623 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22624
22625         * threadpool.c: added epoll() based implementation for asynchronous IO
22626         that is used instead of the default poll() when available.
22627         It can be disabled by setting MONO_DISABLE_AIO.
22628
22629 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22630
22631         * threadpool.c: windows needs 'closesocket' and instead of returning
22632         0 when the stream is closed while in select, it returns -1. Fixes bug
22633         #74573.
22634
22635 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
22636
22637         * class.c (class_compute_field_layout): Fix the regression caused by
22638         the previous try.
22639
22640 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22641
22642         * threadpool.c: separate pool for socket async. IO.
22643         * threadpool.h: mono_max_worker_threads is not a global any more.
22644
22645 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
22646
22647         * class.c (class_compute_field_layout): Fix #74549.
22648
22649 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22650
22651         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
22652         use 2 connected sockets instead.
22653
22654 2005-04-08  Miguel de Icaza  <miguel@novell.com>
22655
22656         * mono-config.c: Add new entry point for mkbundle
22657         mono_config_parse_memory. 
22658
22659 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22660
22661         * threadpool.c: removed another unused function.
22662
22663 2005-04-08  Ankit Jain  <radical@corewars.org>
22664
22665         * reflection.c (get_default_param_value_blobs): Add 'types'
22666         parameter to get the types encoded in the constant table.
22667         (mono_param_get_objects): Use the type from the constant table,
22668         not the type of the parameter, when creating default values.
22669         Handle null default values correctly.
22670
22671 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22672
22673         * file-io.c:
22674         * file-io.h:
22675         * threadpool.c:
22676         * threadpool.h:
22677         * icall.c:
22678         * socket-io.c: removed dead code for async IO.
22679
22680 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22681
22682         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
22683
22684         * threadpool.c: intercept socket async. calls and pass them to a thread
22685         that is polling and dispatching the job items to the threadpool as
22686         socket become ready. Fixes bugs #71217, #71933.
22687
22688         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
22689         between char and short/ushort arrays.
22690
22691         * socket-io.c: remove dead code.
22692
22693 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22694
22695         * locales.c,
22696           icall.c : removed InternalToUpper_Comp() and
22697           InternalToLower_Comp().
22698
22699 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22700
22701         * char-conversions.h : The tables were incorrectly generated. Should
22702           be generated against invariant culture.
22703
22704 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
22705
22706         * object.c (mono_runtime_invoke_array): Fix return value when 
22707         passing pre-created valuetype objects to ctors.
22708
22709         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
22710         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
22711         Fixes #74338.
22712
22713 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
22714
22715         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
22716         only used with --security and hides the wrong corlib version error.
22717
22718 2005-03-30  Joshua Tauberer  <tauberer@for.net>
22719
22720         * class.c: Changed mono_class_name_from_token so that types
22721         outside of a namespace don't have an initial period.  Improved
22722         the g_warning message used in _mono_class_get when loading
22723         fails.
22724         * assembly.c: In mono_assembly_load_reference, when an assembly
22725         can't be found, "No such file or directory" is misleading and
22726         unhelpful because a few paths were checked for the presence of
22727         the assembly.  When that happens (ENOENT), display a nicer
22728         message indicating the directories that were searched.  In all
22729         cases, the warning is made easier to read for non-hackers.
22730
22731 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
22732
22733         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
22734         project/solution.
22735         * appdomain.h|domain.c: Removed inline from functions.
22736         * appdomain.c: Reduced warnings when compiling on windows.
22737         * icall.c: Fixed output_debug declaration to gunichar2*.
22738         * mono-config.c: Reduced warnings when compiling on windows.
22739         * rand.c: Added missing "windows.h". Added missing return value.
22740         * rawbuffer.c: Added missing winsock2.h for windows.
22741         * sysmath.h: Added mono-compiler.h header to allow/ease 
22742         compilation with non-GCC compilers.
22743         * threads.c: Fixed declarations to compile with VS.NET C compiler.
22744         Removed cast warnings.
22745
22746         Adapted from the work of J Lothian (for VC6).
22747
22748 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
22749
22750         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
22751         from default_path.
22752
22753 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
22754
22755         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
22756         the 2.0 profile.
22757
22758 2005-03-27  Raja R Harinath  <harinath@gmail.com>
22759
22760         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
22761         has to be in $(exec_prefix).  $(prefix) is for arch-independent
22762         stuff, and it would probably use $(prefix)/share rather than
22763         $(prefix)/lib.
22764
22765 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22766
22767         * console-io.c: added 2 includes that might be missing.
22768
22769 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
22770
22771         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
22772         profile.
22773
22774         * reflection.c (create_custom_attr): Allocate the params array using
22775         alloca so it gets GC tracking.
22776
22777 2005-03-23  Chris Toshok  <toshok@ximian.com>
22778
22779         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
22780         out some spew.
22781
22782 2005-03-24  Raja R Harinath  <rharinath@novell.com>
22783
22784         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
22785         changes to pick up any changes in prefix, etc.
22786
22787 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22788
22789         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
22790         
22791         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
22792         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
22793
22794 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22795
22796         * class-internals.h object-internals.h class.c reflection.c: Extend the
22797         mono_lookup_dynamic_token () function to return the class of the
22798         token as well. 
22799
22800         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
22801         well. Fixes #73848.
22802
22803 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
22804
22805         * security-manager.c: Skip inheritance checks for intra-corlib
22806         class inheritance and method overrides. This skips a lot of checks
22807         and (anyway) permissions cannot work until corlib is loaded.
22808
22809 2005-03-23  Martin Baulig  <martin@ximian.com>
22810
22811         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
22812         MONO_TYPE_GENERICINST.  
22813
22814 2005-03-23  Martin Baulig  <martin@ximian.com>
22815
22816         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
22817
22818 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22819
22820         * class.c: added locking comments to some functions.
22821         Cache the interface offsets arrays (saves about 20 KB
22822         of runtime memory in a typical app).
22823         Reduce the time overhead in mono_class_setup_supertypes ().
22824
22825 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
22826
22827         * icall.c: speedup and fix leaks in GetMethodsByName and
22828         GetPropertiesByName.
22829
22830 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22831
22832         * reflection.c: some locking fixes.
22833
22834 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22835
22836         * metadata.c: added missing break in case statement.
22837
22838 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
22839
22840         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22841         typedbyref return values. Fixes #73941.
22842
22843 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
22844
22845         * security-manager.c|h: Added demandunmanaged method and 
22846         suppressunmanagedcodesecurity class to MonoSecurityManager.
22847         Renamed aptc class to allowpartiallytrustedcallers.
22848
22849 2005-03-17  Martin Baulig  <martin@ximian.com>
22850
22851         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
22852
22853 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22854
22855         * file-io.c: disabled file async. IO using aio_*. It uses the
22856         threadpool now. Workaround for bug #73718.
22857
22858 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22859
22860         * assembly.h, mono-config.c: added code to deal with bundled configs
22861         for bundled assemblies.
22862
22863 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
22864
22865         * *.c, private.h: cleanup, removing old private.h header file.
22866
22867 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
22868
22869         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
22870         and throw_on_unmappable_char attributes.
22871
22872 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
22873
22874         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
22875         _ProcessName_internal.
22876
22877 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
22878
22879         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
22880         #73631.
22881
22882         * icall.c threads.c threads-types.h: Remove slothash icalls as they
22883         are no longer used.
22884
22885 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
22886
22887         * object.c (compute_class_bitmap): Add support for generics. Fixes
22888         #73527.
22889
22890 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22891
22892         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
22893
22894 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22895
22896         * filewatcher.c: commented out the code for windows watcher, as we don't
22897         use it (we use the managed implementation instead).
22898
22899 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22900
22901         * object-internals.h (MonoThread): Remove 'unused1' field.
22902
22903         * appdomain.c: Bump corlib version.
22904
22905         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
22906
22907         * reflection.c (mono_reflection_create_runtime_class): Remove the
22908         AssemblyBuilder.Save optimization since it causes too many problems.
22909
22910 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
22911
22912         * exception.c|h: Added mono_get_exception_reflection_type_load to
22913         create a ReflectionTypeLoadException object.
22914         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
22915         to return NULL is a InheritanceDemand fails during reflection. Updated
22916         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
22917         ReflectionTypeLoadException if an InheritanceDemand fails during 
22918         reflection. Added icall mapping for GetLinkDemandSecurity.
22919         * security-manager.c|h: Added ves_icall_System_Security_
22920         SecurityManager_GetLinkDemandSecurity internal call to return the
22921         class and methods permissions set for a LinkDemand. Removed unused
22922         fields in MonoSecurityManager.
22923
22924 2005-03-10  Martin Baulig  <martin@ximian.com>
22925
22926         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
22927         it's a generic instance.
22928
22929 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
22930
22931         * reflection.c (mono_get_object_from_blob): Applied patch from
22932         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
22933
22934         * class.c (mono_class_is_assignable_from): Another try at fixing 
22935         #73469 without breaking anything.
22936
22937 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
22938
22939         * class.c: (mono_class_is_assignable_from): Revert the last changes
22940         since they don't work with generics.
22941         
22942         * class.c (mono_class_is_assignable_from): Fix build bustage.
22943
22944         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
22945         the managed IsAssignableFrom method. Fixes #73469.
22946
22947         * reflection.c (mono_reflection_call_is_assignable_from): New helper
22948         function.
22949
22950 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
22951
22952         * object.c (mono_load_remote_field_new): Fix returning uninitialized
22953         memory when the remoting callback does not sets the out arguments.
22954         Fixes #73007.
22955
22956         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
22957         by mistake.
22958
22959         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
22960
22961         * object-internals.h (MonoStackFrame): Sync with managed object layout.
22962
22963         * appdomain.c: Bump corlib version.
22964
22965 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
22966
22967         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
22968         function.
22969
22970         * threads.c (mono_thread_attach): Detect threads which are not started
22971         by the GC pthread wrappers.
22972
22973 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
22974
22975         * icall.c: Added new icall for RNG.
22976         * rand.c|h: Added new icall to open the RNG. This allows to share a 
22977         single handle on Linux to access /dev/urandom and fix #73183.
22978
22979 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
22980
22981         * object.c: setting the new vtable in a transparent proxy object must
22982         not change the GC descriptor.
22983
22984 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22985
22986         * object.c: fixed compilation without GCJ support.
22987         * reflection.c: for runtime-created types ensure klass->has_references
22988         is correct (bug #73215).
22989
22990 2005-03-02  Martin Baulig  <martin@ximian.com>
22991
22992         * class.c (mono_class_is_assignable_from): Make this work if
22993         `oklass' is a generic instance; fixes #72831.
22994
22995 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22996
22997         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
22998         with hasthis set.
22999         
23000         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
23001
23002         * marshal.c: Reorganize native->managed marshalling code to also use
23003         the emit_marshal_... functions.
23004
23005 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23006
23007         * object.c: typed allocs have issues with bitmap sizes > 30,
23008         so check for max_set >= 30.
23009
23010 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23011
23012         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
23013         managed code. Fixes #73012.
23014
23015         * metadata.h (MonoMarshalSpec): Add elem_mult field.
23016
23017         * metadata.c reflection.c: Load/Emit elem_mult as well.
23018         
23019         * metadata.h (MonoMarshalSpec): Add comment.
23020
23021         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
23022
23023         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
23024         num_elem to -1 if not given.
23025
23026         * object-internals.h (MonoReflectionMarshal): Add has_size field.
23027
23028         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
23029         given values.
23030
23031 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
23032
23033         * null-gc.c (mono_gc_free_fixed): Was not compilable.
23034
23035 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
23036
23037         * reflection.c (encode_marshal_blob): Encode param_num field as well.
23038
23039         * object-internals.h (MonoReflectionMarshal): Add param_num field.
23040
23041 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23042
23043         * object.c: generalized the reference bitmap creation
23044         and added hooks for the new GC.
23045         * class-internals.c: removed the gc_bitmap field from MonoClass.
23046
23047 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23048
23049         * domain.c: help the compiler to produce better code
23050         in mono_jit_info_table_find ().
23051
23052 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23053
23054         * object.c: make all allocations look typed.
23055
23056 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23057
23058         * socket-io.c: load Mono.Posix if it's not loaded already
23059         (fixes bug#73033).
23060
23061 2005-02-24  Martin Baulig  <martin@ximian.com>
23062
23063         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
23064         * reflection.c (dup_type): Likewise.
23065
23066 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
23067
23068         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
23069         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
23070
23071 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23072
23073         * domain.c, threads.c, object-internals.h: make the critical thread
23074         local vars use the fast access mode (even when we're compiled in
23075         a lib). Provide accessors to be used by the jit during codegen.
23076
23077 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23078
23079         * appdomain.c: Changed hook functios behavior to include
23080         support for the reflection only assemblies. Some icalls were changed
23081         to support the mentioned assemblies too. Signatures of static methods
23082         try_assembly_resolve and real_load now have an additional parameter:
23083         refonly.
23084
23085         * assembly.c: General changes to mono_assembly_ methods to support
23086         reflection only api. Functions mono_assembly_open, mono_assembly_load,
23087         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
23088         suffix, to support an additional gbool parameter to specify whether
23089         the assembli is reflection only or not. Created some new hook functions 
23090         to add support for reflection only assemblies. Signatures of static 
23091         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
23092         have now an additional parameter: refonly.
23093
23094         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23095         indicating whether the assembly is reflection only or not.
23096
23097         * exception.c: Add mono_get_exception_invalid_operation.
23098
23099         * icall.c: Throw an InvalidOperationException when trying to invoke
23100         a property/method/event, or trying to set/get the value of a field.
23101         Also add an icall to retrieve the ref_only flag to the
23102         MonoReflectionAssembly.
23103
23104 2005-02-23  Chris Toshok  <toshok@ximian.com>
23105
23106         Part of fix for #72827.
23107         * mono-debug.c (mono_debug_add_method): add lexical block data to
23108         the info we write.  Kind of a hack at the moment - we copy the
23109         lexical block info from the MonoDebugMethodInfo to the
23110         MonoDebugMethodJitInfo here, before writing it.
23111         (mono_debug_read_method): read the lexical block info.
23112
23113         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23114
23115         * debug-mono-symfile.h: add lexical block support.
23116
23117         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23118         support.
23119
23120 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23121
23122         * loader.c (mono_lookup_pinvoke_call): Fix warning.
23123
23124         * object.c (mono_runtime_free_method): Call mono_free_method () and
23125         put the TODOs there.
23126
23127         * loader.c (mono_free_method): Free up most memory allocated for 
23128         dynamic methods.
23129
23130 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23131
23132         * reflection.c: properly flag a Type argument to a
23133         named custom attr value (bug #72248).
23134
23135 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23136
23137         * reflection.c: reduce code duplication in named custom
23138         attribute encoding.
23139
23140 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23141
23142         * reflection.c: properly encode custom attrs of type object
23143         (bug #72649).
23144
23145 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23146
23147         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23148
23149 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23150
23151         * socket-io.c: load System.dll if it's not loaded already
23152         (bug #72850 and #70477).
23153
23154 2005-02-21  Martin Baulig  <martin@ximian.com>
23155
23156         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23157         generic instances.
23158
23159 2005-02-21  Martin Baulig  <martin@ximian.com>
23160
23161         * reflection.c (mono_image_build_metadata): We also need to
23162         "fixup" the MethodImpl table after we computed the final method
23163         indices.  Call fixup_methodimpl() to do that.
23164         (fixup_methodimpl): New private method.
23165
23166 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23167
23168         * assembly.c: special case mscorlib.dll (bug#72536),
23169         patch from Carlos Alberto Cortez.
23170
23171 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
23172
23173         * threads-types.h threads.c: Fix build bustage.
23174
23175         * threads.c: Use a union for long<->double conversions.
23176
23177         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23178         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23179
23180         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
23181         containing the checkpoint call with NOT_TAKEN.
23182         
23183         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
23184         checkpoint before pushing the arguments, so they won't have to be
23185         spilled to stack.
23186
23187 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23188
23189         * domain.c, assembly.c, domain-internals.h: make some data
23190         const and relocation-free.
23191
23192 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23193
23194         * object.c, appdomain.c, class-internals.h: introduce the
23195         MonoClassRuntimeInfo structure to hold the info needed to
23196         use a class at runtime. Made mono_class_vtable() lock-free
23197         for all the appdomains.
23198
23199 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
23200
23201         * metadata-internals.h, image.c: introduce a per-image mempool to
23202         be used for memory that has the same lifetime as the image.
23203
23204 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
23205
23206         * domain.c: In mono_init_internal(), instead of selecting the first
23207         runtime version supported by an executable, get a list of all
23208         supported versions and select the one for which an mscorlib exists
23209         (since even if the runtime supports a given version, it doesn't mean
23210         that the framework for that version is installed).
23211         Modified get_runtimes_from_exe to support this behavior.
23212         In supported_runtimes, added information about additional system
23213         assembly versions.
23214         
23215         * assembly.c: Added support for more than one system assembly version
23216         per runtime version. Updated the assembly list.
23217         In mono_assembly_remap_version, removed the initial version check,
23218         since we don't know to which version we need to compare until we
23219         get the version set on which the assembly is based.
23220         Moved the code for loading corlib into the new method
23221         mono_assembly_load_corlib(), so it can be used by the initialization
23222         code.
23223         
23224         * domain-internals.h: Updated data structures and added declaration
23225         for mono_assembly_load_corlib.
23226
23227 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23228
23229         * reflection.c (resolve_object): Fix the creation of the signature in 
23230         the SignatureHelper case.
23231
23232         * assembly.c (mono_assembly_remap_version): Fix binary search.
23233         
23234 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
23235  
23236         * class.c: Added inheritance check when a method is overloaded (from a
23237         virtual method or when implementing an interface) and when a class is
23238         inherited. Added functions to set a failure for a class and to 
23239         retreive the exception from a failure.
23240         * class-internals.h: Added fields to MonoClass to keep the exception
23241         information status for inheritance (or other exceptions) to be thrown
23242         later (i.e. not at load time).
23243         * object.c: Throw the inheritance SecurityException when a type is to 
23244         be created with either class or method inheritance violations.
23245         * reflection.c|h: Fix when getting declsec from a class. Removed 
23246         unrequired code for class. Improved sanity in parameter naming.
23247         * security-manager.c|h: Added functions to check for class and method
23248         inheritance.
23249
23250 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23251
23252         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
23253         and has_finalize in dynamic types as well.
23254
23255 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
23256
23257         * culture-info-table.h : fixed currency format for en-GB (and so on).
23258
23259 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
23260
23261         * gc.c: ensure the GC handles never have 0 as a value.
23262
23263 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23264
23265         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
23266         a pointer to a struct to unmanaged code. Fixes #72625.
23267
23268 2005-02-16  Martin Baulig  <martin@ximian.com>
23269
23270         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
23271
23272 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23273
23274         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
23275
23276 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23277
23278         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
23279
23280         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
23281         UnmanagedFunctionPointerAttribute, use it for determining calling convention
23282         etc. Fixes #71471.
23283
23284         * reflection.c (mono_custom_attrs_get_attr): New helper function.
23285
23286         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
23287
23288 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
23289
23290         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
23291         changes to make the current context a field in MonoThread.
23292
23293 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23294
23295         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
23296         the last change.
23297         
23298         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
23299         extracted from mono_marshal_get_native_wrapper.
23300
23301         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
23302         to create wrappers around native functions.
23303
23304         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
23305         delegates for arbitrary function pointers. Fixes #71472.
23306
23307 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23308
23309         * threads.c: cleaned up the code a little.
23310
23311 2005-02-15  Martin Baulig  <martin@ximian.com>
23312
23313         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
23314         the data table.
23315
23316         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
23317         allocate larger chunks if needed.
23318
23319 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23320
23321         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
23322         in by mistake.
23323
23324 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
23325
23326         * domain.c: keep the domains in an array and ensure the domain ids
23327         are kept small, so they can be used as indexes to domain-specific data
23328         with a small memory overhead.
23329
23330 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23331
23332         * icall.c: Handle byref types in Type icalls. Fixes #72544.
23333
23334 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23335
23336         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23337
23338 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
23339
23340         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23341
23342         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23343         values.
23344
23345         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23346         
23347 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
23348
23349         * domain-internals.h: add the hashtable here.
23350
23351         * class-internals.h: Remove `info' from MonoMethod
23352
23353         * domain.c: Add a new hashtable, jit_trampoline_hash
23354
23355 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23356
23357         * object.c: don't set the value of static fields
23358         (fixes bug#72494).
23359
23360 2005-02-11  Martin Baulig  <martin@ximian.com>
23361
23362         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23363         (mono_debug_add_method): Silently ignore the method if it's too big.
23364         (mono_debug_add_type): Likewise.
23365
23366 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23367
23368         * threads.c, appdomain.c: remove #ifdefs from the code.
23369
23370 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
23371
23372         * metadata-internals.h: Added flags to MonoAssembly to cache the most
23373         common security informations. This allows us to stay in unmanaged code
23374         when doing LinkDemand and it's special cases (except for the first 
23375         time for initialization). The flags a very much used with --security.
23376         * reflection.c|h: Added code to get declarative security attributes 
23377         for LinkDemand and InheritanceDemand. This required to refactor the
23378         existing code for Demand.
23379         * security-manager.c|h: Added new method fields for the special cases
23380         of LinkDemand.
23381
23382 2005-02-10  Martin Baulig  <martin@ximian.com>
23383
23384         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23385         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23386
23387 2005-02-10  Martin Baulig  <martin@ximian.com>
23388
23389         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23390         debugging code; this is almost a complete rewrite.
23391
23392         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23393
23394 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23395
23396         * domain.c, object.h: expose mono_string_equal () and 
23397         mono_string_hash ().
23398         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23399         it's implemented in managed code.
23400
23401 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23402
23403         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23404         lo leak objects between appdomains.
23405
23406 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23407
23408         * assembly.c: old compilers compilation fix from 
23409         robertj@gmx.net (Robert Jordan).
23410
23411 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23412
23413         * class-internals.h: Little reminder for the future.
23414
23415         * debug-helpers.c: Fix up wrapper_type_names
23416
23417 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23418
23419         * image.c, metadata-internals.h: when loading an image from a file,
23420         mmap all of it and use the same codepaths as when using a
23421         in-memory image: the code is simpler and we use less memory
23422         (both writable and readonly).
23423
23424 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23425
23426         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23427         API to alloc runtime data structures that need to be tracked by the
23428         GC and contain pointers.
23429         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23430         make the code more readable and eventually use a different GC.
23431
23432 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23433
23434         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23435         for out arguments.
23436         
23437 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23438
23439         * object.c: In release_type_locks(), don't release the cctor lock
23440         if it has already been released. This fixes a crash in the
23441         thread5 test.
23442
23443 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23444
23445         * gc.c, marshal.c, icall.c: register a delegate for finalization
23446         only when the native function pointer has been allocated for it.
23447
23448 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23449
23450         * object.c: cleaned up some code, allocate objects that are
23451         pointer free with the atomic malloc variant. Allocate memory
23452         for static data from the mempool if it's pointer-free.
23453         Allocate the bounds array at the end of the array data, when needed.
23454         * object-internals.h, object.h: move a private function in a private
23455         header.
23456         * class.c: handle missing case in tracking references in fields.
23457
23458 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23459
23460         * class.c, class-internals.h: keep track if a type has
23461         reference fields in either the instance or static fields.
23462
23463 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23464
23465         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23466         and renamed to MonoRuntimeInfo. Added fields to store the expected
23467         framework assembly version. Changed mono_get_framework_version and
23468         mono_get_runtime_version for a single mono_get_runtime_info method.
23469         
23470         * assembly.c: Added method to remap system assembly versions to the
23471         current executing runtime version. Removed old mapping code.
23472         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23473         
23474         * icall.c, reflection.c: Track api changes.
23475
23476 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23477
23478         * loader.c (method_from_memberref): Improve error reporting,
23479         produce the class name instead of the typeref/typedef index. 
23480
23481 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23482
23483         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23484
23485 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23486
23487         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23488         stdcall and charset name mangling.  Reorganize the code and add
23489         some tracing stuff.
23490
23491 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23492
23493         * monodiet.c: More iters!
23494
23495         * marshal.c: Iter usage.
23496
23497         * icall.c: Iter usage.
23498
23499         * object.c: Use iters.
23500
23501         * debug-helpers.c: More iters
23502
23503 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23504
23505         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23506         under win32.
23507
23508 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23509
23510         * mono-debug-debugger.c: use iters
23511
23512         * class.c, class-internals.h: mono_class_setup_events is static
23513         now
23514
23515         * All callers: use iters
23516
23517 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23518
23519         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23520         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23521
23522 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23523
23524         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23525
23526         * marshal.h: Add prototypes for ldfld/stfld_remote.
23527
23528         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23529         this is called during startup.
23530         
23531 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23532
23533         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23534         MonoThreadsSync struct private in monitor.c. Changed the way
23535         MonoThreadsSync is allocated so it's faster and there is no
23536         need to keep track of it with a finalizer and it uses less memory.
23537         This also finally allows us to allocate mono objects as ptrfree when
23538         there are no reference fields.
23539
23540 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23541
23542         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23543         disappearing link to the GC interface and use them to simplify
23544         the gchandles code.
23545
23546 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23547
23548         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23549         stfld_remote which call mono_load/store_field_new. This allows methods
23550         calling ldfld/stfld wrappers to be AOTed.
23551
23552         * console-io.c: Include sys/filio.h under solaris.
23553         
23554         * console-io.c: Include curses.h if needed correctly.
23555
23556 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23557         
23558         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23559         method->klass as well.
23560
23561         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23562
23563         * class.c (mono_class_init): Switch on lazy initialization of 
23564         methods.
23565
23566         * class.c (mono_class_get_finalizer): Handle the case when the 
23567         finalizer is inherited.
23568
23569 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23570
23571         * console-io.c: <curses.h> is needed by term.h on solaris.
23572
23573 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23574
23575         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23576         mono_class_setup_properties where possible. Remove this ftn from
23577         the header file, and make it static.
23578
23579 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23580
23581         * loader.c: Add missing setup_... call.
23582
23583         * class.c: Add missing setup_... calls.
23584
23585         * class.c (mono_class_init): Switch on lazy initialization of 
23586         the generic vtable.
23587         
23588         * class.c (mono_class_init): Fix generics broken by the recent changes.
23589
23590         * monodiet.c (handle_type): Add missing setup_... calls.
23591
23592         * class.c: Back out garbage in previous patch.
23593         
23594         * class.c: Add missing setup_... calls.
23595
23596         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23597         mono_class_setup_methods () if possible.
23598
23599         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23600
23601         * class-internals.h (MonoCachedClassInfo): New structure.
23602
23603         * class.c: Initialize properties and events fields of MonoClass lazily.
23604
23605         * class.c: Add infrastructure for lazily initializing the methods and
23606         vtable fields of MonoClass. Not yet used.
23607
23608         * class.c (mono_class_get_finalizer): New helper function.
23609
23610         * class.c: Add infrastructure for loading some class related data from
23611         an AOT file.
23612
23613         * object.c: Add infrastructure for initializing the vtable from data
23614         in the AOT file.
23615
23616         * gc.c (run_finalize): Use mono_class_get_finalizer ().
23617
23618         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
23619         appropriate initialization function before accessing parts of the
23620         MonoClass structure.
23621
23622         * marshal.c: Fix warnings.
23623         
23624         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
23625
23626         * mono-debug-debugger.c (get_exception_message): Use 
23627         mono_class_get_method_from_name_flags ().
23628
23629 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
23630
23631         * reflection.c, appdomain.c: Replace a few manual searches that
23632         Zoltan missed. (Paolo approved this part of my initial patch).
23633
23634 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
23635
23636         * profiler.c: disable recording statistical events at report time.
23637
23638 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23639
23640         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
23641         to byteswap arrays of enum values, too (bug #72080).
23642
23643 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
23644
23645         * appdomain.c (set_domain_search_path): Allow this to be called if
23646         domain->setup is not yet set.
23647
23648         * loader.c (mono_method_get_index): New helper function.
23649
23650         * loader.c reflection.c: Use mono_method_get_index ().
23651
23652         * class.c (mono_class_get_method_from_name_flags): New helper method.
23653
23654         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
23655         this.
23656
23657         * class.c (mono_class_get_cctor): New helper method.
23658
23659         * string-icalls.c object.c class.c marshal.c reflection.c: Use
23660         mono_class_get_method () to look up methods.
23661
23662 2005-02-01  Miguel de Icaza  <miguel@novell.com>
23663
23664         * console-io.c: Fix the build, this should work on Windows.
23665
23666 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
23667
23668         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
23669         be set to null to keep things valid
23670
23671 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23672
23673         * icall.c: added Console 2.0 icalls.
23674         * Makefile.am: added console-io.[ch]
23675         * console-io.[ch]: internal calls for Console 2.0 API.
23676
23677 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23678
23679         * class.c: make sure we consider all the interfaces
23680         when calculating max_interface_id (bug found by
23681         Jeroen Frijters running ikvm).
23682
23683 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
23684
23685         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
23686         valuetype fields to null.
23687
23688         * object.c (set_value): Ditto. Fixes #71669.    
23689
23690 2005-01-31  Martin Baulig  <martin@ximian.com>
23691
23692         * metadata.c (mono_metadata_has_generic_params): New public
23693         function; checks whether something is a generic method.
23694
23695 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
23696
23697         * appdomain.c: fix infinite recursion when adding assemblies.
23698
23699 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
23700
23701         * object.c: Fix small typo to return all items for Environment.
23702         GetCommandLineArgs.
23703
23704 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23705
23706         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
23707         reflection.c: more domain and assembly-unload related fixes
23708         and memory leaks plugs.
23709
23710 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
23711
23712         * 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.
23713
23714 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
23715
23716         * loader.c (mono_method_signature): Make this method lazy
23717         (mono_get_method_from_token): Don't computate the signature here.
23718
23719         Doing this saves quite a bit of memory. I got 90 kb on starting up
23720         monodoc. It should also save some disk reads on startup.
23721
23722         * *: MonoMethod->signature might be NULL now. You *MUST* use
23723         mono_method_signature.
23724
23725 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
23726
23727         * object.c (mono_runtime_get_main_args): Return an array from the
23728         current domain here. Fixes #71938.
23729
23730 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
23731
23732         * monitor.c: formatting changes to comply with the
23733         mono coding style and remove #ifdefs from the code.
23734
23735 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23736
23737         * metadata.c, private.h: remove some unneeded data
23738         and use a more compact representation for table schemas.
23739
23740 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
23741
23742         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
23743         to get a better distribution in hash tables.
23744         * *.c: use mono_aligned_addr_hash() where appropriate.
23745         * assembly.c: make var static.
23746
23747 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
23748
23749         * domain-internals.h: Put MonoJitInfo on a diet.
23750
23751         * domain.c: Fix a warning.
23752
23753 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23754
23755         * gc.c: rework the gc handles code to reuse handles
23756         when freed.
23757
23758 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23759
23760         * domain.c: fixed long standing bug in mono_string_equal() which
23761         was brought to light with the ldstr changes.
23762
23763 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
23764
23765         * reflection.c: Remove warning by adding missing include for marshal.h
23766
23767 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23768
23769         * domain.c, object.c: change the ldstr_table to hold
23770         MonoString* as keys: makes the runtime isinterned lookup
23771         faster and simplifies memory management.
23772
23773 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
23774  
23775         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
23776         possible to add imperative security checks before calling the icall.
23777         * reflection.c: Return security attributes on the original MonoMethod
23778         (and not the wrapped one). This fix permissions on icalls.
23779
23780 2005-01-25  Dick Porter  <dick@ximian.com>
23781
23782         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
23783         the check for mktime() support actually test the mktime() return
23784         value.  "Fixes" bug 71682, though the output is still different to
23785         MS.
23786
23787 2005-01-25  Martin Baulig  <martin@ximian.com>
23788
23789         * class.c (mono_class_is_assignable_from): Make this work for
23790         generic instances.
23791
23792 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
23793
23794         * marshal.c (mono_string_utf8_to_builder)
23795         (mono_string_builder_to_utf16): We might not have ownership of the
23796         string. In thise case, we need to create a new buffer.
23797
23798         * object-internals.h (mono_stringbuilder_capacity): sb->str might
23799         be null, in which case, use the default capacity.
23800
23801 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23802
23803         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
23804         GC events to the profiler.
23805
23806 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23807
23808         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
23809         if you don't want the GC to run.
23810
23811 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
23812
23813         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
23814         start providing a GC API and keeping different implementations in
23815         their own file.
23816         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
23817
23818 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
23819
23820         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
23821         mmap rather than allocating a huge buffer.
23822         (mono_debug_close_mono_symbol_file): Free the buffer allocated
23823         above.
23824
23825 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
23826
23827         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
23828         and CheckExecutionRights.
23829         * reflection.c|h: Keep the index of the declarative security to be 
23830         used, instead of the pointer, when AOT compiler is used. Also add 
23831         class initialization when requesting demands.
23832         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
23833         CheckExecutionRights. Both properties are now FALSE by default, and
23834         unmodifiable, unless the --security option is used.
23835
23836 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23837
23838         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
23839         reflection.c: properly refcount images and assemblies, many leaks fixed.
23840
23841 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23842
23843         * threadpool.c: increase the timeout for threads in the thread pool to
23844         10s.  Fixes bug #67159.
23845
23846 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23847
23848         * class-internals.h: Sun's compiler insists on explicit
23849         signed on bit fields to handle then correctly.
23850
23851 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
23852
23853         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
23854         Make the size of the array fit only the number of invalid path
23855         chars that we have.
23856
23857         * class.c (_mono_class_get): Improve the error reporting when a
23858         class referenced is not found, to assist debugging. 
23859
23860 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
23861
23862         * threads.c: fix off-by-one error.
23863         * domain.c: free data allocated in the domain.
23864
23865 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23866
23867         * reflection.c (mono_method_body_get_object): Fill out exception info
23868         as well.
23869
23870         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
23871         structure.
23872         
23873 2005-01-19  Martin Baulig  <martin@ximian.com>
23874
23875         * loader.c (mono_get_method_constrained): Make this work again.
23876
23877 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23878
23879         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
23880         guint16 to match the managed side.
23881
23882         * reflection.c (mono_reflection_body_get_object): Fill out local
23883         variables array.
23884
23885         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
23886         as well.
23887
23888         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
23889         'local_var_sig_token'.
23890
23891 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
23892
23893         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
23894         System.Drawing.
23895
23896         * reflection.c (mono_method_body_get_object): Handle abstract and
23897         runtime methods.
23898
23899 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
23900
23901         * marshal.c, loader.c, class-internals.h, reflection.c:
23902         store the emthod data for a wrapper in an array instead of a list.
23903
23904 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
23905
23906         * marshal.c: change the code to allocate memory more
23907         conservatively for method wrappers.
23908
23909 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
23910
23911         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
23912         fields from MonoClass to the marshal info structure where they belong.
23913
23914 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23915
23916         * class.c, object.c, class-internals.h, marshal.c: rearrange
23917         some fields and tweak some types to lower memory usage.
23918
23919 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
23920
23921         * threads.c (signal_thread_state_change): Handle the case when the
23922         target thread is the current thread.
23923
23924         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
23925
23926         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
23927         emit_ptr_to_object_conv. 
23928
23929         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
23930         marshalling. Fixes #71352.
23931
23932 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23933
23934         * metadata.h, blob.h: move table enum to blob.h so it can be included
23935         in any header.
23936         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
23937         cut the size of MonoImage/MonoDynamicImage.
23938
23939 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
23940
23941         * profiler.c (mono_profiler_install_simple): Fix default arguments.
23942
23943 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
23944
23945         * reflection.c, reflection.h, icall.c: add a function to check
23946         if an attribute type is defined for a metadata object.
23947
23948 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
23949
23950         * object-internals.h: Added some needed fields from StringBuilder class.
23951         * marshal.c: Set the maxCapacity when creating a StringBuilder.
23952
23953 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
23954
23955         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
23956         threads before shutting down the runtime.
23957
23958         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
23959
23960 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23961
23962         * object-internal.h, threads.c: implement stacksize and 
23963         parameterized thread start functionality (requires
23964         matching corlib). Marked broken code for later removal.
23965
23966 2005-01-12  Martin Baulig  <martin@ximian.com>
23967
23968         * class-internals.h (MonoGenericClass): Moved the `initialized'
23969         flag to MonoDynamicGenericClass, removed `init_pending'.
23970         (MonoGenericInst): Added `is_reference' flag.
23971
23972 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
23973
23974         * reflection.c (mono_image_create_pefile): Only set the pe_offset
23975         inside the MSDOS header. Fixes #71201.
23976
23977         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
23978         gc thread.
23979         (mono_domain_finalize): Ditto.
23980
23981 2005-01-12  Martin Baulig  <martin@ximian.com>
23982
23983         * class.c (mono_get_shared_generic_class): Use the cache for
23984         non-dynamic generic classes.
23985
23986         * class-internals.h (mono_class_create_generic_2): Removed
23987         function prototype, this function is now static inside class.c.
23988
23989         * class.c (mono_class_create_generic_2): Made this static, only
23990         call it from mono_class_init() and mono_class_setup_parent().
23991         (collect_implemented_interfaces_aux): Call mono_class_init() on
23992         the interfaces we collect.
23993         (mono_class_setup_vtable): Call mono_class_init (class->parent).
23994
23995 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23996
23997         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
23998         it a real thread handle.
23999
24000         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
24001         MonoJitExceptionInfo, since each catch clause needs its own variable.
24002         
24003 2005-01-11  Dick Porter  <dick@ximian.com>
24004
24005         * image.c (mono_pe_file_open): New variant on mono_image_open()
24006         that does not set up the CLI metadata; used for FileVersionInfo so
24007         it can get the data for windows binaries too.
24008         
24009         * process.c (process_read_string_block): Don't read off the end of
24010         the StringTable block.
24011
24012         These both fix bug 70766.
24013
24014 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
24015
24016         * gc.c: set some fields to NULL at GC cleanup time.
24017         * threads.c: if we quit the main thread, call exit ().
24018
24019 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24020
24021         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
24022
24023 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
24024
24025         * threads.h, threads.c, object.c: added accessor and settor for
24026         main_thread. Handle it specially when exiting from it: wait
24027         for other foreground threads to exit.
24028
24029 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
24030
24031         * process.c, verify.c: remove some bloat.
24032
24033 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
24034
24035         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
24036         the calling convention to cdecl under win32.
24037
24038 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
24039
24040         * object.c (mono_object_get_size): New function to get the size of
24041         an object instance.
24042
24043         * profiler.c (simple_allocation): Use above.
24044
24045 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
24046
24047         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
24048         ves_icall_System_AppDomain_getRootDomain (as it's not required to
24049         get an appdomain by it's id and we can't assume the root's id is 0).
24050         * domain-internals.h: Change the function prototype to match.
24051         * icall.c: Change the icall table for AppDomain.
24052
24053 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
24054
24055         * locales.c (string_invariant_compare_char): Only compute
24056         GUnicodeTypes in the case where we need them.  Test for ordinality
24057         first and return if so.
24058
24059         From the commit:
24060
24061                 /*
24062                  * FIXME: here we must use the information from c1type and c2type
24063                  * to find out the proper collation, even on the InvariantCulture, the
24064                  * sorting is not done by computing the unicode values, but their
24065                  * actual sort order.
24066                  */
24067
24068 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24069
24070         * loader.c: for P/Invoke methods, allow the "Internal" shared
24071         library name to refer to the calling process symbol namespace.
24072
24073 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
24074
24075         * Makefile.am: Add the security manager to the build.
24076         * security-manager.c|h: New. Initialization of the security manager.
24077
24078 2005-01-07  Dick Porter  <dick@ximian.com>
24079
24080         * threads.c: 
24081         * monitor.c: Update thread state during Monitor and WaitHandle
24082         waits.  Fixes bug 71031.
24083
24084 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
24085
24086         * reflection.c (property_encode_signature): Correctly handle when the
24087         property has no methods.
24088
24089 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
24090
24091         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24092         
24093         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24094         fields from mb, not rmb. Fixes #71017.
24095
24096         * marshal.c (emit_ptr_to_str_conv): Add support for 
24097         ByValTStr -> string conversion. Fixes #71015.
24098
24099         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24100
24101         * mempool.c (mono_mempool_contains_addr): New helper function.
24102
24103 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24104
24105         * metadata.c (mono_metadata_compute_size): Fix size calculation of
24106         HasSematics encoded fields.
24107         
24108         * metadata.c (mono_type_to_unmanaged): Improve error message for 
24109         invalid string marshalling.
24110
24111         * metadata.c: Fix warnings.
24112         
24113 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24114
24115         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24116         profiler support.
24117
24118 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24119
24120         * domain.c object.c domain-internals.h: Revert part of r38077 since the
24121         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24122         tests.
24123
24124 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
24125
24126         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24127         so methods containing these can be AOTed.
24128
24129 2005-01-03  Martin Baulig  <martin@ximian.com>
24130
24131         * loader.c (find_method): Removed the hack for generic instances.
24132         (method_from_memberref): If our parent is a generic instance, pass
24133         its generic type definition to find_method() and then inflate the
24134         method.
24135         (mono_get_method_constrained): Pass the generic type definition to
24136         find_method() and inflate the method later.
24137
24138         * class-internals.h (MonoStats): Added `generic_class_count'.
24139
24140         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24141         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24142
24143         * reflection.c (mono_custom_attrs_from_params): Don't ignore
24144         generic type definitions.
24145
24146 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
24147
24148         * loader.c icall.c: Fix warnings.
24149
24150 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
24151
24152         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24153         blittable types. Fixes #70864.
24154
24155 2004-12-29  Martin Baulig  <martin@ximian.com>
24156
24157         * icall.c
24158         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24159
24160         * reflection.c (mono_method_get_object): Create a
24161         "System.Reflection.MonoGenericMethod" for inflated methods; don't
24162         call mono_get_inflated_method().
24163
24164         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24165
24166 2004-12-27  Martin Baulig  <martin@ximian.com>
24167
24168         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24169         (MonoMethodInflated): Added `inflated' field.
24170
24171         * class.c (mono_class_inflate_generic_method): Don't really
24172         inflate the method here; just set the `is_inflated' flag in the
24173         MonoMethod.
24174         (mono_class_get_inflated_method): Actually inflate the method here
24175         if it's not already inflated; we use the MonoMethodInflated's new
24176         `inflated' field as a cache.
24177
24178 2004-12-26  Martin Baulig  <martin@ximian.com>
24179
24180         * class.c
24181         (inflate_generic_class): Moved some code out of inflate_generic_type().
24182         (mono_class_inflate_generic_method): If we're already inflated,
24183         inflate the context and use the declaring method; ie. make sure
24184         the declaring method of an inflated method is always the generic
24185         method definition.
24186         (mono_class_create_from_typedef): Create
24187         `class->generic_container->context->gclass'.
24188
24189 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
24190
24191         * metadata-internals.h, marshal.c, reflection.c: More
24192         MonoGHashTable->GHashTable.
24193
24194         * domain-internals.h, class.c: Change MonoGHashTable's into
24195         GHashTables for some cases where no gc stuff is used
24196
24197         All users: update apis
24198
24199 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
24200
24201         * metadata.c (builtin_types): Make this `const'. Makes this get
24202         put into the shareable section.
24203         (mono_metadata_init): Casts to make gcc happy.
24204
24205 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
24206
24207         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
24208
24209 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
24210
24211         * icall.c: Added an internal call to retrieve the position and length
24212         of assembly-level declarative security attributes (RequestMinimum, 
24213         RequestOptional and RequestRefuse). This is used by the Assembly class
24214         to re-create the corresponding permission sets.
24215
24216 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
24217
24218         * marshal.c: fix the stelemref wrapper to be type correct
24219         (and faster).
24220
24221 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
24222
24223         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
24224         to do key & 0x7fffffff. Hashtable already does this. It just
24225         results in longer code.
24226
24227 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
24228
24229         * appdomain.c: Bump corlib version.
24230         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
24231         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
24232         * reflection.c|h: Add functions to get declarative security infos
24233         (blob position and length) for assemblies, classes and methods.
24234
24235 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
24236
24237         * reflection.c: sort the constant table (bug #70693).
24238
24239 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
24240
24241         * object-internals.h, threads.c, domain.c: add accessors for
24242         the MonoThread and MonoDomain tls keys.
24243
24244 2004-12-18  Martin Baulig  <martin@ximian.com>
24245
24246         * class.c (inflate_generic_type): If we're inflating a generic
24247         instance, set `ngclass->context->container = context->container';
24248         ie. the container we inflated into.
24249
24250         * metadata.c (mono_metadata_parse_generic_param): Reflect above
24251         inflate_generic_type() changes.
24252
24253 2004-12-17  Martin Baulig  <martin@ximian.com>
24254
24255         * class-internals.h
24256         (MonoGenericClass): Replaced `MonoType *generic_type' with
24257         `MonoClass *generic_class'.  Removed `dynamic_info'; if
24258         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
24259         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
24260
24261 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
24262
24263         * exception.c (mono_exception_from_token): New helper function.
24264
24265 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
24266
24267         * assembly.c (mono_assembly_load_with_partial_name): Call 
24268         mono_assembly_loaded before invoking the preload hooks. Fixes
24269         #70564.
24270
24271         * object-internals.h (MonoThread): Change culture_info and 
24272         ui_culture_info into an array.
24273
24274         * threads.c: Cache culture info objects from more than one appdomain.
24275
24276         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
24277         current UI culture.
24278
24279 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
24280
24281         * threads.h threads.c appdomain.c: Clear the culture_info field of
24282         all threads during unloading if they point to an object in the dying
24283         appdomain.
24284
24285 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
24286
24287         * culture-info.h (TextInfoEntry): New struct
24288         * object-internals.h: sync with managed
24289         * locales.c: fill the `text_info_data' field
24290         * culture-info-tables.h: update
24291
24292 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24293
24294         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
24295         collector.
24296
24297 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
24298
24299         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
24300         (ves_icall_ModuleBuilder_getMethodToken): Ditto
24301
24302 2004-12-12  Martin Baulig  <martin@ximian.com>
24303
24304         * mono-debug-debugger.c (write_type): If we're an enum and the
24305         builtin types have already been initialized, call mono_class_init().
24306
24307 2004-12-11  Martin Baulig  <martin@ximian.com>
24308
24309         * metadata.c (mono_metadata_load_generic_params): Added
24310         `MonoGenericContainer *parent_container' argument; automatically
24311         compute `container->is_method'; pass the correct owner to
24312         get_constraints().      
24313
24314         * reflection.c (compare_genericparam): Sort the GenericParam table
24315         according to increasing owners. 
24316
24317 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
24318
24319         * profiler.c: allow disabling the default profiler.
24320
24321 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
24322
24323         * decimal.c, icall.c: allow disabling System.Decimal support.
24324
24325 2004-12-09  Marek Safar <marek.safar@seznam.cz>
24326
24327         * reflection.c: Add support for null attribute arguments.
24328
24329 2004-12-09  Martin Baulig  <martin@ximian.com>
24330
24331         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
24332         names to get rid of compiler warnings.
24333
24334 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24335
24336         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
24337         mono_marshal_load_type_info (). Fixes #69625.
24338         (mono_marshal_get_ptr_to_struct): Likewise.
24339
24340 2004-12-08  Martin Baulig  <martin@ximian.com>
24341
24342         * mono-debug.h: Bumped version number to 47.
24343
24344         * mono-debug-debugger.c
24345         (mono_debugger_event_handler, mono_debugger_event): Take two
24346         guint64 arguments insteed of a gpointer and a guint32.  
24347
24348 2004-12-08  Martin Baulig  <martin@ximian.com>
24349
24350         * debug-mono-symfile.h
24351         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24352         `address' to `native_offset'.
24353
24354 2004-12-08  Martin Baulig  <martin@ximian.com>
24355
24356         * class.c (mono_class_create_from_typespec): Only inflate if we
24357         either have `context->gclass' or `context->gmethod'.
24358
24359 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24360
24361         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24362
24363         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24364
24365         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24366
24367         * reflection.c (mono_assembly_get_object): Remove the workaround put
24368         in for the release.
24369         
24370         * appdomain.c: Use the corlib_internal field from MonoAssembly.
24371
24372         * appdomain.c: Bump corlib version.
24373
24374         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24375         be visible in other appdomains.
24376
24377 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24378
24379         * threads.c: Interlocked inc and dec for longs were messed up,
24380         use a KISS based impl for this. Fixes 70234
24381
24382 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24383
24384         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24385
24386 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24387
24388         * icall.c: fix to follow policy not to allow struct
24389         arguments in icalls.
24390
24391 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24392
24393         * process.c: make the patch that handles spaces in file paths work
24394         on mono/windows too.
24395
24396 2004-12-06  Martin Baulig  <martin@ximian.com>
24397
24398         * class.c (mono_class_create_generic): Call
24399         mono_class_setup_supertypes() if we're dynamic.
24400         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24401
24402 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24403
24404         * object-internals.h: Add new fields to MonoThread.
24405
24406         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24407
24408         * icall.c threads-types.h threads.c: Add new icalls.
24409
24410         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24411
24412         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24413         managed side.
24414
24415         * appdomain.c: Bump corlib version.
24416
24417         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24418         internal assemblies. Fixes #69181.
24419
24420 2004-12-05  Martin Baulig  <martin@ximian.com>
24421
24422         * class.c (mono_class_inflate_generic_signature): Make this a
24423         no-op if `context' is NULL or we don't have any type parameters;
24424         also copy `sentinelpos'.        
24425
24426 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24427
24428         * image.c: Add unbox_wrapper_cache.
24429
24430         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24431
24432         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24433         function generator.
24434         
24435         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24436         Fixes #70173.
24437
24438         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24439         
24440 2004-12-04  Martin Baulig  <martin@ximian.com>
24441
24442         * loader.c (mono_method_get_signature_full): New public function;
24443         like mono_method_get_signature(), but with an additional
24444         `MonoGenericContext *' argument.
24445
24446         * class.c (mono_class_inflate_generic_signature): Formerly known
24447         as inflate_generic_signature(); make this public.
24448
24449 2004-12-04  Martin Baulig  <martin@ximian.com>
24450
24451         * metadata.c
24452         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24453         instead of a `MonoGenericContainer *'.  
24454         (mono_metadata_parse_array_full): Likewise.
24455         (mono_metadata_parse_signature_full): Likewise.
24456         (mono_metadata_parse_method_signature_full): Likewise.
24457         (mono_metadata_parse_generic_inst): Likewise.
24458         (mono_metadata_parse_generic_param): Likewise.
24459         (mono_metadata_parse_mh_full): Likewise.
24460         (mono_type_create_from_typespec_full): Likewise.
24461
24462 2004-12-03  Martin Baulig  <martin@ximian.com>
24463
24464         * class-internals.h (MonoGenericContainer): Replaced the
24465         `MonoGenericContext * pointer with a `MonoGenericContext'
24466         structure and made it the first element.
24467
24468 2004-12-03  Martin Baulig  <martin@ximian.com>
24469
24470         * class.c
24471         (inflate_generic_type): Set the `context->container' when creating
24472         a new MonoGenericContext.
24473         (mono_class_inflate_generic_method): Likewise.
24474         (mono_class_create_from_typespec): Just use `context->container'
24475         to get the container.
24476
24477         * loader.c (method_from_methodspec): Set `context->parent' from
24478         `context->container' - and if that's a method container, use its
24479         parent.  Also set the `context->container' when creating a new
24480         MonoGenericContext.
24481         (mono_get_method_from_token): Use just `context->container' to get
24482         the container.
24483
24484         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24485         `gclass->context->container'.
24486
24487         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24488         the `context->container' when creating a new MonoGenericContext.
24489
24490 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24491
24492         * reflection.c (compare_genericparam): Sort params with identical
24493         owner by their number. Fixes gen-111 on sparc.
24494
24495 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24496
24497         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24498         around the domain changes.
24499
24500         * appdomain.c (mono_domain_unload): Handle the case when the thread
24501         calling Unload is itself being aborted during unloading. Fixes #70022.
24502
24503         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24504
24505         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24506         checkpoint_func as an icall so it gets a wrapper.
24507         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24508         in the cross-appdomain wrappers too.
24509
24510         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24511
24512         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24513
24514         * reflection.c: Fix some memory leaks.
24515         
24516 2004-12-02  Martin Baulig  <martin@ximian.com>
24517
24518         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24519
24520         * metadata.c (generic_class_cache): New static hashtable.
24521         (mono_metadata_lookup_generic_class): New public method.
24522
24523 2004-12-02  Martin Baulig  <martin@ximian.com>
24524
24525         * class.c (mono_class_create_from_typedef): Call
24526         mono_class_setup_parent() and mono_class_create_mono_type() before
24527         parsing the interfaces.
24528
24529 2004-12-02  Martin Baulig  <martin@ximian.com>
24530
24531         * metadata.c (generic_inst_cache): New static hashtable.
24532         (mono_metadata_lookup_generic_inst): New public function.
24533         (mono_metadata_inflate_generic_inst): New public function.
24534         (mono_metadata_parse_generic_inst): New public function.
24535         (do_mono_metadata_parse_generic_class): Use the new
24536         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24537         since this'll also use the cache.
24538
24539         * reflection.c (mono_reflection_bind_generic_method_parameters):
24540         Use mono_metadata_lookup_generic_inst() to use the new cache.
24541
24542         * class.c (inflate_mono_type): Use
24543         mono_metadata_inflate_generic_inst() to inflate a generic
24544         instance; this'll also use the new cache.
24545
24546         * loader.c (method_from_methodspec): Use
24547         mono_metadata_parse_generic_inst() and
24548         mono_metadata_inflate_generic_inst() rather than parsing it
24549         manually, so we can use the new cache.
24550
24551 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24552
24553         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24554         the wait times out.
24555
24556 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24557
24558         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24559         iter->args based on whether parameters are passed in registers (i.e.
24560         MONO_ARCH_REGPARMS is defined)
24561
24562 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24563
24564         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24565         the exception message. Fixes #70070.
24566         (method_from_methodspec): Fix warnings.
24567
24568 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24569
24570         * process.c: (complete_path) return the path quoted
24571
24572 2004-12-01  Martin Baulig  <martin@ximian.com>
24573
24574         * class-internals.h (MonoGenericInst): New structure.
24575         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24576         `is_open' with `MonoGenericInst *inst'.
24577         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24578         `is_open' with `MonoGenericInst *inst'.
24579
24580 2004-11-30  Martin Baulig  <martin@ximian.com>
24581
24582         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24583
24584         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24585         to `generic_class_cache'.
24586
24587         * metadata.c
24588         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24589         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24590         (mono_generic_inst_is_valuetype): Renamed to
24591         mono_generic_class_is_valuetype().
24592
24593         * class-internals.h
24594         (MonoGenericInst): Renamed to MonoGenericClass.
24595         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24596         (MonoClass): Renamed `generic_inst' to `generic_class'.
24597         (MonoGenericContext): Renamed `ginst' to `gclass'.
24598
24599         * object-internals.h
24600         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24601
24602         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24603         mono_reflection_generic_class_initialize().
24604
24605         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24606         now known as "System.Reflection.MonoGenericClass".
24607         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24608
24609 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
24610
24611         * class-internals.h: Added a flag field to MonoClass to cache the
24612         declarative security attributes actions associated with the class.
24613         * domain-internals.h: Added booleans to MonoJitInfo to cache the
24614         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
24615         applicable to the JITted method.
24616         * reflection.c|h: Added functions to extract (as flags) which security
24617         actions are available (declaratively) for a method, class or assembly.
24618         * metadata.c|h: Added functions to search the declarative security
24619         table in the metadata.
24620         
24621 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
24622
24623         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
24624         EXPORTEDTYPES are already in the class name cache, so there is no
24625         need to add extra code here to look at them. Just removes a bit of
24626         cruft.
24627
24628         (ves_icall_System_Environment_get_TickCount): No need for #if
24629         WINDOWS. We already have the code in io-layer.
24630
24631 2004-11-28  Martin Baulig  <martin@ximian.com>
24632
24633         * loader.c
24634         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
24635         Fixes gen-112.cs.
24636
24637 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
24638
24639         * assembly.c (do_mono_assembly_open): Instead of having a
24640         conditional WITH_BUNDLE, incorporate support for bundles here, by
24641         having a global `bundles' variable holding a pointer to the actual
24642         bundles. 
24643
24644         (mono_register_bundled_assemblies): New API call used by the
24645         bundle code. 
24646
24647         See mkbundle.1 for details.
24648         
24649 2004-11-27  Martin Baulig  <martin@ximian.com>
24650
24651         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
24652         the vtable for generic methods.
24653
24654 2004-11-26  Martin Baulig  <martin@ximian.com>
24655
24656         * metadata.c
24657         (mono_metadata_generic_method_hash): New public function.
24658         (mono_metadata_generic_method_equal): Likewise.
24659
24660         * class-internals.h
24661         (MonoGenericContainer): Added `GHashTable *method_hash'.
24662
24663         * reflection.c (ReflectionMethodBuilder): Added
24664         `MonoGenericContainer *generic_container'.
24665         (reflection_methodbuilder_to_mono_method): Don't create a new
24666         MonoGenericContainer each time we're called.
24667         (mono_reflection_bind_generic_method_parameters): Use
24668         `container->method_hash' to cache the results so we don't create a
24669         different method if we're called several times with the same
24670         arguments.
24671
24672         * loader.c (method_from_methodspec): Use the new
24673         `container->method_hash' here, too.
24674
24675 2004-11-26  Martin Baulig  <martin@ximian.com>
24676
24677         * class.c (inflate_generic_signature): Correctly compute
24678         `res->has_type_parameters'.
24679         (mono_class_vtable): Use the `has_type_parameters' flag to
24680         determine whether we're a generic method.
24681
24682         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
24683
24684 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
24685
24686         * object.c (mono_runtime_run_main): Fix a small memory leak.
24687
24688 2004-11-25  Martin Baulig  <martin@ximian.com>
24689
24690         * class.c (set_generic_param_owner): Fixed the loop.
24691
24692 2004-11-25  Martin Baulig  <martin@ximian.com>
24693
24694         * object.c (mono_class_vtable): Don't create any JIT wrappers for
24695         generic methods.
24696
24697 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
24698
24699         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
24700         names. Fixes #69787.
24701
24702 2004-11-24  Martin Baulig  <martin@ximian.com>
24703
24704         * class.c (mono_class_create_generic_2): If we don't have a
24705         `ginst->parent', inflate `gklass->parent' to get our parent.
24706
24707 2004-11-24  Martin Baulig  <martin@ximian.com>
24708
24709         * reflection.c (compare_genericparam): Correctly sort the
24710         GenericParam table; fixes #69779.
24711
24712 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
24713
24714         * reflection.c: When writing a PE file, don't create a huge
24715         buffer in memory. Just write the arrays we have to the file.
24716         This reduces memory usage.
24717
24718         * metadata-internals.h: MonoDynamicStream pefile is no longer used
24719         globally.
24720
24721 2004-11-17  Martin Baulig  <martin@ximian.com>
24722
24723         * class.c (mono_class_init): Don't setup `class->parent' for
24724         dynamic instances; moved this to mono_class_generic_2().
24725         (mono_class_create_generic): Also set `klass->inited' for dynamic
24726         generic instances.
24727         (mono_class_create_generic_2): Don't do anything for dynamic
24728         generic instances.  Set `klass->parent' here and also call
24729         mono_class_setup_parent() here. 
24730
24731         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
24732         `MonoType *parent' argument; set `ginst->parent' before calling
24733         mono_class_create_generic_2(), so we set the correct parent.
24734
24735 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
24736
24737         * reflection.c: allow getting attributes from ModuleBuilder
24738         (used by ikvm).
24739
24740 2004-11-17  Martin Baulig  <martin@ximian.com>
24741
24742         * class.c (mono_class_create_from_typedef): If a type parameter is
24743         inherited from an outer class, set its owner to that class.
24744
24745 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
24746
24747         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
24748           for (int*) written size. This fixes bug #69592.
24749
24750 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
24751
24752         * icall.c: Added IsAuthenticodePresnet internal call.
24753         * image.c|h: New function that check a MonoImage for an Authenticode
24754         signature in the certificate PE data directory.
24755         * security.c|h: New internal call to ask the runtime if an 
24756         Authenticode signature seems referenced in the PE header.
24757
24758 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
24759
24760         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
24761
24762         * reflection.c (mono_image_create_pefile): Free the assembly streams
24763         after writing out the assembly file.
24764
24765         * object.c (mono_runtime_run_main): Fix small memory leak.
24766
24767         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
24768         property access modifiers. Fixes #69389.
24769
24770 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
24771
24772         * domain.c, object.c, object-internals.h, domain-internals.h,
24773         object.h, marshal.c: keep dynamic code info per domain.
24774
24775 2004-11-15  Martin Baulig  <martin@ximian.com>
24776
24777         * class.c (mono_type_get_name_recurse): Put type arguments in
24778         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
24779         see bug #68387.
24780
24781 2004-11-15  Martin Baulig  <martin@ximian.com>
24782
24783         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
24784         (mono_class_setup_vtable): When computing `the_cname' for a
24785         generic instance, don't include the namespace since we'd otherwise
24786         add it twice.
24787
24788 2004-11-15  Martin Baulig  <martin@ximian.com>
24789
24790         * class.c (mono_class_create_generic): Changed return type to void.
24791         (mono_class_create_generic_2): New public function; setup
24792         `class->method', `class->field' and `class->interfaces' here
24793         instead of in mono_class_init().
24794
24795         * class.h (mono_class_create_generic): Moved to class-internals.h.
24796
24797 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
24798
24799         * reflection.c (mono_image_create_pefile): take a file HANDLE.
24800         rather than writing to memory, write to this file. Right now,
24801         we are just writting into a buffer, and copying that. However
24802         we can avoid the buffer later.
24803
24804         (mono_dynamic_stream_reset): new function
24805
24806         * icall.c, object-internals.h: update for the above.
24807
24808 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
24809
24810         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
24811         have been using gc'd memory. First it is slower, unlikely
24812         the comment in the source code said, secondly, it increases
24813         our footprint to do it in the gc.
24814
24815         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
24816         the method so that it does not have to copy to managed code.
24817
24818 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
24819
24820         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
24821
24822 2004-11-12  Martin Baulig  <martin@localhost>
24823
24824         * reflection.c (mono_image_create_token): Allow generic method
24825         definitions here, since they may appear in an `.override'; see
24826         gen-98/gen-99 for an example.
24827
24828 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
24829
24830         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
24831         #69365.
24832
24833         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
24834         descriptive.
24835
24836 2004-11-11  Martin Baulig  <martin@ximian.com>
24837
24838         * class.c (mono_class_setup_vtable): In an explicit interface
24839         implementation, the method name now includes the arity.
24840
24841 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
24842
24843         * object.c (mono_array_full_copy): Fix warning.
24844
24845 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
24846
24847         * appdomain.c: Removed look_for_method_by_name(). Use the new method
24848         mono_class_get_method_from_name() instead.
24849         
24850         * class-internals.h: Added two new types of wrappers. 
24851         Added MonoRemotingTarget enum. Added new trampoline function type, which
24852         takes an additional MonoRemotingTarget value as parameter, so it is
24853         possible to request a trampoline for a specific target.
24854         
24855         * class.c: Added new mono_class_get_method_from_name() method.
24856         
24857         * class.h: In MonoRemoteClass, we can have now to vtables, one for
24858         general remoting sinks and one specific for cross domain calls.
24859         
24860         * debug-helpers.c: Added new wrapper names.
24861         
24862         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
24863         of a remote class.
24864         
24865         * image.c: Porperly delete value objects form the remoting invoke hashtable.
24866         
24867         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
24868         with several other methods (mono_marshal_get_xappdomain_dispatch,
24869         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
24870         and others) can generate a fast remoting wrapper for cross domain calls.
24871         More information can be found in docs/remoting.
24872         Other changes: Removed mono_find_method_by_name, and used
24873         mono_class_get_method_from_name instead.
24874         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
24875         is stored in the remoting invoke hashtable.
24876         
24877         * marshal.h: published the new method for getting the xdomain wrapper,
24878         and also added a method for getting the adequate wrapper for a given
24879         method and target.
24880         
24881         * object-internals.h, object.c: Added a couple of methods for capying and
24882         cloning arrays.
24883         Modified mono_install_remoting_trampoline, which takes the new remoting
24884         trampoline that has a remoting target as parameter.
24885         mono_class_proxy_vtable now also takes a remoting target as parameter, and
24886         will return the most suitable vtable for the target.
24887         Added mono_remote_class_vtable, which returns the vtable of a remote class
24888         (which can be the normal remoting vtable or the xdomain vtable).
24889         
24890         * threads.c: the xdomain invoke and dispatch wrappers must also be
24891         protected against interruptions.
24892
24893 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24894
24895         * icall.c: use memmove in BlockCopyInternal when the source and
24896         destination arrays are the same.
24897
24898 2004-11-09  Martin Baulig  <martin@ximian.com>
24899
24900         * class-internals.h (MonoGenericContainer): Removed `method' and
24901         `signature', replaced them with `is_method' and `is_signature'
24902         flags.  Added `context'.
24903
24904         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
24905         instead of a `MonoGenericContainer *'.
24906
24907         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
24908         for dynamic type parameters.
24909         (mono_metadata_load_generic_params): Setup `container->context'.
24910
24911         * reflection.c (mono_reflection_setup_generic_class): Setup
24912         `tb->generic_container->context'.
24913         (do_mono_reflection_bind_generic_parameters): Use
24914         mono_class_inflate_generic_type() to correctly inflate types,
24915         rather than using our own hack just for MONO_TYPE_VAR.
24916
24917 2004-11-09  Martin Baulig  <martin@ximian.com>
24918
24919         * class.c (mono_class_inflate_generic_method): Small fix; don't
24920         crash here.
24921
24922         * icall.c
24923         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
24924         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
24925         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
24926         (ves_icall_Type_BindGenericParameters): Likewise.
24927         (ves_icall_Type_get_IsGenericInstance): Likewise.
24928         (ves_icall_Type_GetGenericParameterPosition): Likewise.
24929         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
24930         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
24931         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
24932
24933 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
24934
24935         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
24936         assembly versions and public key tokens. Fixes #69113.
24937
24938 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
24939
24940         * metadata.c: fix bug introduced with the type cache changes
24941         on 2004-11-06.
24942
24943 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
24944
24945         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
24946         the MonoClass pointer instead of the token in exception clauses.
24947         * reflection.c: updates for the above and make the code not depend
24948         on the structure of MonoExceptionClause.
24949
24950 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
24951
24952         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24953         Add support for dynamic assemblies. Fixes #69114.
24954
24955         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
24956
24957 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
24958
24959         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
24960         since most only those methods use it. the code member of
24961         MonoMethodPInvoke was dead, so that can be removed too. Also,
24962         remove inline_count (again, not used), and move slot so that it
24963         can share bits with some other flags. This saves 8 bytes in the
24964         structure and gives us about 50 kb back for mcs helloworld.cs
24965
24966         * *.[ch]: Do naming changes for the above.
24967
24968         * loader.c (mono_method_get_header): Lazily init the header
24969         on first access.
24970         (mono_get_method_from_token): don't init the header here
24971         (mono_free_method): the header may never be allocated
24972
24973         Overall, this saves 150 kb of unmanaged allocations
24974         for mcs helloworld.cs. That accounts for 10% of the unmanaged
24975         memory at runtime.
24976         
24977         * loader.c, loader.h (mono_method_get_header): new accessor.
24978
24979         * *.[ch]: use the above method. Prepares us to lazily load
24980         the header.
24981
24982         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
24983         three warnings, which are actual bugs (see 69206).
24984
24985         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
24986         unused. Saves a cool 4 bytes / method.
24987
24988 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
24989
24990         * metadata.c (builtin_types): Add types for System.Object here.
24991         (mono_metadata_parse_type_full): Cache MonoType*'s that are
24992         for a class or valuetype from klass->this_arg or klass->byval_arg.
24993
24994         On mcs for a hello world, this gets us down from 21836 MonoType's
24995         to 14560.
24996
24997         (mono_metadata_free_type): Account for the above change.
24998
24999 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
25000
25001         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
25002         exception instead of asserting if name is null.
25003         (ves_icall_System_AppDomain_GetData): Ditto.
25004
25005 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
25006
25007         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
25008         EnumBuilder.
25009
25010         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
25011         Return NULL when the domain does not have entry_assembly set.
25012
25013         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
25014         Add a 'resource_modules' argument.
25015         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
25016
25017         * reflection.c (mono_reflection_create_runtime_class): Move setting
25018         of wastypebuilder here, so mono_get_type_object () returns a MonoType
25019         for enums too.
25020
25021         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
25022         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
25023         Throw an ArgumentNullException if 'ptr' is null.
25024
25025         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
25026         assemblies here. Fixes #69020.
25027
25028 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
25029
25030         * reflection.c (build_compressed_metadata): Fix the previous patch for
25031         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
25032         the stack.
25033
25034 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
25035
25036         * assembly.c (mono_assembly_names_equal): Allow a match if one of
25037         the cultures is false. Fixes #69090.
25038
25039         * reflection.c (build_compressed_metadata): Fix invalid memory read 
25040         detected by valgrind.
25041         
25042         * reflection.c (mono_reflection_get_type): Avoid triggering a 
25043         TypeResolve multiple times for the same type. Fixes #65577.
25044
25045 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
25046
25047         * marshal.c: Avoid using ldftn to call managed functions. It is
25048         much slower than just a call.
25049
25050         * reflection.c (mono_module_get_object): free the basename we
25051         allocate here from glib.
25052         
25053         * reflection.c (ensure_runtime_vtable): make sure to free
25054         overrides.  Also, we were allocating an array of MonoMethod not an
25055         array of MonoMethod*.
25056
25057         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
25058
25059         * image.c (mono_image_close): free image->guid here.
25060
25061 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
25062
25063         * reflection.c: Fix some spec conformance issues with the PE file
25064         structures so mcs compiled apps run on the Net 2.0 beta.
25065
25066 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
25067
25068         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
25069         Implement this. Fixes #67264.
25070
25071         * debug-helpers.h debug-helpers.c marshal.c: Move 
25072         mono_find_method_by_name to debug-helpers.c.
25073
25074 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
25075
25076         * object.c (mono_release_type_locks): type_initialization_hash is
25077         a GHashTable.
25078
25079         * reflection.c object.c object-internals.h: Fix warnings.
25080
25081         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
25082         without accessors. Fixes #61561.
25083
25084         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
25085         application base from the root domain if not set. Fixes #65641.
25086         (mono_runtime_init): Fix warning.
25087
25088 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25089
25090         * appdomain.c: call mono_thread_pool_init.
25091         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25092         of worker threads based on the number of CPUs and the environment
25093         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25094         for non-windows (windows) systems.
25095
25096 2004-10-27  Chris Toshok  <toshok@ximian.com>
25097
25098         * mono-debug-debugger.c (write_class): don't call mono_class_init
25099         here, as even with the check for (!klass->init_pending), we get
25100         into a situation where we're hitting cycles in class
25101         initialization.  Fixes #68816.
25102
25103 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
25104
25105         * image.c: Avoid overwriting values in the loaded_images_hash when an
25106         assembly is loaded multiple times. Fixes #61152.
25107
25108         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25109         so multiple satellite assemblies for the same name can be loaded.
25110         Fixes #68259.
25111
25112         * mono_domain_assembly_preload: Actually return the loaded assembly, 
25113         not NULL.
25114
25115         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25116         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25117
25118         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25119         pending finalizers are not invoked after the appdomain has been 
25120         unloaded. Fixes #67862.
25121
25122 2004-10-22  Martin Baulig  <martin@ximian.com>
25123
25124         * mono-debug-debugger.c
25125         (mono_debugger_runtime_invoke): Don't box valuetypes.
25126
25127 2004-10-22  Chris Toshok  <toshok@ximian.com>
25128
25129         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25130         don't hide private methods.
25131
25132 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
25133
25134         * icall.c: Allows the runtime to "share" (when known) the public key
25135         token of an assembly. This avoid the need to recalculate the token 
25136         (from the public key) in managed code.
25137
25138 2004-10-21  Chris Toshok  <toshok@ximian.com>
25139
25140         * debug-helpers.c (append_class_name): argh, revert last patch.
25141         
25142 2004-10-21  Chris Toshok  <toshok@ximian.com>
25143
25144         * debug-helpers.c (append_class_name): use '+' as the delimiter,
25145         not '/', so that it matches what the debugger uses to look up
25146         methods.
25147
25148 2004-10-21  Martin Baulig  <martin@ximian.com>
25149
25150         * mono-debug-debugger.c (mono_debugger_throw_exception): New
25151         public method; this is called each time an exception is thrown and
25152         allows the debugger to use exception catch points.
25153
25154 2004-10-21  Martin Baulig  <martin@ximian.com>
25155
25156         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25157         the stack pointer and the exception object in some struct and pass
25158         that to the debugger.
25159
25160 2004-10-21  Chris Toshok  <toshok@ximian.com>
25161
25162         * mono-debug-debugger.c (do_write_class): add instance/static
25163         event support.  We don't expose "raise" or "other" yet.
25164         (event_is_static): new method.
25165
25166 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
25167
25168         * mono-debug-debugger.c
25169         (mono_debugger_handle_exception): Remove
25170         bogus return value for fussy compilers.
25171
25172 2004-10-20  Martin Baulig  <martin@ximian.com>
25173
25174         * mono-debug-debugger.c
25175         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25176         (mono_debugger_handled_exception): Likewise.
25177
25178 2004-10-20  Martin Baulig  <martin@ximian.com>
25179
25180         * mono-debug-debugger.h (MonoDebuggerEvent): Added
25181         MONO_DEBUGGER_EVENT_EXCEPTION.
25182
25183         * mono-debug-debugger.c (mono_debugger_handle_exception): New
25184         public function to send the debugger a notification for an
25185         exception and inform it about a catch/finally clause.
25186
25187 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
25188
25189         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25190         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25191         fix 2.95 build. 
25192
25193         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25194
25195 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
25196
25197         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
25198         marshalled as [In,Out]. Fixes #58325.
25199
25200 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
25201
25202         * reflection.c (mono_method_body_get_object): Implement some fields.
25203
25204 2004-10-12  Martin Baulig  <martin@ximian.com>
25205
25206         * reflection.c (mono_reflection_bind_generic_parameters): Small
25207         fix, correctly retrieve our parent from a generic instance.
25208
25209 2004-10-12  Martin Baulig  <martin@ximian.com>
25210
25211         * metadata.c (mono_metadata_generic_param_equal): We always have
25212         an owner.
25213
25214         * class.c
25215         (mono_class_from_generic_parameter): We need to have an owner.
25216         (my_mono_class_from_generic_parameter): Likewise.
25217
25218         * reflection.c (mono_reflection_setup_generic_class): Renamed to
25219         mono_reflection_create_generic_class() and added a new
25220         mono_reflection_setup_generic_class().  
25221         (mono_reflection_initialize_generic_param): If we're a nested
25222         generic type and inherited from the containing class, set our
25223         owner to the outer class.
25224
25225 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
25226
25227         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
25228
25229         * reflection.c (mono_method_body_get_object): New function to create
25230         a MethodBody object.
25231
25232         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
25233
25234 2004-10-11  Martin Baulig  <martin@ximian.com>
25235
25236         * metadata.c (_mono_metadata_type_equal): Renamed to
25237         do_mono_metadata_type_equal() and made static.
25238
25239 2004-10-11  Martin Baulig  <martin@ximian.com>
25240
25241         * appdomain.c: Bump corlib version number to 28.
25242
25243 2004-10-10  Martin Baulig  <martin@ximian.com>
25244
25245         * class-internals.h
25246         (MonoGenericInst): Added `MonoGenericContainer *container'.
25247         (MonoGenericMethod): Likewise.
25248         (MonoGenericContext): Likewise.
25249         (MonoGenericParam): Added `MonoGenericContainer *owner'.
25250
25251         * metadata.c
25252         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
25253         (do_mono_metadata_parse_generic_inst): Likewise.
25254         (mono_metadata_parse_type_full): New public method.  This is the actual
25255         mono_metadata_parse_type() implementation - with an additional
25256         `MonoGenericContainer *' argument.
25257         (mono_metadata_parse_array_full): Likewise.
25258         (mono_metadata_parse_signature_full): Likewise.
25259         (mono_metadata_parse_method_signature_full): Likewise.
25260         (mono_metadata_parse_mh_full): Likewise.
25261         (mono_type_create_from_typespec): Likewise.
25262         (mono_metadata_interfaces_from_typedef_full): New public method;
25263         this is similar to the other _full() methods, but we take a
25264         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
25265         (mono_metadata_parse_generic_param): Take an additional
25266         `MonoGenericContainer *' argument and lookup the MonoGenericParam
25267         from that container.
25268         (mono_metadata_generic_param_equal): New static method to compare
25269         two type parameters.
25270         (_mono_metadata_type_equal): New static method; takes an
25271         additional `gboolean signature_only' argument - if true, we don't
25272         compare the owners of generic parameters.
25273         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
25274         with a TRUE argument - do a signature-only comparision.
25275
25276         * loader.c: Use the new _full() methods and pass the
25277         MonoGenericContainer to them.
25278
25279         * object-internals.h (MonoReflectionTypeBuilder): Added
25280         `MonoGenericContainer *generic_container' field.
25281         (MonoReflectionMethodBuilder): Likewise.
25282
25283 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
25284
25285         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
25286         case initial images of dynamic assemblies.
25287
25288         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
25289
25290         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
25291
25292         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
25293         length of event->other array.
25294         (typebuilder_setup_events): Ditto.
25295
25296         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
25297         'assembly_by_name' and add an 'assemblies' list.
25298
25299         * assembly.h assembly.c: Add a new search hook for determining whenever
25300         an assembly is already loaded. Use this instead of searching in the
25301         loaded_assemblies list.
25302
25303         * domain.c appdomain.c: Implement the new search hook so loaded 
25304         assemblies are now scoped by appdomain. Fixes #67727.
25305
25306 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
25307
25308         * threads.c (mono_thread_attach): Initialize synch_lock field so
25309         mono_thread_detach works again.
25310
25311         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
25312         'lib' too. Fixes #63130.
25313
25314 2004-10-06  Jackson Harper  <jackson@ximian.com>
25315
25316         * culture-info-tables.h: regenerated.
25317
25318 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
25319
25320         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
25321         implemented by other interfaces in the result. Fixes #65764.
25322         
25323         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25324         Handle unloadable modules without crashing.
25325
25326         * image.c (load_modules): Revert the previous patch since modules must
25327         have a fixed index inside the array.
25328         
25329         * image.c (load_modules): Don't include native modules in the modules
25330         array.
25331
25332 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
25333
25334         * reflection.h: Add param_defaults field.
25335
25336         * reflection.c: Add support for parameter defaults in dynamic methods.
25337         Fixes #64595.
25338
25339         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25340         an empty string when a type has no namespace. Fixes #64230.
25341
25342 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
25343
25344         * tabledefs.h: Added "internal" security actions to support non-CAS
25345         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
25346         Note: they do not seems to be used anymore in 2.0 (new metadata format)
25347
25348 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
25349
25350         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25351         constructor of abstract class. Fixes #61689.
25352
25353 2004-10-04  Martin Baulig  <martin@ximian.com>
25354
25355         * class-internals.h (MonoGenericContainer): New type.
25356         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25357         `MonoGenericContainer *generic_container'.
25358         (MonoClass): Replaced `gen_params' and `num_gen_params' with
25359         `MonoGenericContainer *generic_container'.
25360
25361         * metadata.c (mono_metadata_load_generic_params): Return a
25362         `MonoGenericContainer *' instead of a `MonoGenericParam *';
25363         removed the `num' argument.
25364
25365 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
25366
25367         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25368         for dynamic images.
25369
25370         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25371         machine fields.
25372
25373         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25374
25375         * reflection.c: Save pe_kind and machine values into the generated
25376         image file.
25377
25378         * appdomain.c: Bump corlib version number.
25379
25380         * object-internals.h: Reorganize layout of LocalBuilder.
25381
25382         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25383         New helper function.
25384
25385         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25386         created MonoType for dynamic types. Fixes #66180.
25387
25388 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25389
25390         * threadpool.c: the ares hashtable needs a critical section around it.
25391         this prevents some nasty segfaults
25392
25393 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25394
25395         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25396         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25397         bug 67324).
25398         
25399 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25400
25401         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25402         
25403 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25404
25405         * image.c: Always canonicalize image file names, to avoid loading
25406         the same assembly twice when referenced using a relative path.
25407
25408 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25409
25410         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25411
25412         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25413
25414         * marshal.c: Fix warnings.
25415
25416 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25417
25418         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25419         attempting to marshal the delegate_trampoline as the method_addr.
25420         This patch has a static hashtable of marshalled delegates so that 
25421         we can map delegate_trampoline addresses back to delegates.  This
25422         allows a delegate passed to managed code to be passed back into native
25423         code.  Fixes #67039
25424
25425 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25426
25427         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25428
25429         * reflection.c (method_encode_code): Align method headers properly.
25430         Fixes #66025.
25431
25432 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25433
25434         * marshal.c: In the runtime invoke wrapper, reset the abort
25435         exception if it is cached. This avoids the automatic rethrowal of 
25436         the exception after the catch of the wrapper. Also check for pending
25437         interruptions before calling the managed method. This is done using
25438         the new method emit_thread_force_interrupt_checkpoint, since the
25439         normal checkpoint method is ignored when running the invoke wrapper.
25440         * object.c: If the abort exception is rethrown, set the abort_exc
25441         field of the thread, so it will be rethrown aftere every catch.
25442         * threadpool.c: Only run an interruption checkpoint if what has been
25443         requested is a stop of the thread (aborts will be ignored).
25444         * threads.c: By default, a thread will now never be interrumped while
25445         running the runtime invoke wrapper (this ensures that runtime_invoke
25446         will always return to the caller if an exception pointer is provided).
25447         There is a new special method mono_thread_force_interruption_checkpoint()
25448         to force an interruption checkpoint even if running a protected
25449         wrapper, which is used by the same runtime invoke wrapper to do a check
25450         at a safe point.
25451
25452 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25453
25454         * object.c, object-internals.h: Implemented mono_release_type_locks,
25455         which releases the cctor locks held by a thread.
25456         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25457         by a thread. Added mono_thread_exit() method to be used to safely stop
25458         a thread.
25459
25460 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25461
25462         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25463         Move null check before dereference.  Avoid indexing beyond the end
25464         of the 'modules' array.
25465
25466 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25467
25468         * metadata-internals.h (MonoImage): Add module_count field.
25469         * image.c (load_modules): Set image->module_count.
25470         (mono_image_load_file_for_image): Use image->module_count.
25471         * reflection.c (mono_image_load_module): Append to image->modules array 
25472         of dynamic assembly.
25473         (mono_module_get_object): Fix loop to actually increment index.
25474         Use image->module_count.
25475         * assembly.c (mono_assembly_load_references): Use image->module_count.
25476         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25477         Likewise.
25478
25479 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25480
25481         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25482         Avoid assert on generic types.
25483
25484 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25485
25486         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25487
25488         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25489
25490         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25491         function to convert a MarshalSpec structure to its managed counterpart.
25492
25493         * reflection.c: Fix warnings.
25494         
25495         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25496         field.
25497
25498         * icall.c (mono_create_icall_signature): Fix build.
25499
25500 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25501
25502         * icall.c: Add MakePointType icall.
25503
25504         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25505         warnings.
25506
25507 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25508
25509         * threadpool.c: reuse allocated slots in the queue.
25510
25511 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25512
25513         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25514
25515         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25516
25517         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25518         previous change.
25519
25520         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25521         ThrowOnUnmappableChar.
25522
25523         * icall.c (ves_icall_Type_GetPacking): New icall.
25524
25525 2004-09-24  Martin Baulig  <martin@ximian.com>
25526
25527         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25528
25529 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25530
25531         * appdomain.c:
25532         (mono_domain_set): allow setting a domain that is being unloaded.
25533         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25534         being unloaded.
25535
25536 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25537
25538         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25539         the GetCustomAttributes icall.
25540
25541 2004-09-23  Martin Baulig  <martin@ximian.com>
25542
25543         * object-internals.h (MonoReflectionGenericParam): Replaced
25544         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25545         with `guint32 attrs'.
25546
25547 2004-09-23  Martin Baulig  <martin@ximian.com>
25548
25549         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25550
25551 2004-09-23  Martin Baulig  <martin@ximian.com>
25552
25553         * object-internals.h (GenericParameterAttributes): New enum.
25554
25555 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25556
25557         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25558         
25559         * class.c (init_events): Fill out event->other field.
25560
25561         * class.c: Fix warnings.
25562
25563         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25564
25565 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25566
25567         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25568         walk which doesn't supply the IL offset.
25569
25570 2004-09-22  Martin Baulig  <martin@ximian.com>
25571
25572         * reflection.c (mono_reflection_setup_internal_class): If we're
25573         System.ValueType, System.Object or System.Enum, set
25574         `klass->instance_size' and create the vtable.
25575         (mono_reflection_create_internal_class): If we're an enum type,
25576         get the base class from our current corlib.
25577
25578 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25579
25580         * reflection.h (MonoResolveTokenError): New type.
25581
25582         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25583         icall.
25584
25585         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25586
25587 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25588
25589         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25590         Support also calling constructors, but only for already allocated objects.
25591
25592 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25593
25594         * reflection.c (type_get_qualified_name): If the klass is null
25595         return the typename to avoid a NullRefEx.
25596         (encode_cattr_value): Get the qualified name of the boxed type,
25597         not the underlying enumtype.  Fixes #62984.
25598
25599 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25600
25601         * marshal.c: Fix problems with previous checkin.
25602
25603 2004-09-21    <vargaz@freemail.hu>
25604
25605         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25606         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25607
25608         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25609
25610 2004-09-21  Geoff Norton <gnorton@customerdna.com>
25611
25612         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
25613         should only return a type for pointers, arrays, and passbyref types.
25614         Fixes bug #63841.
25615
25616 2004-09-21  Martin Baulig  <martin@ximian.com>
25617
25618         * domain.c (mono_debugger_check_runtime_version): New public
25619         function.
25620
25621         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
25622
25623 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
25624
25625         * reflection.c: Added missing sort to the declarative security 
25626         attributes table. MS implementation stops seeing the attributes if the
25627         token number regress in the table (as shown by ildasm and permview).
25628
25629 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
25630
25631         * object-internals.h (MonoReflectionModule): Add 'token' field.
25632         
25633         * reflection.c (mono_reflection_get_token): Add support for Module
25634         and Assembly.
25635         (mono_module_get_object): Set 'token' field.
25636         (mono_module_file_get_object): Set 'token' field.
25637
25638         * icall.c: Add new Assembly and Module icalls.
25639
25640         * appdomain.c: Bump corlib version.
25641
25642 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
25643
25644         * loader.h loader.c class.h class.c: Add helper functions for obtaining
25645         tokens of metadata objects.
25646
25647         * reflection.h reflection.c (mono_reflection_get_token): New function
25648         to obtain the token of a metadata object.
25649
25650         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
25651
25652 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
25653
25654         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
25655         
25656         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
25657
25658 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
25659
25660         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
25661         * object-internals.h: Added 3 MonoArray* members to MonoReflection
25662         AssemblyBuilder to access the permissions set in the class lib.
25663         * reflection.c: Added security attributes encoding step in 
25664         mono_image_build_metadata.
25665         * tabledefs.h: Added new security actions defined in 2.0:
25666         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
25667
25668 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25669
25670         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
25671         macro parameter.
25672
25673 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25674  
25675         * locales.c: nullify the ICU_collator member of CompareInfo when it is
25676           finalized. There where random SIGSEVs at program termination, when
25677           an object being finalized was trying to do a string comparison and
25678           the current culture was already finalized.
25679  
25680 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25681
25682         * threads.c: call thread_cleanup before finishing the thread if we get
25683         there.
25684
25685 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
25686
25687         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
25688         assemblies from the parent. Fixes #65665.
25689
25690 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
25691
25692         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
25693         modifiers.
25694
25695 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
25696
25697         * reflection.h: add prototype for mono_get_dbnull_object
25698         * reflection.c: add prototypes for get_default_param_value_blobs 
25699         and mono_get_object_from_blob for fussier compilers
25700
25701 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
25702  
25703         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
25704         false deadlock checks in class initialization.
25705  
25706 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
25707
25708         * image.c (mono_image_addref): Fix comment.
25709
25710         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
25711         possible.
25712
25713 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
25714
25715         * reflection.c (mono_param_get_objects): Modified to return
25716         ParameterInfo.DefaultValue object.
25717
25718         (get_default_param_value_blobs):
25719         (mono_get_object_from_blob):
25720         (mono_get_dbnull_object): New helper routines. 
25721
25722         * object.c (mono_get_constant_value_from_blob): New helper routine
25723         carved out from get_default_field_value ()
25724
25725         * object-internals.h (mono_get_constant_value_from_blob): Added
25726         function declaration.
25727
25728 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
25729
25730         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
25731         referenced assemblies. Fixes #62135.
25732
25733         * exception.h exception.c (mono_get_exception_file_not_found2): New
25734         helper function.
25735
25736 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
25737
25738         * class.h class.c: Add mono_type_get_underlying_type ().
25739
25740 2004-09-09  Geoff Norton <gnorton@customerndna.com>
25741
25742         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
25743         Fix GetTypes() to support dynamically created assemblies.
25744
25745 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
25746
25747         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
25748         
25749         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
25750         previous patch.
25751
25752         * reflection.h reflection.c loader.c: Allow dynamic construction of
25753         pinvoke methods. Fixes #65571.
25754         
25755         * reflection.c (mono_reflection_get_type): Revert previous change since
25756         it causes regressions.
25757
25758 2004-09-08  Martin Baulig  <martin@ximian.com>
25759
25760         * class.c (class_compute_field_layout): Don't call
25761         mono_class_layout_fields() for open generic instances.
25762
25763 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
25764         * threads.c appdomain.c: fix typo in GC macro
25765
25766 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25767
25768         * threads.c: don't call mono_thread_detach() in start_wrapper(),
25769         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
25770
25771 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
25772
25773         * image.c (mono_image_close): Applied patch from 
25774         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
25775         assembly is loaded multiple times from data.
25776         
25777         * image.c (mono_image_open): Fix warning.
25778
25779 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25780
25781         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
25782         once. Fixes #58334.
25783         
25784         * reflection.c (mono_reflection_create_runtime_class): Initialize
25785         klass->nested_classes. Fixes #61224.
25786
25787 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25788
25789         * threads.c: sched_yield() on exit, to allow threads to quit.
25790
25791 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25792
25793         * object.c (mono_unhandled_exception): Remove leftover debug code.
25794
25795 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
25796
25797         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
25798
25799 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25800
25801         * marshal.c (emit_marshal_array): Really null terminate string arrays.
25802         
25803         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
25804
25805 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25806
25807         * marshal.c (emit_marshal_array): Null terminate string arrays.
25808         
25809         * marshal.c (raise_auto_layout_exception): Fix warning.
25810
25811         * reflection.c (mono_param_get_objects): Initialize the default value
25812         with DBNull.Value, not null. Fixes #62123.
25813
25814 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
25815
25816         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
25817         throw an exception with a cute explanation.
25818
25819 2004-09-06  Dick Porter  <dick@ximian.com>
25820
25821         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
25822         Close the new process's thread handle, as we don't use it.  The
25823         handle stays around forever otherwise.
25824
25825 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25826
25827         * object.c (arith_overflow): Fix warning.
25828
25829         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
25830         calling conventions in method refs. Fixes #65352.
25831
25832         * reflection.c: Fix warnings.
25833
25834 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25835
25836         * icall.c: Add a new icall for Array.Clear
25837
25838 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25839
25840         * object.c: When allocating an array, we have to throw
25841         an overflow exception if any of the lengths are < 0.
25842
25843 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25844
25845         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
25846         properly. Also move implementation of string array marshalling to 
25847         managed code. Fixes #42316.
25848
25849 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25850
25851         * assembly.c: provide more information when loading an assembly fails.
25852
25853 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25854
25855         * filewatcher.c: don't expect the development fam package to be
25856         installed.
25857
25858 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
25859
25860         * marshal.c: Make a copy of the signature cookie since it will be
25861         freed by the caller.
25862         
25863         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
25864
25865         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
25866
25867         * metadata.c (mono_metadata_free_marshal_spec): New function to free
25868         marshal specs.
25869
25870         * marshal.c: More refactoring.
25871         
25872         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
25873         smaller functions.
25874
25875 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
25876
25877         * object.c: In mono_message_invoke, fill the output parameter array after
25878           calling the managed method (it was done before the call). This fixes
25879           bug #59299.
25880
25881 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25882
25883         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
25884         as well.
25885
25886 2004-09-02  Martin Baulig  <martin@ximian.com>
25887
25888         * class.c (mono_class_instance_size): Don't allow generic type
25889         definitions or open generic instances.
25890         (mono_class_array_element_size): If we're a value type, call
25891         mono_class_instance_size() on the original class.
25892
25893         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
25894         handle generic instances.
25895
25896         * mono-debug-debugger.c (write_type): Handle generic instances
25897         like classes.
25898
25899 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25900
25901         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
25902         the allocation request fails. Fixes #65089.
25903
25904         * object.c (mono_runtime_free_method): Do not call mono_free_method.
25905         
25906         * object.c (mono_runtime_free_method): New function to free a dynamic
25907         method.
25908
25909         * marshal.c (mono_delegate_free_ftnptr): New function to free the
25910         delegate trampoline.
25911
25912         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
25913         with hasthis as dynamic,
25914
25915         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
25916
25917         * domain.c (mono_jit_info_table_remove): New function to remove an
25918         entry from the jit info table.
25919
25920         * class-internals.h (MonoMethod): Add 'dynamic' field.
25921
25922         * loader.c: Fix warnings.
25923
25924 2004-09-01  Martin Baulig  <martin@ximian.com>
25925
25926         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
25927         instead of mono_debugger_lock() because the latter one is a no-op
25928         unless running in the debugger.
25929
25930 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25931
25932         * class.c (class_compute_field_layout): Classes with auto-layout or
25933         reference fields are not blittable.
25934         
25935 2004-09-01  Dick Porter  <dick@ximian.com>
25936
25937         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
25938         mono_image_get_filename() to get the assembly location.
25939
25940         * icall.c:
25941         * metadata.h: Fix compile warnings
25942
25943 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25944
25945         * class.c (class_compute_field_layout): System.Object is blittable.
25946
25947         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
25948         as in/out. Fixes #59909.
25949
25950 2004-09-01  Martin Baulig  <martin@ximian.com>
25951
25952         * metadata.h (MONO_TYPE_ISREFERENCE): Call
25953         mono_metadata_generic_inst_is_valuetype() if we're a generic
25954         instance to check whether our underlying type is a reference type.
25955
25956 2004-09-01  Martin Baulig  <martin@ximian.com>
25957
25958         * metadata.c (mono_type_size): If we're a generic instance, call
25959         mono_class_value_size() for value types.
25960
25961 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
25962
25963         * marshal.c: Implement more custom marshalling functionality. Fixes
25964         #64915.
25965
25966 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25967
25968         * mono-debug.c, debug-mono-symfile.c: add some locking love.
25969
25970 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
25971
25972         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
25973
25974         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
25975
25976         * icall.c: Fix some warnings.
25977
25978         * threads.c (abort_appdomain_thread): Fix unref errors.
25979         (mono_thread_current): Fix THREAD_DEBUG define.
25980
25981 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
25982
25983         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
25984
25985         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
25986
25987 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
25988
25989         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
25990         string arrays.
25991
25992 2004-08-28  Martin Baulig  <martin@ximian.com>
25993
25994         * metadata.c
25995         (mono_metadata_generic_inst_is_valuetype): New public function.
25996
25997         * metadata.h (MONO_TYPE_ISSTRUCT): Call
25998         mono_metadata_generic_inst_is_valuetype() if we're a generic
25999         instance to check whether our underlying type is a valuetype.
26000
26001 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
26002
26003         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
26004         #63768.
26005
26006 2004-08-25  Martin Baulig  <martin@ximian.com>
26007
26008         * loader.c (mono_get_method_from_token): Abstract methods can also
26009         be generic and thus have type parameters.
26010
26011         * metadata-internals.h
26012         (MonoDynamicImage): Added `GPtrArray *gen_params'.
26013
26014         * reflection.c (mono_image_get_generic_param_info): Don't create a
26015         metadata row, just add an entry to the `gen_params' array.
26016         (build_compressed_metadata): Sort the `gen_params' array and then
26017         actually create the metadata.
26018
26019 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26020
26021         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
26022
26023 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
26024
26025         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
26026
26027 2004-08-24  Martin Baulig  <martin@ximian.com>
26028
26029         * class.cs (mono_class_is_subclass_of): Like an interface, a
26030         generic instance also derives from System.Object.
26031
26032 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
26033
26034         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
26035         custom modifiers to be in any order. Fixes #61990.
26036
26037 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
26038
26039         * object.c: Register mono_object_new_fast icall.
26040         
26041         * object.c (mono_class_get_allocation_ftn): Return to calling
26042         mono_object_new_fast, since it seems faster to compute the object 
26043         size in unmanaged code than passing it as a parameter.
26044
26045         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
26046
26047         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
26048         this function with Boehm as the oom handler, so we don't have to check
26049         the result of GC_malloc.
26050
26051         * object.c: Remove checks for oom.
26052
26053         * object.h object.c (mono_class_get_allocation_ftn): New function to
26054         return the icall which can be used to allocate an instance of a given
26055         class. 
26056
26057         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
26058
26059         * class-internals.h: Add 'enabled' field.
26060
26061 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
26062
26063         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
26064
26065 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
26066         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
26067         value 0x0010.
26068
26069 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
26070
26071         * appdomain.c: use the Tls function for appdomain too,
26072         at Zoltan's request. Actually return in mono_context_get
26073
26074         * appdomain.c, profiler.c, threads.c: use __thread
26075
26076 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
26077
26078         * appdomain.c threads.c: Call GC_CreateThread on windows.
26079
26080         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
26081         multiple libraries since this don't work on windows.
26082
26083 2004-08-18  Martin Baulig  <martin@ximian.com>
26084
26085         * class-internals.h
26086         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
26087         MonoMethodHeader.
26088
26089         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
26090         MonoMethodNormal since we also need it for abstract and interface
26091         methods.
26092
26093         * reflection.c
26094         (build_compressed_metadata): Sort the GenericParam table.
26095         (mono_image_create_token): Added `gboolean create_methodspec'
26096         argument; this is false when generating a MethodImpl token.
26097         (reflection_methodbuilder_to_mono_method): Abstract and interface
26098         methods may also have generic parameters.
26099
26100 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
26101
26102         * appdomain.c: thread local alloc
26103
26104 2004-08-17  Martin Baulig  <martin@ximian.com>
26105
26106         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26107
26108         * icall.c
26109         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26110         argument.
26111
26112         * class.c (mono_type_get_full_name): New public function.
26113         (mono_type_get_name): Don't include the type arguments.
26114
26115 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
26116
26117         * Makefile.am: Build static versions of libmetadata and libmonoruntime
26118         for inclusion into the mono executable.
26119
26120 2004-08-16  Martin Baulig  <martin@ximian.com>
26121
26122         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26123         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26124
26125 2004-08-14  Martin Baulig  <martin@ximian.com>
26126
26127         * class.c (dup_type): Also copy the `byref' field.
26128
26129 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
26130
26131         * reflection.c (create_dynamic_mono_image): Revert the last change 
26132         since it breaks bootstrap.
26133
26134 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
26135
26136         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26137
26138         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26139         not free them with g_free.
26140
26141 2004-08-11  Martin Baulig  <martin@ximian.com>
26142
26143         * reflection.c (mono_reflection_setup_internal_class): Also call
26144         mono_class_setup_mono_type() if we already have a `tb->type.type'.
26145
26146 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
26147
26148         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
26149         called during default (first) AppDomain creation. Keep track of
26150         Evidence when loading assemblies.
26151
26152 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26153
26154         * opcodes.c, opcodes.h: reduce runtime relocations.
26155
26156 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26157
26158         * culture-info.h, locales.c: fixes and chages to sue the new
26159         optimized format of the locale data.
26160         * culture-info-tables.h: regenerated.
26161
26162 2004-08-06  Geoff Norton <gnorton@customerdna.com>
26163         
26164         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26165
26166 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
26167
26168         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26169         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26170         * domain-internals.h: icall declaration.
26171         * icall.c: icall registration.
26172         * object-internals.h: New fields in MonoAssembly for CAS.
26173
26174 2004-08-05  Duncan Mak  <duncan@ximian.com>
26175
26176         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26177         CEE_LDELEM_ANY.
26178
26179 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26180
26181         * reflection.c: fix to deal with object[] arrays in custom ctors
26182         (bug #62550).
26183
26184 2004-08-05  Martin Baulig  <martin@ximian.com>
26185
26186         * class.c (mono_class_array_element_size): Added support for
26187         generic instances and correctly handle "recursive" types.
26188
26189 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
26190
26191         * assembly.c: Fix warnings.
26192
26193 2004-08-04  Martin Baulig  <martin@ximian.com>
26194
26195         * class.c
26196         (mono_type_get_name_recurse): Added `gboolean include_arity'
26197         argument specifying whether or not we should include the generic
26198         arity in the type name.
26199         (_mono_type_get_name): New static function.
26200         (mono_class_setup_vtable): If we're a generic instance, don't
26201         include the generic arity in the names of explicit method
26202         implementations.        
26203
26204 2004-08-03  Martin Baulig  <martin@ximian.com>
26205
26206         * class.c (mono_type_get_name_recurse): Enclose the generic type
26207         arguments in `<', '>'.
26208
26209 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26210
26211         * gc.c: make GC warning messages use the trace API, they are just
26212         noise to most of the users.
26213
26214 2004-08-03  Martin Baulig  <martin@ximian.com>
26215
26216         * debug-mono-symfile.c (read_string): Correctly read the string.
26217
26218 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
26219
26220         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
26221         
26222         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
26223         icalls.
26224         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
26225
26226 2004-07-30  Martin Baulig  <martin@ximian.com>
26227
26228         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
26229         Reflect latest symbol writer changes.   
26230
26231 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26232
26233         * object.c: always create an object if null is passed
26234         to Invoke() where a valuetype is expected.
26235
26236 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
26237
26238         * marshal.c (mono_marshal_init): make managed
26239         signatures match native ones better for 64bits.
26240
26241 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26242
26243         * appdomain.c: hack to build correctly the private bin path on windows.
26244         Fixes bug #61991.
26245
26246 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
26247
26248         * assembly.c: Load mscorlib from the correct framework directory
26249           (mono/<version>/mscorlib.dll).
26250         * appdomain.h: Added prototypes for new functions.
26251         * internals.h: Added some prototypes.
26252         * domain.c: When initializing the runtime, get from the executable and
26253           the configuration files the runtime version that the app supports.
26254           Added support methods for reading app.exe.config. Added list of versions
26255           supported by the JIT. Added two new methods: mono_init_from_assembly,
26256           which initializes the runtime and determines the required version from
26257           the provided exe file, and mono_init_version, which initializes
26258           the runtime using the provided version.
26259         * icall.c: Get machine.config from version-specific directory.
26260         * reflection.c: When generating an image, embed the version number
26261           of the current runtime.
26262
26263 2004-07-28  Dick Porter  <dick@ximian.com>
26264
26265         * socket-io.c
26266         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
26267         returned sockaddr size before creating the remote address object.
26268         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
26269         61608.
26270
26271 2004-07-28  Dick Porter  <dick@ximian.com>
26272
26273         * locales.c (string_invariant_compare_char): Fix invariant char
26274         compares between upper and lower cases.  Fixes bug 61458.
26275
26276 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
26277         
26278         * marshal.c: actually cache stelem.ref wrappers.
26279         
26280 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
26281
26282         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
26283         sections and remove the mono_cli_rva_map () function.
26284
26285 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26286
26287         * debug-mono-symfile.c: fix one more endianess issue, from a patch
26288         by Geoff Norton (<gnorton@customerdna.com>).
26289
26290 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26291
26292         * class.c: fix class loads for pointer types (typeof(int) !=
26293         typeof(int*)).
26294
26295 2004-07-27  Martin Baulig  <martin@ximian.com>
26296
26297         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
26298         reading the debugging information from an external ".mdb" file.
26299
26300 2004-07-24  Martin Baulig  <martin@ximian.com>
26301
26302         * reflection.c (mono_image_get_type_info): Only write a class
26303         layout entry if we actually have a size or a packing size.
26304
26305 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26306
26307         * reflection.c (type_get_fully_qualified_name): 
26308         insert cast to get type checking of ?: with non-gcc compilers
26309
26310 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26311
26312         * rand.c: use g_getenv for both lookups of
26313         MONO_EGD_SOCKET
26314
26315 2004-07-17  Martin Baulig  <martin@ximian.com>
26316
26317         * reflection.c (mono_reflection_bind_generic_method_parameters):
26318         Set `gmethod->reflection_info'.
26319
26320 2004-07-17  Martin Baulig  <martin@ximian.com>
26321
26322         * class.c (mono_class_create_from_typedef): Insert the newly
26323         created class into the hash table before computing the interfaces
26324         since we could be called recursively.
26325
26326 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
26327
26328         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
26329         function to implement stelem.ref in managed code
26330         * class-internals.h, debug-helpers.c: a new wrapper type
26331         for the above.
26332
26333 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26334
26335         * gc.c: allow GC handles to work even when no GC is compiled in.
26336         Fix part of bug #61134 (GetAddrOfPinnedObject).
26337
26338 2004-07-13  Peter Williams  <peter@newton.cx>
26339  
26340         * process.c (complete_path): Make sure we don't attempt to execute
26341         directories.
26342  
26343 2004-07-12  Geoff Norton <gnorton@customerdna.com>
26344
26345         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
26346           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
26347           and will add/subtract the hour if needed
26348
26349 2004-07-12  Martin Baulig  <martin@ximian.com>
26350
26351         * reflection.c (mono_field_get_object): If we have
26352         `field->generic_info', take the attributes from
26353         `field->generic_info->generic_type'.    
26354
26355 2004-07-12  Martin Baulig  <martin@ximian.com>
26356
26357         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26358         This function must be called before initializing the runtime.
26359         (mono_debug_init_1): New function; call this after initializing
26360         the runtime, but before loading the assembly.  It tells the
26361         debugger to load corlib and the builtin types.
26362
26363         * mono-debug-debugger.c: Did some larger changes in the debugging
26364         code; support recursive class declarations, make sure we actually
26365         add all classes.
26366
26367 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26368
26369         * debug-helpers.c: undo my previous patch and fixed the real issue in
26370         ../mini/exceptions-x86.c
26371
26372 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26373
26374         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26375         when no HOME env. variable was set and a NullRef was thrown in a .cctor
26376         called from other .cctors.
26377
26378 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26379
26380         * loader.c: Removed the mono_loader_wine_init hack now that we are
26381         doing a managed version of Windows.Forms.
26382
26383 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26384
26385         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26386         threadpool.c, threads.c: remove static data from rootset.
26387
26388 2004-07-09  Dick Porter  <dick@ximian.com>
26389
26390         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26391         Don't do any more processing if the matched length was 0.  It was
26392         increasing the size of the string before.  Fixes bug 61167.
26393
26394 2004-07-09  Dick Porter  <dick@ximian.com>
26395
26396         * socket-io.h:
26397         * socket-io.c
26398         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26399         Add support for SO_PEERCRED if its available.
26400
26401 2004-07-09  Peter Bartok <pbartok@novell.com>
26402         * loader.c: winelib.exe.so error message is now only displayed if
26403         MONO_DEBUG is set. To help us avoid questions when people are trying
26404         out the new Managed.Windows.Forms.
26405
26406 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26407
26408         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26409         for isinst and castclass wrappers.
26410
26411         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26412         to libmetadata from the JIT, so they could be used by the marshalling
26413         code and the interpreter.
26414
26415         * marshal.c: Register marshalling related JIT icalls here instead of
26416         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26417         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26418
26419         * metadata.h: Remove unneeded marshalling conversions.
26420
26421         * opcodes.c: Update for new opcodes.
26422         
26423 2004-07-08  Martin Baulig  <martin@ximian.com>
26424
26425         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26426         (mono_debug_get_domain_data): Make this function static.
26427
26428 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26429
26430         * gc.c, object.h: add nice GC handle API for embedders.
26431
26432 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26433
26434         * reflection.c: more changes for the new api
26435
26436         * object.c: When we reflect on a field w/ a constant value, it
26437         will not have a memory location, so we must access metadata. Also,
26438         allow easier reading of strings so that we can read them from
26439         the constant data.
26440
26441         * class.c (mono_class_layout_fields): no need for literal fields here.
26442
26443         * class-internals.h: api changes for const fields
26444
26445         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26446
26447 2004-07-06  Martin Baulig  <martin@ximian.com>
26448
26449         * mono-debug.h: Increment version number to 44.
26450
26451         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26452         now a gpointer, rewrote this whole method.
26453
26454         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26455         function.  Add information about the wrapper in a new "misc table".
26456
26457         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26458         for the new misc table.
26459
26460 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26461
26462         * metadata-internals.h image.c: Add a cache for helper signatures.
26463
26464         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26465
26466 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26467
26468         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26469         delegates from a delegate. Fixes #61033.
26470         
26471         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26472         marshalling of stringbuilder arrays. Fixes #59900.
26473
26474 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26475
26476         * icall.c: Add EnumBuilder:setup_enum_type icall.
26477
26478 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26479
26480         * icall.c: Added a new icall for the property version of
26481         OffsetOfStringData.
26482
26483 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26484
26485         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26486         it has a constant size across platforms.
26487
26488         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26489         stack trace.
26490
26491 2004-06-29  Martin Baulig  <martin@ximian.com>
26492
26493         * mono-debug.c (mono_debug_add_method): Protect the whole function
26494         in mono_debugger_lock(), not just parts of it.
26495
26496 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26497
26498         * reflection.c: make sure padding bytes in heaps are zeroed.
26499
26500 2004-06-24  David Waite  <mass@akuma.org>
26501
26502         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26503         image.c, loader.c, locales.c, marshal.c, metadata.c,
26504         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26505         string-icalls.c, threads.c: change to C90-style comments from C99 /
26506         C++ -style
26507
26508 2004-06-24  Dick Porter  <dick@ximian.com>
26509
26510         * threads.c
26511         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26512         return createdNew.  Fixes bug 60412.
26513
26514         * threads-types.h: 
26515         * icall.c: Add createdNew parameter to CreateMutex icall
26516
26517 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26518
26519         * reflection.c, object-internals.h: save default value in params.
26520
26521 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26522
26523         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26524         no need to build a new path combining that with the application base.
26525         Fixes bug #60442.
26526
26527 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26528
26529         * reflection.c: fixed minor standard compliance issues.
26530
26531 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26532
26533         * reflection.c: fixed issue with encoding some custom attributes
26534         (arrays in properties and fields, bug #60411).
26535
26536 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26537
26538         * reflection.c: fix start address when copying the public key token.
26539
26540 2004-06-23  Martin Baulig  <martin@ximian.com>
26541
26542         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26543         the `exc' object in a static object to put it into the GC's root set.
26544
26545 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26546
26547         * reflection.c: make mono_reflection_setup_internal_class ()
26548         callable a second time to setup a new parent class.
26549
26550 2004-06-23  Dick Porter  <dick@ximian.com>
26551
26552         * threads.c: Check for WAIT_IO_COMPLETION return values.
26553
26554 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26555
26556         * appdomain.c: Removed the g_free on the public key token. Now copy 
26557         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26558         * assembly.c: Added public key token string value when loading 
26559         assemblies. Fix bug #60439.
26560         * icall.c: Added missing informations (like public key) in 
26561         GetReferencedAssemblies. Fix #60519.
26562         * image.h: Changed definition for public key token from const char*
26563         public_tok_value to guchar public_key_token [17];
26564         * reflection.c: Updated for changes to public key token.
26565
26566 2004-06-22  Lluis Sanchez Gual
26567
26568         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26569         for the field in base classes.
26570
26571 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26572
26573         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26574         mark headers as not supported, they are installed only for use by the
26575         debugger.
26576
26577 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26578
26579         * *.c, *.h: avoid namespace pollution in public headers.
26580
26581 2004-06-21  Martin Baulig  <martin@ximian.com>
26582
26583         * exception.c (mono_get_exception_security): It's in
26584         "System.Security", not in "System".
26585
26586         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26587         the exception classes.
26588
26589 2004-06-21  Martin Baulig  <martin@ximian.com>
26590
26591         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26592         Protect the exception object from being finalized.
26593
26594 2004-06-21  Martin Baulig  <martin@ximian.com>
26595
26596         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26597         public function.
26598
26599 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26600
26601         * reflection.c: Load the assembly in mono_reflection_type_from_name,
26602         if it was not loaded before. Fix parts of #60439.
26603
26604 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26605
26606         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26607         code that was broken since Ben's change: wrappers are now
26608         dependent on the method signature only again.
26609
26610 2004-06-21  Martin Baulig  <martin@ximian.com>
26611
26612         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
26613         added interface support.
26614
26615 2004-06-21  Martin Baulig  <martin@ximian.com>
26616
26617         * class.c (mono_vtable_get_static_field_data): New public method.
26618
26619 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
26620
26621         * filewatcher.c : Windows build fix to be compliant with API changes.
26622
26623 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26624
26625         * class.h, class.c: more accessors.
26626         * metadata.h, metadata.c: prepare for hiding MonoType and
26627         MonoMethodSignature: people should use the accessors from now on
26628         outside of the tree.
26629
26630 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26631
26632         * *.c, *.h: more API cleanups.
26633
26634 2004-06-18  Jackson Harper  <jackson@ximian.com>
26635
26636         * assembly.c: Trace loading assemblies.
26637         * loader.c: Trace loading native libraries.
26638         * mono-config.c: Trace loading config files.
26639         
26640 2004-06-18  Dick Porter  <dick@ximian.com>
26641
26642         * locales.c: Tell ICU the lengths of strings, it can cope with
26643         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
26644
26645 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
26646
26647         * image.c: swapped name/filename;
26648
26649 2004-06-18  Martin Baulig  <martin@ximian.com>
26650
26651         * mono-debug-debugger.c (write_class): Write the parent class at
26652         the end of the header.
26653
26654 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26655
26656         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
26657
26658 2004-06-17  Raja R Harinath  <rharinath@novell.com>
26659
26660         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
26661         (bundle_obj): New conditional define.
26662         (BUILT_SOURCES): Remove.
26663         ($(bundle_srcs)): Make parallel-make safe.
26664         (libmonoruntime_la_LIBADD): Make unconditional.
26665         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
26666         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
26667
26668 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
26669
26670         * culture-info-tables.h: It was inconsistent with the latest
26671           supp info files.
26672
26673 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
26674
26675         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
26676         be loaded.
26677
26678         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
26679         with gcc 2.95.
26680
26681 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26682
26683         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
26684         cleaned up public header threads.h.
26685
26686 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26687
26688         * Makefile.am, *.c, *.h: more API cleanups.
26689
26690 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
26691
26692         * Makefile.am: removed monosn from compilation.
26693         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
26694         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
26695         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
26696         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
26697         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
26698         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
26699
26700 2004-06-15  Jackson Harper  <jackson@ximian.com>
26701
26702         * assembly.c: Make locales lower case when searching the GAC for
26703         assemblies. gacutil will always make locales lowercase when
26704         installing so this effectively makes them case insensitive.
26705         
26706 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
26707
26708         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
26709         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
26710           parameter which allows to choose whether the wait can be interrupted or 
26711           not. Also added the method mono_monitor_enter(), which locks the monitor
26712           using an infinite wait and without allowing interruption.
26713           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
26714           interrupted.
26715         * object.h: Added new fields in MonoThread. suspend_event holds the event
26716           used to susped/resume the thread. synch_lock is the lock object to use for
26717           modifying the thread state.
26718         * threads.c: Use the new synch_lock object for locking, instead of "this",
26719           which can generate deadlocks.
26720           Moved thread state change in Thread.Sleep and Thread.Join from managed
26721           to unmanaged code. This avoids a deadlock when the thread was suspended
26722           just after acquiring the thread lock.
26723           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
26724           Implemented Thread.Suspend using an event instead of ThreadSuspend,
26725           which is not fully implemented in the io-layer.
26726         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
26727
26728 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
26729
26730         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
26731         threads-types.h: more API cleanups.
26732
26733 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26734
26735         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
26736         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
26737         threadpool.c, threads.c: first pass at the exported API cleanup.
26738
26739 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
26740
26741         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
26742
26743 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26744
26745         * icall.c: added internalGetHome.
26746
26747 2004-06-14  Dick Porter  <dick@ximian.com>
26748
26749         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
26750         possible to return successfully when '.' or '..' were the only
26751         entries in a directory, but were skipped.  The MonoIOStat was not
26752         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
26753         Fixes bug 59574.
26754
26755 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26756
26757         * reflection.c: make binaries run on .Net 1.1 by default.
26758
26759 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26760
26761         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
26762
26763 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
26764
26765         * marshal.c: keep track of struct size with explicit layout
26766         (bug #59979).
26767
26768 2004-06-12  Martin Baulig  <martin@ximian.com>
26769
26770         * mono-debug-debugger.c: Comment out a debugging g_message().
26771
26772 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26773
26774         * reflection.c, reflection.h: do not free custom attrs that are cached.
26775         * icall.c: use braces to make code clearer.
26776
26777 2004-06-11  Martin Baulig  <martin@ximian.com>
26778
26779         * class.h (MonoInflatedField): New type.
26780         (MonoClassField): Replaced `MonoType *generic_type' with
26781         `MonoInflatedField *generic_info'.
26782
26783         * icall.c
26784         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
26785
26786 2004-06-11  Martin Baulig  <martin@ximian.com>
26787
26788         * reflection.c (mono_image_create_method_token): Correctly encode
26789         varargs methods.
26790
26791 2004-06-11  Martin Baulig  <martin@ximian.com>
26792
26793         * metadata.c (mono_metadata_parse_method_signature): When parsing
26794         a MethodDef which has VarArgs, also set sentinelpos if we don't
26795         have any parameters.
26796
26797 2004-06-11  Martin Baulig  <martin@ximian.com>
26798
26799         * verify.c (mono_method_verify): In CEE_CALL, use
26800         mono_method_get_signature() to get the method's signature, unless
26801         we're a PInvoke method.
26802
26803 2004-06-10  Jackson Harper  <jackson@ximian.com>
26804
26805         * assembly.c: Use <path>/lib/mono/gac for the extra paths
26806         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
26807         logical name as the supplied path is just a prefix to the gac not
26808         the direct path to it.
26809         
26810 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
26811
26812         * reflection.c: make the token for a created method match
26813         the token of the MethodBuilder it was created from
26814         (IKVM requires this behaviour now).
26815
26816 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
26817
26818         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
26819         reflection.c, socket-io.c: leak fixes.
26820
26821 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
26822
26823         * icall.c: handle sentinel pos in vararg methods in position different
26824         from 0.
26825
26826 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26827
26828         * culture-info-tables.h: freshly generated.
26829
26830 2004-06-09  Martin Baulig  <martin@ximian.com>
26831
26832         * loader.c (mono_get_method_constrained): Call `mono_class_init
26833         (constrained_class)'.   
26834
26835 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
26836
26837         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
26838         any methods. Fixes #59629.
26839
26840 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26841
26842         * culture-info-tables.h: reflecting locale-builder updates.
26843
26844 2004-06-08  Dick Porter  <dick@ximian.com>
26845
26846         * object.h:
26847         * locales.c: Fixed compile warnings, including a real bug in
26848         CompareInfo_internal_compare.
26849         
26850 2004-06-08  Dick Porter  <dick@ximian.com>
26851
26852         * locales.c
26853         (ves_icall_System_Globalization_CompareInfo_internal_index):
26854         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26855         Double-check the resuls of usearches, because ICU currently
26856         ignores most of the collator settings here.  Fixes bug 59720.
26857         
26858 2004-06-08  Dick Porter  <dick@ximian.com>
26859
26860         * locales.c
26861         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26862         Fix memory leak and segfault-causing typo.  No idea how this one
26863         lasted so long without being noticed.
26864
26865 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
26866
26867         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
26868         any methods. Fixes #59629.
26869
26870 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26871
26872         * assembly.c:
26873         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
26874         own the critical section before). Removed dead code (that's done
26875         in the preload hook).
26876
26877         (mono_assembly_load_with_partial_name): call the preload hook.
26878
26879 2004-06-08  Martin Baulig  <martin@ximian.com>
26880
26881         * metadata.c (mono_metadata_signature_alloc): Default
26882         `sentinelpos' to -1.
26883
26884         * reflection.c (mono_image_get_array_token): Likewise.
26885
26886 2004-06-08  Martin Baulig  <martin@ximian.com>
26887
26888         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
26889
26890         * metadata.c (mono_metadata_parse_method_signature): When parsing
26891         a MethodDef which has VarArgs, set sentinelpos.
26892
26893         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
26894         `gint16' since we're using -1 for non-varargs methods.
26895
26896         * reflection.c
26897         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
26898         (method_encode_signature): Added varargs support.
26899         (method_builder_encode_signature): Likewise.
26900         (mono_image_get_varargs_method_token): New static method.
26901         (mono_image_create_method_token): New public method; this is
26902         called via an icall instead of mono_image_create_token() when
26903         calling a varargs method.       
26904
26905 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
26906
26907         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
26908
26909 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26910
26911         * culture-info-tables.h : Reflecting the latest locale-builder that
26912           fixed empty array representation ({} to {0}).
26913
26914 2004-06-07  Jackson Harper  <jackson@ximian.com>
26915
26916         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
26917         looking up extra gac paths. This allows MONO_GAC_PATH to act
26918         exactly like a prefix.
26919         
26920 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26921
26922         * reflection.c (mono_reflection_type_from_name): Make a copy of the
26923         type name before modifying it. Fixes #59405.
26924
26925 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26926
26927         * culture-info.h: added fields for "all datetime patterns".
26928         * locales.c: (  ves_icall_System_Globalization_CultureInfo
26929           _construct_datetime_format ()): fill xxx_patterns fields.
26930         * object.h: added fields for "all datetime patterns" to
26931           MonoDateTimeFormatInfo.
26932         * culture-info-tables.h: reflecting locale-builder updates.
26933
26934 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26935
26936         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
26937         the event has no add and remove methods. Fixes #59629.
26938
26939 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
26940
26941         * object.c: Fixed possible integer overflow when allocating large
26942         strings.
26943
26944 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26945
26946         * culture-info-tables.h: reflecting locale-builder updates.
26947
26948 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26949
26950         * culture-info-tables.h: reflecting locale-builder updates.
26951
26952 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
26953
26954         * culture-info-tables.h: reflecting locale-builder updates.
26955
26956 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
26957
26958         * threads.c: Made Thread.Sleep abortable.
26959
26960 2004-06-02  Martin Baulig  <martin@ximian.com>
26961
26962         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
26963
26964         * debug-mono-symfile.h: Bumped symbol file version number to 37.
26965
26966 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
26967
26968         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
26969
26970 2004-05-30  Jackson Harper  <jackson@ximian.com>
26971
26972         * reflection.c: Do not hardcode assembly versions or public key
26973         tokens anymore. All of this except the corlib section was dead
26974         code anyways.
26975         
26976 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
26977
26978         * object.c (mono_runtime_invoke_array): Automatically create boxed
26979         objects for byref valuetypes if needed. Fixes #59300.
26980         
26981         * object.c (mono_method_return_message_restore): Handle 
26982         MONO_TYPE_OBJECT as well.
26983
26984 2004-05-28  Jackson Harper  <jackson@ximian.com>
26985
26986         * reflection.c: The modified type encoding was causing build
26987         problems. Reverted for now.
26988         
26989 2004-05-28  Jackson Harper  <jackson@ximian.com>
26990
26991         * reflection.c/h: Take an assembly ref so that we dont create
26992         fully qualified names when encoding types in the same assembly as
26993         the custom attribute being emitted.
26994         * appdomain.c: Increment version number.
26995         
26996 2004-05-26  Duncan Mak  <duncan@ximian.com>
26997
26998         * icall.c
26999         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27000         Set the full version number (major, minor, build, revision).
27001
27002 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
27003
27004         * marshal.c (emit_struct_conv): increment src/dst after blit
27005         (mono_marshal_get_managed_wrapper,
27006         mono_marshal_get_native_wrapper): make sure we have marshalling
27007         info before marshalling params (info computation affects
27008         blittable)
27009
27010         * class.c (class_compute_field_layout): correctly deal with
27011         blittable
27012         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
27013         value types (as per what windows dows by default)
27014         (mono_class_setup_mono_type): System.ValueType is blittable
27015         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
27016         blittable
27017
27018         * marshal.c (mono_marshal_load_type_info): flag types  as
27019         non-blittable if the native layout doesn't match the managed
27020         layout
27021
27022 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27023
27024         * appdomain.c: don't add stuff in the private search path that is
27025         above the application base. If application base is not set, there's
27026         no private search path.
27027
27028 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
27029
27030         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
27031         byref struct arguments in native->managed marshalling.
27032
27033 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
27034
27035         * marshal.c (mono_marshal_get_runtime_invoke): correctly
27036         cache methods using signature (special case for methods
27037         that are value type or string class)
27038         
27039         * image.c (mono_image_close): clean up allocated GSList's
27040         in runtime_invoke_cache.
27041
27042 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27043
27044         * mono-config.c: set the correct path for mono_cfg_dir on windows when
27045         there's no MONO_CFG_DIR environment variable defined.
27046
27047 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27048
27049         * threads.c: windows version must be >= 0x0500 to include OpenThread.
27050
27051 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
27052
27053         * threadpool.c: Really wait for 500ms after the async call, even if the wait
27054           is interrumped.
27055         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
27056           before waiting for it, and call CloseHandle after the wait to unref it.
27057           This will make sure that handles are not disposed too early.
27058
27059 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27060
27061         * appdomain.c:
27062         * appdomain.h:
27063         * icall.c: removed
27064         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
27065         needed now.
27066
27067         * object.c: se the application_base only for the domain that runs
27068         Main. Fixes bug #59216,
27069
27070 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27071
27072         * appdomain.c:
27073         * object.c: only the domain in which Main is run have
27074         SetupInformation.ConfigurationFile set, so moved a few lines from
27075         appdomain.c to object.c.
27076
27077 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27078
27079         * appdomain.c: we tried to load [name].(dll|exe), but according
27080         to bug #57710, we must also try [culture]/[name].(dll|exe) and
27081         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
27082         There's a test case attached to bug #58922.
27083
27084 2004-05-27  Dick Porter  <dick@ximian.com>
27085
27086         * icall.c:
27087         * file-io.c: Implemented icalls for locking and unlocking regions
27088         in a file.
27089         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
27090         FALSE on error (fixes both compiler warning and real bug.)
27091
27092 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
27093
27094         * culture-info-tables.h: reflecting locale-builder updates.
27095
27096           (Added missing ChangeLog entry for 05/26)
27097
27098 2004-05-27  Jackson Harper  <jackson@ximian.com>
27099
27100         * locales.c: Fix some cut and paste errors.
27101         
27102 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27103
27104         * mono-config.c: set the correct path for config. directory on windows.
27105
27106 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27107
27108         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27109           on win32.
27110
27111 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27112
27113         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27114         from pinvoke functions.
27115         
27116         * marshal.c (mono_ftnptr_to_delegate): Implement this.
27117
27118 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27119
27120         * culture-info-tables.h: reflecting locale-builder updates.
27121
27122 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27123
27124         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27125         #59086.
27126
27127 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
27128
27129         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27130         * icall.c: Modified icalls for RNG.
27131         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
27132         Windows (CryptoAPI).
27133
27134 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27135
27136         * locales.c: Fix build.
27137
27138 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
27139
27140         * culture-info-tables.h: reflecting locale-builder updates.
27141
27142 2004-05-25  Jackson Harper  <jackson@ximian.com>
27143
27144         * locales.c: When creating the current culture use the $LANGs
27145         specific culture. So DateTimeFormat and NumberFormat entries are created.
27146         
27147 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27148
27149         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27150         a char array as parameter.
27151
27152 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
27153
27154         * image.c: In mono_image_open(), always use an absolute path name to
27155           look for already loaded images.
27156
27157 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
27158
27159         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27160         missing in the windows build (like older cygwin include files).
27161
27162 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
27163
27164         * icall.c: Fixed check for possible integer overflow in Buffer_
27165         BlockCopy icall. Replaced comments style // by /* */.
27166
27167 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
27168
27169         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27170         
27171         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27172         check after MONO_VTADDR. Fixes pinvoke2.exe.
27173
27174         * marshal.h marshal.c metadata.h: Add beginnings of support for
27175         ftnptr -> delegate marshalling.
27176
27177 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
27178
27179         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27180         * threads.c: Fix warnings.
27181
27182 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
27183
27184         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27185         * icall.c: Registered icalls for Suspend and Resume.
27186         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27187           Thread.Abort.
27188         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27189         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27190         * process.c: Use WaitForSingleObjectEx.
27191         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
27192           checkpoints.
27193         * threads.c, threads.h: Make use of new Ex wait methods. Improved
27194           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27195           for Suspend and Resume. Added new mono_thread_stop, used for stoping
27196           background threads. Added basic support for Abort in Windows.
27197           Start new threads using a managed delegate invoke wrapper. This wrapper
27198           has an interruption checkpoint that is needed since an interruption
27199           can be requested before the thread leaves the unmanaged code that starts 
27200           the thread.
27201         * marshal.c: Added interruption checkpoint after every native call, and
27202           also before managed calls for wrappers called from unmanaged code to
27203           go into managed code.
27204         * object.h: Added new field in MonoThread to keep track of interruption
27205           requests.
27206
27207 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
27208
27209         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
27210         calls.
27211
27212 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27213
27214         * appdomain.c:
27215         * assembly.c:
27216         * gc.c:
27217         * locales.c:
27218         * mono-config.c:
27219         * rand.c: getenv -> g_getenv (windows!)
27220
27221         * process.c: complete_path is also used on non-windows platforms.
27222
27223 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27224
27225         * icall.c: new signature for Process_Start.
27226
27227         * process.[ch]: new signature for Process_Start. If we're on windows
27228         and UseShellExecute is false, we have to search for the program by
27229         ourselves if we don't get a full path.
27230
27231 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
27232
27233         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
27234         marshalling and call CleanUpNativeData if needed. Fixes #58646.
27235
27236 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27237
27238         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
27239         Fixes bug #58373.
27240
27241 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27242
27243         * process.c: use double quotes to quote program name and arguments on
27244         windows. Fixes bug #58575.
27245
27246 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27247
27248         * file-io.c: don't return "." and ".." when using windows Find*File.
27249
27250 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
27251
27252         * marshal.c: Don't pass wrappers to message init because method 
27253         addressed used to lookup metadata. part of remoting[2|3] fix.
27254
27255 2004-05-15  Jackson Harper  <jackson@ximian.com>
27256
27257         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
27258         path is essentially the same as MONO_PATH except that it points to
27259         GACs instead of lib directories.
27260         * loader.h: The user gac is gone so we dont need function to
27261         enable/disable it.
27262         * mono-config.c: user gac option is now gone.
27263         
27264 2004-05-15  Jackson Harper  <jackson@ximian.com>
27265
27266         * culture-info.h: Make defines more consistent, add calendar data
27267         to the culture info table.
27268         * culture-info-tables.h: Add basic calendar data. Basically
27269         everyone gets default gregorian until all the data is
27270         updated.
27271         * locales.c: Use the new consistent defines. Set calendar data for
27272         culture info objects.
27273         * object.h: add a field for calendar data to CultureInfo
27274         
27275 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
27276
27277         * image.c: image->runtime_invoke_cache is keyed on signatures now.
27278         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
27279         a signature.
27280         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
27281         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
27282         an extra param that is the pointer of the method to invoke. The IL for
27283         the invoke method is no longer specific to the method, but to the
27284         signature of the method. Thus, we can share the same code for multiple
27285         methods. This reduces the number of methods that have to be compiled.
27286
27287 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
27288
27289         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
27290
27291         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27292
27293         * icall.c: Optimize Buffer.BlockCopy.
27294
27295 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27296
27297         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
27298         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
27299         quote). Changed them to "MMMM yyyy".
27300
27301 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
27302
27303         * rand.c
27304         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
27305
27306 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
27307
27308         * reflection.h: Updated after changes to managed structures.
27309
27310         * appdomain.c: Bump corlib version.
27311
27312 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27313
27314         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
27315         windows.
27316
27317 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27318
27319         * Makefile.am: link to ../os/libmonoos.la on windows.
27320
27321         * assembly.c:
27322                 -If MONO_DEBUG, warn about non-existing directories in
27323                 MONO_PATH.
27324                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
27325                 compile time variable.
27326                 -Removed init_default_path and call mono_set_rootdir from
27327                 libmonoos.a instead (windows only).
27328
27329         * assembly.h: declare mono_assembly_getrootdir().
27330
27331         * domain.c:
27332         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
27333
27334         * loader.c: s/getenv/g_getenv/
27335
27336 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
27337
27338         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27339
27340         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27341
27342         * metadata.h: Add new marshalling conversions.
27343
27344         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27345         function.
27346
27347         * reflection.c (mono_reflection_get_type): Lookup the type in all
27348         modules of a multi-module assembly. Fixes #58291.
27349
27350 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
27351
27352         * threads.c: Before aborting a background, set the StopRequested
27353         state.  This avoids throwing the Abort exception.
27354         In mono_thread_manage, don't continue with the shutdown until all
27355         aborted threads have actually stopped.
27356
27357 2004-05-10  Jackson Harper  <jackson@ximian.com>
27358
27359         * locales.c: Remove the modifier from culture names.
27360         
27361 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27362
27363         * Makefile.am: monosn is not installed any more. It has been deprecated
27364         in favor of sn.
27365
27366 2004-05-07  Jackson Harper  <jackson@ximian.com>
27367
27368         * locales.c
27369         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27370         Fix array construction, add bailout if the length is 0.
27371
27372 2004-05-07  Dick Porter  <dick@ximian.com>
27373
27374         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27375         machine doesn't have a DNS entry.  Patch by Urs Muff
27376         (umuff@quark.com), fixes bug 57928.
27377
27378 2004-05-06  Jackson Harper  <jackson@ximian.com>
27379
27380         * reflection.c: Handle null PublicTokens properly. alloc mem for
27381         assembly names culture so we dont crash when freeing it.
27382         
27383 2004-05-06  Jackson Harper  <jackson@ximian.com>
27384
27385         * assembly.c: Check the usergac when loading with partial names.
27386         
27387 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27388
27389         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27390         does nothing for now (not required for Linux/Windows) but the class
27391         library can call it (and a newer or modified runtime could need it).
27392         * icall.c: Registred icall.
27393
27394 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27395
27396         * loader.c: prints a message on module loading error we set MONO_DEBUG
27397         environment variable.
27398
27399 2004-05-05  Jackson Harper  <jackson@ximian.com>
27400
27401         * appdomain.c: Handle PublicKeyToken=null properly.
27402         
27403 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27404
27405         * environment.c|h: Added icall ves_icall_System_Environment_
27406         GetOSVersionString to get the current OS version as a string.
27407         * icall.c: Registred icall.
27408
27409 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27410
27411         * object.c: in mono_object_get_virtual_method(), take into account that
27412         non-virtual methods don't have a slot in the vtable. Check needed when
27413         the object is a proxy.
27414
27415 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27416
27417         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27418         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27419
27420         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27421
27422         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27423         passed when a valuetype is expected.
27424
27425         * object.c (mono_unhandled_exception): Only set the exit code if the
27426         exception happens in the main thread. Fixes thread5.exe.
27427
27428         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27429         invalid names. Fixes #58047.
27430
27431 2004-05-03  Jackson Harper  <jackson@ximian.com>
27432
27433         * assembly.c: This line was committed accidently and is unneeded.
27434         
27435 2004-05-03  Jackson Harper  <jackson@ximian.com>
27436
27437         * icall.c: Add new icall for Assembly::LoadWithPartialName
27438         * assembly.c/.h: new function that probes the GAC to load partial
27439         assembly names by Paolo Molaro.
27440         
27441 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27442
27443         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27444         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27445         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27446         full type name.
27447
27448 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27449
27450         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27451         * reflection.c: fix bug when parsing a full type name and Version is not
27452         the last thing in the string.
27453
27454 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27455
27456         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27457         crashes when it is freed.
27458
27459 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27460
27461         * assembly.c: print the compat warning to stderr.
27462
27463 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27464
27465         * assembly.c (mono_assembly_load_references): Add a compatibility
27466         hack to run old applications that might be still referencing the
27467         3300-based assemblies, only do this for System.xxx.
27468
27469 2004-05-01  Jackson Harper  <jackson@ximian.com>
27470
27471         * appdomain.c: If the culture is neutral we set it to "".
27472         
27473 2004-04-29  Jackson Harper  <jackson@ximian.com>
27474
27475         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27476
27477 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27478  
27479         * string-icalls.c: added low overhead function for copying chars
27480         * icall.c: added needed icall for the above function
27481  
27482 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27483
27484         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27485         Environment.GetLogicalDrives.
27486
27487 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27488
27489         * rand.c: try and talk to egd or prngd
27490         for random bytes if opening devices fail.
27491
27492 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27493
27494         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27495         alignment for the type using the native alignment of its members 
27496         instead of using klass->min_align.
27497
27498         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27499
27500 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27501
27502         * file-io.c:
27503         * socket-io.c: added check for sys/aio.h.
27504
27505 2004-04-28  Dick Porter  <dick@ximian.com>
27506
27507         * threads.c: Don't abort a thread thats already aborting, when
27508         terminating everything.
27509
27510 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27511
27512         * icall.c: added 2 new async calls for Socket.
27513
27514         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27515         IO on *nix systems.
27516
27517         * threadpool.c: removed unused variable.
27518
27519 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27520
27521         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27522
27523 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27524
27525         * locales.c: put back string_invariant_tolower () and
27526         string_invariant_toupper ().
27527
27528 2004-04-26 David Waite <mass@akuma.org>
27529
27530         * file-io.h:
27531         * socket-io.h:
27532         * threads.h:
27533         * unicode.h: remove comma from end of enumeration declarations
27534
27535 2004-04-26 David Waite <mass@akuma.org>
27536
27537         * debug-mono-symfile.h:
27538         * decimal.c:
27539         * mono_debug.h:
27540         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27541
27542
27543 2004-04-26  Jackson Harper  <jackson@ximian.com>
27544
27545         * appdomain.c: Increment version number.
27546         
27547 2004-04-26  Jackson Harper  <jackson@ximian.com>
27548
27549         * appdomain.c: Set assembly references public token value when
27550         PublicKeyToken is specified, not the hash_value. Free public token
27551         values when free assembly name data. Previously the public key
27552         token was hex decoded, however we are using hex encoded public key
27553         tokens, so this is not neccasary.
27554         * assembly.c: Lookup assemblies in the gac if their public token
27555         value is set. Add function to allow enabling user gac
27556         lookups. Specify whether or not the assembly was loaded from the
27557         GAC. Compare full assembly names when checking the cache for
27558         assemblies (Temporarily disabled see comment in code). Remove
27559         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27560         specifies trace-loader they get extra info to stdout on the
27561         loading of assemblies.
27562         * image.h: Add a field for an assembly references public token
27563         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27564         whether an assembly has been loaded from the GAC.
27565         * image.c: Remove a corlib -> mscorlib name mapping.
27566         * loader.h: Add function to enable/disable the user gac.
27567         * mono-config.c: Check if the usergac is enabled in the config
27568         file.
27569         * icall.c: New icall to determine whether or not an assembly has
27570         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27571         * tabldefs.h: Add constant for assemblyref flag that specifies a
27572         full public key is used instead of a public token.
27573         * reflection.c: Remove mscorlib -> corlib mappings. Set
27574         PublicTokenValue instead of hash value. This value is a hex
27575         string so it does not need to be expanded.
27576
27577 2004-04-26  Martin Baulig  <martin@ximian.com>
27578
27579         * mono-debug-debugger.c (mono_debugger_initialize): Set
27580         `mono_debugger_initialized' before calling mono_debug_lock().
27581
27582 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27583
27584         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27585           InternalToUpper/InternalToLower.
27586         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27587           removed invariant culture shortcut.  This is now done in managed code.
27588         * locales.c: (string_invariant_toupper/tolower) removed.
27589
27590 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27591
27592         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27593         Added Poll internal call.
27594
27595         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27596         call for Poll. Select was too heavy for polling a single socket.
27597
27598         * threadpool.[ch]: added mono_threadpool_cleanup.
27599         * threads.c: use it. Don't use Thread_Abort on windows.
27600
27601 2004-04-23  Martin Baulig  <martin@ximian.com>
27602
27603         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27604
27605 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
27606
27607         * icall.c: Registred new icalls for key pair protection and added an
27608         icall for Environment.GetFolderPath on Windows.
27609         * security.c|h: Added new icalls for key pair protection.
27610
27611 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27612
27613         * socket-io.c: don't display the non-supported family warning for known
27614         families. Now this is not displayed on windows when checking support
27615         for IPv4/IPv6.
27616
27617 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27618
27619         * class.c: don't display the layout warning for static fields.
27620
27621 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
27622
27623         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
27624         * locales.c, locales.h: Added new icalls for culture-specific
27625         Char.ToLower and Char.ToUpper.
27626
27627 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27628
27629         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
27630         by David Waite.
27631
27632 2004-04-20  Martin Baulig  <martin@ximian.com>
27633
27634         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
27635         of the type name before passing it to mono_reflection_type_from_name().
27636
27637 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
27638
27639         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
27640         encodings here. Fixes #56965.
27641
27642 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
27643
27644         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27645         fix test on strstr result not that I can see anything that
27646         relies on the result.
27647
27648 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
27649
27650         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
27651         Fixes #57081.
27652
27653         * marshal.c (mono_marshal_get_string_encoding): New helper function.
27654
27655         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
27656         function to determine which marshalling to use for strings. Fixes
27657         #56965.
27658
27659         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
27660
27661         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
27662
27663 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
27664
27665         * icall.c: #include mono-config.h
27666
27667 2004-04-15  Jackson Harper  <jackson@ximian.com>
27668
27669         * culture-info-tables.h: Fix date formats for en-US culture.
27670         
27671 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
27672
27673         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
27674         ThreadPool.SetMinThreads.
27675         * threadpool.c: Implemented ThreadPool.GetMinThreads and
27676         ThreadPool.SetMinThreads.
27677
27678 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27679
27680         * mono-config.c: also load the .config file in the directory
27681         where the assembly was found.
27682
27683 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
27684
27685         * assembly.c: load per-assembly config files.
27686         * icall.c: decrapified code to get the config dir and moved to
27687         mono-config.c.
27688         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
27689         per-assembly config files. When doing a dll map lookup give precedence
27690         to the per-assembly data.
27691
27692 2004-04-14  Martin Baulig  <martin@ximian.com>
27693
27694         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
27695         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
27696         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
27697
27698         * mono-debugger-debugger.c: While the debugger is locked, remember
27699         whether the symbol tables have changes and send one single
27700         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
27701
27702 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
27703
27704         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
27705
27706         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
27707         function.
27708
27709         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
27710         account when marshalling string arrays. Fixes #56965.
27711
27712 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
27713
27714         * icall.c: Add new icalls mapping for security.
27715         * security.c|h: Add internal calls for WindowsIdentity,
27716         WindowsImpersonationContext and WindowsPrincipal.
27717
27718 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
27719
27720         * class.c: Added comment to ensure the System.MonoDummy class
27721         is removed when no longer necessary
27722
27723 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
27724
27725         * appdomain.c: Pass arguments to the bootstraping exceptions to
27726         minimize JITed methods at boot
27727
27728         * metadata.c (mono_exception_from_name_two_strings): Allow for the
27729         second string to be null.
27730
27731         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27732         Change the protocol to minimize the JIT methods at startup.  Now
27733         it Returns the internal codepage, if the value of "int_code_page"
27734         is 1 at entry, and we can not compute a suitable code page
27735         number, returns the code page as a string.
27736
27737 2004-04-13  Jackson Harper  <jackson@ximian.com>
27738
27739         * culture-info-tables.h: Fix number of decimal digits for all
27740         english locales.
27741
27742 2004-04-13  Jackson Harper  <jackson@ximian.com>
27743
27744         * icall.c: Clairfy out of sync error message. It is not always
27745         your corlib that is out of sync.
27746
27747 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
27748
27749         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
27750         properties when only the set accessor is overriden. Fixes #55874.
27751
27752 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
27753
27754         * assembly.c (mono_assembly_load_references): Make this thread safe.
27755         Fixes #56327.
27756
27757 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
27758
27759         * monosn.c: Add missing initialization calls.
27760
27761 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
27762
27763         * locales.c:
27764         ves_icall_System_Globalization_CultureInfo_construct_number_format
27765         Fix g_assert so it compiles on fussier compilers re int/ptr
27766         mismatch
27767
27768 2004-04-08  Dick Porter  <dick@ximian.com>
27769
27770         * socket-io.h:
27771         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
27772         53992.  Also rearrange the code so that the internal calls return
27773         an error value and exceptions are thrown from managed code.
27774
27775         * icall.c: Add type info to the socket icalls.
27776
27777 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27778
27779         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
27780         owes me a beer.
27781
27782 2004-04-07  Martin Baulig  <martin@ximian.com>
27783
27784         * class.c (mono_class_from_generic_parameter): Don't default
27785         `klass->parent' to `mono_defaults.object_type'.
27786
27787 2004-04-07  Martin Baulig  <martin@ximian.com>
27788
27789         * reflection.c (mono_reflection_initialize_generic_parameter): Set
27790         `param->pklass->reflection_info'.       
27791
27792 2004-04-07  Jackson Harper  <jackson@ximian.com>
27793
27794         * culture-info-tables.h: Fix date separator symbol.
27795         
27796 2004-04-07  Martin Baulig  <martin@ximian.com>
27797
27798         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
27799         from System.Type to System.MonoType.
27800
27801 2004-04-07  Martin Baulig  <martin@ximian.com>
27802
27803         * reflection.h
27804         (MonoReflectionGenericParam): Added `has_reference_type' and
27805         `has_value_type' fields.
27806
27807         * reflection.c (mono_image_get_generic_param_info): Encode the
27808         correct flags if we have the `class' or `struct' constraint.
27809
27810 2004-04-07  Martin Baulig  <martin@ximian.com>
27811
27812         * reflection.h
27813         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
27814
27815 2004-04-07  Jackson Harper  <jackson@ximian.com>
27816
27817         * appdomain.c: Revert extra patches, just wanted to bump the
27818         version number.
27819         
27820 2004-04-07  Jackson Harper  <jackson@ximian.com>
27821
27822         * Makefile.am: Add culture-info private headers.
27823         * icall.c: Add new icalls for contructing locales.
27824         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
27825         * locales.h: Declare new culture info construction methods.
27826         * object.h: Add new fields used to avoid the CultureMap to
27827         MonoCultureInfo.
27828         * culture-info.h: Definition of structs used in the culture info
27829         tables.
27830         * culture-info-tables.h: Autogenerated tables that contain culture
27831         info data. This file was generated with the locale-builder tool.
27832         * appdomain.c: Incement corlib version number.
27833         
27834 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
27835
27836         * appdomain.c: (mono_runtime_init) move mono_thread_init
27837         to before mono_object_new calls so critical sections
27838         are initialized before use.
27839
27840 2004-04-07  Martin Baulig  <martin@ximian.com>
27841
27842         * icall.c
27843         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
27844         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
27845         (ves_icall_MonoGenericParam_initialize): Removed.
27846         (monogenericparam_icalls): Removed.
27847         (generictypeparambuilder_icalls): Added new table for
27848         System.Reflection.Emit.GenericTypeParameterBuilder.
27849
27850         * reflection.c
27851         (mono_reflection_define_generic_parameter): Removed.
27852         (mono_reflection_initialize_generic_parameter): This is now called
27853         from GenericTypeParameterBuilder's .ctor.
27854
27855 2004-04-06  Martin Baulig  <martin@ximian.com>
27856
27857         * class.c (mono_class_init): Don't inflate nested classes in a
27858         generic instance.
27859         (mono_type_get_name_recurse): Include the generic arguments for
27860         generic instances and generic type declarations.
27861         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
27862         (_mono_class_get_instantiation_name): Removed.
27863         (mono_class_create_generic): Always use `gklass->name' as our name.
27864
27865         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
27866
27867         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
27868         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
27869         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
27870         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
27871         closed generic methods here.
27872
27873         * reflection.c
27874         (mono_reflection_generic_inst_get_nested_types): Removed.
27875         (inflate_mono_method): Copy the generic parameters from the
27876         MonoMethodHeader into out MonoGenericMethod.
27877
27878 2004-04-06  Martin Baulig  <martin@ximian.com>
27879
27880         * row-indexes.h
27881         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
27882
27883         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
27884
27885         * reflection.c (build_compressed_metadata): If we have any entries
27886         in the GenericParam, MethodSpec or GenericParamConstraint tables,
27887         set the header version to 1.1.
27888
27889 2004-04-06  Martin Baulig  <martin@ximian.com>
27890
27891         * class.c (mono_class_init): If we're a generic instance,
27892         initialize our nested classes, too.
27893         (_mono_class_get_instantiation_name): Deal with the new `!%d'
27894         suffix. 
27895
27896 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27897
27898         * process.c: quote the argument passed to the shell on windows.
27899
27900 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
27901
27902         * threads.c (mono_alloc_special_static_data): Allow this to be
27903         called during startup.
27904
27905 2004-04-02  Martin Baulig  <martin@ximian.com>
27906
27907         * icall.c
27908         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
27909
27910 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
27911
27912         * icall.c: Fix build.
27913
27914 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
27915
27916         * Makefile.am: Added security.c|h.
27917         * icall.c: Added icall for get_UserName;
27918         * security.c: New file for security related icalls. Added function
27919         get_UserName for System.Environment (fix #56144).
27920         * security.h: New. Header file for security.c
27921
27922 2004-04-02  Dick Porter  <dick@ximian.com>
27923
27924         * icall.c: Deleted the icalls that were obsoleted some time ago
27925         by the ICU string code, and which were mixed into the icall
27926         rearranging.  Fixes bug 55969.
27927
27928         * string-icalls.h: 
27929         * string-icalls.c: Deleted the code that those icalls reference.
27930
27931 2004-04-01  Martin Baulig  <martin@ximian.com>
27932
27933         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
27934
27935         * class.c (mono_class_from_generic_parameter): Don't set 
27936         TYPE_ATTRIBUTE_INTERFACE.
27937         (my_mono_class_from_generic_parameter): Likewise.
27938
27939 2004-04-01  Martin Baulig  <martin@ximian.com>
27940
27941         * loader.c (find_method): Added an optional `MonoClass *ic'
27942         argument to search in a specific interface.
27943         (mono_get_method_constrained): New public function.
27944
27945 2004-04-01  Martin Baulig  <martin@ximian.com>
27946
27947         * reflection.c (mono_image_get_generic_field_token): Use the
27948         `handleref' cache here.
27949
27950 2004-04-01  Martin Baulig  <martin@ximian.com>
27951
27952         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
27953
27954         * reflection.c (create_generic_typespec): Use the `typespec' hash
27955         here, not the `typeref' one.    
27956
27957 2004-04-01  Martin Baulig  <martin@ximian.com>
27958
27959         * class.c (mono_class_inflate_generic_type): Moved the
27960         functionality into a new static inflate_generic_type() which
27961         returns NULL if it didn't do anything.  Only increment the
27962         `mono_stats.inflated_type_count' if we actually inflated
27963         something.
27964         (mono_class_get_full): Check the classes type to see whether we
27965         need to inflate it; also inflate MONO_TYPE_(M)VAR.
27966
27967 2004-04-01  Jackson Harper  <jackson@ximian.com>
27968
27969         * reflection.c: Set culture for assembly references.
27970         
27971 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
27972
27973         * reflection.[ch], icall.[ch], Fix support for pinning variables.
27974
27975 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27976
27977         * assembly.c:
27978         (do_mono_assembly_open): the critical section also covers
27979         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
27980
27981 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27982
27983         * threads.c:
27984         (mono_manage_threads): abort the background threads when finishing.
27985         Fixes bug #47232.
27986
27987 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27988
27989         * gc.c: only close the done_event handle if there was no timeout.
27990         C-ified comments.
27991
27992 2004-03-30  Martin Baulig  <martin@ximian.com>
27993
27994         * icall.c (icall_entries): It's called "System.Activator", not
27995         "System.Activation".    
27996
27997 2004-03-30  Martin Baulig  <martin@ximian.com>
27998
27999         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
28000         (mono_class_create_from_typespec): Likewise.
28001
28002 2004-03-30  Martin Baulig  <martin@ximian.com>
28003
28004         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
28005         `has_ctor_constraint' and `initialized'.
28006
28007 2004-03-30  Martin Baulig  <martin@ximian.com>
28008
28009         * reflection.c (encode_new_constraint): New static function to add
28010         the constructor constraint attribute to a type parameter.
28011         (encode_constraints): Call encode_new_constraint() if necessary.
28012
28013         * reflection.h
28014         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
28015
28016         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
28017         
28018 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
28019
28020         * reflection.c, icall.c: add support for pinning variables. 
28021
28022 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
28023
28024         * marshal.c (mono_marshal_get_managed_wrapper):
28025         init bool local with zero rather than null.
28026
28027 2004-03-29  Martin Baulig  <martin@ximian.com>
28028
28029         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
28030         the "official" behavior here.
28031         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
28032
28033 2004-03-29  Martin Baulig  <martin@ximian.com>
28034
28035         * icall.c: Reflect latest API changes.
28036
28037 2004-03-29  Martin Baulig  <martin@ximian.com>
28038
28039         * loader.c (mono_get_method_from_token): Also call
28040         mono_metadata_load_generic_params () for abstract and interface
28041         methods; replace the type arguments in the method signature with
28042         the ones which are loaded from the metadata.
28043
28044 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
28045
28046         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
28047         of the lock is not the current thread. MS.NET don't do it, in spite of
28048         what the documentation says. See bug #56157.
28049
28050 2004-03-28  Martin Baulig  <martin@ximian.com>
28051
28052         * class.c (mono_class_init): Don't call init_properties() and
28053         init_events() for generic instances; set `prop->parent' when
28054         inflating properties.
28055
28056         * reflection.c (mono_generic_inst_get_object): Call
28057         `mono_class_init (ginst->klass)'.
28058         (mono_type_get_object): Only create a MonoGenericInst if your
28059         generic type is a TypeBuilder.
28060         (do_mono_reflection_bind_generic_parameters): Only set
28061         `ginst->is_dynamic' if our generic type is a TypeBuilder.
28062
28063 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
28064
28065         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
28066         Fixes #56091.
28067
28068 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28069
28070         * icall.c: added Kill_internal icall.
28071         * process.[ch]: added Kill_internal icall.
28072
28073 2004-03-25  Martin Baulig  <martin@ximian.com>
28074
28075         * class.h (MonoStats): Added `generic_instance_count',
28076         `inflated_method_count', `inflated_type_count' and
28077         `generics_metadata_size'.       
28078
28079 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28080
28081         * reflection.c: no warnings now.
28082
28083 2004-03-25  Martin Baulig  <martin@ximian.com>
28084
28085         * class.c (mono_class_get_full): New public function; does a
28086         mono_class_get(), but also takes a `MonoGenericContext *'.
28087
28088         * loader.c (mono_field_from_memberref): Renamed to
28089         `field_from_memberref', made static and added `MonoGenericContext *'
28090         argument.
28091         (mono_field_from_token): Added `MonoGenericInst *' argument.
28092         (method_from_memberef): Likewise.
28093         (mono_get_method_from_token): Likewise.
28094         (mono_get_method_full): New public function; does a
28095         mono_get_method(), but also takes a `MonoGenericContext *'.
28096
28097         * verify.c (mono_method_verify): Get the method's generic context
28098         and pass it to mono_field_from_token(), mono_get_method_full() and
28099         mono_class_get_full().
28100
28101 2004-03-25  Martin Baulig  <martin@ximian.com>
28102
28103         * class.c (mono_class_inflate_generic_type): Take a
28104         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28105         `MonoGenericMethod *'.
28106
28107 2004-03-25  Martin Baulig  <martin@ximian.com>
28108
28109         * loader.h (MonoMethodInflated): Store the MonoGenericContext
28110         instead of the MonoGenericMethod here.
28111
28112 2004-03-25  Martin Baulig  <martin@ximian.com>
28113
28114         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28115         each time we create a new MonoGenericInst, we also create a new
28116         context which points back to us.
28117
28118         * class.c (inflate_method): Use `ginst->context' instead of
28119         creating a new context.
28120
28121         * loader.c (method_from_memberref): Use
28122         `klass->generic_inst->context' instead of creating a new context.
28123
28124 2004-03-25  Martin Baulig  <martin@ximian.com>
28125
28126         * class.h (MonoGenericContext): New struct.
28127         (MonoGenericMethod): Removed `generic_inst'.
28128
28129         * class.c (mono_class_inflate_generic_method): Take a
28130         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28131
28132 2004-03-25  Martin Baulig  <martin@ximian.com>
28133
28134         * loader.h (MonoMethodInflated): New typedef.
28135
28136         * metadata.h (MonoMethodSignature): Removed `gen_method', make
28137         `generic_param_count' consume just 30 bits, added `is_inflated'
28138         and `has_type_parameters' flags (one bit each).
28139
28140         * class.c (mono_class_inflate_generic_method): Create a
28141         MonoMethodInflated instead of a MonoMethodNormal and set
28142         `is_inflated' in the method signature.
28143
28144         * class.h (MonoGenericMethod): Removed `generic_method'.
28145
28146 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
28147
28148         * image.c: Make sure the name of a MonoImage is always an absolute path.
28149           This fixes bug #54415.
28150
28151 2004-03-24  Martin Baulig  <martin@ximian.com>
28152
28153         * class.c (mono_class_setup_vtable): If we're a generic instance,
28154         use our generic type's vtable size.
28155
28156 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
28157
28158         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28159         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
28160         problems.
28161
28162 2004-03-23  Martin Baulig  <martin@ximian.com>
28163
28164         * class.h (MonoDynamicGenericInst): Added `int count_events' and
28165         `MonoEvent *events'.
28166
28167         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28168         (typebuilder_icalls): Added "get_event_info"; calls
28169         mono_reflection_event_builder_get_event_info(). 
28170
28171         * reflection.c (mono_reflection_generic_inst_initialize): Added
28172         `MonoArray *events'.
28173         (mono_reflection_event_builder_get_event_info): New function.
28174
28175 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
28176
28177         * object.h: add mono_type_initialization_init
28178
28179         * object.c (mono_runtime_class_init): 
28180         implement class constructor synchronization rules
28181         to cope with threading issues.  
28182         add mono_type_initialization_init
28183
28184         * appdomain.c (mono_runtime_init): call 
28185         mono_type_initialization_init
28186
28187         * class.h: removing initializing field from MonoVTable
28188
28189 2004-03-23  Martin Baulig  <martin@ximian.com>
28190
28191         * class.c (my_mono_class_from_generic_parameter): Use
28192         `param->name' if it's not NULL. 
28193
28194 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
28195
28196         * class.c: do not insert non-virtual methods in the vtable.
28197         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
28198         that means the method is non-virtual. This never would have
28199         happened before.
28200
28201 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
28202
28203         * profiler.c: Added lock for accessing coverage_hash.
28204
28205 2004-03-22  Martin Baulig  <martin@ximian.com>
28206
28207         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
28208         `method->method->signature->generic_param_count != 0' to make it
28209         work for interface methods.
28210
28211 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28212
28213         * process.c: quote the string passed to the shell using g_shell_quote.
28214
28215 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28216
28217         * threads.c:
28218         (mono_threads_manage): don't remove the finalizer thread and self
28219         from the threads hash table so that mono_thread_manage can be called
28220         more than once.
28221
28222 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28223
28224         * process.c: quote the arguments when UseShellExecute is true. Fixes
28225         bug #55790.
28226
28227 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28228
28229         * threads.c: set mono_thread_detach as a cleanup routine for every
28230         thread. This way it's always executed upon thread termination, either
28231         aborted or finished normally. No more xsp hangs!
28232
28233 2004-03-17  Martin Baulig  <martin@ximian.com>
28234
28235         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
28236         `int count_nested' and a `MonoType **nested'.
28237
28238         * reflection.c (mono_reflection_bind_generic_parameters): Moved
28239         most of the functionality into a new static
28240         do_mono_reflection_bind_generic_parameters() and don't take a
28241         `MonoType *nested_in' argument any more.  Don't compute nested
28242         types here.
28243         (mono_reflection_generic_inst_get_nested_types): New public method
28244         to get nested types.
28245
28246         * class.c (mono_class_create_generic): Set `klass->nested_in' if
28247         we're a nested class.
28248
28249         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
28250         mono_reflection_generic_inst_get_nested_types() to compute the
28251         nested types.
28252
28253 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28254
28255         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
28256         descriptive error message under windows.
28257         
28258 2004-03-17  Martin Baulig  <martin@ximian.com>
28259
28260         * class.c (dup_type): Added `const MonoType *original' argument;
28261         copy the attrs from the original type.
28262
28263 2004-03-17  Martin Baulig  <martin@ximian.com>
28264
28265         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
28266         `m->generic_inst_cache' here.
28267
28268 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28269
28270         * exception.h exception.c: Add stack_overflow_exception.
28271
28272 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28273
28274         * threadpool.c:
28275         (overlapped_callback): call SetEvent *after* invoking the callback.
28276         No need to call CloseHandle.
28277
28278 2004-03-16  Martin Baulig  <martin@ximian.com>
28279
28280         * reflection.c (mono_image_get_fieldref_token): Take a
28281         `MonoReflectionField *' instead of a `MonoClassField *' and a
28282         `MonoClass *'; store the `MonoReflectionField *' in the hash.
28283
28284 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28285
28286         * appdomain.c: don't add the culture to the filename we're looking for
28287         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
28288
28289 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28290
28291         * locales.c: don't ignore symbols when doing case insensitive compares.
28292         Thanks Dick! Fixes bug #54046.
28293
28294         * threads.c: surround 'threads' usage with enter/leave in
28295         mono_thread_manage.
28296
28297 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
28298
28299         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
28300         implicitly marshalled as [Out]. Fixes #55450.
28301
28302         (mono_marshal_get_runtime_invoke): Zero out the result if there is
28303         an exception.
28304
28305 2004-03-16  Martin Baulig  <martin@ximian.com>
28306
28307         * class.c (mono_class_from_generic_parameter): Use the actual
28308         parameter name. 
28309
28310 2004-03-16  Martin Baulig  <martin@ximian.com>
28311
28312         * reflection.c (type_get_signature_size): New static function.
28313         Compues the size of the type in a method signature.
28314         (method_get_signature_size): New static function; calls
28315         type_get_signature_size() to compute the actual size of the
28316         method's signature.
28317         (method_encode_signature): Use method_get_signature_size() to get
28318         the signature's size rather than using `nparams * 10'.
28319
28320 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28321
28322         * file-io.h: define here WapiOverlapped on windows. I don't want the
28323         regular OVERLAPPED one.
28324
28325         * file-io.c:
28326         * threadpool.c: somehow, BindIoCompletionCallback is not found.
28327         Disabling AIO on windows.
28328
28329 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28330
28331         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
28332         bug #55385.
28333
28334 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28335
28336         * appdomain.c: upgraded corlib version.
28337
28338         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28339         and BeginWrite. Allow opening files for asynchrnous operations.
28340
28341         * file-io.h: new struct that maps FileStreamAsyncResult.
28342         * icall.c: added new icalls.
28343         * process.[ch]: support setting child process environment variables
28344         and use the SHELL or COMSPEC when UseShellExecute is true.
28345
28346         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28347         callback for async. IO is here and also BindHandle.
28348
28349         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28350         from here.
28351
28352 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
28353
28354         * reflection.c (create_custom_attr): Allow len == 0.
28355
28356         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28357         computation on big-endian machines.
28358
28359 2004-03-13  Martin Baulig  <martin@ximian.com>
28360
28361         * class.h (MonoGenericInst): Added `int count_ifaces'.
28362
28363         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28364         `ginst->count_ifaces' instead `klass->interface_count' since we
28365         may get called before the vtable is created.
28366
28367         * loader.c (mono_method_get_param_names): If we're a generic
28368         instance, return and don't initialize the class.
28369
28370         * reflection.c (mono_reflection_setup_generic_class): Don't call
28371         ensure_runtime_vtable().
28372         (mono_reflection_bind_generic_parameters): Set
28373         `ginst->count_ifaces'.
28374
28375 2004-03-11  Jackson Harper <jackson@ximian.com>
28376
28377         * icall.c:
28378         * unicode.c:
28379         * unicode.h: Remove unused System.Char icalls.
28380         
28381 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28382
28383         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28384         code when we P/Invoke the first library in Windows.Forms, instead
28385         of when we first open the assembly.
28386
28387         * assembly.c: Drop the lookup from here.
28388
28389 2004-03-10  Martin Baulig  <martin@ximian.com>
28390
28391         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28392         class for properties, fields and events.  Finally fixes #54945.
28393
28394 2004-03-10  Martin Baulig  <martin@ximian.com>
28395
28396         * metadata.c (mono_metadata_class_equal): New static function;
28397         checks whether two generic instances or two generic parameters are
28398         equal.
28399         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28400         compare classes.        
28401
28402 2004-03-10  Martin Baulig  <martin@ximian.com>
28403
28404         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28405
28406         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28407         argument and write it into the `reflection_info' field.
28408
28409         * icall.c
28410         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28411         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28412
28413 2004-03-09  Jackson Harper  <jackson@ximian.com>
28414
28415         * char-conversions.h: use 8 bits for numeric data its all we need
28416         * icall.c: numeric data is only 8 bits now.
28417
28418 2004-03-09  Martin Baulig  <martin@ximian.com>
28419
28420         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28421
28422         * class.c (init_properties, init_events): Initialize the new
28423         `parent' field.
28424
28425         * reflection.c (typebuilder_setup_properties): Likewise.
28426         (typebuilder_setup_events): Likewise.
28427
28428         * reflection.h (MonoEventInfo): Replaced `parent with
28429         `declaring_type' and `reflected_type'.
28430
28431         * icall.c (ves_icall_get_property_info): Distinguish between
28432         declaring and reflected type.
28433         (ves_icall_get_event_info): Likewise.
28434
28435 2004-03-09  Martin Baulig  <martin@ximian.com>
28436
28437         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28438         (ves_icall_Type_GetField): Correctly set field->klass.
28439
28440 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28441
28442         * loader.h: Fix warning.
28443
28444 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28445
28446         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28447         library routine if present.  Notice that it will still continue
28448         executing even if its missing, for those working on the Gtk#
28449         edition of Windows.Forms.
28450
28451         * assembly.c (do_mono_assembly_open): If loading the
28452         System.Windows.Forms call mono_loader_wini_init.
28453
28454 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28455
28456         * class.h: Added MonoRemoteClass struct.
28457         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28458         function for MonoStrings.
28459         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28460         Added internal call for getting the proxy type.
28461         * marshal.c: Get the type of transparent proxies from its remote_class.
28462         Added methods that generate the IL for type checks and casts:
28463         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28464         mono_marshal_get_proxy_cancast.
28465         * marshal.h: Declaration of the previous new methods.
28466         * object.c: Added new moethods for creating and updating MonoRemoteClass
28467         instances: mono_remote_class, mono_upgrade_remote_class, 
28468         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28469         * verify.c: FIx transparent_proxy_fields layout.
28470         * appdomain.c: Bump corlib version.
28471
28472 2004-03-04  Jackson Harper  <jackson@ximian.com>
28473
28474         * icall.c: Add icall to access char conversion tables.
28475         * char-conversions.h: Character conversion tables.
28476         * Makefile.am: Add char-conversions.h private header file.
28477         
28478 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28479
28480         * appdomain.c (unload_thread_main): Increase unloading timeout to
28481         10 sec as a temporary workaround for Nant problems.
28482
28483 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28484
28485         * gc.c: Add checks for GC_enable and GC_disable.
28486
28487         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28488         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28489         (bug #54988).
28490         
28491 2004-02-27  Martin Baulig  <martin@ximian.com>
28492
28493         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28494         `MonoReflectionType *' instead of a `MonoType *'.
28495
28496 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28497
28498         * gc.c (run_finalize): Avoid finalizing the object representing the
28499         finalizer thread.
28500         (finalizer_thread): Fix warning.
28501
28502 2004-02-25  Martin Baulig  <martin@ximian.com>
28503
28504         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28505         argument for nested types.
28506         (mono_class_create_generic): Added support for nested generictypes.
28507
28508         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28509         `GList *nested'.
28510
28511         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28512
28513         * reflection.c (method_encode_signature): Increase the minimum
28514         value of `size' from 10 to 11.
28515         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28516         and `MonoType **types' arguments instead of the `MonoArray
28517         *types'; added `MonoType *nested_in'.  Recursively instantiate
28518         nested classes. 
28519
28520 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28521
28522         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28523         stack_overflow_ex members which are used by exception handling.
28524
28525         * appdomain.c (mono_runtime_init): Initialize the new members.
28526
28527         * gc.c (mono_gc_enable): New helper function.
28528         * gc.c (mono_gc_disable): New helper function.
28529
28530 2004-02-23  Martin Baulig  <martin@ximian.com>
28531
28532         * icall.c: I must have been really stupid - make it actually work
28533         this time ;-)
28534
28535 2004-02-23  Martin Baulig  <martin@ximian.com>
28536
28537         * loader.c (method_from_memberref): Only inflate the method if
28538         it's in another klass.
28539
28540 2004-02-23  Martin Baulig  <martin@ximian.com>
28541
28542         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28543         (mono_class_init): If we're a generic instance and an interface,
28544         compute `class->interface_id'; also create `class->interfaces'
28545         here and inflate them.
28546
28547         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28548         `ginst->is_open'.
28549         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28550
28551         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28552
28553 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28554
28555         * reflection.c (method_encode_code): Improved the error message
28556         generated by the exception.
28557
28558 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28559
28560         * icall.c: Martin did not do what he said in the ChangeLog for
28561         2004-02-18, but put back the changes for properties and events.
28562         Commenting those changes out again and adding comment to bug #54518.
28563         
28564         * process.c: removed warning.
28565
28566 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28567
28568         * marshal.c (emit_struct_conv): Print an error message instead of
28569         asserting when a type does not have the StructLayout attribute.
28570
28571 2004-02-20  Martin Baulig  <martin@ximian.com>
28572
28573         * reflection.c (mono_type_get_object): Also use the cache for
28574         generic instances.
28575         (mono_reflection_bind_generic_parameters): Always compute
28576         `ginst->ifaces'.        
28577
28578 2004-02-20  Martin Baulig  <martin@ximian.com>
28579
28580         * class.h (MonoGenericMethod): Removed `klass'.
28581
28582         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28583         *klass' argument.
28584
28585 2004-02-20  Martin Baulig  <martin@ximian.com>
28586
28587         * reflection.c (method_encode_methodspec): Actually use the
28588         uninflated signature for the memberref.
28589
28590 2004-02-20  Martin Baulig  <martin@ximian.com>
28591
28592         * class.h (MonoGenericMethod): Removed `declaring'.
28593
28594         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28595         is NULL, compute it here.
28596
28597 2004-02-20  Martin Baulig  <martin@ximian.com>
28598
28599         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28600
28601         * metadata.c (mono_metadata_generic_inst_hash): New method.
28602         (mono_metadata_generic_inst_equal): New method.
28603
28604         * reflection.c (mono_reflection_bind_generic_parameters): Use the
28605         `klass->image->generic_inst_cache' cache to avoid creating
28606         duplicate MonoGenericInst's.
28607
28608         * class.c (mono_class_inflate_generic_type): Use the cache.
28609
28610 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
28611
28612         * object.c: fixed gc descriptor calculation for embedded valuetypes.
28613
28614 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28615
28616         * icall.c: added Socket.WSAIoctl icall.
28617
28618         * socket-io.[ch]: implemented
28619         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
28620
28621 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
28622
28623         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
28624
28625 2004-02-18  Urs C Muff  <umuff@quark.com>
28626
28627         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
28628         this work on PPC and other big-endian architectures.
28629
28630         * debug-mono-symfile.h: Prepended the names of all the `guint32'
28631         fields with an underscore to make sure they're only accessed by
28632         the read32() macro.
28633
28634 2004-02-18  Martin Baulig  <martin@ximian.com>
28635
28636         * icall.c: Put the klass->refclass changes back for methods and
28637         fields, but not for properties and events.  We're currently not
28638         distinguishing between DeclaringType and ReflectedType for
28639         properties and events, that's what caused the regressions.
28640
28641 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28642
28643         * object.c:
28644         (mono_async_result_new): the handle can be NULL.
28645
28646         * threadpool.c: Use an event instead of a semaphore, don't initialize
28647         it until needed. This saves quite a few semaphores from being created
28648         when using the threadpool.
28649
28650 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
28651
28652         * object.c (mono_string_is_interned_lookup): Fix interning of long
28653         strings. Fixes #54473.
28654
28655         * domain.c (ldstr_equal): Optimize if the two strings are equal.
28656
28657         * icall.c: Revert the klass->refclass changes since they introduce
28658         regressions (bug #54518).
28659
28660 2004-02-18  Martin Baulig  <martin@ximian.com>
28661
28662         * class.c (mono_class_init): If we're a generic instance and don't
28663         come from a TypeBuilder, inflate our members here.
28664         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
28665         (mono_class_create_generic): New public method.
28666         (mono_class_initialize_generic): Removed.
28667         (get_instantiation_name): Renamed to
28668         _mono_class_get_instantiation_name() and made it public.
28669
28670 2004-02-18  Martin Baulig  <martin@ximian.com>
28671
28672         * class.c (mono_class_inflate_generic_type): Clear the new
28673         instance's `nginst->klass' when inflating a generic instance.
28674         (mono_class_is_subclass_of): Added (basic) support for generic
28675         instances.
28676
28677 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
28678
28679         * appdomain.h, domain.c: use a MonoCodeManager instead of a
28680         MonoMempool to hold compiled native code.
28681
28682 2004-02-17  Martin Baulig  <martin@ximian.com>
28683
28684         * class.h (MonoDynamicGenericInst): Added `count_properties' and
28685         `properties'.
28686
28687         * reflection.c (mono_reflection_generic_inst_initialize): Added
28688         `MonoArray *properties' argument.
28689
28690         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
28691
28692 2004-02-17  Martin Baulig  <martin@ximian.com>
28693
28694         * icall.c (ves_icall_Type_GetFields): Renamed to
28695         ves_icall_Type_GetFields_internal() and added a
28696         `MonoReflectionType *rtype' argument; pass it to
28697         mono_field_get_object() to set the field's "reflected" type.
28698         (ves_icall_Type_GetConstructors): Likewise.
28699         (ves_icall_Type_GetEvents): Likewise.
28700         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
28701         argument; pass it to mono_method_get_object() to set the method's
28702         "reflected" type.       
28703
28704 2004-02-17  Martin Baulig  <martin@ximian.com>
28705
28706         * class.h (MonoDynamicGenericInst): New type.
28707         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
28708
28709         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
28710         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
28711         (ves_icall_MonoGenericInst_GetFields): New interncall.
28712
28713         * class.c (mono_class_from_generic): Don't call
28714         mono_class_initialize_generic() if this is a dynamic instance;
28715         ie. it's being created from a TypeBuilder.
28716         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
28717         `class->byval_arg.type'.
28718
28719         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
28720         to `inflate_method' and made static.
28721         (mono_reflection_inflate_field): Removed.
28722         (mono_reflection_generic_inst_initialize): New public method.
28723
28724         * reflection.h (MonoReflectionGenericInst): Removed `methods',
28725         `ctors' and `fields'; added `initialized'.
28726
28727 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
28728
28729         * debug-helpers.c (mono_method_full_name): Fix output for empty
28730         namespaces.
28731
28732 2004-02-12  Martin Baulig  <martin@ximian.com>
28733
28734         * class.h (MonoClassField): Added `MonoType *generic_type'.
28735
28736         * reflection.c (mono_image_get_fieldref_token): Added support for
28737         instantiated generic types.
28738         (field_encode_inflated_field): Removed.
28739         (mono_image_get_inflated_field_token): Removed.
28740         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
28741
28742         * reflection.h (MonoReflectionInflatedField): Removed.
28743
28744 2004-02-12  Martin Baulig  <martin@ximian.com>
28745
28746         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
28747         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
28748
28749         * reflection.c (mono_image_get_methodspec_token): Take a
28750         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
28751         (mono_image_create_token): Check whether we have a
28752         `method->signature->gen_method' and call
28753         mono_image_get_methodspec_token() if appropriate.
28754         (inflated_method_get_object): Removed.
28755         (mono_reflection_bind_generic_method_parameters): Return a
28756         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
28757         (mono_reflection_inflate_method_or_ctor): Likewise.
28758
28759         * reflection.h (MonoReflectionInflatedMethod): Removed.
28760
28761 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
28762
28763         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
28764         for custom valuetype marshalling.
28765
28766         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
28767
28768 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28769
28770         * icall.c: fixed WSAGetLastError_internal name.
28771
28772 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
28773
28774         * threads.c (mono_thread_attach): Allow this to be called multiple
28775         times for a thread.
28776         
28777         * threads.c (build_wait_tids): Do not wait for ourselves.
28778
28779         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
28780         appdomain list is empty.
28781
28782         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
28783         memory returned by mono_string_builder_to_utf16, since it points into
28784         managed memory. Thanks to Bernie Solomon for noticing this.
28785
28786         * icall.c: Add AppDomainSetup icalls.
28787
28788         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
28789
28790         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
28791         types.
28792
28793         * reflection.c (reflection_methodbuilder_to_mono_method): Save
28794         custom attributes to the method_aux struct. Also fix array indexes etc.
28795
28796         * loader.c (mono_method_get_param_names): Make dynamic case work again.
28797         
28798 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
28799
28800         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
28801         (both static and runtime) and reduce startup time.
28802
28803 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
28804
28805         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
28806         AsAny marshalling conversion instead of crashing.
28807
28808         * marshal.c: Fix warnings.
28809
28810 2004-02-09  Martin Baulig  <martin@ximian.com>
28811
28812         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
28813
28814         * reflection.h (MonoReflectionInflatedMethod): Removed the
28815         `declaring' field, it's now in the unmanaged MonoGenericMethod.
28816
28817         * reflection.c (method_encode_methodspec): Removed the `method'
28818         argument; we get it from `gmethod->declaring'.
28819         (inflated_method_get_object): Removed the `declaring' argument.
28820
28821 2004-02-09  Martin Baulig  <martin@ximian.com>
28822
28823         * class.h (MonoGenericMethod): New type.
28824         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
28825         `generic_method'.
28826
28827         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
28828         a `MonoGenericMethod *gen_method' one.
28829
28830         * class.c (mono_class_inflate_generic_type): Take an additional
28831         `MonoGenericMethod * argument.  This is only non-NULL if we're
28832         inflating types for a generic method.   
28833         (mono_class_inflate_generic_signature): Renamed to
28834         inflate_generic_signature() and made static; take a
28835         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28836         (inflate_generic_header): Take a `MonoGenericMethod *' argument
28837         instead of a `MonoGenericInst *' one.
28838         (mono_class_inflate_generic_method): Likewise.
28839
28840         * reflection.c (encode_generic_method_sig): Take a
28841         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28842         (method_encode_methodspec): Likewise.
28843         (inflated_method_get_object): Likewise. 
28844
28845         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
28846         field with a `MonoGenericMethod *gmethod' one.  
28847
28848 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
28849
28850         * class.h (mono_class_has_parent): add parens to expansion
28851         so you can ! this.
28852
28853 2004-02-08  Martin Baulig  <martin@ximian.com>
28854
28855         * image.h (MonoImage): Removed `generics_cache'.
28856
28857         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
28858         instead of a `MonoType *' argument; removed the `inflate_methods'
28859         argument.  Don't inflate methods here.
28860
28861         * loader.c (find_method): If it's a generic instance, call
28862         mono_class_init() on the `sclass->generic_inst->generic_type'.
28863
28864         * metadata.c (mono_type_size): Make this work on uninitialized
28865         generic instances; call it on the `ginst->generic_type's class.
28866
28867         * reflection.c (mono_reflection_bind_generic_parameters): Call
28868         mono_class_from_generic() to create the `ginst->klass'.
28869
28870 2004-02-08  Martin Baulig  <martin@ximian.com>
28871
28872         * class.h (MonoClass): Changed type of `generic_inst' from
28873         `MonoType *' to `MonoGenericInst *'.
28874
28875 2004-02-08  Martin Baulig  <martin@ximian.com>
28876
28877         * icall.c (ves_icall_Type_BindGenericParameters): Just call
28878         mono_type_get_object(), this is now creating a `MonoGenericInst'
28879         for MONO_TYPE_GENERICINST.
28880         (ves_icall_MonoGenericInst_GetParentType): Likewise.
28881         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
28882
28883         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
28884         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
28885         (inflated_method_get_object): Added `MonoClass *refclass' argument.
28886         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
28887         and reflected type.
28888
28889         * reflection.h (MonoReflectionInflatedMethod): Removed
28890         `declaring_type' and `reflected_type'.
28891
28892 2004-02-08  Martin Baulig  <martin@ximian.com>
28893
28894         * class.h (MonoGenericInst): Added `MonoType *parent' and
28895         `MonoType **ifaces'.
28896
28897         * reflection.h (MonoReflectionGenericInst): Removed `klass',
28898         `parent' and `interfaces'.
28899
28900         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28901         `MonoType *' argument and return a `MonoType *'.
28902
28903         * icall.c
28904         (ves_icall_MonoGenericInst_GetParentType): New interncall.
28905         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
28906
28907 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28908
28909         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
28910         valuetype marshalling.
28911
28912 2004-02-06  Martin Baulig  <martin@ximian.com>
28913
28914         * class.c
28915         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
28916         (my_mono_class_from_generic_parameter): Likewise.
28917
28918 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28919
28920         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
28921         contents of the symbol files lazily.
28922
28923         * object.h (MonoThread): Add 'name' and 'name_len' fields.
28924
28925         * threads.h threads.c icall.c: New icalls for getting and setting the
28926         threads name.
28927
28928 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
28929
28930         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
28931         Raise an exception when the domain is not found.
28932
28933 2004-02-03  Martin Baulig  <martin@ximian.com>
28934
28935         * reflection.c (mono_image_get_methodspec_token): Use the
28936         uninflated signature; fixes gen-33.
28937
28938 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
28939
28940         * gc.c threads.c: Make the finalizer thread a normal managed thread so
28941         the finalizer code can use thread functionality.
28942
28943         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
28944         the finalizer thread.
28945
28946         * threads.c: Make some functions more robust.
28947
28948         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
28949
28950         * metadata.h: Add new marshalling conventions.
28951
28952         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
28953         stringbuilder marshalling. Fixes #53700.
28954
28955         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
28956
28957         * reflection.c (mono_image_get_type_info): Save declarative security
28958         info.
28959
28960         * reflection.c (mono_image_get_field_info): Handle uninitialized 
28961         unmanaged fields as well.
28962
28963         * appdomain.c: Bump corlib version.
28964
28965 2004-02-01  Martin Baulig  <martin@ximian.com>
28966
28967         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
28968         method type arguments.  
28969
28970 2004-01-30  Duncan Mak  <duncan@ximian.com>
28971
28972         * marshal.h: Add prototype for
28973         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
28974         and
28975         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
28976         fix the build.
28977
28978 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
28979
28980         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
28981         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
28982
28983 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28984
28985         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28986         custom marshalling of valuetypes.
28987
28988         * marshal.c: Fix some warnings.
28989
28990 2004-01-29  Martin Baulig  <martin@ximian.com>
28991
28992         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
28993         for generic method parameters.
28994
28995         * reflection.c (method_encode_methodspec): Write the uninflated
28996         signature into the methodspec table.
28997         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
28998         is always the uninflated method.
28999         (reflection_methodbuilder_to_mono_method): Copy the generic
29000         parameters from the MethodBuilder into `header->gen_params'.
29001
29002 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29003
29004         * class.c (mono_class_from_generic_parameter): Fix warning.
29005
29006 2004-01-27  Martin Baulig  <martin@ximian.com>
29007
29008         * class.c (mono_class_from_generic_parameter): Don't create
29009         `klass->methods' here.  
29010
29011 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
29012
29013         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
29014         extension since it does not work with libraries named lib<FOO>.dll.so.
29015
29016 2004-01-25  Martin Baulig  <martin@ximian.com>
29017
29018         * class.c (mono_class_inflate_generic_type): Added support for
29019         MONO_TYPE_GENERICINST.
29020
29021         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
29022         inflate methods on open constructed types.      
29023
29024 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29025
29026         * object.c: fire ProcessExit event in the root AppDomain after running
29027         Main. Fixes bug #53299.
29028
29029 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
29030
29031         * socket-io.c: include the new socket-wrappers.h header.
29032         Use the wrappers instead of the unix socket functions to make the code
29033         more clear.
29034
29035 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
29036
29037         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
29038
29039         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29040         Fixes #22532.
29041
29042 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
29043
29044         * reflection.c (mono_image_create_pefile): Handle the case when the
29045         entry point is not a MethodBuilder.
29046
29047         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29048         field to ReflectionMethod since it is not allways a builder.
29049
29050         * reflection.c (type_get_fully_qualified_name): New helper function to
29051         return the fully qualified name of a type.
29052
29053         * reflection.c (encode_marshal_blob): Always emit the fully qualified
29054         type name for custom marshallers.
29055
29056         * reflection.c (mono_marshal_spec_from_builder): Ditto.
29057
29058         * class.c (mono_class_setup_vtable): If a parent class already 
29059         implements an interface, use the implementing methods from that class.
29060         Fixes #53148.
29061
29062 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29063
29064         * threadpool.c: just return instead of ExitThread to allow for thread
29065         clean up earlier.
29066
29067 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
29068
29069         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
29070         when closing resource modules.
29071
29072         * reflection.c (mono_image_create_pefile): Handle the case when the
29073         entry point is not a MethodBuilder.
29074
29075         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29076         field to ReflectionMethod since it is not allways a builder.
29077
29078 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
29079
29080         * marshal.c (mono_marshal_get_managed_wrapper): 
29081         mono_marshal_alloc takes native int so CONV_I
29082         the arg for 64bits.
29083
29084 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
29085
29086         * reflection.c (fixup_cattrs): New function to fixup the methoddef
29087         tokens in the cattr table. Fixes #53108.
29088
29089 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29090
29091         * loader.c: don't trim ".dll" before looking up in the config file.
29092         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29093
29094 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
29095
29096         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
29097         Return the module which contains the resource as well.
29098         (ves_icall_System_Reflection_Module_Close): New icall.
29099
29100         * appdomain.c: Bump corlib version number.
29101
29102         * image.c (mono_image_addref): New public function.
29103
29104         * assembly.c: Call mono_image_addref.
29105
29106         * reflection.c (mono_module_get_object): Increase reference count of 
29107         the image.
29108
29109         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29110         Fixes #22532.
29111
29112         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29113         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
29114         proper exceptions on DllImport problems.
29115
29116 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29117
29118         * class.c, metadata.c: eliminate CSIZE macro.
29119
29120 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
29121
29122         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29123         * object.h: Added async_callback field in MonoAsyncResult.
29124         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29125         * verify.c: Added async_callback in MonoAsyncResult layout.
29126
29127 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
29128
29129         * reflection.c (mono_reflection_get_custom_attrs): Add support
29130         for Modules.
29131
29132 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29133
29134         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
29135         marshalling.
29136         (mono_marshal_method_from_wrapper): Add null pointer check.
29137
29138 2004-01-16  Martin Baulig  <martin@ximian.com>
29139
29140         * debug-mono-symfile.h: Set version number to 36 and reflect
29141         latest symbol writer changes.
29142
29143 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29144
29145         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29146         multi-dimensional arrays.
29147         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29148         (mono_class_from_mono_type): Use bounded_array_class_get.
29149         
29150         * class.c (mono_bounded_array_class_get): New function which takes
29151         a 'bounded' bool argument to distinguish vectors from one dimensional
29152         arrays.
29153
29154         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
29155         bounded_array_class_get if the array has bounds.
29156
29157         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29158         Search modules loaded using AssemblyBuilder:AddModule as well.
29159
29160 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29161
29162         * appdomain.c: increased corlib version.
29163         * filewatcher.c: removed g_print.
29164         * icall.c:
29165         (get_property_info): only allocate what is actually requested.
29166         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29167
29168 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29169
29170         * Makefile.am: added filewatcher.[ch]
29171         * filewatcher.[ch]: FileSystemWatcher runtime support.
29172         * icall.c: added new FSW icalls.
29173
29174 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29175
29176         * string-icalls.c: fix stringbuilder regression as suggested by
29177         Iain McCoy <iain@mccoy.id.au>.
29178
29179 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
29180
29181         * process.c (process_read_stringtable_block): Recognize '007f' as
29182         a language neutral stringtable block.
29183
29184 2004-01-12  Patrik Torstensson
29185
29186         * object.h (MonoStringBuilder) : Changed layout to support our
29187         new stringbuilder class.
29188         * marshal.c: Change marshalling to support the new layout of 
29189         string builder.
29190         * appdomain.c: increased version number because new layout of
29191         string builder.
29192
29193 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
29194
29195         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
29196         assembly name as an string instead of an AssemblyName, since it is
29197         easier to extract info from it.
29198
29199         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
29200         the culture subdirectories too. Fixes #52231.
29201
29202 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29203
29204         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
29205         It takes 2 new parameters with an optional name for the method to look
29206         for and case ignoring info.
29207
29208         * threadpool.c: removed unused variable.
29209
29210 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29211
29212         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
29213         It takes 2 new parameters with an optional name for the property to look
29214         for and case ignoring info.
29215         Fixes bug #52753.
29216
29217 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
29218
29219         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
29220         Fix #52451.
29221
29222 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29223
29224         * appdomain.c:
29225         * assembly.c: escape the uri before passing it to g_filename_from_uri.
29226         Fixes bug #52630.
29227
29228 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
29229
29230         * reflection.c: Add support for more than one unmanaged resource.
29231
29232         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
29233         in field->def_value, as done in all other cases.
29234
29235         * reflection.c (mono_reflection_get_custom_attrs): Add support for
29236         TypeBuilders.
29237
29238         * reflection.c (mono_reflection_create_runtime_class): Remove 
29239         errorneous assignment to klass->element_class, since it is already
29240         done in mono_reflection_setup_internal_class.
29241
29242 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29243
29244         * gc.c: added missing LeaveCriticalSection.
29245         * icall.c: indented a couple of lines.
29246         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
29247         if we call EndInvoke inside a callback. Fixes bug #52601.
29248
29249 2004-01-07  Martin Baulig  <martin@ximian.com>
29250
29251         * mono-debug-debugger.h
29252         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
29253
29254 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
29255
29256         * appdomain.c: Use messages in NotImplementedException.
29257
29258         * exception.c (mono_get_exception_not_implemented): Now this takes
29259         a message argument.
29260
29261         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
29262         exception instead of g_asserting an aborting when something is not
29263         implemented.
29264
29265         Add some inline docs.
29266
29267 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
29268
29269         * reflection.h: Update after changes to object layout.
29270
29271         * reflection.c: Implement saving of unmanaged aka win32 resources.
29272
29273         * appdomain.c: Bump version number.
29274
29275         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
29276         Handle missing domains gracefully.
29277
29278 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
29279
29280         * file-io.c : On Windows, there are much more invalid_path_chars.
29281
29282 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
29283
29284         * class.h, object.c: prepare for GetType () speedup.
29285
29286 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
29287
29288         * profiler.c: workaround for --profile null reference exception on
29289           cygwin. Patch by Patrik Torstensson.
29290
29291 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
29292
29293         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
29294         make work for unaligned access.
29295
29296 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
29297
29298         * class.c: small cleanup (class->fields [i] -> field).
29299         * image.c: check address of metadata is valid.
29300
29301 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
29302
29303         * assembly.h assembly.c (mono_assembly_loaded): New public function to
29304         search the list of loaded assemblies.
29305
29306         * reflection.c (mono_reflection_type_from_name): Use 
29307         mono_assembly_loaded instead of mono_image_loaded.
29308
29309         * reflection.c: Fix warnings.
29310
29311 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
29312
29313         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
29314         is dynamic. This is needed since an assembly can contain both dynamic and
29315         non-dynamic images.
29316
29317         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
29318         assembly->dynamic.
29319
29320         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
29321
29322         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
29323         to store modules loaded using AddModule.
29324
29325         * reflection.c (mono_image_fill_file_table): Generalize this so it works
29326         on Modules.
29327
29328         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
29329
29330         * reflection.c (mono_image_fill_export_table_from_module): New function to
29331         fill out the EXPORTEDTYPES table from a module.
29332
29333         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
29334         into a separate function. Also handle loaded non-dynamic modules.
29335
29336         * reflection.c (mono_image_basic_init): Fix memory allocation.
29337
29338         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29339
29340         * assembly.c (mono_assembly_load_references): Make this public.
29341
29342 2003-12-19  Martin Baulig  <martin@ximian.com>
29343
29344         * class.c (mono_class_initialize_generic): Made this static, take
29345         a `MonoGenericInst *' instead of a `MonoClass *'.
29346         (mono_class_from_generic): Call mono_class_initialize_generic()
29347         unless we're already initialized or being called from
29348         do_mono_metadata_parse_generic_inst().
29349
29350         * class.h (MonoGenericInst): Added `initialized' and
29351         `init_pending' flags.
29352
29353         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29354         `mono_class_init (gklass)' or mono_class_initialize_generic()
29355         here; set `generic_inst->init_pending' while parsing the
29356         `type_argv'.
29357
29358 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
29359
29360         * locales.c: include string.h for memxxx prototypes
29361
29362 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
29363
29364         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29365         constructor when accessing literal fields.
29366
29367 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
29368
29369         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29370
29371         * reflection.c (assembly_add_resource_manifest): New function to fill
29372         the MANIFESTRESOURCE table.
29373
29374         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29375
29376         * reflection.h: Update to changes in class layout.
29377
29378         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29379         Reenable call to mono_runtime_is_shutting_down ().
29380
29381         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29382         determine if the runtime is shutting down.
29383
29384 2003-12-16  Jackson Harper <jackson@ximian.com>
29385
29386         * icall.c: comment out call to mono_runtime_is_shutting_down to
29387         fix build.
29388         
29389 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29390
29391         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29392         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29393
29394 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29395
29396         * reflection.c: move definition of swap_with_size
29397         to before its first call
29398
29399 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29400
29401         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29402
29403         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29404         icall.
29405
29406         * object.c: Fix warnings.
29407
29408         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29409         members if FlattenHierarchy is set.
29410
29411         * reflection.c (mono_image_add_decl_security): New function to emit
29412         declarative security.
29413
29414         * reflection.h reflection.c: Add support for declarative security.
29415
29416         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29417         
29418 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29419
29420         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29421         
29422         * appdomain.c verify.c: Moved corlib version checking into its own
29423         function in appdomain.c since it needs to create vtables etc.
29424
29425 2003-12-13  Patrik Torstensson <p@rxc.se>
29426
29427         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29428         instead of unwrapped server.
29429
29430 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29431
29432         * verify.c (check_corlib): Fix field index.
29433
29434 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29435
29436         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29437         GetGacPath icall.
29438
29439 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29440
29441         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29442         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29443         cope with sizeof(size_t) != sizeof(guint32).
29444
29445 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29446
29447         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29448         in case of failure.
29449
29450 2003-12-10  Mark Crichton <crichton@gimp.org>
29451
29452         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29453         in managed code.
29454
29455         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29456
29457 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29458
29459         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29460         marked as deleted.
29461
29462 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29463
29464         * verify.c (check_corlib): Handle the case when the version field is 
29465         initialized by a static constructor.
29466
29467 2003-12-08  Patrik Torstensson  <p@rxc.se>
29468
29469     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29470
29471 2003-12-08  Martin Baulig  <martin@ximian.com>
29472
29473         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29474         a MonoReflectionGenericParameter, also take the parameter index
29475         and name as arguments.
29476         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29477         (ves_icall_MonoGenericParam_initialize): New interncall.
29478         (ves_icall_Type_make_byref_type): New interncall.
29479
29480         * reflection.h (MonoReflectionGenericParam): Derive from
29481         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29482         `index' fields.
29483
29484         * reflection.c (mono_reflection_define_generic_parameter): Create
29485         and return a new MonoReflectionGenericParam; don't initialize the
29486         constraints here.
29487         (mono_reflection_initialize_generic_parameter): New public method;
29488         initializes the constraints and creates the `param->pklass'.
29489
29490 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29491
29492         * reflection.h reflection.c: Use the new fields 'num_types', 
29493         'num_fields' and 'num_methods' to track the number of types etc.
29494
29495         * verify.c (check_corlib): Check corlib version number.
29496
29497 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29498
29499         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29500         function works on all methods.
29501
29502 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29503
29504         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29505         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29506         the custom_type_info flag of the transparent proxy.
29507         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29508         objects that supports IRemotingTypeInfo.
29509         * object.h: Added custom_type_info field in transparent proxy.
29510
29511 2003-12-06  Martin Baulig  <martin@ximian.com>
29512
29513         * class.c (mono_class_create_from_generic): Removed.
29514         (mono_class_from_generic): Check `ginst->klass' before doing
29515         anything else.  This is important to fully support "recursive"
29516         generic types.
29517
29518         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29519         empty `generic_inst->klass' before doing anything else.
29520
29521 2003-12-06  Dick Porter  <dick@ximian.com>
29522
29523         * verify.c: 
29524         * object.h:
29525         * icall.c:
29526         * locales.c: Use C structs to access class fields.  Don't do a
29527         conversion between MonoString and UChar because both are
29528         platform-endian UTF-16.  Compare now takes startindex and count
29529         parameters.  Add a char overload for IndexOf.  Speed up the
29530         invariant string IndexOf.
29531
29532 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29533
29534         * Makefile.am (monosn_LDADD): Fix parallel build.
29535
29536 2003-12-04  Martin Baulig  <martin@ximian.com>
29537
29538         * icall.c
29539         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29540         (ves_icall_Type_make_array_type): New interncall.       
29541
29542 2003-12-04  Martin Baulig  <martin@ximian.com>
29543
29544         * locales.c: also change it in the !HAVE_ICU case.
29545
29546 2003-12-04  Dick Porter  <dick@ximian.com>
29547
29548         * icall.c:
29549         * locales.c: construct_compareinfo is now in CompareInfo, not
29550         CultureInfo.
29551
29552 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29553
29554         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29555         image->files array.
29556
29557         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29558         table as well.
29559
29560         * assembly.c (mono_assembly_load_references): Only load references
29561         once.
29562
29563         * class.c (mono_class_from_name): Avoid linear search of the 
29564         EXPORTEDTYPE table.
29565
29566         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29567
29568 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29569
29570         * image.h (MonoImage): Add 'field_cache' field.
29571
29572         * loader.c (mono_field_from_token): Cache field lookups.
29573         
29574         * reflection.c (mono_module_get_object): Fix name property.
29575
29576         * icall.c (ves_icall_get_enum_info): Update after changes to 
29577         mono_metadata_get_constant_index ().
29578
29579         * icall.c: Get rid of get_type_info icall, use a separate icall for
29580         each type property to avoid needless memory allocations. Fixes #51514.
29581
29582         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29583         to avoid needless binary searches.
29584
29585         * class.c (class_compute_field_layout): Move the initialization of
29586         field->def_value to mono_class_vtable ().
29587
29588         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29589         non-corlib types.
29590
29591         * object.c (mono_object_allocate): Make it inline.
29592
29593         * object.c (mono_object_allocate_spec): Make it inline.
29594         
29595 2003-12-02  Dick Porter  <dick@ximian.com>
29596
29597         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29598         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29599
29600 2003-12-01  Dick Porter  <dick@ximian.com>
29601
29602         * threads.c: Fix signature and call in CreateMutex and
29603         CreateEvent.
29604
29605 2003-12-01  Dick Porter  <dick@ximian.com>
29606
29607         * icall.c: 
29608         * locales.c: Implement string compares and searching
29609
29610         * object.h: Add extra Thread field
29611
29612 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
29613
29614         * reflection.c (fixup_method): Add support for MonoCMethod.
29615
29616 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
29617
29618         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
29619
29620         * reflection.c (assembly_name_to_aname): Allow extra characters in
29621         assembly names. Fixes #51468.
29622
29623 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
29624
29625         * exception.c (mono_exception_from_name_domain): New helper function.
29626
29627         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
29628         exception object in the correct domain.
29629
29630         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
29631         formatting + make a copy a the input data.
29632
29633         * loader.c (mono_get_method_from_token): Methods which contain
29634         native code do not have entries in the ImplMap.
29635
29636         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
29637         Thanks to Gonzalo for spotting this.
29638         
29639         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
29640         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
29641
29642         * assembly.h (mono_assembly_load_from): Split the second part of 
29643         assembly loading into a new public function.
29644
29645         * exception.h (mono_get_exception_bad_image_format): New function.
29646
29647 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
29648
29649         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29650         Enumerate all modules inside a dynamic assembly. Fixes #51293.
29651         
29652         * icall.c: Add new icall for creating dynamic methods.
29653
29654         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
29655
29656         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
29657
29658         * reflection.c (mono_reflection_create_dynamic_method): New icall to
29659         create a dynamic method.
29660
29661         * reflection.c (resolve_object): New helper function.
29662
29663         * reflection.c: Generalize ReflectionMethodBuilder and the functions
29664         which manipulate it so they can also work on dynamic methods.
29665
29666         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
29667         creating the MonoReflectionMethodAux structure if it is not needed.
29668         
29669         * reflection.h verify.c: Update after changes to object layout.
29670
29671         * reflection.c (method_builder_encode_signature): Fix compilation on
29672         gcc 2.95.x.
29673
29674 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
29675
29676         * appdomain.h: Added support for context static fields. Added static_data
29677           field to MonoAppContext and renamed thread_static_fields to a more
29678           generic special_static_fields in MonoAppDomain, since it can now contain
29679           context static fields.
29680         * domain.c: Updated hashtable name.
29681         * object.c: Replaced field_is_thread_static() for a more generic
29682           field_is_special_static() which also checks for context static attribute.
29683           In mono_class_vtable(), added support for static context fields.
29684         * threads.c: Changed methods that manage thread static fields to more
29685           generic methods so they can be reused both for thread and context static
29686           data.
29687         * threads.h: Declared some new methods.
29688
29689 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
29690
29691         * reflection.h: Update after changes to the managed types.
29692
29693         * reflection.c (encode_custom_modifiers): New helper function.
29694
29695         * reflection.c (method_encode_signature): Emit custom modifiers.
29696
29697         * reflection.c (field_encode_signature): Emit custom modifiers.
29698
29699 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
29700
29701         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
29702
29703         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
29704         implementation.
29705
29706         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
29707         icall.
29708
29709         * object.c (mono_field_get_value_object): New function.
29710
29711         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
29712         specific.
29713
29714 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
29715
29716         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
29717         return a preallocated out-of-memory exception instance.
29718
29719         * object.c (out_of_memory): Use the new function.
29720
29721         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
29722         flag is before the custom modifiers. Fixes #49802.
29723
29724 2003-11-16  Martin Baulig  <martin@ximian.com>
29725
29726         * class.c (mono_class_is_open_constructed_type): Implemented the
29727         MONO_TYPE_GENERICINST case.
29728
29729 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
29730
29731         * assembly.c (mono_assembly_fill_assembly_name): New function to
29732         fill out the MonoAssemblyName structure.
29733         (mono_assembly_open): Use the new function.
29734
29735         * icall.c (fill_reflection_assembly_name): New helper function.
29736
29737         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
29738         new function.
29739
29740         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
29741
29742 2003-11-15  Martin Baulig  <martin@ximian.com>
29743
29744         * class.c (mono_class_is_open_constructed_type): New public
29745         function; checks whether a type is an open constructed type,
29746         ie. whether it still contains type parameters.
29747         (mono_class_inflate_generic_type): If we're a type parameter and
29748         the inflated type is also a MONO_TYPE_(M)VAR, return the original
29749         type.
29750
29751         * class.h (MonoGenericInst): Added `guint32 is_open'.
29752
29753         * loader.c (method_from_methodspec): Check whether we're an open
29754         or closed constructed type and set `ginst->is_open'.
29755
29756         * reflection.c (mono_reflection_bind_generic_parameters): Check
29757         whether we're an open or closed constructed type and set
29758         `ginst->is_open'.
29759         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
29760         from open constructed types.
29761
29762 2003-11-15  Martin Baulig  <martin@ximian.com>
29763
29764         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29765         a generic instance (instead of a generic type declaration) with
29766         unbound generic parameters, bind them to our actual types.
29767
29768 2003-11-14  Martin Baulig  <martin@ximian.com>
29769
29770         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
29771
29772         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29773         an interface type, populate `res->interfaces' with instantiated
29774         versions of all the interfaces we inherit.
29775
29776 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
29777
29778         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
29779         when MONO_PATH is set but doesn't contain the install dir.
29780
29781 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29782
29783         * icall.c:
29784         (ves_icall_Type_GetInterfaces): don't return an interface twice when
29785         it's also implemented in base classes. Fixes bug #50927.
29786
29787 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
29788
29789         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
29790         if this method is called from a finalizer. Fixes #50913.
29791
29792 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
29793
29794         * threads.c: Implement VolatileRead/VolatileWrite
29795
29796         * icall.c: Add new icalls for VolatileRead/VolatileWrite
29797
29798 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29799
29800         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
29801         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
29802         2.95.3.
29803
29804         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
29805         from Peter Ross (pro@missioncriticalit.com).
29806         
29807 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
29808
29809         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
29810
29811 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29812
29813         * assembly.c (mono_assembly_load_references): Disable check because it
29814         triggers on older corlibs which lots of people have.
29815
29816 2003-11-12  Jackson Harper  <jackson@ximian.com>
29817
29818         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
29819         load corlib.dll if mscorlib.dll is not found.
29820         * assembly.h: Remove corlib name define.
29821         * class.c:
29822         * domain.c:
29823         * image.c: Change corlib name to mscorlib.
29824         
29825 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29826
29827         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
29828
29829 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
29830
29831         * appdomain.h: Added loader_optimization here to sync with the C#
29832         code, and add disallow_binding_redirects field.
29833
29834 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29835
29836         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
29837
29838         * reflection.c (mono_image_build_metadata): Fix crash on modules
29839         with no types.
29840
29841         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
29842
29843         * icall.c (ves_icall_get_method_info): Return callingConvention as
29844         well.
29845
29846         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
29847         namespaces from the EXPORTEDTYPE table as well.
29848
29849         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
29850         from all modules inside the assembly.
29851         
29852 2003-11-11  Martin Baulig  <martin@ximian.com>
29853
29854         * reflection.c (mono_reflection_bind_generic_parameters): Make
29855         this work for interfaces.
29856
29857 2003-11-11  Martin Baulig  <martin@ximian.com>
29858
29859         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
29860
29861 2003-11-11  Martin Baulig  <martin@ximian.com>
29862
29863         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
29864         "MonoInflatedMethod" and "MonoInflatedCtor".
29865
29866 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29867
29868         * reflection.c (resolution_scope_from_image): Use the assembly table
29869         from the manifest module, since other modules don't have it.
29870
29871         * debug-helpers.c (mono_type_full_name): New helper function.
29872
29873         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
29874
29875         * image.c (mono_image_load_file_for_image): New public function which
29876         is a replacement for the load_file_for_image in class.c.
29877
29878         * assembly.c (mono_assembly_load_module): A wrapper for the function
29879         above which does assembly association and reference loading too.
29880
29881         * class.c (mono_class_from_name): Call mono_assembly_load_module.
29882
29883 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29884
29885         * appdomain.c: not all of the attributes for the full assembly name
29886         are required and the order doesn't matter. Fixes bug #50787.
29887
29888 2003-11-10  Dick Porter  <dick@ximian.com>
29889
29890         * locales.c: Use platform-endian UTF16
29891
29892 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29893
29894         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29895         
29896 2003-11-10  Martin Baulig  <martin@ximian.com>
29897
29898         * metadata.c
29899         (mono_metadata_load_generic_params): Make this actually work.
29900
29901         * reflection.c (mono_reflection_bind_generic_parameters): If our
29902         parent is a generic instance, pass all the `types' to it, no
29903         matter whether it has the same number of type parameters or not.
29904
29905 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29906
29907         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29908
29909         * assembly.c (mono_assembly_load_references): Move the image<->assembly
29910         assignment code to this function so it gets called recursively for all
29911         modules.
29912
29913         * image.c (load_modules): Remove the assembly assignment since it is
29914         now done by mono_assembly_load_references.
29915         
29916         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29917         Add 'module' argument.
29918         (mono_module_get_types): New helper function.
29919         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
29920
29921 2003-11-08  Martin Baulig  <martin@ximian.com>
29922
29923         * class.c (mono_class_inflate_generic_method): Interface method
29924         don't have a header.
29925
29926         * reflection.c (mono_image_get_methodspec_token): Take an
29927         additional `MonoGenericInst *' argument instead of reading it from
29928         the header; this is necessary to support interfaces.
29929         (mono_image_create_token): Pass the `MonoGenericInst *' from the
29930         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
29931         (inflated_method_get_object): Take an additional `MonoGenericInst *'
29932         argument.
29933
29934         * reflection.h (MonoReflectionInflatedMethod): Added
29935         `MonoGenericInst *ginst'.
29936
29937 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
29938
29939         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
29940
29941 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
29942
29943         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
29944
29945 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
29946
29947         * reflection.c 
29948         (reflection_methodbuilder_from_method_builder):
29949         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
29950         initialize a ReflectionMethodBuilder structure.
29951         (mono_image_get_methodbuilder_token):
29952         (mono_image_get_ctorbuilder_token): New functions to emit memberref
29953         tokens which point to types in another module inside the same assembly.
29954
29955         * reflection.c: Use the new helper functions.
29956         
29957         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
29958
29959         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
29960         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
29961
29962         * reflection.c (resolution_scope_from_image): Emit a moduleref if
29963         neccesary.
29964
29965         * reflection.c (mono_image_build_metadata): Emit metadata only for the
29966         current module. Emit the manifest only for the main module.
29967
29968         * reflection.c (mono_image_create_token): Add assertion when a 
29969         memberref needs to be created.
29970
29971         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
29972
29973         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
29974         larger buffer for the custom attribute blob. Fixes #50637.
29975         
29976 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29977
29978         * threadpool.c: notify listener on async processing handles after
29979         invoking the async callback. Thanks to Zoltan.
29980
29981 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29982
29983         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
29984         avoid code duplication.
29985
29986         * reflection.h (MonoDynamicImage): New type which is currently unused,
29987         but will be used through the ref.emit code in place of 
29988         MonoDynamicAssembly.
29989
29990         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29991         object layout.
29992
29993         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
29994         a MonoDynamicImage instead of just a MonoImage.
29995         
29996         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
29997         icalls to ModuleBuilder but keep their semantics, so they will work
29998         with moduleb->assemblyb. This will change later.
29999         
30000 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30001
30002         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30003         object layout.
30004
30005         * reflection.c (mono_image_build_metadata): Avoid creation of a default
30006         main module, since it is now done by the managed code.
30007
30008 2003-11-03  Martin Baulig  <martin@ximian.com>
30009
30010         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
30011         `ginst->klass' here.
30012         (method_encode_methodspec): Don't use the `ginst->generic_method's
30013         klass if it's a generic instance, use `ginst->klass' in this case.
30014
30015 2003-11-03  Martin Baulig  <martin@ximian.com>
30016
30017         * reflection.c (mono_image_get_generic_method_param_info):
30018         Removed, use mono_image_get_generic_param_info() instead.
30019         (mono_image_get_type_info): Write the GenericParam table before
30020         the Method table.  This is neccessary because in the GenericParam
30021         table, type parameters of the class (ie. '!0' etc.) must come
30022         before the ones from its generic methods (ie. '!!0' etc).
30023
30024 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30025
30026         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
30027
30028 2003-11-02  Martin Baulig  <martin@ximian.com>
30029
30030         * reflection.c (create_generic_typespec): Take a
30031         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
30032         the generic parameters from it.
30033
30034 2003-11-02  Martin Baulig  <martin@ximian.com>
30035
30036         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
30037         instead of a `MonoClassField *' since we just need the type.
30038         (create_generic_typespec): New static function.  Creates a
30039         TypeSpec token for a generic type declaration.
30040         (mono_image_get_generic_field_token): New static function.
30041         (mono_image_create_token): If we're a FieldBuilder in a generic
30042         type declaration, call mono_image_get_generic_field_token() to get
30043         the token.
30044
30045 2003-11-02  Martin Baulig  <martin@ximian.com>
30046
30047         * reflection.h
30048         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
30049         `MonoReflectionGenericInst *declaring_type' and
30050         `MonoReflectionGenericInst *reflected_type' fields.
30051
30052         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
30053         `MonoReflectionGenericInst *declaring_type' and a
30054         `MonoReflectionGenericInst *reflected_type' argument instead of a
30055         single `MonoReflectionGenericInst *type' one.  Set
30056         `res->declaring_type' and `res->reflected_type' from them.
30057         (mono_reflection_inflate_field): Likewise.      
30058
30059 2003-11-02  Martin Baulig  <martin@ximian.com>
30060
30061         * class.c (mono_class_setup_vtable): Don't store generic methods
30062         in the vtable.  
30063
30064 2003-11-02  Martin Baulig  <martin@ximian.com>
30065
30066         * reflection.h (MonoReflectionGenericInst): Added
30067         `MonoReflectionType *declaring_type'.
30068
30069         * reflection.c (mono_reflection_bind_generic_parameters): Use
30070         `if (tb->parent)' instead of `klass->parent'.
30071
30072 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
30073
30074         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
30075         with an empty ASSEMBLY table.
30076
30077         * reflection.c (mono_image_build_metadata): Avoid using the same loop
30078         variable in the inner and outer loops.
30079
30080 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
30081
30082         * metadata.h (mono_metadata_make_token): Put parentheses around macro
30083         argument.
30084
30085         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
30086         
30087         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
30088         icalls. Instead, do everything in managed code. This is needed since
30089         it is hard to restore the original domain etc. in unmanaged code in the
30090         presence of undeniable exceptions.
30091
30092         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
30093         New icalls to push and pop appdomain refs.
30094
30095 2003-10-31  Martin Baulig  <martin@ximian.com>
30096
30097         * class.c (inflate_generic_type): Renamed to
30098         mono_class_inflate_generic_type() and made it public.
30099
30100         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30101         New interncall.
30102
30103         * loader.c (mono_field_from_memberref): Also set the retklass for
30104         typespecs.
30105
30106         * fielder.c (mono_image_get_inflated_field_token): New static
30107         method; creates a metadata token for an inflated field.
30108         (mono_image_create_token, fixup_method): Added support for
30109         "MonoInflatedField".
30110         (fieldbuilder_to_mono_class_field): New static function.
30111         (mono_reflection_inflate_field): New public function.
30112
30113         * reflection.h
30114         (MonoReflectionGenericInst): Added `MonoArray *fields'.
30115         (MonoReflectionInflatedField): New typedef.     
30116
30117 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
30118
30119         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30120         for Solaris and other platforms without s6_addr16
30121
30122 2003-10-30  Martin Baulig  <martin@ximian.com>
30123
30124         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30125         argument instead of two.
30126         (mono_class_inflate_generic_signature): Likewise.
30127         (inflate_generic_header): Likewise.
30128         (mono_class_inflate_generic_method): Likewise.  In addition, if
30129         `ginst->klass' is set, it becomes the new `method->klass'.
30130
30131         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30132         field.
30133
30134         * reflection.c (encode_generic_method_sig): Write a 0xa as the
30135         first byte. [FIXME]
30136         (method_encode_methodspec): If we have generic parameters, create
30137         a MethodSpec instead of a MethodRef.
30138         (fixup_method): Added support for "MonoInflatedMethod" and
30139         "MonoInflatedCtor".
30140         (mono_image_create_token): Added support for "MonoInflatedMethod"
30141         and "MonoInflatedCtor".
30142         (inflated_method_get_object): New static function; returns a
30143         managed "System.Reflection.MonoInflatedMethod" object.
30144         (mono_reflection_bind_generic_method_parameters): Return a
30145         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30146         (mono_reflection_inflate_method_or_ctor): Likewise.
30147         (mono_image_get_generic_method_param_info): Initialize unused
30148         fields to zero.
30149         (mono_image_get_generic_param_info): Likewise.
30150
30151         * reflection.h (MonoReflectionInflatedMethod): New public
30152         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
30153         "S.R.MonoInflatedCtor" classes.
30154
30155         * loader.c (method_from_memberref): If we're a TypeSpec and it
30156         resolves to a generic instance, inflate the method.
30157
30158 2003-10-28  Dick Porter  <dick@ximian.com>
30159
30160         * object.c (mono_runtime_run_main): Convert command-line arguments
30161         into utf8, falling back to the user's locale encoding to do so.
30162
30163 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
30164
30165         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30166         at this time.
30167
30168         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30169
30170         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30171         up icalls at method definition time. Partially fixes #33569.
30172
30173 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
30174
30175         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30176         marshalling of arrays. Fixes #50116.
30177
30178         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30179
30180         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30181         points to a vtable in the dying appdomain.
30182
30183         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30184         listeners into unmanaged code inside the lock.
30185
30186         * object.c (mono_class_vtable): Turn off typed allocation in non-root
30187         domains and add some comments.
30188
30189 2003-10-25  Martin Baulig  <martin@ximian.com>
30190
30191         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30192
30193         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30194
30195         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
30196         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
30197         currently parsing.  Create the generic class and store it in
30198         `generic_inst->klass' before parsing the type arguments.  This is
30199         required to support "recursive" definitions; see mcs/tests/gen-23.cs
30200         for an example.
30201         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
30202         to support recursive typespec entries.
30203
30204         * class.c (mono_class_setup_parent): If our parent is a generic
30205         instance, we may get called before it has its name set.
30206         (mono_class_from_generic): Splitted into
30207         mono_class_create_from_generic() and mono_class_initialize_generic().
30208
30209 2003-10-25  Martin Baulig  <martin@ximian.com>
30210
30211         * icall.c (ves_icall_Type_BindGenericParameters): Return a
30212         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
30213         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
30214         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
30215
30216         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
30217         (create_typespec): Likewise.
30218         (mono_reflection_bind_generic_parameters): Return a
30219         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
30220         (mono_reflection_inflate_method_or_ctor): New public function.
30221
30222         * reflection.h (MonoReflectionGenericInst): New typedef.        
30223
30224 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
30225
30226         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
30227         inside the domain lock. Fixes #49993.
30228         
30229         * object.c (mono_class_vtable): When typed allocation is used, 
30230         allocate vtables in the GC heap instead of in the mempool, since the
30231         vtables contain GC descriptors which are used by the collector even
30232         after the domain owning the mempool is unloaded.
30233
30234         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
30235
30236         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
30237         reflect what it does. Also invalidate mempools instead of freeing
30238         them if a define is set.
30239
30240         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
30241         of the appdomain.
30242         
30243         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
30244         hold the finalizable objects in this domain.
30245
30246         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
30247         appdomain.
30248
30249         * appdomain.c (mono_domain_set): New function to set the current
30250         appdomain, but only if it is not being unloaded.
30251
30252         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
30253         appdomain which is being unloaded.
30254         
30255         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
30256         unloading of the root appdomain.
30257
30258         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
30259         icall to execute a method in another appdomain. Intended as a 
30260         replacement for InternalSetDomain, which can confuse the code 
30261         generation in the JIT.
30262
30263         * appdomain.c (mono_domain_is_unloading): New function to determine
30264         whenever an appdomain is unloading.
30265
30266         * appdomain.c (mono_domain_unload): New function to correctly unload
30267         an appdomain.
30268
30269         * assembly.c (mono_assembly_load_references): Check that an assembly
30270         does not references itself.
30271
30272         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
30273         domain manually, it asks the finalizer thread to do it, then waits for
30274         the result. Also added a timeout.
30275
30276         * icall.c: Register the new icalls.
30277
30278         * threads.h threads.c: Export the mono_gc_stop_world and 
30279         mono_gc_start_world functions.
30280         
30281         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
30282         function to fill out the mempool with 0x2a.
30283
30284 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
30285
30286         * reflection.h (MonoReflectionMethodAux): New structure to store
30287         information which is rarely used, thus is not in the MonoMethod
30288         structure.
30289
30290         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
30291         store the aux info.
30292
30293         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
30294         and marshalling info into the aux structure.
30295
30296         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
30297         from the aux structure.
30298
30299         * loader.c (mono_method_get_param_names): Retrieve the param names from
30300         the aux structure.
30301         
30302 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
30303
30304         * exception.h exception.c: Add AppDomainUnloadedException && fix 
30305         warning.
30306
30307 2003-10-21  Dick Porter  <dick@ximian.com>
30308
30309         * socket-io.c
30310         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
30311         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
30312
30313 2003-10-21  Martin Baulig  <martin@ximian.com>
30314
30315         * reflection.c (mono_reflection_bind_generic_parameters):
30316         `klass->parent' is NULL for interfaces.
30317
30318 2003-10-21  Martin Baulig  <martin@ximian.com>
30319
30320         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30321
30322 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
30323
30324         * exception.c (mono_exception_from_name_msg): New helper function for
30325         creating exceptions and initializing their message field.
30326
30327         * exception.c: Simplify functions using the new helper.
30328
30329         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
30330         New function.
30331
30332         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
30333         mono_raise_exception, since otherwise gcc doesn't generate the function
30334         epilog for raise_exception, confusing the stack unwinding in the JIT.
30335         Fixes #45043.
30336
30337         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30338         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30339         Fixes #49499.
30340
30341 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30342
30343         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30344         utf8.
30345
30346 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
30347
30348         * icall.c: Removed GetUninitializedObject method because
30349           AllocateUninitializedClassInstance does the same.
30350
30351 2003-10-18  Martin Baulig  <martin@ximian.com>
30352
30353         * class.c (inflate_generic_signature): Renamed to
30354         mono_class_inflate_generic_signature() and made it public.
30355         (my_mono_class_from_generic_parameter): New static function; if we
30356         don't already have the generic parameter's MonoClass, create a
30357         very simple one which is just used internally in the runtime and
30358         not passed back to managed code.
30359
30360         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30361
30362         * metadata.h (MonoMethodSignature): Moved the
30363         `MonoGenericParam *gen_params' to the MonoMethodHeader.
30364         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30365
30366         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30367         ves_icall_MonoMethod_GetGenericArguments(); this is now an
30368         interncall on the MonoMethod class, not on MethodInfo.
30369         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30370         calling mono_reflection_bind_generic_method_parameters() directly.
30371
30372         * loader.c (mono_method_get_signature): If this is a MethodSpec;
30373         return the already computed `method->signature'.
30374         (method_from_methodspec): New static function to load a method
30375         from a MethodSpec entry.
30376         (mono_get_method_from_token): Call the new method_from_methodspec()
30377         for MethodSpec tokens.  
30378         (mono_get_method_from_token): If we're a generic method, load the
30379         type parameters.
30380
30381         * reflection.c (mono_image_get_memberref_token): Allow
30382         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30383         table.
30384         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30385         (mono_image_create_token): First check whether it's a generic
30386         method (so we'd need to create a MethodSpec), then do the other
30387         two alternatives.
30388         (mono_reflection_bind_generic_method_parameters): Return a
30389         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30390         called directly from the interncall.
30391
30392 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30393
30394         * reflection.c (load_public_key): Move loading of the public key
30395         into managed code.
30396
30397         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30398
30399         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30400         fields.
30401
30402         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30403         culture, hash_alg and public_key. Fixes #49555.
30404
30405 2003-10-17  Martin Baulig  <martin@ximian.com>
30406
30407         * class.h (MonoGenericInst): Moved this declaration here and added
30408         `MonoMethod *generic_method'.
30409
30410         * icall.c
30411         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30412         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30413
30414         * metadata.c (mono_metadata_type_equal): Two types of
30415         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30416         index; ie. don't compare the address of the `MonoGenericParam'
30417         structure.
30418         (mono_metadata_load_generic_params): Removed the `MonoMethod
30419         *method' argument.
30420
30421         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30422         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30423
30424         * reflection.c (method_encode_signature): Encode the number of
30425         generic parameters.
30426         (encode_generic_method_sig): New static function.
30427         (method_encode_methodspec): New static function; creates an entry
30428         in the MethodSpec table for a generic method.
30429         (mono_image_get_methodspec_token): New static function.
30430         (mono_image_create_token): Call mono_image_get_methodspec_token()
30431         for generic methods.
30432         (mono_reflection_bind_generic_method_parameters): New public
30433         function.  Instantiates a generic method.
30434
30435 2003-10-16  Martin Baulig  <martin@ximian.com>
30436
30437         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30438         *gen_params' here from MonoMethodHeader.
30439
30440         * metadata.c (mono_metadata_parse_method_signature): If we have
30441         generic parameters, initialize `method->gen_params' and then set
30442         the correct `type->data.generic_param' in all the parameters.
30443
30444 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30445
30446         * threads.c (mono_threads_get_default_stacksize): New function to 
30447         return the default stacksize.
30448
30449         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30450         termination of the finalizer thread, since the previous method had
30451         race conditions. Fixes #49628.
30452
30453         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30454         as for the other managed threads.
30455
30456 2003-10-16  Martin Baulig  <martin@ximian.com>
30457
30458         * class.c (inflate_generic_signature): Copy `generic_param_count'
30459         and `gen_params'.
30460
30461         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30462         New interncall.
30463
30464         * metadata.c (mono_metadata_parse_method_signature): Actually set
30465         the `method->generic_param_count' here.
30466         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30467
30468 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30469
30470         * object.h: Add a new field to TypedRef to simplify the implementation
30471         of the REFANY opcodes in the JIT.
30472
30473         * icall.c: Make use of the new field.
30474
30475         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30476         dynamically.
30477
30478 2003-10-15  Martin Baulig  <martin@ximian.com>
30479
30480         * class.c (mono_class_from_gen_param): Renamed to
30481         mono_class_from_generic_parameter() and moved most of the
30482         functionality from mono_reflection_define_generic_parameter()
30483         here; ie. we create a "real" class here.
30484         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30485         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30486         previously been called.
30487
30488         * class.h (MonoGenericParam): Moved the declaration of this struct
30489         here from metadata.h and added `MonoMethod *method'.
30490
30491         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30492         interncall.
30493
30494         * loader.c (mono_get_method_from_token): If we have any generic
30495         parameters, call mono_metadata_load_generic_params() to read them
30496         from the MONO_TABLE_GENERICPAR.
30497
30498         * metadata.c (mono_metadata_load_generic_params): Added
30499         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30500
30501         * metadata.h (MonoMethodSignature): Replaced
30502         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30503         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30504
30505         * reflection.c (mono_reflection_define_generic_parameter): Moved
30506         most of the functionality into the new
30507         mono_class_from_generic_parameter(); set the `method' field if
30508         we're a method parameter.       
30509
30510 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30511
30512         * marshal.c (emit_struct_conv): if native size is 0
30513         emit no code.
30514
30515 2003-10-14  Martin Baulig  <martin@ximian.com>
30516
30517         * icall.c: The generics API has changed in the spec since it was
30518         added to System.Type; these modifications make it match the spec
30519         again.
30520         (ves_icall_Type_GetGenericParameters): Renamed to
30521         `ves_icall_Type_GetGenericArguments'.
30522         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30523         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30524         `ves_icall_MonoType_get_HasGenericArguments'.
30525         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30526         `ves_icall_MonoType_get_IsGenericParameter'.
30527         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30528         this is no interncall anymore.
30529         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30530         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30531
30532 2003-10-14  Martin Baulig  <martin@ximian.com>
30533
30534         * reflection.c (mono_reflection_bind_generic_parameters): Also
30535         inflate generic methods if we're reading the class from IL.
30536
30537 2003-10-13  Martin Baulig  <martin@ximian.com>
30538
30539         * reflection.c (mono_reflection_define_generic_parameter): This
30540         method isn't called directly from the icall anymore; take a
30541         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30542         method generic parameters.
30543         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30544         (method_builder_encode_signature): Encode generic parameters.
30545         (mono_image_get_method_info): Write generic params to the
30546         MONO_TABLE_GENERICPARAM table.
30547
30548         * reflection.h (MonoReflectionMethodBuilder): Added
30549         `MonoArray *generic_params'.
30550
30551         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30552
30553         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30554         wrapper for mono_reflection_define_generic_parameter().
30555         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30556
30557 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30558
30559         * marshal.h: Add missing function to fix build.
30560
30561         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30562         the SetLastError pinvoke attribute.
30563
30564         * marshal.c (mono_marshal_set_last_error): New helper function called
30565         by the generated code.
30566         
30567         * marshal.c (mono_mb_emit_branch): New helper function.
30568
30569         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30570
30571         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30572         classes as parameters and return values of delegates. Fixes #29256. 
30573
30574 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30575
30576         * locales.c: use gint32 in non HAVE_ICU case
30577
30578 2003-10-11  Martin Baulig  <martin@ximian.com>
30579
30580         * mono-debug.c (mono_debug_add_method): Added a workaround for
30581         bug #48591.
30582
30583 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30584
30585         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30586         delegates passed to native code must use the STDCALL calling 
30587         convention. Fixes #35987.
30588
30589 2003-10-10  Martin Baulig  <martin@ximian.com>
30590
30591         * class.c (inflate_generic_type): If we're inflating for a generic
30592         type instance (and not for a generic method), return
30593         MONO_TYPE_MVAR unchanged.
30594
30595 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30596
30597         * string-icalls.c: Join ignores null strings in the source array.
30598         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30599         * threads.c: GetAvailableTheads is slightly more accurate.
30600
30601 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
30602
30603         * threads.h threads.c : add mono_threads_set_default_stacksize
30604         and pass default to CreateThread calls.
30605
30606 2003-10-09  Dick Porter  <dick@ximian.com>
30607
30608         * icall.c:
30609         * locales.h:
30610         * locales.c: Internal calls for constructing CultureInfo and
30611         related objects from libicu (if its available.)
30612
30613 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
30614
30615         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
30616
30617 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30618
30619         * threadpool.c: added an argument to async_invoke_thread that is the
30620         item to process, pass the MonoAsyncResult to the thread start function
30621         when creating a new thread. This way we don't need to acquire any lock
30622         when we're creating a new thread. Readded a semaphore for faster
30623         response times (instead of that Sleep i added).
30624
30625 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
30626
30627         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30628         get daylight change dates better on Windows, fix handling
30629         of platforms without tm_gmtoff.
30630
30631 2003-10-06  Martin Baulig  <martin@ximian.com>
30632
30633         * class.c (inflate_generic_method): Renamed to
30634         mono_class_inflate_generic_method() and made public.
30635         (mono_class_init): Don't inflate the generic methods here.
30636         (mono_class_from_generic): Added `gboolean inflate_methods'
30637         argument.  Inflate the methods here.
30638
30639         * loader.c (mono_method_get_param_names): Ignore instances of
30640         generic types for the moment.
30641
30642         * reflection.c (fixup_method): Added support for inflated methods.
30643         (mono_image_create_token): Use mono_image_get_methodref_token()
30644         for inflated methods.
30645         (mono_custom_attrs_from_param): Ignore instances of generic types
30646         for the moment.
30647         (mono_reflection_bind_generic_parameters): New public function.
30648         Moved all the functionality from
30649         ves_icall_Type_BindGenericParameters() here and added support for
30650         dynamic types.
30651         (mono_reflection_define_generic_parameter): Initialize
30652         `klass->methods' here.
30653
30654         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
30655         functionality into mono_reflection_define_generic_parameter().
30656         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
30657         TypeBuilder, return that TypeBuilder.
30658
30659 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30660
30661         * appdomain.c: removed mono_delegate_semaphore.
30662
30663         * threadpool.c:
30664         (mono_thread_pool_add): moved hash table creation inside and the thread 
30665         creation outside of the critical region.
30666         (mono_thread_pool_finish): removed obsolete code.
30667         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
30668         continue or exit the thread depending on the queue.
30669
30670 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
30671
30672         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
30673         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
30674         handle more bool marshalling options
30675
30676 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
30677
30678         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
30679         arrays of structs. Also add a more descriptive error message when
30680         a structure member is marshalled as LPArray.
30681
30682 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
30683
30684         * marshal.c (mono_marshal_get_native_wrapper): Add support for
30685         marshalling arrays of complex types. Fixes #29098. Also remove an
30686         usused and incomplete function.
30687
30688 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30689
30690         * gc.c: report heap_size - free_bytes as total memory allocated
30691         (bug#49362).
30692
30693 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
30694
30695         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
30696         fix timezone handling problems on Windows.
30697         
30698         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
30699         asserts when the year is outside the range handled by ms the functions.
30700
30701         * class.c (setup_interface_offsets): If the class is an interface,
30702         fill out its interface_offsets slot.
30703
30704 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30705
30706         * threadpool.c: mark threadpool threads as background.
30707
30708 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
30709
30710         * decimal.c - define DECINLINE to nothing if not using GCC
30711
30712 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
30713
30714         * assembly.c: More refcount fixes.
30715
30716 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30717
30718         * string-icalls.c: if we're not trimming, return the same string.
30719         When not splitting, don't create a new string.
30720
30721 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30722
30723         * image.c:
30724         (mono_image_open): increment the ref_count inside the critical section.
30725
30726 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
30727
30728         * image.c (mono_image_open): Fix reference counting bug.
30729
30730 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
30731
30732         * marshal.c (mono_marshal_type_size) struct alignment changed for 
30733         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
30734         64bits. Avoid leak in mono_marshal_get_native_wrapper when
30735         mono_lookup_pinvoke_call throws.        
30736
30737 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
30738
30739         * reflection.c (mono_reflection_parse_type): Fix #49114.
30740
30741         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
30742         temporary workaround for cygwin header problem.
30743
30744         * object.c (mono_object_isinst): Synchronize this with the code
30745         generated by the JIT for casts.
30746
30747 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
30748
30749         * reflection.c (encode_type): Fix #38332.
30750
30751 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
30752
30753         * marshal.c (mono_marshal_method_from_wrapper): New function to return
30754         the original method from the wrapper method.
30755
30756 2003-09-25  Martin Baulig  <martin@ximian.com>
30757
30758         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
30759         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
30760         (ves_icall_Type_get_IsGenericInstance): New interncall.
30761
30762 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
30763
30764         * object.c: fix cast warning in big endian code.
30765
30766 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
30767
30768         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
30769         
30770 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30771
30772         * assembly.c: don't call check_env from mono_assembly_load. It's
30773         already done once in mono_assemblies_init and may cause headaches when
30774         multiple threads are loading assemblies.
30775
30776 2003-09-19  Martin Baulig  <martin@ximian.com>
30777
30778         * reflection.c (mono_reflection_define_generic_parameter): Don't
30779         allocate `klass->methods', set `klass->flags' to
30780         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
30781
30782 2003-09-18  Martin Baulig  <martin@ximian.com>
30783
30784         * class.c (mono_class_init): Don't create `class->methods' if it's
30785         already initialized.
30786
30787         * metadata.c (mono_metadata_load_generic_params): Make this
30788         actually work.
30789
30790         * reflection.c (mono_reflection_define_generic_parameter): Set
30791         parent class and interfaces from the constraints.
30792
30793         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
30794         to keep this struct in sync with the declaration in TypeBuilder.cs.
30795
30796 2003-09-17  Martin Baulig  <martin@ximian.com>
30797
30798         * metadata.h (MonoType): Replaced the data's `int type_param'
30799         field with `MonoGenericParam *generic_param'.
30800         (MonoGenericParam): Added `MonoClass *klass'.
30801
30802         * class.c (mono_class_from_gen_param): Removed the
30803         `MonoImage *image' and `int type_num' arguments.
30804
30805         * metadata.c (mono_metadata_parse_generic_param): New static
30806         method; creates a MonoGenericParam which just contains the index.
30807         (do_mono_metadata_parse_type): Call
30808         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
30809         MONO_TYPE_MVAR.
30810
30811         * reflection.c (mono_image_typedef_or_ref): Generic type
30812         parameters may be in the same assembly, but never use a typedef
30813         for them.
30814         (mono_reflection_define_generic_parameter): We're now creating a
30815         "real" class for the type parameter; it's now safe to call
30816         mono_class_from_mono_type() on the class'es type, it'll do the
30817         right thing.
30818
30819 2003-09-16  Martin Baulig  <martin@ximian.com>
30820
30821         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
30822         `symfile->range_entry_size' and `symfile->class_entry_size' here;
30823         the `symfile' data structure must be fully initialized before it
30824         gets added to the table.
30825
30826 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
30827
30828         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
30829
30830         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
30831         class init trampolines.
30832
30833 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
30834
30835         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
30836         to the built-in profiler to turn off time and allocation profiling
30837         respectively.
30838
30839 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
30840
30841         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
30842         g_direct_equal.
30843
30844         * debug-helpers.c (mono_method_full_name): Print the wrapper type
30845         in human readable form.
30846
30847 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
30848
30849         * reflection.c icall.c: Fixed warnings.
30850
30851         * image.c (load_class_names): Use a temporary hash table to hold the
30852         namespaces in order to avoid doing many string comparisons.
30853
30854         * image.h: Fix typo.
30855
30856         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
30857         Pass NULL instead of g_direct_equal to the GHashTable constructor 
30858         since the NULL case is short-circuited inside g_hash_table_lookup, 
30859         leading to better performance.  
30860
30861         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
30862         obtain the first custom attribute for a given index. Depends on the
30863         CustomAttribute table being sorted by the parent field.
30864
30865         * reflection.c (mono_custom_attrs_from_index): Use the new function 
30866         for better performance.
30867
30868 2003-09-07  Martin Baulig  <martin@ximian.com>
30869
30870         * class.c (mono_class_init): If we're a generic instance, inflate
30871         all our methods instead of loading them from the image.
30872         (mono_class_from_generic): Set `class->methods = gklass->methods'.
30873
30874 2003-09-07  Martin Baulig  <martin@ximian.com>
30875
30876         * mono-debug-debugger.c: Added support for constructors.
30877
30878 2003-09-06  Martin Baulig  <martin@ximian.com>
30879
30880         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
30881         New interncall.
30882
30883         * reflection.c (mono_reflection_setup_generic_class): Call
30884         ensure_runtime_vtable() to create the vtable.
30885
30886 2003-09-05  Martin Baulig  <martin@ximian.com>
30887
30888         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
30889         MONO_TYPE_MVAR.
30890
30891 2003-09-04  Martin Baulig  <martin@ximian.com>
30892
30893         * reflection.c (mono_reflection_define_generic_parameter): Generic
30894         parameters start with zero.
30895
30896 2003-09-04  Martin Baulig  <martin@ximian.com>
30897
30898         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30899
30900         * reflection.h (MonoReflectionGenericParam): New typedef.
30901         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
30902         the generic parameters from the managed TypeBuilder.
30903
30904         * reflection.c (mono_reflection_define_generic_parameter): New function.
30905         (mono_reflection_create_runtime_class): Encode generic parameters.
30906         (mono_reflection_setup_generic_class): New function; this is
30907         called after adding adding all generic params to the TypeBuilder.
30908         (encode_type): Added MONO_TYPE_VAR.
30909
30910 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
30911
30912         * class.h class.c (mono_class_needs_cctor_run): Moved this method
30913         here from the JIT.
30914
30915         * assembly.h assembly.c: Moved the AOT loading code into an assembly
30916         load hook.
30917
30918 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
30919
30920         * reflection.h reflection.c class.h class.c: Delete duplicate 
30921         definition of mono_type_get_name () from reflection.c and export the
30922         one in class.c.
30923
30924         * class.c: Class loading fixes from Bernie Solomon 
30925         (bernard@ugsolutions.com).
30926
30927         * reflection.c: Endianness fixes from Bernie Solomon 
30928         (bernard@ugsolutions.com).
30929         
30930 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
30931
30932         * assembly.h assembly.c: Define a file format version for AOT
30933         libraries.
30934         
30935         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
30936
30937         * appdomain.h (MonoJitInfo): New field to determine whenever the
30938         code is domain neutral.
30939         
30940 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
30941
30942         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
30943
30944 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
30945
30946         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
30947         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
30948         Avoid caching the result since strings must be domain specific. Fixes
30949         #48050.
30950
30951 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
30952
30953         * marshal.c (mono_marshal_init): Make this callable multiple times
30954         since it is hard to find a correct place to call it.
30955
30956         * object.c (mono_runtime_class_init): Execute static constructors in
30957         the correct appdomain.
30958
30959         * image.c (build_guid_table): Handle the case when multiple images have
30960         the same GUID.
30961
30962 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30963
30964         * icall.c: added a couple of icalls for System.Web.
30965
30966 2003-08-28  Martin Baulig  <martin@ximian.com>
30967
30968         * icall.c (ves_icall_Type_BindGenericParameters): Use
30969         `klass->generic_inst' instead of `&klass->byval_arg' in the
30970         mono_type_get_object() call.  The returned type must be
30971         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
30972
30973 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
30974
30975         * NOTES: New file.
30976
30977         * object.c (mono_class_proxy_vtable): Make it thread safe.
30978
30979         * pedump.c: Fix warning.
30980
30981         * object.c appdomain.h: Get rid of metadata_section. 
30982         It is no longer needed and it was causing deadlocks with domain->lock.
30983
30984         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
30985
30986 2003-08-26  Martin Baulig  <martin@ximian.com>
30987
30988         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
30989
30990 2003-08-26  Martin Baulig  <martin@ximian.com>
30991
30992         * pedump.c (main): Call mono_metadata_init(),
30993         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
30994         and mono_loader_init().
30995
30996 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
30997
30998         * loader.h: Add missing include to fix build.
30999
31000         * image.h: mono_image_load_references is no more.
31001
31002         * assembly.c: Reworked assembly loading to make it really thread safe.
31003         After these changes, the assembly returned by mono_assembly_open is
31004         fully initialized, i.e. all its references assemblies are loaded.
31005
31006         * assembly.c (mono_image_load_references): Renamed to 
31007         mono_assembly_load_references, and made private, since clients no
31008         longer need to call it.
31009
31010         * class.c: Removed calls to mono_assembly_load_references, since it was
31011         a source of deadlocks.
31012
31013         * loader.h loader.c class.h class.c: Protect data structures using a 
31014         new lock, the loader lock.
31015
31016         * class.c (mono_class_setup_vtable): Create temporary hash tables and
31017         GPtrArrays only when needed.
31018
31019         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
31020         into empty structures by mcs. Fixes pinvoke7.cs.
31021         
31022         * domain.c (mono_init): Call a new initialization function.
31023
31024         * appdomain.c (mono_runtime_init): Call the new initializer function
31025         of the marshal module.
31026
31027         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
31028         inserted into empty structures by mcs. Fixes pinvoke7.cs.
31029
31030         * marshal.h marshal.c: Added locks around the wrapper caches to make
31031         this module thread safe.
31032
31033         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
31034         this argument. Fixes pinvoke1.exe.
31035
31036 2003-08-25  Lluis Sanchez <lluis@ximian.com>
31037
31038         * object.h: Added call_type field to MonoMethodMessage and the corresponding
31039         enumeration of values. Removed fields to store remote call output values in
31040         MonoAsyncResult. Not needed any more.
31041         * object.c: Initialize call_type and async_result fields in mono_message_init.
31042         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
31043         dispatching the message.
31044         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
31045         async call to finish. To do it use a message with EndInvoke call type.
31046
31047 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
31048
31049         * loader.h loader.c (mono_method_hash_marhal_info): New function which
31050         determines whenever a method has marshalling info.
31051
31052 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31053
31054         * assembly.c: fix the build on windows.
31055
31056 2003-08-22 Lluis Sanchez <lluis@ximian.com>
31057
31058         * object.cs: Fixed bug #47785.
31059
31060 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
31061
31062         * string-icalls.c (StringReplace): If their are no occurances of
31063         the old string found return a reference to the supplied
31064         string. This saves some memory and matches MS behavoir.
31065         
31066 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31067
31068         * socket-io.c: fixed compilation for systems that define AF_INET6
31069         and don't define SOL_IP/SOL_IPV6.
31070
31071 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
31072
31073         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
31074         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
31075
31076         * rawbuffer.c rawbuffer.h: Make this module thread safe.
31077
31078         * domain.c: Make this module thread safe.
31079
31080         * domain.c (mono_init): Call new initialization function.
31081
31082         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
31083         reference types too. Fixes #38812.
31084
31085         * image.c (mono_image_init): Fixed warnings.
31086
31087         * class.c (mono_class_from_typeref): Handle assembly load failure
31088         correctly.
31089
31090         * appdomain.c (add_assemblies_to_domain): Handle the case when
31091         the references of an assembly are not yet loaded.
31092
31093         * metadata.c image.c assembly.c: Moved initialization of global
31094         variables to a separate function called at startup since lazy 
31095         initialization of these variables is not thread safe.
31096         
31097         * image.c assembly.c: Made this module thread safe by adding locks in 
31098         the appropriate places.
31099
31100         * domain.c (mono_init): Call the new initialization functions of the
31101         three modules.
31102
31103 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
31104
31105         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31106           make a direct call. It is proxy's work to make the call asynchronous.
31107           mono_delegate_end_invoke(): If the targe is a proxy, just collect
31108           the return values.
31109         * object.cs: mono_method_call_message_new(): read AsyncResult and
31110           state object from parameters list, if this info is requested.
31111         * object.h: Added fields to store remote call output values in
31112           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31113
31114 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31115
31116         * object.h: add needed fields to MonoThread.
31117         * threads.c, threads.h: allow registering a function to cleanup data
31118         allocated per thread by the JIT.
31119
31120 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31121
31122         * loader.h: portability fix by Bernie Solomon
31123         * <bernard@ugsolutions.com>.
31124
31125 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
31126
31127         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
31128         return a MonoArray. This simplifies the code and also ensures that
31129         the cache allways contains an object reference as a value.
31130
31131         * icall.c (ves_icall_get_parameter_info): Simplified using the new
31132         function.
31133
31134 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31135
31136         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31137         fixes a problem with byte ordering when getting the address family for
31138         a socket.
31139
31140 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
31141
31142         * .cvsignore: Added monosn.
31143
31144         * reflection.h reflection.c loader.c: Added support for parameter
31145         marshalling to dynamically created types. Fixes #47295.
31146
31147 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31148
31149         * rand.c: remove useless warnings.
31150
31151 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31152
31153         * class.c: implemented ldtoken for methods and fieldrefs.
31154
31155 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31156
31157         * threadpool.c: when mono_async_invoke was called, no one took care of
31158         monitoring the queue. So if the method invoked took some time and we
31159         got new async invoke requests after 500 ms (the thread created waited
31160         that long in WaitForSingleObject), the new async invoke was not called
31161         until the previous one finished.
31162
31163         This is fixed now. Thanks to Totte for helping with it.
31164
31165 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31166
31167         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31168
31169 2003-08-11  Martin Baulig  <martin@ximian.com>
31170
31171         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31172
31173 2003-08-06  Martin Baulig  <martin@ximian.com>
31174
31175         * mono-debug-debugger.c: Added support for static fields,
31176         properties and methods.
31177
31178 2003-08-06  Martin Baulig  <martin@ximian.com>
31179
31180         * mono-debug-debugger.c: Don't store the MonoString's vtable to
31181         make this work for applications with multiple application domains.
31182
31183 2003-08-04  Martin Baulig  <martin@ximian.com>
31184
31185         * mono-debug-debugger.c: Completely reworked the type support; the
31186         most important thing is that we're now just using one single
31187         `MonoType' instance per type.
31188
31189 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31190
31191         * mono-endian.h, mono-endian.c, icall.c: Added icall
31192         ves_icall_System_Double_AssertEndianity to assert double word endianity
31193         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31194
31195 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31196
31197         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
31198         support, icalls and fixes.
31199
31200 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
31201
31202         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
31203         classes that are a punctuation character in .NET is not the same a
31204         g_unichar_ispunct.
31205
31206 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31207
31208         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
31209
31210 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
31211
31212         * icall.c: Add new MemCopy internalcall.
31213         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
31214         Simplified code; It is not necessary to handle all the cases here,
31215         as the C# code takes care of it.  Only handle the case of the name
31216         resource embedded into the assembly.
31217
31218         Changed signature to return the data pointer and the size of the
31219         data. 
31220
31221 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
31222
31223         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
31224         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
31225
31226 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31227
31228         * socket-io.c: ignore EINTR error in select.
31229
31230 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31231
31232         * class.h, class.c: removed unused subclasses field in MonoClass.
31233
31234 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31235
31236         * icall.c: improve fix of get_base_definition(). If the parent class
31237           doesn't have the mehod, look at the parent of the parent.
31238         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
31239           to check if a parameter is an in or out parameter
31240           (PARAM_ATTRIBUTE_IN is not set by default).
31241           mono_method_return_message_restore(): Use mono_class_value_size to
31242           get the size of a value type. mono_type_stack_size (parameterType)
31243           does not return the correct value if parameterType is byRef.
31244           mono_load_remote_field(), mono_load_remote_field_new(),
31245           mono_store_remote_field(), mono_store_remote_field_new():
31246           raise exception if the remote call returns an exception.
31247
31248 2003-07-28  Martin Baulig  <martin@ximian.com>
31249
31250         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
31251         method.  This is a wrapper around mono_runtime_invoke() which
31252         boxes the instance object if neccessary.
31253
31254 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31255
31256         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
31257         metadata.h, row-indexes.h, verify.c: first cut of generics support.
31258
31259 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31260
31261         * icall.c: disable mcs bug workaround.
31262
31263 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
31264
31265         * object.c (mono_runtime_class_init): Take the metadata_section
31266         mutex before obtaining the domain mutex.
31267
31268         * appdomain.h: Added definition of metadata_section mutex here. 
31269
31270         * object.c: define metadata_mutex here.
31271
31272 2003-07-24  Ravi Pratap  <ravi@ximian.com>
31273
31274         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
31275         fixed.
31276
31277 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
31278
31279         * reflection.c: Fix bug #46669
31280
31281 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31282
31283         * exception.c:
31284         * exception.h:
31285         * icall.c:
31286         * object.h: fill in the type name for TypeLoadException.
31287
31288 2003-07-23  Ravi Pratap  <ravi@ximian.com>
31289
31290         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
31291         relationship between TypeBuilders while compiling corlib) and bug
31292         45993 (Array types returned from the runtime while compiling
31293         corlib were from the loaded corlib).
31294
31295 2003-07-22  Martin Baulig  <martin@ximian.com>
31296
31297         * mono-debug-debugger.c: Reworked the type support a bit more;
31298         distinguish between types and classes.
31299
31300 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
31301
31302         * icall.c: add IsArrayImpl icall.
31303
31304 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
31305
31306         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
31307         initializing real_size only once. Also fix bug #46602.
31308
31309 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
31310
31311         * object.c: Renamed mono_metadata_section to metadata_section.
31312
31313 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
31314
31315         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
31316           empty array if the type is an array. Fixed.
31317           ves_icall_MonoMethod_get_base_definition: if the base method
31318           is abstract, get the MethodInfo from the list of methods of
31319           the class.
31320         * reflection.c: ParameterInfo.PositionImpl should be zero-based
31321           and it was 1-based. Fixed in mono_param_get_objects.
31322
31323 2003-07-20  Martin Baulig  <martin@ximian.com>
31324
31325         * mono-debug.h: Set version number to 31.
31326         (mono_debug_init): Added `MonoDomain *' argument.
31327
31328         * mono-debug-debugger.c: Reworked the type support; explicitly
31329         tell the debugger about builtin types; pass the `klass' address to
31330         the debugger.
31331
31332 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
31333
31334         * image.c: Allow new metadata tables to be loaded without a
31335         warning. Also update the warning message to give the new constant value.
31336                 
31337 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31338
31339         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31340         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
31341         array type representation changes.
31342
31343 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31344
31345         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31346         on Environment.Exit () call.
31347
31348 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31349
31350         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31351         requires a matching corlib.
31352
31353 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31354
31355         * Changelog: My editor decided to add a CR to each line. Sorry about that.
31356           Committed again without the CRs.
31357         
31358 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31359
31360         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31361           getting it from the "this" socket instance. Did not work
31362           if the socket is a subclass of Socket.
31363           Also fixed bug #35371.
31364
31365 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31366
31367         * metadata.c: fixed size for TypedByRef.
31368         * loader.c: when searching for a method, consider the vararg amrker.
31369         * unicode.c, decimal.c: constify some arrays.
31370
31371 2003-07-15  Dick Porter  <dick@ximian.com>
31372
31373         * socket-io.c: Fixed compilation for gcc < 3.2.
31374
31375         Fixed compilation for machines that don't have AF_INET6 (thanks to
31376         Bernie Solomon <bernard@ugsolutions.com> for that part.)
31377
31378         Fixed compile warnings.
31379         
31380         Fixed formatting and line endings.
31381
31382 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31383
31384         * socket-io.h:
31385         * socket-io.c: Added IPv6 support.
31386
31387 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31388
31389         * class.c (mono_class_is_assignable_from): New function to implement
31390         the is_assignable_from logic. Used by mono_object_isinst, 
31391         Type::IsAssignableFrom () and the interpreter.
31392
31393         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31394         Object, even interfaces.
31395         
31396         * object.c (mono_object_isinst): Implement in terms of 
31397         is_assignable_from.
31398
31399         * icall.c (ves_icall_type_is_assignable_from): New icall.
31400
31401 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31402
31403         * domain.c (foreach_domain): fix compiler warning.
31404
31405 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31406
31407         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31408         not available on all plattforms
31409
31410 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31411
31412         * image.h image.c: Store the metadata version string in MonoImage.
31413         * icall.c: New icall to retrieve the image version.
31414         * reflection.c (create_dynamic_image): Fill in the image version field
31415         * reflection.c (build_compressed_metadata): Use the image version
31416         from the image structure.
31417
31418 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31419
31420         * appdomain.c: modified comment.
31421         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31422         That will be its last iteration when mono_gc_cleanup is called from
31423         mono_runtime_cleanup and before the domain is unloaded.
31424
31425         Fixes bug #45962.
31426
31427 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31428
31429         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31430         attributes.
31431
31432 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31433
31434         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31435         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31436         Bernie Solomon <bernard@ugsolutions.com>.
31437
31438 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31439
31440         * object.c, object.h: provide mono_object_new_fast() for faster
31441         allocation in some special cases.
31442
31443 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31444
31445         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31446         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31447
31448 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31449
31450         * threadpool.c: fix leaks.
31451
31452 2003-07-01  Dick Porter  <dick@ximian.com>
31453
31454         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31455         using MonoGHashTables.  Fixes threadpool bug posted to list.
31456
31457 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31458
31459         * image.h, image.c: added support to load an assembly from a byte array.
31460         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31461         assembly bundle support.
31462
31463 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31464
31465         * threadpool.c (mono_thread_pool_add): keep a reference to the
31466         AsyncResult to prevent GC
31467
31468 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31469
31470         * class.c: leak fix.
31471
31472 2003-06-25  Dick Porter  <dick@ximian.com>
31473
31474         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31475         for the async object, the WaitHandle object will close the handle.
31476         Fixes bug 45321.
31477
31478 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31479
31480         * class.c: in mono_array_class_get (), lookup from the hash with the
31481         same type we insert: this works around a bug in
31482         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31483         lluis. The real fix will have to wait for after the release.
31484
31485 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31486
31487         * icall.c: fix memory leak when getting type members.
31488
31489 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31490
31491         * reflection.c: added more pubtoken special cases.
31492
31493 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31494
31495         * class.c: handle field offset correctly when class size
31496         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31497
31498 2003-06-20  Martin Baulig  <martin@ximian.com>
31499
31500         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31501         *image' field.
31502
31503 2003-06-20  Martin Baulig  <martin@ximian.com>
31504
31505         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31506
31507 2003-06-20  Martin Baulig  <martin@ximian.com>
31508
31509         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31510         just distinguish between variables in registers and variables at
31511         an offset relative to a register.
31512
31513 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31514
31515         * icall.c: #ifdef out latest changes until mcs is fixed.
31516
31517 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31518
31519         * icall.c: return members in metadata order.
31520
31521 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31522
31523         * icall.c: avoid infinite loop in GetTimeZoneData.
31524
31525 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31526
31527         * icall.c: added Marshal.Prelink/All icalls.
31528
31529 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31530
31531         * object.c, object.h: fix warnings and do some overflow checking
31532         when creating arrays.
31533
31534 2003-06-17  Dick Porter  <dick@ximian.com>
31535
31536         * file-io.h:
31537         * file-io.c: File attributes need to be tweaked slightly when
31538         passed from the managed to the w32 world.
31539
31540 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31541         * profiler.h profiler-private.h profiler.c: Rework last patch
31542         based on suggestion by Paolo.
31543         
31544 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31545
31546         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31547         instruction level coverage data collection.
31548         * profiler.h profiler.c (: Added new callback function which can be
31549         used by the profiler to limit which functions should have coverage
31550         instrumentation.
31551         * profiler.c (mono_profiler_load): Call g_module_build_path to
31552         generate the file name of the profiler library.
31553
31554 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31555
31556         * profiler.c, profiler.h, profiler-private.h: added basic block 
31557         coverage profiling API.
31558
31559 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31560
31561         * reflection.c (mono_reflection_create_runtime_class): Add support
31562         for events in dynamically generated code.
31563
31564         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31565         not allocated.
31566
31567 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31568
31569         * icall.c: when getting timezone info, return reasonable values if we
31570         can't get the actual data.
31571
31572 2003-06-14  Dick Porter  <dick@ximian.com>
31573
31574         * threads.c (start_wrapper): Remove the reference to the thread
31575         object in the TLS data, so the thread object can be finalized.
31576         This won't be reached if the thread threw an uncaught exception,
31577         so those thread handles will stay referenced :-( (This is due to
31578         missing support for scanning thread-specific data in the Boehm GC
31579         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31580
31581 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31582
31583         * reflection.c: ensure streams and tables are first allocated with
31584         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31585
31586 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31587
31588         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31589
31590 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31591
31592         * reflection.c (mono_reflection_create_runtime_class): Add support for
31593         properties to dynamically created classes.
31594         * reflection.c: Fix a few places where non-MonoObjects were inserted
31595         into the tokens hashtable.
31596
31597 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31598
31599         * object.c: some support to handle out of memory exceptions.
31600
31601 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
31602
31603         * marshal.c (mono_marshal_get_native_wrapper): support reference
31604         return types
31605
31606 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31607
31608         * object.h, object.c: more portability stuff from Bernie Solomon.
31609         Unexport mono_object_allocate(). Added mono_object_unbox ().
31610         Set exitcode when an unhandled exception is thrown.
31611
31612 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
31613
31614         * marshal.c (mono_marshal_get_native_wrapper): use custom
31615         marshaler for return types.
31616
31617 2003-06-10  Dick Porter  <dick@ximian.com>
31618
31619         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
31620         ip_mreq is available
31621
31622 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
31623
31624         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
31625         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
31626         by Bernie Solomon <bernard@ugsolutions.com>.
31627
31628 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
31629
31630         * gc.c (mono_gc_init): Avoid error message on shutdown when
31631         GC_DONT_GC=1 is used.
31632
31633         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
31634         New icall to return the GUID of a module.
31635
31636 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31637
31638         * class.c: ensure instance size always includes the parent's size
31639         even whem class size is set explicitly (fixes bug#44294).
31640
31641 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31642
31643         * profiler.h, profiler.c: made the simple profiler thread-safe,
31644         get more accurate timing info. Allow the loading of an
31645         externally-developed profiler module.
31646
31647 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
31648
31649         * marshal.c (mono_marshal_get_native_wrapper): improved
31650         class/byref arguments.
31651         (mono_marshal_get_native_wrapper): better string marshaling support.
31652
31653 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
31654
31655         * class.c: ensure .pack and .size are handled correctly and
31656         simplified layout of static fields.
31657
31658 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
31659
31660         * appdomain.c
31661         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
31662
31663         * loader.c (mono_lookup_pinvoke_call): look for modules in the
31664         current directory (fix bug 44008)
31665
31666 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
31667
31668         * marshal.c (mono_marshal_get_native_wrapper): started support for
31669         custom marshalers.
31670         (mono_delegate_to_ftnptr): consider marshalling specifications
31671
31672 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
31673
31674         * reflection.c, reflection.h: emit custom marshal info.
31675
31676 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31677
31678         * object.c: free the GError.
31679         * icall.c: added CloseEvent_internal.
31680         * threads.[ch]:
31681         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
31682         call.
31683
31684 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
31685
31686         * loader.c (mono_method_get_signature): Add support for dynamic
31687         assemblies.
31688
31689 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
31690
31691         * reflection.c: fixed bug #43905.
31692
31693 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31694
31695         * class.c, domain.c, icall.c, metadata.h, object.h: support for
31696         handling TypedReference and ArgIterator.
31697         * loader.c, loader.h: added function to get signature at call site.
31698
31699 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31700
31701         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
31702         data readonly. Buglets and warning fixes. Some MethodSpec support.
31703
31704 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31705
31706         * class.h, class.c, object.c: remove relative numbering support.
31707
31708 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
31709
31710         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
31711         free the string, until we get a chance to fix Gtk#
31712
31713 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31714
31715         * marshal.c: revert last patch.
31716
31717 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
31718
31719         * icall.c: updates for new mono_class_vtable() not calling
31720         the type constructor anymore.
31721
31722 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31723
31724         * object.h, object.c: separate vtable creation from type
31725         initialization. Make running the .cctor thread safe.
31726
31727 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
31728
31729         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
31730
31731 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
31732
31733         * loader.c (mono_get_method): consider calling convention
31734
31735 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
31736
31737         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
31738         to return the invisible global type for a module.
31739
31740         * reflection.c (mono_image_build_metadata): Emit global fields too.
31741
31742 2003-05-20  Peter Williams  <peterw@ximian.com>
31743
31744         * loader.c (mono_lookup_internal_call): Add a few newlines.
31745
31746 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
31747
31748         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
31749         literal strings.
31750
31751         * appdomain.c (set_domain_search_path): Recalculate search path when
31752         AppDomainSetup.PrivateBinPath changes.
31753
31754         * object.c (mono_class_compute_gc_descriptor): It turns out some
31755         parts of the class libs (like System.Thread) holds pointers to
31756         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
31757         to treat native int a pointer type here.
31758         
31759 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
31760
31761         * appdomain.h, domain.c: add hashtable for jump target resolution.
31762
31763 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
31764
31765         * reflection.h reflection.c icall.c: Added new icalls 
31766         GetManifestResourceInfoInternal, GetModulesInternal and support
31767         infrastructure.
31768
31769 2003-05-16  Dick Porter  <dick@ximian.com>
31770
31771         * icall.c:
31772         * file-io.h:
31773         * file-io.c: Implement System.IO.MonoIO::GetTempPath
31774
31775 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
31776
31777         * object.c: mono_store_remote_field: little fix to previous patch.
31778
31779 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31780
31781         * class.c: add constructors to array classes.
31782         * icall.c: special case array construction for InternalInvoke (),
31783
31784 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
31785
31786         * class.h class.c reflection.c object.c: Added support for field
31787         defaults in dynamically generated classes.
31788
31789 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
31790
31791         * reflection.c: properly encode charset for ddlimport.
31792
31793 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
31794
31795         * threads.c: allow compiling without GC.
31796
31797 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31798
31799         * appdomain.h, object.c, object.h, threads.c, threads.h: added
31800         handling of thread static data.
31801
31802 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31803
31804         * reflection.h, reflection.c: added mono_custom_attrs_free ().
31805
31806 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
31807
31808         * class.c (mono_array_class_get): always set the serializable flags
31809         (mono_array_class_get): always set the SEALED attribute for array types
31810
31811 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
31812
31813         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
31814         attributes (fix for bug 42021).
31815
31816 2003-05-12  Dick Porter  <dick@ximian.com>
31817
31818         * gc.c: Don't run finalizers when the finalizer thread is
31819         finishing up, because the default domain has already been
31820         destroyed.
31821
31822 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
31823
31824         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
31825         value is null, we should throw an exception.   This is slightly
31826         different than the other conventions used for the constructor.
31827
31828 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31829
31830         * socket-io.c: fixed windows build.
31831
31832 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31833
31834         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
31835
31836 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
31837
31838         * object.c (mono_string_new_wrapper): Compatibility fix for MS
31839         compilers.
31840
31841 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
31842
31843         * class.c (mono_class_layout_fields): Add experimental GC aware
31844         auto layout facility. Requires class library changes to work correctly.
31845
31846         (mono_class_setup_vtable): Avoid overriding explicit interface
31847         method implementations. Fixes iface3.exe test.
31848
31849         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
31850         object reference.
31851         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
31852         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
31853
31854         * metadata.h: Add new type classification macro which determines
31855         whenever the type holds an object reference.
31856
31857 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
31858
31859         * marshal.c (mono_marshal_get_native_wrapper): cleanups
31860
31861 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
31862
31863         * gc.c (finalizer_thread): Work around a GC bug.
31864
31865 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
31866
31867         * marshal.c (emit_struct_conv): allow unions
31868
31869         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
31870
31871 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
31872
31873         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
31874
31875 2003-05-06  Martin Baulig  <martin@ximian.com>
31876
31877         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
31878
31879 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31880
31881         * socket-io.c:
31882         (Select_internal): allow NULLs, don't create arrays if not needed.
31883         Coupled with Socket.cs changes.
31884
31885         * threadpool.c:
31886         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
31887         register a finalizer for it that will close the semaphore handle. This
31888         fixes the leak and make Lupus' test run with > 4080 loops.
31889
31890 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
31891
31892         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
31893         Jerome Laban (bug #42287)
31894
31895 2003-05-02  Martin Baulig  <martin@ximian.com>
31896
31897         * debug-mono-symfile.h
31898         (MonoSymbolFile): Moved declaration into mono-debug.h.
31899         (MonoDebugMethodJitInfo): Likewise.
31900         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
31901         argument.
31902         (_mono_debug_address_from_il_offset): Take a
31903         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
31904
31905         * mono-debug.h
31906         (MonoDebugDomainData): New struct.
31907         (mono_debug_get_domain_data): New function.
31908         (mono_debug_add_method): Take an additional `MonoDomain *'
31909         argument.
31910         (mono_debug_source_location_from_address): Likewise.
31911         (mono_debug_il_offset_from_address): Likewise.
31912         (mono_debug_address_from_il_offset): Likewise.
31913
31914 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
31915
31916         * reflection.c: one more check for null type in custom attrs.
31917
31918 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31919
31920         * reflection.c: avoid warning (comparison is always false due to limited
31921         range of data type).
31922
31923 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31924
31925         * icall.c: throw an exception in Type.GetField if the argument 'name'
31926         is NULL.
31927
31928 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
31929
31930         * reflection.c: fixed handling of enums in named arguments to custom
31931         attributes (bug #42123).
31932
31933 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
31934
31935         * reflection.c: use the right array element type and handle
31936         a null for a Type argument, too.
31937
31938 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
31939
31940         * reflection.c: handle arrays as arguments to custom attributes.
31941
31942 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31943
31944         * reflection.c: handle a string value in a custom attr
31945         ctor that takes an object.
31946
31947 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
31948
31949         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
31950         (fix bug #42063)
31951
31952 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
31953
31954         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
31955
31956 2003-04-27  Martin Baulig  <martin@ximian.com>
31957
31958         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
31959         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
31960         MONO_DEBUGGER_EVENT_BREAKPOINT.
31961         (mono_breakpoint_trampoline_code): Removed.
31962         (mono_debugger_event_handler): The last argument is now a
31963         `guint32'.
31964         (mono_debugger_insert_breakpoint_full): Removed the
31965         `use_trampoline' argument.
31966         (mono_debugger_method_has_breakpoint): Likewise.
31967         (mono_debugger_trampoline_breakpoint_callback): Renamed to
31968         mono_debugger_breakpoint_callback(); take the method and
31969         breakpoint number as arguments.
31970
31971 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
31972
31973         * metadata.c: fix off by one when loading parameters attributes.
31974
31975 2003-04-24  Martin Baulig  <martin@ximian.com>
31976
31977         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
31978
31979 2003-04-24  Martin Baulig  <martin@ximian.com>
31980
31981         * mono-debug-debugger.c: Moved all code which interacts with the
31982         Mono Debugger here.
31983
31984         * debug-mono-symfile.c: This code now just deals with the symbol
31985         file itself, the debugger code is now in mono-debug-debugger.c.
31986
31987 2003-04-23  Martin Baulig  <martin@ximian.com>
31988
31989         * mono-debug.c (mono_debug_source_location_from_il_offset):
31990         New method; like mono_debug_source_location_from_address(), but
31991         takes an IL offset instead of a machine address.
31992
31993 2003-04-23  Martin Baulig  <martin@ximian.com>
31994
31995         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
31996         `line' field; this is now computed by the debugger.
31997
31998 2003-04-23  Martin Baulig  <martin@ximian.com>
31999
32000         * mono-debug.[ch]: New files.  This is the new debugging interface.
32001
32002         * mono-debug-debugger.[ch]: New files.  Moved all code which
32003         interacts with the Mono Debugger here.
32004
32005 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
32006
32007         * domain.c (mono_init): initialize mono_defaults.monitor_class
32008
32009 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
32010
32011         * reflection.c (method_encode_code): Add a spicy exception to help
32012         future compiler authors.
32013
32014 2003-04-21  Martin Baulig  <martin@ximian.com>
32015
32016         * icall.c
32017         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32018         Make this work with relative pathnames; g_filename_to_uri() needs
32019         an absolute filename.
32020
32021 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
32022
32023         * icall.c: Track name changes in Object and ValueType.
32024
32025 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
32026
32027         * metadata.c (mono_type_stack_size): size should be a multiple of
32028         sizeof (gpointer)
32029
32030 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32031
32032         * gc.c:
32033         (internal_domain_finalize): moved into mono_domain_finalize. No need
32034         to create another thread because the finalizers will be run in the
32035         finalizer thread.
32036         
32037         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
32038         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
32039         to be run (MS does this too).
32040
32041 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
32042
32043         * object.c (mono_class_compute_gc_descriptor): Update comment.
32044
32045         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
32046
32047         * image.h: Add synchronized wrapper cache.
32048
32049         * image.c (do_mono_image_open): Initialize cache.
32050
32051         * reflection.c (create_dynamic_mono_image): Initialize cache.
32052
32053 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32054
32055         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
32056         ves_icall_System_Buffer_ByteLengthInternal.
32057
32058 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32059
32060         * reflection.c: setup klass->nested_in earlier. Allow
32061         a dash in the assembly name.
32062
32063 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
32064
32065         * metadata.c (mono_type_to_unmanaged): dont access
32066         type->data.klass for MONO_TYPE_OBJECT
32067         (mono_type_to_unmanaged): consider System.Delegate class
32068
32069 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
32070
32071         * class.c: just setup supertypes in the proper place instead of
32072         initializing the full element class for arrays.
32073
32074 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32075
32076         * class.c: ensure the element class of arrays is initialized.
32077         Setup the supertype info for array classes, too.
32078
32079 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
32080
32081         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
32082
32083 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32084
32085         * Makefile.am: re-added -m option when running cygpath. This way,
32086         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
32087         separator.
32088         * mono-config.c: same codepath for locating mono config file for WIN32
32089         and the rest.
32090         * assembly.c: if mono_assembly_setrootdir is called, don't override
32091         the value set.
32092
32093 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32094
32095         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32096         MONO_ASSEMBLIES variable.
32097
32098 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32099
32100         * icall.c: added Assembly::GetNamespaces() icall.
32101
32102 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32103
32104         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32105
32106 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
32107
32108         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32109         * object.c: fixed bug in the construction of vtable for proxies
32110
32111 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
32112
32113         * object.c (mono_array_new): Mark mono_array_new as an icall.
32114
32115 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32116
32117         * class.c: fixed test for public method when overriding interfaces.
32118         Closes bug #40970.
32119
32120 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32121
32122         * appdomain.h, domain.c: added mono_domain_foreach() to
32123         be able to access the currently loaded appdomains.
32124         * object.c: make string interning work across sppdomains.
32125         Mark some functions for use as icalls.
32126
32127 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
32128
32129         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32130
32131         * reflection.h reflection.c: Allocate long living data using 
32132         GC_MALLOC_ATOMIC so the collector does not need to scan it.
32133
32134         * reflection.c: Double the allocation size in streams instead of
32135         increasing it, to prevent unneccesary copying on large assemblies.
32136         
32137         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32138         creation if the assembly does not have the Run flag set.
32139
32140 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32141
32142         * class.h: avoid the C++ keywords in header files (Jerome Laban
32143         spotted and fixed this).
32144
32145 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32146
32147         * object.c:
32148         (mono_unhandled_exception): fill in the arguments for the
32149         UnhandledException event. Only trigger that event for the default
32150         domain (as MS does).
32151
32152 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
32153
32154         * object.c: Improve typed allocation stuff based on suggestions from
32155         Paolo. Also turn it on if the GC library supports it.
32156
32157 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32158
32159         * object.c object.h class.h: Added experimental typed allocation
32160         facility using the interfaces in gc_gcj.h.
32161
32162         * os/gc_wrapper.h: Added new include files.
32163         
32164 2003-04-03  Martin Baulig  <martin@ximian.com>
32165
32166         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32167         which is not yet enabled by default.
32168
32169         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32170         functions.
32171         (mono_gc_lock, mono_gc_unlock): New static functions.
32172
32173         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32174         functions; stop/start the world for the garbage collector.  This
32175         is using the windows API; we need to complete the SuspendThread()/
32176         ResumeThread() implementation in the io-layer to make this work on Unix.
32177         (mono_gc_push_all_stacks): New public function; tells the garbage
32178         collector about the stack pointers from all managed threads.
32179
32180 2003-04-03  Martin Baulig  <martin@ximian.com>
32181
32182         * object.h (MonoThread): Added `gpointer stack_ptr'.
32183
32184         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32185
32186 2003-04-03  Martin Baulig  <martin@ximian.com>
32187
32188         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32189
32190 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32191
32192         * reflection.c (typebuilder_setup_fields): Initialize field.first and
32193         field.last.
32194
32195 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
32196
32197         * loader.c (mono_lookup_internal_call): Report the corlib that is
32198         out of sync.
32199
32200 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
32201
32202         * icall.c (ves_icall_type_GetTypeCode): fixed check for
32203         System.DBNull (it's class not valuetype).
32204
32205 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32206
32207         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
32208         if the array method was already assigned a token (fixes bug#40646).
32209
32210 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
32211
32212         * reflection.c (mono_reflection_get_type): Attempt type resolve even
32213         if no assembly is given.
32214
32215 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
32216
32217         * metadata.h: Added the new tables.
32218
32219         * row-indexes.h: Added definitions for new tables.
32220
32221         * metadata.c: Add schemas for new tables, and add support for
32222         computing the sizes of them.
32223
32224         * class.c: Update for handling the new type cases.
32225
32226 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
32227
32228         * metadata.h (MONO_TYPE_IS_VOID): new macro
32229
32230 2003-03-31  Martin Baulig  <martin@ximian.com>
32231
32232         * threads.h (MonoThreadCallbacks): Added `thread_created'.
32233
32234         * threads.c (mono_thread_new_init): Call `thread_created' in the
32235         mono_thread_callbacks.
32236
32237 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
32238
32239         * loader.h: added marshalbyrefobject_class to mono_defaults
32240         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
32241         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
32242           generation of output parameters.
32243           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
32244         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
32245           contextbound and the target object belongs to the context of the caller.
32246         * object.h: added context and unwrapped_server variables in MonoRealProxy.
32247         * object.c: Implemented support for interfaces and abstract classes
32248           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
32249           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
32250
32251 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
32252
32253         * class.h class.c (mono_class_is_subclass_of): New function.
32254         
32255         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
32256         routines for most common case (calls from ArrayList::ToArray).
32257
32258         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
32259         routine so programs which call Environment::Exit() can be profiled.
32260
32261         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
32262         Added MONO_ARCH_SAVE_REGS.
32263
32264         * icall.c (ves_icall_type_is_subtype_of): Use new function.
32265
32266 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
32267
32268         * blob.h: Add a couple of new MonoType types definitions.
32269
32270         * tabledefs.h: Add a couple of new call convs.
32271
32272 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
32273
32274         * reflection.h (MonoReflectionDynamicAssembly): track changes in
32275         the layout of the class.
32276
32277         * reflection.c (alloc_table): double the size on overflow to avoid
32278         unnecessary copying.
32279
32280         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
32281         avoid filling out metadata tables and blobs. Also set mb->ilgen to
32282         null so it can be garbage collected.
32283         
32284 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
32285
32286         * reflection.c (mono_reflection_get_type): Return the resolved type
32287         only if it is in the assembly we searched.
32288
32289         * reflection.c (ensure_runtime_vtable): Initialize method slots.
32290
32291         * class.c (mono_class_setup_vtable): Set the slot of the overriding
32292         method.
32293
32294 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32295
32296         * appdomain.c:
32297         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
32298         the right one is 'file:///blah', but MS allows it.
32299         * assembly.c:
32300         (mono_assembly_open): allow 'file://blah'
32301
32302         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
32303
32304 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
32305
32306         * socket-io.c: fixes bug #40310.
32307
32308 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
32309
32310         * reflection.c (mono_reflection_parse_type): handle deeply nested
32311         types correctly.
32312
32313         * reflection.c (mono_image_create_token): Use unique token values
32314         since they will be put into a hash table.
32315
32316         * class.c (mono_class_setup_vtable): If a method occurs in more than
32317         one place in the vtable, and it gets overriden, then change the
32318         other occurances too.
32319
32320         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
32321         object as return type.
32322
32323 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32324
32325         * icall.c: Deleted "ToString" implementation for double and float
32326         because they are full implemented in managed code.
32327
32328 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32329
32330         * reflection.c, reflection.h: implemented and exported functions
32331         to retrieve info about custom attributes.
32332
32333 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32334
32335         * appdomain.c: moved Uri handling to assembly.c
32336         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32337         work when using a file Uri in *nix and windows.
32338
32339         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32340         GetReferencedAssemblies.
32341
32342 2003-03-18  Dick Porter  <dick@ximian.com>
32343
32344         * icall.c: Rename a couple of internal calls
32345
32346         * threads.c: Set the thread state to Stopped when a thread exits.
32347         Fixes bug 39377.
32348
32349 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
32350
32351         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32352         New icall.
32353
32354         * object.c (mono_class_vtable): fix warning.
32355
32356 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
32357
32358         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32359
32360         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32361         memory.
32362         (method_encode_clauses): Create exception info structures in the right
32363         order.
32364         (mono_reflection_setup_internal_class): Initialize supertypes field.
32365
32366         * class.c object.c: Handle interfaces which implement other interfaces 
32367         correctly.
32368
32369         * class.h class.c: Move the supertypes array initialization code into 
32370         a separate function so it can be used for dynamic types too. Also call
32371         it earlier, in mono_class_init(), since it can be used before the
32372         type is initialized.
32373
32374 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32375
32376         * Makefile.am:
32377         * assembly.c:
32378         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32379
32380         * appdomain.c:
32381         * appdomain.h:
32382         * marshal.c:
32383         * object.c: remove warnings.
32384
32385 2003-03-13  Martin Baulig  <martin@ximian.com>
32386
32387         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32388         (MonoDebugLexicalBlockEntry): New types.
32389
32390         * debug-mono-symfile.c
32391         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32392
32393 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32394
32395         * process.c: ret can be any non-zero value accroding to MS doc.
32396
32397 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32398
32399         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32400         fixing a warning for a miss-used prototype, would have cause
32401         random memory corruption.
32402
32403 2003-03-07  Martin Baulig  <martin@ximian.com>
32404
32405         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32406         getting really annoying ....
32407
32408 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32409
32410         * reflection.c (fixup_method): added support for array methods.
32411
32412 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32413
32414         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32415         (pointed out by Michael Adams).
32416
32417 2003-03-04  Dick Porter  <dick@ximian.com>
32418
32419         * icall.c: Temporarily reverted the Double and Single ToString()
32420         change, because it broke nunit.
32421
32422 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32423
32424         * object.h, threads.h: make include files compatible with C++
32425         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32426
32427 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32428
32429         * icall.c: Erased ToString helper functions for Double and Single.
32430         Now, that implementations ar all in managed code (Double and Single
32431         Formatters).
32432
32433 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32434
32435         * appdomain.c: Added method for initializing the default context of
32436         a domain. Added internal call for getting the default context.
32437         * appdomain.h: Added context variable in MonoDomain struct.
32438         * domain.c: mono_domain_set also sets the default context of the domain
32439         * icall.c: Mapped internal method InternalGetDefaultContext.
32440         * object.c: mono_object_get_virtual_method returns always a remoting
32441         wrapper if the object is a transparent proxy.
32442         mono_runtime_invoke_array: when creating an object by calling the
32443         constructor, if the created object is a proxy, then the constructor should
32444         be called using the a remoting wrapper.
32445
32446 2003-03-03  Dick Porter  <dick@ximian.com>
32447
32448         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32449         variable so it compiles on solaris.  Problem spotted by
32450         Christopher Taylor <ct@cs.clemson.edu>
32451
32452 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32453
32454         * appdomain.c:
32455         (get_info_from_assembly_name): don't leak value.
32456
32457         * icall.c:
32458         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32459         result.
32460
32461 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32462
32463         * assembly.c: export mono_image_load_references ().
32464         * class.c: handle function pointers. mono_class_from_name() now
32465         supports nested type names directly.
32466
32467 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32468
32469         * reflection.h reflection.c: Encode already created dynamic methods 
32470         and fields correctly as a DEF instead of a REF.
32471
32472         * reflection.c: Get rid of the force_ref argument to 
32473         mono_image_typedef_or_ref since it was wrong in the first place.
32474
32475         * string-icalls.c: add error checking to string constructors according
32476         to the MSDN docs.
32477
32478         * reflection.c: Emit types in the order their TypeBuilders were 
32479         created. Previously, a new table index was assigned to each type before
32480         the tables were emitted. This was wrong because the signature blob
32481         might already refer to a type by its original table index.
32482
32483 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32484
32485         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32486         change.
32487         
32488 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32489
32490         * Makefile.am: make assemblies dir have \ instead of / on windows.
32491
32492 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32493
32494         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32495         iterate over the NESTEDCLASS table using a linear search since the
32496         table is not guaranteed to be sorted by the secondary key.
32497
32498         * class.c (mono_class_create_from_typedef): fixed up call to
32499         mono_metadata_nesting_typedef.
32500         
32501 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32502
32503         * marshal.c (mono_string_to_byvalstr): clear the memory as
32504         suggested by Jerome Laban <jlaban@wanadoo.fr>
32505
32506 2003-02-26  Dick Porter  <dick@ximian.com>
32507
32508         * process.c: Cope with padding in .rsrc blocks
32509
32510 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32511
32512         * metadata.h: reverted the filter_len change, it breaks reflection
32513         
32514 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32515
32516         * metadata.h: added a new field to store the filter_len
32517         
32518
32519 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32520
32521         * reflection.c: handle custom attributes for types and members
32522         created with Reflection.Emit (bug#38422).
32523
32524 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32525
32526         * reflection.c: define RTSpecialName automatically for constructors for
32527         compatibility with MS.NET.
32528
32529         * reflection.c (mono_reflection_create_runtime_class): initialize
32530         nested_in field of dynamically created classes.
32531
32532 2003-02-22  Martin Baulig  <martin@ximian.com>
32533
32534         * debug-mono-symfile.h: Incremented version number.
32535
32536 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32537
32538         * object.h icall.c process.c: fix warnings.
32539
32540 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32541
32542         * appdomain.h appdomain.c:
32543         (mono_domain_try_type_resolve): split the 
32544         name_or_tb argument into a name and a tb argument.
32545         (mono_domain_has_type_resolve): new function to check whenever the
32546         application has registered a TypeResolve event handler.
32547         
32548         * icall.c reflection.h reflection.c: move the type resolve logic into
32549         mono_reflection_get_type () so it will be invoked when 
32550         Assembly::GetType () is called.
32551
32552         * reflection.c:
32553         (mono_reflection_get_type): renamed to get_type_internal.
32554         (mono_reflection_get_type): fixed type name generation so it works 
32555         for nested types too.
32556         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32557         costly type name generation if there is no resolve event handler.
32558
32559 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32560
32561         * class.c, image.c: load exported types from file references.
32562
32563 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32564
32565         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32566           used to cache the managed methods used to create proxies and make 
32567           remote invocation of methods.
32568         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32569           to be remotely created.
32570         * object.c: Modified the method mono_class_vtable(). It now initializes 
32571           the remote flag of the vtable. Modified mono_object_new_specific(), 
32572           so now it checks the remote flag.
32573         * icall.c: Added a couple of internal methods, one for enabling instance 
32574           creation interception for a type, and one for creating objects bypassing
32575           the remote check.
32576
32577 2003-02-18  Martin Baulig  <martin@ximian.com>
32578
32579         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32580         New interncall to get a method's metadata token.
32581
32582         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32583         New interncall for the debugger.
32584
32585 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32586
32587         * class.c (mono_class_setup_vtable): allocate supertype array
32588
32589 2003-02-18  Martin Baulig  <martin@ximian.com>
32590
32591         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32592
32593 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32594
32595         * reflection.c:
32596         (assembly_name_to_aname): jump over unknown properties (i've found
32597         something like: 'type, assembly, version=xxx, custom=null, public...',
32598         so now will ignore custom=null and still get the rest of the values).
32599
32600 2003-02-17  Dick Porter  <dick@ximian.com>
32601
32602         * threads.c: Have Thread.Start() wait for a semaphore to signal
32603         that the thread has set up all its local data.  This fixes bug
32604         34323, where Abort() raced the new thread's TLS data.
32605
32606         Also removes the handle_store() call from start_wrapper, because
32607         threads are now always created suspended and there is no longer a
32608         race between the parent and child threads to store the info.
32609
32610 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
32611
32612         * image.c: explain the #- heap issue in a message, hopefully
32613         avoiding FAQs on mono-list.
32614
32615 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32616
32617         * icall.c:
32618         (GetEntryAssembly): if the domain has not invoked
32619         AppDomain.ExecuteAssembly yet, return the assembly of the default
32620         AppDomain.
32621
32622 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
32623
32624         * class.c (mono_ldtoken): make it work in dynamic assemblies.
32625
32626 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
32627
32628         * metadata.c, reflection.c: simple speedup to type hash
32629         and equals code.
32630
32631 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
32632
32633         * image.c, image.h, class.c, assembly.c: move module loading
32634         to MonoImage. When loading metadata, consider alignemnet from
32635         the start of metadata, not from the metadata address in memory.
32636
32637 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
32638
32639         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
32640         AssemblyBuilder objects. Factored out custom attribute creation into
32641         a separate function.
32642         (create_custom_attr): new function to create custom attributes.
32643
32644 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
32645
32646         * Makefile.am: Got tired of typing the full pathname to pedump.
32647         Until there is another option, am installing this.
32648
32649 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
32650
32651         * class.c (class_compute_field_layout): always set field->parent 
32652         (mono_ldtoken): use mono_defaults.fieldhandle_class;
32653
32654 2003-02-11  Dick Porter  <dick@ximian.com>
32655
32656         * threads-types.h:
32657         * monitor.c: Rewrote Monitor, making lock much faster and
32658         Pulse/Wait work as specified.  Also uses much fewer handles, and only
32659         creates them as needed.
32660
32661         * exception.c: Added SynchronizationLockException
32662
32663         * threads.c: Deleted old Monitor implementation.  The new one is
32664         in a new file.
32665
32666 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
32667
32668         * class.c: handled TypedReference type code. Set the correct size for
32669         class data. Setup interface_offsets for interface classes, too.
32670
32671 2003-02-09  Martin Baulig  <martin@ximian.com>
32672
32673         * debug-mono-symfile.h: Reflect latest symbol writer changes.
32674
32675 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
32676
32677         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
32678         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
32679         * object.c: fixed mono_object_get_virtual_method () for interfaces.
32680         * verify.c: check for code that runs after the end of the method.
32681
32682 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32683
32684         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
32685         "System.Math::Round2".
32686         * sysmath.h: Added Floor, Round and Round2 definitions.
32687         * sysmath.c: Modified certain functions that were not 100% compliant
32688         with MS.NET (math precision) and added the implementation of Floor,
32689         Round and Round2.
32690
32691 2003-02-07  Martin Baulig  <martin@ximian.com>
32692
32693         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
32694
32695 2003-02-07  Martin Baulig  <martin@ximian.com>
32696
32697         * debug-mono-symfile.c: Reflected latest symwriter changes.
32698         (mono_debug_create_mono_symbol_file): Removed.
32699         (mono_debug_open_mono_symbol_file): Take an argument which
32700         specifies whether to create a dynamic symbol file.
32701
32702 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
32703
32704         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
32705
32706 2003-02-05  Martin Baulig  <martin@ximian.com>
32707
32708         * reflection.c (mono_image_build_metadata): Make this public,
32709         protect it against being called multiple times, don't create
32710         resources and don't build the compressed metadata here.
32711         (mono_image_create_pefile): Do this here.
32712
32713         * icall.c
32714         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
32715
32716 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32717
32718         * socket-io.c: fixed bug #36322.
32719
32720 2003-02-06  Piers Haken <piersh@friskit.com>
32721
32722         * appdomain.[ch]:
32723         * class.h:
32724         * debug-mono-symfile.c:
32725         * icall.c:
32726         * loader.c:
32727         * mono-config.c:
32728         * monosn.c:
32729         * reflection.c:
32730         * socket-io.c: warning cleanups
32731
32732 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
32733
32734         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
32735         function. works like remoting invoke, but does a check for the Proxy first.
32736
32737 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
32738
32739         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
32740
32741 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
32742
32743         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
32744         array of pointers.
32745         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
32746         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
32747
32748         * object.c (mono_store_remote_field_new): used by the new jit
32749         instead of mono_store_remote_field
32750         (mono_load_remote_field_new): used by the new jit
32751         instead of mono_load_remote_field
32752
32753 2003-02-05  Patrik Torstensson
32754
32755         * appdomain.c: changed unload to take the domain id instead
32756         of domain
32757         
32758         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
32759
32760
32761 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32762
32763         * appdomain.c: don't look for assemblies in ApplicationBase if
32764         PrivateBinPathProbe is set.
32765
32766 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32767
32768         * object.c: make the first argument in main_args contain the absolute
32769         path to the assembly. Fixes bug #37511.
32770
32771 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32772
32773         * icall.c: get correct UTC offset for countries not using daylight
32774         time saving. Fixes bug #30030.
32775
32776 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32777
32778         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
32779         and 1 are the family).
32780
32781 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
32782
32783         * icall.c (ves_icall_InternalExecute): removed wrong assertion
32784
32785         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
32786
32787 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
32788
32789         * reflection.c: added support for SignatureHelper tokens, which is
32790         needed by the Calli opcode.
32791
32792         * reflection.h: track changes to SignatureHelper class.
32793
32794         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
32795
32796 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32797
32798         * appdomain.c: fixed loading assemblies from PrivateBinPath.
32799
32800 2003-02-03  Patrik Torstensson
32801         * appdomain.[c|h], domain.c : 
32802          - Added support for getting a domain via domain id
32803          - Support for setting and getting domain from System.AppDomain 
32804            (used in cross appdomain channel)
32805          - Added support for get/set for a MonoAppContext on a thread 
32806            (Context class in System.Runtime.Remoting.Contexts),
32807          - Removed hack in Get/SetData and ExecuteAssembly.
32808         
32809         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
32810         the managed world to get control when a proxy is created.
32811
32812         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
32813         
32814 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
32815
32816         * icall.c
32817         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32818         Populate the codebase field as well.
32819
32820 2003-02-02  Martin Baulig  <martin@ximian.com>
32821
32822         * debug-mono-symfile.c
32823         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
32824         (mono_debug_symfile_add_method): Allow interncalls.
32825
32826 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32827
32828         * icall.c: throw parse exception if strtod fails or the string is empty.
32829
32830 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
32831
32832         * marshal.c: handle object type separately from defined
32833         class types.
32834
32835 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
32836
32837         * marshal.c: handle NATIVE_LPSTR for strings when it's
32838         explicitly specified.
32839
32840 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
32841
32842         * reflection.c, reflection.h, icall.c: setup the reflection
32843         handle cache for ModuleBuilders and AssemblyBuilders.
32844
32845 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
32846
32847         * reflection.c (reflection_methodbuilder_to_mono_method): set
32848         pinvoke flag
32849
32850 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32851
32852         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
32853
32854 2003-01-29  Dick Porter  <dick@ximian.com>
32855
32856         * threads.c: No need for the fake_thread kludge now that Thread
32857         doesn't run a class constructor
32858         
32859 2003-01-29  Dick Porter  <dick@ximian.com>
32860
32861         * threads.c: Use g_direct_hash instead of the rather bogus
32862         g_int_hash
32863
32864 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
32865
32866         * marshal.c (mono_marshal_get_native_wrapper): add check for null
32867         (fix pinvoke12.exe)
32868         (mono_marshal_get_struct_to_ptr): generate valid IL code
32869         (mono_marshal_get_ptr_to_struct): generate valid IL code
32870         (*): correctly set sig->pinvoke, we need to memdup the signature
32871         to do that
32872
32873 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32874
32875         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
32876         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
32877
32878 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32879
32880         * profiler.c: provide more callers information.
32881
32882 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
32883
32884         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
32885
32886         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
32887
32888         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
32889
32890 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32891
32892         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
32893         exception instead of going into an infinite loop on dates which it 
32894         can't yet handle.
32895
32896         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
32897         out-of-range exception if needed.
32898
32899         * class.c (mono_class_setup_vtable): allow a virtual method to provide
32900         an implementation for an interface method and to override an inherited
32901         method at the same time. 
32902         Imagine a scenario when a virtual method is used to override a
32903         virtual abstract method in a parent class, and this same method 
32904         provides an implementation for an method inherited from an interface. 
32905         In this case, the interface resolution code will set im->slot, which 
32906         means that the virtual method override pass will skip this method 
32907         which means a pointer to the abstract method inherited from the parent
32908         will remain in the vtable of this non-abstract class.
32909
32910         * class.c: (mono_class_setup_vtable): continue search for a real 
32911         method if only an abstract method is found.     
32912
32913 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32914
32915         * reflection.c: add size to encoding for ByValStr and ByValArray
32916         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
32917
32918 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32919
32920         * class.c (mono_class_setup_vtable): pass the override info as an
32921         argument.
32922
32923         * class.c (mono_class_setup_vtable): set the slot of overriding methods
32924         correctly.
32925         
32926         * reflection.c (ensure_runtime_vtable); add support for method 
32927         overrides.
32928         
32929 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32930
32931         * reflection.c (resolution_scope_from_image): Hack to work to work with
32932         dynamic assemblies.
32933
32934         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
32935         added a 'force_ref' argument to force this function to allways return 
32936         a TypeRef. This is needed by mono_image_get_memberref_token ().
32937         
32938 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32939
32940         * reflection.c (mono_image_get_type_info): interfaces really don't have
32941         a parent.
32942
32943         * reflection.c (mono_image_basic_init): fill out missing fields of
32944         image structure.
32945
32946         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
32947         dynamic assemblies. This is required so dynamic assemblies show up in
32948         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
32949         Type::GetType() etc. This is consistent with MS behaviour.
32950
32951         * image.c image.h reflection.c: add newly created classes to the name 
32952         cache so mono_class_get () will find them.      
32953
32954 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32955
32956         First part of changes to get IKVM.NET running under mono.
32957         
32958         * appdomain.h, appdomain.c: added new function 
32959         mono_domain_try_type_resolve() which will emit TypeResolve events. 
32960         This function will call AppDomain::DoTypeResolve to do the actual work.
32961
32962         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
32963         moved existing code dealing with dynamic tokens to a new function 
32964         called mono_reflection_lookup_dynamic_token (). This function will 
32965         raise TypeResolve events when appropriate. Since reflection.c is not 
32966         part of libmetadata, a new hook function called 
32967         mono_lookup_dynamic_token() is added to class.c which will call this.
32968
32969         * assembly.h assembly.c: make the invoke_load_hook function public,
32970         so it can be called for dynamic assemblies.
32971
32972         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
32973
32974         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
32975         type isn't found.
32976
32977         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
32978         MonoGHashTable, since it contains pointers to objects which the GC 
32979         needs to track.
32980
32981         * assembly.c (search_loaded): remove unused variable.
32982         
32983 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
32984
32985         * object.c: fixed issue exposed by gcc-generated IL programs
32986         that use RVA data for pointers.
32987
32988 2003-01-25  Martin Baulig  <martin@ximian.com>
32989
32990         * threads.c (start_wrapper): Moved the initialization of
32991         `start_func' above the mono_new_thread_init() call to which we
32992         pass it as argument.
32993
32994 2003-01-24  Martin Baulig  <martin@ximian.com>
32995
32996         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
32997         the MonoThread pointer.
32998
32999 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
33000
33001         * icall.c: Rename `PowImpl' to Pow.
33002
33003 2003-01-23  Dick Porter  <dick@ximian.com>
33004
33005         * threads.c (start_wrapper): Create a Thread object if needed, so
33006         the Main() thread can do the class initialisation in a subthread
33007         that has been set up to allow managed code execution.
33008
33009         Pass the thread ID instead of the MonoThread pointer to the thread
33010         start and attach callbacks.  This change is required, because the
33011         jit thread start callback must be called _before_ the Thread
33012         object can be created.
33013         
33014         (mono_thread_init): Removed much object creation code that is no
33015         longer needed.  No managed code is called from here now.
33016
33017         * object.c (mono_runtime_exec_managed_code): Create a subthread
33018         for Main, and call back to the runtime to use it.
33019         Set the exit code when Main exits.
33020
33021         * gc.c: Make sure domain finalisation happens in a subthread.
33022         Re-enable threaded GC, fixing bug 31333 (again).
33023
33024         * environment.c: System.Environment internall calls (so far just
33025         ExitCode is here, the others are still in icall.c)
33026
33027         * appdomain.c (mono_runtime_cleanup): All threads running managed
33028         code should have finished before mono_runtime_cleanup() is
33029         reached, so no need to clean up threads.
33030
33031 2003-01-22  Martin Baulig  <martin@ximian.com>
33032
33033         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
33034         `gpointer func' arguments.      
33035         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
33036         but added `MonoThread *thread' argument.
33037         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
33038
33039         * threads.c (mono_new_thread_init): Added `gpointer func' argument
33040         and pass it to the mono_thread_start_cb callback.
33041         (mono_install_thread_callbacks): New public function to install a
33042         set of callbacks which are set by the debugger.
33043         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
33044
33045 2003-01-22  Martin Baulig  <martin@ximian.com>
33046
33047         * Makefile.am: Install debug-mono-symfile.h.
33048
33049 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
33050
33051         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
33052
33053 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
33054
33055         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
33056         * class.c (mono_ptr_class_get): correctly set access levels of pointers
33057         (mono_array_class_get): correctly set access levels of arrays
33058
33059 2003-01-20      Patrik Torstensson
33060         * image.h (MonoAssemblyName): changed major, minor, build, revision
33061         from signed to unsigned.
33062
33063 2003-01-20  sean kasun <skasun@azstarnet.com>
33064
33065         * reflection.c (load_cattr_value): Now this handles
33066         MONO_TYPE_SZARRAY.  Fixes bug #35629
33067
33068 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
33069
33070         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
33071         integer value
33072
33073 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33074
33075         * decimal.c: fixed bug #26056.
33076
33077 2003-01-17  Martin Baulig  <martin@ximian.com>
33078
33079         * gc.c: Raise an ExecutionEngineException instead of using g_error().
33080
33081 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33082
33083         * exception.[ch]:
33084         (mono_get_exception_type_initialization): new function.
33085
33086         * object.c: throw a TypeInitializationException when an exception is
33087         thrown invoking the class constructor.
33088
33089 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33090
33091         * reflection.c: fixed attribute reading.
33092
33093 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33094
33095         * icall.c:
33096         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33097         provided, look for the type in the calling assembly and then in
33098         mscorlib; if the assembly name is provided, only try that one.
33099
33100 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33101
33102         * object.c: register the vtable before there is a chance it's
33103         queried again recursively.
33104
33105 2003-01-13  Duncan Mak  <duncan@ximian.com>
33106
33107         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33108         gc-internal.h. 
33109         
33110 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
33111
33112         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33113
33114 2003-01-11  Martin Baulig  <martin@ximian.com>
33115
33116         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33117         this to 20 for the release.
33118
33119 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
33120
33121         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33122
33123         * loader.c (mono_method_get_marshal_info): bug fix
33124
33125         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33126         structures with explicit layout
33127
33128 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33129
33130         * profiler.c: made the output more readable (and sorted). 
33131         Added caller information for the allocation profiler.
33132
33133 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
33134
33135         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33136
33137 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33138
33139         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33140         to get value types.
33141         
33142 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33143
33144         * object.c, profiler.h, profiler.c, profiler-private.h:
33145         Added object allocation profiler.
33146
33147 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33148
33149         * reflection.h, reflection.c: handle global methods.
33150         Compress blob entries.
33151
33152 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33153
33154         * marshal.c: fix compilation.
33155
33156 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
33157
33158         * loader.c (mono_method_get_marshal_info): impl.
33159
33160         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33161
33162 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33163
33164         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33165         for reference types.
33166
33167 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33168
33169         * loader.c: fixed off by one error in loaded parameter names.
33170
33171 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
33172
33173         * marshal.c (mono_marshal_get_icall_wrapper): like
33174         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33175         instead of a MonoMethod.
33176
33177 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33178
33179         * decimal.c: fixed bug #36537.
33180
33181 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33182
33183         * marshal.c: throw a missing method exception if a
33184         P/Invoke method is not found.
33185
33186 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33187
33188         * icall.c: allow a null this for constructors.
33189
33190 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33191
33192         * icall.c: raise the proper exceptions if the arguments to the
33193         internal Invoke are incorrect.
33194
33195 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
33196
33197         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
33198
33199 2003-01-03  Martin Baulig  <martin@ximian.com>
33200
33201         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33202
33203 2002-12-31  Martin Baulig  <martin@ximian.com>
33204
33205         * debug-mono-symfile.c: Completely rewrote the type section.
33206         Instead of using individual malloc()ed fields, we use one big
33207         continuous memory area and offsets into this area.
33208         See the comments in the source code for details.
33209
33210 2002-12-30  Martin Baulig  <martin@ximian.com>
33211
33212         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
33213
33214 2002-12-30  Martin Baulig  <martin@ximian.com>
33215
33216         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
33217         line number table in this data blob instead of using an external
33218         pointer.
33219
33220 2002-12-28  Martin Baulig  <martin@ximian.com>
33221
33222         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33223
33224 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
33225
33226         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
33227         as a boxed return type.
33228
33229 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
33230
33231         * appdomain.c
33232         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
33233         g_build_filename to properly get separators on the filename created.
33234
33235         * object.h: Small change, introduce MonoMarshalByRefObject to
33236         track the layout of that structure in the C# universe as we make
33237         changes there.
33238
33239 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
33240
33241         * object.c: removed assert to allow static fields on interfaces.
33242         * loader.c: a TypeSpec may be used for any type, not just arrays.
33243
33244 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33245
33246         * class.c, class.h: added mono_class_array_element_size ().
33247         Ignore static methods in interfaces.
33248
33249 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33250
33251         * threads.c: fixed the build under cygwin.
33252
33253 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33254
33255         * reflection.c: handle nullref constants. Allocate keys for
33256         reflection handles with the GC.
33257
33258 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33259
33260         * threads.c, threads.h: added mono_thread_get_abort_signal()
33261         to get a suitable signal for thread abort.
33262
33263 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33264
33265         * metadata.c: fix handling of ExportedType table.
33266
33267 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33268
33269         * icall.c: added WriteWindowsDebugString internal call.
33270
33271 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33272
33273         * reflection.h: added fields to match C# implementation.
33274
33275 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33276
33277         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
33278
33279 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
33280
33281         * gc.h, gc-internal.h: Rename header for GC internal calls to
33282         gc-internal.h from gc.h as to not clash with Boehm GC having its
33283         header installed as <gc.h> in outside include paths.
33284         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
33285         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
33286
33287 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33288
33289         * icall.c: assign minor, build and revision in FillName.
33290
33291 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
33292
33293         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
33294         Added support for running code generated by Reflection.Emit.
33295
33296 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33297
33298         * appdomain.c: check for NULL argument in LoadFrom.
33299
33300 2002-12-10  Dick Porter  <dick@ximian.com>
33301
33302         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
33303
33304 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33305
33306         * appdomain.c: fix buglet when building exe file name.  Handle full
33307         assembly name (needed after latest changes to AssemblyName).
33308         * image.c:
33309         (mono_image_close): free some hashtables.
33310
33311 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
33312
33313         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
33314         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
33315         on some systems (redhat 7.3) 
33316
33317 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
33318
33319         * threads.c: delete the critical section of a sync block,
33320         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
33321
33322 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
33323
33324         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
33325
33326 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33327
33328         * appdomain.[ch]: handle the assembly preload event to try loading the
33329         assemblies using the paths we have in the current domain.
33330
33331         * assembly.[ch]: created an assembly preload hook that is called to try
33332         loading the assembly by other means that the ones provided here.
33333
33334         * domain.c: initialize the domain search path.
33335
33336         From now on, assemblies (TODO: except corlib and System) are loaded
33337         according to these rules when using mono_assembly_load ():
33338
33339                 1. It tries to load the assembly from the ApplicationBase
33340                 of the current domain appending .dll and .exe (TODO: have to
33341                 try loading from name/name.dll and name/name.exe).
33342
33343                 2. It tries the search path specified in PrivateBinPath for the
33344                 current domain (if any).
33345
33346                 3. Previous behavior.
33347
33348 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33349
33350         * icall.c: implemented GetInterfaceMap() related icall.
33351         * domain.c, loader.h: load MethodInfo in mono_defaults.
33352
33353 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33354
33355         * gc.c: disable the finalizer thread for now, untill all the issues
33356         with it are resolved.
33357
33358 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33359
33360         * string-icalls.c: handle embedded nulls in string ctor when the
33361         length is specified.
33362
33363 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33364
33365         * class.c: look for explicit interface implementation in parent
33366         classes, too.
33367
33368 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
33369
33370         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
33371
33372 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33373
33374         * gc.c: protect handles with a critical section.
33375
33376 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33377
33378         * icall.c:
33379         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33380         parameters. If no assembly specified, try getting the type from all
33381         the assemblies in the current domain, else, load the assembly and get
33382         the type from it.
33383
33384 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33385
33386         * marshal.c: applied patch from Aleksey Demakov that fixes
33387         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33388
33389 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33390
33391         * icall.c: fixed get_location.
33392
33393 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33394
33395         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33396         declarations to make it work with older gcc. 
33397
33398         * loader.c (mono_get_method): set signature->pinvoke for native calls
33399
33400 2002-11-20  Dick Porter  <dick@ximian.com>
33401
33402         * threads.c (mono_thread_init): Set the main thread's handle
33403
33404 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33405
33406         * gc.c: allow compilation without GC support. Changed to match the
33407         mono coding style.
33408
33409 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33410
33411         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33412
33413 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33414
33415         * reflection.c: set a public key token on the core assemblies.
33416
33417 2002-11-18  Dick Porter  <dick@ximian.com>
33418
33419         * threads.c: Split out some thread initialisation so that other
33420         files can set the start callback function.
33421
33422         * gc.c: Run finalisers in a separate thread, to avoid stack
33423         overflow.  Fixes bug 31333.
33424
33425         * appdomain.c: Set up GC finalisation thread.
33426
33427         * reflection.c: 
33428         * object.c: 
33429         * domain.c: Use gc.h macros for GC_malloc
33430         
33431 2002-11-15  Dick Porter  <dick@ximian.com>
33432
33433         * threadpool.c: 
33434         * threads.c:
33435         * appdomain.c: Removed mono_runtime_init_with_attach(),
33436         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33437         merging the extra parameter with the existing function.  Removed
33438         unneeded code in mono_thread_attach().
33439
33440 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33441
33442         * image.c (mono_image_loaded_by_guid): a method to get loaded
33443         images by guid. 
33444         (load_metadata_ptrs): we store the guid as string.
33445
33446 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33447
33448         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33449
33450         * metadata.c (mono_guid_to_string): imported method form Zoltan
33451         Varga (slightly modified)
33452
33453         * assembly.c (mono_assembly_open): load precompiled code
33454
33455         * loader.h (MonoMethod): we store the method token for use in the
33456         aot compiler. 
33457
33458 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33459
33460         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33461         the hook function called when an assembly is loaded.
33462         
33463         * domain.c: Modified file.
33464         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33465
33466         Fixes bug #33196.
33467
33468 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33469
33470         * reflection.c: Map PEFileKind to the value expected by the WinNT
33471         image loader. 
33472
33473 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33474
33475         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33476         Read until the buffer is filled completely.
33477
33478 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33479
33480         * icall.c: implemented MonoType.InternalGetEvent ().
33481
33482 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33483
33484         * appdomain.c: implemented InitAppDomainSetup. Delayed
33485         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33486         the entry_assembly.
33487
33488         * assembly.c: base_dir is now an absolute path ending with
33489         G_DIR_SEPARATOR.
33490
33491         * icall.c: modified get_location according to the above changes.
33492
33493         * object.c: init AppDomain.SetupInformation for the default domain after
33494         we have the entry assembly.
33495
33496         * domain.c: when unloading a domain, setup = NULL.
33497
33498 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33499
33500         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33501
33502 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33503
33504         * object.h, object.c: introduced mono_object_get_virtual_method ()
33505         to lookup the method invoked on an object when a callvirt is done on
33506         a method.
33507         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33508
33509 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33510
33511         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33512         current domain when loaded an assembly and failed to load it.
33513
33514         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33515
33516 2002-10-31  Dick Porter  <dick@ximian.com>
33517
33518         * icall.c: 
33519         * file-io.h: 
33520         * file-io.c: Return the error status in a parameter, as the
33521         GetLastError() value has long since been blown away if we try and
33522         look it up in a subsequent internal call invocation.  Delete the
33523         GetLastError() internal call, because it's useless.
33524
33525 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33526
33527         * class.[ch]: added cast_class to fix bug 29517
33528
33529 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33530
33531         * marshal.c: create valid IL code in the filter clause:
33532         the new JIT is less forgiving:-)
33533
33534 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33535
33536         * icall.c: removed get_property internal call.
33537
33538 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33539
33540         * appdomain.h domain.c: Added an ID to appdomains.
33541         
33542         * threads.c threads.h icall.c: Implement icall
33543         Thread:GetDomainID(), and remove unused icall 
33544         CurrentThreadDomain_internal.
33545
33546 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33547
33548         * icall.c: Don't recurse through the base types in GetConstructor.
33549         Fixes bug #32063. 
33550
33551 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33552
33553         * mempool.h, mempool.c: added mono_mempool_empty() and
33554         mono_mempool_stats().
33555
33556 2002-10-23  Dick Porter  <dick@ximian.com>
33557
33558         * file-io.c: 
33559         * file-io.h: 
33560         * icall.c: Added MonoIO.GetFileType internal call
33561
33562 2002-10-17  Dick Porter  <dick@ximian.com>
33563
33564         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33565         delegate semaphore before waiting for all threads to finish,
33566         because new threads can also call async delegates.  Fixes bug
33567         32004.
33568
33569         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33570         of 3 seconds, in case another async job is queued.  (This part is
33571         needed because the bug fix reintroduced the 3s exit lag.)  This
33572         makes the mono_runtime_shutdown flag superfluous.
33573
33574 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33575
33576         * reflection.c: include ehader size in method section headers.
33577         Really check for suplicated modules entries.
33578
33579 2002-10-17  Martin Baulig  <martin@gnome.org>
33580
33581         * debug-mono-symfile.c: Added back support for locals.
33582
33583 2002-10-14  Martin Baulig  <martin@gnome.org>
33584
33585         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33586         MONO_TYPE_VOID.
33587
33588 2002-10-14  Martin Baulig  <martin@gnome.org>
33589
33590         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33591         mono_class_get() instead of looking in the class cache. 
33592
33593 2002-10-13  Martin Baulig  <martin@gnome.org>
33594
33595         * debug-mono-symfile.c: Set version number to 28, include the
33596         signature in method names.
33597
33598 2002-10-13  Martin Baulig  <martin@gnome.org>
33599
33600         * debug-mono-symfile.h: Set version number to 27.
33601
33602 2002-10-11  Martin Baulig  <martin@gnome.org>
33603
33604         * gc.c: Don't register/unregister NULL pointers as disappearing links.
33605
33606 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33607
33608         * metadata.c, metadata.h: added helper function to allocate signatures.
33609
33610 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33611
33612         * icall.c: added internal call to get the location of machine.config.
33613
33614 2002-10-08  Martin Baulig  <martin@gnome.org>
33615
33616         * debug-mono-symfile.c: Ignore classes with a pending init for the
33617         moment.
33618
33619 2002-10-03  Dick Porter  <dick@ximian.com>
33620
33621         * threads.c: Freebsd pthread_t is a pointer
33622
33623 2002-10-03  Dick Porter  <dick@ximian.com>
33624
33625         * socket-io.c: Implemented GetHostName_internal
33626
33627 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33628
33629         * mono-config.c:
33630         (mono_config_parse_file): don't leak the text.
33631
33632 2002-10-02  Martin Baulig  <martin@gnome.org>
33633
33634         * debug-mono-symfile.c: Added support for methods.
33635
33636 2002-10-01  Martin Baulig  <martin@gnome.org>
33637
33638         * debug-mono-symfile.c: Don't emit methods and line numbers for
33639         the dynamic symbol file, just write the type table.  We can easily
33640         have an external helper program which creates a symbol file for an
33641         IL file.        
33642
33643 2002-10-01  Dick Porter  <dick@ximian.com>
33644
33645         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
33646         Only add the handle to the cleanup array when we're about to
33647         launch the thread.  Bug 31425 deadlocked when the test was run on
33648         mono under w32.
33649
33650 2002-10-01  Martin Baulig  <martin@gnome.org>
33651
33652         * debug-mono-symfile.c: Added support for properties.
33653
33654 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33655
33656         * reflection.c: unaligned store fix from Mark Crichton
33657         <crichton@gimp.org>.
33658
33659 2002-09-27  Martin Baulig  <martin@gnome.org>
33660
33661         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
33662         New interncall.
33663
33664 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33665
33666         * assembly.h, assembly.c: use a sane API to hook into the assembly
33667         loading process instead of a useless special-purpouse hack
33668         (ngen needs a hook, too, for example).
33669
33670 2002-09-27  Dick Porter  <dick@ximian.com>
33671
33672         * threads.c (mono_thread_init): Call GetCurrentProcess() so
33673         io-layer can set up some process handle info.  Not needed on w32,
33674         but doesn't hurt either.
33675
33676         * process.c: Pass the program name in the second parameter to
33677         CreateProcess, so the path is searched.  Include the working
33678         directory. Implemented process name, process enumeration, and some
33679         process detail internal calls.
33680         
33681         * icall.c: Added internal calls for process lookup, and some
33682         process details
33683
33684 2002-09-26  Martin Baulig  <martin@gnome.org>
33685
33686         * assembly.c (mono_install_open_assembly_hook): New global
33687         function to install a function to be invoked each time a new
33688         assembly is loaded.
33689         (mono_assembly_open): Run this callback function if set.
33690
33691         * debug-mono-symfile.c: Put back line numbers for the dynamic
33692         symbol file and also record the .il file as source file.  This
33693         allows us to install the temporary symbol file as `file.dbg' just
33694         like a compiler-generated one.
33695
33696 2002-09-26  Nick Zigarovich <nick@chemlab.org>
33697
33698         * Corrected typo in gc.c (BOHEM vs BOEHM).
33699
33700 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33701
33702         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
33703         GetProperties. Also avoid calling g_slist_length in GetProperties and
33704         GetMethods.
33705
33706 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33707
33708         * reflection.c: avoid unaligned stores (bug spotted by
33709         Mark Crichton  <crichton@gimp.org>).
33710
33711 2002-09-25  Martin Baulig  <martin@gnome.org>
33712
33713         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
33714         instead of guint64 for addresses and added prologue/epilogue info.
33715
33716 2002-09-25  Martin Baulig  <martin@gnome.org>
33717
33718         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
33719         store line number info.  For the dynamic symbol file, we only need
33720         to provide the JIT generated dynamic line number info for the dynamic
33721         symbol file.
33722
33723 2002-09-25  Martin Baulig  <martin@gnome.org>
33724
33725         * debug-mono-symfile.h: Incremented version number.
33726
33727 2002-09-24  Martin Baulig  <martin@gnome.org>
33728
33729         * class.c (mono_debugger_class_init_func): New global function
33730         pointer variable.
33731         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
33732         call it.
33733
33734         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
33735         function.  This is called via the mono_debugger_class_init_func
33736         hook to add all types to the dynamic type table.
33737         (ves_icall_MonoDebugger_GetType): New interncall to get a class
33738         from its metadata token.
33739
33740         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
33741         New interncall for the debugger.
33742
33743 2002-09-24  Nick Drochak <ndrochak@gol.com>
33744
33745         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
33746         before using it in case it is null.
33747         
33748 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33749
33750         * metadata.c: allow custom modifiers in local var signatures
33751         (bug spotted by Zoltan Varga).
33752
33753 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33754
33755         * class.c: deal with the <Module> class that may have a NULL vtable.
33756         Eliminate warnings.
33757
33758 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33759
33760         * image.c, image.h: more strong name helpers.
33761         * monosn.c: more work: convert pem keys to cryptoapi format.
33762
33763 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33764
33765         * string-icalls.c: speedup IndexOf.
33766
33767 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33768
33769         * icall.c: updates from Zoltan.2.Varga@nokia.com.
33770
33771 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33772
33773         * icall.c: cleanup: use mono_object_domain ().
33774
33775 2002-09-23  Martin Baulig  <martin@gnome.org>
33776
33777         * debug-mono-symfile.c: Improved type support.
33778
33779 2002-09-22  Martin Baulig  <martin@gnome.org>
33780
33781         * debug-mono-symfile.c: Added support for reference types and strings.
33782
33783 2002-09-22  Martin Baulig  <martin@gnome.org>
33784
33785         * debug-mono-symfile.c: Started to work on the type table.
33786
33787 2002-09-21  Martin Baulig  <martin@gnome.org>
33788
33789         * debug-mono-symfile.c: Largely reworked the symbol table format.
33790         The symbol table is now incrementally updated each time a new
33791         method is added.  We're now also using our own magic and version
33792         so that you don't need to recompile all your classes if the
33793         dynamic table changes.
33794         (mono_debug_update_mono_symbol_file): Removed.
33795         (mono_debug_symfile_add_method): New function to add a method.
33796
33797 2002-09-21  Martin Baulig  <martin@gnome.org>
33798
33799         * icall.c
33800         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
33801         New interncall.
33802
33803         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
33804         New interncall to get a method from its metadata token.
33805
33806 2002-09-21  Martin Baulig  <martin@gnome.org>
33807
33808         * debug-mono-symfile.c: Create type table.
33809
33810 2002-09-20  Martin Baulig  <martin@gnome.org>
33811
33812         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
33813
33814 2002-09-20  Martin Baulig  <martin@gnome.org>
33815
33816         * debug-mono-symfile.c: Provide information about params and locals.
33817
33818 2002-09-20  Martin Baulig  <martin@gnome.org>
33819
33820         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
33821         New interncall.
33822
33823         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
33824         interncall to get a method from its metadata token.
33825
33826 2002-09-20  Martin Baulig  <martin@gnome.org>
33827
33828         * debug-mono-symfile.c: Added a few checks for method->header
33829         being non-NULL.  This should never happen, but for the moment
33830         let's use a g_warning() rather than a g_assert().
33831
33832 2002-09-19  Mark Crichton  <crichton@gimp.org>
33833
33834         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
33835         even if support for it isn't present.  Added an #ifdef to fix this.
33836
33837         * socket-io.c: Added checks back for Solaris support.
33838
33839 2002-09-19  Martin Baulig  <martin@gnome.org>
33840
33841         * debug-mono-symfile.c (read_string, write_string): Reflect latest
33842         changes in the symbol file format.
33843
33844 2002-09-18  Martin Baulig  <martin@gnome.org>
33845
33846         * debug-mono-symfile.c: Set version number to 21.
33847
33848 2002-09-18  Dick Porter  <dick@ximian.com>
33849
33850         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
33851         on netbsd.  Fixes bug 30051.
33852
33853 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33854
33855         * reflection.c:
33856         (set_version_from_string): little fix.
33857
33858 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33859
33860         * monosn.c, Makefile.am: added strong name utility.
33861         * reflection.h, reflection.c: implemented delayed signing,
33862         locale, version and hash id assembly attributes.
33863
33864 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33865
33866         * loader.c, metadata.c: load param attributes in signatures.
33867
33868 2002-09-16  Martin Baulig  <martin@gnome.org>
33869
33870         * debug-mono-symfile.c: Added string table with all method names.
33871
33872 2002-09-14  Martin Baulig  <martin@gnome.org>
33873
33874         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
33875         fast method lookup.
33876
33877 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33878
33879         * reflection.c: record the public key token of referenced assemblies.
33880
33881 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33882
33883         * image.c, image.h: added functions to get the strong name and the
33884         public key of an assembly.
33885         * pedump.c: use them.
33886
33887 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
33888
33889         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
33890
33891 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
33892
33893         * marshal.c (mono_marshal_get_managed_wrapper): Added
33894         MONO_TYPE_BOOLEAN 
33895
33896 2002-09-11  Martin Baulig  <martin@gnome.org>
33897
33898         * gc.c: Call GC_unregister_disappearing_link() on all links when
33899         finalizing them, this is necessary to aviod a crash in boehm's
33900         finalize handler.
33901
33902 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33903
33904         * gc.c: handle GetTarget for finalized objects spotted and fixed by
33905         nick@chemlab.org.
33906
33907 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33908
33909         * icall.c: implemented MonoType::Module.
33910         * reflection.c, reflection.h: mono_module_get_object () from
33911         Tomi Pakarinen <tomi.pakarinen@welho.com>.
33912
33913 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33914
33915         * icall.c: ignore overridden methods in GetMethods ().
33916         Fix for FieldInfo::SetValue().
33917         * object.c: handle float/double in runtime invoke.
33918
33919 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33920
33921         * object.c: allow a constructor to be called again on an object.
33922
33923 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33924
33925         * class.h, class.c: move field layout code to it's own function and
33926         export it. Get an interface id earlier. Move fields in MonoClass
33927         so they are more cache friendly and align the bitfields.
33928         * loader.c: temporary handle get_param_names() for a runtime method.
33929         * reflection.c, reflection.h: more code to handle runtime creation of
33930         types.
33931
33932 2002-09-09  Martin Baulig  <martin@gnome.org>
33933
33934         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
33935         signature with the pinvoke field being set for the actual call.
33936
33937 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33938
33939         * icall.c: removed some unused icalls. Start of map of glib charsets
33940         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
33941
33942 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33943
33944         * debug-helpers.c: break infinite loop (found and fixed by
33945         Holger Arnold <harnold@gmx.de>).
33946
33947 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33948
33949         * icall.c: target may be null in create_delegate.
33950
33951 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33952
33953         * marshal.c: handle a boolean return type.
33954
33955 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33956
33957         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
33958
33959 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33960
33961         * gc.c: fix weakreferences.
33962
33963 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33964
33965         * icall.c: added icall to get default codepage.
33966
33967 2002-09-03  Dick Porter  <dick@ximian.com>
33968
33969         * threads.h: 
33970         * threads.c: Use MonoThread instead of MonoObject where
33971         apropriate.
33972
33973         Store running thread objects in a hash table, so that we have all
33974         the info to hand when waiting for them to finish
33975         (means we don't need OpenThread() any more, so mingw builds should
33976         be fully functional again.)
33977
33978         * verify.c:
33979         * object.h: Added thread ID to MonoThread
33980
33981 2002-09-03  Martin Baulig  <martin@gnome.org>
33982
33983         * icall.c (System.Reflection.Assembly::get_location): New interncall.
33984
33985 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33986
33987         * icall.c: fixed leak in get_temp_path. Thanks lupus.
33988
33989 2002-09-03  Martin Baulig  <martin@gnome.org>
33990
33991         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
33992         argument to store the end address of the disassembled instruction.
33993
33994         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
33995         here from debug-symfile.h.
33996         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
33997         JIT into this struct.
33998         (MonoSymbolFile): Added `char *image_file' field.
33999         (MonoDebugGetMethodFunc): Removed.
34000         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
34001         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
34002         (mono_debug_find_method): New method.
34003
34004         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
34005         create a full symbol file.
34006         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
34007         and static symbol files.
34008         (mono_debug_find_method): The symbol file keeps an internal method hash,
34009         call this to get a MonoDebugMethodInfo from a MonoMethod.
34010
34011         * debug-symfile.[ch]: Removed.
34012
34013 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
34014
34015         * image.c (do_mono_image_open): Remove linker version check.
34016
34017 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
34018
34019         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
34020         wrappers for instance methods.
34021         
34022 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34023
34024         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
34025
34026 2002-08-28  Dick Porter  <dick@ximian.com>
34027
34028         * Makefile.am: Export HOST_CC for w32 builds
34029
34030 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34031
34032         * file-io.c process.c: MonoString are null terminated, no
34033         need for mono_string_to_utf16() anymore.
34034
34035 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34036
34037         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
34038
34039 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
34040
34041         * icall.c, reflection.h: speedup System.MonoType.
34042
34043 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34044
34045         * reflection.c: allow null as the value of a string argument in
34046         custom attributes constructors.
34047
34048 2002-08-27  Martin Baulig  <martin@gnome.org>
34049
34050         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
34051         `trampoline_address' field.
34052
34053 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
34054
34055         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
34056         check (fixes bug #29486) 
34057
34058 2002-08-27  Martin Baulig  <martin@gnome.org>
34059
34060         * debug-mono-symfile.c: Changed the file format in a way that allows us
34061         open it read-only and to use a specially malloced area for all the
34062         dynamic data.  We can now also generate a symbol file on-the-fly if we're
34063         debugging IL code and there is no MCS generated symbol file for it.
34064
34065 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34066
34067         * object.c: added a define for a good string and array
34068         creation speedup (not enabled by default because we need to deal with
34069         the synch stuff).
34070
34071 2002-08-26  Martin Baulig  <martin@gnome.org>
34072
34073         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
34074         function to create a dynamic symbol file.  This is used by the
34075         debugger to create a symbol file for IL code on-the-fly.
34076
34077 2002-08-26  Martin Baulig  <martin@gnome.org>
34078
34079         * loader.c (mono_lookup_pinvoke_call): Include the error message
34080         from g_module_error() in the error message.
34081
34082 2002-08-24  Martin Baulig  <martin@gnome.org>
34083
34084         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
34085         function to update the symbol file.  The symbol file is mmap()ed
34086         writable, but private.  This allows us to install the symbol file
34087         together with the assembly.
34088
34089 2002-08-24  Martin Baulig  <martin@gnome.org>
34090
34091         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
34092         but they can read the new symbol file format which mcs is now creating.
34093
34094         * debug-symfile.c (mono_debug_find_source_location): Moved to
34095         debug-mono-symfile.c; this is now operating on the new symbol file.
34096
34097 2002-08-23  Martin Baulig  <martin@gnome.org>
34098
34099         * debug-helpers.c (mono_method_desc_from_method): New function to get
34100         a MonoMethodDesc from a MonoMethod.
34101
34102 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34103
34104         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34105         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34106
34107 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34108
34109         * string-icalls.[ch]: make helper methods static.
34110
34111 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34112
34113         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34114         types to it and to SetValueInternal.
34115
34116         * object.c: Moved handle_enum label to its proper place. This was the
34117         f... bug! ;-)
34118
34119         This time i compiled mcs and gtk-sharp and they both work.
34120
34121 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34122
34123         * icall.c: reverted partially my previous patch until 
34124         object.c:set_value handles enums correcly.
34125
34126 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34127
34128         * icall.c:
34129         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34130         (ves_icall_System_Environment_get_MachineName): removed warning when
34131         compiling under cygwin.
34132
34133 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34134
34135         * object.c: fixed field_get_value() for reference types.
34136
34137 2002-08-22  Dick Porter  <dick@ximian.com>
34138
34139         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34140         Don't free a buffer while it's still needed.  Patch from Jonathan
34141         Liger <Jonathan.liger@wanadoo.fr>
34142
34143 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
34144
34145         * icall.c (ves_icall_System_Environment_get_Platform): Add new
34146         internal call.
34147
34148 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
34149
34150         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34151         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34152
34153         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34154         we call unmanaged code which throws exceptions.
34155
34156 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34157
34158         * appdomain.h: added per-domain entry_assembly.
34159         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34160         arguments.
34161         * icall.c: Assembly::GetEntryAssembly icall.
34162         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34163         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34164
34165 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34166
34167         * appdomain.h, gc.c: added mono_domain_finalize ().
34168
34169 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34170
34171         * object.c:
34172         (mono_print_unhandled_exception): changed g_warning by g_printerr
34173         because g_log has a 1024 characters limit (yeah, i got a big stack
34174         trace). Don't print exception name, that should be in ToString 
34175         returned string.
34176
34177 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34178
34179         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34180         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34181
34182 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34183
34184         * object.c:
34185         (mono_print_unhandled_exception): after previous commit, i realized
34186         that MS calls ToString on the exception. I changed this function to
34187         do that. This way we get stack_trace for free.
34188
34189 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34190
34191         * object.c:
34192         (mono_print_unhandled_exception): invoke Message property instead of
34193         getting 'message' field from Exception. Don't allocate memory for
34194         'trace' and 'message' if not needed.
34195
34196 2002-08-18  Dick Porter  <dick@ximian.com>
34197
34198         * unicode.c: Fix asserts to match Encoder.cs checks
34199
34200 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34201
34202         * marshal.c: fix unaligned store issue and a few wrong
34203         opcode argument types.
34204
34205 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34206
34207         * icall.c: added GetUninitializedObjectInternal internal call.
34208
34209 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
34210
34211         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
34212         to the right domain.
34213
34214 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
34215
34216         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
34217
34218         * class.c (class_compute_field_layout): set blittable to false for Strings
34219
34220         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
34221
34222 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34223
34224         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
34225         first chunk of code to create types at runtime. Code to
34226         handle ReflectedType/DeclaringType. Make reflection handles
34227         domain specific.
34228
34229 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34230
34231         * class.c: set correct name in arrays.
34232
34233 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
34234
34235         * appdomain.c (mono_domain_transfer_object): make it work with
34236         valuetypes. bug fixes.
34237
34238 2002-08-12  Dick Porter  <dick@ximian.com>
34239
34240         * object.h: Rename some parameters to avoid c++ keywords (Patch
34241         from Joseph Wenninger <kde@jowenn.at>)
34242
34243 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
34244
34245         * icall.c: added icall to implement Assembly.GetFile*.
34246
34247 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34248
34249         * reflection.h, reflection.c: code to embed managed resources.
34250
34251 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34252
34253         * class.c: move all the type size stuff into
34254         class_compute_field_layout().
34255
34256 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34257
34258         * class.c: ensure enums have always the correct instance size.
34259         * unicode.c: remove wrong assert.
34260
34261 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34262
34263         * assembly.c: fix mem corruption issue.
34264         * image.h, image.c: added mono_image_get_resource () to access
34265         managed resources.
34266         * icall.c: implemented Assembly.EntryPoint property and some
34267         Managed Resources related internalcalls.
34268
34269
34270 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34271
34272         * image.c, image.h: impemented mono_image_get_entry_point ().
34273         * appdomain.c: use mono_image_get_entry_point.
34274
34275 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34276
34277         * reflection.c: support the object type argument when loading
34278         custom attributes.
34279
34280 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
34281
34282         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
34283         String as return type.
34284
34285 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
34286
34287         * reflection.c: fix encoding of named args for custom attrs to match
34288         the ms implementation. Read them back when instantiating custom
34289         attributes.
34290
34291 2002-08-02  Radek Doulik  <rodo@ximian.com>
34292
34293         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
34294         by Dietmar as quick fix
34295         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
34296         16 as stack size, used on more places as quick fix before Dietmar
34297         will fix it properly
34298
34299 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34300
34301         * object.h, object.c: added accessors for fields and properties.
34302
34303 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34304
34305         * class.c, class.h: made mono_class_get_field_from_name ()
34306         loop on parent types.
34307         Added mono_class_get_property_from_name ().
34308
34309 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34310
34311         * class.c, class.h: move the code to setup the type vtable in its own
34312         function so that it can be reused also for types created at runtime.
34313         Eliminate the "class" identifier from the header file.
34314         * reflection.c: setup the vtable for enums so that we can create
34315         objects for use in SetConstant ().
34316
34317 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
34318
34319         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
34320         instead of the delegate itself as this pointer (bug #28383)
34321
34322 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
34323
34324         * marshal.c (mono_marshal_get_managed_wrapper): added return type
34325         conversions.
34326
34327 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34328
34329         * loader.c: don't set the pinvoke bit on icalls.
34330
34331 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
34332
34333         * debug-helpers.c (mono_method_full_name): only print a number to
34334         indicate wrapper type (so that the output is more readable in traces).
34335
34336 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
34337
34338         * class.c (mono_class_init): include method override patch from Paolo
34339
34340 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34341
34342         * icall.c: fixed GetTypeCode().
34343
34344 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
34345
34346         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34347         use real delegate invoke function to make it work with multicast
34348         delegates (fix bug# 28291).
34349
34350 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34351
34352         * object.c: load constant strings.
34353
34354 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34355
34356         * reflection.c: no magic numbers.
34357         * tabledefs.h: security action enum.
34358
34359 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34360
34361         * assembly.c: fix possible memory corruption.
34362
34363 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34364
34365         * reflection.h, reflection.c: added support for linking resources.
34366         * verify.c: check we have an updated corlib.
34367
34368 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
34369
34370         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34371         string arrays.
34372         (mono_marshal_string_array): null terminate unmanaged string arrays.
34373         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34374
34375 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34376
34377         * icall.c: Type.GetType () can now return also types from the
34378         calling assembly.
34379
34380 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34381
34382         * loader.h, loader.c: stack walking support.
34383         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34384         GetCallingAssembly.
34385
34386 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34387
34388         * marshal.c: added optimisations for blittable types 
34389
34390         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34391         (mono_class_setup_mono_type): set blittable attribute for single
34392         and double.
34393
34394         * marshal.c (mono_string_utf8_to_builder): impl.
34395         (mono_string_builder_to_utf8): impl.
34396         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34397
34398 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34399
34400         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34401         (mono_marshal_get_managed_wrapper): impl. byref types
34402
34403 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34404
34405         * icall.c:
34406         (search_method): don't display debug message. 
34407
34408 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34409
34410         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34411
34412 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34413
34414         * appdomain.c: set the missing filename when throwing exception.
34415
34416 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34417
34418         * metadata.c (mono_type_size): code cleanup
34419         (mono_type_stack_size): removed some test code
34420
34421 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34422
34423         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34424         mono_get_exception_file_not_found now.
34425
34426         * exception.c (mono_exception_from_name_two_strings): New version
34427         that will call a constructor with two string arguments. 
34428         (mono_get_exception_file_not_found): New helper routine, used to
34429         report file-not-found errors.
34430
34431 2002-07-20  Dick Porter  <dick@ximian.com>
34432
34433         * process.h:
34434         * process.c: Pass file handles to CreateProcess
34435         
34436         * icall.c:
34437         * file-io.h:
34438         * file-io.c: Implemented CreatePipe
34439
34440 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34441
34442         * metadata.c (mono_get_param_info): set alignment for value types
34443
34444 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34445
34446         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34447         Constify mono_domain_assembly_open().
34448         * loader.c: handle null namespace in icalls.
34449
34450 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34451
34452         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34453         (emit_str_to_ptr_conv): marshal object as structs
34454
34455         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34456
34457         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34458
34459 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34460
34461         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34462         (mono_marshal_get_native_wrapper): we an now return value types
34463
34464 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34465
34466         * verify.c: more checks implemented.
34467
34468 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34469
34470         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34471         (fix bug #27695)
34472         (mono_marshal_get_native_wrapper): allow byref arguments
34473         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34474         impl. PtrToStringXXX methods
34475         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34476         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34477         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34478         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34479         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34480
34481 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34482
34483         * reflection.c: fix buglet in parsing an assembly name.
34484
34485 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34486
34487         * marshal.c (emit_ptr_to_str_conv): first impl.
34488
34489 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34490
34491         * object.c, class.h: cache the vtable in the class as suggested by
34492         vargaz@freemail.hu (Zoltan Varga).
34493
34494 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34495
34496         * class.h, loader.c: added mono_field_from_token().
34497         * verify.c: first cut of type checking code.
34498
34499 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34500
34501         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34502
34503 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34504
34505         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34506         (fix bug #27782)
34507         (mono_marshal_get_remoting_invoke): impl.
34508         (mono_delegate_begin_invoke): impl.
34509         (mono_mb_emit_save_args): impl.
34510         (mono_delegate_end_invoke): impl.
34511         (mono_marshal_get_delegate_begin_invoke):
34512         (mono_marshal_get_delegate_end_invoke):
34513         (mono_marshal_get_delegate_invoke): generate a special name for
34514         those methods (including the signature) and associate them whith
34515         the delegate class. 
34516
34517 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34518
34519         * reflection.[ch]: 
34520         (mono_reflection_type_from_name): now it has a MonoImage parameter
34521         which is used as the default image to search the type in. If the image
34522         is NULL or getting the type from it fails, it defaults to corlib.
34523
34524         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34525         new parameter.
34526
34527 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34528
34529         * reflection.c: update the parameter table index.
34530
34531 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34532
34533         * domain.c: don't include the mark byte in the string hash.
34534
34535 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34536
34537         * icall.cs: icall for Type.GetTypeCode ().
34538         * verify: a couple of fixes and disabled local initialization checks.
34539
34540 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34541
34542         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34543
34544         * debug-helpers.c (mono_method_full_name): print the type of the
34545         runtime wrapper
34546
34547         * metadata.c (mono_signature_hash): a hash function for signatures
34548         (mono_signature_hash): better hash algorithm
34549
34550         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34551
34552         * debug-helpers.c (mono_method_full_name): this can now generate
34553         method names with signatures
34554
34555         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34556         method dont have this pointers.
34557
34558 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34559
34560         * reflection.c: fixup typebuilder tokens.
34561         * image.c: fix buglet.
34562         * marshal.h: remove whitespace.
34563         * metadata.h, metadata.c: reinstate code that was removed.
34564         * verify.c: handle catch directives and fix another couple of bugs.
34565
34566 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34567
34568         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34569         (mono_marshal_get_native_wrapper): make it comp. with the old code
34570         (mono_marshal_get_native_wrapper): support boolean
34571         (mono_marshal_get_managed_wrapper): support more types
34572
34573 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34574
34575         * class.c (class_compute_field_layout): compute class->blittable attribute.
34576
34577 2002-07-09  Dick Porter  <dick@ximian.com>
34578
34579         * threads.c: Make the thread cleaning up cope with threads that
34580         call ExitThread()
34581
34582 2002-07-08  Radek Doulik  <rodo@ximian.com>
34583
34584         * reflection.c (method_encode_code): use non-translated values to
34585         compute finally_start, this fixes exception handling on ppc, yay!
34586
34587         * decimal.h (struct signscale): fix endianess
34588
34589 2002-07-07  Radek Doulik  <rodo@ximian.com>
34590
34591         * reflection.c: swap box_val and not val
34592
34593 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34594
34595         * reflection.c, reflection.h: handle full assembly info in type name.
34596         Handle Type arguments when loading custom attributes.
34597         * icall.c: updated to use new mono_reflection_type_from_name () method.
34598
34599 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34600
34601         * loader.c:
34602         (method_from_memberref): also print assembly name when method not found.
34603
34604 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34605
34606         * icall.c:
34607         (ves_icall_TypeGetProperties): fixed bug #27473. 
34608
34609 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34610
34611         * reflection.c: display image name and token when cannot find the
34612         .ctor for an attribute.
34613
34614 2002-07-05  Martin Baulig  <martin@gnome.org>
34615
34616         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34617
34618 2002-07-04  Dick Porter  <dick@ximian.com>
34619
34620         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
34621         compile on mingw.  This will cause mingw builds to not wait for
34622         subthreads to terminate after the main thread does.  I've lodged a
34623         bug with the mingw developers for them to wrap OpenThread().
34624
34625 2002-07-03  Dick Porter  <dick@ximian.com>
34626
34627         * threads.c: Store thread IDs instead of handles, because
34628         GetCurrentThread() returns a pseudohandle and therefore stores
34629         useless values.  mono_thread_cleanup() continues checking the
34630         array of threads until it is empty, to cope with subthreads
34631         spawning new threads after the main thread has finished.
34632
34633         * profiler.h:
34634         * profiler.c:
34635         * profiler-private.h: Pass the thread ID to thread profiler
34636         functions, instead of a handle
34637
34638 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34639
34640         * verify.c: fixes to make it more usable.
34641         * pedump.c: added --verify code to verify IL code in an assembly.
34642
34643 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34644
34645         * reflection.c: turn errors into warnings to allow compiling corlib.
34646
34647 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34648
34649         * reflection.c: add special cases to compile corlib.
34650
34651 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34652
34653         * reflection.c: handle properties with only a set method.
34654
34655 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34656
34657         * opcodes.h: add enum with opcodes in opval order.
34658
34659 2002-07-01  Dick Porter  <dick@ximian.com>
34660         
34661         * object.h:
34662         * object.c (mono_runtime_run_main): Removed unneeded argument
34663
34664 2002-06-28  Martin Baulig  <martin@gnome.org>
34665
34666         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34667
34668 2002-06-27  Dick Porter  <dick@ximian.com>
34669
34670         * threads.c: Store the handle in both the parent thread and in the
34671         subthread, to minimise the time between starting a new thread and
34672         storing its ID.
34673
34674 2002-06-26  Dick Porter  <dick@ximian.com>
34675
34676         * appdomain.c (mono_runtime_cleanup): Close the socket library
34677         after all the threads have finished, not before
34678
34679 2002-06-26  Martin Baulig  <martin@gnome.org>
34680
34681         * debug-symfile.c (mono_debug_find_source_location): Added
34682         `guint32 *line_number' argument.  If it's not NULL, store the line number
34683         there and return the file name without the line number.
34684
34685 2002-06-25  Dick Porter  <dick@ximian.com>
34686
34687         * icall.c:
34688         * process.h:
34689         * process.c: Process forking and other support functions
34690
34691 2002-06-25  Dick Porter  <dick@ximian.com>
34692
34693         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
34694         things dont happen when the image is closed.
34695         (mono_image_lookup_resource): Walk the resource section looking
34696         for a particular entry
34697
34698         * cil-coff.h: PE resource section decoding
34699
34700 2002-06-25  Dick Porter  <dick@ximian.com>
34701         
34702         * assembly.h:
34703         * assembly.c: 
34704         (mono_assembly_foreach): Accessor functions to walk the list of
34705         loaded assemblies
34706         (mono_assembly_set_main):
34707         (mono_assembly_get_main): Process methods need to know which
34708         assembly is the "main" one
34709
34710         * object.c (mono_runtime_run_main): Record the main assembly
34711
34712         * debug-helpers.c: Fix typo
34713
34714 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
34715
34716         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
34717         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
34718
34719 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34720
34721         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
34722
34723 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
34724
34725         * image.c (do_mono_image_open): Initialize reference count,
34726         otherwise we leak the MonoImage.
34727
34728 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34729
34730         * reflection.c: small tweak to handle self-hosting.
34731
34732 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34733
34734         * reflection.c: fix type name parse code.
34735
34736 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34737
34738         * reflection.c: break out of the loop.
34739         * image.c: special case corlib.
34740
34741 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34742
34743         * reflection.c: add all the custom attrs at the end to ensure the
34744         ctors have been properly initialized when the attributes are defined
34745         in the current assembly.
34746
34747 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34748
34749         * reflection.c: handle correctly multiple-nested types.
34750
34751 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34752
34753         * row-indexes.h: fix typos.
34754         * reflection.c: adjust for typos and fix method_def_or_ref
34755         encoding in MethodImpl table.
34756
34757 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34758
34759         * reflection.c: fix entry point patching (thanks Serge!).
34760
34761 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
34762
34763         * verify.c: add check for System.Exception
34764
34765 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34766
34767         * image.c, class.c: minifix for code just c&p'ed.
34768         * reflection.c: warning fix.
34769         * object.h, loader.h, domain.c: load also StringBuilder.
34770
34771 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34772
34773         * marshal.h, marshal.c: some support code to handle complex marshaling.
34774
34775 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34776
34777         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
34778         Better signatures with vtable error dump.
34779
34780 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
34781
34782         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
34783
34784 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
34785
34786         * icall.c (ves_icall_Type_GetField): impl.
34787
34788 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34789
34790         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
34791         to retrieve a marshal description blob for a field or param.
34792
34793 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34794
34795         * reflection.h, reflection.c: change order of nested type emission
34796         to avoid table corruption. The NestedTypes table is sorted.
34797         * icall.c: change order of GetConstructor results to workaround mcs bug.
34798
34799 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34800
34801         * reflection.h, reflection.c: handle field and param marshal
34802         information.
34803
34804 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34805
34806         * icall.c, marshal.c marshal.h: more Marshal class implementation.
34807
34808 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34809
34810         * reflection.c: fix call convention.
34811
34812 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34813
34814         * reflection.h, reflection.c: mono_image_get_memberref_token()
34815         takes a type instead of a class, now. Added
34816         mono_image_get_array_token() to create tokens for the special
34817         multi-dim array methods.
34818
34819 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34820
34821         * assembly.c: handle modules (no assembly table). Split
34822         loading references in its own function.
34823         * class.c: handle moduleref resolution scope.
34824         * image.c, image.h: cache module name in image.
34825
34826 2002-06-07  Martin Baulig  <martin@gnome.org>
34827
34828         * reflection.c (mono_image_get_type_info): Only add a class layout entry
34829         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
34830
34831 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34832
34833         * icall.c: more signature fixes that used uint instead of int.
34834
34835 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34836
34837         * reflection.c: fixed signature of field refs.
34838
34839 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34840
34841         * class.c, reflection.c: handle typerefs of nested types
34842         (both on read and when writing files).
34843
34844 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34845
34846         * icall.c: fix method signatures that tried to workaround the previous
34847         typo, d'oh!
34848
34849 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34850
34851         * debug-helpers.c: fix typo.
34852
34853 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34854
34855         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
34856         rewrote the PE/COFF writing code (our programs are understood by the
34857         ms runtime, now).
34858
34859 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34860
34861         * gc.c, gc.h, icall.c: weakreference support.
34862
34863 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34864
34865         * Makefile.am, mono-config.c: use $(sysconfdir).
34866
34867 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34868
34869         * icall.c: changed default precision of Double.ToString() to 15.
34870         Fixed memory leak. Unified with Single.ToString.
34871
34872 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34873
34874         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
34875
34876 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34877
34878         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
34879         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
34880         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
34881         and myself.
34882
34883 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34884
34885         * debug-symfile.c, sysmath.c: yet more compilation fixes.
34886
34887 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34888
34889         * reflection.c, socket-io.c: more compilation fixes.
34890
34891 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34892
34893         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
34894         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
34895         unicode.c: warning and compiler compatibility fixes.
34896
34897 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34898
34899         * class.h, metadata.c: fixed warnings/compilation errors.
34900
34901 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34902
34903         * Makefile.am, mono-config.c, mono-config.h: configuration file
34904         support routines.
34905         * loader.c, loader.h: make Dll mapping configurable at runtime in the
34906         config file. Export methods to insert and lookup mappings.
34907
34908 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34909
34910         * reflection.c: handle types and boxed objects in custom attr
34911         constructors.
34912
34913 2002-05-30  Martin Baulig  <martin@gnome.org>
34914
34915         * debug-symfile.c
34916         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
34917
34918 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
34919
34920         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
34921         to lookup the implmap row for a P/Invoke method.
34922         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
34923         P/Invoke method from the runtime on an as needed basis.
34924
34925 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
34926
34927         * metadata.c (mono_metadata_parse_signature): impl.
34928
34929 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34930
34931         * class.c: handle .pack directive.
34932
34933 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34934
34935         * object.c: initialize static fields with RVA data.
34936
34937 2002-05-25  Martin Baulig  <martin@gnome.org>
34938
34939         * debug-symfile.c
34940         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
34941
34942 2002-05-24  Martin Baulig  <martin@gnome.org>
34943
34944         * debug-symfile.c
34945         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
34946         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
34947         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
34948
34949 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34950
34951         * object.c: special case string ctros in invoke.
34952         * gc.c: silly whitespace changes.
34953
34954 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
34955
34956         * threadpool.[ch]: impl. a threadpool that can
34957         be used by mint and mono.
34958
34959 2002-05-22  Martin Baulig  <martin@gnome.org>
34960
34961         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
34962         The first argument is now a `MonoReflectionModuleBuilder *', the return
34963         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
34964         `methods' field to get the method builder.  The `token' argument is the
34965         unfixed token.
34966
34967         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
34968         invalid characters instead of g_assert_not_reached()ing.  This seems
34969         to be the behaviour of mscorlib.
34970
34971 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
34972
34973         * object.c (mono_runtime_invoke_array): applied patch from Rachel
34974         Hestilow to fix bug #25104
34975
34976 2002-05-21  Martin Baulig  <martin@gnome.org>
34977
34978         * debug-symfile.c (mono_debug_find_source_location): New function.
34979         Looks up an IL offset in the line number table and returns the source
34980         location as a string.
34981
34982 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34983
34984         * icall.c:
34985         (mono_double_ToStringImpl): changed %f by %g until we have something
34986         better.
34987
34988 2002-05-21  Nick Drochak  <ndrochak@gol.com>
34989
34990         * icall.c : Use different name for Math.Pow's icall.  Needed to check
34991         parameters first in C#.
34992
34993 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34994
34995         * icall.c, reflection.h: added icall to get info about an event.
34996
34997 2002-05-20  Radek Doulik  <rodo@ximian.com>
34998
34999         * object.c (mono_value_box): don't use memcpy for boxing on BIG
35000         endian
35001         (mono_value_box): don't use memcpy for small sizes on
35002         architectures with unaligned access
35003
35004 2002-05-20  Martin Baulig  <martin@gnome.org>
35005
35006         * reflection.c (mono_reflection_setup_internal_class): Don't crash
35007         if `tb->parent == NULL'.
35008         (mono_reflection_create_internal_class): New function.  This is
35009         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
35010         for enum types.
35011
35012         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
35013         New interncall.
35014
35015 2002-05-19  Martin Baulig  <martin@gnome.org>
35016
35017         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
35018         argument to get the length, don't default to the array length.
35019
35020 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
35021
35022         * assembly.c (mono_assembly_setrootdir): New function used to
35023         override the MONO_ASSEMBLIES directory.
35024
35025 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35026
35027         * icall.c: ValueType_GetHashCode() initialize local var.
35028
35029 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35030
35031         * reflection.c: sort custom attributes table.
35032
35033 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35034
35035         * reflection.c: support named args in custom attributes (write support).
35036
35037 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35038
35039         * reflection.c: fix finally position calculation.
35040
35041 2002-05-15  Radek Doulik  <rodo@ximian.com>
35042
35043         * reflection.c: fixed endianess at many places
35044
35045         * icall.c (ves_icall_InitializeArray): comment out debug msg
35046
35047 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
35048
35049         * object.c (mono_unhandled_exception): new function to handle
35050         unhandled exceptions.
35051         (mono_unhandled_exception): call the UnhandledException event.
35052         (mono_runtime_delegate_invoke): impl.
35053
35054 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
35055
35056         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
35057         returns the RVA, not the direct pointer to the data. Handle the case
35058         when the class size is fixed.
35059
35060 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35061
35062         * reflection.c: fix some endianess issues.
35063
35064 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
35065
35066         * object.c (mono_runtime_invoke): is now able to catch exceptions.
35067
35068         * threads.c (mono_thread_init): added a callback which is invoked
35069         at thread start.
35070
35071 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35072         
35073         * icall.c: make GetHashCode return non-negative values.
35074
35075 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35076
35077         * object.c, icall.c, gc.c: revert to address-based hashcode.
35078
35079 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
35080
35081         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
35082
35083 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35084
35085         * icall.c, class.c: special case <Module>.
35086
35087 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
35088
35089         * icall.c: fix bug in GetNow().
35090
35091 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
35092
35093         * object.c (mono_runtime_class_init): make sure that we call all
35094         static class constructors.
35095
35096 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35097
35098         * reflection.c: sort methodsemantics table.
35099
35100 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35101
35102         * reflection.h, reflection.c: honour init locals setting.
35103
35104 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35105
35106         * icall.c: copied Double ToStringImpl for Single ToStringImpl
35107
35108 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35109
35110         * reflection.c: support ContructorBuilders in attribute blob creation.
35111
35112 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35113
35114         * reflection.c: some changes to build a binary that can be run
35115         directly in windows.
35116
35117 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35118
35119         * loader.c: print a big message when an icall can't be found.
35120
35121 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35122
35123         * string-icalls.c: fix bug 24248.
35124
35125 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35126
35127         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35128         icall.c, reflection.h: separate assembly loading by pathname and by
35129         assembly name. Use the MONO_PATH env var to search for assemblies.
35130
35131 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35132
35133         * assembly.c, image.h: add some support for assemblies
35134         with multiple modules.
35135         * class.c, class.h: export mono_class_from_typeref().
35136         * loader.c: remove duplicated code and use mono_class_from_typeref(),
35137         instead.
35138
35139 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35140
35141         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35142         documentation says (the ECMA one is correct).
35143
35144 2002-05-02  Dick Porter  <dick@ximian.com>
35145
35146         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35147         Don't name the synchronisation mutex.
35148
35149 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
35150
35151         * rand.c
35152         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35153         Make the prototypes match.
35154         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35155         Same.
35156
35157         * icall.c
35158         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35159         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35160         all systems have tm.tm_zone, so use strftime() with %Z to print
35161         the timezone abreviation into a temp string.
35162
35163         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35164         rather than mono_array_addr() on a MonoString on Big Endian
35165         machines.
35166
35167 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
35168
35169         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35170         fix bug 24041
35171
35172 2002-04-30  Dick Porter  <dick@ximian.com>
35173
35174         * socket-io.c: Cope with SOCKET being an integer rather than a
35175         pointer now.
35176
35177         * threads.c: Added Thread_free_internal, to deal with thread
35178         handle cleanup.  Moved calls to handle_store() and handle_remove()
35179         to start_wrapper(), so each can only be called once.  Allocate
35180         synchronisation blocks with GC_malloc(), and use GC finalisation
35181         to close the handles.
35182
35183         * icall.c: added System.Threading.Thread::Thread_free_internal
35184
35185 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35186
35187         * icall.c: support Environment.Exit, CommandLineArgs().
35188
35189 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35190
35191         * object.c, object.h: added mono_runtime_run_main () and
35192         mono_runtime_get_main_args () for use in System.Environment.
35193
35194 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35195
35196         * gc.c: fix thinko, enable actual finalization since the jit is now
35197         fixed.
35198
35199 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35200
35201         * gc.c, object.c: take into account that an object may be offset wrt the address
35202         returned by GC_malloc().
35203
35204 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
35205
35206         * image.c: handle files without entries in the assembly table (modules).
35207
35208 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
35209
35210         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
35211         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
35212         allowed to be null when it's System.Object class setup.
35213
35214 2002-04-27  Martin Baulig  <martin@gnome.org>
35215
35216         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
35217         if `tb->parent == NULL' rather than crashing.
35218
35219 2002-04-28  Nick Drochak  <ndrochak@gol.com>
35220
35221         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
35222         calling acos() where asin() should have been called.
35223
35224 2002-04-26  Martin Baulig  <martin@gnome.org>
35225
35226         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
35227         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
35228         there's a subdirectory called `System', but we don't want to read that
35229         subdirectory as an assembly.
35230
35231 2002-04-25  Martin Baulig  <martin@gnome.org>
35232
35233         * debug-symfile.c: Reflect latest MonoString changes.
35234
35235 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35236
35237         * rand.c, rand.h: instance method icalls need to have an explicit
35238         this pointer as first argument in the C implementation.
35239
35240 2002-04-25  Nick Drochak <ndrochak@gol.com>
35241
35242         * icall.c: Fix typo in map for GetNonZeroBytes
35243
35244 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35245
35246         * string-icalls.c : String does now passes unit tests without any 
35247         errors, the following changes has been made:
35248         
35249         Implemented replace methods.
35250         Renaming of methods to (try) follow the standard.
35251         Fixed compare ordinal
35252         Made all memory allocated directly to function instead of via icall function.
35253         Small performance fix in is_in_array function
35254                         
35255  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
35256
35257         c (mono_string_Internal_ctor_charp_int_int):
35258         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
35259         sindex < 0, throw ArgumentOutOfRangeException instead of
35260         ArgumentNullException.
35261
35262         Added new check for length == 0, however
35263         I need to make it return String.Empty from the C code.
35264         
35265         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
35266         that calculate the length for us here.
35267         
35268         (mono_string_Internal_ctor_sbytep_int_int): Replaced
35269         mono_string_new_utf16 with mono_string_new, since value is utf8.
35270
35271 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35272
35273         * object.c: register the object for finalization if needed.
35274         Allocate one more char in the string for the terminating 0 char.
35275
35276 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35277
35278         * class.c, class.h, image.c: check if a type implemenst a destructor.
35279         Use the proper key for array class lookups.
35280         * icall.c: register the icalls in the System.GC class.
35281         * gc.c, gc.h: GC-related functions and icalls.
35282
35283 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35284
35285         * icall.c:
35286         * socket-io.c:
35287         * unicode.c: free some strings gotten from mono_string_to_utf8 and
35288         changed a couple of free () by g_free ().
35289
35290         * decimal.c: one-liner in the comments for decimal2string ().
35291
35292 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35293
35294         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
35295
35296 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35297
35298         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
35299         * object.c (mono_runtime_invoke_array) : handle null in params
35300
35301 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35302
35303         * string-icalls.c: fixed bug in split (one off bug)
35304
35305 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35306
35307         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
35308         * icalls.c: added String::Equals as internal method
35309
35310 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35311
35312         * threads.c: fixed bug in the double interlocked functions
35313
35314 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
35315
35316         * threads.c: implemented all of the new interlocked icalls.
35317         * string-icalls.c: fix a bug in insert.
35318         * icalls.c: added the icalls for interlocked, removed old string functions.
35319         
35320 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35321
35322         * loader.c: fix off-by-one error when reading argument names.
35323
35324 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35325
35326         * profiler.c: win32 counter implementation (untested).
35327         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
35328         (the latter needs testing and more complete impl. from win32 folks).
35329
35330 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
35331
35332         * object.c: mono_array_new_full workaround mono_array_class_get
35333         problem.
35334
35335 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35336
35337         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35338         * object.h (mono_string_chars): Changed casting type.
35339
35340 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35341
35342         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35343                            method signatures to use gunichar2 instead of gint16.
35344
35345 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
35346
35347         * object.h, object.c: domain-specific versions of mono_object_new and
35348         mono_array_new.
35349
35350 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
35351
35352         * object.c: changed String layout
35353
35354         * string-icalls.c (mono_string_Internal_ctor_chara): added
35355         internal string constructors.
35356
35357 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35358
35359         * threads.c: pass 'this' to the thread start routine.
35360
35361 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35362
35363         * string-icalls.c: fix IndexOf and LastIndexOf. Now
35364         InternalCompareStr don't call twice mono_string_cmp_char for the last
35365         character. Improved performance in mono_string_cmp_char.
35366
35367 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35368
35369         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35370         code into its own library: libmonoruntime.
35371
35372 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
35373
35374         * object.h, object.c: changed array format so that szarrays do not
35375         require a bounds structure.
35376         * icall.c, appdomain.c: support for new szarray format.
35377
35378 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35379
35380         * metadata.c: compare also the retuns type when comparing signatures:
35381         we didn't do this as an optimization since really overloaded methods
35382         must differ also in the arguments, but this doesn't work with
35383         low-level IL code (or when using explicit conversion operators: see
35384         bug#23498 for an example).
35385
35386 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35387
35388         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35389
35390 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35391
35392         * icall.c: make MonoType::GetElementType its own icall.
35393
35394 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35395
35396         * icall.c: remove MonoMethod_get_Name().
35397         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35398         object.
35399
35400 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35401
35402         * string-icalls.c: optimized a few methods.
35403
35404 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35405
35406         * icall.c: added all new string internal calls
35407         * string-icalls.c: added, new string internal call implementation.
35408         * object.c: added mono_string_new_size for allocating a string a size
35409
35410 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35411
35412         * object.c (mono_object_isinst): use the same code as in the
35413         optimized x86 version.
35414
35415 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35416
35417         * profiler.c: TSC-based timer code (faster and more accurate).
35418         Not hooked up in configure, yet (set USE_X86TSC to 1).
35419
35420 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35421
35422         * profiler.c, profiler.h: track time spent compiling methods.
35423         * threads.c: track thread creation/destruction.
35424
35425 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35426
35427         * profiler.c, profiler.h, profiler-private.h: profiling interface
35428         and sample implementation. Moved here so that it can be used also by
35429         the jit.
35430
35431 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35432
35433         * reflection.c, reflection.h: keep types and other handles separate in
35434         the hash tables for referred tokens. Add guid for modules.
35435
35436 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35437
35438         * assembly.c: fix bugs found with valgrind.
35439         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35440
35441 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35442
35443         * threads: added icall support for getting current domain for
35444                    the thread.
35445  
35446 2002-04-13  Martin Baulig  <martin@gnome.org>
35447
35448         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35449         (MonoDebugVarInfo): Added `index' field for register based addresses.
35450         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35451         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35452         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35453         `MonoDebugVarInfo *this_var'.
35454
35455         * debug-symfile.c (relocate_variable): New static function to write
35456         a location description for a local variable or method parameter.
35457
35458 2002-04-12  Martin Baulig  <martin@gnome.org>
35459
35460         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35461         stack offset and begin/end scope address of a local variable.
35462         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35463         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35464         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35465
35466         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35467         Added new relocation types for start/end scope of a local variable.
35468
35469 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35470
35471         * object.h: add mono_object_domain() macro.
35472         * reflection.c: handle typespecs.
35473         * icall.c: MonoMethod::get_Name() implementation.
35474
35475 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35476
35477         * icall.c: String::GetHashCode() icall implementation.
35478
35479 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35480
35481         * icall.c: String::IndexOfAny icall.
35482         * object.c, object.h: make array->max_length more useful.
35483         Intrduced mono_object_class() and mono_string_length() macros.
35484
35485 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35486
35487         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35488         instead of g_unichar_isdigit.
35489
35490 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35491
35492         * icall.c: Implement a simple Double.ToString().
35493
35494 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35495
35496         * appdomain.h: only io-layer.h is supposed to be included.
35497         * icall.c: explicitly import environ. Fix warning.
35498
35499 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35500
35501         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35502                 return true even if it's not Daylight Savings time.
35503                 Only return false for the case where the function isn't
35504                 implemented for a plaform (read Windows).
35505
35506 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35507
35508         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35509         data with a mutex.
35510
35511 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35512
35513         * mempool.c (mono_mempool_alloc): only use g_malloc when
35514         absolutely necessary.
35515
35516 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35517
35518         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35519
35520         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35521         (mono_class_proxy_vtable): use domain mempool
35522
35523 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35524
35525         * appdomain.h, appdomain.c: split initialization that requires the
35526         execution engine support into mono_runtime_init().
35527
35528 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35529
35530         * class.c (mono_class_init): don't include vtable inside MonoClass
35531         to save some memory, gather some statistics.
35532         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35533
35534 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35535
35536         * icall.c: internalcall implementation for ValueType.Equals().
35537
35538 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35539
35540         * object.c (mono_message_init): moved 
35541         (mono_runtime_exec_main): new arch. independent impl.
35542         (mono_runtime_invoke_array): new method - like
35543         mono_runtime_invoke, but you can pass an array of objects.
35544         (mono_remoting_invoke): new arch. independent impl.
35545         (mono_message_invoke): new arch. independent impl.
35546         (mono_runtime_class_init): new arch. independent impl.
35547         (mono_runtime_object_init): new arch. independent impl.
35548
35549 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35550
35551         * metadata.c, object.c, reflection.c: documented the exported
35552         functions.
35553
35554 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35555
35556         * icall.c: simpler code to pass the assembly builder data to corlib.
35557         Implement GetNestedTypes() internalcall.
35558
35559 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35560
35561         * class.c: warn if a type can't be loaded.
35562
35563 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35564
35565         * image.h: typedef MonoImageOpenStatus
35566         * types.h: removed unused file
35567         
35568 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35569
35570         * icall.c: Enum_ToObject accepts enum value arguments.
35571
35572 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35573
35574         * class.c: move initialization of properties, events and nested
35575         classes, so that they happen for interfaces, too.
35576
35577 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35578
35579         * icall.c: cleanup some ugly casts in Array_SetValue*.
35580
35581 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35582
35583         * icall.c: the values array fro enums is of the correct type, now.
35584         Implement (correctly) getFullName instead of assQualifiedName for
35585         MonoType.
35586         * reflection.h, reflection.c: added mono_type_get_name ().
35587
35588 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35589
35590         * assembly.c, image.h: for each MonoImage, record from wich assembly
35591         it was loaded.
35592         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35593         Make Type.Assembly work.
35594
35595 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35596
35597         * debug-symfile.h: use char* instead of gpointer to avoid
35598         unnecessary casts.
35599
35600         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35601
35602         * icall.c (ves_icall_InternalExecute): impl. FielSetter
35603         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35604
35605 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
35606
35607         * icall.c (mono_message_init): impl. (code cleanup)
35608         (ves_icall_InternalExecute): impl. FieldGetter
35609
35610         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
35611         defined we call all (non-static)methods through the vtable. 
35612
35613 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
35614
35615         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
35616         finalizer even though the memory is still referenced (and the chunk of
35617         memory is not freed).
35618
35619 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35620
35621         * assembly.c: fix brokeness.
35622
35623 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
35624
35625         * class.c: kill some warnings. Check explicit interface method
35626         implementation also without considering the namespace.
35627         Load also literal strings in static class data.
35628
35629 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
35630
35631         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
35632         (default_assembly_name_resolver): Make the resolver take the
35633         "base" directory where the assembly was originally defined, so we
35634         can load DLLs that are in the same directory as the assembly that
35635         is being referenced.
35636
35637 2002-03-28  Dick Porter  <dick@ximian.com>
35638
35639         * file-io.h: 
35640         * file-io.c:
35641         * socket-io.c: 
35642         * unicode.h: 
35643         * unicode.c: Warning cleanups
35644
35645 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
35646
35647         * object.h, reflection.h: use the correct type instead of MonoObject.
35648
35649 2002-03-28  Martin Baulig  <martin@gnome.org>
35650
35651         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
35652         (mono_debug_update_symbol_file): Initialize classes if necessary.
35653
35654 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35655
35656         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
35657         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
35658
35659 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
35660
35661         * assembly.h: fix function prototype.
35662         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
35663         * mono-endian.h: use const cast.
35664
35665 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35666
35667         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
35668
35669 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35670
35671         * loader.c: don't assert when a typeref can't be loaded, give
35672         a chance to the runtime to trow an exception instead.
35673         * loader.h: fix warning.
35674
35675 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35676
35677         * class.c (mono_class_proxy_vtable): added proxy support
35678
35679 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
35680
35681         * icall.c: removed last of PAL calls, added System.Environment
35682         * file-io.h, file-io.c: MonoIO implementation
35683         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
35684
35685 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35686
35687         * appdomain.c: do not use the byte marker in ldstr table lookup.
35688         * debug-helpers.c: allow two ':' to separate class and method name.
35689         * object.c: allocate arrays bounds with the GC, too.
35690         * verify: add a few more checks.
35691
35692 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
35693
35694         * reflection.c: output also literal strings. Allocate parameter data
35695         with GC_malloc() (thanks, Martin, for catching this!).
35696
35697 2002-03-26  Martin Baulig  <martin@gnome.org>
35698
35699         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
35700         include the `this' offset in the `param_offsets'.
35701
35702 2002-03-25  Martin Baulig  <martin@gnome.org>
35703
35704         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
35705         mono_debug_get_class() function to get the classes. Added new
35706         relocation types for arrays and strings.
35707         (mono_debug_get_class): New static function to search in all
35708         referenced assemblies for a metadata token.
35709
35710         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
35711
35712 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
35713
35714         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
35715         hold gc-allocated objects. Make the string heap a stream like the
35716         others. Removed duplicated code when writing stream info.
35717         Added asserts to catch possible buffer overflows. Set the sorted map
35718         for tables that need sorting. Added some documentation.
35719
35720 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
35721
35722         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
35723         for interned strings and vtables.
35724
35725 2002-03-24  Martin Baulig  <martin@gnome.org>
35726
35727         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
35728         it in the array since it was created with g_slist_prepend().
35729
35730 2002-03-24  Martin Baulig  <martin@gnome.org>
35731
35732         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
35733         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
35734         (mono_debug_method_from_token): Renamed to
35735         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
35736         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
35737
35738         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
35739         relocation types.
35740
35741         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
35742
35743 2002-03-24  Martin Baulig  <martin@gnome.org>
35744
35745         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
35746         (mono_debug_method_from_token): New func.
35747
35748         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
35749         New interncall, calls mono_debug_local_type_from_signature().
35750         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
35751         calls mono_debug_method_from_token().
35752
35753 2002-03-23  Martin Baulig  <martin@gnome.org>
35754
35755         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
35756         specifies the number of bytes to be converted, not the array size.
35757         Return the number of chars, not the number of bytes.
35758         (ves_icall_iconv_get_chars): The `byteCount' argument
35759         specifies the number of bytes to be converted, not the array size.
35760
35761 2002-03-23  Martin Baulig  <martin@gnome.org>
35762
35763         * reflection.h (MonoReflectionSigHelper): New type.
35764
35765         * reflection.c (mono_reflection_sighelper_get_signature_local),
35766         (mono_reflection_sighelper_get_signature_local): New functions.
35767
35768         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
35769         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
35770         interncalls.
35771
35772 2002-03-23  Martin Baulig  <martin@gnome.org>
35773
35774         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
35775         is_writeable is set.
35776         (mono_raw_buffer_update): New function to write the modified map
35777         back to disk.
35778
35779         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
35780
35781         * debug-symfile.c (mono_debug_update_symbol_file): Call
35782         mono_raw_buffer_update() when done writing.
35783
35784 2002-03-23  Martin Baulig  <martin@gnome.org>
35785
35786         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
35787
35788         * debug-symfile.c: Added support for arguments and local variables.
35789
35790 2002-03-23  Dick Porter  <dick@ximian.com>
35791
35792         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
35793         protected by ifdefs, hence breaking the w32 build.
35794
35795 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35796
35797         * object.c: implement is_interned() the right way.
35798
35799 2002-03-21  Martin Baulig  <martin@gnome.org>
35800
35801         * debug-symfile.[ch]: New files to handle debugging information
35802         files. There's also support to dynamically update these symbol
35803         files to include machine dependent information.
35804
35805 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
35806
35807         * threads.c (mono_thread_create): new function to create thread
35808         from C
35809
35810 2002-03-20  Martin Baulig  <martin@gnome.org>
35811
35812         * icall.c (ves_icall_InternalInvoke): Create a new object if the
35813         method is a constructor.
35814         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
35815         points to ves_icall_InternalInvoke().
35816
35817 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
35818
35819         * file-io.c: Flush shouldn't throw exceptions.
35820
35821 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
35822
35823         * file-io.c: FileStream flush support; FileSetLength now
35824         restores file pointer.
35825
35826 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35827
35828         * class.c: set image for pointer classes.
35829
35830 2002/03/19  Nick Drochak <ndrochak@gol.com>
35831
35832         * sysmath.c: Forgot one.
35833
35834 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
35835
35836         * sysmath.c: Avoid redefining existing names.
35837
35838 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
35839
35840         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
35841         handled by runtime as icall rather than dllimport from libm.so
35842         * file-io.c, file-io.h: fixed handle argument type.
35843
35844 2002-03-18  Dick Porter  <dick@ximian.com>
35845
35846         * reflection.c (mono_image_get_type_info): rename interface to
35847         iface, because of "#define interface struct" on windows.
35848
35849 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
35850
35851         * class.c, class.h: rename and export mono_ptr_class_get().
35852         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
35853         * reflection.c, reflection.h, icall.c: better/saner type name
35854         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
35855         method signatures.
35856
35857 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
35858
35859         * class.c (mono_class_init): removed hardcoded GHC_SLOT
35860
35861         * icall.c (ves_icall_InternalInvoke): impl.
35862
35863 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35864
35865         * reflection.c: output the interface map table, too.
35866
35867 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35868
35869         * class.c (class_compute_field_layout): separate computation of 
35870         static field layout
35871
35872 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
35873
35874         * icall.c: added System.Buffer support.
35875         * file-io.c: moved file icalls from PAL to FileStream.
35876
35877 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35878
35879         * icall.c (ves_icall_System_Object_GetHashCode): impl.
35880
35881 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
35882
35883         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
35884
35885 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35886
35887         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
35888
35889 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35890
35891         * debug-helpers.{c,h}: moved here from monograph some useful functions
35892         to locate a method by name/signature in a class or image. Included
35893         also a small and flexible IL disassembler.
35894
35895 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35896
35897         * reflection.c: fixup tokens in methods with small header size, too.
35898
35899 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
35900
35901         * object.c (mono_string_to_utf8): remove assert(!error), instead
35902         print a warning. 
35903
35904 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
35905
35906         * icall.c: update to the new mono_Array_class_get interface.
35907
35908 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35909
35910         * appdomain.c, object.c: Boehm-GC enable.
35911         * icall.c: make get_data_chunk() support split data requests.
35912         Ensure a class is initialized in more cases. Return only the first
35913         property found in GetProperties() or the compiler gets confused. 
35914         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
35915         * reflection.h, reflection.c: add fixup mechanism for field and method
35916         tokens. Initialize assembly->typeref in a single place. Output
35917         properties after events. Support custom attributes for events, too.
35918         Typo fix for paramter custom attrs.
35919
35920 2002-03-07  Martin Baulig  <martin@gnome.org>
35921
35922         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
35923
35924 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
35925
35926         * class.c (mono_array_class_get): fix. for multi. dim. arrays
35927
35928 2002-03-06  Martin Baulig  <martin@gnome.org>
35929
35930         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
35931         non-zero lower bounds. See testcases #F10-#F13.
35932
35933 2002-03-05  Martin Baulig  <martin@gnome.org>
35934
35935         * exception.c (mono_get_exception_argument_out_of_range): New exception.
35936
35937         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
35938         ves_icall_System_Array_GetValue(), only calculate the absolute array position
35939         here.
35940         (ves_icall_System_Array_SetValue): Likewise.
35941         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
35942         as argument and does the actual work. This function is used when copying a
35943         multi-dimensional array.
35944         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
35945         now do all the widening conversions of value types.
35946         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
35947
35948 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35949
35950         * class.c: remove some magic numbers and use the smbolic names,
35951         instead. Added init_events() to load event info at class init time.
35952         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
35953         and mono_metadata_methods_from_event().
35954         * reflection.h, reflection.c: added support for writing out the evnets
35955         related information.
35956
35957 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35958
35959         * reflection.h, icall.c: use a different method (GetInterfaces)
35960         to gather interface info and add isbyref, isprimitive and
35961         ispointer to the ves_icall_get_type_info() return value.
35962
35963 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35964
35965         * class.h: stared adding support for events.
35966         * icall.c: split find_members implementation. Added debug icall to get
35967         the address of an object.
35968         * reflection.c: handle TypeBuilders in mono_type_get_object().
35969
35970 2002-03-01  Martin Baulig  <martin@gnome.org>
35971
35972         * icall.c (ves_icall_System_Array_GetLength): This must throw an
35973         ArgumentOutOfRangeException(), not an ArgumentException().
35974         (ves_icall_System_Array_GetLowerBound): Likewise.
35975         (ves_icall_System_Array_GetValue): Improved argument checking.
35976         (ves_icall_System_Array_SetValue): Improved argument checking.
35977
35978 2002-03-01  Martin Baulig  <martin@gnome.org>
35979
35980         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
35981         called with invalid arguments rather than just dying with g_assert().
35982         (ves_icall_System_Array_SetValue): Likewise.
35983         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
35984         raise a NotImplementedException instead.
35985         (ves_icall_System_Array_GetLength): Added argument checking.
35986         (ves_icall_System_Array_GetLowerBound): Added argument checking.
35987
35988 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
35989
35990         * object.h (mono_assert): new macros mono_assert and
35991         mono_assert_not_reached
35992
35993 2002-02-28  Martin Baulig  <martin@gnome.org>
35994
35995         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
35996         and "System::String::IsInterned" to "System::String::_IsInterned".
35997
35998 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
35999
36000         * icall.c: remove hacks for typebuilder. Added icall to create a
36001         modified type from a tybebuilder.
36002         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
36003         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
36004         to create a backing MonoClass for a TypeBuilder.
36005
36006 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36007
36008         * class.c, class.h: more refactoring of class init.
36009         Export mono_class_setup_mono_type() and mono_class_setup_parent().
36010
36011 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
36012
36013         * marshal.c, marshal.h: start of marshaling interface.
36014
36015 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36016
36017         * icall.c: fix order in assembly qualified name icall.
36018
36019 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36020
36021         * class.c: do not free str, since we store it in the hash table.
36022         * reflection.h: add label field to MonoILExceptionInfo.
36023         * reflection.c: handle references to more than one assembly. Handle
36024         case when there isn't a module created in the assembly.
36025
36026 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36027
36028         * class.c: Fix typo. Start refactoring of class init code.
36029
36030 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36031
36032         * appdomain.c: exit with 1 on error.
36033         * class.c: we already have the name in MonoClassField.
36034         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
36035         MonoStreamHeader instead of an offset of image->raw_metadata.
36036
36037 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
36038
36039         * appdomain.c (mono_init): Be even more descriptive about the error.
36040
36041 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
36042
36043         * appdomain.c: give the user an informative message when corlib can't
36044         be loaded.
36045
36046 2002-02-26  Martin Baulig  <martin@gnome.org>
36047
36048         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
36049         New icall to get the time zone data.
36050
36051 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36052
36053         * reflection.c: set virtual and raw size of section correctly.
36054         * threads.c: transfer domain information to newly created threads.
36055
36056 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36057
36058         * class.c: when instancing a class in a domain, load the default
36059         vaules for static fields from the constant table. Fix System.Enum to
36060         not be an enum.
36061         * icall.c: implement Object::GetType() internalcall. Implemented
36062         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
36063         Fixed checking of binding flags in find_members().
36064         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
36065         * reflection.c: handle enumerations when writing to the constant
36066         table. Use a different object cache for types.
36067
36068
36069 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
36070
36071         * object.c (mono_object_isinst): fix for arrays
36072
36073         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
36074
36075 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36076
36077         * object.c: don't use mprotect ()  and fix intern pool hash table
36078         lookup for big endian systems.
36079
36080 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36081
36082         * icall.c: change type_is_subtype_of () signature.
36083
36084 2002-02-21  Mark Crichton  <crichton@gimp.org>
36085
36086         * rand.c, rand.h: Added random number generator for
36087         System.Security.Cryptography classes.
36088
36089         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
36090
36091         * icall.c: Added System.Security.Cryptography calls.
36092
36093 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36094
36095         * class.c, icall.c, metadata.c: better support for pointer types.
36096         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36097         * reflection.c: Add support for getting custom attrs for properties
36098         and simplify some code.
36099
36100 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36101
36102         * icall.c: change getToken () and add custom attribute GetBlob()helper
36103         method.
36104         * reflection.h: add custom attrs array to the reflection builder structures.
36105         * reflection.c: encode and emit custom attributes for all the relevant
36106         reflection objects. Cache fieldref and methodref tokens. Change
36107         mono_image_create_token() interface to take a MonoDynamicAssembly.
36108         More complete custom attributes decoder. Load custom attributes for
36109         Assembly, Field, Method and Constructor objects, too. Make the
36110         returned array an Attribute[] one, not object[]. Added
36111         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36112         custom attribute constructor.
36113
36114 2002-02-20  Dick Porter  <dick@ximian.com>
36115
36116         * icall.c:
36117         * rawbuffer.c:
36118         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36119         problem code out for now).
36120
36121 2002-02-19  Radek Doulik  <rodo@ximian.com>
36122
36123         * object.c (mono_ldstr): use hash table to avoid multiple swapping
36124
36125 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36126
36127         * icall.c: register the GetCustomAttributes method.
36128         * object.c, object.h: add mono_string_new_len ().
36129         * reflection.h, reflection.c: added mono_runtime_invoke(),
36130         mono_install_runtime_invoke(). Added
36131         mono_reflection_get_custom_attrs () to load custom attributes and
36132         create the attribute objects.
36133
36134 2002-02-19  Dick Porter  <dick@ximian.com>
36135         * threads-dummy-types.c:
36136         * threads-dummy-types.h:
36137         * threads-dummy.c:
36138         * threads-dummy.h:
36139         * threads-pthread-types.c:
36140         * threads-pthread-types.h:
36141         * threads-pthread.c:
36142         * threads-pthread.h:  Deleted obsolete files
36143
36144 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
36145
36146         * class.c (mono_class_vtable): runtime init the class when we
36147         allocate static class data.
36148
36149         * icall.c (ves_icall_System_Array_SetValue): check for null values.
36150
36151         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36152         and String - but we will need generic marshalling support in the
36153         future. 
36154         (mono_init): set the domain name in a ms compatible way
36155
36156         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36157         String[].
36158
36159 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
36160
36161         * object.c (mono_array_clone): use alloca() instead of g_malloc  
36162         for sizes
36163
36164         * appdomain.c (mono_domain_unload): impl.
36165
36166 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36167
36168         * appdomain.c, object.c: fix intern pool implementation.
36169         * class.c: fix alignment code.
36170
36171 2002-02-16  Radek Doulik  <rodo@ximian.com>
36172
36173         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36174         and s2 > s1, just copy lower bytes to be compatible with little
36175         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36176         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36177
36178         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36179         force big_endian to be 1 for big endian machines 
36180         (ves_icall_iconv_new_decoder): ditto
36181
36182 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
36183
36184         * socket-io.c (convert_sockopt_level_and_name): If the system
36185         doesn't define SOL_IP or SOL_TCP, get them by hand using
36186         getprotobyname() and caching the values (because this could be a
36187         slow operation).
36188         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36189         Use the appropriate struct when the system does support it. Ie,
36190         not all systems have struct ip_mreqn so use struct ip_mreq when
36191         appropriate.
36192
36193 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36194
36195         * reflection.c: handle finally clauses.
36196
36197 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
36198
36199         * socket-io.c: use g_snprintf() instead of snprintf.
36200
36201 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36202
36203         * reflection.c (mono_param_get_objects): Cast second argument to
36204         mono_method_get_param_names to a const char** to silence the
36205         compiler warning.
36206
36207         * appdomain.c (mono_domain_assembly_open): Put parens around the
36208         truth statement in the for-loop.
36209
36210         * unicode.c (iconv_convert): Got rid of a compiler warning about
36211         int i being unused when the system has a new iconv.
36212         (iconv_get_length): Same.
36213
36214         * image.c (load_class_names): Cast the second argument to
36215         g_hash_table_insert() to char* to hush compiler warnings about the
36216         arg being a const.
36217         (mono_image_open): Same here.
36218
36219         * socket-io.c: Don't conditionally include sys/filio.h or
36220         sys/sockio.h here anymore since we now get them from
36221         io-layer/io-layer.h
36222         (inet_pton): If the system doesn't support inet_aton, implement
36223         using inet_addr and also #define INADDR_NONE if it isn't defined
36224         by the system.
36225
36226 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
36227
36228         * metadata.c, metadata.h: added function to get packing and size info
36229         of a typedef.
36230         * reflection.h, reflection.c: handle field RVA data. Save info about
36231         the table layout if needed. Assign typedef indexes to all the types
36232         before dumping the info about them to avoid forward reference problems.
36233
36234 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
36235
36236         * socket-io.c (convert_sockopt_level_and_name): ifdef
36237         SO_ACCEPTCONN because it is not defined on my system (old debian)
36238
36239 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36240
36241         * opcode.c: use stddef.h to get NULL.
36242
36243 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36244
36245         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
36246         for FIONBIO, FIONREAD and SIOCATMARK.
36247         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
36248         define INADDR_NONE and besides, inet_addr() is deprecated and
36249         should not be used. Use inet_pton() instead - it also has the
36250         added bonus that it can easily handle IPv6 addresses as well.
36251         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
36252
36253 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36254
36255         * decimal.c: remove _MSC_VER conditional.
36256
36257 2002-02-13  Dick Porter  <dick@ximian.com>
36258
36259         * socket-io.c: 
36260         * icall.c: Internal calls for Blocking, Select, Shutdown,
36261         GetSocketOption and SetSocketOption
36262
36263 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36264
36265         * assembly.cs: better resolver: use it instead of some kludgy
36266         code.
36267
36268 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
36269
36270         * reflection.c: the best way to speed-up the compiler is to avoid
36271         infinite loops.
36272
36273 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
36274
36275         * class.c (mono_class_vtable): changed the object layout
36276         (obj->vtable->class). 
36277         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
36278
36279 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36280
36281         * assembly.c: look for assemblies in the assembly dir, too.
36282
36283 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36284
36285         * class.c: fix thinko in mono_class_from_type().
36286
36287 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36288
36289         * exception.h, exception.c: added TypeLoadException.
36290         * object.h, object.c: added mono_array_clone ().
36291         * icall.c: handle throwOnError in AssemblyGetType().
36292         Added Array.Clone().
36293         * opcode.h, opcode.c: use a single value for the opcode val.
36294         Compile fix for non-gcc compilers.
36295
36296 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
36297
36298         * opcodes.c, opcodes.h: export interesting info about opcodes.
36299
36300 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
36301
36302         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
36303         icalls. 
36304
36305         * class.c (class_compute_field_layout): set element_class for enums
36306         (mono_class_create_from_typedef): set element_class for normal classes
36307
36308         * icall.c (ves_icall_System_Enum_get_value): impl.
36309
36310         * class.c (mono_class_create_from_typedef): do not set valuetype
36311         flag for System.ValueType and System.Enum
36312
36313 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
36314
36315         * unicode.c (iconv_convert): fix big endian problem.
36316
36317 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36318
36319         * class.c: add asserts if we are ever going to scribble over memory.
36320         * socket-io.c: not all systems have AF_IRDA defined.
36321
36322 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
36323
36324         * class.c (class_compute_field_layout): do not consider static
36325         fields to compute alignment
36326
36327 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
36328
36329         * appdomain.c (mono_appdomain_get): impl.
36330         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
36331
36332 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36333
36334         * icall.c: ignore "file://" prefix when loading an assembly.
36335
36336 2002-01-23  Dick Porter  <dick@ximian.com>
36337
36338         * socket-io.c:
36339         * icall.c:
36340         * Makefile.am: Added socket support
36341
36342 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36343
36344         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36345         code back.  This should return the assemblies that are loaded by
36346         the runtime on behalf of an application domain. 
36347
36348         The current implementation is still broken, it just returns every
36349         assembly loaded, but until we get real applications domain this
36350         will do.
36351
36352 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
36353
36354         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36355         AppDomain object.
36356
36357 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36358
36359         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36360         the mono_class_from_name lookup.
36361         (ves_icall_get_parameter_info): ditto.
36362         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36363         method.
36364         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36365
36366 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36367
36368         * class.c: load also nested classes on class init.
36369         System.ValueType instance methods gets passed boxed
36370         values, unless methods in derived classed that get a pointer to the
36371         data.
36372         * icall.c: use better name parsing code in GetType().
36373         * image.c, image.h: add mono_image_loaded ().
36374         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36375         * reflection.c, reflection.h: added mono_reflection_parse_type().
36376
36377 2002-01-22  Veronica De Santis <veron78@interfree.it>
36378
36379         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36380         * threads.c : Added the implementation of internal calls for events
36381         * threads.h : Added prototypes of internal calls for events
36382         
36383 2002-01-21  Radek Doulik  <rodo@ximian.com>
36384
36385         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36386
36387 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36388
36389         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36390         (mono_class_value_size): use min_align
36391
36392 2002-01-20  Dick Porter  <dick@ximian.com>
36393
36394         * threads.h:
36395         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36396         so it compiles on w32.
36397
36398 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36399
36400         * metadata.c (mono_type_stack_size): impl.
36401
36402         * class.c (mono_class_get_field): impl. memberref token
36403
36404 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36405
36406         * icall.h : Added the internal calls mapping for CreateMutex_internal
36407                     and ReleaseMutex_internal.
36408         * threads.h : Added the prototype of mutexes internal calls.
36409         * threads.c : Added the implementations of mutexes internal calls.
36410
36411 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36412
36413         * metaparse.h: removed unused file.
36414         * reflection.c, reflection.h: added stream_data_align () function 
36415         to align data in streams and keep stream aligned. Add support for
36416         exception support in method headers.
36417
36418 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36419
36420         * unicode.c: make iconv_convert () return the number of bytess written
36421         in the output buffer.
36422
36423 2002-01-15  Dick Porter  <dick@ximian.com>
36424         * threads.c: Make the runtime's idea of infinite timeouts coincide
36425         with the class library's
36426
36427         Fix a particularly egregious bug in mono_thread_cleanup(). That
36428         code was so utterly bogus it must have been written on a Monday.
36429
36430 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36431
36432         * reflection.h: add subtypes field to TypeBuilder.
36433         * reflection.c: encode constants for literal fields.
36434         Handle subtypes. Fix user string token (and add a zero byte)
36435         at the end.
36436         
36437 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36438
36439         * class.c (mono_class_init): bug fix: assign slot numbers for
36440         abstract methods.
36441
36442 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36443
36444         * reflection.c: don't try to output a code RVA for abstract methods.
36445         Small fixes for method header format. Output parameter info to the
36446         ParamDef table. Save method overriding info to MethodImpl table.
36447         Fix property support. Allow typedef.extends to be a type in the
36448         building assembly.
36449         * verify.c: fix off-by-one error.
36450
36451 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36452
36453         * class.c: fix mono_class_from_mono_type () for szarray types.
36454         Remove unused cache check in mono_class_from_type_spec().
36455         * icall.c: *type_from_name () functions handle simple arrays and byref.
36456         * reflection.c: handle byref and szarray types. Handle methods without
36457         body (gets P/Invoke compilation working). Handle types and fields in
36458         get_token ().
36459         * reflection.h: add rank to MonoTypeInfo.
36460
36461 2002-01-10  Dick Porter  <dick@ximian.com>
36462
36463         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36464         internal calls
36465
36466 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36467
36468         * icall.c: initialize class in type_from_handle ().
36469         Loop also in parent classes for get_method ().
36470         * reflection.c: properly encode class and valuetype types.
36471         Start on encoding TypeBuilder types. Handle fieldrefs.
36472         Use correct length when registering a user string.
36473         Handle ConstructorBuilder and MonoMethod in get_token ().
36474         Make mono_type_get_object () aware of cached types.
36475         * object.c: back out change to mono_string_new ().
36476
36477 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36478         * object.c: mono_string_new should return a NULL when the string 
36479         passed in is NULL -- not try to deference it.
36480         
36481 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36482
36483         * icall.c: hack to make IsSubType work for TypeBuilders.
36484         * reflection.c: emit constructors before methods.
36485         Retrieve param names in mono_param_get_objects().
36486
36487 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36488
36489         * Makefile.am: fix list of headers and sources so automake 1.5
36490         doesn't complain. Removed \# at end of list.
36491
36492 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36493
36494         * reflection.c: get token for a method ref. Set return type of
36495         constructor to void.
36496         * loader.c: debug message.
36497         * class.c: typo fix.
36498
36499 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36500
36501         * icall.c: fix array init with rank > 1. FindMembers
36502         loops in parent class as well.
36503         * image.c: do not insert nested types in name cache.
36504         * reflection.c: warning fix.
36505         * reflection.h: add override method (for interface impl).
36506
36507 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36508
36509         * metadata.c: fix customattr decoding.
36510
36511 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36512
36513         * rawbuffer.cs: Added native Win32 implementation, avoids using
36514         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36515
36516 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36517
36518         * class.c: make the low-level routines handle the cache.
36519
36520 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36521
36522         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36523
36524 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36525
36526         * class.c: fix mono_array_element_size() for objects.
36527         * class.h, class.c: add properties to MonoClass and load them
36528         at init time.
36529         * icall.c: check with isinst() when assigning a value to an array
36530         instead of requiring the classes to match exactly.
36531         Implemented icall for System.Type::GetType().
36532         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36533         enums. Handle bindingflags when looking for methods and fields.
36534         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36535         and mono_metadata_methods_from_property().
36536         * reflection.h, reflection.c: added structures for propreties,
36537         parameters and enums. Implemented mono_property_get_object() and
36538         mono_param_get_objects().
36539
36540 2001-12-18  Dick Porter  <dick@ximian.com>
36541
36542         * file-io.c: Use mono_string_to_utf16() instead of
36543         mono_string_chars()
36544
36545         * object.c: Added mono_string_to_utf16(), which copies the non
36546         NULL-terminated MonoString into a new double-null-terminated
36547         buffer.
36548
36549 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36550
36551         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36552
36553 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36554
36555         * file-io.c: raise exceptions if handle is invalid.
36556
36557 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36558
36559         * assembly.c: yet another check for mscorlib.
36560         * class.c, class.h: load nesting info for classes.
36561         * icall.c: many new functions to support the Reflection classes.
36562         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36563         * reflection.h, reflection.c: mono_image_create_token(),
36564         mono_assembly_get_object(), mono_type_get_object(),
36565         mono_method_get_object(), mono_field_get_object(): methods to return
36566         objects that parallel the C representation of assemblies, types,
36567         methods, fields.
36568
36569 2001-12-11  Dick Porter  <dick@ximian.com>
36570
36571         * icall.c:
36572         * file-io.c: Internal calls for file IO.
36573
36574 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36575
36576         * tabledefs.h: missing FileAttributes.
36577         * verify.h, verify.c: use is_valid_string () to simplify and check for
36578         valid strings more correctly. Fix warnings and speeling.
36579         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36580         Check code: branches, maxstack, method calls.
36581
36582 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36583
36584         * object.c (mono_object_allocate): removed static, so that the jit
36585         can allocate value types.
36586
36587         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36588
36589 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36590
36591         * class.c: init enum types right away and register the
36592         token->MonoClass map in mono_class_create_from_typedef ().
36593         * verify.h, verify.c: first cut of the verifier.
36594         * pedump.c: add --verify switch to verify metadata tables.
36595         * tabledefs.h: add some missing enums.
36596
36597 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36598
36599         * class.c (mono_install_runtime_class_init): impl.
36600         (mono_class_init): renamed mono_class_metadata_init to
36601         mono_class_init, also removed the metadata_inited flag
36602
36603         * object.c (mono_object_isinst): use faster algorithm
36604
36605 2001-11-30  Radek Doulik  <rodo@ximian.com>
36606
36607         * mono-endian.h: reverted last change
36608         added function prototypes
36609
36610         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
36611         add mono-endian.c back
36612
36613         * mono-endian.c: returned back, as Paolo pointed out, it's needed
36614         for unaligned access, I've mistaked it with endianess. I am
36615         sorry.
36616         (mono_read16): fix reverted endianess
36617         (mono_read64): ditto
36618         (mono_read32): ditto
36619
36620 2001-11-30  Dick Porter  <dick@ximian.com>
36621
36622         * exception.c: Implement mono_exception_from_name()
36623
36624 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36625
36626         * metadata.h, metadata.c: remove params_size and locals_size and their
36627         calculation from the metadata code: they are only usefult to the
36628         interp.
36629
36630 2001-11-29  Radek Doulik  <rodo@ximian.com>
36631
36632         * object.c (mono_ldstr): swap bytes here, it's probably not the
36633         best place, but works for me now, I'll redo it once I know mono
36634         better, also note that I add PROT_WRITE and don't reset back, also
36635         note that it's only affects big endians, so x86 should be OK
36636
36637         * mono-endian.h (read16): use just glib macros for both endians
36638
36639         * mono-endian.c: removed as glib macros are used in in
36640         mono-endian.h so we don't need to care about endianess for read
36641         macros as glib does that for us already
36642
36643 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
36644
36645         * class.h, class.h: take minimum alignment into consideration so
36646         that the fields of a class remain aligned also when in an array.
36647
36648 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36649
36650         * loader.h, loader.c: add mono_method_get_param_names().
36651         * class.c: 0-init class fields.
36652
36653 2001-11-26  Dick Porter  <dick@ximian.com>
36654
36655         * icall.c:
36656         * threads-types.h:
36657         * threads.c: New file that handles System.Threading on all platforms
36658
36659         * object.c: 
36660         * object.h: Remove the synchronisation struct from MonoObject,
36661         replace it with a pointer that gets initialised on demand
36662
36663         * Makefile.am: Replace all the system-specific threading code with
36664         a single file that uses the new wrapper library
36665
36666 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
36667
36668         * class.c, class.h: add mono_install_trampoline() so that the runtime
36669         can register a function to create a trampoline: removes the ugly
36670         requirement that a runtime needed to export arch_create_jit_trampoline.
36671         * object.h, object.c: added mono_install_handler() so that the runtime
36672         can install an handler for exceptions generated in C code (with
36673         mono_raise_exception()). Added C struct for System.Delegate.
36674         * pedump.c: removed arch_create_jit_trampoline.
36675         * reflection.c: some cleanups to allow registering user strings and
36676         later getting a token for methodrefs and fieldrefs before the assembly
36677         is built.
36678         * row-indexes.h: updates and fixes from the new ECMA specs.
36679
36680 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
36681
36682         * class.h, class.c: add enum_basetype field to MonoClass.
36683         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
36684         to get index in the constant table reated to a field, param or
36685         property.
36686         * reflection.h, reflection.c: handle constructors. Set public-key and
36687         version number of the built assembly to 0.
36688         * row-indexes.h: update from new ECMA spec.
36689
36690 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36691
36692         * class.h, class.c: add a max_interface_id to MonoClass.
36693         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
36694         since it's used to do that. Added mono_type_type_from_obj().
36695         Make GetType() return NULL instead of segfaulting if the type was not
36696         found. Handle simple arrays in assQualifiedName.
36697         * object.h: add a struct to represent an Exception.
36698         * reflection.c: output call convention in method signature.
36699         Add code to support P/Invoke methods and fixed offsets for fields.
36700
36701 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
36702
36703         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
36704         the value.
36705         * icall.c: use mono_array_addr instead of array->vector: fixes the
36706         reflection image writing.
36707         * reflection.c: init call convention byte to 0 in method signature.
36708         Encode the property signature. Don't output property-related methods
36709         twice. Really process the properties for a type (don't cast a field to
36710         a property, my mom always told me that).
36711         Fix 64 bit issues in pointer alignment in a different and more
36712         readable way.
36713
36714 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
36715
36716         * loader.h: Removed type class from MonoDefaults, added monotype
36717
36718         * loader.c: Loaded MonoType, removed loading of Type
36719
36720         * icall.c (my_mono_new_object): Now returns a System.MonoType,
36721         and fills in System.Type._impl with a RuntimeTypeHandle rather
36722         than the actual MonoClass *
36723
36724         (ves_icall_type_from_handle): change from type_class to
36725         monotype_class
36726
36727         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
36728         implemented
36729
36730         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
36731         implemented
36732
36733         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
36734
36735         (ves_icall_System_Reflection_Assembly_GetType): implemented
36736
36737         (ves_icall_System_MonoType_assQualifiedName): implemented
36738
36739         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
36740
36741 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
36742
36743         * assembly.c (mono_assembly_open): Implement a cache for the
36744         assemblies. 
36745
36746         (mono_assembly_close): only destroy the assembly when the last
36747         reference is gone.
36748         
36749 2001-11-09  Dick Porter  <dick@ximian.com>
36750
36751         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
36752
36753 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
36754
36755         * class.c (mono_class_metadata_init): bug fix: compute the right slot
36756
36757 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36758
36759         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
36760         from Martin Weindel.
36761         * object.h: add mono_string_chars ().
36762
36763 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
36764
36765         * reflection.c (build_compressed_metadata): Eliminates warnings
36766         and uses 64-bit clean code.
36767
36768         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
36769         (mono_type_equal): Change signature to eliminate warnings.
36770
36771 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36772
36773         * icall.c, loader.c: remove the internalcall array constructors.
36774         Changes to match the new MonoArray structure.
36775         * object.h, object.c: an array object doesn't allocate an extra
36776         vector. Add mono_array_new_full () to create jagged arrays easily.
36777
36778 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36779
36780         * metadata.h, metadata.c: add mono_metadata_field_info () to
36781         retreive all the info about a field from vairous tables.
36782         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
36783         * class.h, class.c: augment MonoClassField with more info.
36784         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
36785         policy and load a field's RVA if needed.
36786
36787 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
36788
36789         * class.c (mono_class_metadata_init): create a trampoline for all
36790         virtual functions instead of actually compiling them.
36791
36792 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
36793
36794         * class.h, class.c: include name in MonoClassField.
36795         * class.c: fix fundamental type of System.Object and System.String.
36796         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
36797         tokens in ldtoken.
36798         * icall.c: remove internalcalls for the Reflection stuff that is now
36799         done in C# code.
36800         * loader.c: mono_field_from_memberref () implementation.
36801         * mono-endian.c: thinko (s/struct/union/g).
36802         * object.c, object.h: make the mono_string_* prototypes actually use
36803         MonoString instead of MonoObject.
36804         * reflection.c, reflection.h: updates for changes in the reflection
36805         code in corlib: we use C structures that map to the actual C# classes.
36806         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
36807         fat method header if needed and use the info from the ILGenerator for
36808         methods. Handle fields in types. Misc fixes.
36809
36810 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
36811
36812         * class.c (mono_class_metadata_init): bug fix: always allocate
36813         space for static class data
36814
36815 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
36816
36817         * class.c (mono_compute_relative_numbering): use relative
36818         numbering to support fast runtime type checks.
36819
36820 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
36821
36822         * class.c (mono_class_create_from_typeref): added debugging output
36823         to print class name when MonoDummy is returned instead of real class
36824
36825 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
36826
36827         * class.c (mono_class_metadata_init): interface offset table now
36828         contains pointers into the vtable - this is more efficient for the jit
36829
36830 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
36831
36832         * class.c (mono_class_metadata_init): use a temporary vtable (the
36833         old algorithm only worked for the interpreter, but not for the jit)
36834
36835 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
36836
36837         * loader.c (method_from_memberref): use mono_class_get to get the
36838         class of an array instead of using System.Array directly.
36839         (mono_get_method): also add MEMBERREF methods to the method cache
36840         which usefull for arrays.
36841
36842 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
36843
36844         * pedump.c (arch_compile_method): added to compute vtable entry
36845
36846         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
36847         number of interfaces.
36848         
36849         * class.h: merged MonoArrayClass into MonoClass
36850
36851         * class.c (mono_class_create_from_typedef): compute the vtable size and
36852         allocate space to include the vtable inside MonoClass
36853         (mono_class_metadata_init): initialize the vtable
36854
36855 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
36856
36857         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
36858         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
36859         * image.c: endian fixes by Laurent Rioux.
36860         * object.h, object.c: rename MonoStringObject to MonoString and
36861         MonoArrayObject to MonoArray. Change some function names to conform to
36862         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
36863         guint16* as first argument, so don't use char*.
36864         Provide macros to do the interesting things on arrays in a portable way.
36865         * threads-pthread.c: updates for the API changes and #include <sched.h>
36866         (required for sched_yield()).
36867         * icall.c: updates for the API changes above.
36868         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
36869         platforms that need them.
36870
36871 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36872
36873         * class.c: set the correct type for all the fundamental
36874         type when loading the class.
36875
36876 2001-10-05  Dick Porter  <dick@ximian.com>
36877
36878         * threads-pthread.c (pthread_mutex_timedlock): Simple
36879         compatibility version for C libraries that lack this call.
36880
36881 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36882
36883         * class.c: MonoTypes stored in MonoClass are stored as
36884         fundamental MonoTypes when the class represents a
36885         fundamental type (System.Int32, ...).
36886         The TypeHandle return by ldtoken is a MonoType*.
36887         * icall.c: ves_icall_get_data_chunk () write out all the
36888         PE/COFF stuff. Implement ves_icall_define_method (),
36889         ves_icall_set_method_body (), ves_icall_type_from_handle ().
36890         * image.c: properly skip unknown streams.
36891         * loader.h, loader.c: add type_class to mono_defaults.
36892         * metadata.c, metadata.h: export compute_size () as
36893         mono_metadata_compute_size () with a better interface.
36894         Typo and C&P fixes.
36895         * pedump.c: don't try to print the entry point RVA if there is no entry point.
36896         * reflection.c, reflection.h: many cleanups, fixes, output method
36897         signatures and headers, typedef and typeref info, compress the metadata
36898         tables, output all the heap streams, cli header etc.
36899         * row-indexes.h: typo fixes.
36900
36901 2001-10-04  Dick Porter  <dick@ximian.com>
36902
36903         * object.h: Add a synchronisation mutex struct to MonoObject
36904
36905         * object.c (mono_new_object): Initialise the object
36906         synchronisation mutexes
36907
36908         * icall.c: System.Threading.Monitor internal calls
36909         
36910         * threads-pthread.h:
36911         * threads-pthread.c: System.Threading.Monitor internal calls
36912
36913         * threads-types.h: New file, includes the system-specific thread
36914         structures
36915         
36916         * threads-pthread-types.h:
36917         * threads-pthread-types.c: New files, handle pthread-specific
36918         synchronisation types
36919
36920         * threads-dummy-types.h: 
36921         * threads-dummy-types.c: New files of dummy support for
36922         thread-specific types
36923
36924         * metadata.c:
36925         * image.c:
36926         * pedump.c: include mono-endian.h not endian.h
36927         
36928         * Makefile.am: More threads files.
36929         Name mono-endian.h not endian.h
36930
36931 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
36932
36933         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
36934         stuff and implement a few more bits.
36935         * icall.c: a field needs to be dereferenced twice. Do not use the same
36936         name for two variables in the same scope.
36937         * image.c, image.h: cleanups.
36938
36939 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
36940
36941         * class.c (mono_class_metadata_init): bug fix: compute the right size
36942
36943 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
36944
36945         * icall.c: implemented some of the Reflection internalcalls.
36946         * image.c, image.h: start writing out the PE/COFF image.
36947         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
36948         that does the reverse than decode_blob_size ().
36949         * object.c: use mono_metadata_encode_value (). Move here
36950         temporary implementation of mono_string_to_utf8 ().
36951         * rawbuffer.c: make malloc_map static.
36952
36953 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36954
36955         * metadata.c: fix type comparison for arrays.
36956         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
36957         Added a couple of new classes to monodefaults.
36958         * icall.c: added a couple of Reflection-related internalcalls.
36959         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
36960         Added a byval_arg MonoType to MonoClass.
36961
36962 2001-09-28  Dick Porter  <dick@ximian.com>
36963
36964         * icall.c:
36965         * threads-pthread.h: 
36966         * threads-pthread.c: Implemented internal calls for
36967         LocalDataStoreSlot operations.  Applied mutexes around all shared
36968         data.  Reworked the thread creation and Start() operations to
36969         avoid a race condition.
36970         
36971         * threads-dummy.h:
36972         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
36973
36974 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
36975
36976         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
36977
36978 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
36979
36980         * class.c, loader.c: warn and return NULL instead of erroring out.
36981         * icall.c: added System.AppDomain::getCurDomain().
36982         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
36983
36984 2001-09-25  Dick Porter  <dick@ximian.com>
36985
36986         * threads-pthread.h:
36987         * threads-pthread.c: Implemented timed thread joining and added
36988         System.Threading.Thread::Join_internal internal call
36989
36990         * icall.c: Added System.Threading.Thread::Join_internal internal call
36991
36992         * threads-dummy.h:
36993         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
36994
36995 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
36996
36997         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
36998         mono_string_intern () to implement the semantics of the ldstr opcode
36999         and the interning of System.Strings.
37000         * icall.c: provide hooks to make String::IsIntern and String::Intern
37001         internalcalls.
37002
37003 2001-09-23  Dick Porter  <dick@ximian.com>
37004
37005         * threads-dummy.c: 
37006         * threads-dummy.h: New files of dummy threading routines
37007
37008         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
37009         support code based on system specifics
37010
37011         Rename PTHREAD_LIBS to THREAD_LIBS
37012         
37013 2001-09-23  Dick Porter  <dick@ximian.com>
37014
37015         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
37016         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
37017         internal calls.
37018         (mono_thread_init): Set up a Thread object instance to return when
37019         the main thread calls Thread.CurrentThread
37020         (mono_thread_cleanup): Wait for all subthreads to exit
37021
37022         * icall.c: New internal calls for System.Threading.Thread::Sleep
37023         (including Schedule) and CurrentThread
37024
37025         * threads.h: New file, to insulate thread-specific stuff from the
37026         rest of the code
37027
37028 2001-09-21  Dick Porter  <dick@ximian.com>
37029
37030         * threads-pthread.h: 
37031         * threads-pthread.c: New file, for handling pthreads-style
37032         threading support.  Start() now starts a new thread and executes
37033         the ThreadStart delegate instance.
37034
37035         * icall.c: Added the internalcall for
37036         System.Threading.Thread::Start_internal
37037
37038         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
37039
37040 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
37041
37042         * loader.c: work around the different signatures for delegates
37043         constructors csc generates in compiled code vs the ones compiled in mscorlib.
37044
37045 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37046
37047         * class.h, class.c: add mono_class_get_field_from_name ().
37048         * *: Fix C comments and other ANSI C issues.
37049
37050 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
37051
37052         * endian.h, assembly.c: fix some endianness issues.
37053
37054 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
37055
37056         * loader.h, load.c: add delegate_class to mono_defaults.
37057         Handle runtime provided methods in mono_get_method ().
37058
37059 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
37060
37061         * loader.c (mono_get_method): use pinvoke for internal call
37062
37063         * icall.c: use pinvoke for internal call
37064
37065         * loader.c (method_from_memberref): set the method name
37066
37067 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
37068
37069         * metadata.c: help the compiler generate better code for
37070         mono_class_from_mono_type ().
37071
37072 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
37073
37074         * class.c (mono_class_metadata_init): delayed computing of the
37075         class size to mono_class_metadata_init ()
37076
37077 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
37078
37079         * class.c, class.h: add an interfaces member to MonoClass.
37080         * image.c, image.h: add assembly_name field to MonoImage
37081         from the assembly table.
37082         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
37083
37084 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37085
37086         * class.c: Handle Array in mono_class_from_mono_type ().
37087         * metadata.c, pedump.c: some endian fixes.
37088
37089 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37090
37091         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37092         * metadata.c: fix small problem introduced with the latest commit.
37093
37094 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37095
37096         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37097         We don't need a MonoMetadata pointer anymore to compare signatures in
37098         mono_metadata_signature_equal (), update callers.
37099         Reduced memory usage an number of allocations for MonoMethodHeader and
37100         MonoMethodSignature.
37101
37102 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37103
37104         * metadata.c: added compare for szarray.
37105
37106 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37107
37108         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37109         and add a couple more types to it and mono_defaults. Give an hint on
37110         classes that need implementing in our corlib and are referenced
37111         in mscorlib.
37112
37113 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37114
37115         * class.h, class.c: keep track if a class is also an Enum.
37116         * loader.c: Implement a couple more types for use in libffi
37117         marshalling. Gives better diagnostics when failing to dlopen
37118         a library. Set method->klass for P/Invoke methods, too.
37119
37120 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37121
37122         * class.c, class.h: add a MonoType this_arg to MonoClass that
37123         represents a pointer to an object of the class' type that
37124         can be used by the interpreter and later the type cache.
37125         Add best guess alignment info for valuetype objects.
37126
37127 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37128
37129         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37130         into MonoType: one less level of indirection and allocation and
37131         simplifies quite a bit of code. Added cache for MonoTypes that are
37132         used frequently, so that we don't need to allocate them all the time.
37133
37134 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
37135
37136         * class.c (mono_class_create_from_typedef): System.Enum is also a
37137         value type, although it does not derive from System.ValueType
37138         (maybe a bug in the ms compiler?)
37139
37140         * metadata.c (mono_type_size): return the right size for value types
37141
37142         * loader.c (mono_get_method): only initialize method header if not abstract
37143
37144         * class.c (mono_class_from_mono_type): use mono_default values. 
37145
37146 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
37147
37148         * *: use MonoClass pointers instead of <type_tokens>
37149         
37150         * class.h: new flag: metadata_inited.
37151
37152         * class.c (mono_class_metadata_init): impl.
37153         (mono_class_instance_size): impl.
37154         (mono_class_data_size): impl.
37155
37156 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37157
37158         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37159         MonoClass now has the name and name_space fields. 
37160         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37161         mono_get_method () takes and optional MonoClass as argument.
37162         Removed mono_typedef_from_name() and added mono_class_token_from_name()
37163         instead that takes advantage of a map from class names to typedef
37164         tokens in MonoImage.
37165
37166 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37167
37168         * metadata.c: zero is not a valid alignment boundary.
37169         Merge MONO_TYPE_VOID in default decoding code.
37170
37171 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
37172
37173         * image.h: merged MonoMetadata into MonoImage
37174
37175         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37176         identify the type of elements.
37177
37178 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37179
37180         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37181         * cil-coff.h: split MonoMSDOSHeader and add size info.
37182         * image.c: add some consistency checks.
37183         * metadata.c: fix row size computation: one programmer
37184         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37185         add explanation for the locator routine.
37186         Fix decoding of size in method header.
37187         
37188 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
37189
37190         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
37191         (g_concat_dir_and_file): Bring g_concat_dir_and_file
37192         function from gnome-libs.  This uses the right path separator
37193         based on the OS, and also works around a bug in some systems where
37194         a double slash is not allowed. 
37195         (default_assembly_name_resolver): Use g_concat_dir_and_file
37196         (mono_assembly_open): ditto.
37197
37198 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
37199
37200         * metadata.c (mono_metadata_signature_equal): impl.
37201
37202         * *: void is now a realy MonoType (instead of using NULL)
37203         
37204         * metadata.c (do_mono_metadata_parse_type): use
37205         mono_metadata_parse_type to parse void value.
37206
37207 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
37208
37209         * metadata.c, metadata.h: in the signature and method header store
37210         only the space required for holding the loca vars and incoming arguments.
37211
37212 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
37213
37214         * metadata.c (do_mono_metadata_parse_type): treat void like any
37215         other type (instead of assigning NULL);
37216
37217 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
37218
37219         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
37220
37221 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
37222
37223         * image.c (do_mono_image_open): added a cache for arrays.
37224
37225 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37226
37227         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
37228         decode a single column from a row in a metadata table and changes
37229         to take advantage of it in the typedef locator (gives a nice speed up).
37230         Store offset info for function params.
37231
37232 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
37233
37234         * image.h (MONO_IMAGE_IS_CORLIB): removed 
37235
37236 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
37237
37238         * assembly.c: how could mono_assembly_close () had ever worked?
37239         * metadata.c, metadata.h: provide offset info for local vars.
37240         Implement mono_type_size () to take care of alignment as well
37241         as size (it was mono_field_type_size in cli/class.c before).
37242
37243 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
37244
37245         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
37246
37247         * assembly.h (CORLIB_NAME): set to corlib.dll
37248
37249         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
37250
37251 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37252
37253         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
37254         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
37255         tokentype.h: massive namespace cleanup.
37256
37257 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37258
37259         * metadata.h, metadata.c: decode exception clauses when parsing method header.
37260
37261 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
37262
37263         * metadata.c (mono_metadata_free_type): added check for type !=
37264         NULL (void) before calling mono_metadata_free_type()
37265
37266 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
37267
37268         * metadata.h, row_indexes.h: added header with enumerations to use
37269         to index in the columns from tables in metadata and to decode coded
37270         tokens: we should start using this instead of embedding magic numbers
37271         all over the code.
37272
37273 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
37274
37275         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
37276         Move metadata_t info from cli_image_info_t to MonoImage, where
37277         it's easily accessible. Changed all the uses accordingly.
37278         Added the method and class caches to MonoImage.
37279         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
37280         and mono_metadata_decode_value () signature to be more consistent
37281         with the other parse functions (and simplify code). Taken advantage
37282         of zero-length array allocation with GCC. Removed reduntant (and
37283         wrong) MonoFieldType struct and use MonoParam instead. Changed
37284         mono_metadata_parse_field_type () to use common code for parsing.
37285         Added mono_metadata_typedef_from_field () and
37286         mono_metadata_typedef_from_method () to lookup a typedef index from a
37287         field or method token.
37288         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
37289
37290 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
37291
37292         * metadata.c (mono_metadata_parse_field_type): Implement. 
37293         (do_mono_metadata_parse_type): Split engine from
37294         mono_metadata_parse_type, so that we can create smaller structures
37295         for things that just have one pointer to the MonoType (look at
37296         the MonoFieldType)
37297
37298 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
37299
37300         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
37301         as Jan Gray found out, it is incorrect. 
37302
37303 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
37304
37305         * assembly.c: Implement asssembly loading.  This loads an image
37306         and loads all the referenced assemblies.  Come to think of it, we
37307         could always do lazy loading of the assemblies. 
37308
37309         * image.c (mono_image_open): Keep loaded images in a hashtable.
37310
37311         * image.h (MonoImage): Add reference count.
37312
37313 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
37314
37315         * assembly.c (mono_assembly_open): Keep track of the file name in
37316         case the assembly has no ASSEMBLY table.
37317
37318         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
37319         from get.c here.
37320
37321 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
37322
37323         * metadata.c, metadata.h: decode local vars in method header
37324         parse function. Change callers accordingly.
37325
37326 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
37327
37328         * metadata.h, cil-coff.h: protect against multiple inclusion.
37329         Added some new structures to hold information decoded from metadata:
37330         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
37331         and relevant decoding/free functions.
37332         * metadata.c: implement decoding functions. Add warning for out of bounds
37333         index in mono_metadata_locate(). Implement mono_get_method () to retreive
37334         all the info about a method signature and invocation. Remove check on
37335         uninitialized local var in parse_mh() and fix memory leak.
37336
37337 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
37338
37339         * metadata.h: More macros.
37340
37341         * tokentype.h: New file.
37342
37343 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37344
37345         * assembly.c: added a consistency check and initialize
37346         some structures with g_new0().
37347         * metadata.c: fixed a couple more bugs in table size computation
37348         and add other checks for out-of bound access to metadata.
37349
37350 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37351
37352         * metatada.c: fix bugs computing table sizes. Spew a
37353         warning when index in string heap is out of bounds.
37354
37355 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
37356
37357         * metadata.h: Add a couple of macros to manipulate tokens. 
37358
37359 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37360
37361         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37362         cli_section_tables).
37363
37364 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
37365
37366         * metadata.c (mono_metadata_user_string): New function, provides
37367         access to the UserString heap. 
37368
37369 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
37370
37371         * metadata.c: Add inline documentation.
37372
37373 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
37374
37375         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37376         files. 
37377
37378 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37379
37380         * typeattr.h: New file, TypeAttribute flags. 
37381
37382 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37383
37384         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37385         mono_assembly_ensure_section): Section loading code.
37386         (load_section_tables): Load the sections.
37387
37388         * mono/metadata/metadata.c (mono_metadata_locate_token,
37389         mono_metadata_locate): Functions to locate the information
37390         definition given a token or a table and an index.
37391         (mono_metadata_compute_table_bases): New.
37392         (compute_size): New function to compute the sizes of the various
37393         tables.
37394
37395         * mono/metadata/metadata.h: Finish listing the different index
37396         types. 
37397
37398         * mono/metadata/pedump.c: Improve to dump new information.
37399
37400 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37401
37402         * mono/metadata/metadata.c: Entered all the tables matching
37403         Beta2. 
37404
37405         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
37406
37407
37408
37409