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         * appdomain.c (create_exceptions): Rename to
15         create_domain_objects. Create the ephemeron tombstone object.
16
17         * domains-internals.h (MonoDomain): Add new field for the
18         ephemeron tombstone.
19
20         * domain.c (mono_domain_free): Set ephemeron_tombstone to
21         NULL.
22
23 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
24
25         * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
26         and dislinks must be processed before LOS since they
27         could end up with pointers to memory returned to the
28         OS.
29
30 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
31
32         * class.c (mono_class_alloc): New helper function to centralize memory allocation
33         for classes, allocates either from the image mempool or from the heap.
34
35         * class.c: Use mono_class_alloc to allocate memory owned by classes.
36
37         * metadata.c (free_generic_class_dependents): Free more items belonging to
38         generic classes.
39
40 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
41
42         * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
43         as well. Fixes #604054.
44
45 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
46
47         * metadata-verify.c: MS doesn't mind duplicates in the
48         typeref table. Move it to full verification.
49
50         Fixes #600508.
51
52 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
53
54         * image.c (do_mono_image_load): Report verification
55         errors when loading an image fails.
56
57 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
58
59         * reflection.c (mono_type_get_object): Remove chunk of code
60         no longer in use.
61
62 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
63
64         * icall-def.h
65         * icall.c: Delete some unused icalls.
66
67 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
68
69         * appdomain.c (mono_domain_has_type_resolve): Check for
70         NULL domain objects to make pedump happy.
71
72         * object.c (mono_field_get_value): Assert on NULL object.
73         It's the caller resposibility to check for this.
74
75         * object.c (mono_field_get_value_object): Ditto.
76
77         Fixes #601384.
78
79 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
80
81         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
82         checks can avoid doing a mono_class_init.
83
84         * icall.c: Remove mono_class_init from a bunch of icalls that
85         don't need it.
86
87         Hopefully we're now lazy enough to fix most victims of #601431.
88
89 2010-05-07  Mark Probst  <mark.probst@gmail.com>
90
91         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
92
93 2010-05-07  Mark Probst  <mark.probst@gmail.com>
94
95         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
96
97 2010-05-07  Marek Habersack  <mhabersack@novell.com>
98
99         * culture-info-tables.h: updated to include en-TT culture. Fixes
100         bug #594035
101
102 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
103
104         Move mono_class_init from mono_type_get_object to icalls.
105         This causes massive memory savings for Assembly::GetTypes () and
106         make it fail a lot less due to missing dependencies.
107
108         This is a conservative, naive change as it doesn't remove some
109         mono_class_init from places that might not need them. Carefull
110         review of those should follow.
111
112         * reflection.c (mono_type_get_object): Don't mono_class_init the
113         returning type.
114
115         * reflection.c:
116         * cominterop.c:
117         * icall.c:
118         * marshal.c: Call mono_class_init in functions receiving a MonoType
119         object.
120
121         First step into fixing #601431.
122
123 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
124
125         * gc-internal.h: Add new functions required for ephemeron support.
126
127         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
128
129         * icall-def.h: Add GC::register_ephemeron_array.
130
131         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
132         under sgen. Its fields must not be marked.
133
134         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
135
136         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
137         handling finalizable objects. Clean dead ones after all finalizable
138         handling.
139
140         * sgen-gc.c (dump_heap): Add new kind of internal memory.
141
142         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
143         arrays from the dead domain.
144
145         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
146
147         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
148         whose keys are reachable.
149
150         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
151         list of live ephemeron arrays.
152
153 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
154
155         * class.c (mono_class_layout_fields): Don't perform alignment
156         if align is zero.
157
158         * class.c (mono_class_layout_fields): Init field related information
159         to sane defaults.
160
161 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
162
163         * verify.c (mono_verifier_verify_class): Verify the constraint
164         of generic type definitions.
165
166 2010-05-04  Mark Probst  <mark.probst@gmail.com>
167
168         * sgen-marksweep.c: Simplify free list maintenance in sweep.
169
170 2010-05-02  Mark Probst  <mark.probst@gmail.com>
171
172         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
173         major_do_collection() across the two major collectors.
174
175 2010-05-02  Mark Probst  <mark.probst@gmail.com>
176
177         * sgen-gc.c: Add heavy statistics counter for re-added global
178         remsets.
179
180 2010-05-02  Mark Probst  <mark.probst@gmail.com>
181
182         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
183         get rid of a division in critical code.
184
185 2010-04-29  Mark Probst  <mark.probst@gmail.com>
186
187         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
188         blocks for objects without references in mark&sweep, to improve
189         performance.
190
191 2010-04-28  Mark Probst  <mark.probst@gmail.com>
192
193         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
194         statistics up-to-date.
195
196 2010-04-27  Mark Probst  <mark.probst@gmail.com>
197
198         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
199         heap-dump for mark&sweep.
200
201 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
202
203         * loader.c (mono_method_get_header): Move the is_inflated case before the
204         wrapper case, as a method can be both.
205
206 2010-04-27  Mark Probst  <mark.probst@gmail.com>
207
208         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
209         separate pass to scan pinned and large object but use the gray
210         queue like for regular objects.
211
212 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
213
214         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
215         string.h for memmove.
216
217         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
218         ipaddress_to_struct_in6_addr() is only needed when
219         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
220
221 2010-04-25  Mark Probst  <mark.probst@gmail.com>
222
223         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
224         separate copy_object functions for major vs nursery.  Allows us to
225         get rid of a few checks and the start and end parameters for many
226         functions.
227
228 2010-04-25  Mark Probst  <mark.probst@gmail.com>
229
230         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
231         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
232         collector.
233
234 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
235
236         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
237         calling setup_mono_type () since the nested parent could recursively reference
238         the nested class using generic constraints. Fixes #599469.
239
240 2010-04-24  Mark Probst  <mark.probst@gmail.com>
241
242         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
243         abstraction.
244
245 2010-04-24  Mark Probst  <mark.probst@gmail.com>
246
247         * sgen-gc.c: Remove more unneeded code.
248
249 2010-04-24  Mark Probst  <mark.probst@gmail.com>
250
251         * sgen-gc.c: Disable managed allocator and wbarrier when the
252         binary protocol is enabled.
253
254 2010-04-24  Mark Probst  <mark.probst@gmail.com>
255
256         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
257
258 2010-04-24  Mark Probst  <mark.probst@gmail.com>
259
260         * sgen-gc.c: Remove a few commented out and unneeded bits.
261
262 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
263
264         * threadpool.c: patch from Robert Nagy that fixes a nullref and
265         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
266
267 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
268
269         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
270         types.
271
272         Fixes #331126
273
274 2010-04-21  Mark Probst  <mark.probst@gmail.com>
275
276         * sgen-gc.c: Turn off semi-precise stack mark.
277
278 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
279
280         * reflection.c (mono_custom_attrs_from_index): Use right function
281         to free 'list' (i.e. g_list_free) if the verifier fails.
282
283 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
284
285                 * verify.c: Handle the case where mono_type_get_underlying_type_any
286                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
287                 and MONO_TYPE_VALUETYPE in those case.
288
289                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
290
291                 Hopefully Fixes #564253.
292
293 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
294
295         * domain-internals.h: made threadpool_jobs volatile.
296         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
297         all local jobs.
298         * threadpool.c:
299                 -When two threads try to initialize the socket IO pool,
300                 the second one waits until the intialization is finished
301                 instead of continuing right away.
302                 -Add checks for domain unload: no items added in this case.
303                 -Only measure the time every 10 elements added to the queue.
304                 This is an experiment since linux x86 gettimeofday() sucks.
305                 -Create new thread if there are none waiting for work items.
306                 -There was a missing decrement of the busy threads.
307                 -Make sure the local queue is cleaned up before exiting the
308                 thread when the program ends.
309
310 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
311
312         * reflection.c (mono_type_get_object): Normalize generics types
313         as to how managed code expect them to be. A generic instance over
314         the GTD arguments must have the same mirror as the GTD itself.
315
316         Fixes #473289.
317
318 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
319
320         * locales.c: Implement support for DISABLE_NORMALIZATION.
321
322 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
323
324         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
325         since it is not a MonoMethod.
326
327 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
328
329         * icall-def.h: Add get_RequiresElevatedPermissions icall to
330         System.Security.SecurityManager - used only by Moonlight
331         * security-core-clr.c|h: Add Elevated Trust/Permission support
332         for CoreCLR / Moonlight
333
334 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
335
336         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
337         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
338
339 2010-04-16  Marek Habersack  <mhabersack@novell.com>
340
341         * mono-perfcounters.c: added code for the "Mono
342         Memory/Total Physical Memory" performance counter.
343
344         * mono-perfcounters-def.h: added definition of the "Mono
345         Memory/Total Physical Memory" performance counter.
346
347 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
348
349         * class.c (mono_class_get_method_by_index): Return NULL
350         on type load failures.
351
352 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
353
354         * class.c (mono_class_from_typeref): Check if the supplied
355         image has an assembly bound to it.
356
357         Fixes #567884.
358
359 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
360
361         * loader.c (mono_method_get_signature_full): Use new function
362         inflate_generic_signature_checked to check for errors.
363
364         Fixes #560839.
365
366 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
367
368         * loader.c (inflate_generic_signature): Add _checked variant
369         and move this function to use it.
370
371 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
372
373         * class.c (mono_class_setup_vtable_general): Use error checking
374         version of mono_class_inflate_generic_method_full.
375
376         Fixes #596975.
377
378 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
379
380         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
381         error handling passing MonoError around.
382
383         Fixes #560336.
384
385 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
386
387         * socket-io.c: make GetHostByName ("") work on windows.
388         Fixes bug #456723.
389
390 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
391
392         * object-internals.h:
393         * threads.c: use a spin lock when accesing the per-thread appdomain
394         list.
395
396 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
397
398         * threads.c: no need to take the threads lock in push/pop appdomain.
399
400 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
401
402         * reflection.c (_mono_reflection_parse_type): MS supports
403         non-assembly-qualified types in a generic type parameter list
404         when enclosed in '[]' (which signals that they should be a fqn).
405
406         This breaks ECMA specs for how type names are encoded in cattr
407         blobs but F# does it.
408
409         Fixes #576342.
410
411 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
412
413         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
414         for instance methods/ctors.
415
416         Fixes #422113.
417
418 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
419
420         * reflection.c: Use the new verifier support for checking
421         custom attributes.
422
423         Fixes #595306.
424
425 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
426
427         * metadata-verify.c: Implement structural verification
428         of custom attributes. This check requires access to the
429         loader since to resolve the size of an enum we have to
430         look it up.
431         We don't check if named argumenments are encoded in a
432         compatible fashion to their underlying field/prop.
433         Maybe we should?
434
435         * verify-internals.h: Add two new cattr verification API.
436
437 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
438
439         * metadata-verify.c (decode_signature_header): Fix signature.
440
441 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
442
443         * verify.c (mono_verifier_is_enabled_for_method): Handle
444         assembly less images.
445
446         * verify.c (mono_verifier_is_class_full_trust): Ditto.
447
448 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
449
450         * loader.c (mono_method_signature_checked): Properly
451         init MonoError.
452
453         * loader.c (mono_method_signature): It's the calee
454         resposibility to init the error object.
455
456 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
457
458         * metadata-verify.c (decode_signature_header): Do proper
459         overflow checking.
460
461 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
462
463         * reflection.c: maintain the invariants required by
464         mono_class_layout_fields() also in typebuilder_setup_fields ().
465
466 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
467
468         * security-core-clr.c: Call mono_class_setup_methods in 
469         get_default_ctor before checking klass->methods. Fix typo in
470         comment
471
472 2010-04-10  Jb Evain  <jbevain@novell.com>
473
474         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
475         add .net 4.0 RTM version.
476
477 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
478
479         * reflection.c (resolve_object): Properly inflate generic
480         methods when a context is supplied.
481
482         Fixes #591226.
483
484 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
485
486         * verify.c (mono_method_verify): A switch op don't empty
487         the stack for the next one. Fixes a bug when running fsi
488         under --verify-all.
489
490 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
491
492         * metadata-verify.c (is_valid_standalonesig_blob): Accept
493         fields as valid standalone sig too. F# does generate them.
494
495         * metadata-verify.c (verify_typedef_table_full): Ignore
496         what <module> extends.
497
498 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
499
500         * verify.c (do_invoke_method): It's ok to do use call with
501         virtual, non-final methods if their class is sealed.
502
503 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
504
505         * icall.c (ves_icall_MonoField_GetValueInternal): This function
506         is a near identical copy of mono_field_get_value_object. So simply
507         call it.
508
509         * object.c (mono_field_get_value_object): Handle literal fields
510         on open generic classes.
511
512         Fixes #594942.
513
514 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
515
516         * reflection.c (mono_reflection_create_runtime_class): Setup
517         parent/supertype information again since it can be changed
518         without notice.
519
520 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
521
522         * verify.c (verify_type_compatibility_full): Properly handle
523         stores between arrays of primitives.
524
525         Fixes the verifier side of #555950.
526
527 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
528
529         class.c (mono_bounded_array_class_get): Properly init
530         cast_class to take the fact that uint[] and int[] can be
531         casted between each other.
532
533         Fixes #555950.
534
535 2010-04-07  Geoff Norton  <gnorton@novell.com>
536
537         * domain.c: Avoid a deadlock on osx.  Fixes #565765
538
539 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
540
541         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
542         builders. Fixes #594464.
543
544 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
545
546         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
547         waiting for all threads to suspend, as those threads can't be suspended.
548
549 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
550
551         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
552         to avoid crashes on newly created threads.
553
554 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
555
556         * file-io.c: reset the MonoIOStat structure in case of error.
557         Fixes bug #582667.
558
559 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
560
561         * class.c (print_implemented_interfaces): Print proper type name.
562
563         * class.c (mono_class_setup_vtable): Don't try that hard to produce
564         the override map for generic instances since it later ignored.
565
566         * class.c (mono_class_implement_interface_slow): Don't break for
567         dynamic generic instances.
568
569         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
570
571         * reflection.c (mono_reflection_method_get_handle): New method that
572         resolves a method handle.
573
574         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
575         case when we override methods from a dynamic generic instance interface.
576
577         Fixes #575941.
578
579 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
580
581         * threadpool.c: don't attempt to close the pipe when it has not been
582         created.
583
584 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
585
586         * threadpool.c: if there are no waiting threads, try to start a new
587         one. This fixes the not-so-random hangs in System.ServiceModel tests.
588         No need to use InterlockedCompareExchange to read volatile variables.
589
590 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
591
592         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
593         and reference types that point to the same class.
594
595         Fixes #565598.
596
597 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
598
599         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
600         when verifying compatibility between a generic instance and a generic
601         parameter.
602
603         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
604
605         * verify.c (stack_slot_stack_type_full_name): Improve verification type
606         name.
607
608         Fixes #587849.
609
610 2010-04-04  Mark Probst  <mark.probst@gmail.com>
611
612         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
613
614 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
615
616         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
617
618 2010-04-03  Marek Habersack  <mhabersack@novell.com>
619
620         * process.c: when cross-compiling with MinGW, force GetProcessId
621         lookup using GetProcAddress.
622
623 2010-04-02  Mark Probst  <mark.probst@gmail.com>
624
625         * sgen-gc.c: parse_environment_string_extract_number() must be
626         static.
627
628 2010-04-02  Mark Probst  <mark.probst@gmail.com>
629
630         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
631         gray_object_dequeue(), to make sure they're inlined.
632
633 2010-04-02  Mark Probst  <mark.probst@gmail.com>
634
635         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
636         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
637
638 2010-04-02  Jb Evain  <jbevain@novell.com>
639
640         * exception.c: remove dead code.
641
642 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
643
644         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
645         with mono-gc.h.
646
647 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
648
649         * sgen-gc.c: Make the nursery size adjustable by the
650         MONO_GC_PARAMS environment variable.
651
652         Code is contributed under MIT/X11 license.
653
654 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
655
656         * threadpool.c: threadpool threads wait is alertable.
657         Fixes bug #592964.
658         Reduced the stack size of the *poll_wait thread.
659
660 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
661
662         * exception.c|metadata-internals.h: Add new mono_get_exception_
663         field_access_msg and mono_get_exception_method_access_msg 
664         functions that accept a const char* parameter to provide more 
665         details when the exception is thrown.
666         * security-core-clr.c|h: Rework code to allow logging exceptions
667         (export MONO_LOG_MASK="security") and to supply more details in
668         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
669         mono_security_core_clr_is_field_access_allowed and 
670         mono_security_core_clr_is_call_allowed to return an exception,
671         with messages and logging, that can be emitted by method-to-ir.c
672
673 2010-04-01  Mark Probst  <mark.probst@gmail.com>
674
675         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
676         pinned object.
677
678 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
679
680         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
681         the assembly name is not well formed utf8. Fixes #567882.
682
683 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
684
685         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
686         the generic parameters from the builder. Fixes #473298.
687
688 2010-03-31  Miguel de Icaza  <miguel@novell.com>
689
690         * object.c (mono_class_proxy_vtable): Eliminate warning. 
691
692         * marshal.c (emit_marshal_boolean): Eliminate possible
693         uninitialized local warning. 
694
695 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
696
697         * class.c (mono_class_init): Postpone coreclr inheritance check
698         until the end of the initialization (so we can check up the 
699         default ctor manually for the core-clr inheritance rules).
700         * security-core-clr.c: Add the missing (undocumented) checks on
701         default constructors when verifying inheritance rules.
702
703 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
704
705         * domain-internals.h (MonoJitExceptionInfo): Add new field
706         handler_end to the data union. To be used to point the end
707         of a finally block.
708
709 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
710
711         * reflection.c: Add support for new v4 type
712         System.Reflection.MonoModule that is the concrete version
713         of Module which is abstract unver v4.
714
715 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
716
717         * class.c (mono_class_init): Don't set class failure after
718         inited = 1 is set. It must be done before.
719
720 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
721
722         * mono-config.c: Add support for OS "haiku"
723         * ChangeLog: Fix UTF-8 encoding
724
725         Code is contributed under MIT/X11 license.
726
727 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
728
729         * console-unix.c: fixed include logic for sys/ioctl.h.
730
731 2010-03-30  Mark Probst  <mark.probst@gmail.com>
732
733         * threads.c: Fix bitmap generation for TLS marking on 64 bit
734         systems.
735
736 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
737
738         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
739         unfinished/broken typebuilders.
740
741 2010-03-29  Mark Probst  <mark.probst@gmail.com>
742
743         * sgen-gc.c: Use the same heuristic for the LOS target that we use
744         for the minor section allowance.
745
746 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
747
748         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
749         "NoOptimization".
750
751 2010-03-29  Mark Probst  <mark.probst@gmail.com>
752
753         * sgen-gc.c: Count bytes allocated with heavy statistics.
754
755 2010-03-29  Mark Probst  <mark.probst@gmail.com>
756
757         * sgen-gc.c: More detailed time statistics.
758
759 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
760
761         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
762         fix the user defined mark interface to pass a pointer
763         to the object location and not the object itself.
764
765 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
766
767         * reflection.c (mono_method_body_get_object): Release
768         the method header before the call to CACHE_OBJECT since
769         this is a macro that returns.
770
771 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
772
773         * class.c (inflate_generic_type): mono_metadata_type_dup
774         already dupes array information, the g_memdup was just
775         leaking memory.
776
777 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
778
779         * verify.c: Add stack_peek function. Fix CEE_DUP
780         to not read from invalid memory if push did expand
781         the stack.
782
783 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
784
785         * verify.c: Remove old table verification code that has
786         been superseeded by the new metadata verifier.
787
788         * verify.h: Remove mono_image_verify_tables from the public
789         API.
790
791         * pedump.c: Fix for removed bits.
792
793 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
794
795         * verify.c: Allocate stack slows lazily to reduce stack usage
796         in case of methods with huge stacks. Reduces memory consumption
797         for mcs yyparse from 459Mb to 1.8Mb.
798
799 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
800
801         * threadpool.c: don't try executing items from domains being
802         unloaded. Fixes appdomain-async-invoke test.
803
804 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
805
806         * threadpool.c: spin while the threadpool initializes.
807         * mono-wsq.c: if the WSQ has not been initialized or has been shut
808         down, don't do anything.
809
810 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
811
812         * threads.c (mono_thread_create_internal): Set the GC type of the
813         threads_starting_up hash table.
814
815 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
816
817         * threadpool.c: reset 'state' to avoid returning non-null when the
818         event type is not found.
819
820 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
821
822         * sgen-gc.c: make copy_object () take the address of the
823         slot holding the reference. This allows saving memory stores
824         when not needed and it allows keeping track of oldspace->nursery
825         references for the card table code.
826
827 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
828
829         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
830
831         Code is contributed under MIT/X11 license.
832
833 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
834
835         * object.c, threads.c, threads-types.h, threads.h: make the
836         managed thread local storage references precisely tracked.
837
838 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
839
840         * threadpool.[ch]: reworked the threadpool:
841                 -Threadpool threads use a work-stealing queue. Adding a work
842                 item from a threadpool thread will queue it in the thread
843                 local queue without locking (in most cases).
844                 -epoll events are coalesced before being added to the IO
845                 queue.
846                 -Dynamically change the number of active threads
847                 -Changed the global queue to be more GC friendly
848
849         * class-internals.h: add 2 new performance counters for the number of
850         threads in the threadpool and the IO threadpool.
851
852         * object-internals.h: new field in MonoAsyncResult.
853         * icall-def.h: new internal call for queueing work items.
854
855         * Makefile.am: add 2 new files.
856
857         * appdomain.c: bump up corlib version.
858
859         * mono-wsq.[ch]: an implementation of a work-stealing queue.
860
861         * mono-perfcounters-def.h:
862         * mono-perfcounters.c: added 2 new performance counters.
863
864 2010-03-26  Mark Probst  <mark.probst@gmail.com>
865
866         * sgen-gc.c: More FIXME/TODO updates.
867
868 2010-03-25  Mark Probst  <mark.probst@gmail.com>
869
870         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
871         function mono_gc_invoke_with_gc_lock() which invokes a function
872         with the guarantee that no collection will occur during its execution.
873
874 2010-03-25  Mark Probst  <mark.probst@gmail.com>
875
876         * sgen-gc.c: Update a few comments.
877
878 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
879
880         * reflection.c: Add support for new v4 type
881         System.Reflection.MonoAssembly that is the concrete version
882         of Assembly which is abstract unver v4.
883
884 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
885
886         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
887         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
888
889         Expose a few macros that are needed for SR but not SRE to the
890         world (previous inside the SRE ifdef)
891
892 2010-03-24  Mark Probst  <mark.probst@gmail.com>
893
894         * sgen-gc.c (gc_register_current_thread): We need
895         stack_start_limit as well in the non-attribute pthread case.
896
897 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
898
899         * threads.c: Fix windows build.
900
901 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
902
903         * thread-types.h: Add mono_thread_resume_interruption.
904
905         * threads.c: Add mono_thread_resume_interruption, this
906         function should be called after the last protected handler
907         found at interruption time has finished.
908
909 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
910
911         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
912         Check MonoInternalThread's ::state instead of ::abort_exc
913         since the later can be lazily created.
914
915         This is specially problematic when running a finally block
916         under AbortRequested state. ResetAbort must work, but the
917         abort_exc object has not been created because interruption
918         has not began.
919
920 2010-03-22  Geoff Norton  <gnorton@novell.com>
921
922         * locales.c: Its possible for CFStringGetCStringPtr
923         to return null and not convert encodings.  Use
924         CFStringGetCString instead.
925
926 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
927
928         * class-internals.h, class.c, object.c: introduce compressed
929         interface bitmaps (for now only under small config): this saves
930         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
931         startups.
932
933 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
934
935         * mono-debug.c: don't try to get the method header, it causes a
936         deadlock and it is not used for anything anymore.
937
938 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
939
940         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
941         broken by the last change.
942
943 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
944
945         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
946         SOCK_RDM.
947         
948         Code is contributed under MIT/X11 license.
949
950 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
951
952         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
953         nursery.
954
955         Code is contributed under MIT/X11 license.
956
957 2010-03-19  Martin Baulig  <martin@ximian.com>
958
959         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
960         dummy field, containing an empty string.
961         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
962
963
964 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
965
966         * class.c: setup_interface_offsets() refactor to not call
967         mono_class_get_implemented_interfaces () more times than needed and
968         to reduce the runtime memory requirements to be O(num_interfaces)
969         instead of O(max_interface_id).
970
971 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
972
973         * mono-mlist.[ch]: add mono_mlist_set_next ().
974
975 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
976
977         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
978         associated changes to support holes in the protected range of a
979         try block.
980
981         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
982         retrieves the holes table from a given MonoJitInfo.
983
984 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
985
986         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
987         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
988         hide the contents of the MonoString and MonoArray structs from the
989         public API. Change the accessor macros to accessors functions where
990         needed. Adjusted the array API to allow for pointer-sized lengths and
991         starting positions, so 64 bit arrays can be optionally provided in an
992         API compatible way if needed on 64 bit systems.
993
994 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
995
996         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
997         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
998
999 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
1000
1001         * class-internals.h: remove the method header from MonoMethod since
1002         from now on it will be transient. We have a header pointer for method
1003         wrappers, since in that case we need to keep track of it. For this
1004         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
1005         structs now. The same happens with MonoMethodInflated.
1006         * class.c: reset the sre_method flag for inflated method structures:
1007         this makes the code that cares look at the header in the MonoMethodInflated
1008         structure.
1009         * loader.c: lookup the method header in the appropriate field now that
1010         it is removed from MonoMethod.
1011         * metadata-internals.h: add a flag to the method header to know if it
1012         can be freed inside mono_metadata_free_mh ().
1013         * method-builder.c: updates after moving the header field from
1014         MonoMethod to MonoMethodWrapper.
1015         * reflection.c: MonoMethods generated from Reflection.Emit use
1016         MonoMethodWrapper structs if they need a method header now (later take
1017         advantage of this and remove all the current unsafe uses of method_aux_hash).
1018         * metadata.c: make method header parsing not leak when verification
1019         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
1020         These changes save a few hundred KB of runtime memory in a mcs
1021         bootstrap or a monodevelop startup.
1022
1023 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1024
1025         * verify.c: Improve error message.
1026
1027 2010-03-12  Jb Evain  <jbevain@novell.com>
1028
1029         * reflection.c (add_exported_type): populate the exported
1030         table with the type's nested type.
1031
1032 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1033
1034         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
1035         can't read parentheses.
1036
1037 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1038
1039         * threads.c (thread_cleanup): Add a guard to dereferencing
1040         "thread" to avoid an unlikely race condition.
1041
1042 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
1043
1044         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
1045         instead of an empty string.
1046
1047 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1048
1049         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
1050         convert to a boolean, recent gcc versions compile this differently.
1051
1052 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1053
1054        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
1055        inlined.
1056
1057 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1058
1059         * sgen-gc.c (STRING_SIZE): Off by one.
1060
1061 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1062
1063         * sgen-archdep.h: Fix the signal context register access for
1064         AMD64.
1065
1066 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1067
1068         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
1069
1070 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1071
1072         * verify.c: Store the initial basic block returned by mono_basic_block_split
1073         so we can release the whole list and not just the first one.
1074
1075 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1076
1077         * verify.c, debug-helpers.c, profiler.c, loader.c,
1078         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1079         MonoMethodHeader a transient entity.
1080
1081 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
1082
1083         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1084         uncontrolled growth of the gray stack.
1085
1086         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1087         added items are removed first, improving cache locality. Avoid freeing queue
1088         segments in the fast path, use the list of segments as the free list, truncate
1089         it to its max size at the start of collection.
1090
1091 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1092
1093         * metadata-internals.h: more memory savings, both with small config and without.
1094
1095
1096 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1097
1098         * appdomain.c, domain-internals.h, domain.c, object.c:
1099         make class_vtable_hash into an array to reduce memory usage.
1100
1101 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1102
1103         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1104         object-internals.h, object.c, reflection.c, threadpool.c:
1105         reduce resource usage when the small config is selected.
1106         In particular, up to 64K of methods/fields/properties/events
1107         are allowed and "other" methods in events are ignored.
1108
1109 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1110
1111         * threads.c: reduce resource usage when compiled for a small config.
1112
1113 2010-03-05  Mark Probst  <mark.probst@gmail.com>
1114
1115         * sgen-gc.c: Also collect number of degraded-alloced objects with
1116         heavy statistics.
1117
1118 2010-03-04  Geoff Norton  <gnorton@novell.com>
1119
1120         * assembly.c: Only support OSX bundling if the bundle is 
1121         actually detectable.
1122
1123 2010-03-04  Geoff Norton  <gnorton@novell.com>
1124
1125         * loader.c: The marshal specs are freed at the end of the call
1126         but it explicitly frees the strings as well as the container,
1127         so we need to dup them too to avoid referencing free'd memory.
1128
1129 2010-03-04  Geoff Norton  <gnorton@novell.com>
1130
1131         * icall-def.h:
1132         * icall.c: Add a new private internal icall to construct
1133         an object from its type without running the ctor.
1134
1135 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1136
1137         * profiler.c: allow multiple profiler engines to be loaded
1138         at the same time.
1139
1140 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1141
1142         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1143         profiler event to track object moves.
1144
1145 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1146
1147         * object.c, profiler.c, profiler.h, string-icalls.c:
1148         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1149
1150 2010-03-03  Miguel de Icaza  <miguel@novell.com>
1151
1152         * decimal.c (mono_double2decimal): Add support for reducing the
1153         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
1154         expected.
1155
1156 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1157
1158         * icall-def.h:
1159         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1160
1161 2010-03-03  Marek Habersack  <mhabersack@novell.com>
1162
1163         * mono-config.c (mono_config_parse_assembly_bindings): added -
1164         parses assembly binding redirections from appdomain's config
1165         file.
1166
1167         * metadata-internals.h: added definition of a new function -
1168         mono_config_parse_assembly_bindings - to support parsing assembly
1169         binding redirections defined in appdomain's config file.
1170
1171         * domain-internals.h: added two new fields to _MonoDomain - a list
1172         of assembly bindings and a flag to parse the config file only
1173         once.
1174
1175         * assembly.c (assembly_binding_maps_name): empty culture name and
1176         NULL culture name are considered equal.
1177         (mono_assembly_apply_binding): added support for domain specific
1178         assembly binding redirections, read from the appdomain's
1179         configuration file. Fixes bug #580185
1180
1181 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
1182
1183         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
1184         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
1185         support.
1186
1187 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1188
1189         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
1190         from this function. The new function receive the parent token instead of a type.
1191
1192         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
1193         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
1194         typebuilders. This make it possible to properly encode generic type builders since
1195         their unmanaged type don't have generics data while unfinished.
1196
1197         Fixes #583655.
1198
1199 2010-03-02  Mark Probst  <mark.probst@gmail.com>
1200
1201         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
1202         writing binary log files (can be enabled by #define'ing
1203         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
1204         bugs in longer running programs.
1205
1206 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
1207
1208         * metadata.c: added some API documentation.
1209
1210 2010-03-01  Robert Jordan  <robertj@gmx.net>
1211
1212         * filewatcher.h: Include glib.h to fix the MSVC build.
1213
1214 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1215
1216         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
1217         a GC handle instead. This is a bit slower to access, but avoids burdening the
1218         GC with 100s of individual roots.
1219
1220         * reflection.c (mono_class_get_ref_info):
1221         (mono_class_set_ref_info):
1222         (mono_class_free_ref_info): New internal helper fuctions.
1223
1224         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
1225         of accessing klass->reflection_info directly.
1226
1227         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
1228         words.
1229
1230         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
1231         the previous array.
1232
1233 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
1234
1235         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
1236         needs an indirection.
1237
1238 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1239
1240         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
1241         so all generic sharing code is in one place.
1242
1243         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
1244         we don't call setup_interface_offsets () for unfinished types.
1245
1246 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1247
1248         * class.c (mono_class_generic_sharing_enabled): Move this to
1249         generic-sharing.c.
1250
1251         * image.c: Add an unload hook which is called before an image is unloaded.
1252
1253         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
1254         metadata.c having to depend on generic sharing.
1255
1256 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1257
1258         * class.c: reduce size of ridiculously large cache.
1259
1260 2010-02-26  Martin Baulig  <martin@ximian.com>
1261
1262         * mono-debug.h
1263         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
1264
1265         * threads.c (mono_thread_internal_reset_abort): New method; resets
1266         the abort, but doesn't throw any exception if no abort was requested.
1267
1268 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1269
1270         * class.c (get_implicit_generic_array_interfaces): Call
1271         mono_class_setup_interface_offsets () before accessing
1272         eclass->interface_offsets_count. This only shows up on platforms without IMT for
1273         some reason.
1274
1275 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1276
1277         * environment.c, environment.h, icall.c: make the GetOSVersionString()
1278         icall internal.
1279
1280 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
1281
1282         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
1283         direct access to the MonoType fields.
1284
1285 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1286
1287         * threads.h: Move some internal functions which were added to this header by
1288         mistake to threads-types.h.
1289
1290         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
1291
1292 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
1293
1294         * class-internals.h, class.h, object.h: make MonoRemoteClass
1295         and mono_remote_class() internal.
1296
1297 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1298
1299         * metadata-internals.h, class-internals.h, metadata.h: make the
1300         MonoType guts internal as well.
1301
1302 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
1303
1304         * reflection.h: the MonoTypeNameParse guts are internal now.
1305         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
1306         are internal now, provide accessors as needed.
1307         * metadata.h, metadata-internals.h: the MonoMethodSignature
1308         guts are internal now.
1309         * Makefile.am: mempool.h is an internal header now.
1310         * *.h, *.c: remove glib.h usage from the public headers.
1311
1312 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
1313
1314         * culture-info-table.h : regenerated.
1315
1316 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1317
1318         * metadata.c: Add mono_method_get_header_summary which returns minimal
1319         information about the header of a method. This is the information used
1320         by the inline oracle to reject methods.
1321
1322         This method doesn't decode local variables and doesn't cache it's result,
1323         so it should cause a minimal reduction in memory usage.
1324
1325         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1326         mono_method_get_header_summary.
1327
1328 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
1329
1330         * threads.c (mono_thread_exit): Make sure that the main thread is
1331         non-null before dereferencing it.
1332
1333 2010-02-21  Geoff Norton  <gnorton@novell.com>
1334
1335         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1336         locale.
1337         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
1338         before falling back to the posix lookup.
1339
1340 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
1341
1342         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1343         the DONT_MANAGE flag set.
1344
1345 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1346
1347         * domain.c: Remove old v1 version strings. Let the runtime
1348         default to 2.0 instead of failing because it can't find a
1349         working 1.0 instalation.
1350
1351 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1352
1353         * domain.c: Add v4 RC version string.
1354
1355 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1356
1357         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1358         of overflow checking function.
1359
1360 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1361
1362         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1363         generic methods.
1364
1365         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1366         cases for ParameterInfo.
1367
1368         Fixes #579493.
1369
1370 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1371
1372         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1373         have has_cctor set. Fixes #575946.
1374
1375 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1376
1377         * appdomain.c: display a warning if the parsing the config file
1378         produces any error.
1379         Skip the BOM in UTF-8 files.
1380         Copy the AppDomainSetup before setting the privateBinPath so that the
1381         correct configuration file is read.
1382
1383 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1384
1385         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1386         vtable trampoline per vtable slot index. Not used yet.
1387
1388 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1389
1390         * icall-def.h:
1391         * icall.c: add internal call that returns the system page size.
1392
1393 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1394
1395         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1396         'int' for system classes.
1397
1398 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1399
1400         * icall.c, icall-def.h: new icall to check for sufficient
1401         stack space.
1402
1403 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1404
1405         * reflection.c (ensure_complete_type): Check that reflection_info
1406         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1407
1408 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1409
1410         * attrdefs.h:
1411         * tabledefs.h: Add NoOptimization flag.
1412
1413 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1414
1415         * sgen-gc.c: Don't consider it a missing remset if the target
1416         object is pinned - we might have done the store but not added the
1417         remset yet.
1418
1419 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1420
1421         * sgen-gc.c: When checking for missing remsets, don't assert on
1422         the first one, but print them all and then assert.
1423
1424 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1425
1426         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1427
1428 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1429
1430         * console-unix.c: On OSX Control-Y is assigned to
1431         VDSUSP (non-Posix), the
1432         suspend-program-next-time-it-tries-to-read-input command (this is
1433         different than C-z, which suspends immediately).
1434
1435         Do the same thing that bash does and ignore this setting,
1436         making our repl/getline support pasting.
1437
1438 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1439
1440         * sgen-gc.c: Simple plausibility check for scan_starts.
1441
1442 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1443
1444         * sgen-gc.c: Round up when calculating the number of scan starts.
1445
1446 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1447
1448         * reflection.c: Export mono_get_object_from_blob.
1449
1450         * object-internals.h: Ditto.
1451
1452         * icall.c: New icall property_info_get_default_value to get the default
1453         value of a property. Since using this is not common, no caching is done.
1454
1455         * icall-def.h: Add new icall.
1456
1457 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1458
1459         * class.c: Add mono_class_get_property_default_value.
1460
1461         * class-internal.h: Export mono_class_get_property_default_value.
1462
1463 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1464
1465         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1466
1467 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1468
1469         * sgen-gc.c: introduced critical regions to allow some lockless
1470         operations and increase scalability.
1471
1472 2010-02-10  Geoff Norton  <gnorton@novell.com>
1473
1474         * reflection.c: Support building with DISABLE_REFLECTION
1475
1476 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1477
1478         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1479         Closes bug #566057.
1480
1481         * exception.c: fix typo in comment.
1482
1483 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1484
1485         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1486         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1487
1488         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1489
1490         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1491         the internal API.
1492
1493         Fixes #574434.
1494
1495 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1496
1497         * threads.c: Removed two assertions that were too strict.  Added a
1498         clarifying comment.  Fixes #577090.
1499
1500 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1501
1502         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1503         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1504
1505         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1506
1507         * verify.c (mono_type_get_stack_name): Fix a warning.
1508
1509 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1510
1511         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1512         mono_marshal_wrapper_info_from_wrapper.
1513
1514         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1515         mono_marshal_method_set_wrapper_data, and export.
1516
1517         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1518         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1519         by calling mono_marshal_get_wrapper_info ().
1520
1521         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1522         small objects which does no size checks.
1523
1524 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1525
1526         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1527
1528 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1529
1530         * verify.c (mono_method_verify): Use the new basic block formation pass
1531         to avoid verifying dead basic blocks. This is the same behavior as the
1532         runtime MS verifier.
1533
1534 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1535
1536         * mono-basic-block.c:
1537         * mono-basic-block.h: New implementation of a basic block formation pass.
1538         The formation pass does static liveness analysis as well to detect dead
1539         basic blocks.
1540
1541 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1542
1543         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1544         'this' argument in icalls.
1545
1546 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1547
1548         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1549
1550 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1551
1552         * object.c, domain.c: When using SGen, we must register
1553         vtable->type as a root if it's not a MonoType, because then it
1554         wasn't pin-alloced.
1555
1556 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1557
1558         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1559         at the start of nursery collections, because we might have had
1560         degraded allocations which changed next_data.
1561
1562 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1563
1564         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1565         custom attr so this function works in cross-compiling mode.
1566
1567 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1568
1569         * class.c (make_generic_param_class): Initialize interface offsets since we
1570         set klass->inited. Fixes #574819.
1571
1572 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1573
1574         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1575         calling the JIT domain cleanup hook.
1576
1577 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1578
1579         * pedump.c (main): Properly set the verifier mode when running the metadata
1580         verifier.
1581
1582 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1583
1584         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1585         overlapping fields now that we're called before has_references is set.
1586
1587         * pedump.c (dump_verify_info): Clear any loader error before verifying another
1588         method. Otherwise all sort of weird stuff happens.
1589
1590 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1591
1592         * object.c (mono_field_get_value_object): Handle nullable types correctly.
1593         Fixes #572874.
1594
1595 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
1596
1597         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
1598         Fixes #573322.
1599
1600 2010-01-23  Mark Probst  <mark.probst@gmail.com>
1601
1602         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
1603         pin_staging_area_index is greater than 0.
1604
1605 2010-01-22 Miguel de Icaza (miguel@novell.com)
1606
1607         * loader.c: Since we do nothing with the error returned, pass NULL
1608         to ignore the error.
1609
1610 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1611
1612         * reflection.c (typebuilder_setup_fields): Pretend field setup already
1613         happened before starting to encode the actual fields. This avoid ciclic
1614         dependencies and eventual crashes.
1615
1616         Fixes #572660.
1617
1618 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1619
1620         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
1621         atomic and remove the half-constructed hack in SGen.
1622
1623 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1624
1625         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
1626         has a recursive reference to itself.
1627
1628         Fixes #571863.
1629
1630 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1631
1632         * loader.c (mono_method_signature): Fix error message.
1633
1634 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1635
1636         * sgen-gc.c: Reuse to-space sections between nursery collections.
1637
1638 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1639
1640         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
1641         from the current assembly or mscorlib. Fixes bug #322957.
1642
1643 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1644
1645         * marshal.c: Calculate the target class of the delegete invoke wrappers using
1646         get_wrapper_target_class.
1647
1648 2010-01-19  Mark Probst  <mark.probst@gmail.com>
1649
1650         * sgen-gc.c: Fix warnings.
1651
1652 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1653
1654         * verify.c (store_local): Better error message.
1655
1656 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1657
1658         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
1659         arguments.
1660
1661 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1662
1663         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
1664         function is generics variance aware.
1665
1666 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
1667
1668         * security-core-clr.c (mono_security_core_clr_can_access_internals):
1669         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
1670
1671 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
1672
1673         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
1674           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
1675
1676         Code is contributed under MIT/X11 license.
1677
1678 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1679
1680         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
1681         on a GTD.
1682
1683 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1684
1685         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
1686         return a point to a wrapper specific info structure describing the wrapper.
1687         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
1688  
1689 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1690  
1691         * sgen-gc.c: Make minor collection section allowance adaptive,
1692         depending on the amount of memory reclaimed in the last major
1693         collection.  If more memory was reclaimed (i.e. more garbage
1694         produced), do the next collection earlier.
1695
1696 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1697
1698         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
1699         to itself.
1700
1701         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
1702         the token as parameter.
1703
1704         * verify-internals.h: Ditto.
1705
1706         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
1707
1708         Fixes #571460.
1709
1710 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1711
1712         * sgen-gc.c: Make store_remset_buffer_index long.
1713
1714 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1715
1716         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
1717
1718         Fixes #569579.
1719
1720 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1721
1722         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
1723         off precise marking if it is available.
1724         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
1725
1726 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
1727
1728         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
1729
1730         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
1731         pinned objects.
1732
1733         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
1734         to the array allocator.
1735
1736 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1737
1738         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
1739         result of mono_compile_method (), it already includes an ftnptr.
1740
1741 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1742
1743         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
1744
1745 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1746
1747         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
1748         hash value which doesn't depend on glib/eglib versions.
1749         (mono_metadata_type_hash): Use it.
1750
1751         * object.c (mono_method_get_imt_slot): Ditto.
1752
1753 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
1754
1755         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
1756         independently of the GTD.
1757
1758         * class.c (mono_class_setup_fields): Fail if field has negative offset.
1759
1760         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
1761         to the upper limit since instance_size includes this amount.
1762
1763         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
1764
1765         Fixes #569544.
1766
1767 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
1768
1769         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
1770         with static methods.
1771
1772         * object.c (build_imt_slots): Avoid asserting when static methods are
1773         encountered in an interface.
1774
1775 2010-01-13  Mark Probst  <mark.probst@gmail.com>
1776
1777         * sgen-gc.c (to_space_expand): Fix assertion.
1778
1779 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
1780
1781         * string-icalls.c: missing declaration fixes.
1782         * sgen-gc.c: portability fixes.
1783
1784 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1785
1786         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
1787
1788         * class.c:
1789         * cominterop.c:
1790         * icall.c:
1791         * object.c: 
1792         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
1793
1794 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1795
1796         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
1797         it can fail loading the type.
1798
1799         * class.c: Add mono_class_inflate_generic_class_checked.
1800
1801         * class.c:
1802         * verify.c:
1803         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
1804
1805 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
1806
1807         * loader.c (mono_method_signature_checked): New internal function taking an
1808         MonoError argument.
1809
1810         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
1811         Fixes build on rh 7.3.
1812
1813 2010-01-10  Aaron Bockover  <abockover@novell.com>
1814
1815         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
1816         at runtime in the same way as on Windows, which yields a relocatable
1817         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
1818         of the running mono process.
1819
1820         On TARGET_ARM, fallback () will always be executed.
1821
1822 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1823
1824         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
1825
1826 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1827
1828         * class.c (mono_class_is_assignable_from_slow): Support variant
1829         generic delegates.
1830
1831         * class.c (mono_class_implement_interface_slow): Support types with
1832         variant generic arguments.
1833
1834 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1835
1836         * verify.c: Remove some code duplication.
1837
1838 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1839
1840         * object.c: Update docs.
1841
1842 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1843
1844         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
1845
1846         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
1847         fallback trampoline as well.
1848
1849         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
1850         out argument that is set to TRUE if the match was direct. 
1851
1852         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
1853
1854         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
1855
1856 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1857
1858         * class.c: Add mono_class_interface_offset_with_variance function that does same
1859         as mono_class_interface_offset but takes variance into account.
1860
1861         * class-internal.h: Export mono_class_interface_offset_with_variance.
1862
1863         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
1864
1865 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1866
1867         * object.c:
1868         * icall.c:
1869         * class.c: Add some FIXME for due to variant generic arguments.
1870
1871         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
1872         can't use the simple bitfield check, so call mono_class_is_assignable_from if
1873         the bitfield check fails.
1874
1875 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1876
1877         * class.c (mono_class_is_assignable_from): Rework the generics variance code
1878         to be easier to read and fix bugs in the case a non generic type implements a variant
1879         interface.
1880
1881         * class.c (mono_class_has_variant_generic_params): Make non static.
1882
1883         * class-internals.h: Export mono_class_has_variant_generic_params as part of
1884         the private API.
1885
1886 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1887
1888         * assembly.c: fix MONO_PATH debug output.
1889
1890 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
1891
1892         * culture-info-table.h : regenerated.
1893
1894 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1895
1896         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
1897         types that are meant to not have a parent.
1898
1899 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1900
1901         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
1902         from the image mempool, so it is not leaked.
1903
1904 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1905
1906         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
1907
1908 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
1909
1910         * verify.c (verify_valuetype_layout_with_target): Fix case
1911         that can lead to infinite recursion. Fix bug #567861
1912
1913 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1914
1915         * pedump.c: Run code verifier even if image verification fails
1916         due to a failed type we. This allows more errors to be shown.
1917
1918 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1919
1920         * class.c (count_virtual_methods): Remove the assert and now
1921         fail properly.
1922         
1923         * class.c (setup_interface_offsets): This can fail now.
1924
1925         * class.c (mono_class_setup_vtable_general): Check for parent vtable
1926         errors. Check setup_interface_offsets errors.
1927
1928         * class.c (setup_interface_offsets): Simplify the return error logic
1929         and remove class_init_ok.
1930
1931         Fixes #560327.
1932
1933 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1934
1935         * class.c (mono_class_init): Do class verification at the beginning. Add
1936         some asserts to avoid tripping into invalid memory.
1937
1938         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
1939         g_error and a decent message.
1940
1941         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
1942
1943         Fixes #567548.
1944
1945 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1946
1947         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
1948         as inline functions instead of defining them in mempool.c.
1949
1950         * metadata-internals.h (MonoImageSet): New structure representing a set of
1951         MonoImages, which own a collection of generic instances.
1952
1953         * metadata.c: Get rid of the global generic caches, instead assign each generic
1954         instance to the image set which consists of all the images referenced by the
1955         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
1956         the memory used by generic instances to be allocated from a per image-set mempool
1957         later.
1958
1959 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1960
1961         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
1962
1963 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1964
1965         * appdomain.c (zero_static_data): Fix a warning.
1966
1967         * locales.c (construct_culture_from_specific_name): Applied patch from
1968         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
1969         not found. Fixes #567900.
1970
1971 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
1972
1973         * loader.c (mono_method_get_signature_full): Remove two asserts.
1974         Return NULL instead so that the verifier can handle both cases 
1975         gracefully.
1976
1977 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1978
1979         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
1980         so we can properly fail types instead of crashing.
1981
1982         Fixes #567676.
1983
1984 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1985
1986         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
1987         generic method.
1988
1989 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1990
1991         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
1992
1993 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1994
1995         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
1996         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
1997         we can't remove it from it since we don't hold the lock.
1998         (mon_new): Free the orphaned events here when a mon structure is added to the
1999         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
2000         this down.
2001
2002 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2003
2004         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
2005         as max stack might be zero.
2006
2007         Fixes #562320.
2008
2009 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2010
2011         Rework all uses of mono_class_setup_methods to accept that it can fail now.
2012
2013         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
2014         instances if the GTD did.
2015
2016         * class.c (mono_class_setup_properties): Ditto.
2017
2018         * class.c (mono_class_setup_events): Ditto.
2019
2020         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
2021
2022         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
2023         error setting.
2024
2025         * class.c (mono_class_init): Fail if GTD did.
2026
2027         * cominterop.c:
2028         * generic-sharing.c:
2029         * icall.c:
2030         * loader.c:
2031         * object.c:
2032         * verify.c: Properly handle failure of mono_class_setup_methods.
2033
2034 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2035
2036         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
2037         mono_class_inflate_generic_method_full internal.
2038
2039         * class.c (inflate_generic_context): Now takes a MonoError argument.
2040
2041         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
2042         errors.
2043
2044 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2045
2046         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
2047         they cannot be patched. Partly fixes #564408.
2048
2049 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2050
2051         * metadata-internals.h, reflection.c: Use the
2052         MonoDynamicImage.handleref hash table only with unmanaged keys,
2053         and add a managed hash table handleref_managed for managed keys.
2054
2055 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2056
2057         * sgen-gc.c: Unset to-space bumper between collections.  It might
2058         become invalid due to degraded allocations.
2059
2060 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
2061
2062         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
2063         with the one from the original method.
2064
2065         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
2066         compatibility.
2067
2068         * verify-internals.h: Add new function to the internal API.
2069
2070 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
2071
2072         * culture-info-tables.h: regenerated it to include the Georgian culture.
2073
2074 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2075
2076         * sgen-gc.c: Include mono/utils/memcheck.h.
2077
2078         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2079         instead of the current domain, since the two might not match if this is called
2080         from the debugger.
2081
2082         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2083         domain which created this assembly.
2084
2085 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2086
2087         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2088
2089 2009-12-17  Mark Probst  <mark.probst@gmail.com>
2090
2091         * sgen-gc.c: Managed implementation of the specialized generic
2092         store write barrier.
2093
2094 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
2095
2096         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2097         A private virtual newslot method is used to implement an interface method without exposing
2098         it to users. When querying for public instance methods, such method would hide a public one
2099         on a parent type.
2100
2101         Fixes #564379.
2102
2103 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2104
2105         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2106         conventions.
2107
2108 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2109
2110         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2111
2112 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2113
2114         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2115         as they are no longer used.
2116         
2117          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2118
2119         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2120
2121 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2122
2123         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2124         if the owner class has not been finished before returning reflection_info.      
2125
2126         Fixes #565127.
2127
2128 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2129
2130         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2131         param doesn't have custom attributes. Fixes #565117.
2132
2133         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2134         #565120.
2135
2136 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2137
2138         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2139
2140 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2141
2142         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2143         same amount done by a core-clr enabled runtime.
2144
2145 2009-12-15  Marek Habersack  <mhabersack@novell.com>
2146
2147         * appdomain.c (mono_make_shadow_copy): make sure access mode of
2148         the target files is reset to writable by owner and readable by
2149         everyone else to prevent problems when updating shadow copies of
2150         files whose source is read-only. Fixes bug #556884
2151
2152 2009-12-15  Mark Probst  <mark.probst@gmail.com>
2153
2154         * class.c (mono_generic_class_get_class): Allocate the generic
2155         class via malloc again, so that it can be freed when any one of
2156         the images of its constituent types is closed.
2157
2158         * metadata.c: When closing an image, don't free generic insts and
2159         generic classes right away, but put them into a list for later
2160         freeing.
2161
2162         * image.c, metadata-internals.h: Store the free list and in the
2163         second pass of closing an image, free it.
2164
2165 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2166
2167         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2168
2169         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2170         types in type_hash.
2171
2172         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2173
2174 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2175
2176         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2177         user type.
2178
2179         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2180         is used.
2181
2182 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2183
2184         * verify.c (mono_method_verify): The Unused opcodes produce an
2185         InvalidProgramException on .NET
2186
2187 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
2188
2189         * loader.c (mono_method_get_header): Move assert after the verifier
2190         has been called on the method header.
2191
2192 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2193
2194         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
2195
2196         * appdomain.c: Bump corlib version.
2197
2198 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2199
2200         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
2201         types as well since otherwise generic instances would not return UT as arguments but
2202         their undelying system type.
2203
2204         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
2205         to reflect the fact that they can have now multiple different types.
2206
2207         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
2208
2209         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
2210
2211         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
2212
2213         * reflection.c (mono_reflection_register_with_runtime): Init super types
2214         if the image is not dynamic.
2215
2216         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
2217         check if the generic type definition is a TypeBuilder.
2218
2219         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
2220         doesn't belong to a dynamic image, skip initialization.
2221
2222         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
2223         base definition is not a dynamic type.
2224
2225 2009-12-11  Marek Habersack  <mhabersack@novell.com>
2226
2227         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
2228         mono_profiler_string_allocation
2229
2230         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
2231         if string profiling is enabled, call
2232         mono_profiler_string_allocation
2233
2234         * profiler.h: added two MonoProfileFlags -
2235         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
2236         installation functions for the hooks below.
2237
2238         * profiler-private.h, profiler.c: added two hooks:
2239         mono_profiler_string_allocation called whenever a string is
2240         allocated by InternalAllocateStr and mono_profiler_iomap called
2241         whenever IOMAP code performs an adjustement on a file path.
2242
2243 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
2244
2245         * boehm-gc.c: fixed race condition while getting the target of a
2246         disappearing link (bug #522233).
2247
2248 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2249
2250         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
2251         the error.
2252
2253 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2254
2255         * reflection.c: Add mono_reflection_register_with_runtime icall to
2256         allow a MonoGenericClass to register itself as the managed mirror of
2257         a given generic instance.
2258         This is a temporary workaround until all MGC instantiation happens in
2259         managed code.
2260
2261         * object-internals.h: Ditto.
2262
2263         * icall-def.h: Ditto.
2264
2265 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2266
2267         * sgen-gc.c (find_in_remsets): Also search the generic store
2268         remsets.
2269
2270 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2271
2272         * sgen-gc.c: Don't access class names in debugging code when
2273         unloading a domain, because they might not be valid anymore.
2274
2275 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2276
2277         * domain.c, domain-internals.h: New function mono_domain_unset().
2278
2279         * appdomain.c (unload_thread_main): Detach the thread again at the
2280         end.
2281
2282         * threads.c: When a thread exists or is detached, unset its domain
2283         so that it's NULL when, for example, a pthread destructor runs.
2284
2285         * sgen-gc.c: Assert that there is no domain set after a thread is
2286         done.
2287
2288 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2289
2290         * class.c (mono_generic_class_get_class),
2291         metadata.c (free_generic_class): Allocate generic MonoClass's from
2292         the image mempool, not via malloc.  The problem with malloc is
2293         that when unloading a domain those classes are freed before
2294         clearing the heap and SGen needs the classes.  Rewriting the
2295         unloading code to do the free later would be more work and there's
2296         no point in using malloc anyway.
2297
2298 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
2299
2300         * loader.c (mono_method_signature): Always call mono_loader_unlock 
2301         before returning.
2302
2303 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2304
2305         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
2306         user string blobs.
2307
2308         * verify-internals.h: Add new function to the internal API.
2309
2310         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
2311         check if it's a valid string.
2312
2313         * object.c (mono_ldstr): Ditto.
2314
2315         Fixes #561943.
2316
2317 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2318
2319         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
2320         from a method before returning it. This is the expected behavior.
2321
2322 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
2323
2324         * reflection.c (inflate_method): Handle the case of a regular system type.
2325
2326 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2327
2328         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2329         gathering code.
2330
2331         * mempool.c, mempool-internals.h: New function
2332         mono_mempool_get_bytes_allocated().
2333
2334         * Makefile.am: sgen-pinning-stats.c added.
2335
2336 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2337
2338         * sgen-gc.c (create_allocator): Only use the fast path if the
2339         object size is within the small object size limit.
2340
2341 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2342
2343         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2344         possibly adding padding to sizeof (GCMemSection).
2345
2346 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2347
2348         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2349         reference is not in the nursery.
2350
2351 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
2352
2353         * class.c (mono_class_from_typeref): Bounds check idx against the 
2354         assemblyref table.
2355
2356 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2357
2358         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2359         through the potential roots, then sort the results and find the
2360         pinned objects from there.
2361
2362         * Makefile.am: sgen-pinning.c added.
2363
2364 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2365
2366         * sgen-gc.c: Record generic stores in specialized remset buffers.
2367
2368 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2369
2370         * sgen-gc.c: Make pinned chunks the same size as major heap
2371         sections, and align them as well, so that we can check whether an
2372         object is in a pinned chunk or a major section in constant time.
2373
2374 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2375
2376         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2377
2378 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2379
2380         * sgen-gc.c: Make all major heap sections the same size (currently
2381         128k) and allocate them on aligned addresses.  Small heap sections
2382         give us better granularity with pinned objects - we can free up
2383         much more memory.
2384
2385 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2386
2387         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2388         output removed.
2389
2390 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2391
2392         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2393
2394         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2395         names in addition to the runtime generated one.
2396
2397         * mono/metadata/image.h: Add a function to take the real name of the assembly
2398         image.
2399
2400         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2401         use it instead of the runtime generated one.
2402
2403         Code is contributed under MIT/X11 license.
2404
2405 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2406
2407         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2408         before the other checks to prevent problems if the DateTime class is blittable.
2409         Hopefully fixes #559600.
2410
2411 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2412
2413         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2414         returns the largest string length that will not be put into the
2415         LOS.
2416
2417         * sgen-gc.c, gc-internal.h: New function that returns the largest
2418         object size that will not be put into the LOS.
2419
2420         * appdomain.c: Bump corlib version.
2421
2422 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2423
2424         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2425
2426         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2427
2428 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2429
2430         * reflection.c (inflate_method): Fix signature.
2431
2432         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2433         in managed code.
2434
2435 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2436
2437         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2438
2439 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2440
2441         * sgen-gc.c: Abstract to-space handling.
2442
2443 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2444
2445         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2446
2447         Fixes #559906.
2448
2449 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2450
2451         * sgen-gc.c: Only add references from outside the nursery to
2452         within the nursery to the global remset list.
2453
2454 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2455
2456         * appdomain.c (create_exceptions): Set the domain temporarily if
2457         necessary to avoid cross-domain references.
2458
2459 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2460
2461         * verify.c (get_stack_type): Return that the type is invalid instead of
2462         asserting.
2463
2464         * verify.c (mono_method_verify): Verify that all locals and arguments
2465         have valid stack types.
2466
2467         Fixes #559913.
2468
2469 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2470
2471         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2472         bounds checking overflow aware.
2473
2474         Fixes #559910.
2475
2476 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2477
2478         * verify.c (do_invoke_method): Check for invalid method signatures.
2479
2480         Fixes #553450.
2481
2482 2009-12-02  Jb Evain  <jbevain@novell.com>
2483
2484         * appdomain.c (MONO_CORLIB_VERSION): bump.
2485         * icall-def.h (get_base_definition): renamed to get_base_method
2486         and add a boolean argument indicating we want the original
2487         method definition, or the immediate base method.
2488         * icall.c: apply the get_base_definition to get_base_method change.
2489
2490 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2491
2492         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2493
2494         Fixes #558042.
2495
2496 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2497
2498         * class.c: remove asserts for invalid type token in
2499         mono_class_name_from_token(), mono_assembly_name_from_token() and
2500         mono_class_create_from_typedef () (fixes bug #553318).
2501
2502 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2503
2504         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2505         incorrect assemblies (bug #553322).
2506
2507 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2508
2509         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2510
2511         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2512
2513         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2514
2515         * class.c (inflate_generic_context): Ditto.
2516
2517         * loader.c (method_from_methodspec): Ditto.
2518
2519         Fixes #558230.
2520
2521 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2522
2523         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2524
2525         * class.c (mono_class_create_from_typespec): Ditto.
2526
2527         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2528
2529         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2530
2531         Fixes #558184.
2532
2533 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2534
2535         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2536
2537         * verify.c (verify_delegate_compatibility): Ditto.
2538
2539         * verify.c (do_newobj): Ditto.
2540
2541         Fixes #558046.
2542
2543 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2544
2545         * sgen-gc.c: Use a gray queue instead of requiring that gray
2546         objects are in a contiguous region.
2547
2548         * sgen-gray.c: The gray queue implementation.
2549
2550         * Makefile.am: sgen-gray.c added.
2551
2552 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2553
2554         * appdomain.c: When unloading a domain, zero its static data and
2555         perform a minor collection when using SGen.  That will get rid of
2556         all the remsets pointing into that domain's static data.
2557
2558         * sgen-gc.c: Allow remsets into static data.  By doing this we
2559         need less checks so we're more efficient.
2560
2561 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2562
2563         * verify.c (mono_method_verify): Check for catch clauses with broken
2564         types.
2565
2566         Fixes #558465.
2567
2568 2009-12-01  Jb Evain  <jbevain@novell.com>
2569
2570         * class.c (make_generic_param_class): set the namespace of
2571         the generic parameter class from its owner, if available.
2572
2573 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2574
2575         * verify.c (code_bounds_check): Do proper overflow checking.
2576
2577         * verify.c (mono_method_verify): The number of switch entries is
2578         an unsigned int. Properly bounds check it.
2579
2580         Fixes #558594.
2581
2582 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2583
2584         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2585         mono_metadata_method_has_param_attrs which only checks if a given param
2586         list has a non zero flags entry.
2587
2588         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2589         to inform how many params should we expect to decode.
2590
2591         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2592         as it's faster than mono_metadata_get_param_attrs.
2593
2594         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2595         add mono_metadata_method_has_param_attrs.
2596
2597 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2598
2599         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
2600         failures.
2601
2602         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
2603         is -1 but its class is broken.
2604
2605         Fixes #558522.
2606
2607 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2608
2609         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
2610         for parameter overflow.
2611
2612         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
2613         of mono_metadata_get_param_attrs.
2614
2615         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
2616         API.
2617
2618         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
2619
2620 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2621
2622         * class.c (mono_class_setup_fields): Check for fields with broken types.
2623
2624         Fixes #558741.
2625
2626 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
2627
2628         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
2629         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
2630         its TypeBuilder::CreateType ().
2631
2632         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
2633         if not needed.
2634
2635         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
2636         to make setup_interface_offsets happy.
2637
2638         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
2639         compilation now works.
2640
2641 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
2642
2643         * appdomain.c (create_exceptions): New helper function extracted from
2644         mono_runtime_init () to precreate objects used during exception handling.
2645         (mono_runtime_init): Call it.
2646         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
2647
2648 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2649
2650         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
2651         compilation until the proper one is found.
2652
2653 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
2654
2655         * class.c (mono_class_setup_vtable_general): Cache the result of
2656         get_virtual_methods () since it can be slow because of the metadata
2657         optimization.
2658
2659         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
2660         from a MonoValueHashTable for now, since the later is based on an earlier
2661         version of hpj's internal probing code and seems to have serious collision
2662         issues.
2663
2664         * loader.c (mono_get_method_full): Update after the change above.
2665
2666 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2667
2668         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
2669
2670 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2671
2672         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
2673         the GTD instead of the DGC instead of crashing.
2674
2675         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
2676         required. Inflate fields if needed.
2677
2678         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
2679         finished. Renamed.
2680
2681 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2682
2683         * class.c (check_interface_method_override): Check for NULL signatures and fail
2684         the type.
2685
2686         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
2687
2688         Fixes #553428.
2689
2690 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2691
2692         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
2693         the MONO_METHOD_FLAGS column instead of decoding the whole row.
2694
2695 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2696
2697         * loader.c (field_from_memberref): Resolve the class first then the field
2698         signature. Remove a lot of duplicated code and make sure we don't pass valid
2699         values to mono_loader_set_error_field_load.
2700
2701         Fixes #553306.
2702
2703 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2704
2705         * class.c (inflate_generic_type): Change code to use new signature of
2706         mono_error_set_bad_image.
2707
2708         Fixes #558124.
2709
2710 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
2711
2712         * verify.c (mono_method_verify): Don't free ctx.params items if 
2713         we aborted while inflating the ctx.locals. Complete previous fix
2714
2715 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
2716
2717         * verify.c (mono_method_verify): Use the uninflated type name, 
2718         when the inflated is null, to report errors. Also take care when
2719         freeing, not to free everything since, in case of an error, some
2720         stuff would be copies (i.e. not allocated by the function itself)
2721         Fix bug #558145
2722
2723 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2724
2725         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
2726         or overflow. The caller must have done this check explicitly. This guard us
2727         from accessing invalid memory.
2728
2729         * verify.c (do_push_static_field): Check for stack overflow.
2730
2731         Fixes #553333.
2732
2733 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2734
2735         * loader.c (find_method_in_class): Don't crash if the signature cannot
2736         be resolved.
2737
2738         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
2739         of asserting for the case of invalid params.
2740
2741         Fixes #553304.
2742
2743 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
2744
2745         * image.c (mono_image_load_module): Fix crash when a bad assembly
2746         has no module at all (fix bug #553412) and also replace the 
2747         g_assert with a return NULL (documented return value for failure)
2748
2749 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
2750
2751         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
2752
2753 2009-11-23  Miguel de Icaza  <miguel@novell.com>
2754
2755         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
2756         file attribute to managed code and avoid doing the mask/attribute
2757         checks here. 
2758
2759 2009-11-22  Miguel de Icaza  <miguel@novell.com>
2760
2761         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
2762         the managed world.
2763
2764         * icall-def.h: New entry points.
2765         
2766 2009-11-19  Mark Probst  <mark.probst@gmail.com>
2767
2768         * process.c: Don't put references to managed objects into a
2769         g_ptr_array.
2770
2771 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
2772
2773         * class.c (can_access_internals): Allow CoreCLR to participate in
2774         allowing (or not) [InternalsVisibleTo] between assemblies.
2775         * security-core-clr.c|h: Make sure that only trusted code (a 
2776         superset of platform code) can access the internals of platform
2777         code.
2778
2779 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
2780
2781         * reflection.c: use the correct base class to get the virtual method
2782         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
2783
2784 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
2785
2786         * security-core-clr.c (get_caller_no_reflection_related): 
2787         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
2788         it's still reflection and must be filtered correctly.
2789
2790 2009-11-16  Mark Probst  <mark.probst@gmail.com>
2791
2792         * object.c (compute_class_bitmap): Fix for large bitmaps.
2793
2794 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
2795
2796         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
2797
2798         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
2799         koush@koushikdutta.com). Disable GC_no_dls on android.
2800
2801 2009-11-12  Mark Probst  <mark.probst@gmail.com>
2802
2803         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
2804         tlab_next points outside the TLAB because the allocator was
2805         interrupted.
2806
2807 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2808
2809         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
2810
2811 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2812
2813         * object-internals.h: Change signature for mono_string_to_utf8_image.
2814
2815         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
2816         argument.
2817
2818         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
2819         exceptions due to mono_string_to_utf8.
2820
2821 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2822
2823         * object-internals.h: Change signature for mono_string_to_utf8_mp.
2824
2825         * object.c (mono_remote_class): Make sure all resources are released before
2826         raising an exception.
2827
2828         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
2829
2830 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2831
2832         * mono-perfcounters.c (network_get_impl): Change variable initialization
2833         ordering to fix potential memory leak in case of exceptions.
2834
2835         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
2836         encoded strings.
2837         
2838 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2839
2840         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
2841         variable initialization ordering to fix potential memory leak in case
2842         of exceptions.
2843
2844 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
2845
2846         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
2847         needed.
2848
2849 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2850
2851         * appdomain.c: Fix shadow path code to better deal with exceptions.
2852
2853 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2854
2855         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
2856         exception in the middle of the runtime code.
2857
2858 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2859
2860         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
2861         leak memory with broken envvar value.
2862
2863 2009-11-06  Mark Probst  <mark.probst@gmail.com>
2864
2865         * reflection.c (mono_reflection_setup_internal_class): Because
2866         nested classes are not added to the name cache, we must put them
2867         in the reflection_info_unregister_classes list.
2868
2869 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
2870
2871         * class.c: When CoreCLR is enabled don't call mono_init_com_types
2872         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
2873         platform (trusted) code. Instead we return a TypeLoadException to
2874         be thrown later. This is the exception thrown by Silverlight 2 if
2875         a type, inside application (user) code is marked with [ComImport]
2876
2877 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2878
2879         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
2880         mono_is_debugger_attached () too.
2881
2882         * mono-debug.c (mono_is_debugger_attached): New helper function.
2883         (mono_set_is_debugger_attached): Ditto.
2884
2885 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2886
2887         * object-internals.h: Add mono_string_to_utf8_checked.
2888
2889         * object.c: Implement mono_string_to_utf8_checked.
2890
2891 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2892
2893         * class.c: Add missing check for load errors after every
2894         call to mono_class_setup_fields
2895
2896         Fixes #552282.
2897
2898 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2899
2900         metadata-verify.c (verify_tables_schema): Fix the error message.
2901
2902 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2903
2904         * metadata.c: Change event table schema to use TDOR for event type
2905         as this is what it's meant to be.
2906
2907         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
2908         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
2909         entry.
2910
2911         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
2912         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
2913         rows in MONO_TABLE_GENERICPARAM.
2914
2915         Fixes #552289.
2916
2917 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2918
2919         * class.c (mono_image_add_to_name_cache): Assert on duplicate
2920         insertion.
2921
2922         * reflection.c (mono_reflection_setup_internal_class): Avoid
2923         registering a gc root the same MonoClass multiple times.
2924         Don't register nested types on the global scope as they should
2925         not be available there.
2926
2927 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2928
2929         * culture-info-tables.h: regenerated.
2930
2931 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2932
2933         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
2934
2935 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
2936
2937         * string-icalls.c|h: Remove string internal calls that are not 
2938         used anymore by the class libraries.
2939         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
2940         which is not used in the class librairies.
2941         * icall-def.h: Update tables.
2942
2943 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2944
2945         * class.h: Move mono_class_inflate_generic_type_checked...
2946
2947         * class-internals.h: to here and make it internal. We don't want to
2948         further expose MonoGenericContext. 
2949
2950 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2951
2952         * verify.c (mono_method_verify): Improve error message.
2953
2954 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2955
2956         * reflection.c (fieldref_encode_signature): If field_image is NULL then
2957         the token is already properly encoded. Fixs 4.0 build.
2958
2959 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2960
2961         * locales.c (construct_number_format): Check if the number index is
2962         valid before trying to use it, if not, just return.
2963         
2964 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
2965
2966         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
2967         since that loses the abort state. Fixes #539394.
2968
2969 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
2970
2971         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
2972         explicit this argument to the call signature.
2973         (mono_marshal_get_icall_wrapper): Ditto.
2974
2975 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2976
2977         * reflection.c (fieldref_encode_signature): Add new field_image parameter
2978         to indicate which assembly to use when resolving a custom-mod.
2979
2980         Fixes handling of volatile fields used across assemblies as reported in #551513.
2981
2982 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2983
2984         * loader.c: Improve error messages.
2985
2986 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2987
2988         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
2989         of interfaces. Fixes IKVM.
2990
2991         * class.c (mono_class_setup_vtable_general): Improve debug spew.
2992
2993 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2994
2995         * verify.c (verifier_inflate_type): Return the inflated type on success.
2996
2997 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
2998
2999         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
3000
3001         * threads.c (mono_thread_attach): Call the profiler thread start callback.
3002
3003         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
3004
3005         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
3006         flag set.
3007
3008         * profiler.c: Add new profiler callbacks for runtime invoke.
3009
3010         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
3011
3012 2009-11-01  Mark Probst  <mark.probst@gmail.com>
3013
3014         * sgen-gc.c: Keep track of the reason for a major collection and
3015         write it to the heap-dump file.
3016
3017 2009-10-31  Miguel de Icaza  <miguel@novell.com>
3018
3019         * threads.c: refactor the code that initializes the
3020         thread_start_args into a reusable function and use this in the two
3021         methods that start up threads.
3022
3023 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
3024
3025         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
3026         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
3027
3028 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3029
3030         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
3031         Until now, we only had the per-cpu(core) counters.
3032
3033 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3034
3035         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
3036         mono_gc_get_suspend_signal(), which returns the suspend signal
3037         number used by the GC.
3038
3039 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3040
3041         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
3042
3043         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
3044         signalling start_notify.
3045
3046 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3047
3048         * appdomain.c: do not test the st_mode field for shadow-copies.
3049         Fixes bug #545276.
3050
3051 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3052
3053         * threadpool.[ch]: added hooks for thread start/finish and item
3054         processing begin/end. For monotouch use only.
3055
3056 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3057
3058         * threads.c (mono_thread_get_name): New helper function.
3059
3060         * reflection.c (resolve_object): Set handle_class for strings too.
3061         (mono_reflection_create_custom_attr_data_args): New helper function to decode
3062         a cattr blob into a set of arrays and structures without creating the custom
3063         attributes themselves.
3064         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
3065
3066         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
3067
3068         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
3069         function.
3070
3071 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3072
3073         * verify.c: Replace calls to mono_class_inflate_generic_type with
3074         mono_class_inflate_generic_type_checked. Fixes #480005.
3075
3076 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3077
3078         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3079         object since not all paths lead to callees initing it.
3080
3081 2009-10-23  Alp Toker  <alp@nuanti.com>
3082
3083         Fix embedding API breakage from r144688. mono-compiler.h is an internal
3084         header and should not be shipped:
3085
3086         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3087         which is specific to the mono build. Not going to work.
3088
3089 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
3090
3091         * security-manager.c: Report if core-clr is active from
3092         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3093         to allow Moonlight BCL to behave appropriately (both in browser
3094         and outside, e.g. smcs)
3095
3096 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3097
3098         * mono-config.c: ignore UTF-8 BOM and report parser errors.
3099         Fixes bug #549108.
3100
3101 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3102
3103         * class.c: fix typo.
3104
3105 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
3106
3107         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3108         a MonoError parameter.
3109
3110         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3111         version that can does proper error handling.
3112
3113         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3114
3115         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3116
3117         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3118
3119 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3120
3121         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3122         NO_UNALIGNED_ACCESS is defined.
3123
3124 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3125
3126         * marshal.c (mono_string_builder_to_utf16): Applied patch from
3127         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
3128         Fixes #549173.
3129
3130 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3131
3132         * sgen-gc.c: Shorten sections whenever possible.
3133
3134 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3135
3136         * sgen-gc.c: Use our portable semaphore #defines.
3137
3138 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3139
3140         * sgen-gc.c: A debug option for dumping the heap layout to a file
3141         after each collection.
3142
3143 2009-10-21  Mark Probst  <mark.probst@gmail.com>
3144
3145         * sgen-gc.c: Make managed write barriers atomic via
3146         thread-restarts.
3147
3148 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3149
3150         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3151         methods. Fixes #543021.
3152
3153 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3154
3155         * socket-io.[ch]: fix VS build.
3156
3157 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3158
3159         * icall-def.h:
3160         * socket-io.[ch]: implemented SendFile.
3161
3162 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3163
3164         * class.c (mono_class_create_from_typedef): Initialize class->element_class
3165         before the interfaces to avoid crashes later if class initialization fails.
3166         Fixes #548417.
3167
3168         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3169         Fixes #548276.
3170
3171 2009-10-20  Marek Safar  <marek.safar@gmail.com>
3172
3173         * domain.c: Bump 4.0 version.
3174
3175 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3176
3177         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3178         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3179         check since 'pubkey' can't be NULL at this stage
3180         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3181         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
3182         initialization of 'iter'
3183
3184 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
3185
3186         * cominterop.c : Search the interface parts of vtable to find 
3187           method matches.  Fixes 547030.
3188
3189         Code is contributed under MIT/X11 license.
3190
3191 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
3192
3193         * marshal.c: BeginInvoke cannot be called on multicast delegates with
3194         multiple targets. Fixes bug #574426.
3195
3196 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3197
3198         * profiler.h: Put here the definition of
3199         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
3200         (and fix the build...).
3201
3202 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3203
3204         * profiler.c, profiler.h, profiler-private.h:
3205         Added support for different ways of getting call chains in stat mode.
3206
3207 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3208
3209         * object.c, object-internals.h: New function for computing the
3210         size of an array, factored out of mono_array_new_full().  Use
3211         SGen's functions for allocating arrays and vectors.
3212
3213         * sgen-gc.c, gc-internal.h: Special functions for allocating
3214         arrays and vectors without race conditions.  A managed array
3215         allocator method.
3216
3217         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
3218
3219 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3220
3221         * object.c, object.h, icall.c: Write barriers do the copying now,
3222         as well, so no need for an additional memcpy.
3223
3224         * sgen-gc.c: Lock when storing remsets.  Do the memory
3225         copying/moving in the write barriers.
3226
3227         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
3228
3229         * reflection.c: Added an assert.
3230
3231 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3232
3233         * threads.c, process.c: A few missing write barriers.
3234
3235 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
3236
3237         * mono-perfcounters.c, mono-perfcounters-def.h: Add
3238         network performance counters for bytes sent per second, bytes
3239         received per second, and bytes total per second.
3240
3241         Code is contributed under MIT/X11 license.
3242
3243 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3244
3245         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3246         Fix warning.
3247
3248 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3249
3250         * threads.c, object-internals.h, object.c: Move code for
3251         transferring an object to a different domain (via
3252         serialization/remoting) to object.c.
3253
3254         * object.c (call_unhandled_exception_delegate): If the exception
3255         is in a different domain than the delegate, transfer the exception
3256         to that domain.
3257
3258 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
3259
3260         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
3261         Fixes #322934.
3262
3263 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3264
3265         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
3266
3267 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3268
3269         * object.c (mono_method_return_message_restore): Handle the case
3270         where the argument is an instance of a generic type.  Fixes
3271         #544446.
3272
3273 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3274
3275         * object.c (set_value): Write barrier fix - we must pass the
3276         count, not the size.
3277
3278 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
3279
3280         * domain.c (mono_init_internal): Print a useful error message when encountering
3281         an old mscorlib, instead of crashing. Fixes #544307.
3282
3283 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3284
3285         * appdomain.c (copy_app_domain_setup): Fix a warning.
3286
3287         * debug-helpers.c (dis_one): Ditto.
3288
3289 2009-10-04  Mark Probst  <mark.probst@gmail.com>
3290
3291         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
3292         into the new domain, instead of referencing the original one.
3293
3294         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
3295         non-static.
3296
3297         * appdomain.c: Corlib version bump.
3298
3299 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3300
3301         * threadpool.c: one more...
3302
3303 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3304
3305         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
3306         threads to die because we're shutting down. delgate5.exe works again.
3307
3308 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
3309
3310         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
3311           ccw_interface_hash table when a ccw is finalized.
3312
3313         Code is contributed under MIT/X11 license.
3314
3315 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3316
3317         * assembly.c, domain.c, image.c, metadata-internals.h: Split
3318         domain and image unloading into two steps.  We must do this
3319         because clearing the domain in SGen requires the class metadata to
3320         be intact, but we need to free the mono_g_hash_tables in case a
3321         collection occurs during domain unloading and the roots would trip
3322         up the GC.
3323
3324 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3325
3326         * object-internals.h: Remove serialized culture fields from
3327         MonoInternalThread.
3328
3329         * icall-def.h, thread-types.h, threads.c: Remove serialized
3330         culture icalls.
3331
3332         * appdomain.c: Corlib version bump.
3333
3334 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3335
3336         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3337         Fixes #543133.
3338
3339 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3340
3341         * sgen-gc.c: Try to shorten the new section after a major
3342         allocation to avoid ever-growing sections.
3343
3344 2009-10-13  Martin Baulig  <martin@ximian.com>
3345
3346         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3347         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3348         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3349         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3350
3351         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3352
3353 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3354
3355         * threadpool.c: fixed the order in which 'completed' and the wait
3356         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
3357         No need to use the wait_handle field of ASyncCall. Make sure the
3358         threadpool is active when adding a job or queueing an idle thread.
3359
3360 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3361
3362         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3363
3364         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3365         when using --compile-all.
3366
3367 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3368
3369         * metadata.c (free_generic_class): Unregister the field_objects
3370         roots if we're using SGen.
3371
3372 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3373
3374         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3375         for GenericParamTableEntry.gparam.
3376
3377 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3378
3379         * marshal.c: don't create the handle when calling. It is created later
3380         if needed.
3381
3382 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3383
3384         * sgen-gc.c: Warning fixes.
3385
3386 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3387
3388         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3389         whole heap for cross-domain references before each collection.
3390
3391         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3392         object.
3393
3394         * threadpool-internals.h, threadpool.c: New function
3395         mono_thread_pool_is_queue_array() for checking whether a given
3396         array is used as a (cross-domain) queue by the thread pool code.
3397
3398 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3399
3400         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3401         searches the whole heap for objects containing a specific
3402         reference.  Only for debugging.
3403
3404 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3405
3406         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3407
3408         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3409         byte arrays between domains.
3410
3411 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3412
3413         * threadpool.c:
3414         * class-internals.h:
3415         * mono-perfcounters-def.h:
3416         * mono-perfcounters.c:
3417         -There is a list of idle threads
3418         -Each of those idle threads wait on their own WaitHandle instead
3419         of all of them using the same semaphore. When a new work item is
3420         added, the job is assigned directly to an idle thread or a newly
3421         created one if possible and then the handle for that thread is
3422         signaled. Compare that to the current approach where all the
3423         threads in the pool compete to dequeue a job from the same
3424         queue.
3425         -New struct ThreadPool that brings together the bunch of static
3426         variable for each threadpool (IO and regular).
3427         -New performance counters: # of items added and its rate per
3428         threadpool. The rate will be used later, perhaps together with
3429         other perf. counters, to decide when idle threads should exit.
3430
3431 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3432
3433         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3434         Fix typo on Windows build.      
3435         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3436         
3437         Code is contributed under MIT/X11 license.
3438
3439 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3440
3441         * object-internals.h: The Thread class is split up into Thread and
3442         InternalThread now.  We have exactly one InternalThread per
3443         thread, and at most one Thread per appdomain per thread.  Most
3444         data is stored in InternalThread.  All InternalThread objects live
3445         in the root domain.
3446
3447         * class-internals.h: Add internal_thread_class to MonoDefaults.
3448
3449         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3450         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3451         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3452         resulting from the split of the Thread class.
3453
3454         * gc-internal.h: Prototype for new function for checking whether a
3455         thread is the finalizer thread.
3456
3457         * appdomain.c: Corlib version bump.
3458
3459 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3460
3461         * appdomain.c|h: Add a mono_domain_try_unload method which is
3462         equivalent to mono_domain_unload, except that it returns an exception
3463         instead of throwing it. Make mono_domain_unload use the
3464         mono_domain_try_unload method to avoid code-duplication.
3465
3466 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3467
3468         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3469         a problem.
3470
3471 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3472
3473         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3474         aborting when a conversion is not implemented.
3475
3476 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3477
3478         * verify.c: when comparing culture strings, use g_ascii_strcmp
3479
3480         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3481         when comparing public key tokens to use memcmp on 16 bytes.   I do
3482         not believe this ever worked as advertised in the past.
3483
3484         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3485         which would have always failed earlier.
3486
3487 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3488
3489         * gc.c: Raise a NullArgumentException if the object passed is
3490         null.
3491
3492 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3493
3494         * image.c (mono_image_close): Atomically decrement the reference count and
3495         remove the image from the hash tables, to prevent another thread from seeing a
3496         dying MonoImage. Fixes #541194.
3497
3498 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3499
3500         * threadpool.c: actually use the minimum number of 'completion ports'
3501         (for us is just a potential worker thread).
3502
3503 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3504
3505         * threadpool.c: remove ares_htable. It does not make sense any more
3506         since the same objects are now stored in GC-tracked arrays while they are
3507         in the queue.
3508
3509 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3510
3511         * threadpool.c: increase the minimum length of the queues to 128.
3512         Remove warning.
3513
3514 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3515
3516         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3517         return the modified signature used by string ctors.
3518
3519 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3520
3521         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3522         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3523         method, to be used by full-aot.
3524
3525 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3526
3527         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3528         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3529         be known to be good.
3530
3531         * class.c (mono_class_init): Fail array types if their element type fails initialization
3532         as well.
3533
3534         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3535         initialization, additionally we request the element_type vtable to be initialized as well.
3536
3537         This is fine and should not increase the working set in any meaningful way since it's reasonable
3538         to assume       that most code will create an array and eventually populate it, which will require the
3539         type's vtable to be initialized.
3540
3541         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3542
3543 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3544
3545         * normalization-tables.h : regenerated.
3546
3547 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3548
3549         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3550         a leb128 encoding can take up to 5 bytes.
3551
3552 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3553
3554         * class.c (verify_class_overrides): Remove useless argument.
3555
3556         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3557         before interface enumeration as this is no longer required.
3558
3559 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3560
3561         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3562         used under mono_class_init context. This functions avoid any code path that
3563         calls mono_class_init, which leads it to be slow as some things like the interface
3564         bitmap are not available.
3565
3566         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3567         of it's own broken version. Fixes the verifier part of #538588.
3568
3569         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3570         API.
3571
3572 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3573
3574         * class.c (mono_class_init): Always set an exception in a class if
3575         vtable setup fails.  Fixes #538577.
3576
3577         * generic-sharing.c: Raise an exception if mono_class_vtable()
3578         returns NULL.
3579
3580 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3581
3582         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3583         methods of vtypes, as they could be incorrectly shared with static methods
3584         taking an IntPtr argument.
3585
3586 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3587
3588         * domain.c:
3589         * object.c:
3590         * class-internals.h: renamed waithandle_class to
3591         manualresetevent_class.
3592         * marshal.c: propagate the exception if a remoting BeginInvoke call
3593         fails.
3594
3595 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3596
3597         * object.c: Properly handle vtable failures.
3598
3599 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3600
3601         * socket-io.c: Assert on vtable failure.
3602
3603         * mono-mlist.c: Assert on vtable failure.
3604
3605 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3606
3607         * marshal.c: Assert on vtable failure.
3608
3609 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3610
3611         * icall.c: Properly handle vtable failures.
3612
3613 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3614
3615         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
3616
3617 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3618
3619         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
3620
3621         * console-unix.c (do_console_cancel_event): Same.
3622
3623 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3624
3625         * class-internals.h: Add mono_class_vtable_full function that allows control
3626         if an exception should be raised or not.
3627
3628         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
3629         to do what its documentation say, that is to return NULL and set exception_type on
3630         failure.
3631
3632         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
3633         and change the code to honor it.
3634
3635 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3636
3637         * verify.c: Fix typo in error message.
3638
3639 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
3640
3641         * security-core-clr.c: Fix default_platform_check so it can run
3642         the runtime coreclr tests (without an infinite recursion when
3643         throwing an exception).
3644
3645 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3646
3647         object.c (mono_delegate_ctor_with_method): Guard against null method.
3648
3649 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3650
3651         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
3652         that should be replaced with error handling later.
3653
3654 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3655
3656         * marshal.c (mono_delegate_end_invoke): Fix warning.
3657
3658 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3659
3660         * loader.c (mono_field_from_token): Properly handle invalid
3661         dynamic tokens.
3662
3663 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3664
3665         * pedump.c (verify_image_file): Skip types that can't be
3666         decoded.
3667
3668 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3669
3670         * verify.c: Look for recursive valuetypes only against the
3671         type been initialized as this is a lot simpler and works.
3672
3673 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3674
3675         * verify.c: Ensure that fields are properly loaded before
3676         checking them.
3677
3678 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3679
3680         * object.c (mono_object_get_virtual_method) : Call 
3681           mono_cominterop_get_invoke if the object is a COM object.
3682
3683         Code is contributed under MIT/X11 license.
3684
3685 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
3686
3687         * verify.c: Check for recursive valuetype definitions.
3688
3689 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3690
3691         Use inheritance-aware interface offsets. Inherited types use the same offsets
3692         of their parents. This reduce offset duplication in case more than one type in
3693         the inheritance tree explicitly implements the same interface.
3694
3695         This also removes a source of vtable bubbles found in #532409. An abstract type
3696         isn't required to provide abstract methods to all interfaces it implements, which
3697         resulted in a bubble with the previous scheme as the child would get a non-full
3698         vtable from its parent. We fail all concrete types with vtable bubbles, so this
3699         should be fixed.
3700
3701         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
3702         it's expected to not cause any significant increase beyond that.
3703
3704         * class.c (setup_interface_offsets): Compute super class iface offsets
3705         first to force sharing.
3706
3707         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
3708         dumping only the relevant ones.
3709
3710         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
3711         methods a new slot regardless if they belong to an interface or not. This allows
3712         an inherited type to override the iface method separately from the class one.
3713
3714 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3715
3716         * threadpool.c: make the Sleep() alertable to prevent delays exiting
3717         applications that take less than 2s to execute.
3718         Bug #524984 fixed.
3719
3720 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
3721
3722         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
3723
3724         * object.c (mono_get_runtime_callbacks): New helper function to return
3725         the runtime callbacks.
3726
3727         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
3728         mono_get_runtime_build_info () as the display name.
3729         
3730 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3731
3732         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
3733         argument, since NEWARR expects a native int. Fixes #481559.
3734
3735 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3736
3737         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
3738         against broken SRE methods.
3739
3740 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3741
3742         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
3743         a NULL variable. Abort early on failure.
3744
3745 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3746
3747         * class.c (can_access_type): Fail visibility test for non nested
3748         types with nested visibility.
3749
3750 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
3751
3752         * assembly.c (parse_public_key): Avoid allocating (and not 
3753         freeing) the public key array when it's not requested by the 
3754         caller.
3755         * threads.c (mono_thread_manage, mono_thread_create_internal, 
3756         ves_icall_System_Threading_Thread_Thread_internal): Free 
3757         allocated memory on error.
3758
3759 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3760
3761         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
3762
3763 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3764
3765         * class.c (mono_class_setup_fields): Remove duplicated local variable
3766         named gklass.
3767         Rename gklass to gtd to reflect the fact that it points to the generic
3768         type definition.
3769         Remove the duplicated call to mono_class_setup_fields on gtd and move
3770         the error check to the beginning.
3771
3772 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3773
3774         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
3775         Remove cruft of the previous patch.
3776
3777 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3778
3779         * metadata-verify.c (verify_method_table): Check for abstract + final.
3780         Fixes #534175.
3781
3782 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3783
3784         * verify.c (verify_class_fields): Check for duplicate fields.
3785
3786 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3787
3788         * metadata-verify.c: Verify the typeref table for duplicates.
3789
3790 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3791
3792         This reverts r140936 and properly handles interfaces with static methods. The
3793         right fix is to ensure vtables without bubles which is an easier to verify
3794         constraint. We should avoid such special cases as of the reverted patch as those
3795         only make the runtime more brittle.
3796
3797         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
3798         static methods on interfaces.
3799
3800         * class.c (setup_interface_offsets): Use the number of virtual methods when
3801         calculating interface offsets instead of the number of methods. This way we
3802         avoid bubles on the layout.
3803
3804 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
3805
3806         * metadata-verify.c (verify_metadata_header): Some very smart
3807         obfuscators like to add extra stream headers. Ignore them.
3808
3809 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
3810
3811         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
3812         methods correctly.
3813
3814 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
3815
3816         * metadata-verify.c: Verify for duplicated types.
3817
3818 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
3819
3820         * metadata-verify.c (verify_typedef_table): Verify for nested types
3821         without an entry on the nested class table.
3822
3823 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
3824
3825         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
3826         <tom_hindle@sil.org>. Add locking around hash table accesses.
3827
3828 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3829
3830         * verify.c (mono_verifier_verify_class): Verify all interface if
3831         really are interfaces. Fixes #534184.
3832
3833 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
3834
3835         * pedump.c: Initialize all types during metadata validation so we report
3836         errors only detected as part of class initialization.
3837
3838 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
3839
3840         * metadata-verify.c (verify_method_table): PInvoke requires method to
3841         be static. Fixes #534189
3842
3843 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
3844
3845         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
3846         being NULL.
3847
3848 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3849
3850         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
3851         for holes or bad methods. Fixes #525314.
3852
3853 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3854
3855         * class.c (setup_interface_offsets): Don't allocate slot
3856         for the same interface multiple times. This creates bubbles
3857         that waster space and make vtable verification harder.
3858
3859         The same interface get a slot multiple times since we need
3860         to get the closure of all implemented interfaces, which means
3861         the same interface is reported multiple times.
3862
3863 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3864
3865         * verify.c (mono_verifier_verify_class): Don't check the fields
3866         of generic instances since the context on which they got expanded
3867         might lead to false positives.
3868
3869         Such thing happens when a generic type is inflated in the context
3870         of a generic method and the inflated type of a field turns into a
3871         generic method argument, which causes the checking code to think
3872         it's an invalid class when it's not.
3873
3874 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3875
3876         * verify.c (mono_type_is_valid_in_context): Verify if type
3877         is NULL and remove duplicate test.
3878
3879 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3880
3881         * verify.c (mono_verifier_verify_class): Check fields for
3882         invalid generic arguments.
3883
3884 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3885
3886         * class.c (verify_class_overrides): Verify if for static
3887         and non virtual methods.
3888
3889 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3890
3891         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
3892         Check for errors after retrieving the vtable.
3893
3894 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3895
3896         * class.c (mono_class_setup_vtable_general): Verify
3897         if method overrides are valid before processing them.
3898
3899 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3900
3901         * marshal.c (mono_array_to_lparray): Fix minimal build with
3902         cominterop disabled.
3903
3904         * marshal.c (mono_free_lparray): Same.
3905
3906 2009-08-21  Mark Probst  <mark.probst@gmail.com>
3907
3908         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
3909         the hash function for the ares_htable.
3910
3911 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
3912
3913         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
3914         bit for assembly flags. MS is ok with it but there is no spec anywhere
3915         on its mean
3916
3917 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3918
3919         * class.c (mono_class_create_from_typedef): Emit profiler events
3920         in all cases.
3921
3922 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3923
3924         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
3925         Release memory on failure.
3926
3927 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3928
3929         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
3930         to the internal API.
3931
3932         * metadata.c (get_constraints): Use a single-linked table as we don't
3933         traverse it backward. Fail and return FALSE if only of the contraint types
3934         is not found.
3935
3936         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
3937         to mono_metadata_load_generic_param_constraints except for having a return value.
3938         This has to be done since the later is part of the public API.
3939
3940         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
3941         and fail the type.
3942
3943         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
3944         and fail the method.
3945
3946 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3947
3948         * metadata-verify.c (is_valid_method_header): Add work-around to deal
3949         with MS broken behavior of emmitting EH section sizes without the
3950         header size added.
3951
3952 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3953
3954         * metadata.c (mono_type_create_from_typespec): Don't allocate image
3955         memory until we're sure that we'll need it. This avoids leaking for
3956         broken types or duplicated instantiation.
3957
3958 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3959
3960         * metadata-verify.c (is_valid_method_header): Fix stupid formating
3961         mistake.
3962
3963 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3964
3965         * metadata-verify.c (is_valid_method_header): Fix number of clauses
3966         and expected size calculation.
3967
3968 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3969
3970         * class.c (mono_class_get_field_idx): Add fixme for broken
3971         behavior for types with multiple fields with the same name.
3972         I would rather fix it, but have no idea on how to generate
3973         such artifact for testing.
3974
3975 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3976
3977         * verify.c (verifier_load_field): We should allow references to
3978         fields to be made using the generic type definition. It's up to
3979         the loader system to fail invalid ops.
3980
3981         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
3982         are invalid.
3983
3984 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3985
3986         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
3987
3988         * metadata-internals.h: Fix declaration of 
3989         mono_metadata_interfaces_from_typedef_full.
3990
3991         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
3992         heap_alloc_result parameter that controls if the result should be
3993         g_malloc'd.
3994
3995         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
3996         array be g_malloc'd and properly document this public API function.
3997
3998 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3999
4000         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
4001         remove METHOD_HEADER_TINY_FORMAT1.
4002
4003         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
4004
4005         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
4006
4007         Both spec and MS uses only 2 bits to enumerate the kind of header.
4008         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
4009         is superfluous, only used for tiny headers with odd code lengths.
4010
4011         This change also make sure that mono doesn't wronly interpret bit 2
4012         of fat header flags, which is currently reserved.
4013
4014 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4015
4016         * metadata.c (do_mono_metadata_parse_type): Do error
4017         checking for element types. Don't abort if presented
4018         with a broken type kind.
4019
4020 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4021
4022         * metadata.c (mono_metadata_parse_method_signature_full):
4023         Gracefully fail bad vararg signatures.
4024
4025 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4026
4027         * profiler.c:
4028         * class.c: Fix warnings for uninitialized variables.
4029
4030 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4031
4032         * icall.c: Fix _NSGetEnviron method declaration warning.
4033
4034 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4035
4036         * icall.c:
4037         * reflection.c: Make bitwise checks explicit.
4038
4039 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4040
4041         * debug-helpers.c:
4042         * marshal.c: Fix printf warnings.
4043
4044 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4045
4046         * reflection.c (encode_cattr_value): Fix a warning.
4047
4048 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4049
4050         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
4051         of array bounds.
4052
4053 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4054
4055         * loader.c (mono_method_signature): Don't assert on broken
4056         signature. Print a more useful error message.
4057
4058 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4059
4060         * loader.c (mono_method_get_marshal_info): Assert if
4061         signature is invalid. Bounds check stores to the
4062         mspecs array;
4063
4064 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4065
4066         * loader.c (field_from_memberref): Fix warning.
4067
4068 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4069
4070         * loader.c (mono_method_get_param_names): Check if signature
4071         is null. Don't store beyond the size of the name array.
4072
4073 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4074
4075         * loader.c (mono_get_method_constrained): Check if signature
4076         is null.
4077
4078 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4079
4080         * loader.c (mono_loader_set_error_bad_image): Improve
4081         error messages.
4082
4083 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4084
4085         * loader.c (mono_get_method_full): Convert an assertion
4086         into a loader error.
4087
4088 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4089
4090         * class-internals.h, class.c: Better naming and documentation.
4091
4092 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
4093
4094         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4095         obj is NULL.
4096
4097 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4098
4099         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4100         parsing fails.
4101
4102 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4103
4104         * loader.c (mono_loader_error_prepare_exception): Handle missing field
4105         errors with no class set.
4106
4107         * loader.c (field_from_memberref): If the field signature is of the wrong
4108         type fail with a MissingFieldException instead of a BadImageException as
4109         this is the behavior observed on MS. 
4110
4111 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4112
4113         * loader.c (field_from_memberref): Don't crash if either the field
4114         signature or the typespec class are invalid.
4115
4116 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4117
4118         * verify.c (verifier_load_field): Don't allow field related
4119         ops to reference fields on generic type definition.
4120
4121 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4122
4123         * metadata-verify.c: Add new warning level for errors specified
4124         by ECMA 335 but that MS ignores.
4125
4126         * metadata-verify.c (verify_method_table): Make compiler controled
4127         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4128         this check is safe because the end result will only be some visibility
4129         exceptions been thrown.
4130
4131 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4132
4133         * verify.c (get_boxable_mono_type): Don't allow the
4134         use of the generic type definition on boxed type positions.
4135
4136         Fixes #531237.
4137
4138 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4139
4140         * threadpool.c: Make sure no cross-domain references remain in
4141         ares_htable or the arrays that are thrown away when resizing.
4142
4143 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4144
4145         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4146         list of classes for which we have to unregister reflection_info
4147         with the GC and which are not in the namespace cache.
4148
4149         * reflection.c (mono_reflection_initialize_generic_parameter): Add
4150         the class to the list.
4151
4152 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4153
4154         * domain.c (mono_domain_free): Unregister the GC roots in
4155         MonoDomain.
4156
4157 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4158
4159         * reflection.c (mono_reflection_type_get_handle): Fix typo.
4160
4161 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4162
4163         * class.c: Add mono_class_get_field_from_name_full which does
4164         the same as mono_class_get_field_from_name but does check field
4165         signature as well.
4166
4167         * class-internals.h: Export mono_class_get_field_from_name_full as
4168         part of the internal API.
4169
4170         * loader.c (field_from_memberref): Search fields by name and signature
4171         as it's valid to have two fields with same name but different types.
4172
4173         Fixes #528055.
4174
4175 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
4176
4177         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4178
4179         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4180
4181         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
4182         System.Type.
4183
4184 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
4185
4186         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
4187
4188         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
4189
4190 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4191
4192         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
4193         to sgen-scan-object.h, which can be included and parameterized via
4194         macros.
4195
4196         * Makefile.am: sgen-scan-object.h added.
4197
4198 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4199
4200         * gc.c: #define GC_dont_gc if we're compiling with SGen.
4201
4202 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4203
4204         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
4205         before clearing a domain in the GC.
4206
4207 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4208
4209         * exception.c (mono_exception_from_name_domain): Actually create
4210         the exception in the specified domain.
4211
4212         * appdomain.c (mono_domain_create_appdomain_internal): Create the
4213         OutOfMemoryException a bit later so that the domain is inialized
4214         "enough" that it works.
4215
4216 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4217
4218         * threads.c (thread_cleanup): Clean up the cached_culture_info
4219         array to prevent cross-domain references.
4220
4221 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
4222
4223         * metadata.c: more documentation for MonoType accessors.
4224
4225 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
4226
4227         Fix incorrect size definitions where the tail array isn't a list
4228         of pointers
4229         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
4230         define size.
4231         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
4232         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
4233         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
4234
4235 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4236
4237         * reflection.h:
4238         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
4239
4240 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4241
4242         * metadata.c:
4243         * loader.c:
4244         * metadata-internals.h:
4245         * method-builder.c:
4246         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
4247
4248 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4249
4250         * cominterop.c:
4251         * metadata.c:
4252         * metadata.h:
4253         * loader.c:
4254         * marshal.c:
4255         * reflection.c: #define for sizeof in MonoType and
4256         MonoMethodSignature.
4257
4258 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4259
4260         * domain.c:
4261         * domain-internals.h: add and use #define's instead of sizeof()
4262         for MonoJitInfo and MonoJitInfoTable.
4263
4264 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4265
4266         * object.c:
4267         * class.h: use #define instead of sizeof() for MonoRemoteClass.
4268
4269 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4270
4271         * metadata.c:
4272         * metadata.h:
4273         * object.c:
4274         * class-internals.h:
4275         * generic-sharing.c:
4276         * marshal.c: use a #define instead of sizeof() for a few
4277         structures that use a zero-length array.
4278
4279 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
4280
4281         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
4282         to handle inflated generic methods.
4283
4284         * appdomain.c: Bump corlib version.
4285
4286         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
4287         instances.
4288
4289         * reflection.c (fixup_method): Same
4290
4291         * reflection.c (resolve_object): Same.
4292
4293         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
4294         g_error and a decent message.
4295
4296 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
4297
4298         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
4299         from the object because it could not yet be available globally
4300         (it happens if the profiler tries to create a gchandle on the
4301         MonoThread object of a thread that is still registering itself
4302         with the runtime).
4303
4304 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
4305
4306         * reflection.c (mono_generic_class_get_object): Initialized the
4307         managed type arguments array.
4308
4309         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
4310
4311         * appdomain.c: Bump corlib version.
4312
4313 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
4314
4315         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
4316         #527902.
4317
4318 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
4319
4320         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4321         Avoid a crash if synch_cs is not set.
4322         
4323         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4324         Handle the case when the handle is 0.
4325
4326         * appdomain.c: Bump corlib version.
4327
4328 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
4329
4330         * reflection.c (mono_type_get_object): Fix a warning.
4331
4332 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4333
4334         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4335         descriptor here.  We assume it's already been computed.
4336
4337         * generic-sharing.c (instantiate_other_info): Compute the GC
4338         descriptor for info type MONO_RGCTX_INFO_KLASS.
4339
4340 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4341
4342         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4343         type, so don't use MONO_OBJECT_SETREF to set a field.
4344
4345 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4346
4347         * gc.c: We were missing one case where invoking a finalizer would
4348         not reset the domain.  Also, in the finalizer thread loop, assert
4349         that we're in the root domain.
4350
4351 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4352
4353         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4354         if the type is not an array.
4355
4356 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4357
4358         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4359         method bound to the declaring type of the method. Raise an exception
4360         if the type is not a generic param.
4361
4362 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4363
4364         * class.c (print_unimplemented_interface_method_info): Print the
4365         full type name.
4366
4367         * class.c (mono_class_setup_vtable_general): When dealing with a
4368         generic instance first check if the generic type definition is
4369         not broken.
4370
4371 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4372
4373         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4374
4375         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4376
4377         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4378
4379         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4380
4381         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4382
4383         Code is contributed under MIT/X11 license
4384
4385 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4386
4387         * verify.c: Fix naming of stelem and ldelem.
4388
4389 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4390
4391         * generic-sharing.c: Replace the templates lock with the loader
4392         lock because of very hard to resolve deadlock issues.
4393
4394 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4395
4396         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4397         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4398         directly. Fixes #525338.
4399
4400         * class.c (mono_class_get_vtable_size): New helper function.
4401
4402         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4403         the field belongs to the type. Fixes #525733.
4404
4405 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4406
4407         * sgen-gc.c: When we stop a thread and its stack top is not within
4408         its allocated stack (because it's in an altstack signal handler),
4409         restart it and stop it again, until it is.
4410
4411 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4412
4413         * sgen-gc.c: Take a thread's stack top and registers from the
4414         sigcontext in the suspend signal handler.
4415
4416         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4417         stuff to sgen-archdep.h.
4418
4419         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4420         caller, because have code in sgen-archdep.h to acquire that data.
4421
4422 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4423
4424         * profiler.c, profiler.h, profiler-private.h:
4425         Added support for keeping track of code chunks and buffers.
4426
4427 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4428
4429         * metadata-verify.c: Fix endianness problems on decoding functions.
4430         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4431
4432 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4433
4434         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4435         schema for vectors and one dimension SZARRAY.
4436
4437 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4438
4439         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4440         schema for vectors and one dimension SZARRAY.
4441
4442 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4443
4444         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4445         Interlocked.(Compare)Exchange with object arguments, which invoke
4446         write barriers.
4447
4448 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4449
4450         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4451         passed invalid arguments.   Fixes another crasher in the
4452         Silverlight test suite.
4453
4454         * class.c (mono_class_array_element_size): Return 0 for the size
4455         of the class;  This fixes the crasher exposed by :
4456
4457         typeof (void).MakeArrayType ();
4458
4459         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4460         if there is no method to dereference.    Put all the code that
4461         depends on this inside the if (method) block.
4462
4463         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4464         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4465
4466         With this change, we pass the test.
4467         
4468         * reflection.c (mono_reflection_sighelper_get_signature_local):
4469         Only dereference the assembly if it has been set.    Fixes a
4470         crasher exposed by #525328
4471
4472 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4473
4474         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4475         don't perform the store in mono_gc_wbarrier_generic_nostore().
4476         Remove the second argument (value), which is not needed.
4477
4478 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4479
4480         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4481         the build.
4482
4483         * boehm-gc.c: Ditto.
4484         
4485 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4486
4487         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4488         not perform the store itself.  Introduce
4489         mono_gc_wbarrier_generic_nostore(), which is the same as
4490         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4491         store.
4492
4493 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4494
4495         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4496         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4497         we still need the memcpy().
4498
4499 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4500
4501         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4502         so that big arrays are handled correctly.  Always use
4503         safe_object_get_size() to calculate array object sizes, which
4504         takes bounds into account.
4505
4506 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4507
4508         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4509         GC descriptor is computed before we use it.
4510
4511 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4512
4513         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4514         write barrier if necessary.
4515
4516 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4517
4518         * icall-def.h, icall.c, thread-types.h: New separate icall for
4519         VolatileWrite(object&,object) that uses a write barrier.
4520
4521         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4522         barriers in icalls which write to "ref" or "out" arguments.
4523
4524 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4525
4526         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4527         handler in a separate icall, to reduce the size of the wrappers.
4528
4529 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4530
4531         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4532
4533 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4534
4535         * metadata-verify.c (parse_field): Allow byref field.
4536
4537         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4538
4539         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4540
4541 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4542
4543         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4544         Fixes #522784.
4545
4546 2009-07-20  Robert Jordan  <robertj@gmx.net>
4547
4548         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4549         Fix invalid IL in valuetype handling (STOBJ must push the
4550         corresponding class). Fixes bug #523149.
4551
4552         Code is contributed under MIT/X11 license.
4553
4554 2009-07-20  Geoff Norton  <gnorton@novell.com>
4555
4556         * gc.c: Use proper semaphores where available on posix and darwin.
4557
4558 2009-07-19  Geoff Norton  <gnorton@novell.com>
4559
4560         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4561
4562 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4563
4564         * refletion.c (is_sre_usertype): Change name to is_usertype and
4565         invert it's result so it returns true if the type is an user type
4566         and not the opposite.
4567
4568         * reflection.c (is_*_type): Change all of those to use new macro
4569         check_corlib_type_cached that cached the type lookup so we don't
4570         need to do string comparisons all the type. Changed the signature
4571         to take a MonoClass instead.
4572
4573         * reflection.c: Change mono_image_create_token and resolve_object
4574         to use is_sre_* functions.
4575
4576 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4577
4578         * sgen-gc.c: Check for writes to the stack in the managed
4579         wbarrier as well.
4580
4581 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4582
4583         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4584         but put them on a list which is processed with the other thread's
4585         remsets.
4586
4587 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4588
4589         * sgen-gc.c: Fix and enable the internal allocator instead of
4590         using malloc/free (which causes deadlocks).
4591
4592 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4593
4594         * refletion.c: Fix builds with SRE disabled by adding a minimal
4595         implementation of mono_reflection_type_get_handle.
4596
4597 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4598
4599         * refletion.c: Make mono_reflection_type_get_handle non static.
4600
4601         * object-internals.h: Export mono_reflection_type_get_handle.
4602
4603         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
4604         unmanaged handle using mono_reflection_type_get_handle.
4605
4606 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4607
4608         * refletion.c: Replace all reads of MonoReflectionType::type with
4609         calls to mono_reflection_type_get_handle. Only the functions that
4610         deal with constructing TypeBuilder::type have not been changed
4611         because they have to deal with NULL values.
4612
4613         This is a first step into supporting reflection types that don't
4614         map directly into their unmanaged counterpart.
4615
4616 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4617
4618         * metadata-verify.c (parse_locals_signature): Don't complain
4619         on signature with zero locals since MS generates it and doesn't
4620         bother with.
4621
4622 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4623
4624         * reflection.c (mono_image_get_array_token): Resolve return
4625         type using mono_reflection_type_get_handle.
4626
4627         * reflection.c (mono_image_get_array_token): Resolve array method
4628         parent type using mono_reflection_type_get_handle.
4629
4630 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4631
4632         * reflection.c (mono_image_basic_init): Applied patch from
4633         <Dax@daxxfiles.net>. Set the public key token from the assembly
4634         builder. Fixes #518909.
4635
4636         * appdomain.c: Bump corlib version.
4637
4638 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4639
4640         * class.c (mono_class_needs_cctor_run): Make this return false if
4641         the class has no cctor.
4642
4643 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4644
4645         * sgen-gc.c: When the minor GC needs to allocate a new section,
4646         invoke the major GC afterwards.
4647
4648 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
4649
4650         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
4651           Applying the window_style field to the SHELLEXECUTEINFO struct.
4652
4653         Code is contributed under MIT/X11 license.
4654
4655 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4656
4657         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
4658         locking earlier.  Fix it in the managed allocator by making sure
4659         that no thread is stopped there before the GC runs.  If we do stop
4660         a thread there, we restart it and let it run a but, until it stops
4661         somewhere else.
4662
4663         * gc-internal.h, gc.c: Function for getting the IP from a signal
4664         context via a function registered by mini.
4665
4666 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
4667
4668         * object-internals.h (MonoIntPtr): New structure describing a boxed
4669         IntPtr.
4670
4671         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
4672         returns. Fixes #519953.
4673
4674         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
4675
4676 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4677
4678         * class-internals.h, generic-sharing.c: New RGCTX info type for
4679         getting a remoting invoke with check wrapper.
4680
4681 2009-07-07  Geoff Norton  <gnorton@novell.com>
4682
4683         * icall-def.h: Fix the enable-minimal build.
4684
4685 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4686
4687         * object-internals.h: Add MonoReflectionDerivedType.
4688
4689         * reflection.c: Implement support for PointerType.
4690         Fixed tons of warnings.
4691
4692 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4693
4694         * object-internals.h: Add MonoReflectionByRefType.
4695
4696         * reflection.c: Implement support for ByRefType.
4697
4698 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4699
4700         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
4701
4702         * object-internals.h: Add MonoReflectionArrayType and
4703         mono_reflection_create_unmanaged_type.
4704
4705         * reflection.c: Implement support for ArrayType.
4706
4707 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4708
4709         * metadata-verify.c (is_valid_method_header): Parse EH block
4710         flags correctly.
4711
4712 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4713
4714         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
4715         processing the disappearing links, and process disappearing links
4716         in a loop until no new objects are copied.
4717
4718 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4719
4720         * object.c (handle_enum): Invoke the write barrier when copying
4721         value type instances.
4722
4723         * sgen-gc.c: Register remsets for unmanaged write barriers only
4724         when the address written to is actually on the heap.  This makes
4725         set_value() in object.c work without requiring that the result be
4726         on the heap.
4727
4728 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
4729
4730         The runtime wrappers are all bound to a given type that must
4731         exist in the same image. For regular images we use the <Module>
4732         type, which is required to exist for all images.
4733
4734         The <Module> type can't be used for dynamic images because it
4735         might not exist at the time the wrapper is required, so we create
4736         a synthetic type to use instead.
4737
4738         The current code works because of the 2 stage setup of MonoClass,
4739         but once this is gone it will no longer work.
4740
4741         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
4742
4743         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
4744
4745         * object-internals.h: Export mono_image_set_wrappers_type icall
4746         as part of the internal API.
4747
4748         * marshal.c (get_wrapper_target_class): If the image is dynamic,
4749         use MonoDynamicImage::wrappers_type instead of the <Module> type.
4750
4751         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
4752         image wrappers_type to the provided value.
4753
4754 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
4755
4756         * appdomain.c (deregister_reflection_info_roots): No need
4757         to use the image lock here.
4758
4759 2009-07-02  Mark Probst  <mark.probst@gmail.com>
4760
4761         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
4762
4763 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
4764
4765         * threads.c: Store the thread start argument in a hash table instead of
4766         registering it as a root, as libgc doesn't support unregistering roots
4767         under windows, leading to 'too many root sets' errors when many threads
4768         are created.
4769
4770         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
4771         shutdown, they can still be referenced by the other dying objects.
4772         Fixes #514506.
4773
4774 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4775
4776         * socket-io.c: DontLinger does not allow LingerOptions.
4777
4778 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4779
4780         * metadata-verify.c: The spec doesn't mention that it's possible to add
4781         custom attribute to a generic parameter. Fixed.
4782
4783 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4784
4785         * class.c (inflate_generic_type): Don't crash while trying to output a message
4786         on why we're aborting.
4787
4788 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4789
4790         * socket-io.c: DontLinger can take an int or a boolean too.
4791
4792 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
4793
4794         * gc.c: check for a null argument to SuppressFinalize () and
4795         ReRegisterForFinalize ().
4796
4797 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4798
4799         * loader.c (method_from_methodspec): Call into the verifier to check
4800         the signature.
4801
4802         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
4803
4804         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
4805         part of the internal API.
4806
4807 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4808
4809         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
4810         the signature.
4811
4812         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
4813
4814         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
4815         part of the internal API.
4816
4817 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4818
4819         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
4820         the signature.
4821
4822         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
4823         blob verification.
4824
4825         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4826         part of the internal API.
4827
4828 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4829
4830         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
4831         when doing basic verification. 
4832
4833         This check must be done since the runtime peeks into signatures in much
4834         more places than it does decoding so it makes sense to ensure that all
4835         pointers to blob objects are well formed.
4836
4837 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4838
4839         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
4840         Use proper overflow dectection. Fix usage of it.
4841
4842 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4843
4844         * loader.c (field_from_memberref): Call into the verifier to check
4845         the signature.
4846
4847         * loader.c (mono_method_get_signature_full): Same.
4848
4849         * loader.c (method_from_memberref): Same.
4850
4851         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
4852
4853         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4854         part of the internal API.
4855
4856 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4857
4858         * threadpool.c (mono_thread_pool_add): If the domain is unloading
4859         or unloaded, still return an AsyncResult, but don't add it to the
4860         threadpool.
4861
4862 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4863
4864         * threads.c: fix missing colon when DEBUG is defined.
4865
4866 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4867
4868         * threadpool.c: Don't add new calls to a threadpool if the domain
4869         of the call is unloading or unloaded.  When dequeuing a job, null
4870         the reference in the queue.
4871
4872 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4873
4874         * sgen-gc.c (null_link_in_range): Add the dislink for the old
4875         generation if an object was moved.
4876
4877 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
4878
4879         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
4880           parameters of type SAFEARRAY[VARIANT].
4881
4882         * reflection.c (encode_marshal_blob): Properly generate element type
4883           (SafeArraySubType marshal attribute option).
4884
4885         Code is contributed under MIT/X11 license.
4886
4887 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
4888
4889         * reflection.c: in mono_method_clear_object () really ensure all the
4890         objects are removed.
4891
4892 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4893
4894         * loader.c (mono_method_signature): Call into the verifier to check
4895         the method signature.
4896
4897         * metadata-verify.c (verify_method_table): Move signature verification
4898         to verify_method_table_full.
4899
4900         * metadata-verify.c: Add mono_verifier_verify_method_signature.
4901
4902         * verify-internals.h: Export mono_verifier_verify_method_signature as
4903         part of the internal API.
4904
4905 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4906
4907         * loader.c (mono_method_get_header): Call into the verifier to
4908         check the method header.
4909
4910         * metadata-verify.c: Add mono_verifier_verify_method_header.
4911
4912         * verify-internals.h: Export mono_verifier_verify_method_header as
4913         part of the internal API.
4914
4915 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4916
4917         * class.c (mono_class_find_enum_basetype): Call into the verifier to
4918         check the field signature. Replace an assert with an explicit check.
4919
4920         * class.c (mono_class_setup_fields): Call into the verifier to check
4921         the field signature.
4922
4923         * metadata-verify.c: Add mono_verifier_verify_field_signature.
4924
4925         * verify-internals.h: Export mono_verifier_verify_field_signature as
4926         part of the internal API.
4927
4928 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4929
4930         * class.c (mono_class_find_enum_basetype): Simplify this function
4931         by moving code outside of the loop and not decoding static fields.
4932
4933 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4934
4935         * metadata-verify.c (verify_typedef_table): Check the extends
4936         token here. Move to here a flags check from verify_typedef_table_full.
4937
4938 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4939
4940         * metadata-verify.c (is_valid_method_header): Fix a warning.
4941
4942         * metadata-internals.h (MonoImage): Remove the unused 
4943         static_rgctx_invoke_wrapper_cache.
4944
4945         * image.c marshal.c: Ditto.
4946
4947 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4948
4949         * image.c (do_mono_image_load): Enable table data verification.
4950
4951 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4952
4953         * metadata-verify.c (is_valid_constant): Fix nullref check.
4954
4955 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4956
4957         * metadata-verify.c (is_valid_constant): Fix string bounds check.
4958
4959 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4960
4961         * sgen-gc.c: Managed allocation with pthreads TLS.
4962
4963         * threads.c, threads-types.h: Functions for the JIT to tell the
4964         runtime whether it supports the MONO_TLS opcode.
4965
4966 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4967
4968         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
4969         without methods.
4970
4971 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4972
4973         * metadata-verify.c (is_valid_constant): Fix the string length check.
4974         Use safe overflow checking. Add decent error messages.
4975
4976 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4977
4978         * metadata-verify.c: Move remaininh blob checks to the offline
4979         verification path.
4980
4981 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4982
4983         * metadata-verify.c: Move more blob checks to the offline verification
4984         path.
4985
4986 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
4987
4988         * object-internals.h : Adding interrupt_on_stop field.
4989
4990         * threads.c (mono_thread_request_interruption) : On Windows exit the
4991           thread if interrupt_on_stop is set.
4992
4993         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
4994          Removing old interrupt logic and setting the interrupt_on_stop for the
4995          thread when calling accept.
4996
4997         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
4998          setting the interrupt_on_stop for the thread when calling accept.
4999
5000         Contributed under MIT/X11 license.
5001
5002 2009-06-20  Martin Baulig  <martin@ximian.com>
5003
5004         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
5005
5006 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
5007
5008         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
5009         running in no-exec mode.
5010
5011 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5012
5013         * metadata-verify.c (verify_method_table): Move header
5014         checking to verify_method_table_full.
5015
5016         * metata-verify.c (mono_verifier_verify_full_table_data):
5017         Call verify_method_table_full.
5018
5019 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5020
5021         * metadata-verify.c (verify_field_table): Move signature
5022         checking to verify_field_table_full.
5023
5024         * metata-verify.c (mono_verifier_verify_full_table_data):
5025         Call verify_field_table_full.
5026
5027 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5028
5029         * metadata-verify.c (verify_typedef_table): Move remaining
5030         stuff to verify_typedef_table_full.
5031
5032 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5033
5034         * metadata-verify.c: Kill is_corlib from VerifyContext.
5035         It is only used by the offline mode.
5036         So we better remove it from the runtime path.
5037
5038 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5039
5040         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
5041         function that perform the offline metadata verification steps.
5042
5043         * metadata-verify.c (verify_typedef_table): Move some checks to
5044         verify_typedef_table_full and make it been called by new function
5045         mono_verifier_verify_full_table_data.
5046
5047         * pedump.c: Call mono_verifier_verify_full_table_data.
5048
5049         * verify-internals.h: Export mono_verifier_verify_full_table_data as
5050         part of the internal API.
5051
5052 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5053
5054         * metadata-verify.c (typedef_is_system_object): Fix System.Object
5055         check.
5056
5057         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
5058         flags bits. SupportLastError was confused as bit 7 instead of 6.
5059
5060         * metadata-verify.c (verify_implmap_table): Fix import scope verification
5061         to check against the module ref table instead of module.
5062
5063         * metadata-verify.c (verify_implmap_table): Fix corlib check.
5064
5065         * pedump.c: Call mono_image_load_names.
5066
5067 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5068
5069         * image.c: Extract mono_image_load_names from do_mono_image_load.
5070
5071         * metadata-internals.h: Export mono_image_load_names as part of
5072         the internal API.
5073         
5074 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
5075
5076         * metadata.c (mono_metadata_cleanup): Free the generic method cache
5077         first, as it could reference data in the other caches.
5078
5079 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5080
5081         * metadata-verify.c: Finished with method header verification.
5082
5083 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5084
5085         * metadata-verify.c: Added more header verification code.
5086         Now only EH clauses are missing.
5087
5088 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
5089
5090         * marshal.c (get_runtime_invoke_type): Don't share primitive types
5091         for return values.
5092
5093 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5094
5095         * metadata-verify.c: Initial method header verification.
5096
5097 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5098
5099         * metadata-verify.c (verify_import_table): The IAT contents
5100         might end been patched by the windows DL when running with
5101         coree enabled.
5102
5103 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
5104
5105         * class.c (mono_class_from_typeref): If the enclosing type is not
5106         found return null instead of crashing. Fixes #508487.
5107
5108 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
5109
5110         * normalization-tables.h : updated to the latest unicode charcter
5111           data.
5112         * appdomain.c : bump corlib version.
5113
5114 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
5115
5116         * class.c (mono_class_from_name): Fix support for assembly references
5117         in the EXPORTEDTYPE table. Fixes #511704.
5118
5119 2009-06-13  Geoff Norton  <gnorton@novell.com>
5120
5121         * domain.c: Ensure that mono_domain_assembly_open actually opens the
5122         assembly in the target domain.
5123
5124 2009-06-12  Robert Jordan  <robertj@gmx.net>
5125
5126         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5127         because "this" of the managed signature has become an
5128         ordinary parameter in the unmanaged signature.
5129
5130 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
5131
5132         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5133         field for owner-less generic containers.
5134
5135         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5136         image field of the owner-less generic containers created here.
5137
5138         * metadata.c (mono_metadata_load_generic_params): Ditto, the
5139         contain is ownerless until the caller sets its owner.
5140
5141         * metadata.c (type_in_image): Handle owner-less generic containers
5142         correctly.
5143         
5144 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5145
5146         * image.c (mono_image_close): Support debug_assembly_unload for
5147         dynamic images too.
5148
5149 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
5150
5151         * class.c: Fix some typos in comments.
5152
5153 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5154
5155         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5156
5157         * threads.c (mono_thread_execute_interruption): Avoid creating the
5158         abort exception object while holding the synch_cs lock.
5159
5160 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5161
5162         * metadata-verify.c: Verify basic cattr content.
5163
5164 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
5165
5166         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5167         nested types.
5168         
5169         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5170         support for nested types. Fixes #511704.
5171
5172 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5173
5174         * metadata-verify.c: Verify methodspec signatures.
5175
5176 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5177
5178         * metadata-verify.c: Verify typespec signatures.
5179
5180 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
5181
5182         * metadata.c (free_inflated_method): Call 
5183         mono_marshal_free_inflated_wrappers (), which was missed earlier.
5184
5185 2009-06-08  Miguel de Icaza  <miguel@novell.com>
5186
5187         * mono-config.c: Small change to report the PPC64/ILP32 model.
5188
5189 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5190
5191         * metadata-verify.c (parse_type): Check szarray.
5192
5193 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5194
5195         * metadata-verify.c (parse_type): Check fnptr.
5196
5197 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5198
5199         * metadata-verify.c (parse_type): Check generic instances.
5200
5201 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5202
5203         * metadata-verify.c (parse_type): Check array shape.
5204
5205 2009-06-05  Robert Jordan  <robertj@gmx.net>
5206
5207         * class.c (mono_class_create_from_typedef): Check only for
5208         mscorlib's System.Array.
5209
5210 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5211
5212         * metadata-verify.c (parse_type): Check pointer, class/valuetype
5213         and generic params. 
5214
5215         * metadata-verify.c (parse_field): Check the signature.
5216
5217 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5218
5219         * metadata-verify.c: Implement locals signature check.
5220
5221 2009-06-04  Marek Safar  <marek.safar@gmail.com>
5222
5223         * domain.c: Add .NET 4.0 Beta 1 version.
5224
5225 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
5226
5227         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
5228           For QueryInterface on CCWs consider the base class
5229           interfaces as well.
5230
5231         Code is contributed under MIT/X11 license.
5232
5233 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5234
5235         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
5236
5237         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
5238         used.
5239
5240         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5241         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
5242
5243         * generic-sharing.c (inflate_other_data): Ditto.
5244         
5245 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5246
5247         * metadata-verify.c: Implement property signature check.
5248
5249 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5250
5251         * sgen-gc.h: Register saving support for PPC.
5252
5253 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5254
5255         * sgen-gc.c: Fixed a pthread TLS screwup.
5256
5257 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5258
5259         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
5260         supported.
5261
5262 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5263
5264         * sgen-gc.c: Disable TLA and managed allocation if the __thread
5265         keyword is not supported.
5266
5267 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5268
5269         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
5270         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
5271         the inflated method is freed. Fixes #508389.
5272
5273         The code is contributed under the MIT/X11 license.
5274         
5275 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
5276
5277         * marshal.c (get_wrapper_target_class): New helper function.
5278         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
5279         the <Module> class of the image. Fixes #509049.
5280
5281 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5282
5283         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
5284         Check if the thread was interrupted and proccess it straight away.
5285         Makes abortion much more responsive.
5286
5287 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5288
5289         * threads.c (mono_thread_execute_interruption): Use atomic cas with
5290         MonoThread::interruption_requested to match it's counterpart.
5291
5292         Fixes a hang in abort-stress-1 on a 2 core x86.
5293
5294         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
5295         Fix warning.
5296
5297 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5298
5299         Change MonoImage::name_cache to be protected by the image lock
5300         instead of the loader lock.
5301
5302         * appdomain.c (deregister_reflection_info_roots): Protect access
5303         to name_cache.
5304
5305         * class.c (mono_image_init_name_cache): Change from the loader lock
5306         to the image lock. Check if the cache wasn't already created.
5307
5308         * class.c: Change from the loader to the image lock.
5309
5310         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
5311         the code to hold the image lock while iterating over name_cache and
5312         not go into mono_array_new holding it.
5313
5314         * metadata-internals.h: Add a comment about this change.
5315
5316 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5317
5318         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5319         Under the 2.0 profile raise the loader error.
5320
5321         Fixes #508532.
5322
5323 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5324
5325         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5326         of ldind opcode for generic instances so we don't fail for direct wrappers.
5327         This only affect direct calls.
5328
5329 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5330
5331         * reflection.c (create_dynamic_mono_image): Fix warnings.
5332
5333         * generic-sharing.c (other_info_equal): Ditto.
5334         
5335 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5336
5337         * metadata-verify.c: Implement field signature check.
5338
5339 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5340
5341         * metadata-verify.c: Implement standalone signature check.
5342
5343 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5344
5345         * metadata-verify.c: Implement methodref signature check.
5346
5347 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5348
5349         * object-internals.h (MonoRuntimeCallbacks): New structure containing
5350         callbacks supplied by the runtime.
5351
5352         * object.c (mono_install_callbacks): New internal function to install
5353         the callbacks.
5354
5355         * object.c (mono_create_ftnptr): Move the implementation of this to
5356         mini/.
5357
5358         * object.c (mono_get_addr_from_ftnptr): Ditto.  
5359
5360 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5361
5362         * metadata-verify.c (parse_return_type): Proper byref check.
5363         * metadata-verify.c (is_valid_method_signature): Check for zero arity
5364         generic signatures and method params.
5365
5366 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5367
5368         * metadata-verify.c (decode_signature_header): Fix bounds check.
5369
5370         * metadata-verify.c (parse_custom_mods): Check custom mods.
5371
5372         * metadata-verify.c (parse_type): Do initial basic verification
5373         of valid values.
5374         
5375         * metadata-verify.c (is_valid_method_signature): Parse the generic
5376         param count.
5377
5378 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5379
5380         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5381         discarded based on their most specific definition so we set the method_slots
5382         array before checking if the method is acceptable or not.
5383
5384         Fixes #506757.
5385
5386 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5387
5388         * icall.c: Free the old array when resizing a mono_ptr_array.
5389
5390 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5391
5392         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5393         for the hashes whose keys are managed objects.
5394
5395 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5396
5397         * object-internals.h, threads.c: Set the execution context on
5398         thread start here, not in corlib.
5399
5400         * appdomain.c: Bump corlib version.
5401
5402 2009-05-27  Martin Baulig  <martin@ximian.com>
5403
5404         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5405         if `_mono_debug_using_mono_debugger' is set to make things work
5406         properly when embedding Mono.
5407
5408 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5409
5410         * class.c (mono_class_setup_fields): Don't mark simd types as having
5411         16 bytes alignment as the whole runtime doesn't support.
5412
5413 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5414
5415         * metadata-verify.c (safe_read): Use endian safe read macros.
5416
5417 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5418
5419         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5420         it is read-only when using full aot.
5421
5422 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5423
5424         * metadata-verify.c (is_valid_method_signature): Verify parts
5425         of the return type. Provide an error message in case of failure.
5426
5427 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5428
5429         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5430
5431 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5432
5433         * metadata-verify.c: Include the size prefix in the bounds check.
5434
5435 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5436
5437         * icall.c: Remove warnings.
5438
5439         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5440         prevent auto-detection based on GCC defines.
5441
5442         Add PS3
5443
5444         * metadata-verify.c: Do not include signal.h
5445
5446         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5447         messages.  Not sure why the g_assert_not_reached is not enough to
5448         quiet the compiler.
5449         
5450
5451         * appdomain.c: Remove code that is not used when
5452         DISABLE_SHADOW_COPY is set.
5453
5454         * image.c: use g_getenv
5455
5456 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5457
5458         * reflection.c: Remove code that it not used with
5459         DISABLE_REFLECTION_EMIT is defined.
5460
5461 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5462
5463         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5464         invoke wrappers.
5465
5466 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5467
5468         * socket-io.c
5469         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5470         the ifdef here and instead put that on io-layer
5471
5472 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5473
5474         * metadata-verify.c: Verify the generic param constraint table.
5475
5476 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5477
5478         * metadata-verify.c (verify_generic_param_table): Fix
5479         thinko on the valid flags bits for generic params.
5480
5481 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5482
5483         * metadata-verify.c: Verify the methodspec table.
5484
5485 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5486
5487         * metadata-verify.c: Verify the generic param table.
5488
5489 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5490
5491         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5492
5493 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5494
5495         * sgen-gc.c: Use generation enum more consistently and use the
5496         correct generation in mono_gc_register_for_finalization().
5497
5498 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5499
5500         * metadata-verify.c: Verify the nested class table.
5501
5502 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5503
5504         * metadata-verify.c: Verify the manifest resource table.
5505
5506 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5507
5508         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5509
5510 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5511
5512         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5513         wrappers, this is now done in the JIT.
5514         
5515         * class.c (mono_set_generic_sharing_supported): New internal function.
5516         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5517
5518 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5519
5520         * metadata-verify.c: Verify the exported type table.
5521
5522 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5523
5524         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5525
5526 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5527
5528         * metadata-verify.c: Verify the file table.
5529
5530 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5531
5532         * metadata-verify.c (verify_assembly_table): Fix an error message.
5533
5534         * metadata-verify.c: Verify the assemblyref table.
5535
5536 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5537
5538         * metadata-verify.c (verify_assembly_table): Fix the valid
5539         bits mask for flags.
5540
5541 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5542
5543         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5544         generic methods as well.
5545
5546 2009-05-15  Geoff Norton  <gnorton@novell.com>
5547
5548         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5549         use-case and is significantly more performant than the wapi layer.
5550
5551 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5552
5553         * metadata-verify.c: Verify the assembly table.
5554
5555 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5556
5557         * metadata-verify.c: Fix rows limit check.
5558
5559 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5560
5561         * metadata-verify.c: Verify the fieldrva table.
5562
5563 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5564
5565         * sgen.c: Speed up weak links and finalizers by grouping them by
5566         generation.
5567
5568 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5569
5570         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5571         free the old GCHandle (only applies to SGen).
5572
5573 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5574
5575         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5576         mono_metadata_load_generic_params () for non-generic methods.
5577
5578 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5579
5580         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5581         New function for returning a monitor's weak link if it has one.
5582
5583         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5584         one) when clearing a domain.  These can still be around because
5585         the object might not have been collected.
5586
5587 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5588
5589         * gc.c: Fix a warning.
5590
5591 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
5592
5593         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5594         prevous wait that resulted in a deadlock on Windows when initializing
5595         the runtime form DllMain. Also results in improved startup time.
5596         (finalizer_thread): Get rid of thread_started_event.
5597         * threads.c, threads-types.h (mono_thread_create_internal): Return the
5598         resulting MonoThread.
5599
5600         Contributed under MIT/X11 license.
5601
5602 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
5603
5604         * metadata-verify.c: Verify the implmap table.
5605         Don't require that #US and #Strings be present.
5606
5607 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
5608
5609         * security-core-clr.c: Delegate checks are done at creation time,
5610         not a invocation time. Fix exception for Telerik Silverlight demo
5611
5612 2009-05-11  Mark Probst  <mark.probst@gmail.com>
5613
5614         * sgen-gc.c (need_remove_object_for_domain): Remove the special
5615         case for the Thread class.
5616
5617         * threads.c: Do clean-up of abort exception/state in
5618         thread_cleanup() instead of Thread.free_internal().  Also clean up
5619         current_appcontext.  The reason we have to do that is because
5620         those references might point into another domain and if that
5621         domain is unloaded before the thread is finalized, they point to
5622         invalid data.
5623
5624 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
5625
5626         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
5627         stub signatures.
5628         
5629         Contributed unter MIT/X11 license.
5630
5631 2009-05-09  Miguel de Icaza  <miguel@novell.com>
5632
5633         * verify.c, metadata-verifier.c: Add support for disabling the
5634         verifier in some builds.
5635
5636         [ Sorry, my previous commit accidentally commited some work in
5637         progress ]
5638
5639 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5640
5641         * class.c (mono_class_setup_fields): Set class->field.first for
5642         generic instances.
5643
5644 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5645
5646         * metadata-verify.c: Verify the typespec table.
5647
5648 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5649
5650         * metadata-verify.c: Verify the module table.
5651
5652 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5653
5654         * metadata-verify.c: Verify the methodimpl table.
5655
5656 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5657
5658         * metadata-verify.c: Verify the property table.
5659
5660 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5661
5662         * debug-helpers.c (mono_method_desc_match): Add support for generic
5663         glob patterns.
5664
5665 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
5666
5667         * metadata-verify.c: Verify the propertymap table.
5668
5669 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
5670
5671         * metadata-verify.c: Verify the event table.
5672
5673         * metadata-verify.c (search_sorted_table): Fix offset
5674         calculation.
5675
5676 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5677
5678         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
5679
5680 2009-05-01  Mark Probst  <mark.probst@gmail.com>
5681
5682         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
5683         because mono_delegate_free_ftnptr() needs it.
5684
5685 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5686
5687         * metadata-verify.c: Verify the eventmap table.
5688
5689 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5690
5691         * metadata-verify.c: Verify the standalonesig table.
5692
5693 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5694
5695         * metadata-verify.c: Verify the field layout table.
5696
5697 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5698
5699         * class.c (mono_type_get_name_recurse): Don't crash
5700         for ownerless generic params.
5701
5702         * debug-helpers.c (mono_type_get_desc): Correct the format
5703         for ownerless generic params.
5704
5705 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5706
5707         * metadata-verify.c: Verify the class layout table.
5708
5709 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5710
5711         * metadata-verify.c: Verify the decl security table.
5712
5713 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5714
5715         * domain.c (mono_domain_set_internal_with_options): Don't do
5716         anything if the old domain is the same as the old one.  Fixes
5717         #499326.
5718
5719 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5720
5721         * appdomain.c: Deregister the reflection_info roots when unloading
5722         a domain.
5723
5724         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
5725         memory allocated by a domain and frees its disappearing links.
5726
5727         * boehm-gc.c, null-gc.c: Empty implementation of
5728         mono_gc_clear_domain().
5729
5730 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5731
5732         * appdomain.c (clear_cached_vtable): Free the static fields memory
5733         block.
5734
5735 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5736
5737         * gc.c: Set the correct domain when invoking finalizers.
5738
5739         * appdomain.c: Set the correct domain when creating threads.
5740
5741 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5742
5743         * sgen-gc.c: Fix skip size for vectors.
5744
5745 2009-05-03  Martin Baulig  <martin@ximian.com>
5746
5747         * mono-debug-debugger.c
5748         (mono_debugger_check_breakpoints): Check class init handlers even
5749         if we don't have any method load handers.
5750
5751 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
5752
5753         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
5754         returning refonly assemblies if refonly is FALSE. Fixes #499013.
5755
5756 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5757
5758         * metadata-verify.c: Verify the field marshal table.
5759
5760 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5761
5762         * metadata-verify.c: Verify the custom attribute table.
5763
5764 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5765
5766         * metadata-verify.c: Verify the constant table.
5767
5768 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5769
5770         * metadata-verify.c: Verify the memberef table.
5771
5772 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5773
5774         * metadata-verify.c (get_coded_index_token): Remove
5775         dead argument.
5776
5777 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5778
5779         * metadata-verify.c: Verify the interfaceimpl table.
5780
5781 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5782
5783         * verify.c: Improve error message.
5784
5785         * debug-helpers.c (mono_type_get_desc): Harden the code that
5786         deals with VAR and MVAR.
5787
5788 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
5789
5790         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
5791         part of #498692.
5792
5793 2009-04-23 Tom Hindle <tom_hindle@sil.org>
5794
5795         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
5796         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
5797
5798 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
5799
5800         * security-core-clr.c: Avoid redundant checks for platform code, 
5801         e.g. check for method and for class (very common) and check
5802         for class and outer class (less common)...
5803
5804 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
5805
5806         * reflection.c: Avoid returning random cattrs for synthetic methods.
5807         Fixes #498545.
5808
5809 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5810
5811         * assembly.c: assemblies in the GAC should never be shadow-copied.
5812
5813 2009-04-26  Mark Probst  <mark.probst@gmail.com>
5814
5815         * domain.c, domain-internals.h: Disable
5816         track_resurrection_{objects,handles}_hash in MonoDomain if using
5817         SGen.
5818
5819 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5820
5821         * metadata-verify.c: Verify the param table.
5822
5823 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5824
5825         * metadata-verify.c (verify_typedef_table): Range check FieldList and
5826         MethodList.
5827
5828         * metadata-verify.c (verify_method_table): Proper check the ParamList
5829         field.
5830
5831 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5832
5833         * metadata-verify.c (verify_method_table): Check for runtime
5834         implemented functions such as delegate .ctors. Remove spurious
5835         printf.
5836         
5837 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5838
5839         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
5840
5841 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5842
5843         Don't allocate MonoGenericInfo for ownerless generic params.
5844         * class-internals.h (MonoGenericParam::info): Move field to ...
5845         (MonoGenericParamFull): ... this.  New struct.
5846         (MonoGenericContainer::type_params): Change type to
5847         MonoGenericParamFull.
5848         (MonoGenericParam, MonoGenericContainer): Update accessors.
5849         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
5850         'info' field for ownerless generic param.
5851         (mono_metadata_load_generic_params): Update to changes.
5852         * reflection.c (mono_reflection_create_generic_class): Likewise.
5853         (reflection_methodbuilder_to_mono_method): Likewise.
5854         (mono_reflection_initialize_generic_parameter): Likewise.
5855
5856 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5857
5858         Don't use MonoGenericParamInfo for ownerless generic params.
5859         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
5860         use ParamInfo class at all.
5861         (mono_class_from_generic_parameter): Use them.
5862         (make_generic_param_class): Fix a couple of instances where 'pinfo
5863         == NULL' wasn't handle.
5864
5865 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5866
5867         * class.c (make_generic_param_class): Carve out of ...
5868         (mono_class_from_generic_parameter): ... here.
5869
5870 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5871
5872         Simplify mono_class_from_generic_parameter
5873         * class-internals.h (MonoGenericParamInfo::token): New field.
5874         * metadata.c (mono_metadata_load_generic_params): Initialize it
5875         from metadata.
5876         * class.c (mono_class_from_generic_parameter): Use it instead of
5877         searching through metadata.
5878
5879 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5880
5881         * metadata-verify.c: Add verification of the method table.
5882
5883 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5884
5885         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
5886         Delegate::Invoke optimization.
5887
5888 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5889
5890         * appdomain.c (mono_domain_create_appdomain_internal): Free the
5891         string returned by get_shadow_assembly_location_base.
5892
5893         * appdomain.c (get_shadow_assembly_location_base): Add a comment
5894         about caller's ownership.
5895
5896 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5897
5898         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
5899         reflection memory on domain unload.
5900
5901         * domain.c (mono_domain_free): Don't free refobject_hash, let the
5902         reflection cleanup code do it.
5903
5904         * domain-internals.h: Add mono_reflection_cleanup_domain.
5905
5906         This fixes a memory leak for managed mirrors of reflection objects
5907         on domain unload. 
5908
5909 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5910
5911         * metadata-verify.c: Implement more verification of the field table.
5912
5913 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5914
5915         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
5916         doesn't try to parse the input assembly, which can be broken.
5917
5918 2009-04-23  Mark Probst  <mark.probst@gmail.com>
5919
5920         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
5921         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
5922         by using the lowest bit in the link to store whether the link is
5923         tracked.  Move the track_resurrection hashes into boehm-gc.c.
5924
5925 2009-04-22  Miguel de Icaza  <miguel@novell.com>
5926
5927         * Makefile.am: Split the console support in platform specific code
5928         and put together a framework for making this easy in the future so
5929         that we can start splitting code instead of having a mess of PLATFORM_WIN32
5930
5931 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5932
5933         * pedump.c: Fix a warning.
5934
5935 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5936
5937         * verify.c (mono_delegate_type_equal): Compare valuetypes using
5938         mono_class_from_mono_type to avoid bad interactions with the dual representation
5939         of the generic type definition.
5940
5941 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5942
5943         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
5944         get the MonoClass for the call context type as it might be a generic
5945         instance.
5946
5947         Fixes #491483.
5948
5949 2009-04-21  Mark Probst  <mark.probst@gmail.com>
5950
5951         * object-internals.h: The Thread object has no execution_context
5952         member anymore.
5953
5954         * threads.c, threadpool.c, threads-types.h: Accessor functions for
5955         the execution context.
5956
5957         * appdomain.c: Bump corlib version.
5958
5959 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5960
5961         * verify.c (do_newobj): Improve error message.
5962
5963 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5964
5965         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
5966         is nested in the filter block.
5967
5968         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
5969         block is not fully nested.
5970
5971         Fixes #495656.
5972
5973 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5974
5975         * verify.c (verify_type_compatibility_full): Compare MonoClass and
5976         not MonoType to check for equality of valuetypes as the generic type
5977         definition allows for two different encodings: the generic type definition
5978         class or a generic instance over the GTD arguments.
5979
5980         Fixes #496175.
5981
5982 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5983
5984         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
5985
5986         * verify.c (do_initobj): Improve error message.
5987
5988 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5989
5990         * metadata-verify.c: Enable pe verification as the issue with #496453
5991         is that the authenticode data directory have a different unspecified
5992         format. Ignore it for now.
5993
5994         * pedump.c: Run the metadata verifier together with the IL verifier.
5995
5996         Fixes ##496453.
5997
5998 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5999
6000         * metadata-verify.c: Temporarily disable pe verification due to #496453.
6001
6002 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6003
6004         * class.c (can_access_type): Check visibility against
6005         the element type for pointers and arrays.
6006
6007         Fixes #496150.
6008
6009 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6010
6011         * metadata-verify.c: Fix cli and table verification to use information
6012         from the MonoImage. A lot of duplicated code got killed.
6013
6014 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6015
6016
6017         This patch starts to integrate the metadata verifier with the runtime code.
6018
6019         This patch causes major regression in functionality for the metadata verifier
6020         as cli and table verification are disabled since they require to be ported to
6021         use MonoImage information.
6022
6023         * image.c (do_mono_image_load): Split the code in this function
6024         into mono_image_load_pe_data and mono_image_load_cli_data.
6025         Add     care_about_pecoff parameter to not load pecoff data.
6026         Call into the metadata verifier for pecoff and cli verification.
6027
6028         * image.c (mono_image_open_raw): New function that doesn't perform
6029         any parsing of the image contents.
6030         
6031         The reason for the 3 new functions is to give pedump better control
6032         into the interaction with the verifier.
6033
6034         * metadata-internals.h: Add new functions from image.c as part of the
6035         internal mono API.
6036
6037         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
6038         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
6039         to make those functions work together with the runtime.
6040
6041         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
6042         true if the image needs to be verified.
6043
6044         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
6045
6046         * pedump.c: Use new metadata verifier API.
6047
6048 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
6049
6050         * object.c (mono_install_vtable_trampoline): Make this receive a
6051         trampoline creation function instead of trampoline, allowing the JIT
6052         to use a different trampoline for each vtable.
6053
6054 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6055
6056         * object.c (mono_raise_exception): Don't reset the thread abort
6057         exception state here.
6058
6059 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6060
6061         * icall-def.h: New icall for getting the thread abort exception
6062         state for a thread.
6063
6064         * object.c, thread.c, object-internals.h: A thread's abort
6065         exception state is now a GC handle.  To get the object it stands
6066         for, we must move it into the current app domain, if it's
6067         different than the one where it originated from.
6068
6069         * appdomain.c: Bump corlib version.
6070
6071         * domain.c, domain-internals.h: New function for setting the
6072         domain and migrate the thread abort exception or not.
6073
6074 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6075
6076         * metadata-verify.c: Add initial verification of the
6077         field table.
6078
6079 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6080
6081         * metadata-verify.c: Add a macro to conditionally enable
6082         dumping of verification information. Add  make_coded_token
6083         and search_sorted_table to enable search sorted tables
6084         by a given coded token.
6085
6086 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6087
6088         * metadata-verify.c: Add array mapping from table index
6089         to description offset. Add get_col_offset and get_col_size
6090         functions.
6091
6092 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6093
6094         * metadata-verify.c: Add remaining table descriptions offsets.
6095         Add remaining coded index descriptions.
6096
6097 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6098
6099         * metadata-verify.c: Fixed constant table description.
6100         Fixed calculation of HasCustomAttribute coded index size.
6101         Fixed calculation of size for many table indexes. 
6102
6103 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6104
6105         * pedump.c (dump_metadata): Dump table offset instead
6106         of useless pointer in memory.
6107
6108 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6109
6110         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6111
6112 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6113
6114         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6115         a missing of for interface types.
6116
6117 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6118
6119         * metadata-verify.c (verify_pe_optional_header): Add comment of why
6120         the code is commented.
6121
6122         * metadata-verify.c (verify_resources_table): Remove spurious printf
6123         and don't fail if there are unmanaged resources. Gmcs generates a useless
6124         one     for all assemblies - I bet it's some MS compatibility junk.
6125
6126 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6127
6128         * metadata-verify.c (verify_typedef_table): Verify the extends field.
6129
6130         * metadata-verify.c (mono_image_verify): Add a is_corlib.
6131
6132         * verify-internals.h: Same.
6133
6134         * pedump.c: Fix for mono_image_verify new signature.
6135
6136 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6137
6138         * metadata-verify.c (verify_typedef_table): Verify for some invalid
6139         flags combinations.
6140
6141 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6142
6143         * metadata-verify.c (verify_module_table): Ignore the generation field.
6144
6145 2009-04-15  Martin Baulig  <martin@ximian.com>
6146
6147         * debug-mono-symfile.c
6148         (mono_debug_symfile_lookup_location): Don't print a warning for
6149         unknown extended opcodes if they're within 0x40 and 0x7f.
6150
6151 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
6152
6153         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6154         invoke signatures returning an enum. Fixes #494847.
6155
6156 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6157
6158         * metadata-verify.c: Initial code to verify the typedef table.
6159
6160 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6161
6162         * verify.c (mono_method_verify): Don't fail if an unconditional branch
6163         with non empty stack happens before the beginning of a try block.
6164
6165         Fixes #494812.
6166
6167 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6168
6169         * metadata-verify.c: Verify typename and typenamespace fields of
6170         the typeref table.
6171
6172 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6173
6174         * metadata-verify.c: Initial code to verify the typeref table.
6175
6176 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6177
6178         * verify.c (verify_delegate_compatibility): Fix error message.
6179
6180 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6181
6182         * security-core-clr.c: Fix typo
6183
6184 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6185
6186         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
6187         a MonoGHashTable to keep its values alive.
6188         (emit_marshal_boolean): Fix a warning.
6189
6190 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6191
6192         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
6193         not have any interface configured for IPv4/IPv6.
6194
6195 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6196
6197         * assembly.c: fix typo in error message.
6198
6199 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6200
6201         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
6202         allocating the location holding the this argument to prevent
6203         'too many root sets' errors.
6204
6205         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
6206         to mark fields as special static.
6207         (mono_field_static_get_value): Handle special static fields.
6208         (mono_field_static_set_value): Ditto.
6209
6210         * class-internals.h (struct _MonoClassField): Document this.
6211
6212 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6213
6214         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
6215           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
6216           case.  This will handle when managed code returns null to native code.
6217
6218         Code is contributed under MIT/X11 license.
6219
6220 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6221
6222         * object.c (build_imt_slots): Changing a free to a g_free to match
6223           the g_malloc0 in add_imt_builder_entry that allocated this memory.
6224
6225         Code is contributed under MIT/X11 license.
6226
6227 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6228
6229         * marshal.c (emit_marshal_boolean): Adding code to ensure that
6230           the correct TRUE value is passed through the marshaling layer.
6231
6232         Code is contributed under MIT/X11 license.
6233
6234 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
6235
6236         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
6237         correctly. Fixes #492330.
6238         
6239         * marshal.c: Fix the embedding of object pointers into JITted code in
6240         the native-to-managed wrappers by allocating some GC tracked memory, and
6241         embedding the address of that.
6242
6243 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
6244
6245         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
6246         pointers into the vtable.
6247
6248 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6249
6250         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
6251
6252         * verify.c (verify_ldftn_delegate): Improve error message.
6253
6254 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6255
6256         * reflection.c (my_mono_class_from_mono_type): Remove.
6257
6258 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6259
6260         Prepare to reduce memory usage of owner-less generic parameters (1/n)
6261         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
6262         and constraints fields into ...
6263         (MonoGenericParamInfo): ... this.
6264         (mono_generic_param_info, mono_generic_container_get_param_info):
6265         New accessors.
6266         * class.c, debug-helpers.c, icall.c: Update to changes.
6267         * metadata.c, reflection.c, verify.c: Likewise.
6268
6269 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
6270
6271         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
6272
6273         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
6274         
6275         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
6276         booleans with sbytes.
6277
6278 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6279
6280         * class.c (can_access_instantiation): Verify accesibility of element types
6281         for arrays and pointers.
6282
6283         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
6284
6285         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
6286
6287         Fixes #493068.
6288
6289 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6290
6291         * verify.c (do_invoke_method): Improve error messages.
6292
6293 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
6294
6295         * verify.c:  Fixing the MSVC build.
6296
6297         Code is contributed under MIT/X11 license.
6298
6299 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
6300
6301         * security-core-clr.c: Simplify get_reflection_caller not to call
6302         mono_method_get_last_managed (another stack walk) and adjust the
6303         callers to handle a (should not happen) NULL return value.
6304
6305 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6306
6307         Add accessors to some MonoGenericParam fields
6308         * class-internals.h (mono_generic_param_owner): New accessor.
6309         (mono_generic_param_num): Likewise.
6310         (mono_type_get_generic_param_owner): New helper.
6311         (mono_type_get_generic_param_num): New helper.
6312         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
6313
6314 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6315
6316         * class-internals.h (mono_generic_container_get_param): New wrapper.
6317         * class.c, icall.c, metadata.c, verify.c: Use it.
6318
6319 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6320
6321         Fix gtest-252.cs
6322         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6323         the standard case/loop.  In particular, don't complain about
6324         references to generic type definitions.
6325
6326 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
6327
6328         * debug-helpers.c (dis_one): Decode string arguments.
6329
6330 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6331
6332         * pedump.c (dump_verify_info): Dump type name correctly.
6333
6334 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6335
6336         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6337         are larger than code size.
6338
6339         This can happen in valid code if the try/catch block is not followed by any instruction
6340         and do a backward branch on the leave instruction.
6341
6342         Fixes #492494.
6343
6344 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
6345
6346         * security-core-clr.c: Fix typo while comparing second method names
6347         in can_avoid_corlib_reflection_delegate_optimization
6348
6349 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6350
6351         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6352
6353         Fixes #487738.
6354
6355 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6356
6357         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6358         a MVAR using a class context.
6359
6360         Fixes #490335.
6361
6362 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
6363
6364         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6365
6366         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6367
6368         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6369         functions supplied by the JIT for the SGEN GC.
6370
6371         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6372         
6373 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6374
6375         monitor.c (mono_monitor_try_enter_internal):
6376         Added calls to profile monitor contentions.
6377         Also duplicated a small piece of code (the "get the monitor" logic)
6378         from the fast path to the slow path, and changed the relevant goto
6379         statements, so that monitor acquisition events can be emitted from the
6380         slow path (this is by Paolo Molaro).
6381
6382 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6383
6384         * profiler.c, profiler.h, profiler-private.h:
6385         Added support for profiling monitor contentions.
6386
6387 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6388
6389         * metadata-verify.c: Verify the modules table.
6390
6391 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6392
6393         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6394         using the context of the method been verifier and not of the method been called.
6395
6396         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6397         safely inflate generic types. 
6398
6399 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6400
6401         * security-core-clr.c: Change the strategy for checking the 
6402         "reflection using delegates optimization" to avoid unneeded 
6403         attributes in multiple class libraries.
6404
6405 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6406
6407         * sgen-gc.c: Remove object element in the disappearing link struct
6408         by storing the object pointer in the link.
6409
6410 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6411
6412         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6413
6414 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6415
6416         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6417
6418         * verify.c (mono_method_verify): Do proper bounds checking of exception
6419         clause ranges.
6420
6421 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6422
6423         * loader.c (mono_field_from_token): Don't crash if the field parent could
6424         not be decoded.
6425
6426 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6427
6428         * sgen-gc.c: Execute critical finalizers after ordinary
6429         finalizers.
6430
6431         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6432         mono_defaults.
6433
6434 2009-03-31 Jb Evain <jbevain@novell.com>
6435
6436         * verify.c (do_ldstr): don't check if a string is in the user strings
6437         heap if the current image is dynamic.
6438
6439 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6440
6441         * sgen-gc.c: Wait until the last finalizer has executed when
6442         returning from WaitForPendingFinalizers.
6443
6444 2009-03-31  Martin Baulig  <martin@ximian.com>
6445
6446         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6447         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6448         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6449         (mono_debugger_event_create_appdomain): New function.
6450         (mono_debugger_event_unload_appdomain): New function.
6451
6452         * appdomain.c (mono_domain_create_appdomain_internal): Call
6453         mono_debugger_event_create_appdomain().
6454
6455 2009-03-31  Martin Baulig  <martin@ximian.com>
6456
6457         * mono-debug-debugger.c
6458         (mono_debugger_register_class_init_callback): Also register the
6459         class init callback if the class is already initialized to make
6460         things work with shadow copied assemblies.
6461
6462 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6463
6464         * security-core-clr.c
6465         (mono_security_core_clr_ensure_reflection_access_field): Let 
6466         critical code access the field (just like we do for methods). Use
6467         check_field_access helper.
6468         (mono_security_core_clr_ensure_reflection_access_method): Use 
6469         check_field_access helper.
6470
6471 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6472
6473         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6474         call the run-finalize function directly.
6475
6476         * gc.c, gc-internal.h: Make run_finalize() non-static.
6477
6478 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6479
6480         * sgen-gc.c: Use a separate struct for disappearing links.
6481
6482 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6483
6484         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6485         * MaxIOVectorLength enabled, just ignore them.
6486         Fixes bug #349688.
6487
6488 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6489
6490         * metadata-verify.c: Fix eglib build.
6491
6492 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6493
6494         * threads-types.h: Fix the win32 build.
6495
6496 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6497
6498         * class.c: move coreclr inheritance/override checks to 
6499         security-core.clr.c
6500         * security-core.clr.c|h: add code from class.c with additional
6501         documentation. Fix override check when the method is not critical.
6502
6503 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6504
6505         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6506         (match_class): Ditto.
6507
6508 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6509
6510         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6511
6512         * metadata-verify.c: Implement table layout row size calculation. Verify
6513         the total size of the tables.
6514
6515 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6516
6517         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6518
6519 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6520
6521         * appdomain.c:
6522         * console-io.[ch]: added new mono_console_init() to make sure that
6523         file descriptors 0, 1 and 2 are opened.
6524         Bug #489019 fixed.
6525
6526 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6527
6528         * appdomain.h: Export a new callback type and a new function to
6529         set this callback. This allow a mono host to provide it's own
6530         definition for "platform code".
6531         * metadata-internals.h: Add a core_clr_platform_code flag on 
6532         _MonoImage to (cache and) know if it is representing platform 
6533         code.
6534         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6535         on platform code images.
6536         * security-core-clr.c|h 
6537         (mono_security_set_core_clr_platform_callback): Allow the host
6538         to provide it's own platform check definition.
6539         (mono_security_core_clr_determine_platform_image): Detect if an 
6540         image is platform code (using the specified callback).
6541         (mono_security_core_clr_is_platform_image): Return cached value 
6542         for platform code.
6543
6544 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6545
6546         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6547         which has different parameter types for the 'tid' argument in windows and
6548         the io-layer.
6549
6550         * appdomain.c attach.c threads.c: Use the new helper.
6551
6552 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6553
6554         * metadata-verify.c: Verify valid table bits.
6555
6556 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6557
6558         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6559
6560         * metadata-verify.c: Add initial table schema verification.
6561
6562 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6563
6564         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6565         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6566         #488383.
6567
6568         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6569
6570         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6571
6572 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6573
6574         * security-core-clr.c: Add/update documentation
6575
6576 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6577
6578         * marshal.c (emit_marshal_object): Generate code to throw an exception
6579         instead of throwing it. Fixes #488670.
6580
6581 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6582
6583         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6584         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6585         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6586         and add a call to mono_security_core_clr_ensure_delegate_creation
6587         to do the extra checks required by CoreCLR.
6588         * security-core-clr.c|h: Add function to check delegate creation,
6589         both in the binding and accessibility, under CoreCLR.
6590
6591 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
6592
6593         * reflection.c (mono_reflection_create_dynamic_method): when 
6594         coreclr is enabled make sure that every resolved object are
6595         checked (e.g. field and method access).
6596         * security-core-clr.c|h: Add function to check objects resolved
6597         when a dynamic method is created.
6598
6599 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6600
6601         * metadata-verify.c: Cache directory rva translations.
6602
6603         * metadata-verify.c: Add cli-header and streams verification.
6604
6605 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6606
6607         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
6608         the wrong offset (8 instead of 6).
6609
6610 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6611
6612         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
6613         methods, return the native function address itself. Fixes
6614         #487758.
6615
6616 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6617
6618         * console-io.c: some of the values for control characters might not be
6619         present.
6620
6621 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
6622
6623         * exception.c|h: Add helpers to create [Field|Method]AccessException
6624         * icall.c: Add required coreclr check calls for field reflection.
6625         Move the existing (method) check logic into security-core-clr.c
6626         * security-core-clr.c: Add functions to check if the access of a
6627         field or method is allowed when reflecting under coreclr. This is
6628         mostly done using a stack walk to find the "real" caller: i.e. the
6629         code that is calling the reflection
6630
6631 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
6632
6633         * gc-internal.h: Change location of gc_wrapper.h
6634
6635 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
6636
6637         * class.c: Simplification to coreclr checks for overrides that
6638         makes it easier to set breakpoints.
6639
6640 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
6641
6642         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
6643         mono_security_core_clr_method_level): Avoid potential 
6644         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
6645         user/application code) and make it easier to set breakpoints
6646
6647 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6648
6649         * metadata-verify.c: Reject cli header tables that mono don't handle.
6650
6651 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6652
6653         * pedump.c: Fix CLI header dumping.
6654
6655 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6656
6657         * metadata-verify.c: More CLI header verification.
6658
6659 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6660
6661         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
6662
6663 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6664
6665         * metadata-verify.c: Initial verification of the CLI header.
6666
6667 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6668
6669         * metadata-verify.c (verify_resources_table): Fix verification of zero
6670         sized resource section and id entries count.
6671
6672 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
6673
6674         * icall.c: Handle user types in many Type icalls. Fixes #486303.
6675
6676 2009-03-17  Jb Evain  <jbevain@novell.com>
6677
6678         * profiler.c: call mono_gc_base_init from mono_profiler_load.
6679
6680 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
6681
6682         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
6683         (mono_gc_make_descr_for_array): Ditto.
6684
6685 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6686
6687         * verify.c (mono_verifier_is_class_full_trust): Add support for
6688         CoreCLR security mode where trusted assemblies are defined as
6689         "platform code".
6690
6691 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6692
6693         * metadata-verify.c: Add minimal PECOFF resource verification.
6694
6695 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6696
6697         * metadata-verify.c: Be less restrictive with some coff fields.
6698
6699 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6700
6701         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
6702         params as boxed values on stack. Fixes #485706.
6703
6704 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6705
6706         * console-io.c: the termios values may vary in different flavors of unix.
6707
6708 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6709
6710         * console-io.[ch]: return the entire set of control characters when
6711         initializing the terminal.
6712         * appdomain.c: bump corlib version.
6713
6714 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
6715
6716         * mono-perfcounters.c: added support for in-process custom
6717         performance counters.
6718
6719 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6720
6721         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
6722
6723 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6724
6725         * metadata-verify.c: Verify the data pointed by the import table. 
6726
6727 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6728
6729         * metadata-verify.c (load_data_directories): Store data
6730         directory contents.
6731
6732         * metadata-verify.c: Verify the import table. 
6733
6734 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6735
6736         * metadata-verify.c: Verify data directories.
6737
6738 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6739
6740         * metadata-verify.c: Check section header flags.
6741
6742 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6743
6744         * appdomain.c: if the assembly name is a shadow-copied file, return
6745         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
6746         in mono_make_shadow_copy.
6747         * icall.c: if the assembly name is a shadow-copied file, replace it
6748         with the original assembly path.
6749
6750         Bug #484244 fixed. NUnit tests for corlib can be run without
6751         --noshadow now.
6752
6753 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
6754
6755         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
6756         entries when the table is reallocated.
6757
6758         * icall.c: Allocate the memory used by the mono_ptr_array macros using
6759         mono_gc_alloc_fixed () since it contains GC refs.
6760
6761 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
6762
6763         * reflection.c (ensure_complete_type): New helper function to call
6764         type resolve handlers for unfinished dynamic types.
6765         (resolve_object): Call it for MonoClassFields. Fixes #483852.
6766
6767 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
6768
6769         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
6770         #483247.
6771
6772 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
6773
6774         * appdomain.c (get_shadow_assembly_location): Fix memleak.
6775
6776 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
6777
6778         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
6779         between GCHandles of type WeakTrackResurrection and the objects they
6780         point to.
6781
6782         * gc.c: Partly implement the sematics of GCHandles of type 
6783         WeakTrackResurrection: these handles should only be cleared after the
6784         finalizer of the object they are pointing to has ran.
6785
6786 2009-03-06  Mark Probst  <mark.probst@gmail.com>
6787
6788         * icall.c: Partially revert r126631 because using the jump
6789         trampolines for generic shared methods makes it superfluous.
6790
6791 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
6792
6793         * threads.c (handle_store): Create the 'threads' hash table with the proper
6794         MONO_HASH_VALUE_GC type.
6795
6796 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
6797
6798         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
6799         FIRST_GC_TRACKED.
6800
6801         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
6802         and LAST_GC_TRACKED as a GC root.
6803
6804         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
6805
6806         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
6807         the static data even if it consists of 1 reference.
6808
6809         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
6810         if there is a GC descriptor.
6811
6812         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
6813         instead of through the GC since they contain no object references.
6814
6815 2009-03-05  Mark Probst  <mark.probst@gmail.com>
6816
6817         * generic-sharing.c (instantiate_other_info): Always return a jump
6818         trampoline for method code.
6819
6820 2009-03-05  Marek Habersack  <mhabersack@novell.com>
6821
6822         * culture-info-tables.h: generated to include the en-tt culture.
6823
6824 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6825
6826         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
6827         capture the thread context.
6828
6829         * object.c (mono_async_result_new): Cache the invoke wrappers to
6830         ExecutionContext::Capture.
6831
6832 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6833
6834         * marshal.h: Add a prototype for what mono_compile_method returns
6835         for invoke wrappers.
6836
6837         * gc.c: Use the new prototype declaration.
6838
6839 2009-03-04  Geoff Norton  <gnorton@novell.com>
6840
6841         * boehm-gc.c: Add some MONO_LOG tracing for the GC
6842         * gc-internal.h:
6843         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
6844
6845 2009-03-04  Martin Baulig  <martin@ximian.com>
6846
6847         * mono-debug.h
6848         (mono_debugger_runtime_invoke): Removed.
6849
6850         * mono-debug-debugger.c
6851         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
6852
6853 2009-03-02  Martin Baulig  <martin@ximian.com>
6854
6855         * mono-debug.h
6856         (mono_debugger_unhandled_exception): Removed.
6857         (mono_debugger_handle_exception): Removed.
6858         (mono_debugger_throw_exception): Removed.
6859
6860         * mono-debug.c
6861         (mono_debug_debugger_version): Bump to 5.
6862
6863         * mono-debug-debugger.c: Moved the exception handling code to
6864         ../mini/debug-mini.c
6865
6866 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6867
6868         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
6869         finalize_objects_hash.
6870
6871         * gc.c: Use the separate lock to access the finalize_objects_hash field.
6872         
6873         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
6874         field.
6875
6876         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
6877         cache.
6878
6879         * image.c (mono_image_close): Free it.
6880         
6881         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
6882         allowing a creation of a wrapper which invokes its method using a CALLVIRT
6883         on the this argument.
6884
6885         * gc.c (run_finalize): Optimize the calling of the finalizers.
6886
6887 2009-03-03  Martin Baulig  <martin@ximian.com>
6888
6889         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
6890         of the `MonoGenericInst' changes.
6891
6892 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6893
6894         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
6895         mono_array_class_get_cached to reduce locking contention. Extract
6896         a domain var.
6897
6898         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
6899         intermediary managed arrays. Use caching version of mono_array_new
6900         to allocate the result array.
6901
6902         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
6903
6904         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
6905
6906         * locales.c (create_names_array_idx):  Use mono_array_new_cached
6907         to reduce locking contention.
6908
6909 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6910                 
6911         * object.c (mono_method_add_generic_virtual_invocation): Put back the
6912         thunk builder code for the non-interface case.
6913
6914 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
6915
6916         * object.c (get_generic_virtual_entries): New helper function to collect
6917         the virtual generic method instances which need to be added to an IMT
6918         thunk.
6919         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
6920         Instead of creating a new IMT thunk, reset the vtable slot to the
6921         trampoline, the thunk will be created the next time the trampoline is called.
6922         (build_imt_slots): Add support for virtual generic methods in interfaces by
6923         adding to the IMT thunk all the methods registered using 
6924         mono_method_add_generic_virtual_invocation ().
6925
6926         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
6927         (struct _MonoIMTCheckItem): Ditto.
6928
6929         * object.c (mono_method_add_generic_virtual_invocation): Take a
6930         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
6931         the IMT thunk to include all items.
6932         
6933         * object.c (mono_class_create_runtime_vtable): Add a missing
6934         mono_loader_unlock ().
6935
6936 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6937
6938         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6939
6940         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
6941
6942 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6943
6944         * object-internals.h: Rename _MonoReflectionEvent to
6945         MonoReflectionMonoEvent so it reflects the right managed type.
6946         Add a MonoReflectionEvent that correctly represents System.EventInfo.
6947
6948         * icall.c:
6949         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
6950         type.
6951
6952 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6953
6954         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
6955         intermediary managed arrays. Use caching version of mono_array_new
6956         to allocate the result array.
6957
6958 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6959
6960         * reflection.c: Use cached version of mono_array_new alongside
6961         the mono_reflection_get_custom_attrs_by_type call path.
6962
6963 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6964
6965         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
6966         intermediary managed arrays. Use caching version of mono_array_new
6967         to allocate the result array.
6968
6969         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
6970
6971 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6972
6973         * icall.c: Add small implementation of a growable stack bound array.
6974
6975         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
6976
6977         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
6978         intermediary managed arrays. Use caching version of mono_array_new
6979         to allocate the result array.
6980
6981 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
6982
6983         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
6984         helps Enum::CompareTo to be implemented without reboxing all enums
6985         to their underlying type.
6986 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
6987
6988         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
6989         since it acquires a global lock leading to scalability problems.
6990
6991         * profiler.c: Make the stat profiler work with multiple appdomains, this
6992         currently only works when no appdomains are unloaded.
6993
6994 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6995
6996         * appdomain.c: make the check to avoid copying when the assembly is
6997         already shadow copied actually work.
6998
6999 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
7000
7001         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7002
7003         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
7004         changes to the managed side.
7005
7006 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
7007
7008         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
7009         classes + a separate lock for it, as it is used frequently at runtime, not
7010         just during metadata loading/JIT compilation.
7011
7012         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
7013         for szarrays.
7014         
7015         * object-internals.h (mono_class_from_name_cached): New macro to cache
7016         the results of the lookup locally without having to declare a static
7017         variable to hold it.
7018         (mono_class_get_field_from_name_cached): Ditto.
7019         (mono_array_class_get_cached): Ditto.
7020
7021         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
7022         the new macros.
7023         
7024         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
7025         slower search in metadata.
7026
7027         * pedump.c: Fix a warning.
7028
7029 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
7030
7031         * reflection.c (encode_locals): Add checks for user types.
7032         (method_encode_clauses): Ditto.
7033         (method_encode_code): Ditto.
7034         (mono_image_create_token): Ditto.
7035
7036         * object-internals.h: Change the type of more fields from MonoReflectionType*
7037         to MonoObject*.
7038
7039 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
7040
7041         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
7042         the a thread does not suspend within 100ms.
7043
7044         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
7045         in addition to StopRequested as well.
7046
7047         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
7048
7049         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
7050         search the method_hash before inserting a new entry, to avoid crashes when
7051         the same method is inserted multiple times, causing the old 
7052         MonoDebugMethodInfo structure to be freed by the value dtor function.
7053
7054 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7055
7056         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
7057         SO_EXLUSIVEADDRUSE where available.
7058
7059 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
7060
7061         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
7062         runtime invoke wrappers, this time it is string ctor wrappers, which
7063         pass a dummy string as 'this' instead of their obj argument. Fixes
7064         #478473.
7065
7066 2009-02-21  Jb Evain  <jbevain@novell.com>
7067
7068         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7069         only get create_culture once.
7070
7071 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
7072
7073         * reflection.c (mono_reflection_setup_internal_class): Move the user type
7074         check before the locking.
7075         
7076         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
7077         (mono_reflection_create_runtime_class): Ditto.
7078         (mono_reflection_sighelper_get_signature_local): Ditto.
7079         (mono_reflection_sighelper_get_signature_field): Ditto.
7080
7081         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7082         is a System.MonoType object or similar.
7083         (monotype_cast): New helper function to cast a MonoObject to a 
7084         MonoReflectionType object.
7085
7086         * object-internals.h: Change MonoReflectionType* members in structures to
7087         MonoObject* members to force the usage of the monotype_cast () function.
7088
7089         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7090         structures/arrays. This causes us to assert instead of crashing when 
7091         instances of user defined subclasses of System.Type are encountered.
7092
7093 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7094
7095         * cil-coff.h:
7096         * icall-def.h:
7097         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7098         win32 resource loaded from a PE file.
7099
7100         * image.c: fix mono_image_lookup_resource.
7101
7102 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7103
7104         * icall-def.h:
7105         * threads-types.h:
7106         * threads.c: added internal call for WaitHandle.SignalAndWait.
7107
7108 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
7109
7110         * cominterop.c : Adding cominterop_type_from_handle and 
7111           registering it as an icall.  Replacing all references
7112           to type_from_handle.
7113
7114         Code is contributed under MIT/X11 license.
7115
7116 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7117
7118         * Makefile.am: Add lock-tracer.h and lock-trace.c.
7119
7120         * appdomain.c: Call the tracer init function.
7121
7122         * domain-internals.h: Enable the tracer for the domain locks.
7123
7124         * image.c: Enable the tracer for image locks.
7125
7126         * loader.c: Enable the trace for the loader lock.
7127
7128         * lock-tracer.h:
7129         * lock-tracer.c: Initial implementation of the lock trace utility.
7130         The tracer requires a compile time define to be enabled and a env var
7131         to be enabled at runtime.
7132
7133 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7134
7135         * domain.c (mono_domain_code_foreach): Improve documentation.
7136
7137 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7138
7139         * appdomain.c:
7140         * generic-sharing.c:
7141         * object.c:
7142         * reflection.c:  Adjust locking order to the new semantics where the loader lock
7143         comes first.
7144
7145 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7146
7147         * domain.c: Add mono_domain_code_* functions that perform locking
7148         around the domain codeman.
7149
7150         * domain-internals.h: Export those functions.
7151
7152         * object.c: Use new functions instead of acquiring the domain lock.
7153
7154 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
7155
7156         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7157         delegate. Fixes #477396.
7158
7159 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7160
7161         * reflection.c (create_custom_attr): Get rid of alloca.
7162
7163 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
7164
7165         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7166           Adding exception handling for all CCW calls.
7167
7168         Code is contributed under MIT/X11 license.
7169
7170 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7171
7172         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7173
7174         * marshal.c (emit_marshal_boolean): Add null checks to the new 
7175         native->managed marshalling code. Fixes #476247.
7176
7177 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7178
7179         * class.c (mono_class_get_vtable_entry): Move the addition of
7180         static rgctx invoke wrappers for vtable methods here, this simplifies
7181         a lot of code and causes fewer rgctx wrappers to be created.
7182
7183         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
7184         name of the statistics to begin with an uppercase.
7185
7186 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7187
7188         * reflection.c: Revert previous change as it breaks the build.
7189         
7190 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7191
7192         * verify.c: Properly handle SZARRAY element type.
7193
7194         Fixes #474271.
7195
7196 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7197
7198         * reflection.c (mono_image_create_method_token): Correctly encode
7199         MethodDef MemberRefParent token.
7200
7201         Fixes #472845.
7202
7203 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7204
7205         * image.c (mono_image_close): Delete the critical section before
7206         freeing the memory holding it.
7207
7208 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7209
7210         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
7211         Fixes #476257.
7212
7213 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7214
7215         * pedump.c (main): Call mono_marshal_init so pedump
7216         doesn't crash.
7217
7218 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7219
7220         * loader.c (method_from_memberref): Properly fix #474271 and
7221         don't break the runtime bad.
7222
7223 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7224
7225         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
7226         (mono_domain_alloc0): Ditto.
7227
7228 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7229
7230         * loader.c (method_from_memberref): Don't abort if the array
7231         method is not found. A regular loader failure is more informative
7232         and correct.
7233
7234         Fixes #474271.
7235
7236 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7237
7238         *loader.c: Guard MonoImage::method_cache/methodref_cache
7239         using the image lock instead of the loader lock.
7240
7241         * metadata.h: Add comments about which fields are protected by
7242         the image lock.
7243
7244 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7245
7246         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
7247
7248         * generic-sharing.c (mono_method_construct_object_context): Remove the
7249         wrapper_type == NONE assert, it is not needed.
7250
7251 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
7252
7253         * reflection.c (clear_cached_object): New helper function.
7254         (mono_method_clear_object): New function to clear the cached reflection
7255         objects for a dynamic method.
7256
7257         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
7258         Partly fixes # 463323.
7259         
7260 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7261
7262         * class.c:
7263         * loader.c:
7264         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
7265
7266 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7267
7268         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
7269         take the image lock instead of the loader lock.
7270
7271         * metadata-internals.h: Export new functions.
7272
7273 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7274
7275         * domain.c (app_config_parse): Remove another use of stat that is
7276         not necessary as g_file_get_contents already does the presence
7277         check. 
7278
7279 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7280
7281         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
7282
7283         * marshal.c: Move the bstr handling code to cominterop.c.
7284
7285         * marshal.c: Remove some COM interop code missed previously.
7286
7287 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7288
7289         More Paolo patches from the Wii port:
7290         
7291         * security.c: Remove ves_icall_System_Environment_get_UserName
7292         from here.
7293
7294         * icall.c: And put ves_icall_System_Environment_get_UserName
7295         here. 
7296
7297         * appdomain.c (mono_set_private_bin_path_from_config): Remove
7298         redundant call to stat that was only used to test for the file
7299         existence.   Patch from Paolo.
7300
7301         * gc.c (run_finalize): If COM is disabled, do not link in
7302         mono_marshal_free_ccw.
7303
7304         * generic-sharing.c: Use alloca.h here as well.
7305
7306 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
7307
7308         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
7309
7310 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7311
7312         * cominterop.c cominterop.h: New files.
7313
7314         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
7315         function/typedefs which are needed by cominterop.c global.
7316
7317 2009-02-12  Mark Probst  <mark.probst@gmail.com>
7318
7319         * generic-sharing.c: Don't take the loader lock to guard image
7320         mempool allocs.
7321
7322 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7323
7324         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7325         called without the loader lock which is required to guard MonoImage:tokens.
7326
7327 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7328
7329         * class.c:
7330         * metadata.c:
7331         * method-builder.c:
7332         * marshal.c:
7333         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7334
7335 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7336
7337         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7338         Rework the code to use regular mono_image_alloc/0.
7339
7340         * loader.c: Rework the code to use regular mono_image_alloc/0.
7341
7342         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7343
7344 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
7345
7346         * object-internals.h : Fixing a typo in the 
7347           MonoReflectionComVisibleAttribute struct.
7348
7349         * marshal.c (cominterop_com_visible): Check the implemented 
7350           interfaces for ComImport.
7351
7352         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
7353           assume that bools should be treated as VARIANTBOOLs.
7354
7355         * marshal.c (emit_marshal_boolean): Adding cases for 
7356           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7357
7358         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
7359           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7360
7361         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7362           should be treated as VARIANTBOOLs.    
7363
7364         Code is contributed under MIT/X11 license.
7365
7366 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7367
7368         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7369         allocation with the image lock.
7370
7371 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7372
7373         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7374         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7375
7376         * object.c: Add mono_string_to_utf8_image.
7377
7378         * object-internals.h: Export mono_string_to_utf8_image.
7379
7380         * reflection.c: Rework all explicit references to the the image mempool to go thought
7381         the mono_image_alloc set of functions.
7382
7383 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7384
7385         This patch is the third of a series to remove explicit reference of MonoImage::mempool
7386         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7387         and generics-sharing.c.
7388
7389         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7390         as first argument. Note that this function remains broken as it doesn't perform locking around the
7391         mempool allocation.
7392
7393         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7394
7395         * image.c: Add g_slist_append_image.
7396
7397         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7398         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7399
7400         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7401         Fix all related code to do the same.
7402
7403         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7404
7405         * metadata-internals.h: Fix the signatures.
7406
7407 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7408
7409         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7410         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7411         and similar to work using MonoImage.
7412
7413         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7414         MonoMemPool.
7415
7416         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7417
7418         * class.c (mono_metadata_signature_deep_dup): Same.
7419
7420         * class.c (inflate_generic_type): Same.
7421
7422         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7423
7424         * metadata.c (mono_metadata_signature_dup_full): Same.
7425
7426         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7427         mono_metadata_signature_dup_full.
7428
7429         * metadata.c (mono_metadata_type_dup): Same.
7430
7431         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7432
7433         * reflection.c: Same.
7434
7435         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7436
7437         * metadata-internals.h: Fix the signatures.
7438
7439         * class-internals.h: Same.
7440
7441 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7442
7443         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7444         and use mono_image_alloc set of functions instead. 
7445
7446         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7447         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7448         of a MonoMemPool.
7449
7450         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7451
7452         * class.c (g_list_prepend_mempool): Removed.
7453
7454         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7455
7456         * image.c: Add g_list_prepend_image.
7457
7458         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7459
7460         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7461
7462
7463 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7464
7465         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7466         mono_image_unlock.
7467
7468         * image.c (mono_image_init): Init the lock field.
7469  
7470         * image.c (mono_image_init): Cleanup the lock field.
7471
7472         * image.c: Add mono_image_(un)lock functions.
7473
7474 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7475
7476         * class.c, class-internals.h: mono_method_get_context_general()
7477         combines the functionality of mono_method_get_context() and
7478         mini_method_get_context().
7479
7480         * generic-sharing.c, domain-internals.h:
7481         mono_method_construct_object_context() and
7482         mono_domain_lookup_shared_generic() moved from mini.
7483
7484         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7485         method doesn't have the correct instantiation because it's shared
7486         generic code.  Fixes #473999.
7487
7488 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7489
7490         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7491
7492         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7493         
7494 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7495
7496         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7497
7498         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7499
7500         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7501         and recheck the cache for dups after it.
7502
7503         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7504
7505         Fixes one of the deadlocks found in #473150.
7506
7507 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7508
7509         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7510           For Win32, add additional break conditions for accept.
7511
7512         Code is contributed under MIT/X11 license.
7513
7514 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7515
7516         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7517         lazily initialize the native wrapper cache.
7518         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7519         cache, since they are different from the normal wrappers.
7520
7521         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7522
7523         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7524         AOT compiled native wrappers.
7525
7526 2009-02-09  Geoff Norton  <gnorton@novell.com>
7527
7528         * appdomain.h:
7529         * security-core-clr.c: Allow enabling core-clr from the embedding
7530         API.
7531
7532 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7533
7534         * socket-io.c: when requesting all the local ips, if there are no
7535         interfaces up and running, MS returns 127.0.0.1.
7536
7537 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7538
7539         * mono-perfcounters-def.h: processor time is an inverse time.
7540         Fixes bug #468625.
7541
7542 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7543
7544         * socket-io.c: an empty host name returns the list of local IPs.
7545         Fixes bug #386637 part 1/2.
7546
7547 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7548
7549         * verify.c (mono_class_interface_implements_interface): Call
7550         mono_class_setup_interfaces ().
7551         (merge_stacks): Ditto.
7552
7553 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7554
7555         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7556         klass->interfaces.
7557         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7558         (mono_generic_class_get_class): Ditto.
7559
7560 2009-02-06  U-QUACK\miguel  <miguel@quack>
7561
7562         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7563         they live in security.c
7564
7565         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7566         another bit from Paolo's code.
7567
7568 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7569
7570         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7571         methods which will be discarded by add_imt_builder_entry ().
7572
7573         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7574         need to be boxed.
7575
7576         * loader.c: Add a statistics for the size of the memberref signature cache.
7577         
7578         * loader.c (find_cached_memberref_sig): New helper function.
7579         (cache_memberref_sig): Ditto.
7580
7581         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7582         they will be parsed again for every generic instantiation, leading to unbounded
7583         memory growth.
7584
7585 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7586
7587         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7588         parameters of generic methods.
7589
7590         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7591         after the original method is copied to the inflated method.
7592         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7593
7594         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7595         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
7596
7597         * class.c metadata.c: Update after the changes above.
7598
7599 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7600
7601         * metadata-verify.c: Simplified error handling and added
7602         section table validation.
7603
7604 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7605
7606         * class-internals.h (MonoClassExt): New structure containing rarely used
7607         fields of MonoClass.
7608         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
7609         through a new 'ext' field.
7610
7611         * class.c (mono_class_alloc_ext): New helper function to allocate 
7612         class->ext.
7613
7614         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
7615
7616 2009-02-05  Mark Probst  <mark.probst@gmail.com>
7617
7618         * object.c (mono_object_get_virtual_method): Properly inflate
7619         generic methods.  Fixes #472692.
7620
7621 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7622
7623         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
7624         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
7625         for the parent type, the created type must be ready to be used on a generic
7626         instantiation.
7627         We fill this_arg/byval_arg if the parent is a generic instance to make sure
7628         we won't have duplicated entries in generic_inst_cache.
7629
7630         Fixes #469553.
7631
7632 2009-02-05  Miguel De Icaza  <miguel@novell.com>
7633
7634         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
7635         replace with plain BSD per the comments on the bug MONO77637.
7636
7637 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7638
7639         * class.c (mono_class_get_generic_class): New accessor function.
7640         (mono_class_get_generic_container): Ditto.
7641
7642         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
7643         fields, similar to the ones in MonoMethod.
7644
7645         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
7646         (mono_class_create_from_typedef): Set klass->is_generic if needed.
7647
7648         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
7649         
7650         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
7651         the same information as element_class->byval_arg.
7652
7653         * class.c reflection.c: Remove references to class->byval_arg.
7654
7655         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
7656         klass->enum_basetype directly.
7657
7658         * verify.c metadata.c object.c icall.c reflection.c: Use 
7659         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
7660         directly.
7661
7662 2009-02-04  Miguel de Icaza  <miguel@novell.com>
7663
7664         * icall-def.h: Remove internal calls for sockets when
7665         DISABLE_SOCKET is defined, file system writing features when the
7666         OS only support reading and not writing data and Policy support if
7667         the Policy is disabled.
7668         
7669         * image.c (do_mono_image_open): Apply Paolo's patches for using
7670         mono_file_map_ APIs here.
7671
7672         * assembly.c: Add support for platforms to avoid prefix
7673         auto-detection. 
7674
7675 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
7676
7677         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
7678         warning.
7679
7680         * class.c (mono_class_inflate_generic_class): New helper function.
7681
7682         * class.c: Use mono_class_inflate_generic_class in a few places. Add
7683         statistics for inflated methods/classes.
7684
7685         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
7686
7687         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
7688         the call is made from Delegate.CreateDelegate () for the invoke method of
7689         a delegate.
7690
7691         * loader.c: Add a statistics for the memory occupied by inflated signatures.
7692
7693         * metadata.c (mono_metadata_signature_size): New helper function.
7694
7695         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
7696         generic instances.
7697
7698         * metadata.c (inflated_method_in_image): Avoid calling 
7699         mono_method_signature () if the method does not already have a signature.
7700
7701 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7702
7703         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
7704         valuetype is compatible with target type, check by inheritance as a
7705         VT is not really compatible with System.ValueType, for example.
7706
7707         * verify.c (do_invoke_method): Improve error message.
7708
7709         * verify.c (do_box_value): If boxing a nullable, use the type argument
7710         on stack instead.
7711
7712         * verify.c (do_newobj): Improve error message.  
7713
7714         Fixes #469549.
7715
7716 2009-02-03  Miguel de Icaza  <miguel@novell.com>
7717
7718         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
7719
7720 2009-02-03  Mark Probst  <mark.probst@gmail.com>
7721
7722         * generic-sharing.c: Don't hold domain lock when calling
7723         instantiate_other_info().  Fixes #471958.
7724
7725         * domain-internals.h, loader.c: Describe locking policy of domain
7726         lock vs loader lock.
7727
7728 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7729
7730         * verify.c (mono_delegate_signature_equal): Make it possible to check
7731         first-arg-bound delegates to static method.
7732
7733         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
7734         static methods with the first arg bound.
7735
7736         Fixes #469529.
7737
7738 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7739
7740         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
7741         errors.
7742
7743         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
7744         under strict mode. Any type, when boxed can be seen as a reference type.
7745
7746         Fixes #469528.
7747
7748 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7749
7750         * object.h: The lower bound of an array is a signed integer value.
7751         Introduce mono_array_lower_bound_t typedef. It should be used instead of
7752         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
7753
7754         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
7755         calculate the upper bound.
7756         
7757         Fixes #471252.
7758
7759 2009-02-02  Miguel de Icaza  <miguel@novell.com>
7760
7761         From Paolo's work, refactored, cleared up:
7762         
7763         * threadpool.c, icall.c: ifdef code that requires a working socket
7764         stack.
7765
7766         * metadata.c (mono_metadata_field_info): Do not attempt to return
7767         a value from a function declared as void.
7768
7769         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
7770         from the console stack.
7771
7772         * assembly.c: use strrchr instead of rindex.
7773
7774         * class.c, object.c, marshal.c, icall.c, reflection.c: include
7775         alloca.h on systems that have it.
7776
7777         * environment.c: Avoid code that uses stuff from
7778         HAVE_SYS_UTSNAME_H
7779         
7780         * appdomain.c: Include sys/time.h.
7781
7782         * console-io.c: include sys/ioctl.h if it is available.
7783
7784 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
7785
7786         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
7787
7788         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
7789         the method builder.
7790
7791         * marshal.c: Set mb->skip_visibility instead of setting it on the method
7792         after it was created and cached, as the later is not thread safe.
7793         
7794 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7795
7796         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
7797         called while the debugging module is not initialized. Fixes #471669.
7798
7799 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
7800
7801         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
7802
7803         Fixes #471255.
7804
7805 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7806
7807         * generic-sharing.c (lookup_or_register_other_info): Make sure the
7808         loader lock is not taken while the templates lock is held.  Fixes
7809         #471089.
7810
7811 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7812
7813         * metadata.c (type_in_image): Added a check to fix a monodis
7814         crash.
7815
7816 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7817
7818         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
7819         nullable arguments.
7820
7821         * object.c (mono_runtime_invoke_array): Ditto.
7822         
7823         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
7824         freeing wrappers of dynamic methods.
7825
7826         * loader.c (mono_free_method): Call it. Fixes #463323.
7827         
7828         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
7829         methods taking vtype/byref arguments, to fix yet another bug caused by
7830         the sharing of runtime invoke wrappers. Partly fixes #471259.
7831
7832 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
7833
7834         * debug-mono-symfile.c (check_line): Return NULL instead of returning
7835         <first file in file table>:1 when the IL offset does not have an associated
7836         line number.
7837
7838 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
7839
7840         * mono-debug.c (mono_debug_lookup_locals): New function to return local
7841         variable info for a method.
7842
7843         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
7844         
7845 2009-01-30  Jb Evain  <jbevain@novell.com>
7846
7847         * pedump.c: reuse code from monodis to make sure pedump honors
7848         MONO_PATH, which is needed to verify net_2_1 assemblies.
7849
7850 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
7851
7852         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
7853         there is no line number info.
7854
7855 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
7856
7857         Avoid some MonoType allocations
7858         * reflection.c (mono_reflection_initialize_generic_parameter):
7859         Reuse MonoType from param->pklass rather than allocating one.
7860         (mono_dynamic_image_free): Update to changes.
7861
7862 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7863
7864         Rearrange some code to improve consistency
7865         * reflection.c (mono_reflection_setup_generic_class): Move body ...
7866         (mono_reflection_initialize_generic_parameter): ... here.
7867
7868 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
7869
7870         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
7871         with type constraints as an experiment.
7872
7873         * boehm-gc.c (on_gc_notification): Update mono_stats.
7874
7875 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7876
7877         Avoid some allocations
7878         * class-internals.h (_MonoGenericInst::type_argv): Convert from
7879         pointer to tail array to avoid extra allocation.
7880         * metadata.c (free_generic_inst): Update to changes.
7881         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
7882         on-stack struct.
7883
7884 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
7885
7886         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
7887         return TRUE if the two type objects are the same.
7888
7889 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7890
7891         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
7892         (mono_class_native_size): Use klass->marshal_info->min_align instead of
7893         klass->min_align, since klass->min_align contains the managed alignment,
7894         while the native alignment can be different, like for longs on x86.
7895         Fixes #469135.
7896
7897         * class-internals.h (MonoMarshalType): Add a min_align field.
7898
7899 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
7900
7901         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
7902         the 1.0 format.
7903
7904 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7905
7906         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
7907         some comments about the usage of the used_regs field.
7908
7909         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
7910         Fixes #469217.
7911
7912 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
7913
7914         * appdomain.c: return NULL instead of throwing FileNotFoundException
7915         when LoadAssembly() fails.
7916
7917 2009-01-23  Mark Probst  <mark.probst@gmail.com>
7918
7919         * metadata.c (mono_metadata_generic_param_equal): Only compare the
7920         image if the owner is NULL.  Fixes the AOT failures.
7921
7922 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
7923
7924         * metadata.c (mono_metadata_load_generic_params): Initialize the 
7925         MonoGenericParam structure using memset so the image field is initialized
7926         as well.
7927
7928 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7929
7930         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
7931         a plain store.
7932
7933 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
7934
7935         * class.c (mono_class_setup_vtable_general): In the generic instance
7936         optimization, set method->slot for abstract virtual methods. Fixes part of
7937         #467834.
7938
7939 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7940
7941         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
7942         which signals that the unloading has started but all appdomain services must
7943         remain operational.
7944
7945         * appdomain.c (mono_domain_unload): The initial state for unloading now
7946         is unloading_start and we switch to unloading after the managed call to
7947         AppDomain::DomainUnload has finished.
7948
7949         The new unloading state has to be created because managed code in the
7950         DomainUnload event can depend on things like the threadpool still working.
7951         The domain must remain fully functional while the event executes.
7952
7953         This shown as an issue due to Process::WaitForExit, which waits for
7954         async reads of stdout and stderr to complete. Since those are processed
7955         in the threadpool the code deadlocks because the DomainUnload callback 
7956         waits for the async read finished event, which should have been set by a
7957         threadpool job but has been discarded due to the domain been in unload
7958         state.
7959
7960 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7961
7962         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
7963         image must match.
7964
7965 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7966
7967         * reflection.c (resolve_object): For fields, inflate the class and
7968         then get the field in the inflated class.
7969
7970 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7971
7972         * object-internals.h (struct _MonoException): Added a comment
7973         explaining the new use of trace_ips.
7974
7975 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7976
7977         * generic-sharing.c (inflate_other_data): Inflate array methods
7978         correctly.
7979
7980         * loader.c, class-internals.h: Rename search_in_array_class() to
7981         mono_method_search_in_array_class() and make it non-static.
7982
7983 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7984
7985         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
7986         Hopefully fixes #458168.
7987
7988 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7989
7990         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
7991         as it is performed elsewhere.
7992
7993         Code is contributed under MIT/X11 license
7994
7995 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7996
7997         * mono-perfcounters-def.h: Add counters for asp.net requests total and
7998         requests queued.
7999         * object.c (mono_raise_exception): Increment the exceptions total
8000         counter when an exception is thrown.
8001         * class-internals.h: Add a location for storing the total number of
8002         asp.net requests served.
8003         * mono-perfcounters.c: Implement update support for asp.net counters
8004         from the class libraries. Implement read support for asp.net counters
8005         and exceptions total counter.
8006
8007 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8008
8009         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
8010         accessing klass->methods. Fixes #467385.
8011
8012 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8013
8014         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
8015         for byval arguments without an [Out] attribute. Fixes #467212.
8016
8017         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
8018         Fix compilation under android.
8019         
8020         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
8021         processed, scan them directly after they are copied, to achieve better locality
8022         and cache usage.
8023
8024         * socket-io.c: Applied patch from Koushik Dutta
8025         (koush@koushikdutta.com). Disable IPV6 when running under android.
8026
8027 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8028
8029         * icall.c (ves_icall_InternalExecute): Add write barriers.
8030
8031         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
8032         the GC code.
8033
8034         * sgen-gc.c: Implement write barriers in IL code.
8035
8036 2009-01-17  Geoff Norton  <gnorton@novell.com>
8037
8038         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
8039
8040 2009-01-17  Geoff Norton  <gnorton@novell.com>
8041
8042         * image.c: When unloading the image->references table, there can be gaps
8043         in it.  Ensure that we iterate every entry to avoid leaking assembly references
8044         when unloading an appdomain.
8045
8046 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
8047
8048         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
8049         speed up ptr-in-nursery checks.
8050
8051         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
8052         threads_lock () to prevent deadlocks.
8053
8054         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
8055         does not need to be scanned during minor collections, since writes to it
8056         must use write barriers.
8057
8058 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
8059
8060         * metadata-verify.c: Add pe nt header verification.
8061         
8062 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8063
8064         * gc.c: Fix a few warnings when using SGEN.
8065
8066 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
8067
8068         * metadata-verify.c: Add pe optional header verification.
8069
8070 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8071
8072         * sgen-gc.c: Add support for user defined marker functions, used by
8073         MonoGHashTable to avoid registering a GC root for every hash node.
8074
8075 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8076
8077         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8078         non-pinned roots into separate hashes to avoid having to traverse them
8079         in functions which are only interested in one kind.
8080
8081 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8082
8083         * metadata-verify.c: Add pe header machine field verification.
8084         
8085 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8086
8087         * metadata-verify.c: Add pe header size verification.
8088
8089 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8090
8091         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8092         using the GC, they don't contain references.
8093
8094         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8095
8096 2009-01-13  Geoff Norton  <gnorton@novell.com>
8097
8098         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
8099         AppDomains created on the native side can be cleaned up on the native side.
8100
8101 2009-01-13  Geoff Norton  <gnorton@novell.com>
8102
8103         * appdomain.c: Ensure that we call mono_context_init for the embedding api
8104         as well as the managed api.
8105
8106 2009-01-13  Geoff Norton  <gnorton@novell.com>
8107
8108         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8109         with a MonoAppDomain initialized against it.
8110
8111 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8112
8113         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8114         
8115         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8116
8117         * marshal.c: Avoid setting the exception clauses after a method has been entered 
8118         into the wrapper caches. Fixes #465700.
8119
8120         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8121         method builder.
8122         (mono_mb_create_method): Set the clauses from the method builder.
8123
8124 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8125
8126         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8127         Patch from Makoto Kishimoto.
8128
8129 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8130
8131         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
8132         encoding them as ROOT_DESC_COMPLEX.
8133         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8134
8135 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
8136
8137         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8138         no longer point to the nursery.
8139
8140         * sgen-gc.c: Add a few comments/FIXMEs.
8141         
8142         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8143
8144         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
8145         initialization of the various _method variables thread safe. Fixes
8146         #465377.
8147
8148 2009-01-12  Mark Probst  <mark.probst@gmail.com>
8149
8150         * domain.c, domain-internals.h: Remove the shared_generics_hash
8151         and its lookup functions.
8152
8153 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
8154
8155         * socket-io.c:  Fixing the MSVC build. 
8156
8157         Code is contributed under MIT/X11 license.
8158
8159 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
8160
8161         * metadata-verify.c: Add pe header watermark verification.
8162
8163 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8164
8165         * metadata-verify.c: Add lfanew verification.
8166
8167 2009-01-12  Jb Evain  <jbevain@novell.com>
8168
8169         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8170         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8171
8172 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
8173
8174         * socket-io.c: Fix the build.
8175
8176         * environment.c: Fix an #ifdef.
8177
8178 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8179
8180         * threadpool.c (async_invoke_thread): Handle the wait function returning
8181         WAIT_IO_COMPLETION as well.
8182         (async_invoke_io_thread): Ditto.
8183
8184 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
8185
8186         * threads.c: Fixing the Windows build.
8187
8188         Code is contributed under MIT/X11 license.
8189
8190 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8191  
8192         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
8193         interrupt a wait.
8194         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
8195         the thread to wait again.
8196
8197 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8198
8199         * metadata-verify.c: Initial skeleton of the metadata verifier.
8200
8201         * pedump.c: Add support for the metadata verifier.
8202
8203         * verify-internal.h: Export the whole assembly metadata verifier function.
8204
8205 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8206
8207         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
8208
8209 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8210
8211         * Makefile.am: Upgrade dtrace-prelink.sh location.
8212
8213 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8214
8215         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
8216         well. Otherwise the shutdown deadlock that happens on unix will can happen
8217         as well.
8218         If the main thread code finishes too fast it's possible that the finalizer
8219         thread won't have executed yet, won't record itself as the finalizer thread
8220         and the shutdown sequence will wait on it forever.
8221
8222 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8223
8224         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
8225         with MSVC.
8226
8227 2009-01-08  Miguel de Icaza  <miguel@novell.com>
8228
8229         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
8230         Robert Jordan for pointing this out.
8231
8232 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
8233
8234         * icall.c
8235         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
8236         ves_icall_System_IO_DriveInfo_GetDriveType.
8237
8238 2009-01-07  Miguel de Icaza  <miguel@novell.com>
8239
8240         * icall.c: Wrap calls to mono_strtod in CriticalSection
8241         invocations when using eglib, to work around #464316.
8242
8243 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8244
8245         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
8246         return value of GetCurrentDirectory to never access unitialized memory.
8247
8248 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8249
8250         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
8251         return value of GetCurrentDirectory and expand the buffer if needed.
8252
8253         Fixes #459094.
8254
8255 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
8256
8257         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
8258           Adding a call to mono_init_com_types.
8259
8260         Code is contributed under MIT/X11 license.
8261
8262 2009-01-07  Geoff Norton  <gnorton@novell.com>
8263
8264         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
8265         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
8266         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
8267         be the value of the ip buffer.
8268
8269 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8270
8271         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
8272         interfaces_packed here.
8273
8274         Fixes part of #463294.
8275
8276 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8277
8278         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
8279
8280         Fixes part of #463294.
8281
8282 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8283
8284         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
8285         is a boxed complex as well.
8286
8287         Fixes part of #463294.
8288
8289 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8290
8291         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
8292         control if a methodspec should be created for the generic method definition from external assemblies.
8293         Caching of methodspec is done using the handleref hash table.
8294
8295         Fixes #462592.
8296
8297 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
8298
8299         * loader.c (find_method): When searching the interfaces of a class
8300         check the transitive closure of implemented interfaces.
8301
8302         Fixes #463303.
8303
8304 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8305
8306         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
8307         
8308 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8309
8310         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
8311         interfaces calculation to fill_valuetype_array_derived_types.
8312
8313         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
8314         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
8315         for example.
8316
8317         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
8318         interfaces for valuetypes if needed.    
8319
8320         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8321         for their basetype as well. Types are array expanded if rank is > 0.
8322
8323         Fixes #400716.
8324
8325 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
8326
8327         * socket-io.h : Changing the signature of
8328           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8329           the blocking state.
8330
8331         * icall-def.h :  Changing the signature of
8332           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8333
8334         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8335           For Windows only.  Avoid blocking when calling accept by
8336           querying for a connection via select.  The loop also queries
8337           the thread state every 1000 micro seconds for the thread
8338           stop state.  This will avoid the process hanging on shutdown
8339           when using a TcpChannel that is never connected to.
8340
8341         Code is contributed under MIT/X11 license.
8342
8343 2008-12-30  Marek Safar  <marek.safar@gmail.com>
8344
8345         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8346
8347 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8348
8349         * class.c (get_implicit_generic_array_interfaces): Extract common
8350         code to a helper function making it a lot easier on the eyes.
8351
8352 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8353
8354         * class.c (get_implicit_generic_array_interfaces): If the internal
8355         enumerator is an interface inflate System.Object instead of itself.
8356
8357         Fixes #461261.
8358
8359 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
8360
8361         * object.c (mono_runtime_invoke_array): Don't assert with
8362         byref nullable types.
8363
8364         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8365         byref nullables we unbox the object and store it on the
8366         stack. 
8367         We can't use the boxed object since it is the T of Nullable<T>
8368         and the boxed representation of a nullable it's underlying type
8369         or null.
8370         We could cheat and create a boxed nullable and use the same
8371         machinery of other byref VTs but this feels like a hack and
8372         using the stack has the bonus of reducing heap pressure.
8373
8374         Fixes #461941.
8375
8376 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8377
8378         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8379         return value.
8380
8381         Fixes #461867.
8382
8383 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8384
8385         * icall-def.h : Adding an internal call definition for 
8386           System.Environment.internalBroadcastSettingChange.
8387
8388         * icall.c : Adding a Windows only implementation to broadcast a 
8389           WM_SETTINGCHANGE when an environment variable has changed.
8390
8391         Code is contributed under MIT/X11 license.
8392
8393 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8394
8395         * class.c, class-internals.h: Made
8396         mono_class_has_parent_and_ignore_generics() non-static.
8397
8398 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8399
8400         * image.c: deal with the mmap failing when loading an image.
8401
8402 2008-12-17  Geoff Norton  <gnorton@novell.com>
8403
8404         * threadpool.c: Ensure that the io_queue_lock is initialized
8405         in all circumstances, as we always attempt to cleanup against it.
8406
8407 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8408
8409         * icall.c (ves_icall_System_Environment_get_Platform): For
8410         compatibility reasons for existing client code we will keep
8411         returning 4 for a while.   
8412
8413         For how long will depend on the documentation being updated, and
8414         for us to give client code a chance to be updated.
8415
8416         This reverts the original decison on #433108 since we did not
8417         catch roughly 33 instances of the broken code in our own source
8418         code base, we did not catch failures on the buildbots, and QA did
8419         not bring this as a problem.
8420
8421         Only today I found some customer's code breaking due to our own
8422         class libraries not being fully updated and tracked it down to
8423         this change.  I am reverting it because if we could not even get
8424         our story straight in our own code base, how can we hope that our
8425         end user code be fixed?
8426
8427         As of this morning, our Wiki page that documents how to detect
8428         Unix had not been fixed.    
8429
8430 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8431
8432         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8433
8434         * class.c (mono_class_get_fields): Handle loading errors.
8435
8436 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8437
8438         * 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.
8439         
8440 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8441
8442         * mono-perfcounters.c: avoid warning.
8443
8444 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8445
8446         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8447         make sure all interfaces have MonoClass::interface_id set.
8448
8449         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8450         method table is property set.
8451
8452 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8453
8454         * class.c: New function mono_class_setup_interface_id that setup
8455         MonoClass::interface_id if needed.
8456
8457         * class-internals.h: Export new function.
8458
8459 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8460
8461         * class.c: Add code to sanity check the vtable after setup_vtable_general
8462         has done it's work.
8463
8464 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8465
8466         * icall.c: make Assembly.GetExecutingAssembly work properly when
8467         reflection is used to invoke the method.
8468         Bug #321781 fixed.
8469
8470 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8471
8472         * metadata/generic-sharing.c: Look for constraints in all type
8473         arguments, not just the first one.
8474
8475 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8476
8477         * appdomain.c: return the correct CodeBase for an Assembly instance
8478         that was loaded from the shadow-copy directories.
8479         Bug #458190 fixed.
8480
8481 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8482
8483         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8484
8485         * sgen-gc.c (check_object): New debugging helper function.
8486
8487         * object.c: Fix calls to mono_value_copy_array ().
8488
8489 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8490
8491         * class.c (mono_class_setup_fields): If working on an inflated class
8492         first check if the generic definition did init with success.
8493
8494         Fixes #445361.
8495
8496 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8497
8498         pedump.c (main): Fix a warning.
8499
8500 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8501
8502         * object-internals.h : Adding a definition for 
8503           MonoReflectionComVisibleAttribute.
8504
8505         * marshal.c (cominterop_com_visible) :  Method added to check the 
8506           ComVisible attribute of a class.
8507
8508         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8509           cominterop_raise_hr_exception added to consolidate common code 
8510           to raise hr exceptions.
8511
8512         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8513           if a managed class should support IDispatch.
8514
8515         * marshal.c 
8516           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8517           Added additional checks for managed object when getting 
8518           an IDispatch interface.
8519
8520         Code is contributed under MIT/X11 license.
8521
8522 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8523
8524         pedump.c (main): Handle mono_get_method () returning NULL. 
8525
8526 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8527
8528         * marshal.h: Fix a warning.
8529
8530 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8531
8532         * marshal.c : Adding cominterop_release_all_rcws to release all
8533           runtime callable wrappers held by the runtime.
8534
8535         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8536           
8537         Code is contributed under MIT/X11 license.
8538
8539 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8540
8541         * metadata.c (mono_image_alloc_lock): New helper function.
8542         (mono_image_alloc0_lock): Ditto.
8543
8544         * metadata.c: Use the alloc_lock () helper functions for allocating
8545         memory from the image mempool.
8546
8547 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8548
8549         * class.c (mono_class_from_generic_parameter): Document it's
8550         locking behavior. Fix double checked locking here, we stored in
8551         param->pklass a partially initialized MonoClass and no membar was used.
8552
8553 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8554
8555         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8556         (3) functions are present in the C library use them to do the
8557         job. If they are absent, make sure that the sum of int_part and
8558         dec_part is rounded before returning. This is necessary due to the
8559         division of dec_part by the power of 10 before the final addition
8560         is performed - if the result is not rounded in some cases it will
8561         yield invalid results.
8562
8563 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8564
8565         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8566         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8567         instruction instead of a pointer constant.
8568
8569 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8570
8571         * loader.c (mono_method_get_header): Do most of the work outside the
8572         loader lock, to avoid assembly load hook deadlocks.
8573
8574         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8575         (mono_metadata_parse_type_full): Ditto.
8576
8577 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8578
8579         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8580         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8581         funtions. Finally, use a lock to produce well ordered output.
8582
8583         The lock looks silly, as all calls to the corlib mempool should be guarded
8584         with the loader lock, but for some reason this fact doesn't help. 
8585
8586         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8587
8588 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8589
8590         * socket-io.c: 64 bit big-endian fixes.
8591
8592 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
8593
8594         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8595         targets that require strict compatibility between the types.
8596
8597         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
8598         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
8599         Kill the strict argument and create a new one valuetype_must_be_boxed.
8600
8601         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
8602         state that all valuetypes must be boxed.
8603
8604         Fixes #448560.
8605
8606 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
8607
8608         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
8609         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
8610
8611         Contributed under MIT/X11 license.
8612
8613 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
8614
8615         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
8616         the inflate_generic_type machinery should handle it.
8617
8618         This avoids a crash when the field's flags is zero and it's type is
8619         a primitive.
8620         What happens is that mono_metadata_parse_type_full will see that opt_attrs
8621         is zero and will return one of the cached built-in primitive types. Since
8622         those types live in read-only memory, the code that copies it crashes.  
8623
8624 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8625
8626         * object.c: Don't put function descriptors into generalized IMT
8627         thunks.
8628
8629 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8630
8631         * class.c: Enable generic code sharing on PPC64.
8632
8633 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8634
8635         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
8636         from mini/mini.c.
8637
8638         * generic-sharing.c: Allocate the method template slists from the
8639         image mempool so it doesn't leak.
8640
8641 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
8642
8643         * class.c (generic_array_methods): Release the linked list.
8644
8645 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8646
8647         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
8648         invocation to g_utf16_to_utf8().
8649
8650 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8651
8652         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
8653         arguments on big endian archs.
8654
8655 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8656
8657         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
8658         the type name (test added in corlib).
8659
8660 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8661
8662         * pedump.c: initialize perf. counters. Fixes a segv.
8663
8664 2008-11-25  Martin Baulig  <martin@ximian.com>
8665
8666         * mono-debug-debugger.c
8667         (mono_debugger_runtime_invoke): Return the exception object if an
8668         exception was thrown.  Visual Studio displays the exception object
8669         in the locals window.
8670
8671 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8672
8673         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
8674         ftnptr.
8675
8676 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8677
8678         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
8679         MONO_TYPE_U are sizeof (gpointer), too.
8680
8681 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8682
8683         * marshal.c (mono_type_native_stack_size): Fixed size and
8684         alignment for reference types.
8685
8686 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8687
8688         * class.c (mono_class_generic_sharing_enabled): Disable generic
8689         code sharing for PPC64.
8690
8691 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
8692
8693         * icall.c (mono_method_get_equivalent_method): Make sure
8694         method->klass->methods is inited before looping over it.
8695
8696 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8697
8698         * object.c: when calling ExecuteAssembly in a newly created domain,
8699         the configuration file and application base are already set up.
8700         Bug #446353 take 2 fixed.
8701
8702 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
8703
8704         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
8705         Fixes #444715. Fix a warning.
8706
8707 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
8708
8709         * appdomain.c: write the full path of the assembly to the .ini file
8710         created when "shadow-copying"
8711         Bug #446353 fixed.
8712
8713 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8714
8715         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
8716         if signature==FALSE.
8717
8718 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8719
8720         * marshal.h : Fix the cygwin build.
8721            marshal.c:12442: undefined reference to `_IID_IMarshal'
8722           
8723         Code is contributed under MIT/X11 license.
8724
8725 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8726
8727         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
8728           free threaded marshaler when QueryInterface is called on a COM callable
8729           wrapper requesting the IMarshal interface.
8730           
8731         Code is contributed under MIT/X11 license.
8732
8733 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8734
8735         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
8736
8737         * reflection.c (mono_type_get_object): Special case the very common
8738         void type.
8739
8740         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
8741         hold typeof(void).
8742
8743 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
8744
8745         * process.h : Adding method declaration for
8746           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8747           
8748         * process.c : Adding implementation for
8749           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8750           
8751         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
8752           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8753
8754         Code is contributed under MIT/X11 license.
8755
8756 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
8757
8758         * appdomain.c (unload_thread_main): Clean up threadpool by
8759         calling mono_thread_pool_remove_domain_jobs.
8760
8761         * domain-internals.h (struct _MonoDomain): Add new fields to
8762         help coordinate the cleanup of the threadpool.
8763
8764         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
8765         that cleans up the threadpool of all jobs associated with an appdomain.
8766         It does that by cleaning up the queues and making sure all active
8767         threads are accounted.
8768
8769         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
8770         unloaded or in the process of. Take this is such way that there is
8771         no race condition between another thread starting the unload and the
8772         current thread acknowledging it.
8773
8774         * threadpool.c (async_invoke_thread): Same.
8775
8776         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
8777         firing the new thread.
8778
8779         * threadpool.c (start_tpthread): Same.
8780
8781         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
8782
8783         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
8784
8785 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
8786
8787         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8788         Add support for DuplicateHandle.
8789         
8790         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8791         Add support for DuplicateHandle.
8792         
8793         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8794         Add support for DuplicateHandle.
8795
8796         Code is contributed under MIT/X11 license.
8797
8798 2008-11-06  Mark Probst  <mark.probst@gmail.com>
8799
8800         * class-internals.h: Make min_align into a whole byte.
8801
8802         * class.c: Set min_align for SIMD types to 16.
8803
8804 2008-11-05  Geoff Norton  <gnorton@novell.com>
8805
8806         * attach.c: Default the attacher to enabled for all cases including
8807         embedded.
8808
8809 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8810
8811         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
8812         change r117650.
8813
8814 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8815
8816         * monitor.c, monitor.h: New function for querying offsets of
8817         members of MonoThreadsSync.
8818
8819 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8820
8821         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
8822         to speed up this function and to avoid the boundless memory growth caused by
8823         the signature_dup () calls.
8824
8825 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
8826
8827         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
8828         wrapper.
8829
8830         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
8831         by 1 bit.
8832
8833         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
8834
8835 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8836
8837         * appdomain.c:
8838         * domain-internals.h: made mono_set_private_bin_path_from_config()
8839         "internal".
8840         * object.c: call the above function after setting the configuration
8841         file path for the root domain.
8842         Fixes bug #314478.
8843
8844 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8845
8846         * assembly.c: when the assembly is loaded from an absolute path, end
8847         basedir with a directory separator.
8848         Bug #440781 fixed.
8849
8850 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8851
8852         * monitor.c (mono_monitor_get_fast_enter_method): If
8853         CompareExchange is not available, don't create the fastpath
8854         instead of asserting.  (The method is missing in the 1.1 profile.)
8855
8856 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8857
8858         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
8859
8860         * monitor.c, monitor.h: Code for generating Monitor.Enter and
8861         Monitor.Exit IL fastpaths.
8862
8863 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8864
8865         * class.c (mono_class_create_from_typedef): Added Vector2ul.
8866
8867 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8868
8869         * class.c (mono_class_create_from_typedef): Added Vector2l.
8870
8871 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8872
8873         * class.c (mono_class_create_from_typedef): Added Vector2d.
8874
8875 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
8876
8877         * appdomain.c: translate \ into / for cache_path.
8878         * domain-internals.h: new mono_is_shadow_copy_enabled().
8879         * icall.c: (fill_reflection_assembly_name) do the same path
8880         manipulations that get_code_base does.
8881         (get_code_base) use mono_is_shadow_copy_enabled.
8882
8883 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
8884
8885         * appdomain.c: shadow-copied assemblies go to CachePath +
8886         ApplicationName when both are set. DynamicBase has nothing to do with
8887         shadow copies.
8888         Bug #406877 fixed.
8889
8890 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
8891
8892         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
8893         STANDALONESIG table.
8894
8895         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
8896         standalone signatures.
8897
8898         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
8899         comparison code: instead of comparing the signatures using a custom
8900         equals function, transform them to a common signature and compare that. This
8901         works better with AOT.
8902
8903 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
8904
8905         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
8906
8907         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
8908         call for generic instances.
8909         (mono_class_setup_properties): Call setup_properties () before accessing
8910         gklass->properties.
8911
8912         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8913         over the virtual methods of a class using metadata if possible, avoiding the
8914         creation of MonoMethod's for non-virtual methods.
8915         
8916         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8917         get_virtual_methods () to iterate over the virtual methods of classes.
8918
8919 2008-10-25  Martin Baulig  <martin@ximian.com>
8920
8921         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
8922
8923 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8924
8925         * class.c (mono_class_create_from_typedef): Added Vector4i.
8926
8927 2008-10-24  Mark Probst  <mark.probst@gmail.com>
8928
8929         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
8930         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
8931         special-casing applies to eliminate the call completely.
8932
8933 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8934
8935         * class.c (mono_class_create_from_typedef): Added Vector8s.
8936
8937 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8938
8939         * class.c (mono_class_create_from_typedef): Added Vector16sb.
8940
8941 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8942
8943         * icall.c: get rid of annoying warning.
8944
8945 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8946
8947         * threadpool.c: in 1.x, if you change the background status of the
8948         threadpool thread, it's not reset.
8949         Remove unnecessary calls to SetState.
8950
8951 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8952
8953         * threadpool.c: asynchronously create a set of idle threads upon first
8954         use of the threadpool. SetMinThreads will now start the appropriate
8955         number of idle threads if they are not already running. The default is
8956         1 threadpool thread per CPU. Increased the maximum number of threads
8957         per CPU to 10.
8958
8959 2008-10-22  Martin Baulig  <martin@ximian.com>
8960
8961         Revert r116521 from Zoltan, it breaks the debugger:
8962
8963         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8964         over the virtual methods of a class using metadata if possible, avoiding the
8965         creation of MonoMethod's for non-virtual methods.
8966         
8967         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8968         get_virtual_methods () to iterate over the virtual methods of classes.
8969
8970 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8971
8972         * threads.c: when creating a threadpool thread, set its state to
8973         'background'.
8974         * threadpool.c: reset the background state of a threadpool thread
8975         after finishing each work item
8976         Bug #437888 fixed.
8977
8978 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8979
8980         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
8981         
8982         * class.c (mono_class_setup_vtable_general): Add an optimized version for
8983         generic instances which works by inflating the methods in the container
8984         class's vtable.
8985
8986         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
8987         variant which doesn't make a copy if no inflation was done.
8988         (mono_class_setup_fields): Use it.
8989
8990         * metadata.c (mono_metadata_get_shared_type): New helper function to
8991         return a shared instance of a given MonoType.
8992
8993         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
8994         a copy of most non-generic types.
8995
8996 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
8997
8998         * threadpool.c: remove one more GetSystemInfo () call.
8999
9000 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9001
9002         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
9003         use the code in mono-proclib.h to get processor information.
9004
9005 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9006
9007         * appdomain.c: fixed the logic that determines whether assemblies in a
9008         directory are "shadow-copied" or not. Bug #433483 fixed.
9009
9010 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9011
9012         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
9013         warning.
9014
9015 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9016
9017         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
9018         returning a vtype.
9019
9020         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
9021         reflection.c: Use mono_field_get_name () for accessing a field's name.
9022
9023         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
9024         class.c
9025
9026         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
9027         field.
9028
9029         * loader.c (find_method_in_class): Reenable the metadata optimization by
9030         not using it for generic instances.
9031
9032         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
9033         data/def_type fields from MonoClassField into a separate structure.
9034         (struct MonoClassField): Remove data/def_type fields.
9035         (struct _MonoClass): Add a 'field_def_values' array to store the default
9036         values/RVA for fields.
9037
9038         * class.c reflection.c: Update after the changes.
9039         
9040         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
9041         for accessing field->data.
9042
9043         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
9044
9045         * loader.c (find_method_in_class): Revert the last change for now as
9046         it breaks Mono.C5 unit tests.
9047
9048         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
9049         'field_generic_types' and 'field_objects' which contain the information
9050         previously stored in MonoInflatedField.
9051         (MonoInflatedField): Delete.
9052         (struct _MonoClassField): Delete 'generic_info' field.
9053
9054         * reflection.c: Store the information which was previously in 
9055         field->generic_info in MonoDynamicGenericClass instead.
9056
9057         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
9058         MonoClassField changes.
9059
9060 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
9061
9062         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
9063         store the value inside the data array of the MonoMethodWrapper.
9064         This saves memory, is faster and fixes the lifetime issues (methods
9065         were never removed from the hash previously). May also fix bug#436996.
9066
9067 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9068
9069         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
9070         generic instances, compute the type from the generic definition instead of
9071         looking in field->generic_info.
9072
9073         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
9074         for inflated fields, the only user was get_fieldref_token () which no
9075         longer needs it.
9076
9077         * class.c (mono_class_init): Revert the last change as it seems to cause
9078         crashes.
9079
9080         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9081         bytes on 64 bit platforms.
9082
9083         * object.c (mono_class_create_runtime_vtable): Fix a warning.
9084         
9085         * object.c (mono_class_create_runtime_vtable): Don't initalize
9086         field->data/field->def_type here, it is done lazily by 
9087         mono_class_get_field_default_value ().
9088
9089         * icall.c (ves_icall_get_enum_info): Call 
9090         mono_class_get_field_default_value () instead of directly accessing
9091         field->data and field->def_type.
9092
9093         * object.c (get_default_field_value): Ditto.
9094
9095         * class.c (mono_field_get_data): Ditto.
9096         
9097         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9098         call for generic instances.
9099
9100         * loader.c (find_method_in_class): If klass != from_class, then inflate
9101         the method with the context of from_class, since the caller assumes this.
9102
9103 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
9104
9105         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9106         for accessing method->slot.
9107
9108 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
9109
9110         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9111
9112 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9113
9114         * class.c (mono_method_get_vtable_index): Use
9115         mono_method_get_vtable_slot () for accessing method->slot.
9116
9117         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9118         accessing klass->methods.
9119
9120         * class.c (mono_method_get_vtable_slot): New helper function.
9121         (mono_class_get_vtable_entry): Ditto.
9122         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9123         accessing method->slot.
9124
9125         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9126         method to get_inflated_method ().
9127
9128         * class.c (mono_class_get_inflated_method): New helper method to obtain
9129         a method of an inflated class without calling setup_methods ().
9130         (mono_class_get_cctor): Use get_inflated_method.
9131
9132         * generic-sharing.c (mono_class_get_method_generic): Ditto.
9133         
9134         * marshal.c image.c: Lazily create all the marshal caches.
9135
9136         * image.c (mono_image_init): Move initialization of runtime_invoke
9137         caches to marshal.c.
9138
9139         * marshal.c (get_cache): New helper function to lazily initialize a 
9140         wrapper cache.
9141         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9142
9143         * debug-helpers.c (mono_method_full_name): Include generic arguments.
9144
9145 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9146
9147         * loader.c: fixed check for interface type.
9148
9149 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9150
9151         * appdomain.c: check for NULL setup before it's referenced.
9152
9153 p
9154 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9155
9156         * class.c: remove the unused old vtable setup code.
9157
9158 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9159
9160         * class.c: don't depend on interface order in
9161         setup_interface_offsets (bug #435777).
9162         * reflection.c: sort the InterfaceImpl table (patch from
9163         Jb Evain  <jbevain@novell.com>).
9164
9165 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9166
9167         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9168         the low level assemblies lock.
9169
9170 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9171
9172         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9173         object.c, reflection.c, socket-io.c, threads.c: introduced
9174         mono_framework_version () to return the major framewrok version,
9175         changed the code that was using more complex patterns to use it.
9176         Return the correct value for PlatformID for OSX.
9177
9178 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9179
9180         * icall-def.h, process.h, process.c: added an icall to get info about
9181         processes using mono-proclib.
9182
9183 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
9184
9185         * mono-perfcounters.c: use the mono-proclib functions to
9186         access process information.
9187
9188 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9189
9190         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
9191         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
9192         reflection.c: remove rawbuffer usage: mmap support is more sanely
9193         provided by utils/mono-mmap.
9194
9195 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
9196
9197         * gc.c: use posix semaphores when possible so that
9198         mono_gc_finalize_notify() is signal safe.
9199
9200 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
9201
9202         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
9203         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
9204         be #ifdef-ed out, the linker will remove the rest.
9205
9206         * marshal.c: Implement DISABLE_COM.
9207
9208         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
9209
9210 2008-10-11  Miguel de Icaza  <miguel@novell.com>
9211
9212         * locales.c (string_invariant_compare_char): Optimization: do not
9213         call g_unichar_type unless we actually need the information.
9214
9215 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9216
9217         * object.c, class-internals.h: Also create remoting trampolines
9218         for generic methods.  Pass the domain to the remoting trampoline
9219         creation function, too.
9220
9221 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
9222
9223         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
9224
9225 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9226
9227         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
9228         Vector4ui.
9229
9230 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9231
9232         * assembly.c:
9233         * locales.c: remove the use of g_strdown. Fixes bug #322313.
9234
9235 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
9236
9237         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
9238         for the least possible amount of time (extending the fix in r113458).
9239
9240 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9241
9242         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
9243
9244 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9245
9246         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
9247         as possible simd intrinsic types.
9248         Optimized the test to check for the common prefix first.
9249
9250 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
9251
9252         * class.c: back out part of a broken optimization committed on
9253         May 23th (bug #433908).
9254
9255 2008-10-09  Mark Probst  <mark.probst@gmail.com>
9256
9257         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
9258         Win32.  Should fix #432388 for most cases until we have the new
9259         profiler on Win32.
9260
9261 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9262
9263         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
9264         instead of using inst->id so the hash is stable for AOT.
9265
9266 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
9267
9268         * appdomain.c:
9269         * icall.c: create a .ini file for shadow-copied assemblies that
9270         contains the location of the original assembly. Use this to return the
9271         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
9272         Also fix the number of '/' for windows when returning the CodeBase.
9273         Fixes bug #430920.
9274
9275 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9276
9277         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
9278
9279         Code is contributed under MIT/X11 license.
9280
9281 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9282
9283         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
9284           if if the class vtable needs initialized.
9285
9286         Code is contributed under MIT/X11 license.
9287
9288 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9289
9290         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
9291           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
9292           STRING->BSTR, and CLASS->INTERFACE.
9293
9294         Code is contributed under MIT/X11 license.
9295
9296 2008-10-07  Marek Habersack  <mhabersack@novell.com>
9297
9298         * sysmath.h: changed the declaration of the
9299         ves_icall_System_Math_Round2 icall by adding an extra
9300         away_from_zero parameter.
9301
9302         * sysmath.c (ves_icall_System_Math_Round2): added support for
9303         away from zero rounding. The icall now takes an extra boolean
9304         parameter to signal that away from zero operation is requested.
9305
9306 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9307
9308         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
9309         the delegate klass so it can work with full-aot.
9310         (mono_marshal_get_delegate_end_invoke): Ditto.
9311         (mono_marshal_get_delegate_invoke): Ditto.
9312
9313 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
9314
9315         * gc.c, attach.h, attach.c: remove a bad pattern:
9316         add_finalizer_callback () is not implemented correctly, it can't
9317         without adding more overhead to the finalizer loop and it's not
9318         even needed, since we know exactly what we need to call, so there is
9319         no need to do so through an expensive function pointer.
9320
9321 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
9322
9323         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9324         for the no-gc case.
9325         * attach.c (mono_attach_init): Remove the #ifdef.
9326
9327 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
9328
9329         * attach.c (mono_attach_init): Don't use
9330         mono_gc_add_finalizer_thread_callback when compiling without GC.
9331         Fixes #432306.
9332         
9333         Code is contributed under MIT/X11 license.
9334
9335 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9336
9337         * class.c (mono_class_create_from_typedef): Remove the 
9338         #ifndef DISABLE_SIMD stuff.
9339
9340 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9341
9342         * class-internals.h (MonoClass): Added simd_type bit field.
9343
9344         * class.c (mono_class_create_from_typedef): Check if type is a simd
9345         intrinsic.
9346
9347 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9348
9349         * object.c (mono_method_add_generic_virtual_invocation): Only add
9350         instantiations to the thunk whose count is at least as large as
9351         the threshold.
9352
9353 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9354
9355         * icall.c: changed the Type of the exception thrown when trying to
9356         invoke a constructor on an abstract class. Part of the fix for bug
9357         #324185.
9358
9359 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9360
9361         * class.c, class-internals.h (mono_method_get_vtable_index): New
9362         function which returns the index into the vtable and properly
9363         handles inflated virtual generic methods.
9364
9365 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9366
9367         * object.c, domain.c, object-internals.h, domain-internals.h:
9368         Generalize IMT thunk machinery to also handle thunks for virtual
9369         generic method invokes.  When a virtual generic method is invoked
9370         more than a number of times we insert it into the thunk so that it
9371         can be called without lookup in unmanaged code.
9372
9373         * generic-sharing.c, class-internals.h: Fetching a
9374         MonoGenericInst* for a method from an (M)RGCTX.
9375
9376 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9377
9378         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9379         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9380         marshalling. Fixes #431304.
9381
9382 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9383
9384         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9385           handle when ref is specified without In or Out.
9386
9387         Code is contributed under MIT/X11 license.
9388
9389 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9390
9391         * loader.c (mono_get_method_constrained): Don't expand method with
9392         the class's context, because it's already a method of that class.
9393
9394 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9395
9396         * attach.c : should be correct build fix.
9397
9398 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9399
9400         * attach.c: Fix the previous change.
9401
9402 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9403
9404         * attach.c : quick w32 build fix.
9405
9406 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9407
9408         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9409         crashes MonoDevelop: #430455.
9410
9411 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9412
9413         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9414         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9415
9416         * domain.c: Remove initialization/cleanup of the removed fields.
9417
9418 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9419
9420         * class.c (mono_class_generic_sharing_enabled): Enable generic
9421         code sharing for PPC.
9422
9423 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9424
9425         * attach.c : Fixing the Windows builds.
9426
9427         Code is contributed under MIT/X11 license.
9428
9429 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9430
9431         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9432         the default generic sharing mode to 'all'.
9433
9434 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9435
9436         * generic-sharing.c, class-internals.h: New function for checking
9437         whether a method needs a static RGCTX invoke wrapper.  A few
9438         funtions moved from mini/generic-sharing.c.
9439
9440         * icall.c: New function used.
9441
9442 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9443
9444         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9445         Static RGCTX invoke wrapping applies to value type methods, too.
9446
9447         * class.c (mono_class_setup_vtable_general): In generic-shared
9448         value types, wrap methods with a static RGCTX invoke wrapper.
9449
9450 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9451
9452         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9453         osx build.
9454
9455 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9456
9457         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9458         register a callback which is called when the finalizer thread is woken
9459         up.
9460         (finalizer_thread): Call the callback if it exists.
9461
9462         * attach.h attach.c: New files, implementing the attach mechanism.
9463
9464         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9465         
9466         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9467         by the previous change.
9468
9469 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9470
9471         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9472         loader.c, marshal.c, metadata-internals.h, metadata.c,
9473         method-builder.c, object.c, reflection.c: introduced specific functions
9474         to allocate from the domain and image mempools and cleaned up most of
9475         the code to use them (still missing a few in reflection.c).
9476         Keep the loader bytes counter updated.
9477
9478 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9479
9480         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9481         loader-related counters.
9482
9483 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9484
9485         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9486         added more MS-compatible counters.
9487
9488 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9489
9490         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9491         class->blittable. Fixes #428217.
9492
9493 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9494
9495         * reflection.c (mono_image_get_field_on_inst_token): Call 
9496         field_encode_signature () since that handles custom modifiers too.
9497         Fixes #424663.
9498
9499 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9500
9501         * reflection.c (add_custom_modifiers): New helper function to merge custom
9502         modifiers stored in objects to a MonoType.
9503         (fieldref_encode_signature): Encode custom modifiers.
9504         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9505         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9506
9507 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9508
9509         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9510         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9511         64-bit IL only images because imports are not resolved for IL only images.
9512         Special thanks to Bill Holmes for finding this bug and testing the patch.
9513         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9514
9515         Contributed under MIT/X11 license.
9516
9517 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9518
9519         * mono-config.c (dllmap_start): Add support for the bits keyword
9520         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9521
9522 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9523
9524         * reflection.c (inflate_mono_method): When the class the method is
9525         to be inflated for is itself not inflated, just return the method.
9526
9527 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9528
9529         * mono-perfcounters.c: use more user friendly process instance names.
9530
9531 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9532
9533         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9534           handle "[in] ref" and "[in][out] ref" cases.
9535
9536         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9537           to mono_mb_create_method.  This was causing problems calling native to
9538           managed passing Variants by value.
9539
9540         Code is contributed under MIT/X11 license.
9541
9542 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9543
9544         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9545         before accessing the friend_assembly_names field.
9546
9547         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9548         times.
9549         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9550         called lazily when it is needed.
9551
9552         * metadata-internals.h (struct _MonoAssembly): Add 
9553         'friend_assembly_names_inited' flag.
9554
9555 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9556
9557         * mono-perfcounters-def.h: fix the types of a few counters.
9558         * mono-perfcounters.c: implemented the instance names getter
9559         and a few bugfixes.
9560
9561 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9562
9563         * culture-info-table.h : regenerated.
9564
9565 2008-09-17  Robert Jordan  <robertj@gmx.net>
9566
9567         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9568         context bound objects. Fixes #415577.
9569
9570         Code is contributed under MIT/X11 license.
9571
9572 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9573
9574         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9575         implementation (bug #423582).
9576
9577 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9578
9579         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9580         is not set. Fixes #426309.
9581
9582 2008-09-16  Jb Evain  <jbevain@novell.com>
9583
9584         * class.c (mono_class_from_name): fix the exported type look up
9585         when the type is defined in a referenced assembly.
9586
9587 2008-09-16  Jb Evain  <jbevain@novell.com>
9588
9589         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9590         increment the next index counter on each iteration to make that work
9591         for more than one type forwarder. Unmanaged part to fix #422929.
9592
9593 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9594
9595         * object-internals.h: enum ComInterfaceType in
9596         MonoInterfaceTypeAttribute is guint32, not guint16.
9597
9598 2008-09-12  Mark Probst  <mark.probst@gmail.com>
9599
9600         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
9601         writing code.
9602
9603 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9604
9605         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
9606         not gboolean.
9607
9608 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9609
9610         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
9611         Endianness fixes for MonoSymbolFileOffsetTable.
9612
9613 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9614
9615         * process.c (complete_path) : Removing quotes from the 
9616           input path.  The glib file routines do not handle file paths
9617           that have quotes around them.
9618
9619         Code is contributed under MIT/X11 license.
9620
9621 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9622
9623         * socket-io.h : Adding a comment to provide locations where 
9624           changes to MonoSocketAsyncResult need to be synced.
9625
9626         Code is contributed under MIT/X11 license.
9627
9628 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
9629
9630         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
9631         parameters as well. Fixes #425001.
9632
9633 2008-09-08  Miguel de Icaza  <miguel@novell.com>
9634
9635         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
9636         windows build.
9637
9638 2008-09-07  Miguel de Icaza  <miguel@novell.com>
9639
9640         * console-io.c: Add support for tracking the window size if it
9641         changes.
9642
9643         The setup is very simple: the TtySetup function will now return a
9644         pointer to a location in memory that tracks the current console
9645         size.  The managed code checks its current value every time its
9646         queried against the last value set, and updates accordingly.
9647
9648         With this setup we can work with multiple consoles, and we do not
9649         require to poke into managed code from a signal handler.
9650
9651         Additionally, the environment for COLUMNS and LINES is now handled
9652         in unmanaged code.
9653
9654         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
9655
9656 2008-09-07  Mark Probst  <mark.probst@gmail.com>
9657
9658         * marshal.c (mono_type_native_stack_size): Treat
9659         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
9660
9661 2008-09-04  Jb Evain  <jbevain@novell.com>
9662
9663         * class.c (mono_class_is_assignable_from): fix assignability of nullables
9664         to nullables.
9665
9666 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
9667
9668         * verify.c (verify_type_compatibility_full): Revert change
9669         to allow converting a native int to unmanaged pointer be verifiable
9670         under non-strict mode.
9671         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
9672
9673         * verify.c: Added some TODOs.
9674
9675 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
9676
9677         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
9678           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
9679           Changed to use GlobalAlloc for the memory returned on Windows platforms.
9680
9681         Code is contributed under MIT/X11 license.
9682
9683 2008-09-02  Jb Evain  <jbevain@novell.com>
9684
9685         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
9686
9687 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
9688
9689         reflection.c (typebuilder_setup_fields): Handle classes with
9690         explicit size.
9691
9692 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
9693
9694         class.c (mono_class_setup_events): Add memory barrier due to
9695         double checked locking.
9696         
9697         class.c (mono_class_setup_properties): Same.
9698
9699 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
9700
9701         * class.c (mono_class_is_assignable_from): Fix the build.
9702         
9703         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
9704         before accessing klass->interface_bitmap. Fixes #421744.
9705
9706 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
9707
9708         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
9709         the runtime into no-exec mode, useful when running the AOT compiler.
9710
9711         * appdomain.c gc.c object.c: Avoid executing managed code when running
9712         in no-exec mode.
9713         
9714         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
9715
9716         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
9717         special case when the mono_assembly_loaded () returns NULL because the 
9718         search hook is not installed.
9719
9720 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
9721
9722         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
9723         crashes in bstr marshalling on linux.
9724
9725 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9726
9727         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
9728         with more than one parameter.
9729
9730 2008-08-24  Miguel de Icaza  <miguel@novell.com>
9731
9732         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
9733         start/stop flow control as well when turning off ICANON (allows
9734         C-s and C-q to be read by Console.ReadKey).
9735
9736 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9737
9738         * class.c (mono_class_init): Move the initialization of nested classes
9739         into mono_class_get_nested_types (). Fixes #418433.
9740
9741         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
9742         flag.
9743
9744         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
9745         iterating tough the nested classes of a class.
9746
9747 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
9748
9749         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
9750         on arm.
9751
9752 2008-08-22  Miguel de Icaza  <miguel@novell.com>
9753
9754         * console-io.c (sigcont_handler): Support signal chaining for
9755         SIGCONT.
9756
9757         (console_set_signal_handlers): Use best practices with sigaction,
9758         clear the structure before using it. 
9759
9760 2008-08-22  Robert Jordan  <robertj@gmx.net>
9761
9762         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
9763         Fix the Windows build.
9764
9765 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
9766
9767         * class.c (mono_class_generic_sharing_enabled): Make the default
9768         sharing mode 'corlib'.
9769
9770 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
9771
9772         * console-io.c (console_set_signal_handlers): Fix a warning.
9773
9774         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
9775         method normally, the JIT will take care of avoiding recursion.
9776
9777 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
9778
9779         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
9780
9781         Code is contributed under MIT/X11 license.
9782
9783 2008-08-20  Miguel de Icaza  <miguel@novell.com>
9784
9785         * console-io.c (sigcont_handler): We need to restore the entire
9786         termios state, not only the original settings, as things like echo
9787         can be controlled after this (Booish exposes this issue with its
9788         own ReadLine implementation).
9789
9790         Additionally, we need to set the terminal back into keypad_xmit
9791         mode.
9792         
9793         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
9794         string as a paramter as well.   Otherwise we get different
9795         keyboard sequences.
9796
9797 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
9798
9799         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
9800         delegates with byref out parameter passing. Fixes #351520.
9801
9802         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
9803         a generic context.
9804         (mono_type_get_desc): Add the type arguments for GENERICINST.
9805         (mono_method_full_name): Stringify the class name using mono_type_full_name
9806         so it picks up generic arguments.
9807
9808 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
9809
9810         * console-io.c: Removed debug output.
9811
9812 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
9813
9814         reflection.c (mono_reflection_create_runtime_class): Alloc
9815         the nested classes linked list using the dynamic image mempool.
9816         Fixes leak in corlib compilation.
9817
9818 2008-08-19  Miguel de Icaza  <miguel@novell.com>
9819
9820         * console-io.c: Fix incredibly annoying behavior on the console
9821         after resuming execution after control-z.   This affected every
9822         console application.
9823
9824 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
9825
9826         * mempool-internals.h: Header for mono private mempool functions. The first
9827         two function are for allocating glib linked lists using pools.
9828
9829         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
9830
9831         * Makefile.am: Added mempool-internals.h.
9832
9833 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
9834
9835         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
9836         (mono_domain_free): Ditto.
9837
9838         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
9839         be used by the JIT to store its domain-specific information, instead of putting
9840         it directly into MonoDomain.
9841
9842         * domain.c (mono_install_create_domain_hook): New helper function to install
9843         a hook which initializes domain->runtime_info.
9844
9845         * domain.c (mono_install_free_domain_hook): Ditto.
9846         
9847 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
9848
9849         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
9850         asserting if the ares parameter is null.
9851
9852         * mono-perfcounters.c: Fix warnings.
9853
9854         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
9855         is not needed, don't check for interruptions either.
9856         (mono_marshal_get_delegate_end_invoke): Ditto.
9857
9858 2008-08-15  Marek Habersack  <mhabersack@novell.com>
9859
9860         * mono-perfcounters.c (predef_readonly_counter): added support for
9861         reading the ASP.NET Requests Queued counter from another process.
9862
9863 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
9864
9865         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
9866         MonoImage to simplify the AOT code.
9867
9868 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
9869
9870         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
9871         marshalling. Fixes #416078.
9872
9873 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9874         
9875         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
9876         it is set, looking up the icall address is deferred to the JIT, since 
9877         in embedded scenarios, the icall might not be registered in the runtime
9878         doing the AOT compilation. Backported from the 2.0 branch.
9879
9880 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9881
9882         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
9883         Fixes #415621.
9884
9885 2008-08-05  Marek Habersack  <mhabersack@novell.com>
9886
9887         * Makefile.am: added support for cross-compilation.
9888
9889 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
9890
9891         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
9892
9893 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9894
9895         * mono-perfcounters.c: jitted methods and jitted bytes counters.
9896
9897 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
9898
9899         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
9900         mono-perfcounters.c: performance counters implementation.
9901
9902 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
9903
9904         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
9905         to gpointer, letting the AOT code decide what to store in it.
9906
9907 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
9908
9909         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
9910           mono_class_setup_methods if the methods are not initialized.
9911
9912         Code is contributed under MIT/X11 license.
9913
9914 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9915
9916         * verify.c: Remove some debug code I commited by accident.
9917
9918         * verify.c (mono_method_is_valid_in_context): Change the return value
9919         to make possible to distinguish between invalid and unverifiable.
9920
9921         * verify.c (verifier_load_method): Don't return NULL for unverifiable
9922         methods.
9923
9924 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9925
9926         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
9927         constraints. Fixes regression in gtest-253.
9928
9929 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9930
9931         * verify.c (mono_verifier_verify_class): Don't allow generic types
9932         with explicit layout.
9933
9934         * verify.c (mono_method_verify): Check locals and argument types.
9935
9936 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
9937
9938         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
9939         wait if the thread is in StopRequested state.
9940
9941         * class.c (mono_class_from_name): Refactor the module searching code into
9942         a separate function so it can be reused in the AOT case too.
9943
9944 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
9945
9946         * verify.c (mono_type_is_valid_in_context): Improve the error message.
9947         Check both the type and it's generic type definition for loader errors.
9948         
9949         * verify.c (mono_method_is_valid_in_context): Don't generate another
9950         error when a type errors occur, this leads to the wrong exception been
9951         thrown.
9952
9953 2008-07-28  Dick Porter  <dick@ximian.com>
9954
9955         * icall-def.h
9956         * process.c
9957         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
9958         New internal calls to duplicate and close a process handle.
9959
9960 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
9961
9962         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
9963
9964 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
9965
9966         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
9967
9968 2008-07-27  Robert Jordan  <robertj@gmx.net>
9969
9970         * class.c (mono_class_init): Don't compute class.has_finalize for
9971         valuetypes. Fixes #412477.
9972
9973 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
9974
9975         * verify.c: Implement constraint equivalence checking.
9976         This is required when a generic parameter is used as
9977         argument to a constrained one.
9978
9979         Fixes #410637.
9980
9981 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
9982
9983         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9984
9985         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
9986
9987         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
9988         synch with managed object layout.
9989
9990 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9991
9992         * verify.c (do_branch_op): Handle valuetypes and generic
9993         arguments properly.
9994
9995         * verify.c (do_cmp_op): Same.
9996
9997         Fixes #410383.
9998
9999 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10000
10001         * generic-sharing.c: Fix memory leaks.
10002
10003         * class.c, class-internals.h: Make
10004         mono_class_inflate_generic_type_with_mempool() non-static.
10005
10006 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10007
10008         * pedump.c (dump_verify_info): Dump full class name.
10009
10010 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10011
10012         * generic-sharing.c: Removed some old code that didn't do anything.
10013
10014 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
10015         * profiler.c: Added runtime_initialized_event,
10016         mono_profiler_install_runtime_initialized and
10017         mono_profiler_runtime_initialized. This new hook tells the profiler
10018         when the runtime is sufficiently initialized to be able to call
10019         mono_thread_attach on the root appdomain.
10020         * profiler.h, profiler-private.h: Likewise.
10021
10022 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10023
10024         * verify.c (do_cast): Do boxing for generic arguments as well.
10025
10026         * class.c (is_nesting_type): Drop generic instantiations before
10027         checking for nesting.
10028
10029         * class.c (can_access_instantiation): Allow access to generic
10030         arguments.
10031
10032 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10033
10034         * verify.c (verify_class_for_overlapping_reference_fields):
10035         On some cases, the field size might be zero, guard against that.
10036         Fix the explicit layout check to work as expected.
10037
10038 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10039
10040         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
10041         mono_thread_resume () during shutdown, since the thread we want to abort
10042         might be suspended.
10043
10044 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10045
10046         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
10047         warning.
10048
10049         * debug-mono-symfile.c: Fix a warning.
10050
10051         * mono-perfcounters.c (get_cpu_times): Fix a warning.
10052
10053         * object.c (mono_class_vtable): Check if exception_type is set, and return
10054         NULL as defined by the function comments.
10055
10056 2008-07-22  Mark Probst  <mark.probst@gmail.com>
10057
10058         * mempool.c: Use malloc for every single mempool allocation if the
10059         configure option is set.  This makes it easier to track mempool
10060         allocations with tools like Valgrind.
10061
10062 2008-07-22  Jb Evain  <jbevain@novell.com>
10063
10064         * reflection.c (create_dynamic_mono_image): emit the same
10065         metadata version that SL2 does when creating a SL2 image.
10066
10067 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
10068
10069         * icall-def.h:
10070         * icall.c: New icall System.Enum:get_hashcode. This function
10071         avoids the overhead of boxing the enum to the underlying type.
10072
10073 2008-07-21  Mark Probst  <mark.probst@gmail.com>
10074
10075         * reflection.c (mono_method_get_object): Don't let static RGCTX
10076         invoke wrappers get into MonoReflectionMethods.
10077
10078 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
10079
10080         * object-internals.h:
10081         * object.c: New mono_runtime_class_init_full function
10082         that makes throwing the exception optinal.
10083
10084         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10085         for the case where the exception object is supplied.
10086
10087 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
10088
10089         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10090         old ld versions.
10091
10092         Contributed under MIT/X11 license.
10093
10094 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10095
10096         * string-icalls.c (ves_icall_System_String_InternalSplit):
10097         Optimize array allocation by caching the MonoClass of the
10098         array type.
10099
10100         * icall.c (ves_icall_Type_GetMethodsByName): Same.
10101
10102         * reflection.c (mono_param_get_objects): Same.
10103
10104 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10105
10106         * icall-def.h:
10107         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10108         It inflates the given type using the class context.
10109
10110 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
10111
10112         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10113         the vtable if it already exists.
10114
10115         * object-internals.h: Add mono_class_try_get_vtable as part of the
10116         internal API.
10117
10118         * reflection.c (mono_type_get_object): Use the MonoObject from the
10119         vtable when possible. Reduces locking contention on reflection heavy
10120         code.
10121
10122 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
10123
10124         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10125         g_bit_nth_msf () since that macro is not implemented in eglib.
10126
10127 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10128
10129         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10130         on platforms which do not support it.
10131
10132 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10133
10134         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10135
10136 2008-07-11  Martin Baulig  <martin@ximian.com>
10137
10138         * mono-debug-debugger.h
10139         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10140
10141         * mono-debug-debugger.c
10142         (_mono_debugger_interruption_request): New global volatile variable.
10143         (mono_debugger_check_interruption): New public function.
10144
10145         * threads.c
10146         (mono_thread_current_check_pending_interrupt): Call
10147         mono_debugger_check_interruption().
10148         (mono_thread_interruption_checkpoint_request): Likewise.
10149
10150 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10151
10152         * verify.c: Add more type checks for loaded types. Verify the result
10153         handle from ldtoken.
10154
10155 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10156
10157         * loader.c (field_from_memberref): Don't crash if the field
10158         wasn't found.
10159
10160 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10161
10162         * verify.c: Verify if type and method instantiations
10163         don't have invalid VAR or MVAR arguments.
10164
10165 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10166
10167         * verify.c: Fix double free of function pointer list.
10168
10169 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10170
10171         * object.c (mono_string_to_utf8): Comment the new code as it
10172         breaks under eglib.
10173
10174 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
10175
10176         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10177
10178 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10179
10180         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10181           is not throw too many times.
10182
10183         Code is contributed under MIT/X11 license.
10184
10185 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10186
10187         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
10188         debugging is turned off.
10189
10190 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
10191
10192         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
10193
10194 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10195
10196         * class-internals.h, class.c: Added new generic sharing option:
10197         Share only stuff in System.Collections.Generic, which is now the
10198         default.
10199
10200 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10201
10202         * generic-sharing.c, class-internals.h: New function for getting a
10203         generic method in a generic class given the corresponding method
10204         for a different instantiation of the class.  Partly refactored
10205         from mini-trampolines.c.
10206
10207         * class.c: Make sure generic methods have a class_inst if they are
10208         part of a generic class.
10209
10210         * metadata.c (mono_type_stack_size_internal): Handle type
10211         variables.
10212
10213 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10214
10215         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
10216         Signifies whether information on the this/vtable/mrgctx variable
10217         is available.
10218
10219 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10220
10221         * object.c, object-internals.h, icall.c: New function
10222         mono_delegate_ctor_with_method(), which does the same as
10223         mono_delegate_ctor(), but takes an explicit method argument
10224         instead of taking the method from the jit info.
10225
10226         * marshal.c: When creating a delegate with an inflated method take
10227         the "this" argument as the target class for the castclass.
10228
10229 2008-07-03  Mark Probst  <mark.probst@gmail.com>
10230
10231         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
10232         mono_jit_info_table_find() to perform very badly in some cases.
10233
10234 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
10235
10236         * icall.c (type_from_typename): Handle 'string'.
10237
10238         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
10239         wrappers into the wrapper_hash, since the key is not a MonoMethod.
10240
10241 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
10242
10243         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
10244
10245         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
10246         number of available managed allocator types.
10247
10248         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
10249         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
10250
10251 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
10252
10253         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
10254         which is a low level lock protecting just the 'jit_code_hash' hash table.
10255
10256         * domain.c: Initialize+cleanup jit_code_hash_lock.
10257         
10258 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10259
10260         * coree.c (mono_load_coree): Set coree_module_handle global variable only
10261         after initialization.
10262
10263         * coree.h: Make MonoFixupExe internal.
10264
10265         Contributed under MIT/X11 license.
10266
10267 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10268
10269         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
10270         because that is platform independent. Check NumberOfRvaAndSizes in PE32
10271         as well.
10272         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
10273         image being loaded is a CLI image and _CorValidateImage gets called.
10274
10275         * coree.h: Add MonoLoadImage.
10276
10277         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
10278         instead of LoadLibrary.
10279
10280         Contributed under MIT/X11 license.
10281
10282 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
10283
10284         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
10285         for any primitive type.
10286
10287 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
10288
10289         * object.c (mono_array_new_specific): Optimize this and the other allocation
10290         functions a bit.
10291         
10292         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
10293         domains too if mono_dont_free_domains is set.
10294
10295         * domain-internals.h (mono_dont_free_domains): New internal option controlling
10296         whenever to free appdomain data after it has been unloaded.
10297
10298         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
10299         
10300 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
10301
10302         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
10303         (mono_method_get_equivalent_method): Fix a warning.
10304
10305         * object.c (mono_message_init): Avoid looking up array types for each call.
10306
10307 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
10308
10309         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
10310         call.
10311
10312         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
10313         even more.
10314
10315         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
10316         each iteration.
10317
10318         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
10319         fields of an enum.
10320
10321 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
10322
10323         * object.c (mono_value_box): Fix boxing of nullables.
10324
10325 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
10326
10327         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10328         mono_module_handle that is defined by the linker; no initialization required.
10329         * coree.h: Remove mono_module_handle, add __ImageBase, update
10330         mono_image_open_from_module_handle.
10331         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10332         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10333         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10334         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10335         to 4 GB away from image base address. IA64 version is not tested but was very
10336         easy to implement and should work if we ever need it.
10337         * domain.c (mono_init_internal): Avoid system error message boxes.
10338         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10339         with has_entry_point. Handle do_mono_image_load fauilre correctly.
10340         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10341         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10342         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10343
10344         Contributed under MIT/X11 license.
10345
10346 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10347
10348         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10349         as part of the private mono API.
10350         
10351         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10352         Do proper argument checking for methods that belong to generic classes.
10353         Do proper type resolution for GMFH/2.
10354         Fixes #377324.
10355         
10356 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10357
10358         * verify.c (do_switch): Fix a memory corruption bug with
10359         the jump index is out of bound.
10360
10361 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10362
10363         * verify.c: Disable debug code.
10364
10365 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10366
10367         * reflection.c (mono_image_get_methodbuilder_token): Use
10368         mono_image_get_methodspec_token_for_generic_method_definition
10369         instead of mono_image_get_memberref_token. We cache more memberef
10370         entries now.
10371
10372 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10373
10374         * verify.c: Inflate exception clause types.
10375         Fixes #402606.
10376         
10377 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10378
10379         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10380         name.
10381
10382         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10383
10384         * reflection.c (mono_image_create_method_token): Same.
10385
10386 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10387
10388         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10389         It does the same as mono_image_get_methodref_token but works on
10390         MethodBuilder.
10391
10392         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10393         and always generate a methodspec. This follows the old behavior and fixes
10394         the regressions in System.Core. 
10395
10396 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10397
10398         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10399         don't event mono_class_get () succeeds. Fixes #402182.
10400
10401 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10402
10403         * metadata-internals.h: Added MonoDynamicImage::methodspec
10404         hashtable to store methodspec tokens created for MethodBuilders.
10405
10406         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10407         MethodBuilders as open instantiations if a methodspec was requested.
10408
10409         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10410
10411         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10412
10413         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10414
10415         Fixes bug #349190.
10416
10417 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10418
10419         * loader.c (method_from_methodspec): Avoid crashing if the
10420         method lookup fails.
10421
10422 2008-06-20  Dick Porter  <dick@ximian.com>
10423
10424         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10425         classes being in a different assembly.  Fixes bug 399184.
10426
10427 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10428
10429         * loader.c (mono_loader_init): Make this callable multiple times.
10430         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10431         the runtime is initialized. Fixes #401755.
10432
10433 2008-06-19  Dick Porter  <dick@ximian.com>
10434
10435         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10436         Fixes bug 349688.
10437
10438 2008-06-19  Dick Porter  <dick@ximian.com>
10439
10440         * socket-io.c:
10441         * icall-def.h: Implement Socket generic Send() and Receive()
10442         methods.  Fixes bug 395168.
10443
10444 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10445
10446         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10447
10448         Contributed under MIT/X11 license.
10449
10450 2008-06-18  Martin Baulig  <martin@ximian.com>
10451
10452         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10453         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10454         set to 80.0.  The debugger <-> runtime interface is now frozen as
10455         well.   
10456
10457         * mono-debug.c
10458         (mono_debug_debugger_version): Bump to 4.
10459
10460 2008-06-18  Martin Baulig  <martin@ximian.com>
10461
10462         * debug-mono-symfile.c
10463         (load_symfile): Don't check the minor version.
10464
10465         * debug-mono-symfile.h: Bump the version number to 50.0.
10466
10467 2008-06-18  Martin Baulig  <martin@ximian.com>
10468
10469         * debug-mono-symfile.c
10470         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10471         minimum required version.
10472
10473 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10474
10475         * reflection.c (mono_custom_attrs_from_property): Fix support for
10476         retriveving cattrs of dynamic inflated generic types.
10477
10478         * reflection.c (mono_custom_attrs_from_event): Same.
10479
10480         * reflection.c (mono_custom_attrs_from_field): Same;
10481
10482         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10483
10484         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10485         Moved to metadata.c.
10486
10487         * metadata.c: New functions to retrive the equivalent field, event
10488         of property from the generic type definition.
10489
10490         * metadata-internals.h: Added new functions from metadata.c.
10491
10492 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10493
10494         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10495         to cached in a mempool is used.
10496
10497         * metadata.c (free_generic_class): In some situations field generic_info type
10498         is not properly dup'ed and leads to double free'ing.
10499
10500         Fixes #400643.
10501
10502 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10503
10504         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10505         this arguments (will be needed later for generic methods).
10506         Collect stats.
10507
10508 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10509
10510         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10511         Create a static RGCTX invoke wrapper for methods which require it.
10512
10513 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10514
10515         * object.c, class-internals.h: New function for checking whether
10516         an individual field is special static.
10517
10518 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10519
10520         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10521         linear search since the table is sorted.
10522
10523         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10524         Fixes #324180.
10525
10526 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10527
10528         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10529         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10530
10531         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10532
10533         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10534         
10535         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10536         InterlockedCompareExchange to query and modify 
10537         thread->interruption_requested.
10538
10539         * object-internals.h (struct _MonoThread): Change interruption_requested
10540         to a gint32 so it can be modified by atomic operations. Add 
10541         'critical_region_level' from the managed side, change small_id to a guint32,
10542         add new set of 'unused' fields.
10543
10544         * appdomain.c: Bump corlib version.
10545
10546 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10547
10548         * class.c (mono_class_from_name): Search modules as well. Fixes
10549         #322332.
10550
10551 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10552
10553         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10554         templates.  Templates are generalized with an additional type_argc
10555         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10556         have type_argc>0.
10557
10558         * domain-internals.h, domain.c: New hash table for looking up
10559         MRGCTXs.
10560
10561         * metadata.c, metadata-internals.h: Rename hash and equal
10562         functions for MonoGenericInst's and make them public.
10563
10564         * class-internals.h: New data structures for the MRGCTX.  Macros
10565         for distinguishing slots in the RGCTX and the MRGCTX.
10566
10567 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10568
10569         * object.c (mono_method_get_imt_slot): Put the same methods of
10570         different instantiations of the same generic interface in the same
10571         IMT slots, to make generic sharing simpler.
10572
10573 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10574
10575         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10576
10577         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10578         This function works just like mono_metadata_field_info, but
10579         accept a mempool as argument to be used allocating memory.
10580
10581         * marshal.c (mono_marshal_load_type_info): Use new function
10582         to load marshal data into image mempool.
10583
10584 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10585
10586         * class.c (mono_class_inflate_generic_type_with_mempool):
10587         This function allows to inflate a generic type using
10588         a mempool.
10589
10590         * class.c (inflate_generic_type): Take a mempool as argument
10591         and use it to do type dup'ing.
10592
10593         * class.c (mono_class_setup_fields): Field type for generic
10594         generic classes are allocated from the image mempool.
10595
10596         * metadata.c (free_generic_class): Inflated field type is
10597         now allocated in the image mempool.
10598
10599 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10600
10601         * threads.c (thread_cleanup): Free MonoThread::name.
10602
10603 2008-06-12  Marek Habersack  <mhabersack@novell.com>
10604
10605         * appdomain.c (ensure_directory_exists): avoid unnecessary
10606         mkdir(2) calls when the shadow directory already exists.
10607         (mono_make_shadow_copy): copy also satellite assemblies from the
10608         private bin directories.
10609
10610 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10611
10612         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
10613         
10614         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
10615         a page boundary. Fixes #396219.
10616
10617 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10618
10619         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
10620         due to double-checked locking.
10621
10622 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10623
10624         * assembly.c (build_assembly_name): Release memory on failure.
10625
10626         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
10627
10628 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10629
10630         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
10631         memory on failure.
10632
10633 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10634
10635         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
10636         memory on failure.
10637
10638 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10639
10640         * loader.c (field_from_memberref): Check if field signature type is equal
10641         to the non-inflated type of the field. Fixes #398980.
10642
10643 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10644
10645         * assembly.c (mono_assembly_load_from_full): Call 
10646         mono_assembly_load_friends () outside the assemblies lock, since it can
10647         acquire the loader lock. Fixes #323696.
10648
10649         * reflection.c (resolve_object): Inflate the inst with the context for
10650         FieldOnTypeBuilderInst. Fixes #399010.
10651
10652 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10653
10654         * reflection.c (mono_image_get_field_on_inst_token): Don't
10655         inflate the field to encode it's signature. If it's a
10656         VAR or MVAR it should stay that way in the signature.
10657         Fixes #399047.
10658
10659 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10660
10661         * reflection.c (resolve_object): Release memory of inflated types.
10662
10663 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10664
10665         * loader.c (mono_method_get_signature_full): Remove assert about
10666         loading a methodspec to a generic method. We have such methods, such as
10667         System.Threading.Interlocked::CompareExchange<T>.
10668         This assert was removed since it crashes the verifier when it checks
10669         methods calling CompareExchange<T>.
10670
10671 2008-06-10  Marek Safar  <marek.safar@gmail.com>
10672
10673         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
10674         of Type array and not MonoType.
10675
10676 2008-06-10  Marek Habersack  <mhabersack@novell.com>
10677
10678         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
10679         <lupus@ximian.com>
10680
10681 2008-06-10  Martin Baulig  <martin@ximian.com>
10682
10683         * debug-mono-symfile.h
10684         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
10685         changes to the file format, but we were generating incorrect
10686         source file indices in the line number table due to a bug, which
10687         made backtraces report an incorrect source file.
10688
10689 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10690
10691         * mono-debug.c: Moved mono_debug_free_method_jit_info from
10692         mini/debug-mini.c to here.
10693
10694         * mono-debug.c (il_offset_from_address): Free memory from find_method.
10695
10696         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
10697         use it to release structs returned by mono_debug_find_method.
10698
10699 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
10700
10701         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
10702         since it needs to set method->slot for all interface methods.
10703
10704 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10705
10706         * class-internals.h: Forgot to add.
10707
10708 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10709
10710         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
10711
10712         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
10713         Lookup the custom attributes from property_hash.
10714
10715         * reflection.c (mono_save_custom_attrs): Save the custom attributes
10716         in property_hash. Allocate all data using the image mempool.
10717
10718         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
10719         for dynamic_custom_attrs to checks if the image is dynamic.
10720
10721 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10722
10723         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
10724         assemblies array.
10725         
10726         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
10727         runtime functions while holding the domain assemblies lock.
10728
10729 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10730
10731         * verify.c: Reapplied the last bit of the reverted changes.
10732
10733 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10734
10735         * verify.c: Reapplied more of the reverted changes.
10736
10737 2008-06-09  Martin Baulig  <martin@ximian.com>
10738
10739         * debug-mono-symfile.c (load_symfile): Check the major version
10740         first; if it's wrong, don't print the minor version in the error message.
10741
10742 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10743
10744         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
10745         lock instead of the domain lock to avoid deadlocks, since the thread might
10746         already hold the loader lock.
10747
10748         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
10749         (mono_thread_attach): Ditto.
10750
10751         * monitor.c: Use a TLS variable for holding the current thread id instead
10752         of calling pthread_self ().
10753         (mono_monitor_init_tls): New internal function to initialize the TLS
10754         variable.
10755         (mono_monitor_try_enter_internal): Put the owner == id check after the
10756         owner == 0 check.
10757
10758         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
10759         missed optimizations when using gcc-4.3.
10760
10761 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
10762
10763         * reflection.c (mono_dynamic_image_free): Free the memory
10764         used by MonoGenericParam in MonoDynamicImage::gen_param.
10765
10766         * reflection.c (mono_reflection_setup_generic_class): Allocate
10767         container from mempool.
10768
10769         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
10770         container from mempool.
10771
10772 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10773
10774         * threads.c (mono_set_pending_exception): New internal function to set the
10775         pending exception of the current thread.
10776         (mono_thread_get_and_clear_pending_exception): Check for 
10777         thread->pending_exception as well.
10778
10779         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
10780
10781         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
10782         it can trigger a collection.
10783
10784 2008-06-06  Martin Baulig  <martin@ximian.com>
10785
10786         Merged the `debugger-kahalo' branch.
10787
10788         * mono-debug.h
10789         (MONO_DEBUGGER_VERSION): Bumped to 72.
10790
10791         * debug-mono-symfile.h
10792         (MonoSymbolFileMethodIndexEntry): Removed.
10793         (MonoSymbolFileMethodEntry): New public typedef.
10794         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
10795         (MonoSymbolFileSourceEntry): Remove everything except `index' and
10796         `data_offset'.
10797         (MonoSymbolFileMethodEntry): Removed.
10798         (MonoSymbolFileLexicalBlockEntry): Removed.
10799         (MonoSymbolFileLineNumberEntry): Removed.
10800         (MonoDebugLexicalBlockEntry): Removed.
10801         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
10802         removed `num_il_offsets' and `il_offsets'.
10803         (MonoSymbolFile): Replace `version' with `major_version' and
10804         `minor_version'.
10805         (MONO_SYMBOL_FILE_VERSION): Replace with
10806         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
10807         `MONO_SYMBOL_FILE_MINOR_VERSION'.
10808
10809         * debug-mono-symfile.c
10810         (mono_debug_symfile_lookup_location): Add support for the new line
10811         number table format.
10812
10813 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10814
10815         * metadata.c (free_generic_class): Release the inflated
10816         MonoClass of dynamic generic classes if it's not a generic
10817         type definition.
10818
10819 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10820
10821         * verify.c: Reapplied more of the reverted changes.
10822
10823 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10824
10825         * reflection.c (lookup_custom_attr): Clean the cached flag or
10826         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
10827         for SRE types.
10828
10829 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10830
10831         * verify.c: Reapplied a small part of the reverted changes.
10832
10833 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10834
10835         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10836
10837         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
10838         previously in managed code.
10839         (mono_monitor_exit): Ditto.
10840         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
10841
10842         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
10843         the managed definition.
10844
10845 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10846
10847         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
10848
10849 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10850
10851         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
10852         
10853         * monitor.c: Add some micro optimizations.
10854
10855         * icall.c (type_from_typename): Handle 'bool'.
10856
10857 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10858
10859         * verify.c: Implement constructor verification per P III 1.8.1.4.
10860         Fixes #396716.
10861
10862 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10863
10864         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
10865         holding the assemblies lock here too.
10866
10867 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10868
10869         * verify.c: Kill stack_top function.
10870
10871 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10872
10873         * verify.c: Kill stack_get function.
10874
10875 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10876
10877         * verify.c (mono_method_verify): Last change broke the build. Fixed.
10878
10879 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10880
10881         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
10882         more reliable.
10883
10884         * verify.c (mono_method_verify): Inflate params and locals to avoid
10885         mismatch when checking for compatibility.
10886
10887 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
10888
10889         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
10890         Length prefix should be size in bytes. Fix bug #339530.
10891         
10892         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
10893         Length prefix should be size in bytes. Fix bug #339530.
10894
10895         Code is contributed under MIT/X11 license.
10896
10897 2008-06-05  Bill Holmes <billholmes54@gmail.com>
10898
10899         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
10900
10901         Contributed under MIT/X11 license.
10902
10903 2008-06-05  Martin Baulig  <martin@ximian.com>
10904
10905         * mono-debug-debugger.c
10906         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
10907
10908 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
10909
10910         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
10911         while holding the assemblies lock to prevent deadlocks. Handle the case
10912         where the search hook returns NULL but the assembly was still loaded.
10913         Fixes #323696.
10914
10915         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
10916         modify domain state.
10917
10918 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
10919
10920         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
10921         * Makefile.am (pedump_LDADD): Post-process object files and
10922         add dtrace-generated object file, if necessary.
10923
10924         Code is contributed under MIT/X11 license.
10925
10926 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10927
10928         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
10929
10930 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10931
10932         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
10933
10934 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10935
10936         * threads.c: Try to free everything from the delayed free table
10937         when shutting down threads, and set the variable to NULL after the
10938         table is freed so that calling
10939         mono_thread_hazardous_try_free_all() when shutting down the root
10940         domain doesn't crash.
10941
10942 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10943
10944         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
10945         the caller if resulting type was inflated.
10946
10947         * class.c (mono_class_create_from_typespec): Free the MonoType if it
10948         was inflated.
10949
10950         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
10951
10952
10953 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
10954
10955         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
10956         class library tests.
10957
10958         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
10959         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
10960         #396989.
10961
10962 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10963
10964         * domain.c, domain-internals.h: The JIT infos are now freed by the
10965         JIT info table code.  They are freed immediately if there only a
10966         single JIT info table in circulation.  If there is more, the free
10967         is delayed via a queue.
10968
10969         * threads.c, threads-types.h: New hazard pointer function for
10970         freeing all freeable delayed items in one sitting.
10971
10972 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10973
10974         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
10975
10976         * reflection.c (typebuilder_setup_properties): Same.
10977
10978         * reflection.c (typebuilder_setup_events): Same.
10979
10980 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10981
10982         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
10983         and use it for allocating memory.
10984
10985         * reflection.c (mono_marshal_spec_from_builder): Same.
10986
10987         * reflection.c: Change code to use new signatures.
10988
10989         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
10990
10991 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10992
10993         * decimal.c (rescale128): Put back one line which was accidently commented
10994         out.
10995         
10996         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
10997         to cause crashes.
10998
10999 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11000
11001         * reflection.c (mono_reflection_generic_class_initialize): Name must
11002         be always malloc'ed so we can free it later on. Do this for field, property
11003         and event.
11004
11005         * metadata.c (free_generic_class): Free field, property and event names.
11006
11007 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11008
11009         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
11010         instead of g_memdup.
11011
11012         * reflection.c (typebuilder_setup_fields): Same.
11013
11014 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11015
11016         * decimal.c (rescale128): Optimize this function a bit more.
11017
11018 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11019
11020         * metadata.c (free_generic_class): Release some memory from
11021         SRE generic classes.
11022
11023 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11024
11025         * reflection.c (mono_image_get_generic_field_token): No reference
11026         to name is kept, free it.
11027
11028         * reflection.c (mono_reflection_generic_class_initialize): Free
11029         more memory of the inflated field.
11030
11031 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11032
11033         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
11034         code.
11035
11036 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11037
11038         * reflection.c (mono_dynamic_image_free): Release memory used by
11039         MonoDynamicImage::array_methods elements.
11040
11041         * reflection.c (assembly_add_win32_resources): Release memory after
11042         encoding.
11043
11044 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11045
11046         * decimal.c (log2_32): Use an optimized version for this function too.
11047         
11048         * decimal.c (log2_64): Fix this on 32 bit machines.
11049
11050 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11051
11052         * class.c (mono_dup_array_type): Implement allocation using a mempool.
11053
11054         * class.c (mono_metadata_signature_deep_dup): Same.
11055
11056         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
11057         a mempool.
11058
11059         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
11060
11061         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
11062
11063         * metadata-internals.h: Added mono_metadata_signature_dup_full.
11064
11065         * class-internals.h: Update signatures to take a MonoMemPool.
11066
11067 2008-06-02  Dick Porter  <dick@ximian.com>
11068
11069         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
11070         * icall-def.h: Add
11071         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
11072         FormatMessage API to get the error text.  Fixes bug 321827.
11073
11074 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11075
11076         * decimal.c: Add some micro optimizations to make decimal operations faster.
11077
11078 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
11079
11080         * reflection.c (method_encode_clauses): Take a mempool
11081         as parameter and use it to allocate the clause array.
11082
11083         * reflection.c (mono_image_get_field_on_inst_token): Free
11084         the inflated type after encoding it.
11085
11086         * reflection.c (mono_dynamic_image_free): Free each element
11087         of MonoDynamicImage::gen_params.
11088
11089         * reflection.c (reflection_methodbuilder_to_mono_method):
11090         Allocate the generic param array from the mempool.
11091         Allocate signature params from the mempool.
11092
11093         * reflection.c (mono_reflection_generic_class_initialize):
11094         Free inflated fields after been used.
11095
11096 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11097
11098         * icall.c: Reapply the memory leak fixes as they no
11099         longer make mono crash.
11100
11101 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11102
11103         * reflection.c (mono_type_get_object): Don't store the suplied
11104         MonoType with type_hash. A caller which pass a type that
11105         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11106         might end with a pointer to freed memory.
11107         The solution is to use byval_arg or this_arg from the associated
11108         MonoClass of the supplied type.
11109
11110 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
11111
11112         * icall.c: Revert the rest of the last change as it breaks the build too.
11113
11114 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11115
11116         * icall.c: Revert a leak fix as it's breaking the build.
11117
11118 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11119
11120         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11121
11122 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11123
11124         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11125
11126 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11127
11128         * icall.c: Fix some memory leaks.
11129
11130 2008-05-29  Dick Porter  <dick@ximian.com>
11131
11132         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11133         async socket operations from the pending list when a socket
11134         closes.  Leaving it until the threadpool services the event
11135         exposes a race condition when a socket descriptor is reused.
11136         Fixes bug 377589.
11137
11138 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11139
11140         * object.c: Fix negative index check for array alocation.
11141
11142 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11143
11144         * icall.c, marshal.c: Delegate wrappers should skip visibility.
11145         This check is performed by the verifier for IL created delegates
11146         and by Delegate::CreateDelegate for programatically created ones.
11147         Fixes #372406.
11148
11149 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11150
11151         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11152         Fix code to use mono_array_size_t instead of int.
11153
11154         Based on patch by Luis F. Ortiz.
11155         Contributed under X11 license.
11156         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11157
11158 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11159
11160         * icall.c: Added ves_icall_System_Array_GetLongLength and
11161         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11162         arrays.
11163
11164         * icall.h: Export both new functions.
11165
11166         Based on patch by Luis F. Ortiz.
11167         Contributed under X11 license.
11168         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11169
11170 2008-05-28  Martin Baulig  <martin@ximian.com>
11171
11172         The debugger now requires exactly r103463.
11173
11174         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11175         This version is not supported by the debugger, wait for 72.
11176
11177 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11178
11179         * object.h: Changed array related functions to use
11180         mono_array_size_t instead of guint32. Forgot to commit this file.
11181
11182         Patch by Luis F. Ortiz.
11183         Contributed under X11 license.
11184         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11185
11186
11187 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11188
11189         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
11190         don't define it. Use the number literal instead.
11191
11192 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11193
11194         * icall.c: Changed array related functions to use
11195         mono_array_size_t instead of guint32.
11196
11197         * icall.c (ves_icall_System_Array_GetLength): Check for length
11198         overflow under MONO_BIG_ARRAYS.
11199
11200         Based on patch by Luis F. Ortiz.
11201         Contributed under X11 license.
11202         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11203
11204 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11205
11206         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
11207
11208         Based on patch by Luis F. Ortiz.
11209         Contributed under X11 license.
11210         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11211
11212 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11213
11214         * object.c, object.h: Changed array related functions to use
11215         mono_array_size_t instead of guint32.
11216
11217         Patch by Luis F. Ortiz.
11218         Contributed under X11 license.
11219         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11220
11221 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11222
11223         * object.h: Introduced mono_array_size_t typedef. This must be used
11224         in all places an array length is expected. This is 64bits wide if
11225         MONO_BIG_ARRAYS is enabled.
11226
11227         Patch by Luis F. Ortiz.
11228         Contributed under X11 license.
11229         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11230
11231 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
11232
11233         * security-manager.c class.c: Set the class exception info by calling
11234         mono_class_set_failure ().
11235
11236         * class.c (mono_class_get_exception_data): New accessor function.
11237         (mono_class_set_failure): Store exception_data in the property hash.
11238
11239         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
11240         the struct as a property.
11241
11242         * loader.c (mono_get_method_full): Store the lookup result for method
11243         tokens in method_cache, the others in methodref_cache to decrease the memory
11244         usage of hash tables.
11245
11246         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
11247         (mono_image_init): method_cache is lazy inited now.
11248
11249         * metadata-internals.h (struct _MonoImage): Change method_cache to
11250         a MonoValueHashTable, add a separate methodref_cache.
11251
11252 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
11253
11254         * number-formatter.h: Fix tables to avoid arithemtic overflow in
11255           Double.ToString as exposed by Bug #383531.
11256
11257 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
11258
11259         * number-formatter.h: Make some tables static.
11260
11261         * class.c (mono_method_set_generic_container): New accessor function.
11262         (mono_method_get_generic_container): Ditto.
11263
11264         * class-internals.h (struct _MonoMethod): Remove rarely used 
11265         'generic_container' field, store it in the property hash instead. Add 
11266         'is_generic' boolean field instead.
11267
11268         * image.c (mono_image_init): Initialize property_hash.
11269         (mono_image_close): Destroy property_hash.
11270
11271         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
11272         hold rarely used fields of runtime structures belonging to this image.
11273
11274         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
11275         to get/set method->generic_container.
11276
11277         * loader.c (mono_get_method_from_token): Avoid loading the method header for
11278         generic methods.
11279
11280 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
11281
11282         * class.c (mono_class_inflate_generic_method_full): Don't increase
11283         mono_stats.inflated_method_count for methods found in the cache.
11284
11285         * threads.c (mono_thread_request_interruption): Add a comment about 
11286         QueueUserAPC ().
11287
11288 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
11289
11290         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
11291         interface_offsets_packed table.
11292         
11293         * class.c (mono_class_init): Remove some dead code.
11294
11295         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
11296         mono_class_setup_vtable () when CAS is active to detect security problems.
11297
11298 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
11299
11300         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
11301
11302         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
11303         parameters as it's irrelevant for delegate checking.
11304
11305 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
11306
11307         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
11308
11309         * class.c (mono_class_init): Control the creation of a generic vtable using
11310         a global which is true by default, but set to false by the runtime startup code.
11311         
11312         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
11313         Disabled for now since it breaks the embedding API.
11314         Move the setup of class->methods for arrays to mono_class_setup_methods ().
11315         (mono_class_setup_methods): Add a memory barrier.
11316
11317         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
11318         when mono_class_init () doesn't compute the generic vtable.
11319         
11320 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11321         * profiler.c: Added mono_profiler_install_statistical_call_chain,
11322         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11323         to support call chains (backtrace) in the stat profiler.
11324         * profiler.c, profiler-private.h: Likewise.
11325
11326 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11327
11328         * generic-sharing.c: Init generic class when a method of it is
11329         requested via a runtime generic context.
11330
11331 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11332
11333         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11334
11335         * reflection.c (mono_type_get_object): Add a FIXME.
11336
11337         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11338
11339         * class.c (mono_class_get_method_by_index): New helper function, returning an
11340         entry in the class->methods array.
11341
11342 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11343
11344         * class.c (mono_class_init): Only do the array optimization for szarrays. 
11345         Avoid creating a generic vtable for generic instances as well.
11346         (mono_class_get_method_from_name_flags): Don't search in the metadata for
11347         generic instances.
11348
11349 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
11350
11351         * loader.c (mono_get_method_constrained): Inflate the signature
11352         with class context. Fix #325283.
11353
11354 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11355
11356         * object.c (mono_class_create_runtime_vtable): Add a comment.
11357
11358         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11359         where needed.
11360         (setup_interface_offsets): Handle the case when this is called twice for arrays.
11361         (mono_class_setup_vtable_general): Add an assert.
11362         (mono_class_init): Avoid creating a generic vtable for arrays.
11363
11364         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11365         here, let mono_class_init () do that.
11366
11367         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11368         interfaces in mscorlib.
11369
11370         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11371         interfaces. Add some comments.
11372         (mono_class_init): Call mono_class_setup_methods () here since it is no
11373         longer called by mono_class_setup_vtable ().
11374
11375         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11376         not set in class->vtable.
11377         (mono_class_create_runtime_vtable): Reenable the disabled code.
11378
11379         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11380         now as it causes some test failures.
11381
11382         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11383         if using the vtable trampoline. Also remove some strange code which put the
11384         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11385         stuff as it is no longer needed.
11386
11387 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11388
11389         * pedump.c: Give make --verify all option check code as well.
11390         Using --verify code won't check for metadata now.
11391
11392 2008-05-19  Martin Baulig  <martin@ximian.com>
11393
11394         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11395
11396         * mono-debug.c
11397         (_mono_debug_using_mono_debugger): New global variable; it's set
11398         directly by the debugger, so mono_debug_using_mono_debugger() also
11399         works after attaching.
11400
11401 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11402
11403         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11404         as we do double checked locking on MonoClass::runtime_info and
11405         MonoClassRuntimeInfo::domain_vtables.
11406
11407 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11408
11409         * debug-helpers.c (print_field_value): Fix a warning.
11410
11411 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11412
11413         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11414         set in the AOT case.
11415
11416 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11417
11418         * class.c (mono_class_setup_vtable_general): Use memory barriers
11419         as we do double checked locking on MonoClass::vtable.
11420
11421 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11422
11423         * reflection.c (resolve_object): Inflate only if the generic context
11424         is not null. Fixes #389886.
11425
11426 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11427
11428         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11429         instead of g_free.
11430
11431         Code is contributed under MIT/X11 license.
11432
11433 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11434
11435         * class.c: Revert unrelated change.
11436
11437 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11438
11439         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11440         a generic instantiation, use mono_class_from_mono_type instead of playing
11441         with MonoType directly.
11442
11443 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11444
11445         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11446         checks must ignore generic instantiations, so mono_class_has_parent is not
11447         suitable. Fixes #390128.
11448
11449 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11450
11451         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11452         it to avoid registering tokens during metadata generation. Fixes #390023.
11453
11454 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11455
11456         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11457         consistent.
11458
11459         Contributed under MIT/X11 license.
11460
11461 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11462
11463         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11464         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11465         to fixup the EXE image.
11466         (mono_cleanup): Use mono_close_exe_image.
11467         (mono_close_exe_image): New function.
11468         * image.c: Include "marshal.h".
11469         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11470         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11471         counting when the image is loaded outside of mono_image_open_full. Set status
11472         based on GetLastError.
11473         * coree.c: Include required headers. Add init_from_coree.
11474         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11475         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11476         (_CorExeMain): Set init_from_coree.
11477         (CorExitProcess): Only call ExitProcess for now.
11478         (CorBindToRuntimeEx): New stub implementation.
11479         (CorBindToRuntime): New function.
11480         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11481         (MonoFixupExe): ILONLY executables require no fixups.
11482         (mono_set_act_ctx): New function to set activation context.
11483         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11484         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11485         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11486         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11487         as MONO_INTERNAL.
11488         * domain-internals.h: Add mono_close_exe_image.
11489
11490         Contributed under MIT/X11 license.
11491
11492 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11493
11494         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11495         size for generic param and event tables. Fixes #388977.
11496
11497 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11498
11499         * loader.c (mono_method_signature): Use memory barriers because of the double
11500         checked locking pattern.
11501
11502         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11503         aborting or aborted as well. Fixes #376391.
11504         
11505         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11506         existing runtime state in the Suspend handler during shutdown.
11507
11508 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11509
11510         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11511
11512         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11513         which are starting up or shutting down.
11514
11515         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11516         this function never returns if the runtime is already shutting down.
11517
11518         * icall.c (ves_icall_System_Environment_Exit): Update after 
11519         mono_threads_set_shutting_down () signature change.
11520         
11521 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11522
11523         * class.c: Added can_access_instantiation to verify if the instantiation
11524         is visible. Fix access check for nested types as they returned TRUE
11525         before doing type and generic instantiation visibility checks.
11526
11527 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11528
11529         * reflection.c (mono_reflection_create_generic_class): The created type
11530         must have a different container from its TypeBuilder. Otherwise they
11531         will end sharing generic arguments, which is wrong.
11532
11533         Due to the sharing, making a generic instance of the created type using
11534         the TypeBuider generic arguments resulted in the generic type definition
11535         been returned, which is wrong as well.
11536
11537         As a bonus the code was leaking the type_params array. This memory should
11538         be allocated from the image mempool.
11539
11540         This fixes bug #354047.
11541
11542 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11543
11544         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11545         to here         as they are now used in assembly.c new code.
11546         Added a skipverification flag to MonoAssembly.
11547         New internal function mono_assembly_has_skip_verification.
11548
11549         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11550         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11551         part of #387274.
11552
11553 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11554
11555         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11556         needed. Fixes #387034.
11557
11558         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11559
11560 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11561
11562         * assembly.c (mono_assembly_load_reference): Prevent crash while
11563         disassembling Silverlight 2.0 executables while we still do not
11564         have GACed libraries.
11565
11566 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11567
11568         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11569
11570 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11571
11572         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11573         of the dynamic case. Fixes #387404.
11574
11575 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11576
11577         *verify.c (mono_verifier_is_class_full_trust): If under
11578         verify_all and the verifier mode was not set, only
11579         gac and corlib types are fulltrust. This makes --verify-all
11580         usable to detect unverifiable code, which is the expected
11581         use case.
11582
11583 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11584
11585         * verify.h: Ops, commited the header with debug
11586         enabled.
11587
11588 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11589
11590         * verify.c (merge_stack): Use the new value on unverifiable
11591         stack merges.
11592
11593         * verify.c (verify_type_compatibility_full): Comparison
11594         of nullable types can't use mono_class_is_assignable_from.
11595
11596         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
11597         that makes all verification errors be reported.
11598
11599         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
11600         mono_method_verify.
11601
11602 2008-05-05  Robert Jordan  <robertj@gmx.net>
11603
11604         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
11605         support for value types. See #386415.
11606
11607         * object.c: comments.
11608
11609         Code is contributed under MIT/X11 license.
11610
11611 2008-05-05  Martin Baulig  <martin@ximian.com>
11612
11613         * debug-mono-symfile.h
11614         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
11615         for old pre-terrania symbol files.
11616
11617 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11618
11619         * mono-config.c: Add ppc64 architecture.
11620
11621         Code is contributed under MIT/X11 license.
11622
11623 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11624
11625         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
11626           PPC64 uses function descriptors as well.
11627
11628         Code is contributed under MIT/X11 license.
11629
11630 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
11631
11632         * object.c (compute_class_bitmap): Ignore literal static fields.
11633
11634         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
11635         var has an invalid format.
11636         (describe_ptr): Add some sanity checks for the vtable.
11637         (add_nursery_frag): Clear unused nursery fragments.
11638         (major_collection): Clear all remaining nursery fragments.
11639
11640 2008-05-03  Robert Jordan  <robertj@gmx.net>
11641
11642         * image.c, metadata-internals.h: add thunk_invoke_cache.
11643
11644         * marshal.c, marshal.h: implement
11645         mono_marshal_get_thunk_invoke_wrapper ().
11646
11647         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
11648
11649         Code is contributed under MIT/X11 license.
11650
11651 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11652
11653         * verify.c (do_leave): Empty the stack.
11654
11655 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11656
11657         * class.c (mono_class_is_assignable_from): Variance
11658         doesn't work between reference and value types. For example,
11659         given type C<T+>, C<int32> is not assignable to C<object>.
11660         Break the argument checking loop on first error. 
11661
11662 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
11663
11664         * icall.c : base64_to_byte_array() needs some more strict
11665           check for sequence of '=' characters. Patch by Santa
11666           Marta (http://deee.g.hatena.ne.jp/santamarta).
11667
11668           Contributed under MIT/X11 license.
11669           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
11670
11671 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
11672
11673         * domain.c: Disable LoadLibrary support to fix Win32 build.
11674
11675         Code is contributed under MIT/X11 license.
11676
11677 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
11678
11679         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
11680         to help with cache behaviour.
11681
11682 2008-05-01  Miguel de Icaza  <miguel@novell.com>
11683
11684         * appdomain.c (mono_domain_from_appdomain): Add new accessor
11685         method. 
11686
11687 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
11688
11689         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
11690
11691 2008-05-01  Dick Porter  <dick@ximian.com>
11692
11693         * process.c (process_get_fileversion): Only pass 16 bits of
11694         language ID to VerLanguageName.  Fixes bug 381204.
11695
11696 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11697
11698         * verify.c (mono_method_verify): Fix the comparison
11699         operator for code bounds check.
11700
11701 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11702
11703         * verify.c (mono_method_verify): Check the bounds of
11704         all access of the code array.
11705
11706 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
11707
11708         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
11709
11710 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
11711
11712         * image.c (mono_image_strong_name_position): Fix return value when the rva is
11713         not valid.
11714
11715 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
11716
11717         * loader.c (mono_get_method_from_token, mono_method_signature): Add
11718         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
11719         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
11720         fixup main EXE images when using mono.exe for mixed-mode assembly support.
11721         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
11722         mono_runtime_load.
11723         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
11724         runtime initialization from metadata.
11725         * assembly.c: Remove obsolete ceGetModuleFileNameA.
11726         (mono_set_rootdir): Use mono_get_module_file_name.
11727         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
11728         handles.
11729         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
11730         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
11731         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
11732         MonoCLIImageInfo. Add support for module handles.
11733         (load_cli_header): Update mono_cli_rva_image_map signature.
11734         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
11735         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
11736         (mono_image_rva_map): Add support for module handles.
11737         (mono_image_ensure_section_idx): Add support for module handles.
11738         (mono_image_close): Add support for module handles.
11739         (do_load_header): Add support for module handles.
11740         (mono_image_open_from_module_handle): New function for internal use.
11741         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
11742         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
11743         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
11744         handles.
11745         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
11746         * image.h: Add mono_image_fixup_vtable.
11747         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
11748         support.
11749         * coree.h: New file.
11750         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
11751         unsupported native code.
11752         (mono_marshal_set_callconv_from_modopt): New function splitted from
11753         mono_marshal_get_managed_wrapper.
11754         (mono_marshal_get_managed_wrapper): Use
11755         mono_marshal_set_callconv_from_modopt.
11756         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
11757         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
11758         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
11759         that results in a deadlock when the runtime is loaded in _CorDllMain.
11760         * Makefile.am: Add coree.c and coree.h.
11761
11762         Contributed under MIT/X11 license.
11763
11764 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11765
11766         * generic-sharing.c: Search for type arguments in array element
11767         types as well.
11768
11769 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11770
11771         * class-internals.h, generic-sharing.c: New, small runtime generic context.
11772
11773         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
11774
11775         * object.c: Don't setup the RGCTX when the vtable is created,
11776         because we're setting it up lazily now.
11777
11778 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
11779
11780         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
11781         64 bit support.
11782
11783 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11784
11785         * verify.c (verify_class_for_overlapping_reference_fields): 
11786         If class is under fulltrust allow reference types to overllap
11787         if they have the same RVA.
11788
11789 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11790
11791         * pedump.c: Added new flag valid-only, that makes the verifier
11792         behaves just like --security=validil. It won't fail type load
11793         due to unverifiable restrictions.
11794
11795 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11796
11797         * class-internals.h (struct MonoMethod): Added a verification_success
11798         field to cache verifier executions. Reduced MonoMethod:slot size by
11799         one bit.
11800
11801 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
11802
11803         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
11804         instead of a 'vt' argument to save an indirection and to allow these to be used
11805         for valuetypes.
11806         (scan_vtype): New helper function to scan an area using a gc descriptor.
11807         (mono_gc_wbarrier_value_copy): Implement this.
11808         (handle_remset): Add support for REMSET_VTYPE.
11809         (find_in_remset_loc): Ditto.
11810         (mono_gc_base_init): Allow some debugging options to be controlled through the
11811         use of the MONO_GC_DEBUG env variable.
11812         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
11813         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
11814
11815 2008-04-23  Martin Baulig  <martin@ximian.com>
11816
11817         * domain.c (mono_domain_create): Move the call to
11818         mono_debug_domain_create() down, after allocating the domain id.
11819
11820 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11821
11822         verify.c (verify_class_for_overlapping_reference_fields): Skip
11823         static fields while verifying for overlapping fields as they
11824         don't matter at all.
11825
11826 2008-04-23  Marek Habersack  <mhabersack@novell.com>
11827
11828         * domain-internals.h: added a declaration of
11829         mono_make_shadow_copy.
11830
11831         * assembly.c (mono_assembly_open_full): shadow copying of
11832         assemblies moved to here, so that all the assemblies within the
11833         application domain's private binary directories can be
11834         processed. Fixes bug #380546
11835
11836         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
11837         mono_make_shadow_copy and made non-static. The decision whether
11838         to shadow-copy an assembly is made based on its location - it's
11839         copied if it's in one of the private application domain binary
11840         directories and its different to the target file in the shadow
11841         directory. Fixes bug #380546
11842
11843 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
11844
11845         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
11846
11847         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
11848         types.
11849
11850         * reflection.c (mono_image_create_token): Handle 
11851         Method/ConstructorOnTypeBuilderInst.
11852         (resolve_object): Ditto.
11853         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
11854         so it can be called from resolve_object. Also handle the case when the inflated
11855         class already has its methods setup.
11856
11857 2008-04-21  Martin Baulig  <martin@ximian.com>
11858
11859         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
11860
11861 2008-04-20  Geoff Norton  <gnorton@novell.com>
11862
11863         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
11864         pointer dereference.
11865
11866 2008-04-15  Marek Habersack  <mhabersack@novell.com>
11867
11868         * appdomain.c (try_load_from): if IOMAP is in effect, call the
11869         portability API to look up the assembly file. Fixes behavior in
11870         situations when the application has a bin/ directory, but the
11871         assembly search patch refers to Bin/ (and thus the requested file
11872         name is Bin/SomeLibrary.dll). Fixes bug #379888
11873
11874 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
11875
11876         verify.c (mono_type_is_generic_argument): Extracted this check
11877         from a dozen places to here.
11878
11879         verify.c: Fixed all issues related to boxing generic arguments
11880         and their constraints.
11881
11882 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
11883
11884         verify.c (mono_class_interface_implements_interface): Fix win32 build.
11885
11886 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
11887
11888         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
11889         isn't finished yet. Fixes #363447.
11890
11891 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
11892
11893         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
11894         Fixes #346419.
11895
11896 2008-04-13  Jb Evain  <jbevain@novell.com>
11897
11898         * domain.c: update the 2.1 profile versions.
11899         Merged from the Moonlight 2 branch.
11900
11901 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
11902
11903         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
11904         mscorlibs for the non-refonly case as well.
11905
11906         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
11907         in mono_assembly_load_from_full (). Fixes #378924.
11908
11909 2008-04-11  Geoff Norton  <gnorton@novell.com>
11910
11911         * icall.c: The global extern environ doesn't exist on Mac.  We
11912         need to call NSGetEnviron instead.
11913
11914 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11915
11916         verify.c: Add generic method constraint verification.
11917
11918 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11919
11920         class.c (mono_class_inflate_generic_method_full): Add a long
11921         explanation to the is_mb_open hack. Remove the FIXME.
11922
11923 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11924
11925         * verify.c (mono_method_verify): Mark all unknown opcodes
11926         as invalid. Mark jmp as unverifiable.
11927
11928 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11929
11930         * verify.c: Add code to do type constraint verification on class instances.
11931
11932         * verify.c (mono_verifier_verify_class): Use the type constraint 
11933         verification code.
11934
11935 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11936
11937         * class.c (mono_class_get_field_default_value): Don't pass cindex
11938         as hint to mono_metadata_get_constant_index. The local is not initialized
11939         and should contain garbage most of the time. This could only work
11940         with a lot of luck.
11941
11942 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11943
11944         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
11945
11946 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11947
11948         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
11949
11950         * class.c (mono_class_from_generic_parameter): Save the token of the
11951         generic param in MonoClass::sizes.generic_param_token.
11952
11953         * reflection.c (mono_custom_attrs_from_class): If the class type is
11954         VAR or MVAR retrieve the attributes of the generic param.
11955
11956 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11957
11958         * class.c (mono_class_init): Do class verification if the verifier
11959         is enabled.
11960
11961 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11962
11963         * verify-internal.h: Added mono_verifier_verify_class.
11964
11965         * verify.c: Added mono_verifier_verify_class. It checks for
11966         classes with explicit layout that have overlapping reference fields.
11967
11968         * pedump.c: Init the verifier state prior to verification. Fixed
11969         command line arguments.
11970
11971 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11972
11973         * Makefile.am: Added verify-internals.h, hopefully fix the build.
11974
11975 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
11976
11977         * verify-internals.h: Fix a warning.
11978
11979 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11980
11981         * verify-internals.h: New header with the verifier configuration
11982         extracted from mini.c.
11983
11984         * verify.c: Implemented the new functions exported by verify-internals.h.
11985
11986 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11987
11988         * verify.c: Add proper verification of ckfinite.
11989
11990 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11991
11992         * verify.c (do_conversion): Improved error message to something
11993         more meanfull.
11994
11995         * verify.c (check_is_valid_type_for_field_ops): Fix to work
11996         with primitive types.
11997
11998 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11999
12000         * verify.c: Added tail prefix checking. Marked icall
12001         as unverifible.
12002
12003 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12004
12005         * verify.c: Fix the detection of branches to the middle
12006         of an instruction.
12007
12008 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
12009
12010         * verify.c: Implemented verification of volatile. and
12011         unaligned. prefix. Check if a type is valid after retrieving it.
12012
12013 2008-04-01  Dick Porter  <dick@ximian.com>
12014
12015         * process.c (process_get_fileversion): If there's no string block,
12016         set the file language to en_US.  Fixes the other new part of bug
12017         374600.
12018
12019 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
12020
12021         * class.c: New functions mono_method_can_access_field_full and
12022         mono_method_can_access_method_full. They perform type visibility
12023         and type site check.
12024
12025         * class-internal.h: Added exported functions.
12026
12027         * verify.c: Use new functions to implement proper visibility checks.
12028
12029 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
12030
12031         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
12032
12033 2008-03-28  Dick Porter  <dick@ximian.com>
12034
12035         * process.c (process_get_fileversion): Use the first language ID
12036         we see, rather than insisting on an invariant language.  Fixes bug
12037         374600.
12038
12039 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
12040
12041         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
12042         the streams to fix reading of invalid memory later.
12043
12044         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
12045         to ease debugging.
12046
12047 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12048
12049         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
12050         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
12051
12052 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
12053         * threads.h: Added MonoThreadManageCallback type and
12054         mono_thread_set_manage_callback prototype
12055         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
12056         (used to store the mono_thread_manage callback).
12057         * threads.c: Added mono_thread_set_manage_callback, and handle
12058         "MonoThread->manage_callback" in build_wait_tids.
12059
12060 2008-03-26  Dick Porter  <dick@ximian.com>
12061
12062         * process.c (process_get_fileversion): Set FileVersionInfo strings
12063         to Empty when the resource doesn't have the particular info.
12064         Fixes bug 355717.
12065
12066 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
12067
12068         * verify.c (mono_method_verify): Proper prefix validation.
12069
12070 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12071
12072         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
12073         itself in a separate argument instead of throwing them. Fixes #373448.
12074
12075         * appdomain.c: Bump corlib version.
12076
12077 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
12078
12079         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12080
12081 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
12082
12083         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12084         version macros.
12085
12086 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12087
12088         * generic-sharing.c, class-internals.h: Code for putting
12089         reflection types into the runtime generic context.
12090
12091 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
12092
12093         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12094         Fixes #340662. 
12095
12096
12097 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
12098
12099         * verify.c (VerifyContext): Added instruction prefix data to the struct.
12100
12101         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12102
12103         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12104
12105         * verify.c (do_cast): Let the result value keep the boxed status.
12106
12107         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12108
12109 2008-03-17  Jb Evain  <jbevain@novell.com>
12110
12111         * reflection.c: when running on a 2.0 runtime, emit
12112         unconditionally the #~ header version as 2.0, and the
12113         CLI header version as 2.5, for symmetry's sake with csc.
12114
12115 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12116
12117         * class.c: Remove the unused cache_interface_offsets stuff.
12118
12119         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12120         profiler.c: Fix warnings.
12121
12122 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12123
12124         * generic-sharing.c, class-internals.h: Support for putting
12125         methods into the runtime generic context.
12126
12127 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12128
12129         * class.c (mono_class_setup_fields): Ignore calls made to this function for
12130         classes which are generic instances of not-yet finished typebuilders. Fixes
12131         #351172.
12132
12133         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12134
12135 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
12136
12137         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12138
12139         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12140         field, replace it with a hash table in MonoDynamicImage.
12141
12142         * reflection.c (inflate_mono_method): Access the generic definition object from
12143         image->generic_def_objects instead of imethod->reflection_info.
12144
12145         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
12146
12147         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12148         
12149         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12150         function in reflection.c so it is easier to keep in sync with the dynamic image
12151         creation code.
12152
12153         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12154         mono_image_close ().
12155
12156 2008-03-15  Mark Probst  <mark.probst@gmail.com>
12157
12158         * class.c (mono_class_generic_sharing_enabled): Disable generic
12159         sharing for all architectures except AMD64 and x86 to fix build.
12160
12161 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12162
12163         * verify.c: Use the generic definition MonoGenericContext when available.
12164         Remove code for checking generics instance compatibility in favor of
12165         mono_class_is_assignable_from.
12166
12167 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12168
12169         * marshal.c, marshal.h, metadata-internals.h, image.c,
12170         wrapper-types.h: New wrapper for invoking a shared static method
12171         without having to pass the runtime generic context argument.
12172
12173 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12174
12175         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12176
12177 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12178
12179         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12180         
12181         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
12182         create a token from a FieldOnTypeBuilderInst.
12183         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
12184         (resolve_object): Ditto.
12185
12186         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
12187         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
12188
12189 2008-03-14  Martin Baulig  <martin@ximian.com>
12190
12191         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
12192
12193         * debug-mono-symfile.h
12194         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
12195         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
12196
12197 2008-03-10  Martin Baulig  <martin@ximian.com>
12198
12199         * debug-mono-symfile.h
12200         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
12201         `lexical_block_table_offset'.
12202         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
12203         `lexical_blocks'.
12204         (MonoSymbolFile): Added `version'.
12205
12206         * mono-debug.h
12207         (MonoDebugLexicalBlockEntry): Removed.
12208         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
12209         `lexical_blocks'.
12210
12211         * mono-debug.c (mono_debug_add_method): Don't compute lexical
12212         blocks here; the debugger now does this internally.
12213
12214 2008-02-27  Martin Baulig  <martin@ximian.com>
12215
12216         * object.c (mono_runtime_exec_main): Call
12217         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
12218         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
12219
12220 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12221
12222         * verify.c (verify_type_compatibility_full): Allow native int to be converted
12223         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
12224
12225 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12226
12227         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
12228         ldftn with a virtual method.
12229
12230 2008-03-13  Geoff Norton  <gnorton@novell.com>
12231
12232         * decimal.c:  Only include memory.h if the platform has it.
12233
12234 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
12235
12236         * assembly.c, class.c, metadata-internals.h: make sure public key
12237         tokesns are compared in a case-insensitive way. Also, all
12238         the lookups in the GAC use a lowercase public key token
12239         (gaacutil already does the lowercasing on install). Fixes
12240         bug #369541.
12241
12242 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
12243
12244         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
12245         and return value.
12246
12247 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
12248
12249         * image.c: when someone loads a mscorlib from a file, return the
12250         currently loaded mscorlib (fixes bug #369253).
12251
12252 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12253
12254         * class.c: handle types with no parents by forcing them to have
12255         System.Object as a parent and marking them as broken (this currently
12256         allows the first part of bug #369173 to work as well, likely because
12257         we don't check for typeload exceptions everywhere yet).
12258
12259 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
12260
12261         * class.c: more complete check that types belong to corlib
12262         (fixes second part of bug #369173).
12263
12264 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
12265
12266         * generic-sharing.c:  Including glib.h for the MSVC builds to define
12267           "inline" to "__inline" before including mono-membar.h.
12268           
12269         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
12270           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
12271           MSVC builds.
12272
12273         Contributed under MIT/X11 license.
12274
12275 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12276
12277         * verify.c (do_invoke_method): Remove return type validation.
12278
12279         * verify.c (do_ret): Do return type validation at return site instead of
12280         call site.
12281
12282 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12283
12284         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
12285
12286         * verify.c: Some todos cleaned and improved a few error messages.
12287
12288 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
12289
12290         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
12291
12292 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12293
12294         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
12295         system types correctly.
12296
12297         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
12298         function.
12299
12300 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12301
12302         * assembly.c (build_assembly_name): Fix a warning.
12303
12304 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
12305
12306         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
12307         the called function takes an object type argument. Fixes storing or
12308         valuetypes across remoting as well as reducing memory usage.
12309         * image.c, metadata-internals.h: remove now unused ldfld_remote and
12310         stfld_remote wrapper caches.
12311
12312 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12313
12314         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
12315         is not found.
12316
12317         * reflection.c (mono_image_register_token): New helper function to save
12318         a token->object mapping.        
12319
12320         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12321         managed code.
12322
12323         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12324         one dimension arrays. Fixes #367670.
12325         (mono_reflection_get_type_internal): Ditto.
12326
12327 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12328
12329         * marshal.c: mono_load_remote_field_new() always returns object.
12330         so use the proper signature (fixes bug #366445).
12331
12332 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12333         
12334         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
12335         add an 'inline_failure' flag instead.
12336
12337 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12338
12339         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12340         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
12341         contains the location of "this", used for exception handling.
12342
12343 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12344
12345         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12346         their size on all platforms for perf reasons.
12347
12348 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12349
12350         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12351         object-internal.h
12352
12353         * object-internal.h: Same.
12354
12355 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12356
12357         * reflection.h: Fix the build I just broke.
12358
12359 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12360
12361         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12362         Test if a token is valid, this remove explicit usage of 
12363         MonoDynamicImage::tokens from the verifier code.
12364
12365         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12366
12367         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12368         instead of direct access to MonoDynamicImage::tokens.
12369
12370 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12371
12372         * verify.c (token_bounds_check): Fix the build I just broke.
12373
12374 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12375
12376         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12377
12378         * verify.c (verifier_load_method): Fixed the errors message.
12379
12380         * verify.c (mono_method_verify): Fixed a debug message.
12381
12382 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12383
12384         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12385         mono-perfcounters.h, class-internals.h: support for predefined
12386         writable counters, query of categories and counters, bugfixes.
12387
12388 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12389
12390         * verify.c (do_refanytype): Verify the refanytype opcode.
12391
12392         * verify.c (mono_method_verify): Use do_refanytype.
12393
12394 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12395
12396         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12397
12398         * verify.c (mono_method_verify): Use do_mkrefany.
12399
12400 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12401
12402         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12403         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12404         implementation.
12405
12406 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12407
12408         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12409         the type load exception.
12410
12411 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12412
12413         * verify.c: Added a few FIXME for method signatures
12414
12415         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12416         of mono_method_get_signature and get vararg call working. Removed unused
12417         checks for return value.
12418
12419         * verify.c (do_refanyval): Verify the refanyval opcode.
12420
12421         * verify.c (mono_method_verify): Implemented verification of arglist and
12422         use do_refanyval.
12423
12424 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12425
12426         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12427         vtypes to marshal.c.
12428
12429         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12430         it works for AOT as well.
12431
12432 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12433
12434         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12435         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12436         the system time is adjusted.
12437
12438 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12439
12440         * icall.c, icall-def.h: use the new time functions (fixes the
12441         non-monotonic behaviour of TickCount).
12442
12443 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12444
12445         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12446         it breaks the build.
12447         
12448         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12449         cattr is not finished yet.
12450
12451 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12452
12453         * verify.c: Proper token validation for field, method and type.
12454
12455 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12456
12457         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12458
12459         * loader.c (method_from_memberref): Generate type load error instead of method missing
12460         if the type is not found.
12461
12462 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12463
12464         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12465         some of the conversions caused the generation of a marshal directive exception.
12466
12467 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12468
12469         verify.c: Report which exception should be thrown by the JIT.
12470         Added a lot of FIXME notes.
12471
12472 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12473
12474         * generic-sharing.c: Runtime generic context slots are not
12475         instantiated on init anymore.  Instead, provide function to do the
12476         instantiating on demand.
12477
12478         * class-internals.h: Added vtable to runtime generic context.
12479         Macros for encoding direct and indirect slot offsets in one
12480         guint32.
12481
12482 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12483
12484         * object.c, generic-sharing.c: Moved some generic sharing code
12485         from object.c to generic-sharing.c.
12486
12487         * generic-sharing.c: Added support for extensible runtime generic
12488         context.
12489
12490         * metadata-internals.h: Two new hash tables in MonoImage for
12491         extensible runtime generic context support.
12492
12493         * domain.c: Unregister generic vtables upon domain unloading.
12494
12495         * image.c: Destroy new hash tables upon image unloading.
12496
12497         * metadata.c: Unregister generic subclasses upon image unloading.
12498
12499         * class-internals.h: New data structure for runtime generic
12500         context template.  New fields in the runtime generic context for
12501         extensible part.
12502
12503         * Makefile.am: Added generic-sharing.c.
12504
12505 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12506
12507         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12508         there is a pending loader exception, raise it.
12509
12510         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12511         same.
12512
12513         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12514         same.
12515
12516         Fixes #363450.
12517
12518 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12519
12520         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12521
12522         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12523         
12524         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12525         ref-only requests for compatibility with MS.
12526
12527 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12528
12529         * reflection.c (mono_custom_attrs_from_method): Don't silently
12530         return an empty list for generic method instances.
12531         (mono_custom_attrs_from_param): Likewise.
12532
12533 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12534             Raja R Harinath  <harinath@hurrynot.org>
12535
12536         Fix #354757
12537         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12538         * class.c (mono_class_inflate_generic_method_full): Initialize it
12539         when a fully-open method is instantiated.
12540         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12541         to new field.
12542         * reflection.c (inflate_mono_method): Don't create a temporary context.
12543
12544 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12545
12546         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12547         Compute correct value, to prepare for imethod->reflection_info going away.
12548
12549 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12550
12551         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12552
12553 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12554
12555         * verify.c: Implement skip visibility flag.
12556
12557 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12558
12559         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12560         which contains an extra field to tell the kind of exception that should be thrown.
12561
12562         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12563
12564 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12565
12566         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12567         'method' is updated.
12568
12569 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12570
12571         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12572         explicit layout as well. Fixes #360375.
12573
12574 2008-02-11  Geoff Norton  <gnorton@novell.com>
12575
12576         * loader.c: Guard and dereference against inflated generic methods
12577
12578 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12579
12580         * class.c: Include Retargetable spec in assembly name.
12581         * assembly.c: Always include PublicKeyToken spec in assembly name
12582         (with value "null" if assembly is not signed), and include
12583         Retargetable spec.
12584         * icall-def.h: Added icall for Assembly.get_fullname.
12585         * icall.c: Added icall returning the fullname of an assembly.
12586
12587 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12588
12589         * class.c (mono_class_setup_vtable_general): Add a missing call to
12590         mono_class_setup_methods () which is needed in the AOT case.
12591
12592 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
12593
12594         * verify.c (mono_type_get_stack_name): Added. Return the name for the
12595         stack type of the given MonoType.
12596
12597         * verify.c (verify_type_compatibility_full): Handle the void type.
12598
12599         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
12600         way stack merging works.
12601
12602         * verify.c (store_local): Improved verification message.
12603
12604         * verify.c (do_branch_op): If the merging is invalid, the method
12605         is unverifiable and not invalid. Improved error message.
12606
12607         * verify.c (merge_stacks): Properly merge a boxed valuetype and
12608         a reference type diferent than System.Object. Improved error
12609         message.
12610
12611 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
12612
12613         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
12614
12615         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
12616         type of an enum even if the argument is byref.
12617
12618         * verify.c: Replace all explicit uses of enumtype and enum_basetype
12619         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
12620
12621         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
12622
12623         *verify.c (verify_type_compatibility_full): Make enum types
12624         compatible with their base types.
12625
12626         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
12627         types are compatible for the special case of a boxed valuetype and
12628         System.Object.
12629
12630         * verify.c (verify_stack_type_compatibility): The function
12631         is_compatible_boxed_valuetype was extracted from here.
12632
12633         * verify.c (push_arg): Only set ctx->has_this_store if the method
12634         is not static.
12635
12636         * verify.c (do_ldelem): Fixed a typo in an error message and added
12637         strict check for mixing int32 and native int as the array type
12638         and ldelem type.
12639
12640         * verify.c (merge_stacks): Consider boxed valuetypes in the
12641         compatibility checks.
12642
12643 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
12644         * profiler.h: (MonoGCEvent): Added start-stop the world events.
12645
12646 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12647         *class.c: use_new_interface_vtable_code: renamed the env var to have
12648         a "MONO_" prefix, and fix the logic to enable it by default.
12649
12650 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12651         *class.c:
12652         mono_class_setup_vtable_general: rewrote the way in which interface
12653         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
12654         makes the code more maintainable.
12655         For now the old code is still there, and can be activated setting
12656         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
12657
12658 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
12659
12660         * verify.c: guarded some debug functions around and #ifdef.
12661
12662         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
12663
12664 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12665
12666         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
12667         changes for now since they seem to break too many things.
12668
12669 2008-02-05  Mark Probst  <mark.probst@gmail.com>
12670
12671         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
12672         mono_marshal_find_nonzero_bit_offset): Added macro and function
12673         for finding the byte- and bit-offset of a bitfield within a
12674         struct.
12675
12676 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
12677
12678         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
12679         (mono_marshal_get_struct_to_ptr): Ditto.
12680
12681         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
12682         cctor_signature.
12683
12684 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
12685
12686         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
12687         between methods for non-corlib types.
12688
12689 2008-02-02  Geoff Norton  <gnorton@novell.com>
12690
12691         * loader.c (mono_method_get_param_names): Populate the parameter name for 
12692         generic parameters as well. (Fixes #342536)
12693
12694 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
12695
12696         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
12697
12698         * verify.c (do_invoke_method): Fix for calling with byref structs.
12699
12700         * verify.c (do_cast): push a boxed value type based on the type token and not
12701         the type of stack.
12702
12703 2008-01-31  William Holmes  <billholmes54@gmail.com>
12704
12705         * process.c (process_module_string_read): Check the size returned form 
12706           VerQueryValue to avoid out of memory exception. 
12707
12708 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
12709
12710         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12711         Handle properly modules which are not in the moduleref table. Fixes
12712         #356938.
12713
12714 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
12715
12716         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
12717         the dynamic case which is now in managed code.
12718         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
12719
12720         * marshal.c (mono_string_to_bstr): Fix a warning.
12721         (init_com_provider_ms): Ditto.
12722
12723         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
12724
12725         * exception.c (mono_get_exception_out_of_memory): New helper function.
12726
12727 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
12728
12729         * marshal.c: Add support for BSTR marshalling
12730         using other COM systems.
12731
12732         Code is contributed under MIT/X11 license.
12733
12734 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12735
12736         * object.c (mono_runtime_invoke_array): reverted previous
12737         commit as it breaks the build.
12738
12739 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12740
12741         * object.c (mono_runtime_invoke_array): Verify arguments for
12742         invalid types. Fixes #348522.
12743
12744 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12745
12746         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
12747         non-final virtual calls using call. 
12748
12749         * verify.c (do_invoke): fixed some TODOs.
12750
12751         * verify.c (push_arg): set has_this_store for "ldarga 0".
12752
12753 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
12754
12755         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
12756         which belong to an inflated class. Fixes #356531.
12757
12758 2008-01-26  Robert Jordan  <robertj@gmx.net>
12759
12760         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
12761         which resort to FindFirstFile when a certain error condition
12762         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
12763         Code is contributed under MIT/X11 license.
12764
12765 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
12766
12767         * marshal.c (emit_marshal_string): Fix out string marshalling
12768         to use specified encoding. Fixes #323900.
12769
12770         Code is contributed under MIT/X11 license.
12771
12772 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
12773
12774         * class.c (mono_class_inflate_generic_method_full): Don't modify
12775         iresult->context after cache check.
12776
12777 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
12778
12779         * class.c (mono_class_inflate_generic_method_full): Change the
12780         struct assignments to memcpy for better visibility and add some comments.
12781
12782 2008-01-23  Dick Porter  <dick@ximian.com>
12783
12784         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
12785         procedure, and make it work on windows.
12786
12787 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
12788
12789         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
12790         a MonoReflectionTypeBuilder since it is always of that type.
12791
12792         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
12793
12794         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
12795
12796         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
12797         
12798         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
12799
12800         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
12801
12802         * reflection.c (mono_reflection_create_runtime_class): Remove already created
12803         instantiations from the type cache.
12804
12805 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12806
12807         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
12808
12809         * verify.c (do_unbox_value): push a controled mutability managed pointer.
12810
12811 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12812
12813         * verify.c (do_ldstr): added, verifies if the #US token is valid.
12814
12815         * verify.c (mono_method_verify): removed old TODO
12816
12817 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12818
12819         * verify.c (do_newobj): add visibility check.
12820
12821 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12822
12823         * verify.c (do_load_function_ptr): add visibility check.
12824
12825 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
12826         *class.c:
12827         mono_generic_class_get_class: hook profiler events.
12828         mono_field_get_offset: added to support heap-shot in the new profiler.
12829         *class.h: exported mono_field_get_offset.
12830         * reflection.c:
12831         mono_reflection_setup_internal_class: hook profiler events.
12832
12833 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
12834
12835         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
12836         argument here too and use it to avoid checking for pending exceptions if 
12837         possible.
12838
12839 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
12840
12841         * assembly.c (build_assembly_name): add arg for passing the assembly
12842         flags. Do not consider a PublicKey with value "null" valid.
12843         (mono_assembly_name_parse_full): added boolean argument that will be
12844         set if the assembly name contains a PublicKeyToken spec. Added support
12845         for the Retargetable spec for which only Yes or No are allowed as valid
12846         value. Consider assembly name invalid if Retargetable spec is set, but
12847         either version, culture or public key (token) are not specified.
12848         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
12849         with implementation in assembly.c.
12850         * icall.c (fill_reflection_assembly_name): also copy assembly flags
12851         from MonoAssemblyName.
12852         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
12853         introduced argument for mono_assembly_name_parse_full to know if the
12854         assembly name has a PublicKeyToken spec, and if it has instruct
12855         fill_reflection_assembly_name to use default value for keyToken (if
12856         PublicKeyToken is null).
12857
12858 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12859
12860         * verify.c (mono_method_verify): fixed ovf ops with
12861         float values. They are unverifiable now.
12862
12863 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12864
12865         * class.c (set_failure_from_loader_error): add BadImageException to the
12866         list of exceptions that can cause a type to fail to load.
12867
12868         * class.c (mono_class_get_exception_for_failure): same.
12869
12870 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
12871
12872         * verify.c (in_any_exception_block): added, check if offset
12873         is part of any exception handling clause.
12874
12875         * verify.c (get_stack_type): added VAR and MVAR types.
12876
12877         * verify.c (do_stobj): better error messages.
12878
12879         * verify.c (do_cpobj): added, check cpobj.
12880
12881         * verify.c (do_initobj): added, check initobj.
12882
12883         * verify.c (do_sizeof): added, check sizeof.
12884
12885         * verify.c (do_localloc): added, check localloc.
12886
12887         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
12888
12889 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
12890
12891         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
12892         save_lmf/restore_lmf opcodes.
12893
12894         * threads.c (mono_threads_install_notify_pending_exc): New function to
12895         install a callback notifying the JIT there is a pending exception on a thread.
12896         (mono_thread_request_interruption): Call the new callback.
12897         (mono_thread_get_and_clear_pending_exception): New function to return the
12898         exception pending on a thread.
12899
12900         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
12901         to turn off checking for pending exceptions.
12902         (mono_marshal_get_native_wrapper): Ditto.
12903
12904 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12905
12906         * threads-types.h: Get rid of the unnecessary extern declarations.
12907
12908 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
12909
12910         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
12911         return field from parent class if not private.
12912         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
12913         returns fields from parent class if they are not private.
12914         (method_nonpublic): added function to determine if a given method
12915         should be considered non-public. Returns false for private methods
12916         on parent class, and internal methods from parent on the 1.0 profile.
12917         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
12918         use method_nonpublic function to determine whether method should be
12919         returned.
12920         (property_accessor_public): use newly introduced method_nonpublic
12921         function to determine whether accessor is non-public. 
12922         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
12923         event from parent class if not private. Only return static event if
12924         Static flag is set, and only return static event from parent class if
12925         FlattenHierarchy flag is set.
12926         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
12927         include non-private events from parent class.
12928
12929 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12930
12931         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
12932         warning.
12933
12934 2008-01-16  Wade Berrier <wberrier@novell.com>
12935
12936         * security.c: Add assembly.h header to appease some warnings
12937
12938 2008-01-16  Dick Porter  <dick@ximian.com>
12939
12940         * process.c (process_module_string_read): Remove trailing null
12941         when saving string.
12942
12943 2008-01-16  Mark Probst  <mark.probst@gmail.com>
12944
12945         * class-internals.h: A new data structure describing the layout of
12946         a runtime generic context (MonoRuntimeGenericContextTemplate).
12947
12948         * metadata-internals.h: Added a hash table to MonoDomain that maps
12949         from open generic classes to their runtime generic context
12950         templates.
12951
12952         * object.c: Building of the runtime generic context, including
12953         proper handling of generic type arguments of superclasses.
12954         Building of the runtime generic context according to the template.
12955
12956 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
12957
12958         * class.c (mono_class_setup_fields): Set field.count for generic instances.
12959         Fixes #350856.
12960
12961         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
12962         mono_portability_find_file (). Fixes #325466.
12963         (mono_image_get_public_key): Fix a warning.
12964
12965 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
12966
12967         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
12968         Fixes #353550.
12969         (mono_class_from_name_case): Ditto.
12970
12971 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
12972
12973         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
12974           common storage for the tables used in the System/NumberFormatter class.
12975
12976 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
12977
12978         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
12979
12980 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
12981
12982         * verify.c (get_boxable_mono_type): check if the token is valid.
12983
12984         * verify.c (set_stack_value): changed to add an error if an
12985         invalid type is set on stack. Changed all callers due to signature change.
12986
12987         * verify.c (do_stobj): implement stobj validation.
12988
12989 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
12990
12991         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
12992         set container->is_method, it was set earlier.
12993
12994         * metadata.c (type_in_image): Handle MVARs which belong to not finished
12995         generic methods.
12996
12997         * reflection.c (mono_reflection_initialize_generic_parameter): Set
12998         is_method of the generic container to TRUE for methods.
12999
13000 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13001
13002         * metadata.c (type_in_image): Handle type parameters properly.
13003
13004         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
13005         memory ownership of this structure.
13006
13007 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
13008
13009         * verify.c (get_boxable_mono_type): make typedref types been just
13010         unverifiable. check for void type.
13011
13012         * verify.c (do_unbox_any): added, verify opcode unbox.any.
13013
13014         * verify.c (do_load_function_ptr): accept method spec tokens.
13015
13016 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13017
13018         * marshal.c (mono_class_native_size): Always set *align even if this is called
13019         recursively.
13020
13021 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
13022
13023         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
13024         out-of-date.
13025
13026 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
13027
13028         * verify.c: removed some old unused tables. A huge bunch of small fixes
13029         to things found while testing the verifier with mono basic.
13030
13031         * verify.c (dump_stack_value): dump null literal flag to.
13032
13033         * verify.c (verify_type_compatibility_full): fix comparison
13034         for types that have a generic super type.
13035
13036         * verify.c (verify_stack_type_compatibility): fix compatibility
13037         between null literals and reference types. fix compatibility between
13038         boxed valuetypes and object. fix corner case test for enums.
13039
13040         * verify.c (do_cmp_op): proper verification of cgt.un in case
13041         of reference types.
13042
13043         * verify.c (do_invoke_method): fix error message.
13044
13045         * verify.c (do_store_indirect
13046
13047         * verify.c (check_is_valid_type_for_field_ops): proper verification
13048         of managed pointers to valuetypes and boxed valuetypes. proper verification
13049         of null literals.
13050
13051         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
13052         allow token to be a reference type.
13053
13054         * verify.c (do_cast): proper handling of boxes valuetypes.
13055
13056         * verify.c (do_stelem): proper handling of storing a boxed valuetype
13057         in object[].
13058
13059         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
13060         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
13061         fixed the decoding of unbox_any
13062
13063 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13064
13065         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
13066
13067 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
13068
13069         * verify.c (do_newobj): do delegate verification.
13070
13071         * verify.c (verify_delegate_compatibility): perform delegate
13072         verification.
13073
13074         * verify.c (verify_ldftn_delegate): perform tests related to
13075         ldftn delegates.
13076
13077         * verify.c (mono_delegate_signature_equal): perform the
13078         slightly diferent signature comparison required by delegates.
13079
13080         * metadata.c (mono_metadata_type_equal_full): added and exported
13081         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13082         allows signature only comparison.
13083
13084         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13085         as MONO_INTERNAL.
13086
13087 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
13088
13089         * verify.c: added a bunch of stack_slot_* functions to
13090         make access to stack slot type easier. This is required to
13091         allow optional flags, like null literal, boxed value and
13092         this pointer.
13093         All access paths to IlStackDesc::stype have been changed 
13094         to use these new funcions.
13095         Removed a bunch of unused functions and cleared all warnings.
13096         This patch introduces the usage of the this pointer and 
13097         boxed value flags.
13098
13099 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
13100
13101         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13102
13103 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13104
13105         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13106         match managed version.
13107
13108         * appdomain.c: Bump corlib version.
13109         
13110         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13111         argument.
13112
13113 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
13114
13115         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13116         Set public key token to zero-length byte array if assembly is not
13117         strongnamed.
13118
13119 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13120
13121         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13122         writing a vtype array elem.
13123
13124 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
13125
13126         * assembly.c (build_assembly_name): return FALSE if length of token is
13127         not 16 (if not "null").
13128         (mono_assembly_name_parse_full): return FALSE if value of version,
13129         culture, token or key is 0.
13130         * icall.c (fill_reflection_assembly_name): add boolean arguments to
13131         specify whether public key and public key token must be set to default
13132         value (zero-length byte array) if not available. Set versioncompat to
13133         SameMachine. If public key is available or the default is set, then
13134         set PublicKey flag.
13135         (ves_icall_System_Reflection_Assembly_FillName): if no public key
13136         is available, use empty byte array as default value. On the 2.0
13137         profile, use default value for public key token if not set.
13138         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13139         profile, use default value for public key if not set. On the 2.0
13140         profile, use default value for public key token if not set.
13141         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13142         default values for public key and public key token.
13143
13144 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13145
13146         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13147         field to keep it in synch with the managed object.
13148
13149         * marshal.c (emit_marshal_object): Add support for byref marshalling of
13150         delegates. Fixes #351520.
13151
13152         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13153         contains defined memory.
13154         
13155         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13156
13157         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13158         
13159         * sgen-gc.c (check_consistency): New helper function to do a consistency check
13160         of the GC data structures.
13161
13162         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13163
13164         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13165         
13166         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13167         barrier.
13168         (mono_array_clone_in_domain): Ditto.
13169         (mono_array_clone_in_domain): Ditto.
13170
13171         * threads.c (start_wrapper): Register the thread start argument as a GC root.
13172         (cache_culture): Use a write barrier.
13173
13174         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13175         (ves_icall_get_property_info): Ditto.
13176
13177         * object.h (MONO_STRUCT_SETREF): New macro.
13178
13179         * class-internals.h (MonoStats): Add some GC statistics.
13180
13181         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
13182
13183 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
13184
13185         * exception.c (mono_exception_from_name_two_strings):
13186         Break from loop after method is found.
13187
13188 2008-01-04  Dick Porter  <dick@ximian.com>
13189
13190         * process.c (process_module_string_read): Rename variable to
13191         reflect correct usage, after fixing bug 345972.
13192
13193 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
13194
13195         * verify.c (mono_type_create_fnptr_from_mono_method): 
13196         created a MonoType function pointer instance to be used during
13197         verification. The verifier releases this memory at end.
13198
13199         * verify.c (mono_method_is_constructor): extracted repeated
13200         checks for constructor into a single class.
13201
13202         * verify.c (do_push_field): use new extracted method
13203         for constructor check.
13204
13205         * verify.c (do_newobj): same.
13206
13207         * verify.c (do_ldftn): renamed to do_load_function_ptr
13208         and make it verify ldvirtftn too.
13209
13210         * verify.c (mono_method_verify: proper verification
13211         of ldvirtftn. release created MonoMethod instances.
13212
13213 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13214
13215         * verify.c (token_bounds_check): added.
13216
13217         * verify.c (do_ldftn): added.
13218
13219         * verify.c (mono_method_verify): proper verificartion of ldftn.
13220
13221 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13222
13223         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
13224         than the table row count. It's the resposibility of the caller to
13225         make the bounds check and raise the correct error.
13226
13227         * metadata.c (mono_metadata_decode_row_col): Same.
13228
13229         * loader.c (mono_get_method_from_token): perform bounds check
13230         on token for methoddef table.
13231
13232 2007-12-29  Miguel de Icaza  <miguel@novell.com>
13233
13234         * icall.c
13235         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
13236         assert into a negative result, the managed code already coped with
13237         that.
13238
13239         Some folks on Windows reported this error. 
13240
13241 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
13242
13243         * appdomain.c: Bump corlib version.
13244         * icall.c:
13245         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
13246         CultureInfo.CreateCulture to create CultureInfo for name.
13247         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
13248         create CultureInfo for name. Fixes bug #347174.
13249
13250 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13251
13252         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
13253         flags.
13254
13255         * verify.c (is_valid_branch_instruction): allow branching to the
13256         first instruction of the protected block.
13257
13258         * verify.c (is_valid_cmp_branch_instruction): same.
13259
13260         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
13261         avoid double initialization.
13262
13263         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
13264         detect which cases the eval stack should just be copied.
13265
13266         * verify.c (mono_method_verify): check if the eval stack
13267         is empty when entering a protected block.
13268
13269 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13270
13271         * verify.c: added is_clause_in_range, is_clause_inside_range,
13272         is_clause_nested and verify_clause_relationship. They perform
13273         the verifications stated in P1 12.4.2.7.
13274
13275         * verify.c (mono_method_verify): remove some unused variables,
13276         add the new exception clause checks, add instruction border
13277         checks for protected block start/end, improved some error 
13278         messages and fixed a bug in the way invalid instruction access
13279         is detected.
13280
13281 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13282
13283         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
13284         from GC 7.0 if available.
13285
13286         * object.c: Remove an unused define.
13287         
13288         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
13289
13290         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
13291
13292         * null-gc.c (mono_gc_make_descr_for_array): Implement.
13293
13294         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
13295
13296         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
13297         to take the same arguments as the other make_descr functions.
13298
13299         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
13300
13301         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
13302         directly.
13303
13304         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
13305         mini.c.
13306
13307         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
13308         call to boehm-gc.c.
13309
13310         * boehm-gc.c (mono_gc_register_root): Fix a warning.
13311
13312         * null-gc.c (mono_gc_register_root): Fix a warning.
13313
13314         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
13315
13316         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
13317         (mono_gc_base_init): Call GC_init ().
13318
13319         * null-gc.c: Define mono_gc_register_root () as a no-op.
13320
13321         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13322
13323 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
13324
13325         * verify.c: add prototype for merge_stacks at top
13326
13327         * verify.c (do_switch): added.
13328
13329         * verify.c (merge_stacks): on some cases the stack merging
13330         was not happening properly. Unequal stack sizes at merge
13331         points should be invalid.
13332
13333         * verify.c (mono_method_verify): added more debug info on stack state.
13334         verify switch properly.
13335
13336 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
13337
13338         * method-builder.h: New file, moved the mono_mb_ declarations here from 
13339         marshal.h.
13340
13341         * boehm-gc.c marshal.c: Include method-builder.h.
13342
13343         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13344
13345         * marshal.c: Remove some code which is now in method-builder.c.
13346
13347 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13348
13349         * method-builder.c: New file, extraction of the method builder functionality 
13350         from marshal.c.
13351
13352         * marshal.c: Move the mb functions into method-builder.c.
13353
13354         * marshal.h marshal.c: Export some mono_mb_... functions.
13355
13356         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13357
13358         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13359         the caller.
13360
13361         * class.c (mono_class_get_full): Check the token type in the dynamic case.
13362
13363         * loader.c (mono_field_from_token): Ditto.      
13364
13365         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13366         type as well.
13367         
13368         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13369         Fixes #342565.
13370
13371         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13372         a helper function for setting it.
13373
13374         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13375
13376         
13377         * assembly.c: Significally simplify code now that referenced assemblies are 
13378         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13379
13380         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13381         #349952.
13382
13383 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13384
13385         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13386         instructions that were target of branches or are at protected block boundaries.
13387
13388         * verify.c (in_same_block): handle filter clauses.
13389
13390         * verify.c (is_valid_branch_instruction): added. checks the target of
13391         instructions br or brtrue/false.
13392
13393         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13394         binary branch instructions such as beq and bge.
13395
13396         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13397         and made it pin the instruction as been part of the exception block.
13398
13399         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13400         of in_same_block.
13401
13402         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13403         of in_same_block.
13404
13405         * verify.c (do_ret): ret from a protected block is unverifiable and
13406         not invalid.
13407
13408         * verify.c (do_static_branch): verify br and br.s instructions.
13409
13410         * verify.c (merge_stacks): add extra param to support detection
13411         of branches in the middle of instructions.
13412         
13413         * verify.c (mono_method_verify): verify branches and exception blocks
13414         that target the middle of instructions. Proper verification of br and br.s.
13415
13416 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13417
13418         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13419         skip_visibility field.
13420         (reflection_methodbuilder_from_dynamic_method): Ditto.
13421
13422         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13423         registrations. Fixes #348193.
13424
13425         * threads.h: Move the internal mono_thread_get_pending_exception () to
13426         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13427
13428 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13429
13430         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13431         icall registration. Fixes #348193.
13432
13433         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13434         for corlib classes into object. Fixes #349621.
13435
13436 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13437
13438         * icall.c (property_accessor_nonpublic): new function to determine
13439         whether an accessor allows a property to be considered non-public.
13440         Returns false for private accessor(s) from parent class, and internal
13441         accessor(s) from parent on 2.0 profile (and higher).
13442         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13443         to determine whether property should be included if NonPublic flag
13444         is set. Fixes bug #349078.
13445
13446 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13447
13448         * verify.c (init_stack_with_value): added.
13449
13450         * verify.c (mono_method_verify): extracted common
13451         code for exception initialization into init_stack_with_value.
13452
13453         * verify.c (mono_method_verify): initialize the exception
13454         for handler clauses as well.
13455
13456         * verify.c (mono_method_verify): fix the exception clause
13457         ordering rules, it should use handler end offset and not
13458         start offset.
13459
13460 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13461
13462         * rawbuffer.c: remove useless warning.
13463
13464 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13465
13466         * threads.h, threads-types.h: move functions to the correct header
13467         (fixes bug#349952).
13468
13469 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13470
13471         * verify.c (mono_method_verify): proper verification
13472         of exception handling clauses ranges and fallthru in
13473         and out of protected blocks.
13474
13475 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13476
13477         * verify.c (mono_method_verify): fixed compilation issue.
13478
13479 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13480
13481         * verify.c (mono_method_verify): a printf slipped in, changed
13482         to use verifier debug macro.
13483
13484 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13485
13486         * verify.c (is_correct_leave): check for filter clauses.
13487
13488         * verify.c (do_filter): added.
13489
13490         * verify.c (mono_method_verify): property verification of leave.
13491
13492
13493 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13494
13495         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13496         Win32 build, until we figure out how to do the proper thing on
13497         Win32.
13498
13499 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13500
13501         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13502         by the previous patch.
13503         
13504         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13505         the assembly resolve handler for refonly assemblies.
13506
13507 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13508
13509         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13510         Make sure only one thread is allowed to commence shutdown, and
13511         don't allow new threads to be started once shutdown is in
13512         progress.
13513
13514 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13515
13516         * verify.c (is_correct_endfilter): added.
13517
13518         * verify.c (is_unverifiable_endfilter): added.
13519
13520         * verify.c (do_endfilter): added.
13521
13522         * verify.c (mono_method_verify): property verification of endfilter
13523         and fixed a corner case or endfinally.
13524
13525 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13526
13527         * verify.h: new flags to support fail fast of unverifiable code and
13528         do non-strict verification. Non-strict verification is required to
13529         have MS runtime compatibility. There are a huge amount of unverifiable
13530         code that it accepts as verifiable. The strict mode verifies the code
13531         as the specs says.
13532         Non-strict mode will be required in cases where code needs to be
13533         accepted as verifiable but fails under strict mode.
13534
13535         * pedump.c: added support to fail fast and non-strict verification.
13536
13537         * verify.c: added support for both fail fast and non-strict verification.
13538
13539 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13540
13541         * verify.c (is_correct_endfinally): added.
13542
13543         * verify.c (mono_method_verify): property verification of endfinally.
13544
13545 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13546
13547         * verify.c (in_any_block): check for filter clauses.
13548
13549         * verify.c (is_correct_rethrow): added.
13550
13551         * verify.c (mono_method_verify): property verification of rethrow.
13552
13553         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13554
13555 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13556
13557         * verify.c (do_throw): added.
13558
13559         * verify.c (mono_method_verify): property verification of throw
13560
13561 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13562
13563         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13564         assemblies. Fixes #346425.
13565
13566 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13567
13568         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13569         FieldBuilders.
13570
13571         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13572
13573         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13574         prevent asserts when this is called with a token which might not be valid.
13575
13576         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13577         lookup_dynamic_token_class with valid_token == FALSE.
13578
13579         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13580
13581         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13582
13583         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13584         
13585 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13586
13587         * gc.c: Don't delay threadpool thread finalization unless Mono is
13588         shutting down.
13589
13590 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13591
13592         * threads.c: turn an assert into a non-fatal warning.
13593
13594 2007-12-09  Robert Jordan  <robertj@gmx.net>
13595
13596         * icall.c (GetVirtualMethod): Add missing argument validation.
13597
13598 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13599
13600         * verify.c (do_cast): added.
13601
13602         * verify.c (mono_method_verify): property verification of castclass and isinst.
13603
13604
13605 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13606
13607         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
13608
13609         * verify.c (do_stelem): added.
13610
13611         * verify.c (mono_method_verify): property verification of stelem.X.
13612
13613 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13614
13615         * class.c, class-internals.h: Introduce an environment variable
13616         (MONO_GENERIC_SHARING) through which the extent of generic code
13617         sharing can be controlled (share all classes, share only corlib
13618         classes, or share nothing).
13619
13620         * object.c: Only create runtime generic context for classes for
13621         which sharing is enabled.
13622
13623 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13624
13625         * verify.c (do_ldelem): refactor it to work with ldelem.any.
13626
13627         * verify.c (mono_method_verify): property verification of ldelem.any.
13628
13629 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13630
13631         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
13632         added ldelem.X opcodes.
13633
13634         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
13635
13636         * verify.c: proper verification of ldelem.X 
13637
13638 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13639
13640         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
13641
13642 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13643
13644         * verify.c (mono_method_verify): null literal requires special handling,
13645         the value pushed on stack need to be flagged as so.
13646
13647         * verify.c (do_ldelema): Verify ldelema properly.
13648
13649 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13650
13651         * verify.c: Verify ldlen properly.
13652
13653 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
13654
13655         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
13656         to the target object's type. Fixes #346160.
13657
13658 2007-12-05  Dick Porter  <dick@ximian.com>
13659
13660         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
13661         Solaris needs the same workaround as BSD-derived systems.  Fixes
13662         bug 323524, patch by Burkhard Linke
13663         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
13664
13665 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
13666
13667         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
13668         handle to use when error dialog is shown; otherwise, update mask
13669         to show no error dialog when an error occurs.
13670
13671 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13672
13673         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
13674
13675         * class.c (mono_class_get_field_default_value): New helper function to initialize
13676         field->def_type and field->data.
13677
13678 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13679
13680         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
13681         the general one.
13682
13683         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
13684
13685         * marshal.c: Avoid depending on delegate->method_info being set.
13686
13687         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
13688         
13689         * object.c (mono_delegate_ctor): Set delegate->method.
13690
13691         * object-internals.h (struct _MonoDelegate): Add 'method' field.
13692
13693         * appdomain.c: Bump corlib version.
13694
13695 2007-11-27  Raja R Harinath  <harinath@gmail.com>
13696
13697         * metadata.c (mono_generic_inst_equal_full): Short-circuit
13698         equality check if we're comparing canonicalized MonoGenericInsts.
13699
13700 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13701
13702         * class.c (generic_array_methods): Call mono_class_setup_methods () before
13703         accessing class->methods.
13704
13705 2007-11-22  Dick Porter  <dick@ximian.com>
13706
13707         * threads.c: Ensure that the synch_cs is set before trying to use
13708         it.
13709
13710 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
13711
13712         * profiler.c: r89126 broke the statistial profiler, unbreak.
13713
13714 2007-11-22  Martin Baulig  <martin@ximian.com>
13715
13716         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
13717
13718         * mono-debug.c
13719         (mono_debug_debugger_version): Bump to 3.
13720         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
13721         -> mono_debugger_class_initialized().
13722
13723         * mono-debug-debugger.c
13724         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
13725
13726         * class.c
13727         (mono_debugger_start_class_init_func): Removed.
13728         (mono_debugger_class_loaded_methods_func): Added.
13729         (mono_class_setup_methods): Call it here.
13730
13731 2007-11-22  Martin Baulig  <martin@ximian.com>
13732
13733         * mono-debug.c
13734         (mono_debug_add_delegate_trampoline): New public method.
13735         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
13736
13737         * mono-debug.h
13738         (MonoSymbolTable): Added `global_data_table'.
13739         (MonoDebuggerTypeKind): Removed.
13740
13741 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
13742
13743         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
13744         these methods.
13745
13746         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13747         
13748 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13749
13750         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
13751
13752 2007-11-20  Martin Baulig  <martin@ximian.com>
13753
13754         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
13755
13756         * mono-debug-debugger.c
13757         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
13758         (mono_debugger_remove_breakpoint): Likewise.
13759         (mono_debugger_check_breakpoints): Likewise.
13760         (mono_debugger_register_class_init_callback): New public method.
13761         (mono_debugger_remove_class_init_callback): Likewise.
13762         (mono_debugger_add_type): Likewise.
13763
13764         * mono-debug-debugger.h
13765         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
13766
13767 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
13768
13769         * class.c: more interface implementations needed for the
13770         array enumerator (fixes bug #341112).
13771
13772 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
13773
13774         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
13775         fix ParamName of ArgumentNullExceptions.
13776
13777 2007-11-17  Miguel de Icaza  <miguel@novell.com>
13778
13779         * reflection.c (mono_reflection_encode_sighelper): Generate the
13780         modopts and modreqs.   I have a useless test that crashes monodis,
13781         but that shows the code working.
13782
13783 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
13784
13785         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
13786         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
13787
13788 2007-11-15  Dick Porter  <dick@ximian.com>
13789
13790         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
13791         When joining a thread, it's the thread that's calling Join that
13792         gets WaitSleepJoin state not the target.  Fixes the standalone
13793         test case in bug 334740, and hopefully the whole bug too.
13794
13795 2007-11-15  Dick Porter  <dick@ximian.com>
13796
13797         * process.c: Read file version info from the files pointed at by
13798         process modules, not the current process.  Fixes bug 315969.
13799
13800         Use windows typedef names in some places to fix warnings on the
13801         windows build.
13802
13803 2007-11-15  Mark Probst  <mark.probst@gmail.com>
13804
13805         * image.c, metadata-internals.h: Added a generic_class_cache hash
13806         to MonoImage for looking up generic classes when sharing generics.
13807
13808 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13809
13810         * sgen-gc.c: warning cleanups.
13811
13812 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
13813
13814         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
13815         inherited properties.
13816
13817 2007-11-14  Mark Probst  <mark.probst@gmail.com>
13818
13819         * object.c, class-internals.h: Added more information to the
13820         runtime generic context.
13821
13822 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
13823
13824         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
13825         instead of just the target method. Generalize the abstract method handling to
13826         handle any non-static method.
13827
13828         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13829         mono_marshal_get_delegate_invoke () signature change.
13830
13831 2007-11-13  Mark Probst  <mark.probst@gmail.com>
13832
13833         * class.c, class-internals.h: Made
13834         mono_type_get_basic_type_from_generic () public.  Fixed member
13835         access check for shared generics.
13836
13837         * loader.c: Don't insert field into field cache if it's part of a
13838         non-inflated generic class.
13839
13840         * domain.c, domain-internals.h: The generic sharing context is now
13841         part of the jit info data structure.  Added two accessor
13842         functions.
13843
13844 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
13845
13846         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
13847         the array Get/Set/Address methods, since the JIT inlines them.
13848
13849         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
13850
13851         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
13852         (mono_image_init): Initialize runtime_invoke_direct_cache.      
13853
13854         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13855         mono_marshal_get_delegate_invoke signature change.
13856
13857         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
13858         an additional argument. Add support for invoking abstract methods.
13859
13860         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
13861
13862         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
13863
13864 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13865
13866         * class.c: Do field layout for open generic classes as well.
13867
13868 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13869
13870         * gc.c, gc-internal.h: Don't finalize threadpool threads with
13871         other objects, because the threadpool is still around.  Put them
13872         in a list instead and after finalizing all other objects in the
13873         root domain shut down the thread pool and then finalize the
13874         threads.  Fixes bug #337383.
13875
13876         * threads.c, thread-types.h: New mono_thread_create_internal()
13877         function for marking a thread with the threadpool flag before it
13878         started.  Set synch_cs to NULL after freeing it.
13879
13880         * threadpool.c: Mark threadpool threads before they start.
13881
13882 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13883
13884         * reflection.h, reflection.c: don't export random functions
13885         and lazy load dbnull and missing objects.
13886
13887 2007-11-07  Jonathan Chambers <joncham@gmail.com>
13888
13889         * class.c: Initialize COM types if COM interfaces
13890         are present (not just COM classes).
13891         
13892         Code is contributed under MIT/X11 license.
13893
13894 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13895         * reflection.c:
13896         create_dynamic_mono_image: hook module profiler events (dynamic case).
13897         mono_image_basic_init: hook assembly profiler events (dynamic case).
13898
13899 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13900         * profiler.c:
13901         simple_appdomain_unload: completely terminate the profiler
13902         instead of only processing the statistical samples.
13903         simple_shutdown: make sure this is really called exactly once,
13904         even in multithreaded applications, and always listen to
13905         appdomain events.
13906         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
13907         here, the "[un]load" functions will do it.
13908         Fixes bugs #333791 and #325261.
13909
13910 2007-11-07  Geoff Norton  <gnorton@novell.com>
13911
13912         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
13913         rather than depend on __APPLE__.
13914
13915 2007-11-07  Mark Probst  <mark.probst@gmail.com>
13916
13917         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
13918
13919 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
13920
13921         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
13922         UTF16 MonoString. Fix the crash from bug #335488
13923
13924 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
13925
13926         * marshal.c: Correct (for non-Win32 OS) length != size in 
13927         mono_string_from_bstr. Fix #339530.
13928
13929 2007-11-06  Geoff Norton  <gnorton@novell.com>
13930
13931         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
13932         to succeed
13933
13934 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
13935
13936         * process.c: Added run-time GetProcessId API detection for Windows.
13937
13938 2007-11-04  Miguel de Icaza  <miguel@novell.com>
13939
13940         * reflection.c  (mono_param_get_objects): If a parameter has the
13941         attribute [System.Runtime.InteropServices.Optional] we should
13942         set the DefaultValue of the ParameterInfo to be
13943         System.Reflection.Missing instead of DBNull.
13944
13945         See bug #339013.
13946
13947         (mono_get_reflection_missing_object): New method,
13948         returns the System.Reflection.Missing.Value singleton instance.
13949
13950 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
13951
13952         * culture-info-table.h : regenerated.
13953
13954 2007-11-02  Jonathan Chambers <joncham@gmail.com>
13955
13956         * icall.c: Use GetEnvironmentStrings on windows
13957         so we are using the same environment block as 
13958         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
13959         #333740.
13960         
13961         Code is contributed under MIT/X11 license.
13962
13963 2007-10-31  Martin Baulig  <martin@ximian.com>
13964
13965         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
13966
13967         * mono-debug-debugger.h
13968         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
13969
13970 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
13971
13972         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
13973         classes.
13974
13975 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
13976
13977         * culture-info-table.h : regenerated.
13978
13979 2007-10-30  Robert Jordan  <robertj@gmx.net>
13980
13981         * icall-def.h, icall.c:
13982         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
13983
13984         Code is contributed under MIT/X11 license.
13985
13986 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13987
13988         * class.c (mono_class_setup_vtable): Find the inflated methods in the
13989         inflated class instead of inflating them again.
13990         
13991         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
13992         dynamic case.
13993
13994         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
13995         Call setup_supertypes () after klass->parent is set.
13996         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
13997
13998         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
13999         for inflated instances of not yet created dynamic generic classes.
14000         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
14001         times from inflated_method.
14002         (methodbuilder_to_mono_method): Ditto.
14003
14004 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14005
14006         * gc.c: code cleanup and removed old untested option of not creating the
14007         finalizer thread.
14008
14009 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14010
14011         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
14012         creating a jump trampoline for dynamic methods.
14013
14014 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
14015
14016         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
14017         generic TypeBuilders when called from another method of the same type (bug #335131).
14018
14019
14020 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
14021
14022         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
14023         doesn't seem to work perfectly.
14024         
14025         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
14026         called multiple times.
14027         (methodbuilder_to_mono_method): Ditto.
14028         (resolve_object): Inflate FieldBuilder's.
14029
14030 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14031
14032         * string-icalls.c, string-icalls.h, appdomain.c: patch from
14033         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
14034         RemoveEmptyEntries in the string.Split implementation (bug #322375).
14035
14036 2007-10-26  Dick Porter  <dick@ximian.com>
14037
14038         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
14039         Thread initialisation changes
14040
14041 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14042
14043         * verify.c: fix compatibility check between arrays and System.Array
14044
14045 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
14046
14047         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
14048         too. Fixes #336999.
14049
14050 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14051
14052         * object.c (mono_value_box): Use typed allocation here.
14053
14054 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14055
14056         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
14057         trampoline instead of compiling the method right away.
14058
14059         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
14060
14061 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
14062
14063         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
14064         related fields for dynamic classes. Fixes #334493.
14065
14066 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
14067
14068         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
14069         
14070         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
14071
14072         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
14073         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
14074
14075         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
14076
14077         * reflection.c (create_generic_typespec): Initialize klass->generic_container
14078         if needed.
14079         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14080
14081 2007-10-18  Jonathan Chambers <joncham@gmail.com>
14082
14083         * marshal.c: Use correct key when removing item
14084         from ccw_hash.
14085         
14086         Code is contributed under MIT/X11 license.
14087
14088 2007-10-17  William Holmes  <billholmes54@gmail.com>
14089
14090         *marshal.c: Adding a case to marshal booleans to U1
14091
14092         Code is contributed under MIT/X11 license.
14093
14094 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
14095
14096         * class.c (mono_class_from_name): Search the modules compromising dynamic
14097         assemblies. Fixes #331601.
14098
14099 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
14100
14101         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14102         exception if the type name contains an assembly component. Fixes #334203.
14103
14104         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14105         modules inside dynamic assemblies. Fixes #334200.
14106         
14107         * reflection.c: Set image->public_key and image->public_key_length;
14108
14109         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14110         fields.
14111
14112         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
14113         
14114 2007-10-16  Mark Probst  <mark.probst@gmail.com>
14115
14116         * metadata.c: Implemented correct comparing of generic classes.
14117         An inflated generic class can be equal to a non-inflated one if it
14118         is inflated with generic type variables as type arguments.  Fixes
14119         bug #333798.
14120
14121 2007-10-15  Dick Porter  <dick@ximian.com>
14122
14123         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14124         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
14125         81646.
14126
14127         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14128         instead of a monitor lock.  This means that monitor_try_enter and
14129         co can set the thread state safely.
14130         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14131         thread_interrupt_requested, so interrupt actually works.
14132
14133         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14134         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14135         state accessor function
14136
14137 2007-10-15  Martin Baulig  <martin@ximian.com>
14138
14139         * mono-debug.h
14140         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14141         the debugger with the current runtime.
14142
14143 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14144
14145         * object.c, object-internals.h: added the ability to set a single
14146         trampoline for all the slots in a vtable.
14147
14148 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14149
14150         * marshal.c: deal with a possible race condition during multicast
14151         delegate invocation.
14152
14153 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14154
14155         * class.c: ensure value type methods don't have the synchronized
14156         flag set.
14157
14158 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14159
14160         * string-icalls.c, string-icalls.h: reverted unapproved patch that
14161         breaks the build.
14162
14163 2007-10-11  Joel Reed  <joelwreed@comcast.com>
14164
14165         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14166         to take an options parameter so that empty entries can be removed during
14167         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14168
14169 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14170
14171         * marshal.c: make sure we don't store the signature from a dynamic
14172         method into the runtime invoke cache (bug #327189).
14173
14174 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14175
14176         * marshal.c: make sure the wrapper methods are properly initialized.
14177
14178 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14179
14180         * metadata.c, metadata-internals.h: Generalized
14181         mono_type_stack_size() to mono_type_stack_size_internal() which
14182         takes an additional argument specifying whether it allows open
14183         types.
14184
14185 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
14186
14187         * verify.c (do_invoke_method): handle typedbyref params
14188         correctly and check for unverifiable return values.
14189
14190         * verify.c (do_newobj): fix a warning.
14191
14192 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14193
14194         * verify.c: don't tread typedbyref as allways unverifable,
14195         so uses, like (ld/st)loc.0 are valid. verify for the cases
14196         that it matters, like boxing related operations.
14197
14198 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14199
14200         * verify.c: add verification of the newobj opcode. verification
14201         of delegate instantation still missing due ldftn and virldftn not
14202         pushing the function type on stack
14203
14204 2007-10-08  Mark Probst  <mark.probst@gmail.com>
14205
14206         * class-internals.h: Runtime generic context data structure
14207         definition.
14208
14209         * object.c: Initialization of runtime generic context at runtime
14210         vtable creation time.
14211
14212 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
14213         * class.c (mono_class_create_from_typedef,
14214         mono_class_from_generic_parameter, mono_ptr_class_get,
14215         mono_fnptr_class_get, mono_bounded_array_class_get)
14216         * domain.c (mono_domain_create, mono_domain_free)
14217         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
14218         * image.c (do_mono_image_load, mono_image_close):
14219         Hooked up load-unload profiler events.
14220
14221 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14222
14223         * domain.c: track statistics about the actual amount of native code
14224         allocated.
14225
14226 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14227
14228         * class.c: the valuetype enumerators don't have the additional
14229         supertypes interfaces.
14230
14231 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14232
14233         * class.c: need more interfaces setup for the IEnumerator<T>
14234         object created for arrays (tests/ienumerator-interfaces.2.cs).
14235
14236 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
14237
14238         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
14239
14240 2007-10-05  Alp Toker  <alp@atoker.com>
14241
14242         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14243         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14244         #315863.
14245
14246 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14247
14248         * verify.c (verify_type_compatibility_full): verification of
14249         compatibility improved, validates correctly non-strict checks between
14250         native int and I4 types different than (unsigned)int32.
14251
14252         * verify.c (do_store_indirect): added, do all verification of
14253         ldind.X opcodes. 
14254
14255         * verify.c (get_load_indirect_mono_type): renamed to
14256         get_indirect_op_mono_type, as it now returns the MonoType for 
14257         ldind.X and stind.X opcodes.
14258
14259 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14260
14261         * reflection.c: Fix the encoding of generic type definition for
14262         TypeBuilders.
14263
14264         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
14265         mono_image_typedef_or_ref but allows to specify if typespec lookups should
14266         be made. Typespec check is done prior to typeref cache lookup.
14267
14268         * reflection.c (mono_image_typedef_or_ref): now just delegate to
14269         mono_image_typedef_or_ref_full.
14270
14271         * reflection.c (encode_generic_class): encode the generic class
14272         directly instead of calling encode_type.
14273
14274         * reflection.c (encode_type): encode the generic type definition
14275         MonoClass as a generic instantiation.
14276
14277         * reflection.c (create_typespec): cache typespec tokens in
14278         the assembly->typespec cache. Don't create typespec for a generic
14279         instance MonoClass. Create typespec for the generic type defintion.
14280
14281         * reflection.c (create_generic_typespec): encode the generic
14282         class directly instead of calling encode_type.
14283
14284         * reflection.c (mono_image_create_token): encode the generic
14285         type definition not using a typespec for MonoType instances.
14286
14287
14288 2007-10-04  Raja R Harinath  <rharinath@novell.com>
14289
14290         Fix #328812
14291         * class.c (mono_image_init_name_cache): Don't return nested
14292         'protected internal' classes.
14293         (mono_class_from_name_case): Likewise.
14294
14295 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
14296
14297         * icall-def.h, icall.c : get_bundled_machine_config() is now the
14298           common function used by both DefaultConfig in System.dll and
14299           InternalConfigurationHost in System.Configuration.dll.
14300
14301 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14302
14303         * class.c: automatically add to vectors only a few essential explicit
14304         generic interfaces. The rest of the interfaces that arrays should
14305         provide are currently implicitly added (but still not lazily, see the
14306         design in the discussion of bug#325495 for the details of what is
14307         needed for that). Additionally, implicit interfaces are assigned the
14308         same vtable slot as the explicit interfaces (as they are compatible):
14309         this enables huge memory savings since we don't need to instantiate
14310         as many memthods and as large vtables anymore. Also, Since
14311         GetEnumerator<T> returns an instance of a type that is required to
14312         support a similarly large set of interfaces as arrays, we add
14313         implicit interfaces and interface offset sharing support to those
14314         types, too. This change adds all the required interfaces so that
14315         the anonarray.cs test case in the bug report works (we don't add
14316         all the interfaces to arrays of arrays 3-level deep and more because
14317         of the memory requirements explained in the bug and since they are much
14318         less common: the lazy-loading support will enabled them to work, too).
14319
14320 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14321
14322         * verify.c (merge_stacks): major clean up, all type compatibility
14323         checks are done by verify_type_compatibility. This fix my earlier lack
14324         of understanding of the CLR type system and merge_stacks no longer looks
14325         scary.
14326
14327         * verify.c: fixed some bad spelling.
14328
14329 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14330
14331         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14332         a given stack slock.
14333         
14334         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14335         verify_type_compatibility_full. This removed a near indentical function and fixed
14336         handling of Int32 and IntPtr across all opcodes.
14337
14338 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14339
14340         * class.c: only vectors have the additional generic interfaces.
14341
14342 2007-10-01  Jonathan Chambers <joncham@gmail.com>
14343
14344         * mono-config.c: Use g_strcasecmp instead of
14345         strcasecmp like everywhere else to fix
14346         compilation with MSVC.
14347         
14348         Code is contributed under MIT/X11 license.
14349
14350 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14351
14352         * object.c, object-internals.h: refactored the IMT code to enable
14353         building a single slot at a time and lazily creating the IMT trampolines
14354         and thunks.
14355
14356 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
14357
14358         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14359
14360         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14361         Fixes #328501.
14362         
14363 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14364
14365         * loader.c (method_from_methodspec): Rearrange to avoid
14366         un-necessary exposition.  Don't assert out if the method's
14367         declaring type is a generic type definition.
14368
14369 2007-09-28  Martin Baulig  <martin@ximian.com>
14370
14371         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14372
14373 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14374
14375         * class-internals.h: optimize field layout of MonoClass to
14376         requires less cachelines at runtime and save a few bytes on 64 bit
14377         systems.
14378
14379 2007-09-28  Jb Evain  <jbevain@novell.com>
14380
14381         * reflection.c: when encoding type names in custom attributes,
14382         if the type is a closed generic type, its generic arguments
14383         have to be serialized as AssemblyQualifiedName, so that when
14384         they are deserialized, it's possible to re-create them properly.
14385         Fixes #329450.
14386
14387
14388 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14389
14390         * object.c, class-internals.h: added delegate-creation counter.
14391
14392 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14393
14394         * class.c: cleanup of the code that synthetizes interfaces for
14395         arrays in 2.0: saves quit a bit of corlib mempool memory.
14396         Code to fix bug #325495 ifdeffed out for now until the issues
14397         with memory usage and O(n^2) behaviour are fixed.
14398
14399 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14400
14401         * marshal.c: when possible, do not duplicate the name of the methods
14402         in the method builder and in the generated MonoMethod.
14403
14404 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14405         * verify.c: added support for type checking ldind_* opcodes.
14406
14407 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14408
14409         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14410         which is used to distinguish the fully open instantiation of a TypeBuilder
14411         with the rest. This temporary hack is required to restore the property that
14412         the fully open instantiation is the same type of the generic type definition.
14413
14414         * class-internals.h (mono_generic_class_is_generic_type_definition):
14415         new function as part of the internal API.
14416
14417         * class.c (inflate_generic_type): return NULL when the generic inst is
14418         fully open. The fully open generic type is now the same as the generic type
14419         definition for non TypeBuilder types.
14420
14421         * class.c (mono_generic_class_get_class): removed assert since it is
14422         no longer valid, gklass->cached_class can point to the generic type definition.
14423
14424         * class.c (mono_generic_class_is_generic_type_definition): new.
14425
14426         * metadata.c (mono_generic_class_hash): added is_tb_open field
14427         to the hash calculation.
14428
14429         * metadata.c (free_generic_class): if the generic class is associated
14430         with the generic type definition, its field will come from the mempool and
14431         must not be freed.
14432
14433         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14434         new, this function identifies the corner case of a TypeBuilder fully open
14435         instantiation.
14436
14437         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14438         for lookup. Set gclass->cached_class to be the container class in case of
14439         the fully open instantiation of non TypeBuilder types.
14440
14441         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14442         to compare generic classes.
14443
14444         * reflection.c (method_encode_methodspec): remove assert that
14445         no longer is valid.
14446
14447         * reflection.c (mono_reflection_generic_class_initialize): add
14448         an aditional assert to ensure the proper type is used.
14449
14450 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14451
14452         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14453         to enjoy it.
14454
14455 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14456
14457         * verify.c (push_arg): Fixed support for ldarga
14458         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14459         MonoType used as first arg in case of instance calls.
14460
14461 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14462
14463         * verify.c: Support for verifying VAR and MVAR types, 
14464
14465 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14466
14467         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14468         accessors correctly.
14469
14470 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14471
14472         * threads.c: support OSX and other systems in
14473         mono_thread_get_stack_bounds (bug #328026).
14474
14475 2007-09-25  Martin Baulig  <martin@ximian.com>
14476
14477         * mono-debug.h
14478         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14479
14480 2007-09-24  Martin Baulig  <martin@ximian.com>
14481
14482         * mono-debug.h
14483         (MonoDebugClassEntry): Moved the definition of this struct into
14484         mono-debug.c to make it private.
14485
14486         * mono-debug.c
14487         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14488         type table per symbol file, we don't need to store the symfile id
14489         any longer.
14490
14491 2007-09-24  Martin Baulig  <martin@ximian.com>
14492
14493         Create one type table per symbol file, since a `MonoClass *' gets
14494         invalid when its image is unloaded.
14495
14496         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14497         (MonoDebugHandle): Added `type_table'.
14498
14499 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14500
14501         * mempool.c, mempool.h: added mono_mempool_new_size () API
14502         to be able to specify a smaller initial size for the pool.
14503         Adjusted the code to slowly increase pool size before using
14504         the previous default size.
14505         * image.c: use a small initial size for image mempools.
14506
14507 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14508
14509         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14510         Fixes ##320990.
14511
14512         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14513         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14514
14515 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14516
14517         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14518         free. Fixes #327438.
14519
14520 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14521
14522         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14523         generic instantiations, etc.
14524         <MONO_TYPE_ARRAY>: Likewise.
14525
14526 2007-09-21  Martin Baulig  <martin@ximian.com>
14527
14528         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14529         these structs were never defined.
14530         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14531
14532 2007-09-21  Martin Baulig  <martin@ximian.com>
14533
14534         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14535
14536 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14537
14538         * image.c: removed the guid hash tables: we can get the same info
14539         without the additional memory usage hit (partially fixes also bug #327052).
14540
14541 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14542
14543         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14544         event to handle unloading methods. After the event is called, the
14545         corresponding MonoMethod* must be considered invalid.
14546         * loader.c (mono_free_method): call the new mono_profiler_method_free
14547         event.
14548
14549 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14550
14551         * domain-internals.h: New flag in MonoJitInfo which marks shared
14552         generic methods.  New hash table (shared_generics_hash) in
14553         MonoDomain to keep track of shared generic methods.  Prototypes
14554         for functions to register and lookup shared generic methods.
14555
14556         * domain.c: Support for registering and looking up shared generic
14557         methods via a hash table (shared_generics_hash) in MonoDomain.
14558
14559         * class-internals.h: New exception to signal failure of shared
14560         compilation of a generic method.  New counters for generics
14561         sharing in MonoStats.
14562
14563 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14564
14565         * image.c, metadata-internals.h: don't keep a file descriptor open
14566         for loaded assemblies (bug#325988).
14567
14568 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14569
14570         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14571         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14572         use the corresponding datatypes.
14573         (type_in_image): Update to changes.
14574         (CleanForImageUserData): Simplify.
14575         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14576         Avoid quadratic behaviour in handling the "stolen" list by
14577         separating the filter predicate out, and by prepending the stolen
14578         items rather than appending them.
14579         (steal_ginst_in_image): Likewise.
14580         (mono_metadata_clean_for_image): Update to changes.
14581
14582 2007-09-19  Martin Baulig  <martin@ximian.com>
14583
14584         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14585
14586 2007-09-19  Martin Baulig  <martin@ximian.com>
14587
14588         * mono-debug.c (mono_debug_cleanup): Don't call
14589         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14590
14591 2007-09-19  Raja R Harinath  <harinath@gmail.com>
14592
14593         Fix crash on 'make run-test' in mcs/errors
14594         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
14595         Avoid more potential allocations in mono_class_from_mono_type.
14596         (ginst_in_image): Update to changes.
14597         (gclass_in_image): Rearrange slightly.
14598
14599 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14600
14601         * class.c (mono_class_init): Move the code that sets up class->methods to 
14602         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
14603
14604         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
14605         canonical instance of an inflated generic signature.
14606         (mono_type_create_from_typespec): Remove an invalid free.
14607
14608         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
14609
14610 2007-09-18  Marek Habersack  <mhabersack@novell.com>
14611
14612         * domain-internals.h: added a declaration of the
14613         mono_assembly_load_full_nosearch internal function.
14614
14615         * assembly.c (mono_assembly_load_with_partial_name): use
14616         mono_try_assembly_resolve return value properly.
14617         (mono_assembly_load_full_nosearch): copied the function body from
14618         mono_assembly_load_full, without the code to invoke assembly
14619         search hooks.
14620         (mono_assembly_load_full): calls the above new function and if the
14621         assembly is not resolved, invokes the search hooks.
14622
14623         * appdomain.c (mono_runtime_init): restore the global postload
14624         assembly search handlers.
14625
14626 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14627
14628         * class.c (mono_class_init): Make sure class->methods and class->properties
14629         are never NULL in the generics case.
14630
14631         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
14632
14633 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14634
14635         * metadata.c (free_generic_class): Disable some code to fix the build.
14636
14637         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
14638
14639         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
14640         from the image mempool.
14641
14642         * metadata.c (free_generic_class): Free more data from the inflated class.
14643
14644         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
14645
14646         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
14647         mempool.
14648         (mono_type_create_from_typespec): Ditto.
14649
14650         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
14651         MonoImage to the caller.
14652         (mono_init_internal): Save the opened image in a global variable.
14653         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
14654
14655         * reflection.c (resolve_object): Fix a leak.
14656
14657         * metadata.c: Fix the freeing of data in the generics caches.
14658         
14659         * metadata.c (free_generic_inst): Comment this out to fix the build.
14660         (free_generic_class): Ditto.
14661
14662         * metadata.c: Free cached generic methods, instantinations and classes when
14663         they are removed from the caches.
14664         (mono_metadata_free_type): Free the type itself.
14665
14666         * class.c: Free the result of mono_class_inflate_generic_type () in a few
14667         places.
14668
14669 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14670
14671         * boehm-gc.c: restrict managed allocs to __thread supporting
14672         architectures.
14673
14674 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
14675
14676         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
14677         (mono_generic_class_get_class): Fix a leak.
14678
14679         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
14680         mono_metadata_free_type ().
14681         (mono_metadata_inflate_generic_inst): Fix a leak.
14682
14683 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14684
14685         * mono-debug.c (free_header_data): Fix a leak missed earlier.
14686
14687         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
14688         mempool.
14689
14690         * mono-debug.c (mono_debug_close_image): Fix call to 
14691         g_hash_table_remove ().
14692
14693 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14694
14695         * icall-def.h: redirect all the string ctor to the managed
14696         CreateString () methods.
14697         * string-icalls.c, string-icalls.h: removed dead code for string
14698         ctors and icalls.
14699
14700 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14701
14702         * mono-debug.c: Fix memory leaks.
14703
14704 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14705
14706         * threads-types.h: Implement mono_hazard_pointer_set and 
14707         mono_hazard_pointer_clear macros using do/while(0) to fix
14708         compilation with MSVC.
14709         
14710         Code is contributed under MIT/X11 license.
14711
14712 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14713
14714         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
14715         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
14716
14717 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14718
14719         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
14720         icalls.
14721
14722 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14723
14724         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
14725         managed-code allocated as well.
14726
14727 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14728
14729         * class.c (mono_class_is_assignable_from): Add support for generic variance.
14730
14731 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14732
14733         * boehm-gc.c: fixed the build after the AOT changes.
14734
14735 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14736
14737         * wrapper-types.h: Add an ALLOC wrapper type.
14738
14739         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
14740         reference managed allocator methods.
14741
14742 2007-09-12  Marek Safar  <marek.safar@gmail.com>
14743
14744         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
14745         of Type array and not MonoType, a fix suggested by Hari.
14746         
14747 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14748
14749         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
14750         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
14751         
14752         Code is contributed under MIT/X11 license.
14753
14754 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14755
14756         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
14757
14758 2007-09-12  Marek Habersack  <mhabersack@novell.com>
14759
14760         * image.c (do_mono_image_open): if assembly file fails to open and
14761         MONO_IOMAP is in effect, try to find the path in a
14762         case-insensitive way.
14763
14764         * appdomain.c (mono_runtime_init): do not install postload hooks -
14765         tests show that MS.NET doesn't use anything of that sort to
14766         trigger the AppDomain.AssemblyResolve event.
14767         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
14768         made non-static.
14769         (mono_runtime_init): init portability helpers here.
14770
14771         * assembly.c (mono_assembly_load_with_partial_name): if other   
14772         attempts fail, trigger the AppDomain.AssemblyResolve event handler
14773         to resolve the assembly.
14774
14775         * domain-internals.h: added mono_try_assembly_resolve and marked
14776         it as internal.
14777
14778 2007-09-11  Jb Evain  <jbevain@novell.com>
14779
14780         * object-internals.h (MonoReflectionDynamicMethod): add
14781         a `MonoReflectionType *owner` field. The owner is used
14782         * reflection.c:
14783         (mono_reflection_create_dynamic_method): use the owner of the dynamic
14784         method as the class declaring the dynamic method.
14785         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
14786         dynamic method to the declaring type of the methodbuilder.
14787
14788 2007-09-11  Mark Probst  <mark.probst@gmail.com>
14789
14790         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
14791         rules for calling methods via reflection.
14792
14793 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
14794
14795         * reflection.c (resolve_object): Add support for MonoGenericClass. 
14796         Inflate MonoType's.
14797
14798 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
14799
14800         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
14801         provide a managed method that does fast allocations without needing
14802         a managed->unmanaged transition. Boehm GC implementation currently
14803         enabled for ptrfree objects on sane architectures.
14804
14805 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14806
14807         * marshal.c, marshal.h: exported a couple of useful functions and
14808         added mono_mb_get_label () to easily handle backward branches.
14809
14810 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
14811
14812         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
14813
14814 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14815
14816         * loader.c (find_method): Fixed the regression introduced while
14817         fixing bug #81466.
14818
14819 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
14820
14821         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
14822         well.
14823         
14824         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
14825         icall.c reflection.c: Pass a MonoGenericContext argument to 
14826         mono_lookup_dynamic_token ().
14827
14828         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
14829         #82744.
14830         
14831 2007-09-09  Robert Jordan  <robertj@gmx.net>
14832
14833         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
14834         for generic methods.
14835
14836         * object.c (mono_object_get_virtual_method): Handle generic methods.
14837         Fixes bug #78882.
14838
14839         Code is contributed under MIT/X11 license.
14840
14841 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14842
14843         * image.c: fix locking in mono_image_load_file_for_image ().
14844
14845 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
14846
14847         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
14848         used only as a cache: added an icall to fill it.
14849
14850 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
14851
14852         * reflection.h: exposed mono_reflection_free_type_info
14853         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
14854         since mono_reflection_bind_generic_parameters makes a copy of it.
14855         * reflection.c (free_type_info): subinfos should be freed.
14856         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
14857         made non static.
14858         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
14859         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
14860         this fixes #82695 and #81726.
14861    
14862
14863 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
14864
14865         * process.h, process.c:  added support for user profile/info in
14866           ProcessStartInfo. For now only Windows works.
14867
14868 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14869
14870         * metadata.c: consider the generic arguments when comparing
14871         signatures (bug #82614).
14872
14873 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14874
14875         * cil-coff.h, image.c: updated assembly loader to cope with the
14876         PE32+ 64 bit file format.
14877
14878 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14879
14880         * assembly.c, class.c, domain.c, loader.c: remove useless
14881         inclusion of cil-coff.h.
14882
14883 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
14884
14885         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
14886         if interface is marked with CoClassAttribute. 
14887    
14888         Code is contributed under MIT/X11 license.
14889
14890 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14891
14892         * sgen-gc.c: ensure no object from the to space is copied again or finalized
14893         if it's seen twice in major collections.
14894
14895 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14896
14897         * sgen-gc.c: big objects are not copied to the gray area, but they
14898         need to be considered for scanning, too, if they are brought alive
14899         by an object ready for finalizations or a survived one.
14900
14901 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14902
14903         * sgen-gc.c: properly account the number of disappearing links when
14904         they are nullified.
14905
14906 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14907
14908         * sgen-gc.c: share the code to scan the registered roots between the
14909         different types of collections.
14910
14911 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14912
14913         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
14914
14915 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14916
14917         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
14918         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
14919
14920 2007-08-28  Mark Probst  <mark.probst@gmail.com>
14921
14922         * security-manager.c (mono_security_manager_get_methods):
14923         LinkDemandSecurityException now has 2 arguments instead of 3.
14924
14925 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
14926
14927         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
14928         platforms which need it.
14929
14930 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14931
14932         * sgen-gc.c: unregister thread data structures with a pthread_key_t
14933         dtor.
14934
14935 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14936
14937         * threads.c: free the thread static data on thread exit.
14938
14939 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
14940
14941         * class.c: walk the hierarchy to find the generic definition for
14942         a class (fixes runtime part of bug #82498).
14943
14944 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14945
14946         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
14947         ...
14948
14949         * image.c (mono_image_close): Here. Hopefully fixes #82510.
14950
14951 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14952
14953         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
14954
14955 2007-08-24  Robert Jordan  <robertj@gmx.net>
14956
14957         * appdomain.c: don't perform the ':'->';' substitution on Win32.
14958
14959 2007-08-24  Jb Evain  <jbevain@novell.com>
14960
14961         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
14962         for byref types.
14963
14964 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14965
14966         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
14967         #82286.
14968
14969 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14970
14971         * assembly.c: Fix a warning.
14972         
14973 2007-08-23  Marek Habersack  <mhabersack@novell.com>
14974
14975         * appdomain.c: parse the <runtime> section looking for the probing
14976         element with the 'privatePath' attribute, which sets additional
14977         directories in which the runtime should look for assemblies.
14978
14979 2007-08-23  Robert Jordan  <robertj@gmx.net>
14980
14981         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
14982         Fixes #82499.
14983
14984 2007-08-23  Martin Baulig  <martin@ximian.com>
14985
14986         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
14987         _mono_debug_init_corlib() and remove it from the header file.
14988
14989 2007-08-23  Martin Baulig  <martin@ximian.com>
14990
14991         * mono-debug-debugger.c
14992         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
14993         don't notify the debugger about it.
14994
14995         * mono-debug-debugger.h
14996         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
14997
14998 2007-08-23  Robert Jordan  <robertj@gmx.net>
14999
15000         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
15001         Code is contributed under MIT/X11 license.
15002
15003 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15004
15005         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
15006
15007 2007-08-22  Martin Baulig  <martin@ximian.com>
15008
15009         * mono-debug.c: Store debugging info on a per-domain basis and
15010         free it on domain unload.  Add support for unloading symbol files.
15011
15012         * mono-debug.h
15013         (MonoDebugList): New typedef.
15014         (MonoSymbolTable):
15015         - add `data_tables and `type_table'.
15016         - replace 'symbol_files' and `num_symbol_files' with a
15017           `MonoDebugList *'.
15018         (mono_debug_data_table): Removed.
15019         (mono_debug_list_add): New public function.
15020         (mono_debug_list_remove): New public function.
15021         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
15022         (mono_debug_init_2_memory): Renamed into
15023         mono_debug_open_image_from_memory().
15024         (mono_debug_close_image): New public function.
15025         (mono_debug_domain_create): Likewise.
15026         (mono_debug_domain_unload): Likewise.
15027         (MONO_DEBUGGER_VERSION): Bump to 60.
15028
15029         * mono-debug-debugger.h
15030         (MonoDebuggerEvent):
15031         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
15032         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
15033         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
15034         - rename `THREAD_CREATED' and `THREAD_EXITED' into
15035           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
15036         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
15037           meaning.
15038         (mono_debugger_add_symbol_file): Removed.
15039         (mono_debugger_add_type): Removed.
15040         (mono_debugger_lookup_type): Removed.
15041         (mono_debugger_lookup_assembly): Removed.
15042
15043         * domain.c
15044         (mono_domain_create): Call mono_debug_domain_create().
15045         (mono_init_internal): Call mono_debug_init_corlib().
15046
15047         * assembly.c
15048         (mono_assembly_close): Call mono_debug_close_image().
15049
15050 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15051
15052         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
15053         mmap call.
15054
15055 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15056
15057         * sgen-gc.c: ensure section->pin_queue_end is initialized
15058         correctly when non pinning objects in the section have been found.
15059
15060 2007-08-22  Marek Habersack  <mhabersack@novell.com>
15061
15062         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
15063         containing a list of directories separated by ':'. MSDN docs say
15064         the directories should be separated with ';'. Part of a bugfix for
15065         bug #81446
15066
15067 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
15068
15069         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
15070         it should MonoType and not MonoClass.
15071
15072 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
15073
15074         * culture-info-table.h : regenerated.
15075
15076 2007-08-20  William Holmes  <billholmes54@gmail.com>
15077
15078         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15079          to call ReplaceFile Kernel32 on windows or in io-layer.
15080         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15081         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15082          as an internal call.
15083
15084         Code is contributed under MIT/X11 license.
15085
15086 2007-08-20  Jb Evain  <jbevain@novell.com>
15087
15088         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15089         and MONO_EXCEPTION_FIELD_ACCESS.
15090
15091         * debug-helpers.[c|h]: new mono_field_full_name function.
15092
15093 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15094
15095         * class.c: Removed class_security_level() and moved it to
15096         security-core-clr.c.
15097
15098         * security-core-clr.c, security-core-clr.h: class_security_level()
15099         is now public and renamed to mono_security_core_clr_class_level().
15100         It also looks for security attributes in the classes a class is
15101         nested in.
15102
15103 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15104
15105         * security-core-clr.c, security-core-clr.h: CoreCLR security
15106         utility functions.
15107
15108         * Makefile.am: Added security-core-clr.[ch].
15109
15110         * security-manager.c, security-manager.h: Functions and enum for
15111         setting and getting the security mode.
15112
15113         * class.c: CoreCLR security checks.
15114
15115 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15116
15117         * icall-def.h, process.c, process.h: implemented icall to get
15118         user/system processor times.
15119
15120 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15121
15122         * domain.c, threads.c, class-internals.h, domain-internals.h: New
15123         reader-lock-free jit_info_table.
15124
15125 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
15126
15127         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15128
15129         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
15130
15131         * object-internals.h (MonoException): Add missing _data member.
15132
15133 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15134
15135         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15136         checking that only methods with matching qname or fqname are picked
15137         from implemented interfaces.
15138
15139 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15140
15141         * verify.c (do_newarr):added, do type verification of
15142         newarr ops, push the right value on the eval stack.
15143         * verify.c (mono_method_verify): use do_newarr
15144
15145
15146 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15147
15148         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15149         factored the common code into get_boxable_mono_type, which
15150         is now using mono_type_get_full, this fixed byref related tests.
15151
15152 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15153
15154         * class.c: added mono_type_get_full, this function has the same
15155         behavior of mono_class_get_full but the returned MonoType has
15156         all metadata of the associated token in case of a typespec token.
15157         * class.c: added mono_type_retrieve_from_typespec, used by 
15158         mono_type_get_full to retrieve the token type.
15159         * class.c (mono_class_create_from_typespec): changed to use
15160         mono_type_retrieve_from_typespec.
15161         * class.c (mono_ldtoken): changed to use mono_type_get_full
15162         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15163         * class-internals.h: exported mono_type_get_full for internal use.
15164
15165 2007-08-16  Jb Evain  <jbevain@novell.com>
15166
15167         * domain.c (supported_runtimes): add entry for
15168         the 'moonlight' runtime version.
15169
15170 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15171
15172         * verify.c (mono_method_verify): small typo sliped in.  
15173
15174 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15175
15176         * verify.c (do_unbox_value): added, do type verification of
15177         unboxing ops
15178         * verify.c (mono_method_verify): use do_unbox_value
15179
15180
15181 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15182
15183         * verify.c (dump_stack_value): fixed typo, was printing string
15184         instead of object on stack.
15185         * verify.c (do_box_value): moved the byref check up as it leads
15186         to invalid code and should be done earlier.
15187         * verify.c: improved error messages for and ldobj
15188
15189 2007-08-15  William Holmes  <billholmes54@gmail.com>
15190
15191         * marshal.c (emit_marshal_custom): Omit the call to 
15192           marshal_native_to_managed when calling native to managed 
15193           and the argument is specified as an out argument.
15194
15195         Code is contributed under MIT/X11 license.
15196
15197 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15198
15199         * verify.c: fixed the type checks for generics, function pointers and vectors.
15200         Added type verification for ldobj and ldtoken. The verifier
15201         would segfault if header or signature of a method contained references
15202         to non-existant types.
15203
15204 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15205
15206         * marshal.c (cominterop_get_ccw): Patch from
15207         Bill Holmes to no walk up interface hierarchy. 
15208         All parent methods should be present in the interface for COM.
15209    
15210         Code is contributed under MIT/X11 license.
15211
15212 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15213
15214         * marshal.c (emit_marshal_com_interface): Patch from
15215         Bill Holmes to handle COM Interfaces as return values
15216         for native->managed calls.
15217    
15218         Code is contributed under MIT/X11 license.
15219
15220 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
15221
15222         * marshal.c (cominterop_get_idispatch_for_object): Implement
15223         for runtime callable wrappers.
15224    
15225         Code is contributed under MIT/X11 license.
15226
15227 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
15228
15229         * pedump.c (main): changed from mono_init to mono_init_from_assembly
15230         so 2.0 types are accessible
15231
15232
15233 2007-08-13  Miguel de Icaza  <miguel@novell.com>
15234
15235         * domain.c (mono_init_internal): Call mono_assembly_load_friends
15236         once we load mscorlib.   Due to the order in which we initialize,
15237         the mono_assembly_load_full routine that loads mscorlib did not
15238         load friends.   We now load it once we load the
15239         mono_defaults.internals_visible_class class. 
15240
15241         * assembly.c: Expose the mono_load_friend_assemblies method.
15242
15243 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
15244
15245         * verify.c: improved the handling of boxing, better
15246         type checking for unary ops and conversion. Fix bug
15247         regarding managed pointer compatibility checking
15248
15249 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
15250
15251         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
15252
15253         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
15254
15255 2007-08-09  Raja R Harinath  <rharinath@novell.com>
15256
15257         * reflection.c (dup_type): Remove.
15258         * class.c (dup_type): Remove.
15259         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
15260         instead of the dodgy 'dup_type'.
15261         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
15262         handle the case where 'dup_type' needed the second argument.
15263
15264 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
15265
15266         * domain.c: Fix a warning.
15267
15268 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15269
15270         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
15271         checking that methods with the same fqname are not overridden
15272         with a method from an ancestor.
15273
15274 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
15275
15276         * threads.c (free_thread_static_data_helper): Avoid a crash if
15277         thread->static_data is not yet set.
15278
15279 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
15280
15281         * marshal.c: Use correct image when emitting
15282         native wrapper for COM calls.
15283    
15284         Code is contributed under MIT/X11 license.
15285
15286 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
15287
15288         * icall-def.h, security.c, security.h :
15289           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
15290
15291 2007-08-07  Martin Baulig  <martin@ximian.com>
15292
15293         * mono-debug-debugger.h
15294         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
15295
15296         * domain.c (mono_domain_free): Call
15297         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
15298
15299 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
15300
15301         * verify.c (check_underflow, check_overflow): error message now returns IL offset
15302         * verify.c (in_same_block): code should test if either offset is inside the clauses
15303         * verify.c (mono_method_verify): push the exception into the eval stack of exception
15304         and filter blocks
15305
15306 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15307
15308         * image.c (mono_image_close): Fix a leak.
15309
15310         * object.c (mono_runtime_invoke_array): Avoid using alloca.
15311
15312         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
15313
15314 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15315
15316         * domain.c, threads.c, threads-types.h: fix memory retention issue
15317         with thread static variables not being cleared on domain unload.
15318         Reuse thread static slots after domain unload.
15319
15320 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15321
15322         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15323         nullable type.
15324
15325         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15326         now done in mono_runtime_invoke_array.
15327
15328         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
15329         receiver is a nullable type.
15330
15331         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
15332         generic parameter.
15333
15334 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
15335
15336         * marshal.c: Implement COM Objects as return type for 
15337         managed->unmanaged calls. Added Release calls for COM Object
15338         out/return values in managed->unmanaged calls.
15339
15340         Code is contributed under MIT/X11 license.
15341
15342 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15343
15344         * threads.h, threads-type.h: move the hazard pointer declarations
15345         to the private header.
15346
15347 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15348
15349         * file-io.c, appdomain.c: memory leak fixes.
15350
15351 2007-08-02  Dick Porter  <dick@ximian.com>
15352
15353         * socket-io.c
15354         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15355         SO_REUSEADDR setting into io-layer/sockets.c.
15356
15357 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15358
15359         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15360         from Object when called on a generic parameter. Fixes #82211.
15361
15362 2007-08-01  Dick Porter  <dick@ximian.com>
15363
15364         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15365         Fixes bug 79250 yet again.
15366
15367 2007-07-30  Martin Baulig  <martin@ximian.com>
15368
15369         Merged the `debugger-dublin' branch.
15370
15371         * mono-debug.h
15372         (MonoDebugDataTable): New typedef.
15373         (MonoDebugMethodAddressList): New typedef.
15374         (MonoDebugWrapperData): Removed.
15375         (MonoDebugSymbolTable): Removed `current_data_table',
15376         `current_data_table_size', `current_data_table_offset'.
15377         (MonoDebugDataItemType): Moved into mono-debug.c.
15378         (MonoDebugMethodJitInfo): Remove `address'.
15379         (mono_debug_data_table): New global variable.
15380         (mono_debug_lookup_method_addresses): New public function.
15381         (mono_debug_find_method): Take a `MonoMethod *', not a
15382         `MonoDebugMethodInfo *'.
15383
15384         * mono-debug.c: Drop support for the old symbol tables.
15385
15386 2007-06-28  Martin Baulig  <martin@ximian.com>
15387
15388         * mono-debug.c (mono_debug_debugger_version): New public variable.
15389
15390 2007-07-31  William Holmes  <billholmes54@gmail.com>
15391
15392         * metadata.c Changed mono_type_create_from_typespec to not insert
15393           the type into the hash map until after
15394           do_mono_metadata_parse_type has completed.
15395         Fixes Bug #82194
15396         Code is contributed under MIT/X11 license.
15397
15398 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15399
15400         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15401         generic parameter. Fixes #82211.
15402
15403 2007-07-27  Jb Evain  <jbevain@novell.com>
15404
15405         * pedump.c (dump_metadata, dump_metadata_header): dump
15406         versions contained in the metadata header.
15407
15408 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15409
15410         * threads.c: register small_id_table with the GC.
15411
15412 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15413
15414         * threads.c, threads.h, class-internals.h, object-internals.h:
15415         Hazard pointers, to be used by lock-free parallel algorithms.
15416
15417 2007-07-26  Dick Porter  <dick@ximian.com>
15418
15419         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15420         routine on non-windows platforms, as I've not managed to think of
15421         a non-kludgy way of doing this.  Finishes off bug 78739.
15422
15423 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15424
15425         * object.c: properly setup interface_bitmap in proxy vtables.
15426
15427 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15428
15429         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15430         to create unique shadow copy target directories, use the domain's
15431         serial number instead. Each domain gets a unique target directory
15432         that way.
15433
15434         * domain.c (mono_domain_create): added code to increment domain
15435         shadow copy serial number and cache the value in the current
15436         domain structure.
15437
15438         * domain-internals.h (struct _MonoDomain): added a new field -
15439         shadow_serial to hold the serial number used in generation of
15440         shadow-copy directories. This is to make sure that the directory
15441         name is unique for each and every domain created. We avoid a race
15442         condition with overriding assemblies already in use by other app
15443         domains.
15444
15445 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15446
15447         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15448         binding generic parameters.
15449
15450 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15451
15452         * metadata.c (do_mono_metadata_parse_generic_class): Use
15453         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15454         error.
15455
15456 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15457
15458         * loader.c, class-internals.h, reflection.c: removed the per-method
15459         generics hashtable: we use the global one through the call of
15460         mono_class_inflate_generic_method ().
15461
15462 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15463
15464         * class.c, metadata.c, class-internals.h: introduce yet another
15465         generics global cache for inflated methods (fixes 98% of the perf
15466         issue in bug #81806).
15467
15468 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15469
15470         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15471         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15472         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15473         return a MonoGenericInst containing (a copy) of those types.
15474         (mono_metadata_inflate_generic_inst): Update to changes.
15475         (mono_metadata_parse_generic_inst): Likewise.
15476         (mono_get_shared_generic_inst): Likewise.
15477         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15478         (mono_reflection_bind_generic_method_parameters): Likewise.
15479         * metadata-internals.h: Likewise.
15480         * icall.c (free_generic_context): Kill.
15481         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15482
15483         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15484         mono_metadata_type_dup.
15485         * marshal.c (mono_mb_create_method): Likewise.
15486
15487         * metadata.c (mono_metadata_type_dup): Rename from
15488         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15489         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15490         * marshal.c, metadata-internals.h: Update to changes.
15491
15492 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15493
15494         * class.c: fixed a small leak for array classes and removed warning.
15495
15496 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15497
15498         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15499         Return 0x8000000 for return parameters. Fixes #82161.
15500
15501 2007-07-21  Marek Habersack  <grendello@gmail.com>
15502
15503         * appdomain.c (get_shadow_assembly_location): append the current
15504         ticks value to the path. Avoids overwriting the same assemblies by
15505         several threads at the same time.
15506
15507 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15508         and Raja R Harinath  <rharinath@novell.com>
15509
15510         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15511         Simplify slightly.
15512         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15513         property for testing if a method is a generic method definition.
15514
15515 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15516
15517         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15518
15519 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15520
15521         * verify.c: used function from private branch, reverted to the one in class.h 
15522
15523 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15524
15525         * verify.c: a typo slipped in and the code wont compile
15526
15527 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15528
15529         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15530         disabled box instruction as it is doing the wrong thing
15531         improved stack dump messages, now it is easier to debug type related issues
15532
15533
15534 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15535
15536         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15537
15538 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15539
15540         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15541         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15542         grouped with class and valuetype. This change will simply 
15543         the code as it should be handled just like unmanaged pointers.
15544
15545 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15546
15547         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15548
15549 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15550
15551         * verify.c: several stack merge issues fixed, reference comparisons now
15552         check the type size. strict type check now works correctly.
15553         added more uses of IS_MANAGED_POINTER macro.
15554         fixed issues pointed by running the test suite against .net.
15555         
15556
15557 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15558
15559         * class.c, loader.c, class-internals.h: Removed the
15560         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15561         defines.
15562
15563         * icall.c: Better error checking in some internal reflection
15564         methods.
15565
15566 2007-07-18  William Holmes  <billholmes54@gmail.com>
15567
15568         * filewatcher.c : removed unused variable 'filename' in 
15569           ves_icall_System_IO_FSW_SupportsFSW
15570
15571 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15572
15573         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15574         obsolete, removed.
15575
15576 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15577
15578         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15579         
15580         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15581
15582 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15583
15584         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15585         Implement generics support.
15586         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15587
15588         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15589         type_args and method_args arguments.
15590         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15591         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15592         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15593
15594 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
15595
15596         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
15597           It adds a rootimage parameter to mono_reflection_get_type_internal,
15598           adds new function mono_reflection_get_type_with_rootimage and use
15599           the rootimage to resolve the types instead of the current image
15600
15601 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15602
15603         * culture-info-table.h: Forgot to update after r78304.
15604
15605 2007-07-13  Raja R Harinath  <rharinath@novell.com>
15606
15607         * class.c (mono_class_is_open_constructed_type)
15608         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
15609
15610 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
15611
15612         * class.c (mono_bounded_array_class_get):  method fails if used with
15613         an incomplete TypeBuilder enum (no basetype field), fixed it by 
15614         avoiding calculating the size for such array as it cannot be instantiated.
15615         Fix bug #82015
15616
15617 2007-07-12  Raja R Harinath  <rharinath@novell.com>
15618
15619         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
15620         field.
15621         * metadata.c, reflection.c: Update to changes.
15622
15623 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
15624
15625         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
15626         mono_class_is_valid_enum, they are used to valide a enum when loading.
15627         * reflection.c: used new functions to throw TypeLoadException when and
15628         invalid enum is build with TypeBuilder. Fixes #82018
15629   
15630 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15631
15632         * object.c: forgot commit of mono_class_setup_methods () to access
15633         iface->methods.
15634         * object-internals.h: added a few more handy fields to
15635         MonoIMTCheckItem.
15636
15637 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15638
15639         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
15640         iface->methods.
15641
15642 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15643
15644         * class-internals.h, object-internals.h, object.c: IMT-based
15645         interface invocation core from Massimiliano Mantione
15646         (massi@ximian.com) with a reworked arch-specific interface,
15647         bsearch implementation and a few bugfixes and memory savings by me.
15648
15649 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
15650
15651         * class.c (mono_class_create_from_typedef): mono would segfault if 
15652         an enum did not have a __value field. It now throws a TypeLoadException
15653         for such cases. Fix bug #82022
15654
15655 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15656
15657         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
15658
15659 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15660
15661         * class.c (mono_class_init): If a class is already inited but has
15662         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
15663
15664 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15665
15666         * class.c: Properly handle the case of an unimplemented interface
15667         method.  Fixes: 81673.
15668
15669 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15670
15671         * class-internals.h, object.c: cleanup patch from massi: use
15672         MonoVTable->interface_bitmap since the vtable interfaces offset array
15673         is going away.
15674
15675 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15676
15677         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
15678         GetMDStreamVersion icall instead.
15679
15680 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
15681
15682         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
15683         not use mono_dl_build_path() with a full library name: makes
15684         fallbacks to libgaim and libfam work.
15685
15686 2007-07-06  William Holmes  <billholmes54@gmail.com>
15687
15688         * assembly.c: Added a continue statement in probe_for_partial_name when
15689          parse_assembly_directory_name fails.  Fixes : 82002
15690
15691 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
15692
15693         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
15694         and added a verification  for TYPEDBYREF.
15695         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
15696         make native int interchangeable with int32 and some small cleanup and formating.
15697         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
15698         handle byref of byref.
15699         * verify.c (push_local): handle byref of byref.
15700         * verify.c (do_binop): invalid mix of values is unverifiable
15701         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
15702         added visibility checks
15703         * verify.c (field related method): added visibility checks
15704         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
15705
15706 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
15707
15708         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
15709         string.
15710
15711 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15712
15713         * profiler.c (mono_profiler_load): Fix an off-by-one error.
15714
15715         * marshal.c (emit_marshal_string): When returning a string from managed code,
15716         allways make a copy even for unicode strings. Fixes #81990.
15717
15718 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
15719
15720         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
15721         of byref generic inst types (bug #81997).
15722
15723 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
15724
15725         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
15726         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
15727
15728 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
15729
15730         * marshal.c (emit_marshal_string): Add support for unicode strings in
15731         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
15732
15733 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
15734
15735         * verify.c: field load/store are now verified, missing only access checks now
15736
15737 2007-06-28  Martin Baulig  <martin@ximian.com>
15738
15739         * mono-debug.c (mono_debug_debugger_version): New public variable.
15740
15741 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
15742
15743         * locales.c: When constructing DateTimeFormat or NumberFormat for
15744         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
15745         MonoCultureInfo contructed from the current locale is always
15746         read-only and has UseUserOverride set to true. All MonoCultureInfo
15747         instances returned for GetCultures have both IsReadOnly and
15748         UseUserOverride set to true. Fixes part of bug #81930.
15749
15750 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
15751
15752        * icall-def.h: Update System.__ComObject icalls
15753        * marshal.c: Avoid managed transition (and object creation)
15754        when looking up COM interface in RCW.
15755        * marshal.h: Ditto.
15756        
15757        Code is contributed under MIT/X11 license.
15758
15759 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
15760
15761         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
15762         to avoid crashes during assembly unloading.
15763
15764 2007-06-22  Raja R Harinath  <rharinath@novell.com>
15765
15766         Fix MethodInfo.IsGenericMethodDefinition
15767         * reflection.c (mono_reflection_bind_generic_method_parameters):
15768         Rearrange code to ensure we always uses a generic method definition.
15769         * class.c (mono_class_inflate_generic_method_full): Set
15770         'generic_container' field only for generic method definitions.
15771         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15772         Use presense of 'generic_container' field as indication of being a
15773         generic method definition.
15774
15775 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
15776
15777         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15778
15779         * object-internals.h: Reflect changes in the layout of the managed Delegate
15780         class.
15781         
15782         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
15783         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
15784         runtime memory used by the dynamic method. Fixes #77146.
15785
15786 2007-06-21  Dick Porter  <dick@ximian.com>
15787
15788         * file-io.h: 
15789         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
15790         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
15791         81767.
15792
15793 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15794
15795         * reflection.c (method_encode_methodspec): Add a tripwire.
15796         * class.c (inflate_generic_type): The fully open generic type is
15797         not the same as the generic type definition.
15798
15799 2007-06-21  Martin Baulig  <martin@ximian.com>
15800
15801         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
15802
15803         * mono-debug-debugger.h
15804         (MonoDebuggerBreakpointInfo): Removed.
15805         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
15806         (mono_debugger_remove_breakpoint): Likewise.
15807         (mono_debugger_breakpoint_callback): Likewise.
15808         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
15809
15810 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15811
15812         * metadata.c (mono_metadata_lookup_generic_class): The fully open
15813         generic type is not the same as the generic type definition.
15814         * class.c (mono_generic_class_get_class): Likewise.
15815
15816 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
15817
15818         * icall.c: The second argument to 
15819         System.Reflection.MethodBase.GetMethodFromHandleInternalType
15820         is a MonoType not a MonoClass.
15821
15822 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15823
15824         * verify.c: support for function pointers in the verifier
15825
15826 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15827
15828         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
15829
15830 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
15831
15832         * assembly.c: removed Mono.Data.SqliteClient from the list of
15833         forward-compatible assemblies as it breaks the ABI (bug #81899).
15834
15835 2007-06-19  Raja R Harinath  <rharinath@novell.com>
15836
15837         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
15838         lookup/update with the loader lock.
15839         * reflection.c (mono_class_bind_generic_parameters): No need to
15840         protect mono_metadata_lookup_* with the loader lock.
15841         * class.c (inflate_generic_type): Likewise.
15842         
15843         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
15844         on a generic instantiated type.
15845
15846 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
15847
15848         *verify.c: produce meanfull error messages on verification error
15849         *verify.c: fixed some cases of verification errors reported as validation errors
15850         *pedump.c: fixed the error name array, now it shows validation errors properly
15851         *verify.h: fixed the contant that should be used for verification errors
15852
15853 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
15854
15855         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
15856         for bug #77596, 81858 and 80743 (generics data structures on domain
15857         unload).
15858
15859 2007-06-15  Raja R Harinath  <rharinath@novell.com>
15860
15861         Avoid allocating 'MonoGenericContext' on the heap.
15862         * class-internals (_MonoMethodInflated::context): Make field
15863         inline, not a pointer.
15864         * loader.c (method_from_methodspec): Allocate 'new_context' on the
15865         stack.  Use the context embedded within the inflated method as the
15866         hash key, rather than 'new_context'.
15867         * class.c (inflate_generic_context): Simplify.  Return a struct
15868         rather than allocating on the heap.
15869         (mono_class_inflate_generic_method_full): Update to changes.  Now,
15870         doesn't salt away a copy of the context -- simplifying the
15871         lifetime rules of a 'MonoGenericContext *'.
15872         (mono_method_get_context): Return pointer to embedded context.
15873         (setup_generic_array_ifaces): Allocate temporary context on stack.
15874         * reflection.c (inflate_mono_method): Likewise.
15875         (mono_reflection_bind_generic_method_parameters): Likewise.
15876         Use the context embedded within the inflated method as the hash key.
15877
15878         Avoid a source of allocation of 'MonoGenericContext'.
15879         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
15880         and 'cached_context' fields into embedded 'MonoGenericContext' field.
15881         * class.c: Update to changes.
15882         (mono_generic_class_get_context): Simplify drastically.  Now just
15883         returns a pointer to the field.
15884         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
15885         argument as a const pointer.
15886         (mono_metadata_generic_context_equal): Likewise.
15887         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
15888         Update to changes.
15889
15890 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
15891
15892         * verify.c improved the handling of brtrue/brfalse, factored out common code
15893
15894 2007-06-14  Raja R Harinath  <rharinath@novell.com>
15895
15896         Kill MonoGenericMethod.
15897         * class-internals.h (MonoGenericContext::method_inst): Rename from
15898         'gmethod' and convert to a MonoGenericInst.
15899         (MonoGenericMethod): Remove.
15900         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
15901         * loader.c (method_from_methodspec): Update to changes.  Use a
15902         MonoGenericContext as the key to the hashtable.
15903         * metadata.c (mono_metadata_generic_context_equal): Rename from 
15904         'mono_metadata_generic_method_equal' and take MonoGenericContext.
15905         (mono_metadata_generic_context_hash): Likewise from
15906         'mono_metadata_generic_method_hash'.  Change hash function.
15907         (mono_metadata_load_generic_params): Update to changes.
15908         (mono_get_shared_generic_method): Remove.
15909         * metadata-internals.h (mono_get_shared_generic_method): Remove.
15910         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
15911         (inflate_generic_context): Likewise.
15912         (mono_class_inflate_generic_method_full): Likewise.
15913         (setup_generic_array_ifaces): Likewise.
15914         (mono_class_create_from_typespec): Likewise.
15915         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
15916         (method_encode_methodspec): Update callsite.
15917         (reflection_methodbuilder_to_mono_method): Update to changes.
15918         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
15919         MonoGenericContext as the key to the hashtable.
15920         (inflate_mono_method): Update to changes.
15921
15922         * class-internals.h (MonoGenericMethod::container): Remove.
15923         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15924
15925 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
15926
15927         * profiler-private.h, profiler.c, profiler.h: added API to profile
15928         exception events.
15929
15930 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15931
15932         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
15933
15934 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15935
15936         * verify.c: method invocation is now validated, now we verify parameter types on stack.
15937         Fixed overflow and underflow not aborting the verification process.
15938
15939 2007-06-13  Mark Probst  <mark.probst@gmail.com>
15940
15941         * class-internals.h (MonoStats): Added stats entries for dynamic
15942         code allocations.
15943
15944 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
15945
15946         * loader.c (mono_free_method): Free header->locals and header->clauses.
15947
15948         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
15949         dynamic case.
15950
15951         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
15952
15953         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
15954
15955 2007-06-12  Raja R Harinath  <rharinath@novell.com>
15956
15957         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
15958         the tables.
15959
15960 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15961
15962         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
15963
15964 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15965
15966         MonoGenericMethod on a diet
15967         * class-internals.h (_MonoMethodInflated::reflection_info): Move
15968         here ...
15969         (_MonoGenericMethod::reflection_info): ... from here.
15970         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
15971         Update to changes.
15972         * reflection.c (inflate_mono_method): Likewise.
15973         (mono_reflection_bind_generic_method_parameters): Likewise.
15974
15975 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15976
15977         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
15978         *verify.c: factored long ldarg forms to share code with short forms
15979
15980 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15981
15982         *verify.c: fixed code formating factored some duplicate code
15983         into a new function
15984
15985         *verify.h: fixed binary incompatibility introduced earlier
15986
15987         *pedump.c: fixed formating
15988
15989 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15990
15991         Fix assertion when disassembling Mono.C5.dll
15992         * loader.c (method_from_methodspec): Avoid inflating a method
15993         twice with the same context.  If the methodref is inflated, use
15994         the declaring method instead.
15995
15996         * class.c (mono_class_from_generic_parameter): Fix case similar to
15997         bug #81830 handled below, but for method containers.
15998
15999 2007-06-10  Raja R Harinath  <harinath@gmail.com>
16000
16001         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
16002         get_shared_generic_class.  Directly inflate the instance.
16003         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
16004         (inflate_generic_class): Delete.
16005         (get_shared_generic_class): Delete.  Move setting of
16006         'cached_class' and 'cached_context' ...
16007         * metadata.c (mono_metadata_lookup_generic_class): ... here.
16008
16009         * metadata.c (mono_metadata_lookup_generic_class): Change
16010         signature to take the components of a MonoGenericClass rather than
16011         an allocated MonoGenericClass.  Change semantics to be intern-like.
16012         * reflection.c (mono_class_bind_generic_parameters): Update to
16013         changes.  Make locking region tighter.
16014         * class.c (inflate_generic_class): Update to changes.
16015         (get_shared_generic_class): Likewise.
16016         * metadata-internals.h: Likewise.
16017
16018         * reflection.c (mono_class_bind_generic_parameters): Take and
16019         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
16020         (mono_reflection_bind_generic_parameters): Use
16021         'mono_class_bind_generic_parameters' rather than duplicate the code.
16022         * class.c (mono_bounded_array_class_get): Update to changes.
16023         * object-internals.h: Likewise.
16024
16025         * reflection.c (mono_class_bind_generic_parameters): Only support
16026         parameterizing generic type definitions.  Remove support for other
16027         open types.
16028
16029 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
16030
16031         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
16032
16033         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
16034         in the dynamic case.
16035
16036 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
16037
16038         * threads.c: When cleaning up thread, reset the Background bit.
16039         Fixes bug #81720.
16040
16041 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
16042
16043        * metadata.c: Move variable declarations to top of scope.
16044        * verify.c: Move variable declarations to top of scope.
16045
16046        Code is contributed under MIT/X11 license.
16047
16048 2007-06-08  Raja R Harinath  <rharinath@novell.com>
16049
16050         * reflection.c (mono_class_bind_generic_parameters): Replace
16051         open-coded loop with mono_metadata_inflate_generic_inst.
16052
16053         * class.c (get_shared_generic_class): Don't call
16054         mono_get_shared_generic_inst.  Use the container's own
16055         'class_inst'.
16056
16057         * metadata.c (mono_metadata_load_generic_params): Move
16058         initialization of 'context' field here from ...
16059         * class.c (mono_class_create_from_typedef): ... here, and ...
16060         * loader.c (mono_get_method_from_token): ... here.
16061
16062         * class.c (get_shared_generic_class): Rename from
16063         mono_get_shared_generic_class and make static.
16064         (mono_get_shared_generic_inst): Move to metadata.c.
16065         * loader.c (mono_get_shared_generic_method): Likewise.
16066         * class-internals.h, metadata-internals.h: Update to changes.
16067
16068         Fix #81830
16069         * class.c (mono_class_from_generic_parameter): Don't assume a
16070         generic container owner exists.  Generic containers from monodis
16071         don't have any.
16072
16073 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
16074
16075         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
16076         * verify.h: new typedefs to returns the non-verifiable status
16077         * verify.c: initial implementation of generics, stack merging and object compatibility check
16078
16079 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16080
16081         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16082         a MonoInternalHashTable again (fixed bug in internal hash table
16083         code).
16084
16085 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16086
16087         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16088         MonoInternalHashTable again (fixed bug in internal hash table
16089         code).
16090
16091 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16092
16093         * class.c, image.c, class-internals.h, domain.c,
16094         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16095         changes.  Have to figure out what makes them break the SWF
16096         regression.
16097
16098 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16099
16100         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16101         a MonoInternalHashTable now.
16102
16103 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16104
16105         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16106         MonoInternalHashTable now.
16107
16108 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
16109
16110         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16111         invoke_impl code.
16112
16113         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16114
16115         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16116         dependent trampoline.
16117
16118         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16119
16120         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16121
16122 2007-05-29  Robert Jordan  <robertj@gmx.net>
16123
16124         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16125
16126 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
16127
16128         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16129
16130 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
16131
16132        * marshal.c: Fix interface lookup loops for
16133        cominterop_get_com_slot_for_method and 
16134        cominterop_get_method_interface. Only need to lookup
16135        if type is a class, else use interface type method is on.
16136
16137        Code is contributed under MIT/X11 license.
16138
16139 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
16140
16141         * reflection.c: HasSecurity can be present even if no specially 
16142         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16143         SecurityAttribute). Fix CAS regression tests on buildbot.
16144
16145 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
16146
16147        * appdomain.c: Add configure checks for header files.
16148        * image.c: Add configure checks for header files.
16149        * file-io.c: Add configure checks for header files.
16150        * debug-mono-symfile.c: Add configure checks for header files.
16151        * threadpool.c: Add configure checks for header files.
16152        * console-io.c: Add configure checks for header files.
16153        * profiler.c: Add configure checks for header files.
16154        * rawbuffer.c: Add configure checks for header files.
16155        * icall.c: Add configure checks for header files.
16156        * rand.c: Add configure checks for header files.
16157        * socket-io.c: Add configure checks for header files.
16158
16159        Code is contributed under MIT/X11 license.
16160
16161 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
16162
16163         * reflection.c (mono_custom_attrs_from_builders): Remove the 
16164         assertion as it breaks the build.
16165         
16166         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16167
16168         * reflection.c (lookup_custom_attr): Make a copy here too.
16169
16170         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16171         dynamic images.
16172
16173         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16174         images.
16175
16176         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16177         info.
16178
16179 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
16180
16181         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
16182         (load_cattr_value): Ditto.
16183
16184 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
16185
16186         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
16187
16188 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
16189
16190         * threads.c: In "start_wrapper", set apartment_state to MTA if
16191         apartment_state is Unknown and we're running on 2.0 profile or
16192         higher.
16193         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
16194         to main method, then set apartment_state to Unknown on 1.0 profile,
16195         and MTA on 2.0 profile.
16196
16197 2007-05-16  Jb Evain  <jb@nurv.fr>
16198
16199         * class-internals.h (MonoDefaults): Add an attribute_class and
16200           customattribute_data_class.
16201         * domain.c (mono_init_internal): Populate them.
16202         * reflection.c: Use them to remove duplicates. Make a vew
16203         MonoClass variables `static'.
16204
16205 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
16206
16207         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
16208         step in implementing IMT, so that all isinst checks now can go
16209         through the bitmap.
16210         This was needed because vtables for TransparentProxy need to look
16211         like the vtable of the "target" class, so they need to point to
16212         its interface bitmap directly.
16213
16214         * object.c: inside "mono_class_create_runtime_vtable" and
16215         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
16216
16217 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16218
16219         * object-internals.h
16220           culture-info.h : added territory field in MonoCulture and
16221           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
16222         * locales.c : fill territory field above too.
16223         * culture-info-table.h : regenerated.
16224
16225 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
16226
16227         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
16228         Fixes #81599.
16229
16230 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
16231
16232         * object.c: Always initialize apartment, even if 
16233         there is no custom attributes on entry point.
16234         
16235         Code is contributed under MIT/X11 license.
16236
16237 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
16238
16239         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
16240         * metadata.c: If no encoding is set, check for unicode
16241         on class.
16242         
16243         Code is contributed under MIT/X11 license.
16244
16245 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16246
16247         * threads.c: Handle if mono_thread_current returns NULL 
16248         
16249         Code is contributed under MIT/X11 license.
16250
16251 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16252
16253         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
16254         in start_wrapper. Added mono_thread_init_apartment_state and
16255         mono_thread_cleanup_apartment_state.
16256         * object.c: Initialize thread apartment state on main thread
16257         by checking for STAThreadAttribute on entry point.
16258         * object-internals.h: Add apartment_state field to MonoThread.
16259         * threads-types.h: Add unmanaged definition of 
16260         System.Threading.ApartmentState, MonoThreadApartmentState.
16261         
16262         Code is contributed under MIT/X11 license.
16263         
16264 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
16265
16266         * class.c: Fix windows build.
16267         * class-internals.h: Fix windows build.
16268         
16269         Code is contributed under MIT/X11 license.
16270
16271 2007-05-08  Robert Jordan  <robertj@gmx.net>
16272
16273         * process.c (CreateProcess_internal):
16274         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
16275         .CreateNoWindow was specified. Fixes #81496.
16276
16277 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16278
16279         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
16280         step in implementing IMT, replaced it with two compact arrays
16281         (interfaces_packed and interface_offsets_packed) and a bitmap that
16282         is used for isinst checks (interface_bitmap).
16283
16284         * class.c: (compare_interface_ids): compare function to pass to
16285         bsearch when looking for an interface with a given id.
16286         (mono_class_interface_offset): reimplemented using bsearch on
16287         interfaces_packed, getting the offset from interface_offsets_packed.
16288         (print_implemented_interfaces): utility debugging function.
16289         (setup_interface_offsets): reworked to initialize interfaces_packed,
16290         interface_offsets_packed and interface_bitmap.
16291
16292         * object.c: replaced all accesses to "MonoClass.interface_offsets"
16293         with uses of interfaces_packed and interface_offsets_packed.
16294
16295 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16296
16297         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
16298         mono_class_interface_offset prototype to wrap all accesses to
16299         "MonoClass.interface_offsets".
16300
16301         * class.c: Implemented mono_class_interface_offset, and wrapped all
16302         accesses to "MonoClass.interface_offsets".
16303
16304         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
16305         "MonoClass.interface_offsets".
16306
16307 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16308
16309         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
16310         GetMethodFromHandle overloads (bug #78637).
16311
16312 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16313
16314         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
16315         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
16316
16317 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
16318
16319         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
16320         #81498.
16321
16322         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16323         gracefully.
16324         (mono_custom_attrs_from_index): Ditto.
16325
16326         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
16327         Fixes #81501.
16328
16329 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
16330
16331         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16332         is now allocated from a mempool.
16333
16334 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
16335
16336         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16337         caller holds threads_lock, leading to deadlocks. Fixes #81476.
16338
16339 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
16340
16341         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16342         mono_loader_clear_error () too late. Fixes #81463.
16343
16344 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
16345
16346         * culture-info-table.h : regenerated.
16347
16348 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
16349
16350         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16351         is missing.
16352
16353 2007-04-25  Dick Porter  <dick@ximian.com>
16354
16355         * Makefile.am: Put the mingw enforced-optimisation back into the
16356         PLATFORM_WIN32 section.
16357
16358 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
16359
16360         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16361         patch.
16362
16363         * image.c (mono_image_load_module): New API function to load a module reference.
16364
16365         * image.c (load_modules): Load modules lazily. Fixes #80812.
16366
16367         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16368         
16369         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16370
16371         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16372         to mono_image_load_module_dynamic.
16373
16374 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16375
16376         * marshal.c: Fix calling convention for CCW on non-windows
16377         platforms. STDCALL on windows, CDECL everywhere else to work 
16378         with XPCOM and MainWin COM.
16379         
16380         Code is contributed under MIT/X11 license.
16381
16382 2007-04-23  Martin Baulig  <martin@ximian.com>
16383
16384         Fix #80969.
16385
16386         * loader.c
16387         (method_from_memberref): Added `gboolean *used_context' argument.
16388         (mono_get_method_from_token): Likewise.
16389         (mono_get_method_full): Don't insert the method in the cache when
16390         `used_context' is true.
16391
16392 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16393
16394         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16395
16396         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16397         create new MonoTypes for returned types.
16398         * class.c (mono_generic_class_get_class): Export mono-internal.
16399         * class-internals.h: Update to changes.
16400
16401 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16402
16403         * threadpool.c, threadpool.h, icall-def.h: patch from
16404         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16405
16406 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16407
16408         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16409         
16410         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16411
16412         * threads.c (mono_thread_get_stack_bounds): New helper function.
16413
16414         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16415         Correctly compute stack bounds when attaching. Fixes #81394.
16416
16417 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16418
16419         * reflection.c: fix handling of doubles in custom attributes
16420         for the arm-fpa format (bug #81368).
16421
16422 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16423
16424         * reflection.c (assembly_add_win32_resources): Mildly relax an
16425         bounds check to let the end pointer point just past the end of the
16426         allocated buffer.  (may fix #81384)
16427
16428 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16429
16430         * culture-info-table.h : regenerated.
16431
16432 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16433
16434         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16435         the thread is aborted early.
16436
16437 2007-04-05  Dick Porter  <dick@ximian.com>
16438
16439         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16440         FindFirstFile()/FindNextFile() to find entries.  This lets the
16441         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16442         81038.
16443
16444         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16445         the parameters of
16446         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16447
16448 2007-04-04  Martin Baulig  <martin@ximian.com>
16449
16450         * debug-helpers.c
16451         (mono_method_desc_full_match): Add support for nested classes.
16452
16453 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16454
16455         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16456
16457 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16458
16459         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16460         waiting for too many threads.
16461
16462 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16463
16464         * environment.c: Fix return value check on uname so we can get the 
16465         executing version on Solaris operating systems.
16466
16467 2007-03-28  Jb Evain  <jbevain@gmail.com>
16468
16469         * class.c (mono_type_get_name_recurse): Complete the
16470         fix for the creation of assembly qualified names for
16471         pointer types. Fixes #81208.
16472
16473 2007-03-27  Dick Porter  <dick@ximian.com>
16474
16475         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16476         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16477         changed.
16478
16479         * threads.c
16480         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16481         the value of ReleaseMutex().
16482
16483 2007-03-27  Dick Porter  <dick@ximian.com>
16484
16485         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16486         in little-endian order, not network endian, so must be converted
16487         to host endian here.  Fixes bug 80593.
16488
16489 2007-03-22  Jb Evain  <jbevain@gmail.com>
16490
16491         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16492         qualified names for pointer types. Fixes #81208.
16493
16494 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16495
16496         * marshal.c: Add support for PreserveSigAttribute. 
16497         
16498         Code is contributed under MIT/X11 license.
16499
16500 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16501
16502         * process.c: Fix endianness issues. Fixes #81126.
16503
16504         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16505         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16506
16507         * image.c (mono_image_lookup_resource): Make this work on big-endian
16508         machines.Change API contract so the caller needs to free the return value.
16509         
16510         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16511         API change.
16512         
16513 2007-03-14  Martin Baulig  <martin@ximian.com>
16514
16515         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16516         mono_type_get_desc() as well.
16517
16518 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16519
16520         * icall.c:  Fix environ access in VS.  
16521         
16522 2007-03-13  Alp Toker  <alp@atoker.com>
16523
16524         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16525         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16526         #63841.
16527
16528 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16529
16530         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16531         circular references among dynamic methods. Fixes #81091.
16532
16533         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16534
16535 2007-03-09  Martin Baulig  <martin@ximian.com>
16536
16537         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16538
16539 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16540
16541         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16542         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16543         
16544         Code is contributed under MIT/X11 license.
16545         
16546 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16547
16548         * loader.c: Reapply patch for bug #79424.
16549
16550 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16551
16552         * metadata.c (mono_type_to_unmanaged): Only convert object to
16553         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16554
16555 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16556
16557         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16558         (and incorrectly set) is_reference field from MonoGenericInst.
16559
16560 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16561
16562         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16563         a little earlier.
16564
16565         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16566
16567         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16568
16569 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16570
16571         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16572         FileOptions.1 value to mean "temporary", map that to
16573         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16574
16575         Fixes 80688
16576
16577 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16578
16579         * appdomain.c: implement MS .Net style shadow copying. Copies of
16580         the assemblies are made in a subdirectory of the dynamic base
16581         directory, the assembly names are preserved.
16582         Copy .mdb and .config files along with the assemblies being shadowed.
16583
16584 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16585
16586         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16587         (emit_marshal_handleref): Ditto.
16588
16589         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16590         on Visual C++. Fixes #80671.
16591
16592 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16593
16594         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16595         for clone operations.
16596
16597 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16598
16599         * marshal.c: Fix warnings.
16600
16601 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
16602
16603         * loader.c: allow case-insensitive matching of the dll name
16604         in dllmap handling when prefixed with "i:".
16605
16606 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
16607
16608         * threads.c: Fix #ifdef for dummy_apc function for VS.
16609
16610 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16611
16612         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
16613
16614 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
16615         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
16616         giving precedence to the methods with a fully qualified name
16617         (InterfaceName.MethodName) when building the interface sections
16618         of the vtable.
16619
16620 2007-02-16  Dick Porter  <dick@ximian.com>
16621
16622         * threadpool.c (append_job): Fix fast-path array handling, so it's
16623         less likely the array will grow exponentially when the load is
16624         heavy.
16625
16626 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16627
16628         * metadata-internals.h, loader.c: fix dllmap lookup order
16629         for non-function maps, too, and prepare for fallback code.
16630
16631 2007-02-12  Robert Jordan  <robertj@gmx.net>
16632
16633         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
16634         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
16635         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
16636         GlobalFree. Fixes a part of bug #77075.
16637
16638 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
16639
16640         * loader.c: implemented typedef parent in field memberref.
16641
16642 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
16643
16644         * marshal.c: Fix warnings and remember to call Release on
16645         IUnknown of RCW.
16646         
16647         Code is contributed under MIT/X11 license.
16648
16649 2007-02-10  Miguel de Icaza  <miguel@novell.com>
16650
16651         * class-internals.h: Add MonoHandleRef definition, and
16652         handleref_class to mono_defaults. 
16653
16654         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
16655         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
16656
16657         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
16658         (do nothing on this stage)
16659         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
16660         (emit_marshal_handleref): New method, used for argument handling
16661         of HandleRefs. 
16662
16663 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
16664
16665         * class.c (mono_class_setup_parent): Lazily init com types.
16666         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
16667         init com types.
16668         * object.c (mono_remote_class_vtable): Lazily init com types.
16669         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
16670         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
16671         * domain-internals.h: Expose mono_init_com_types.
16672         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
16673         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
16674         Add support for COM Callable Wrapper marshalling.
16675         * marshal.h: Add icall definitions.
16676         * gc.c: Handle freeing of CCWs in finalizer code.
16677         
16678         Code is contributed under MIT/X11 license.
16679
16680 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
16681
16682         * reflection.c: changed all the signature encoding code to use
16683         a variable-sized buffer.
16684
16685 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16686
16687         * marshal.c: locking fixes: never take the loader lock
16688         or other runtime locks when holding the marshal lock
16689         (fixes bug#80664).
16690
16691 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
16692
16693         * marshal.c: make the delegate function pointer mapping
16694         work for the moving GC.
16695
16696 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
16697
16698         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
16699         for bug #80618.
16700
16701 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16702
16703         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
16704         gmodule.
16705
16706 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16707
16708         * threadpool.c: made the code moving-GC safe.
16709
16710 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
16711
16712         * assembly.c, boehm-gc.c, class-internals.h, class.c,
16713         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
16714         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
16715         warning cleanup.
16716         * reflection.c: warning cleanup, some threading and moving GC fixes.
16717
16718 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
16719
16720         * class.c, loader.c: create the needed Set/Get/Address array methods
16721         as well as the .ctors in mono_class_init (), fixes bug #80567.
16722
16723 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
16724
16725         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
16726         we doesn't decrease its alignment. Should fix the sparc build.
16727
16728 2007-01-24  Dick Porter  <dick@ximian.com>
16729
16730         * socket-io.c
16731         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
16732         Create the returned object if we need to ignore an unsupported
16733         socket option.  Fixes a segfault reported by Atsushi.
16734
16735 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
16736
16737         * class.c, object.c: restrict GC-tracked fields to
16738         UIntPtr fields used inside corlib, so we provide better
16739         type info to the GC and also allow broken packing as in
16740         bug #80580.
16741
16742 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
16743
16744         * sgen-gc.c: removed duplicated function.
16745
16746 2007-01-19  Miguel de Icaza  <miguel@novell.com>
16747
16748         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
16749         value that means that the value is not supported, but that we
16750         should not return a failure, but instead report this as a
16751         successful operation.
16752
16753 2007-01-19  Raja R Harinath  <rharinath@novell.com>
16754
16755         Fix tests/bug79956.2.il
16756         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
16757         (mono_generic_class_get_class): If the generic definition in an
16758         enum, copy over other fields related to it.
16759
16760 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
16761
16762         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
16763         genericinst enums (bug #79215).
16764
16765 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
16766         * class.c: Fix bug 80307.
16767
16768 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
16769
16770         * image.c: if the file table is not present, try to load
16771         all the modules, since we don't have info about them
16772         having or not metadata (bug #80517).
16773         * assembly.c: allow mono_assembly_load_references () to
16774         work for netmodules.
16775
16776 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16777
16778         * image.c, metadata-internals.h, object.c: execute module
16779         cctors when running on the 2 runtime if present (bug #80487).
16780
16781 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
16782
16783         * icall.c: optimized InitializeArray() on bigendian.
16784
16785 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
16786
16787         * icall.c: fix for the broken ARM FPA double format.
16788
16789 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16790
16791         * icall.c: handle endian issues for r4 and r8 types, too, in
16792         the InitializeArray() icall.
16793
16794 2007-01-15  Miguel de Icaza  <miguel@novell.com>
16795
16796         * loader.c (mono_loader_error_prepare_exception): Clear the error
16797         once we have extracted the information from it, do this before we
16798         call into the JIT's class loading mechanisms.
16799
16800         * object.c (mono_class_create_runtime_vtable): Do not clear the
16801         loader error before calling mono_class_get_exception_for_failure
16802         as the loader error is needed inside
16803         mono_class_get_exception_for_failure to throw the error (thinko).
16804
16805         Fixes #80521
16806         
16807 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
16808
16809         * reflection.c: align fields rva data so it's faster to load at
16810         runtime.
16811
16812 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16813
16814         Prepare to simplify GenericMethod handling.
16815         * class-internals.h (mono_method_get_context): New accessor function.
16816         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
16817         rather than directly accessing '->context' field.
16818
16819         * class-internals.h (_MonoGenericParam.method): Move ...
16820         (_MonoGenericContainer): ... here.  Add into union with klass field.
16821         * class.c, icall.c, loader.c, metadata.c, reflection.c:
16822         Update to changes.
16823
16824 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
16825
16826         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
16827         the wrapper type enum and reduce relocations.
16828
16829 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16830
16831         * reflection.c (inflate_mono_method): Reuse method instantiation
16832         from the generic method, if available.
16833
16834 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16835
16836         * marshal.c (emit_marshal_variant): Fix conv_arg
16837         type in last commit, based on whether parameter is byref.
16838         
16839 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16840
16841         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
16842         marshalling.
16843         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
16844         MONO_TYPE_OBJECT back for VARIANT support.
16845
16846 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16847
16848         * marshal.c, marshal.h, icall-def.h: Implement 
16849         Marshal.ReAllocCoTaskMem.
16850
16851 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
16852
16853         * marshal.c: memory retention fixes: use the proper
16854         image cache for runtime_invoke method lookups.
16855
16856 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
16857
16858         * mempool.c: added code to help debug mempool allocations.
16859
16860 2007-01-11  Dick Porter  <dick@ximian.com>
16861
16862         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
16863         support (experimenting with faking it with IP_MTU_DISCOVER for
16864         systems that don't have IP_DONTFRAGMENT.)
16865         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
16866         icall.
16867
16868         * icall-def.h: new System.Net.Sockets.Disconnect icall.
16869
16870         * socket-io.h: Add new fields to MonoSocketAsyncResult
16871         corresponding to the new ones in Socket.cs.
16872
16873 2007-01-11  Raja R Harinath  <rharinath@novell.com>
16874
16875         Fix IronPython regression mentioned in #80249
16876         * metadata.c (do_mono_metadata_parse_generic_class): Clear
16877         'cached_context' field, since it may have been initialized as a
16878         side-effect of metadata parsing.
16879
16880         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
16881         (_MonoGenericClass.cached_class): Move here and rename from lone
16882         remaining field of ...
16883         (_MonoInflatedGenericClass): ... this.  Remove.
16884         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
16885         to changes.
16886
16887         Fix mcs/tests/test-128.cs regression.
16888         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
16889         2007-01-10 change below.
16890         [MONO_TYPE_OBJECT]: Recurse into array case.
16891
16892 2007-01-11  Raja R Harinath  <harinath@gmail.com>
16893
16894         * class-internals.h (mono_get_inflated_generic_class): Remove.
16895         * class.c (mono_get_inflated_generic_class): Remove.
16896         (mono_generic_class_get_class): Rename from
16897         mono_class_create_generic.
16898         (mono_class_from_mono_type) [GENERICINST]: Use it.
16899         * reflection.c, metadata.c: Update to changes.  Use
16900         'mono_class_from_mono_type'.
16901
16902 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
16903
16904         * reflection.c: use passed type when encoding an array element
16905         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
16906
16907 2007-01-09  Robert Jordan  <robertj@gmx.net>
16908
16909         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
16910         result arguments (someDelegate.EndInvoke (unrelatedAres)).
16911         Fixes bug #80392.
16912
16913 2007-01-09  Raja R Harinath  <rharinath@novell.com>
16914
16915         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
16916
16917         * object.c (set_value): Avoid aliasing between type->data.klass
16918         and type->data.generic_class.
16919
16920         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
16921
16922 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16923
16924         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
16925         between type->data.klass and type->data.generic_class.
16926
16927 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
16928
16929         * marshal.c: In MS.NET, StringBuilder objects are not copied by
16930         value in out parameters.
16931
16932 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16933
16934         Simplify invariant for MonoGenericClass::klass field.
16935         * class.c (mono_class_create_generic): Verify 'klass' is null.
16936         * metadata.c (do_mono_metadata_parse_generic_class): Don't
16937         initialize 'klass' field.
16938
16939 2007-01-05  Raja R Harinath  <rharinath@novell.com>
16940
16941         Ongoing work to avoid redundant data and simplify invariants.
16942         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
16943         'generic_class', and change type to a GenericInst.
16944         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
16945         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16946
16947 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
16948
16949         * class.c : skip io-layer under PLATFORM_WIN32.
16950
16951 2007-01-03  Tor Lillqvist  <tml@novell.com>
16952
16953         Fix #80305: In a bundled executable, look in the bundled exe
16954         assembly to determine the runtime version. Add the possibility to
16955         bundle also the machine.config file.
16956         
16957         * assembly.c (mono_assembly_open_from_bundle): Make
16958         non-static. Allow being called even if we have no bundled
16959         assemblies, and return NULL right away in that case.
16960
16961         * domain-internals.h: Declare mono_assembly_open_from_bundle()
16962         here.
16963
16964         * domain.c (app_config_parse): Take an assembly exe file name as
16965         parameter instead of a config file name. Check for a bundled
16966         config file for that assembly by calling
16967         mono_config_string_for_assembly_file() (see below) before looking
16968         for one in the file system.
16969         (get_runtimes_from_exe): Corrsponding change to call of
16970         app_config_parse().
16971         (get_runtimes_from_exe): Check for bundled assembly exe file first
16972         by calling mono_assembly_open_from_bundle(). If no bundled
16973         assembly exe file is found, call mono_image_open() as before to
16974         look it up in the file system.
16975
16976         * mono-config.c: Add variable bundled_machinec_onfig.
16977         (mono_config_string_for_assembly_file): New function.
16978         (mono_config_for_assembly): Move code snippet that looks for a
16979         bundled assembly .config file into the above new function. Call
16980         it.
16981         (mono_register_machine_config, mono_get_machine_config): New
16982         functions to set and retrieve
16983
16984         * assembly.h: Declare mono_register_machine_config().
16985
16986         * mono-config.h: Declare mono_get_machine_config() and
16987         mono_config_string_for_assembly_file().
16988
16989         * icall.c: No declaration of environ necessary on Win32. It is
16990         declared (as a macro expanding to a function call) in stdlib.h.
16991         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
16992         New internal mono function. Returns the value of
16993         mono_get_machine_config() as a Mono string.
16994
16995         * icall-def.h: Add get_bundled_machine_config().
16996
16997 2007-01-04  Raja R Harinath  <rharinath@novell.com>
16998
16999         Remove redundant field
17000         * class-internals.h (_MonoGenericContext.container): Remove field.
17001         * loader.c (mono_method_get_signature_full): Don't parse a
17002         "container" for a signature parse when the signature is inflated
17003         immediately.
17004         (method_from_methodspec): Likewise, for a generic_inst.
17005         * class.c, metadata.c, reflection.c: Update to changes.
17006
17007 2006-01-04  Raja R Harinath  <rharinath@novell.com>
17008
17009         * class-internals.h (_MonoGenericClass): Rename 'context' field to
17010         'cached_context', and change semantics -- it starts off NULL, and
17011         is initialized on demand.
17012         * class.c (mono_generic_class_get_context): New accessor to
17013         replace 'context' field accesses.
17014         (mono_class_get_context): New helper.
17015         (*): Update to changes.
17016         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
17017
17018 2007-01-03  Miguel de Icaza  <miguel@novell.com>
17019
17020         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
17021         before the memcpy.   Fixes Marshal2 regression.
17022
17023 2007-01-02  Jb Evain  <jbevain@gmail.com>
17024
17025         * blob.h: add a MONO_TYPE_ENUM definition
17026         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
17027         fix the encoding of arrays of enums in custom attributes.
17028
17029         Fixes #79666.
17030
17031 2007-01-01  Miguel de Icaza  <miguel@novell.com>
17032
17033         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
17034         string is null terminated, but only cut the string short if it
17035         overflows the buffer.   
17036         
17037         (mono_string_to_byvalstr): Also fix this routine.   The code here
17038         was not properly terminating a string (it was only terminated
17039         because of the previous catch-all memset). 
17040
17041         I left the memset, because I do not know if applications expect
17042         the runtime to clear this region. 
17043
17044         Fixes #79944.
17045
17046         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
17047         Clear the error before returning to unmanaged code to prevent the
17048         runtime from being confused later on (fixes  80420).
17049         (ves_icall_type_from_name): Always call mono_loader_clear_error
17050         after parsing a type that could have failed.
17051         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
17052
17053         * loader.c (mono_loader_clear_error): Fix indentation.
17054
17055 2006-12-28  Martin Baulig  <martin@ximian.com>
17056
17057         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
17058
17059 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17060
17061         * reflection.c: patch from Rolf Bjarne Kvinge to fix
17062         getting a token for an EnumBuilder.
17063
17064 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17065
17066         * reflection.c: be more careful in case resource generation
17067         fails to create the data array.
17068
17069 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17070
17071         * sgen-gc.c: write barrier for clone and fix unregister handles.
17072
17073 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17074
17075         * reflection.c: some fixes needed in the generics code for the moving GC.
17076
17077 2006-12-22  Robert Jordan  <robertj@gmx.net>
17078
17079         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17080         account. Fixes bug #80299.
17081
17082 2006-12-21  Raja R Harinath  <rharinath@novell.com>
17083
17084         Fix WaitHandle usage in delegates.
17085         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17086         * object.c (mono_wait_handle_new): Use the property set method to
17087         initialize the handle.
17088         (mono_wait_handle_get_handle): New.
17089         * threadpool.c (mono_async_invoke): Use it.
17090         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17091         Likewise.
17092         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17093
17094 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
17095
17096         * marshal.c (emit_marshal): Call emit_marshal_variant and
17097         emit_marshal_com_interface when applicable.
17098         (emit_marshal_variant, emit_marshal_com_interface): Add
17099         methods for this case and remove if's from emit_marshal_object.
17100         
17101 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17102
17103         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17104
17105 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
17106
17107         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17108         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17109         and GlobalFree on Windows. Remove FIXME.
17110
17111 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17112
17113         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17114         implementation for managed objects.
17115
17116 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17117
17118         * object.c: implemented code to be used for checking
17119         that no reference field overlaps with non-references.
17120
17121 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17122
17123         * threadpool.c: fix queue code to be compatible with the
17124         moving GC.
17125
17126 2006-12-18  Miguel de Icaza  <miguel@novell.com>
17127
17128         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17129         in structures by throwing ArgumentNullException.
17130
17131         (emit_marshal_safehandle): Also when they are null parameters.
17132
17133         (emit_marshal_safehandle): Add support for ref
17134         SafeHandles parameters
17135
17136 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17137
17138         * profiler.c: updated to use the mono-dl API instead of
17139         gmodule.
17140
17141 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17142
17143         * profiler.c: updated to use the mono-dl dynamic loading
17144         API instead of gmodule.
17145
17146 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17147
17148         * profiler.c: use readlink, older versions of glib don't have
17149         g_file_read_link ().
17150
17151 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17152
17153         * profiler.c: try to detect the path to mono if libc fails to provide
17154         a useful name (bug #80286).
17155
17156 2006-12-16  Raja R Harinath  <rharinath@novell.com>
17157
17158         Fix #80242
17159         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17160         instance, use the generic type definition instead.
17161         (ves_icall_Type_GetNestedTypes): Likewise.
17162         * class.c (mono_class_create_generic): Always set the
17163         nested_classes of a generic instance to NULL, even if the generic
17164         type definition has nested types.
17165
17166 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
17167
17168         * marshal.c (mono_string_from_bstr): Revert previous Windows change
17169         and fix on Linux.
17170         
17171 2006-12-15  Miguel de Icaza  <miguel@novell.com>
17172
17173         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17174         my arguments were in the wrong order.   I also fixed the Windows
17175         version which seems to have had the same issue.
17176
17177         (mono_free_bstr): On Unix, this is g_free.
17178         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17179         conversions (for the tests in corlib to pass).
17180
17181 2006-12-14  Miguel de Icaza  <miguel@novell.com>
17182
17183         * marshal.c (emit_ptr_to_object_conv): For now, ignore
17184         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
17185         exception if a ref SafeHandle in a struct has changed).
17186         
17187         (emit_struct_conv): Do not perform layout checks for classes
17188         derived from SafeHandle, as those are specially handled. 
17189
17190         (emit_object_to_ptr_conv): Add support for
17191         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
17192
17193         (emit_marshal_safehandle): Implement conversion of return values
17194         of safehandles (MARSHAL_ACTION_CONV_RESULT).
17195         
17196         * threads.c: WaitHandle now is compiled with two different handles
17197         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
17198         for 2.0.
17199         
17200         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
17201         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
17202         these routines to cope with both kinds of fields.
17203
17204 2006-12-12  Miguel de Icaza  <miguel@novell.com>
17205
17206         * metadata.c (mono_type_to_unmanaged): Handle the case where
17207         type->data.klass is a SafeHandle, and in that case, return the
17208         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
17209         MONO_MARSHAL_CONV_SAFEHANDLE. 
17210
17211 2006-12-11  Miguel de Icaza  <miguel@novell.com>
17212
17213         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
17214         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
17215         calling emit_marshal_object.
17216
17217         (emit_marshal_safehandle): Implement marshalling of
17218         SafeHandle parameters (no ref support yet).
17219
17220         (MarshalAction): Document the defines as I implement
17221         them for SafeHandle.
17222
17223         (emit_marshal_object): indentation police.
17224
17225         * class-internals.h: Define MonoSafeHandle.
17226         Add safehandle_class to MonoDefaults type.
17227
17228         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
17229         list of classes to check for fields. 
17230
17231         * domain.c (mono_init_internal): Add SafeHandle to the list of
17232         mono_defaults loaded.
17233
17234 2006-12-15  Raja R Harinath  <rharinath@novell.com>
17235
17236         Fix #80253
17237         * reflection.c (mono_reflection_bind_generic_parameters): If the
17238         generic type definition is a type builder, ensure that it is fully
17239         initialized before instantiating it.  Kill some dead code.
17240
17241 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17242
17243         * object.c: clear the loader_error () before loading
17244         more metadata stuff (bug #80258).
17245
17246 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
17247
17248         * icall.c, icall-defs.h: type modifiers icalls for
17249         parameters and properties.
17250
17251 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
17252
17253         * object.c, icall.c: fixed warnings.
17254
17255 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17256
17257         * marshal.c: fixed a couple of leaks and coding style in a few places.
17258
17259 2006-12-08  Dick Porter  <dick@ximian.com>
17260
17261         * process.c: Cope with NULL ProcessStartInfo arguments on windows
17262         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
17263         80173.
17264
17265 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17266
17267         * process.c: ProcessStartInfo may have only filename set and
17268         arguments can be NULL.
17269
17270 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17271
17272         * icall.c: fix leak found by Robert Jordan.
17273
17274 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17275
17276         * marshal.c, marshal.h: generate managed method to access an element
17277         of a multi-dimensional array.
17278
17279 2006-11-30  Paolo Molaro (lupus@ximian.com)
17280
17281         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
17282
17283 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17284
17285         * icall.c: back out GetFields () fix until the serialization code is
17286         fixed to not depend on the incorrect behaviour.
17287
17288 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17289
17290         * profiler.c: provide defaults if none are set.
17291
17292 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17293
17294         * Makefile.am, attrdefs.h: new public header file with
17295         constants for attributes for use by embedders.
17296
17297 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17298
17299         * icall.c: GetFields () fix for bug #80064.
17300
17301 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
17302
17303         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
17304         removed long unused icalls.
17305
17306 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
17307   
17308         * marshal.c: 
17309                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
17310                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
17311                 can be generated without a delegate class.
17312                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
17313         
17314         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17315
17316 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17317
17318         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
17319         #80069.
17320
17321 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17322
17323         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17324         icall-def.h: added icalls needed by System.GC.
17325
17326 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17327
17328         * loader.c: ensure the class in catch clauses is handled
17329         correctly for generics methods (fixes bug#79980).
17330
17331 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17332
17333         * monitor.h, monitor.c: added mono_locks_dump () function
17334         to help debug deadlocks involving managed locks.
17335
17336 2006-11-13  Dick Porter  <dick@ximian.com>
17337
17338         * file-io.c (get_file_attributes): If the file is a symlink try
17339         and get the stat data for the target, but also add the
17340         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
17341         the specs for the windows symlink support, but will probably have
17342         to be reworked when I have test data from a vista machine.  Fixes
17343         bug 79887.
17344
17345 2006-11-13  Dick Porter  <dick@ximian.com>
17346
17347         * gc.c (mono_domain_finalize): 
17348         * marshal.c (mono_delegate_begin_invoke): 
17349         * threadpool.c (socket_io_init, mono_thread_pool_init)
17350         (mono_thread_pool_finish): 
17351         * monitor.c (mono_monitor_try_enter_internal): 
17352         * threads.c (mono_thread_resume, mono_thread_init)
17353         (mono_thread_suspend_all_other_threads)
17354         (mono_thread_execute_interruption): 
17355         * appdomain.c (mono_domain_unload): Check for NULL error returns
17356         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
17357         75733.
17358
17359 2006-11-11  Miguel de Icaza  <miguel@novell.com>
17360
17361         * process.c
17362         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17363         Only close the handle if the value of the handle is not
17364         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17365         robust.
17366
17367         Improvement for #75733, so that we do not run into this problem. 
17368
17369         
17370         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17371         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17372         internal variables.  Fixes #79462 
17373         
17374
17375 2006-11-09  Dick Porter  <dick@ximian.com>
17376
17377         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17378         Use poll() not select().  Fixes bug 79397.
17379
17380 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17381
17382         Fix #79872
17383         * assembly.c (mono_assembly_load_from_full): Check that the given
17384         image has an assembly manifest.
17385
17386 2006-11-09  Ankit Jain  <jankit@novell.com>
17387
17388         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17389         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17390         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17391
17392 2006-11-07  Dick Porter  <dick@ximian.com>
17393
17394         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17395         Put the old resolver behaviour back for pre-2.0 profiles.
17396
17397 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17398
17399         * threadpool.c: precise GC and locking fixes.
17400
17401 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17402
17403         * class.c: don't load types that have an explicit unaligned
17404         managed reference. Provide better info in the TypeLoad exception.
17405         Part of the fix for bug #79744.
17406         * object.c: use the correct check for class type load issues.
17407
17408 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17409
17410         * class.c: enforce alignment of fields with managed references
17411         even when Pack=1 is forced by the user (bug #77788).
17412
17413 2006-11-03  Dick Porter  <dick@ximian.com>
17414
17415         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17416         If the address reverse lookup fails, return it as the hostname
17417         anyway.  Fixes bug 79721.
17418
17419 2006-11-03  Dick Porter  <dick@ximian.com>
17420
17421         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17422         Fix build on Windows.
17423
17424 2006-11-02  Dick Porter  <dick@ximian.com>
17425
17426         * icall-def.h: 
17427         * object-internals.h: 
17428         * exception.c (mono_get_exception_thread_interrupted): 
17429         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17430         Fixes bug 74525.
17431
17432         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17433         Check for pending Thread.Interrupt.
17434
17435 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17436         * loader.c: Fixed bug 79684.
17437
17438 2006-10-27  Dick Porter  <dick@ximian.com>
17439
17440         * file-io.c (get_file_attributes): Force symlinks to directories
17441         to be returned as a regular file.  Fixes bug 79733.
17442 2006-10-26  Dick Porter  <dick@ximian.com>
17443
17444         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17445         CreateFile to open a directory then we need to set the
17446         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17447
17448 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17449
17450         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17451         friends.
17452
17453 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17454
17455         * sgengc.c: small cleanup of timer code.
17456
17457 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17458
17459         * sgen-gc.c: fix some warnings and start adding support for
17460         complete object removal on domain unload.
17461
17462 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17463
17464         * assembly.c: build_assembly_name should not consider a version
17465         number without build or revision number invalid. Fixes bug #79715.
17466
17467 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17468
17469         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17470         call kernel32 function OutputDebugString directly.
17471         
17472         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17473         
17474 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17475
17476         * reflection.c: small cleanup, using a function to insert a MonoString
17477         in the string heap.
17478
17479 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17480
17481         * reflection.c: moving GC fixes.
17482
17483 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17484
17485         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17486         all the objects with finalizers belonging to an unloading appdomain.
17487
17488 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17489
17490         * sgen-gc.c: added ability to allocate even when the nursery is fully
17491         pinned and fixed a couple of bugs.
17492
17493 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17494
17495         * threads.h: Revert the last change for now.
17496
17497         * threads.h (mono_thread_get_pending_exception): Rename this to
17498         mono_thread_get_undeniable_exception ().
17499
17500 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17501
17502         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17503         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17504         when fname does not refer to valid assembly. This result in a more
17505         meaningful error message.
17506         * exception.c: added mono_get_exception_bad_image_format2 which 
17507         constructs a BadImageFormatException using the ctor taking a custom
17508         message and the file name. Passing in a NULL msg results in a default
17509         message.
17510         * exception.h: define mono_get_exception_bad_image_format2 function.
17511         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17512         when file name pointed to an invalid IL image. Use 
17513         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17514         as this results in a more meaningful error message.
17515
17516 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17517
17518         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17519         #79465.
17520
17521 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17522
17523         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17524         consistency with the other _size functions.
17525         (mono_type_stack_size): Ditto.
17526
17527         * class.c object.c icall.c: Fix warnings caused by the above change.
17528
17529         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17530
17531         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17532
17533         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17534
17535 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17536
17537         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17538         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17539         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17540         threadpool.h, threads-types.h: mark more internal functions.
17541
17542 2006-10-11  Dick Porter  <dick@ximian.com>
17543
17544         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17545         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17546         reproduce the bug even before applying the fix.)
17547
17548 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17549
17550         * reflection.c: allow retrieving attributes for arguments in generic
17551         methods (bug #79241).
17552
17553 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17554
17555         * debug-mono-symfile.c: properly check fopen () result (found by
17556         coverity).
17557
17558 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17559
17560         * reflection.c: make error message clearer and fixed two
17561         issuelets found by Coverity.
17562
17563 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17564
17565         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17566
17567 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17568
17569         * object-internals.h, gc-internal.h, profiler-private.h:
17570         mark internal functions.
17571
17572 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17573
17574         * reflection.c: put data in the text section.
17575         * icall.c: recognize more types in type_from_typename ().
17576         * process.c, marshal.c: added some GC FIXMEs.
17577
17578 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17579
17580         * loader.c: check for NULL before initializing.
17581
17582 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17583
17584         * gc.c (finalizer_thread): Use a non-alertable wait here.
17585
17586         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17587         until the correct solution is found.
17588
17589 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17590
17591         * reflection.c (mono_module_get_object): Avoid an assert when operating on
17592         modules with no metadata. Fixes #79596.
17593
17594         * image.c (load_metadata_ptrs): Put back the error message when
17595         the #- heap is encountered since the support is not complete yet.
17596
17597 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17598
17599         * gc.c: do not allow the user to SuppressFinalize () a
17600         delegate because it would leak the trampoline if present.
17601
17602 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17603
17604         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
17605         PropertyPtr table.
17606
17607 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
17608
17609         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
17610
17611         * metadata.c (mono_metadata_get_param_attrs): Ditto.
17612
17613         * row-indexes.h: Add definitions for *Ptr tables.
17614
17615         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
17616
17617         * metadata.c (mono_metadata_translate_token_index): New helper function to
17618         translate table indexes used in uncompressed metadata.
17619         (mono_metadata_decode_table_row): Ditto.
17620         (mono_metadata_decode_table_row_col): Ditto.
17621
17622         * metadata.c: Add table schema for *Ptr tables.
17623
17624         * class.c loader.c: Use the new helper function to access the affected metadata
17625         tables.
17626         
17627         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
17628         #38532.
17629         
17630 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
17631
17632         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
17633         sequences which can be unbounded in size. Fixes #79583.
17634
17635 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
17636
17637         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
17638         static initialization.
17639
17640         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
17641
17642         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
17643
17644         * domain.c (mono_domain_free): Free up type_init_exception_hash.
17645
17646         * object.c (mono_runtime_class_init): Implement correct semantics when a static
17647         ctor fails, i.e. throw the same exception on subsequent accesses.
17648         
17649 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
17650
17651         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
17652         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
17653         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
17654         Handle marshalling of interfaces and VARIANTs contained in structs.
17655         
17656         Code is contributed under MIT/X11 license.
17657         
17658 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
17659
17660         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
17661         
17662         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
17663         mempool.
17664
17665 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17666
17667         * console-io.c: ignore previous SIGINT handler.
17668
17669 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
17670
17671         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
17672         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
17673         #79460, #79461, #79485.
17674
17675         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
17676
17677         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
17678         #79217.
17679
17680 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
17681
17682         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
17683         could be generated from it.
17684
17685 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
17686
17687         * rand.c: fix read loop to correctly handle EINTR.
17688
17689 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17690
17691         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
17692         internal calls are defined to keep methods closer to the declaring
17693         type and allow a significant reduction in runtime relocations and
17694         memory usage.
17695
17696 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
17697
17698         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
17699         exception message to have FileNotFoundException use the default
17700         assembly load error message. Fixes bug #79426.
17701         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
17702
17703 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17704
17705         * threadpool.c: (start_thread_or_queue) use the root domain when
17706         creating the thread instead of the async object one.
17707
17708 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
17709
17710         * class.c, object.c, class-internals.h, reflection.c:
17711         for arrays, store element_size inside MonoClass (speedup
17712         for array object creation).
17713
17714 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
17715
17716         * icall.c: fixed CodeBase to use the file name and not the module
17717         name (bug #79365).
17718
17719 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17720
17721         * mono-debug.c, mono-debug.h: export find_method as
17722         mono_debug_find_method ().
17723
17724 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17725
17726         * debug-helpers.c, class-internals.h: added a few functions useful
17727         when debugging under gdb.
17728
17729 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17730
17731         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
17732         characters that need special handling.
17733
17734 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
17735
17736         * mono-config.c: make the os/cpu specification more flexible,
17737         allowing lists and negation.
17738
17739 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
17740
17741         * marshal.c: COM Interop fixes. Handle case where method->klass.
17742         is interface. Handle BSTR/MonoString when null. Use CDECL as 
17743         calling convention on non-windows platforms. This is for
17744         compatibility with XPCOM and MainWin COM.
17745         
17746         Code is contributed under MIT/X11 license.
17747         
17748
17749 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
17750
17751         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
17752         correctly. Fixes #79217.
17753
17754         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
17755
17756 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
17757
17758         * mono-config.c: allow both an os and cpu attribute for dllmap
17759         and dllentry elemnets to enable a single config file to be used
17760         for multiple architectures.
17761
17762 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
17763
17764         * loader.c: MonoLoaderError was cleared too soon on load failure.
17765         Fixes bug #79424.
17766
17767 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
17768
17769         * icall.c: use the defining class vtable when accessing a
17770         static field, not a pobblibly derived class.
17771
17772 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
17773
17774         * icall.c string-icalls.c: Remove references to unicode.h.
17775
17776         * unicode.h unicode.c Makefile.am: Remove these unused source files.
17777
17778         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
17779
17780         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
17781         indicating the image where custom marshaller types should be looked up.
17782         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
17783         custom marshallers, instead of corlib. Fixes #79425.
17784
17785 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
17786
17787         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
17788
17789 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
17790
17791         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
17792         Implement Environment.ProcessorCount.
17793         
17794         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
17795         Implement Environment.ProcessorCount.
17796         
17797         * icall.c: 
17798         Add Environment.ProcessorCount icall.
17799         
17800         Patch by Jason McFall.
17801
17802 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17803
17804         * assembly.c: don't append .exe/.dll when the filename already contains
17805         one of those extensions.
17806
17807 2006-09-12  Martin Baulig  <martin@ximian.com>
17808
17809         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
17810         to array interfaces.
17811
17812 2006-09-11  Martin Baulig  <martin@ximian.com>
17813
17814         * reflection.c (mono_image_build_metadata): Create the
17815         MethodImpl's after emitting all types and methods, so we don't
17816         need another fixup pass for them.
17817
17818 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
17819
17820         * class.c (mono_class_from_name_case): Fix regression introduced by the last
17821         change.
17822
17823 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
17824
17825         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
17826         unload.
17827
17828 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
17829
17830         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
17831         args is not set. Fixes #78926.
17832
17833 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
17834
17835         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
17836
17837         * image.c (load_class_names): Move this to class.c, and rename it to 
17838         'mono_image_init_name_cache'.
17839         (load_modules): Fix a warning.
17840
17841         * class.c icall.c image.c: Initialize image->name_cache lazily.
17842
17843         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
17844         on its name using information in the AOT file.
17845
17846         * class.c (mono_class_from_name): Use the new hook function.
17847
17848 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
17849
17850         * reflection.c (mono_param_get_objects): Handle enum default parameter values
17851         correctly.
17852
17853         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
17854         Fixes #79289.
17855         
17856 2006-09-06  Martin Baulig  <martin@ximian.com>
17857
17858         * icall.c (mono_lookup_internal_call): Small fix.
17859
17860 2006-09-05  Raja R Harinath  <rharinath@novell.com>
17861
17862         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
17863         double g_free.
17864
17865 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
17866
17867         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
17868         when --debug is specified.
17869
17870 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
17871
17872         * class.c (setup_generic_array_ifaces): Fix a warning.
17873
17874 2006-09-04  Miguel de Icaza  <miguel@novell.com>
17875
17876         * Temporarily remove the patch to assemly.c that checks the
17877         assembly versions as it breaks our gacutil.
17878
17879 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
17880
17881         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
17882
17883         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
17884         a net 1.0 runtime.
17885
17886         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
17887         created using the default ctor. Fixes #79152.
17888         (mono_string_builder_to_utf16): Ditto.
17889
17890 2006-09-01  Martin Baulig  <martin@ximian.com>
17891
17892         Fix handling of the generic array interfaces.
17893
17894         * class-internals.h
17895         (MonoDefaults): Removed `generic_array_class' and added
17896         `generic_ilist' class.
17897
17898         * class.c
17899         (mono_bounded_array_class_get): Add the new generic array interfaces.
17900         (setup_generic_array_ifaces): New static method; create vtable
17901         entries for each method in the generic array interfaces.
17902
17903         * metadata.c
17904         (select_container): Allow "parent-less" generic methods.
17905
17906         * marshal.c
17907         (mono_marshal_get_generic_array_helper): New public method.
17908
17909         * icall.c
17910         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
17911         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
17912         moved the interncall into System.Array.
17913
17914 2006-09-01  Raja R Harinath  <rharinath@novell.com>
17915
17916         A few more cases of avoiding work on types with ->byref set.
17917         Has the real fix for #79238
17918         * icall.c (is_generic_parameter): New helper.
17919         (ves_icall_Type_GetGenericParameterPosition): Use it.
17920         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
17921         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
17922         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17923         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
17924         reference types.
17925         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
17926         reference types.
17927         (ves_icall_Type_get_IsGenericInstance): Likewise.
17928         (ves_icall_Type_get_IsGenericType): Likewise.
17929
17930 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
17931
17932         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
17933         class if possible.
17934
17935         * mempool.h (mono_mempool_get_allocated): New helper function.
17936
17937         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
17938         change.
17939
17940         * mempool.c: Fix warnings and the calculation of stats.
17941
17942         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
17943
17944         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
17945
17946         * loader.c (mono_get_method_from_token): Update method_count stat.
17947
17948         * class-internals.h (MonoStats): Add some stats.
17949
17950 2006-08-31 Robert Jordan  <robertj@gmx.net>
17951
17952         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
17953         with managed variants.
17954         All code is contributed under the MIT/X11 license.
17955         
17956 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
17957
17958         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
17959         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
17960
17961         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
17962
17963         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
17964         with cycles in classes.
17965
17966         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
17967
17968         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
17969         missing a [MarshalAs] directive. Fixes #79203.
17970
17971         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
17972         klass->marshal_info. Fixes #79217.
17973
17974 2006-08-30  Martin Baulig  <martin@ximian.com>
17975
17976         Committing a patch from Joachim Ante <joe@otee.dk>:
17977         Add support for binary data symbol stores.
17978
17979         * debug-mono-symfile.c
17980         (mono_debug_open_mono_symbol_file): Renamed into
17981         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
17982         arguments.
17983
17984         * mono-debug.c
17985         (mono_debug_open_image): Added `raw_contents' and `size' args.
17986         (mono_debug_init_2_memory): New public function.
17987
17988 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
17989
17990         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
17991
17992 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17993
17994         * appdomain.c: implement support for ShadowCopyFiles.
17995
17996 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
17997
17998         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
17999         when value is NULL (and should remove CID #51).
18000
18001 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18002
18003         * image.c: moved 2 functions to ../utils.
18004
18005 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
18006
18007         * gc.c: cope with the target object of a GC handle being NULL
18008         (bug #78877).
18009
18010 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
18011
18012         * class.c: recursively check parent's explicit implementations
18013         of interface methods (fixes bug #79125).
18014
18015 2006-08-19  Miguel de Icaza  <miguel@novell.com>
18016
18017         * filewatcher.c: Avoid warnings when building, do not redefine
18018         constants that are defined.
18019
18020         Remove warnings.
18021
18022 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18023
18024         * image.c: don't fail when the link points to an absolute path.
18025
18026 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
18027
18028         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
18029         Fix CID #3.
18030
18031 2006-08-17  Miguel de Icaza  <miguel@novell.com>
18032
18033         * image.c (full_path): A new method used to obtain the actual path
18034         of an assembly even in the presence of symbolic links.  
18035
18036         This is necessary for the case where we are running a binary that
18037         has been GACed, but we are using the "published" path name
18038         ($prefix/mono/1.0/blah.exe) which happens to point to the real
18039         file in the GAC.
18040
18041         This was the source of the failure for the `xsp' command with the
18042         recent AppDomain changes, as far as the runtime was concerned,
18043         there were two different assemblies: $prefix/mono/1.0/blah.exe and
18044         $prefix/mono/gac/blah/version/blah.exe.
18045
18046         (do_mono_image_open): use full path
18047
18048 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18049
18050         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
18051
18052 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
18053
18054         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
18055         domain_id is supplied. Fix CID #241 and corlib's unit tests.
18056
18057 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18058
18059         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
18060         small structures. Fixes #78990.
18061
18062 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18063
18064         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
18065
18066         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
18067
18068 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18069
18070         * appdomain.c:
18071         * marshal.c: don't load all the assemblies from a domain into newly
18072         created ones. The new domains might have different rules and load
18073         assemblies from different locations. Fixes bug #76757.
18074
18075         Patch by Lluis. Conflicts resolved by Brian Crowell.
18076
18077 2006-08-16  Alp Toker  <alp@atoker.com>
18078
18079         * socket-io.c: First half of the fix for #79084.
18080         Set sa_size to the length of the content, not that of the struct.
18081         Don't add NULL suffix to the content, this should be done in
18082         managed code if needed.
18083
18084 2006-08-14  Raja R Harinath  <rharinath@novell.com>
18085
18086         Fix part of #79012
18087         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18088         mono_metadata_parse_type returns NULL.
18089
18090 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
18091
18092         * normalization-tables.h : new file for string normalization data.
18093         * locales.c, locales.h, icall.c :
18094           added load_normalization_resource() for string normalization,
18095           and icall as well.
18096         * Makefile.am : added normalization-tables.h to the sources.
18097
18098 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
18099
18100         * marshal.c: Add more helper functions to reduce code duplication and use them
18101         everywhere.
18102
18103 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
18104
18105         * marshal.c: Fix non-x86 stdcall warnings.
18106         
18107         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
18108         them everywhere.
18109
18110 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
18111
18112         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18113         type check on multi-dimensional arrays. Fixes #79000.
18114
18115 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
18116
18117         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18118         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18119         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18120         * class-internals.h: add is_com_object to class structure.
18121         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18122         null checks to COM object marshalling. Fix .ctor call on RCW.
18123         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18124         
18125         All code is contributed under the MIT/X11 license.
18126
18127 2006-08-09  Dick Porter  <dick@ximian.com>
18128
18129         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18130         racing mono_monitor_allocator_lock() somewhere, so don't delete
18131         the critical section for now.  Found by running and exiting
18132         monodevelop.
18133
18134 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
18135
18136         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18137         (ves_icall_System_ComObject_FindInterface): Ditto.
18138         (ves_icall_System_ComObject_CacheInterface): Ditto.
18139
18140         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18141         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18142
18143 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18144
18145         * threadpool.c: treat pipes from process asynchronous reads as sockets
18146         when reading from them, so we get select/poll or epoll to wait for
18147         data.
18148
18149 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
18150
18151         * loader.c: Fix a typo (CID #233) in the null check.
18152
18153 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
18154
18155         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18156         Hopefully fixes #78949.
18157         
18158         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
18159         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18160         bytes. Fixes #78972.
18161
18162 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18163
18164         * filewatcher.c: we need to set errno here.
18165
18166 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18167
18168         * filewatcher.c: let Win32Exception get the error value.
18169
18170 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18171
18172         * filewatcher.c: translate errno into win32 errors for Win32Exception
18173         to know what happened.
18174
18175 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
18176
18177         * threadpool.c: Fix more warnings.
18178
18179         * assembly.c (search_loaded): Fix warnings.
18180
18181         * threadpool.c (mono_thread_pool_finish): Fix warnings.
18182         (mono_async_invoke): Ditto.
18183
18184 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
18185
18186         * object.c (mono_remote_class_vtable): Need to create proxy vtable
18187         entries for __ComObject type in addition to ComImport types.
18188         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
18189         about hash table.
18190         
18191         All code is contributed under the MIT/X11 license.
18192
18193 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18194
18195         * image.c: avoid tentative loading of modulerefs that contain
18196         no metadata (P/Invoke library names).
18197
18198 2006-07-28  Dick Porter  <dick@ximian.com>
18199
18200         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
18201         mono_loader_lock() somewhere, so don't delete the critical section
18202         for now.  Found by running and exiting monodevelop.
18203
18204 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18205
18206         * filewatcher.c: define the inotify syscalls when we're building on
18207         linux and have sys/syscall.h. The build system might not have support
18208         for inotify but the target system might have it.
18209
18210 2006-07-26  Miguel de Icaza  <miguel@novell.com>
18211
18212         * domain.c: Documentation updates.
18213
18214         * loader.c (mono_free_method): Do not release the method
18215         information if we are being profiled, as profilers will use this
18216         information at shut down to present some data to the user.
18217
18218         This is needed so that the profiler does not crash, as the
18219         profiler tends to keep MonoMethods around, and they might become
18220         invalid if we free these.
18221
18222         (mono_get_method_constrained): Return the original CIL stream
18223         method as well, so verification can be performed against it.
18224
18225 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18226
18227         * filewatcher.[ch]: support for inotify file system watcher.
18228         * icall.c: add new internal calls for the inotify file system watcher.
18229
18230 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18231
18232         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
18233         #78888.
18234
18235 2006-07-20  Dick Porter  <dick@ximian.com>
18236
18237         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
18238         warning.
18239
18240 2006-07-20  Dick Porter  <dick@ximian.com>
18241
18242         * threads.c (start_wrapper): Do the thread cleanup while we still
18243         hold a reference to its object.  Fixes bug 78123.
18244
18245 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
18246
18247         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
18248         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
18249           "managed-to-managed".
18250         * icall.c: Redirect string constructors that take sbyte* to
18251           ves_icall_System_String_ctor_RedirectToCreateString.
18252         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
18253           to CreateString () methods with matching signature.
18254         * reflection.c: Use original security informations for
18255           MONO_WRAPPER_MANAGED_TO_MANAGED.
18256         * security-manager.c: Use original security informations for
18257           MONO_WRAPPER_MANAGED_TO_MANAGED.
18258         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
18259           that is a placeholder and only its address should be used.
18260         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
18261           that is a placeholder and only its address should be used.
18262
18263 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
18264
18265         Begin implementing COM Interop.
18266         * appdomain.c: Increment corlib version.
18267         * class.c: Set ComImport classes' parent to __ComObject.
18268         * loader.c: Mark cominterop methods as such.
18269         * domain.c: Add __ComObject class to MonoDefaults structure.
18270         * image.c: Add 2 hashtables to the image for COM Interop related methods
18271         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
18272         using the mempool allocator
18273         
18274         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
18275         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
18276         declaration for mono_metadata_type_dup_mp.
18277         
18278         * debug-helpers.c: Added strings for two additional wrapper types
18279         * object.c: Create proxy objects for ComImport classes
18280         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
18281         and added __ComObject class to MonoDefaults structure.
18282         
18283         * object-internals.h: Finish MonoRealProxy definition, and add definition of
18284         MonoComInteropProxy and MonoComObject.
18285         
18286         * marshal.c: Added support for COM Interop
18287         (signature_cominterop): Converts managed signature to corresponding
18288         unmanaged COM signature.
18289         (cominterop_get_function_pointer): gets unmanaged function pointer via
18290         COM object vtable
18291         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
18292         (cominterop_get_method_interface): returns interface type that method is defined on
18293         (mono_mb_emit_cominterop_call): emits native call to function pointer
18294         gotten from vtable
18295         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
18296         that matches signature of unmanaged function.
18297         (cominterop_get_native_wrapper): wrapper around adjusted method call.
18298         (cominterop_get_invoke): forwards call from proxy to __ComObject
18299         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
18300         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
18301         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
18302         
18303         * marshal.h: Added Marshal icall declarations.
18304         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
18305         so we can access them in finalizer
18306         
18307 2006-07-14  Dick Porter  <dick@ximian.com>
18308
18309         * object.c (mono_type_initialization_cleanup): Fix a race
18310         condition by temporarily commenting out the critical section
18311         deletion.
18312
18313 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
18314
18315         * reflection.c (create_custom_attr): Fix some warnings.
18316         (create_custom_attr_data): Ditto.
18317         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
18318         types. Fixes #78855.
18319
18320 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
18321
18322         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18323
18324         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18325
18326 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
18327
18328         * reflection.c (resolve_object): Add support for DynamicMethod.
18329
18330         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18331         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18332
18333 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
18334
18335         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
18336         don't leak GPtrArray's pdata has we have no use (nor free) for it.
18337
18338 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
18339
18340         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18341         Fixes #77888.
18342
18343 2006-06-30  Raja R Harinath  <rharinath@novell.com>
18344
18345         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18346         slightly: remove a shadow local variable.
18347
18348 2006-06-29  Raja R Harinath  <rharinath@novell.com>
18349
18350         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18351         definition that introduces the virtual function slot.
18352         Also fix Coverity #105.
18353
18354 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
18355
18356         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18357         for dynamic assemblies. Fixes #78724.
18358
18359 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
18360
18361         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18362         Fixes #78722.
18363
18364 2006-06-21  Martin Baulig  <martin@ximian.com>
18365
18366         * reflection.c
18367         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18368         fixes #76484.
18369
18370 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18371
18372         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18373
18374 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18375
18376         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18377         nor TYPEREFs.
18378         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18379         Inflate result if necessary.
18380         (mono_class_get_full): Remove old version.  Rename from
18381         'mono_class_get' and add 'context' argument.  Pass it to
18382         ..._create_from_typespec.
18383         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18384         (mono_ldtoken): Revert change below.
18385
18386 2006-06-20  Martin Baulig  <martin@ximian.com>
18387
18388         * class.c (mono_ldtoken): Don't pass the generic context to
18389         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18390
18391 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18392
18393         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18394         and later freeing it. Fixes #78638.
18395
18396 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18397
18398         * icall.c (mono_class_get_throw): Revert over-zealous error
18399         throwing, the caller for mono_class_get_throw will cope with
18400         errors when classes are not properly initialized already.
18401
18402         The code still copes with loader exceptions though.
18403
18404         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18405         
18406 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18407
18408         Fixes the `make run1' version of RuntimeAbort (to be commited,
18409         source is in Bugzilla).
18410         
18411         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18412         FALSE on class loading failure instead of returning true.
18413
18414         * class.c (mono_class_create_from_typedef): It is possible for
18415         mono_metadata_interfaces_from_typedef_full to fail if a class is
18416         not found, cope with this.
18417         
18418
18419 2006-06-14  Dick Porter  <dick@ximian.com>
18420
18421         * socket-io.c: 
18422         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18423         4.1.1
18424
18425 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18426
18427         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18428
18429 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18430
18431         * icall.c: Another fix for building mono in Visual Studio.
18432
18433 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18434
18435         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18436         
18437 2006-06-09  Martin Baulig  <martin@ximian.com>
18438
18439         * debug-mono-symfile.c: Put this back and really fix it this
18440         time. Sorry for all the trouble.
18441
18442 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18443
18444         * icall.c (mono_class_get_throw): Fix a warning.
18445         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18446         ReflectionTypeLoadException if needed. Fixes #78606.
18447
18448         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18449         (mono_class_init): Ditto.
18450
18451         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18452         ref_only exceptions.
18453         (mono_loader_clear_error): Make this work even if there is no error.
18454
18455 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18456
18457         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18458         Marshal.GetComSlotForMethodInfo using internal call.
18459
18460 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18461
18462         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18463         a function for signalling it.
18464
18465         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18466         a referenced assembly is not found.
18467
18468         * loader.c (mono_loader_error_prepare_exception): Add support for 
18469         LOADER_ERROR_ASSEMBLY. Fix formatting.
18470
18471 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18472
18473         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18474         for VARIANT marshalling on windows and increment corlib version
18475         since Variant struct was added.
18476
18477 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18478
18479         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18480         stack trace line information:
18481
18482         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18483         (Martin) when looking up B which is between A and C, return A not C.
18484
18485         Bug is #78573.
18486
18487         Thanks to Alexander Olk for tracking this down.
18488
18489 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18490
18491         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18492         
18493         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18494         avoid clobbering its value.
18495         (mono_string_to_lpstr): Fix a warning on windows.
18496
18497 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18498
18499         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18500
18501         * reflection.c loader.c: Removed references to 'dummy' flag.
18502
18503         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18504
18505         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18506         it gets GC tracking.
18507
18508         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18509         GC tracking.
18510         
18511         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18512
18513         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18514
18515         * appdomain.c: Bump corlib version.
18516
18517 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18518
18519         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18520         CEE_STIND_REF when working with object references.
18521
18522 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18523
18524         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18525         Fixes #78539.
18526
18527 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18528
18529         * loader.c (method_from_memberref): Fix argument value for
18530         mono_loader_set_error_method_load (I was passing the MonoClass
18531         instead of the class name char *).
18532
18533 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18534
18535         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18536         CEE_STIND_REF when working with object references.
18537
18538 2006-05-30  Martin Baulig  <martin@ximian.com>
18539
18540         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18541         mono_method_full_name() change and replace the ':' with a '.'
18542         here.
18543
18544 2006-05-30  Martin Baulig  <martin@ximian.com>
18545
18546         * debug-mono-symfile.c
18547         (mono_debug_symfile_lookup_location): Fix the algorithm:
18548         when looking up B which is between A and C, return A not C.
18549
18550 2006-05-29  Martin Baulig  <martin@ximian.com>
18551
18552         * mono-debug.h
18553         (MonoDebugMethodInfo): Make the typedef public.
18554         (MonoDebugSourceLocation): New public struct.
18555
18556         * mono-debug.c
18557         (mono_debug_source_location_from_address): Removed.
18558         (mono_debug_source_location_from_il_offset): Removed.
18559         (mono_debug_il_offset_from_address): Removed.
18560         (mono_debug_address_from_il_offset): Removed.
18561         (mono_debug_lookup_method): New public function.
18562         (mono_debug_lookup_source_location): New public function; replaces
18563         the old mono_debug_source_location_from_*() functions; see the
18564         inline documentation.
18565         (mono_debug_free_source_location): New public function.
18566         (mono_debug_print_stack_frame): New public function; see the
18567         inline documentation.
18568
18569         * debug-mono-symfile.c
18570         (mono_debug_find_source_location): Renamed into
18571         mono_debug_symfile_lookup_location(); only take a
18572         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18573         documentation.
18574         (mono_debug_find_method): Renamed into
18575         mono_debug_symfile_lookup_method().
18576
18577 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18578
18579         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18580         returned by mono_image_open_full ().
18581
18582         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18583         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18584         #78517.
18585
18586         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18587         #78518.
18588
18589 2006-05-27  Miguel de Icaza  <miguel@novell.com>
18590
18591         * class.c (mono_class_from_typeref): handle missing images
18592         earlier, deals with bug #78418.   Refactor code; 
18593
18594         Fix a warning introduced in my previous commit (some stale code
18595         from before I revisited my patch).
18596
18597         * class.c (mono_class_create_from_typedef): On failure, remove the
18598         class from the MonoImage->class_cache as the class is not
18599         initialized;   Fixes the leak pointed out by Paolo.
18600
18601 2006-05-25  Dick Porter  <dick@ximian.com>
18602
18603         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
18604         DeleteCriticalSections until I figure out which one may still be
18605         sometimes locked when mono_thread_cleanup is called.
18606
18607 2006-05-24  Dick Porter  <dick@ximian.com>
18608
18609         * threads.c (mono_thread_cleanup): Move the threading cleanup out
18610         of mono_thread_manage and back into its own function, so it can be
18611         called after the finalizer thread has finished.
18612
18613         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
18614
18615 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
18616
18617         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
18618         Fixes #78495.
18619
18620         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
18621         with non-blittable elements.
18622         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
18623
18624 2006-05-24  Martin Baulig  <martin@ximian.com>
18625
18626         * mono-debug-debugger.h (MonoDebuggerEvent): Added
18627         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
18628
18629         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
18630         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
18631         `mono_debugger_event_handler' to NULL.
18632
18633 2006-05-24  Martin Baulig  <martin@ximian.com>
18634
18635         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
18636
18637 2006-05-24  Martin Baulig  <martin@ximian.com>
18638
18639         * mono-debug-debugger.h
18640         (mono_debugger_create_notification_function): Added
18641         `MonoCodeManager *' argument.
18642
18643 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
18644
18645         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
18646
18647 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
18648
18649         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
18650         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
18651         implementation.
18652
18653 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
18654
18655         * icall.c: precise GC support: objects can't be stored in unmanaged
18656         memory anymore, even if they are kept alive by other references: since
18657         they can move the GC needs to be able to always find them.
18658
18659 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18660
18661         * object.c: precise GC support for static fields. Support
18662         for moving GCs: write barriers and pinned allocation for interned
18663         strings.
18664
18665 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18666
18667         * domain.c, domain-internals.h: precise GC support for the MonoDomain
18668         structure.
18669
18670 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18671
18672         * class.c, gc.c: sgen and precise GC updates.
18673
18674 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
18675
18676         * marshal.h, marshal.c: added write barrier wrapper and precise type
18677         fixes.
18678
18679 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
18680
18681         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
18682         support.
18683
18684 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
18685
18686         * reflection.c: precise and sgen GC updates.
18687
18688 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
18689
18690         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
18691
18692 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
18693
18694         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
18695
18696 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
18697
18698         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
18699         MONO_TYPE_OBJECT. Fixes #78462.
18700
18701 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
18702
18703         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
18704         and blittable types.
18705
18706 2006-05-17  Miguel de Icaza  <miguel@novell.com>
18707
18708         * class.c (mono_class_get_exception_for_failure): Implement parts
18709         of a TODO: if the loader error is set (instead of the class
18710         error), we return a Loader exception that can be properly thrown
18711         elsewhere.
18712
18713         This was exposed by some Winforms 2.0 code that I tried to run
18714         (Atsushi pointed me to it).
18715
18716 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
18717
18718         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
18719         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
18720         
18721         * marshal.c (emit_marshal_vtype): Add limited support for 
18722         UnmanagedType.LPStruct. Fixes #78427.
18723
18724         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
18725         Applied a patch from kangaroo to fix #77523.
18726
18727 2006-05-17  Martin Baulig  <martin@ximian.com>
18728
18729         * threads.c
18730         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
18731         (debugger_thread_created): Removed.
18732         (debugger_thread_exited): Removed.
18733
18734 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
18735
18736         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18737
18738         * object-internals.h (MonoReflectionResource): Sync with managed version.
18739
18740 2006-05-12  Wade Berrier <wberrier@novell.com>
18741
18742         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
18743
18744 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
18745
18746         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
18747         functions try to allocate from the image mempool.
18748
18749 2006-05-12  Dick Porter  <dick@ximian.com>
18750
18751         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
18752
18753 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
18754
18755         * object.c: The FieldGetter and FieldSetter methods require the full
18756         name of the class, not only the name. Fixes bug #78277.
18757
18758 2006-05-11  Miguel de Icaza  <miguel@novell.com>
18759
18760         * loader.c (method_from_memberref): Do not pass the NULL klass to
18761         mono_loader_set_error_() methods.  Pass the non-NULL value
18762         (class). 
18763
18764 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
18765
18766         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
18767         (mono_assembly_close): Null out assembly->image->references after freeing it.
18768
18769         * image.c (mono_image_close): Free image->references.
18770         
18771         * reflection.c (mono_image_basic_init): Fix a small memory leak.
18772
18773 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18774
18775         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
18776         before checking if it's NULL (g_assert).
18777
18778 2006-05-10  Martin Baulig  <martin@ximian.com>
18779
18780         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
18781         I thought I already killed that two months ago, but now it somehow reappeared.
18782
18783 2006-05-10  Martin Baulig  <martin@ximian.com>
18784
18785         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
18786
18787 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
18788
18789         * reflection.c: Allocate memory for dynamically created methods in the image
18790         mempools.
18791
18792 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18793
18794         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
18795         don't use the ad pointer before checking if it's NULL (g_assert).
18796
18797 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
18798
18799         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
18800         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
18801
18802         * marshal.c: Allocate all signatures from mempools.
18803
18804         * marshal.c: Allocate some more signatures from mempools.
18805
18806 2006-05-09  Miguel de Icaza  <miguel@novell.com>
18807
18808         * object.c (mono_load_remote_field): The code used to provide a
18809         temporary variable for returning results if the user did not
18810         provide a result pointer.  But our temporary variable was allocted
18811         on the satck.
18812
18813         Fix calling code to always pass a result area.   Coverity ID 103.
18814
18815 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
18816
18817         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
18818         value, not the old. Fixes #78312.
18819         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
18820
18821         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
18822         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
18823         per-image cache.
18824
18825         * assembly.c (mono_assembly_close): Free image->references.
18826
18827         * assembly.c (mono_assembly_names_equal): Fix a warning.
18828         (mono_assemblies_cleanup): Cleanup more global data.
18829
18830         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
18831
18832         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
18833         ptr_cache and image->modules.
18834
18835         * image.c (mono_image_init): Allocate array_cache lazily.
18836         
18837 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18838
18839         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
18840         behavior was changed recently and has bad side effects.
18841
18842 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
18843
18844         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
18845         
18846         * assembly.c (mono_assembly_close): Remove a debug printf.
18847
18848         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
18849
18850         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
18851         to also allow for temporary references between mono_image_open ()/close ().
18852
18853         * domain.c (get_runtimes_from_exe): Add a FIXME.        
18854
18855 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
18856
18857         * marshal.c: Fix support for dynamic methods.
18858
18859         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
18860
18861         * marshal.c (mono_marshal_cleanup): New cleanup function.
18862
18863         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
18864         image mempools.
18865
18866         * class.c (mono_class_init): Fix leaking class->nested_classes.
18867
18868         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
18869
18870         * image.c (mono_image_init): Initialize the new cashes.
18871
18872         * image.c (mono_image_close): Destroy the new cashes.
18873
18874         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
18875
18876         * mempool.c (mono_mempool_strdup): New helper function.
18877
18878         * class-internals.h: Add prototype for mono_loader_unlock ().
18879
18880         * domain.c (mono_jit_info_table_find): Fix a warning.
18881         (mono_debugger_check_runtime_version): Ditto.
18882
18883         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
18884         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
18885         functions to these modules.
18886
18887         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
18888         metadata modules.
18889         
18890         * marshal.c (mono_free_bstr): Fix a warning.
18891
18892         * assembly.c (mono_assembly_open_full): Fix another small leak.
18893
18894         * object.c: Fix some unload leaks in the remoting code.
18895
18896         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
18897         function.
18898
18899         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
18900
18901         * reflection.c: Fix some unload leaks in dynamic assemblies.
18902
18903 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
18904
18905         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
18906         * marshal.h: Add BSTR support on Win32
18907         * icall.c: Add BSTR icalls
18908         * metadata.h: Add BSTR enums
18909
18910 2006-04-28  Miguel de Icaza  <miguel@novell.com>
18911
18912         Work to catch the crash from #76795 and turn it into an
18913         exception.   As I stubbed out pieces of the VisualBasic support,
18914         I found a number of places where the code was failing and I added
18915         checks to those places. 
18916         
18917         * metadata.c (do_mono_metadata_parse_generic_class): Make this
18918         function return a status code.  If we fail to parse the signature
18919         from mono_metadata_parse_generic_inst, return FALSE.
18920
18921         * loader.c (mono_get_method_from_token): If we fail to load the
18922         method (mono_class_get) return NULL.   
18923
18924         * (method_from_memberref): Return NULL if we are unable to parse
18925         the method signature
18926
18927         (mono_loader_error_prepare_exception): Since we now use the
18928         loader_error flag internally to stop processing, and obtaining
18929         exceptions that might be thrown will walk this code path the
18930         proper way of going from a MonoLoaderError into a
18931         MonoException was convoluted.   This new routine encapsulates the
18932         process of turning the error into an exception and *clearing* the
18933         error afterwards.
18934         
18935 2006-04-27  Miguel de Icaza  <miguel@novell.com>
18936
18937         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
18938         with missing assemblies), and to cope with:
18939
18940                 * Missing fieldref from a non-existing assembly.
18941                 * Missing methodref from a non-existing assembly.
18942
18943         The first batch of work to address *some* of the issues from 76661.
18944         
18945         * object.c (mono_class_create_runtime_vtable): If we fail to
18946         initialize the class raise the exception here. 
18947
18948         * metadata.c (mono_class_get_overrides_full): If any methods fail
18949         to load return the failure to the caller.
18950
18951         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
18952         flagging assemblies that failed to load.   
18953
18954         Do not crash if we are unable to load the assembly.
18955
18956         (mono_assembly_close): Do nothing with REFERENCE_MISSING
18957         assemblies. 
18958
18959         * loader.c (mono_loader_set_error_type_load): Change the
18960         convention to always pass unallocated strings, so we make our own
18961         copies (I know our own code had duplicated strings before, but
18962         this keeps the normal conventions).
18963         (method_from_memberref): Call mono_loader_set_error_method_load
18964         for all possible failures of loading the class. 
18965         Remove assert, turn into a loader error.
18966
18967         (mono_loader_error_to_exception): Move this routine from mini
18968         (mini_loader_error_to_exception) there was no need to have that in
18969         mini. 
18970
18971         * class.c (mono_class_from_typeref): If we were not able to load
18972         the assembly with mono_assembly_load_reference, call the
18973         mono_loader_set_error_type_load to register the problem.
18974
18975         (mono_class_setup_fields): If we fail to load the type from
18976         mono_metadata_parse_type_full, call mono_class_set_failure and
18977         break from the loop.
18978
18979         If class->exception_type is set, we do not layout the fields as
18980         that might crash the runtime, and instead return (from breaking
18981         from the previous loop).
18982
18983         (mono_class_setup_vtable): This now returns a boolean indicating
18984         whether the table was properly setup.   The decision is driven by
18985         mono_class_get_overrides_full which might run into non-existing
18986         methods. 
18987         
18988         (mono_class_init): Returns TRUE on success or FALSE if there was a
18989         problem in loading the type (incorrect assemblies, missing
18990         assemblies, methods, etc).
18991
18992         When we call mono_class_setup_fields we also check for a potential
18993         error inside this call (either a class exception or a general
18994         loader exception).
18995
18996         (mono_class_create_from_typedef): If the parent fails to load
18997         (calling mono_class_get_full) return NULL.
18998         
18999         ** Important **
19000
19001         calls to mono_metadata_parse_type_full should be checked
19002         everywhere and set the mono_class_set_failure
19003         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
19004
19005         The current patch checks the places where my manually constructed
19006         tests show the errors are showing up, but we should do it
19007         everywhere. 
19008
19009         ** Important2 **
19010
19011         mono_class_init return values should be tested everywhere, like
19012         the previous case this is something that we should audit
19013         everywhere and not only on the cases exposed by the tests I
19014         created. 
19015
19016 2006-04-26  Miguel de Icaza  <miguel@novell.com>
19017
19018         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
19019         boolean parameter and instead pass the information on `options'
19020         parameter (FileOptions).
19021
19022         * icall.c: Register the new signature for MonoIO.Open.
19023
19024         * debug-helpers.c (dis_one): Trying to understand how coverity
19025         works.  Fix Run 5, item 78.
19026
19027 2006-04-26  Dick Porter  <dick@ximian.com>
19028
19029         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
19030         dereference.
19031
19032 2006-04-25  Martin Baulig  <martin@ximian.com>
19033
19034         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
19035
19036         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
19037         debugger_thread_created().
19038         (debugger_gc_push_all_stacks): Don't handle the main thread in any
19039         special way.
19040         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
19041         (mono_debugger_finalize_threads): New function; undo the effects
19042         of mono_debugger_init_threads().
19043         (mono_debugger_create_all_threads): Removed.
19044
19045 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
19046
19047         * image.c (mono_image_close): Tidy up trace messages.
19048
19049         * assembly.c (mono_assembly_close): Ditto.
19050
19051         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
19052         no longer references an already freed assembly. Fixes #78168.
19053
19054 2006-04-21  Dick Porter  <dick@ximian.com>
19055
19056         * threads.c (mono_thread_detach): Fix reference counting when
19057         detaching threads.
19058
19059 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
19060
19061         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
19062         #78155.
19063
19064 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
19065
19066         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
19067         (mono_type_to_stind): Ditto.
19068
19069         * marshal.c: Use the new helper functions to simplify code.
19070
19071         * image.c (mono_image_close): Add some code for help debug assembly unloading
19072         problems.
19073
19074         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
19075         image mempool.
19076
19077         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19078         assembly was already loaded in another appdomain. Fixes #78083.
19079
19080 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
19081
19082         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19083         referenced assemblies.
19084         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19085
19086         * domain.c (mono_domain_free): Add a trace message.
19087
19088         * appdomain.c (add_assemblies_to_domain): Ditto.        
19089
19090         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19091         field.  
19092
19093 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19094
19095         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19096
19097 2006-04-12  Martin Baulig  <martin@ximian.com>
19098
19099         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19100         `USE_INCLUDED_LIBGC'.   
19101
19102 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19103
19104         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19105         the patch contains ../ and a small directory name later. Hopefully fixes
19106         #78035.
19107
19108 2006-04-10  Martin Baulig  <martin@ximian.com>
19109
19110         Clean up the debugger's thread-handling code.
19111
19112         The debugger's thread-handling code has been moved from
19113         ../mini/debug-debugger.c to threads.c.  We now iterate directly
19114         over the `threads' hash, keep track of exiting threads and also
19115         use proper locking.
19116
19117         We can now debug XSP and XSP based applications with the debugger.
19118
19119         * object-internals.h (MonoThread): Added `gpointer end_stack'.
19120
19121         * threads.h
19122         (MonoThreadCallbacks): Removed; this was only used by the debugger.
19123         (mono_install_thread_callbacks): Likewise.      
19124
19125         * threads.c (mono_thread_callbacks): Removed.
19126         (debugger_thread_created, debugger_thread_exited): New static functions.
19127         (start_wrapper): Call debugger_thread_created().
19128         (thread_cleanup): Call debugger_thread_exited().
19129         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19130         (mono_debugger_init_threads): New public function.
19131         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19132         iterate directly over the `threads' hash and also use proper locking.
19133
19134         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19135
19136         * mono-debug-debugger.h
19137         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19138
19139 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
19140
19141         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
19142         argument type=array. Fixes #78057.
19143
19144 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
19145
19146         * culture-info-table.h : regenerated. Fixed bug #69652.
19147
19148 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
19149
19150         * loader.c metadata.c: Reapply a variant r59116.
19151         
19152         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19153
19154         * class.c (mono_class_setup_interface_offsets): New internal function.
19155
19156         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19157         interfaces too. Fixes #77398.
19158
19159         * reflection.c (encode_cattr_value): Add support for 
19160         parameter type=object, argument type=array.
19161         (load_cattr_value): Ditto. Fixes #77916.
19162
19163         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19164         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19165
19166         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19167         a byval char array and CharSet is Ansi.
19168
19169         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19170
19171 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
19172
19173         * metadata.c: Add some locking comments.
19174         
19175         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19176         mempool.
19177         (mono_metadata_free_method_signature): Don't free the signature itself.
19178
19179         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
19180
19181         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
19182         reference the same MonoImage.
19183         (mono_assembly_load_from_full): Add an assert.
19184
19185 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
19186
19187         * image.c (mono_image_close): Don't put the image we are about to free into the
19188         loaded_images_guid_hash.
19189
19190         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
19191         to reduce code duplication.
19192
19193         * marshal.c: Register the native functions called by this module as icalls, to
19194         somewhat centralize the creation of MonoMethodSignature's.
19195
19196         * loader.c (mono_method_signature): Add a cache for method signatures.
19197
19198         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
19199         the parameter attributes of a method.
19200         (mono_metadata_parse_method_signature_full): Refactored the computation of
19201         parameter attributes into a separate function. Also avoid one allocation in
19202         most cases.
19203
19204         * assembly.c (mono_assembly_close): Ditto.
19205
19206         * image.c (mono_image_close): Log trace messages with INFO level.
19207
19208         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
19209
19210         * image.c reflection.c: Correct reference counting of image modules.
19211         
19212         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
19213         of this function from the image mempool.
19214         
19215         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
19216         to allow more cached types to be used.
19217
19218         * mono-debug.c (mono_debug_add_method): Appled patch from
19219         David S. Miller  <davem@sunset.davemloft.net>: Access 
19220         minfo->lexical_blocks[] entry elements using read32().
19221
19222 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
19223
19224         * loader.c (mono_free_method): No longer free the method header for non-dynamic
19225         methods as it is allocated from the mempool.
19226
19227         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
19228         image mempool.
19229
19230         * metadata-internals.h: Add comments describing the reference counting scheme
19231         used for MonoImage and MonoAssembly.
19232
19233         * image.c assembly.c reflection.c: Rework reference counting of images and 
19234         assemblies so they are freed when the runtime is shut down. Free some 
19235         additional memory structures when an image is unloaded.
19236         
19237 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
19238
19239         * class.c loader.c reflection.c: Allocate more data structures in
19240         the image mempool.
19241
19242 2006-03-31  Miguel de Icaza  <miguel@novell.com>
19243
19244         * icall.c
19245         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
19246         build on pre glib 2.4 systems.
19247
19248 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
19249
19250         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
19251
19252         * icall.c: Fix some warnings.
19253
19254 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
19255
19256         * culture-info-table.h : regenerated.
19257
19258 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
19259
19260         * threads.c, object-internals.h, verify.c: changed the culture caching
19261         code to use a normal MonoArray for storage so the GC can keep track of
19262         them easily. Fixed bits of the cache logic, too and simplified the
19263         code.
19264
19265 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
19266
19267         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
19268         thread for non-Boehm GCs.
19269
19270 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
19271
19272         * domain.c, object.c, domain-internals.h: reduce the amount of memory
19273         needed to keep track of the data for static fields.
19274
19275 2006-03-29  Raja R Harinath  <rharinath@novell.com>
19276
19277         Fix #75172
19278         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
19279         for interface classes.  Use 'num_methods' instead.
19280         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
19281         before using '->vtable_size' field.
19282
19283 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
19284
19285         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
19286         doesn't contain managed pointers, so use a normal hashtable.
19287
19288 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
19289
19290         * reflection.c, class-internals.h, domain.c: fixed handling of types
19291         used as values for objects in custom attributes (bug #77915):
19292
19293 2006-03-24  Martin Baulig  <martin@ximian.com>
19294
19295         * class.c (mono_class_setup_fields): Added support for generic
19296         instances; fixes #77580.
19297
19298 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19299
19300         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
19301
19302 2006-03-24  Dick Porter  <dick@ximian.com>
19303
19304         * file-io.c (get_file_attributes): More stat macro breakage.
19305         Fixes bug 77759.
19306
19307 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
19308
19309         * profiler.c: added the file=filename option in the default profiler
19310         to output the profile data to filename.
19311
19312 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19313
19314         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
19315         bug #77877.
19316
19317 2006-03-22  Martin Baulig  <martin@ximian.com>
19318
19319         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
19320         allocated `MonoClassField *' in `fb->handle'.
19321
19322 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19323
19324         * class.c, image.c, metadata-internals.h: implemented new mechanism to
19325         allocate interface ID to save memory and allow better ID reuse on
19326         appdomain unload. setup_generic_vtable () removal from Martin.
19327
19328 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19329
19330         * object.h, appdomain.c, domain.c, exception.c, icall.c,
19331         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19332         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19333         write barriers for reference stores with managed objects accessed with
19334         C structures in the runtime and in embedding programs.
19335
19336 2006-03-20  Raja R Harinath  <rharinath@novell.com>
19337
19338         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19339         'interface_id' and 'max_interface_id' fields of MonoClasses
19340         representing open generic types.
19341
19342 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19343
19344         * object.h, object.c, icall.c: added functions to deal with
19345         storing valuetypes that contain references in managed objects.
19346         * reflection.c, string-icalls.c, threads.c, marshal.c: small
19347         fixes and comments around uses of mono_array_addr ().
19348
19349 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19350
19351         * object.h, icall.c, monitor.c: object.GetHashCode ()
19352         implementation that supports the moving garbage collector.
19353
19354 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19355
19356         * icall.c, threads-types.h, threads.c: implemented finalizer for
19357         LocalDataStoreSlot.
19358
19359 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
19360
19361         * metadata.c (mono_type_size): Add a fixme.
19362         (mono_type_stack_size): Ditto.
19363
19364         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19365         'type_forwarders' field.
19366
19367         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19368         attribute from net 2.0.
19369
19370         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19371         from class.c.
19372
19373         * class.c (mono_class_setup_fields): Fix a warning.
19374         
19375         * class.c (mono_class_from_name): Add support for assemblyref entries
19376         in the EXPORTEDTYPE table.
19377
19378         * reflection.c: Add support for handling type forwarders under net 2.0.
19379
19380         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19381         
19382 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19383
19384         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19385         overwriting entries in ModuleBuild->types, also clean up the code
19386         a little. Fixes #77774.
19387
19388 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19389
19390         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19391         load friend assembly info when present.
19392
19393 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19394
19395         Fix crasher on gtest-158.cs.
19396         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19397         the return value if the MonoClass we want is yet in an
19398         inconsistent state.
19399         * class.c (mono_class_create_from_typedef): Add an comment
19400         explaining an order dependency between mono_class_setup_parent and
19401         mono_class_setup_mono_type.
19402
19403 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19404
19405         * class.c: documentation updates and events bug fix.
19406
19407 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19408
19409         * class.c: some cleanup, locking fixes.
19410
19411 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19412
19413         * class.c: fix the generics code to setup nested
19414         type info to the instantiated type (bug #77770).
19415
19416 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19417
19418         * marshal.c: fixed a few type correctness issues.
19419
19420 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19421
19422         * loader.c: the Set/Get/Addrtess array methods should be public.
19423
19424 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19425
19426         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19427         
19428         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19429         info->wrapper.
19430
19431 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19432
19433         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19434
19435         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19436
19437         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19438         (mono_mempool_alloc0): Ditto.
19439
19440 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19441
19442         * socket-io.c:
19443         (create_object_from_sockaddr): it was allocating 4 extra bytes
19444         for the AF_UNIX data. Fixes bug #77747.
19445
19446 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19447
19448         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19449
19450 2006-03-09  Dick Porter  <dick@ximian.com>
19451
19452         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19453         Fixes bug 76966 again.
19454
19455 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19456
19457         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19458         names from r57532
19459         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19460
19461 2006-03-07  Martin Baulig  <martin@ximian.com>
19462
19463         * object.c
19464         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19465
19466 2006-03-07  Martin Baulig  <martin@ximian.com>
19467
19468         * class.c
19469         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19470         regression introduced in r56970; see gtest-252.cs.
19471
19472         * loader.c (mono_get_method_constrained): Correctly handle generic
19473         methods; see gtest-253.cs.
19474
19475 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19476
19477         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19478
19479 2006-03-04  Martin Baulig  <martin@ximian.com>
19480
19481         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19482         compute the parent type at runtime, just like we're already doing
19483         it for interfaces.
19484
19485         * reflection.c
19486         (mono_reflection_bind_generic_parameters): Don't compute the
19487         parent type anymore.
19488
19489         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19490
19491 2006-03-04  Martin Baulig  <martin@ximian.com>
19492
19493         * mono-debug-debugger.h
19494         (mono_debugger_create_notification_function): Allocate memory at
19495         runtime and return a pointer to it.
19496
19497 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19498
19499         * assembly.c: Fix windows build.
19500         
19501         * assembly.c: Fix build.
19502
19503         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19504
19505         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19506         
19507 2006-03-03  Dick Porter  <dick@ximian.com>
19508
19509         * process.c
19510         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19511         Check parameters before dereferencing them.  Fixes Aaron's part of
19512         bug 77393.
19513
19514 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19515
19516         Fix performance regression.
19517         * loader.c (find_method_in_class): Add 'from_class' argument.
19518         Rename 'klass' argument to 'in_class'.  The signature is compared
19519         against the method in 'in_class', and the corresponding method is
19520         returned from 'from_class'.
19521         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19522         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19523         type definition and generic instantiation in parallel.
19524         (mono_get_method_constrained): Update to changes.
19525
19526 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19527
19528         * threads.c: make sure the domain is correct, too when doing
19529         mono_thread_attach ().
19530
19531 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19532
19533         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19534         windows. Fixes #77683.
19535
19536 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19537
19538         * object.h, *: introduced specific way to set elements of an array
19539         of references to be used as write barrier. Still need to audit the
19540         uses of mono_array_addr.
19541
19542 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19543
19544         * object-internals.h: New field to cache the assmebly name, patch
19545         from Tambet Ingo (tambet@ximian.com)
19546
19547 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19548
19549         * decimal.h, class-internals.h, metadata-internals.h,
19550         file-io.h: mark a few function declarations as internal, to
19551         reduce the number of PLT entries.
19552
19553 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19554
19555         * file-io.c: fix typo in warning message.
19556
19557 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19558
19559         * loader.c: on unix, lookup the "*A" version of a function
19560         if charset is auto as a second option before failing.
19561
19562 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19563
19564         * class.h (mono_class_inflate_generic_method): Revert to two
19565         argument version.
19566         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19567         (mono_class_inflate_generic_method_full): Add.
19568         * class.c (mono_class_inflate_generic_method_full): Rename from
19569         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19570         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19571         * loader.c, reflection.c: Update to changes.
19572
19573 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19574
19575         * icall.c: const fixes and small improvements.
19576
19577 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19578
19579         * threadpool.c: for asynchronous connect(), enable the same workaround
19580         for BSD 6 as for the Mac. Fixes bug #77637.
19581
19582 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19583
19584         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19585         formatted classes. Fixes #77524.
19586
19587 2006-02-24  Raja R Harinath  <rharinath@novell.com>
19588
19589         * class.c (inflate_generic_type): Add a couple more
19590         micro-optimizations.
19591         (inflate_generic_context): Don't use the 'gmethod' from
19592         'inflate_with'.
19593         (mono_class_inflate_generic_method): If the method has generic
19594         parameters, but the passed-in context doesn't have a 'gmethod',
19595         create one.  Use the possibly simplified generic instantiation
19596         from the declaring class instead of the one passed in.
19597
19598 2006-02-24  Raja R Harinath  <harinath@gmail.com>
19599
19600         Make generic method signature and method header handling lazy.
19601         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
19602         (inflate_generic_header): Likewise.
19603         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
19604         parameter to avoid inflating types.
19605         (mono_get_inflated_method): Empty out.
19606         * class.h (mono_class_inflate_generic_method): Update to changes.
19607         * loader.c (mono_get_method_from_token): Don't parse signature for
19608         generic methods, nor methods of generic classes.
19609         (mono_method_signature): Rename from 'mono_method_signature'.
19610         Inflate signature on demand.
19611         (mono_method_get_header): Inflate method header on demand.
19612         * reflection.c: Update to changes.
19613
19614 2006-02-23  Raja R Harinath  <rharinath@novell.com>
19615
19616         * metadata.c (mono_metadata_inflate_generic_inst): If the
19617         instantiation is closed, don't bother expanding it in the new
19618         context.
19619         * class.c (inflate_generic_class): If the generic instantiation
19620         doesn't change after inflation, return the argument itself.
19621         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
19622         Add bounds checks.
19623         (inflate_generic_context): If neither the generic class nor the
19624         generic method instantiations change, return the original context.
19625         * reflection.c (mono_method_get_object): Do
19626         'mono_get_inflated_method' before accessing the ->klass field.
19627         (inflate_mono_method): Don't create a MonoGenericMethod unless
19628         necessary.
19629         (inflate_method): Don't pass a constructed type as the declaring
19630         type of a methodbuilder.
19631
19632 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
19633
19634         * object.c: fix memory overwrite.
19635
19636 2006-02-22  Dick Porter  <dick@ximian.com>
19637
19638         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
19639         it doesn't work any more.
19640         (mono_threads_request_thread_dump): Fix unused variable warnings.
19641
19642 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19643
19644         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
19645         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
19646         the public header file.
19647
19648 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
19649
19650         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
19651
19652 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
19653
19654         * class-internals.h, object.c: reduce the size of MonoVTable
19655         and store the interface_offsets array at negative offsets.
19656
19657 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
19658
19659         * metadata.c: tweak table descriptors data structures to reduce
19660         size and runtime relocations.
19661
19662 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19663
19664         * marshal.c: fix some types and opcodes to be type-safe
19665         in marshaling wrappers.
19666
19667 2006-02-21  Ankit Jain  <jankit@novell.com>
19668
19669         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
19670
19671 2006-02-21  Raja R Harinath  <rharinath@novell.com>
19672
19673         * metadata.c (get_constraints): Relax debugging checks for monodis.
19674
19675 2006-02-21  Ankit Jain  <jankit@novell.com>
19676
19677         * metadata.c (mono_metadata_load_generic_params): Move the code
19678         checking for ambiguous generic params from here to mono/dis/get.c
19679         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
19680
19681 2006-02-21  Raja R Harinath  <harinath@gmail.com>
19682
19683         Fix assertion triggered when compiling nemerle.
19684         * class.c (mono_get_shared_generic_inst): Rename from
19685         get_shared_inst and make non-static.
19686         * loader.c (mono_get_shared_generic_method): New.  Used to create
19687         the MonoGenericContext-equivalent of a MonoGenericContainer.
19688         (mono_get_method_from_token): Initialize the 'context' field of
19689         the created MonoGenericContainer.
19690         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
19691         * metadata.c (get_constraints): Add sanity check.
19692         * class-internals.h: Add new internal methods.
19693
19694         * reflection.c (verify_safe_for_managed_space): New sanity check.
19695         Currently checks that owner-less generic parameters aren't allowed
19696         in managed space.
19697         (mono_type_get_object): Use it.
19698         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
19699         that are now in mono_type_get_object.
19700         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
19701
19702 2006-02-19  Raja R Harinath  <harinath@gmail.com>
19703
19704         * metadata.c (mono_type_create_from_typespec): Rename from
19705         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
19706         argument and caching of types in the generic container.
19707         (unwrap_arrays, find_generic_param): Remove.
19708         * metadata-internals.h: Update.
19709         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
19710
19711 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
19712
19713         * class.c (mono_class_get_exception_for_failure): Fix a warning.
19714
19715         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
19716         return values. Fixes #77581.
19717
19718         * class.c (mono_fnptr_class_get): Switch name and name_space.
19719
19720         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
19721         classes and add support for [In, Out] attributes.
19722         (mono_marshal_free_asany): Ditto. Fixes #77524.
19723
19724 2006-02-18  Raja R Harinath  <harinath@gmail.com>
19725
19726         * class.c (mono_class_from_generic_parameter): Make more robust to
19727         incomplete MonoGenericContainers from monodis.
19728
19729 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19730
19731         * class-internals.h: added some more exception types.
19732         * class.c, metadata.c: added a few checks to handle missing
19733         types.
19734
19735 2006-02-17  Raja R Harinath  <rharinath@novell.com>
19736
19737         Use owner-less generic-params some more.
19738         * class.c (my_mono_class_from_generic_parameter): Remove.
19739         (mono_class_from_generic_parameter): Handle null image,
19740         param->name and param->owner.
19741         (mono_class_from_mono_type): Update.
19742         (mono_class_create_from_typespec): Remove 'container' parameter.
19743         If that parameter is non-null, the result is always inflated by
19744         'mono_class_get_full' anyway.
19745         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
19746         parameter.
19747         (mono_class_get_full): Update.
19748
19749         * class.c (inflate_generic_type) [GENERICINST]: If the generic
19750         instance is not open, don't bother inflating.
19751         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
19752         parse metadata for inflated classes.
19753         (_mono_class_get): Change GenericContext* parameter to
19754         GenericContainer*.
19755         (mono_class_create_from_typespec): Likewise.  Simplify, and
19756         implement trivially.  All the cases are handled in
19757         mono_class_from_mono_type.  Don't inflate returned class.
19758         (mono_class_get_full): Delegate GENERICINST optimization to
19759         inflate_generic_type.
19760         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
19761
19762 2006-02-16  Dick Porter  <dick@ximian.com>
19763
19764         * socket-io.c (create_object_from_sockaddr): Fix typo.
19765         (create_sockaddr_from_object): Check array lengths before
19766         potentially accessing items off the end.
19767         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
19768         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
19769         (ves_icall_System_Net_Sockets_Socket_Send_internal)
19770         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
19771         length checks to avoid wraparound overflows.
19772         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
19773         contents of the array of sockets
19774         (hostent_to_IPHostEntry2)
19775         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
19776         Check return value of inet_ntop ().
19777         (addrinfo_to_IPHostEntry): Fix typo
19778
19779 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19780
19781         Type metadata parsing doesn't use generic-instantiation information.
19782         * metadata.c (mono_metadata_parse_array_full): Change
19783         MonoGenericContext* parameter to MonoGenericContainer*.
19784         (mono_metadata_parse_type_full): Likewise.
19785         (mono_type_create_from_typespec_full): Likewise.
19786         (mono_metadata_parse_mh_full): Likewise.
19787         (mono_metadata_parse_generic_inst): Likewise.
19788         (do_mono_metadata_parse_generic_class): Likewise.
19789         (do_mono_metadata_parse_type): Likewise.
19790         * metadata-internals.h: Update to changes.
19791         * class.c (mono_class_find_enum_basetype): Likewise.
19792         (mono_class_setup_fields): Likewise.
19793         (mono_class_create_from_typespec): Likewise.
19794         * loader.c (method_from_methodspec): Likewise.
19795         (mono_get_method_from_token): Likewise.
19796         (mono_method_get_header): Likewise.
19797
19798 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19799
19800         * marshal.c: handle additional GENERICINST case (patch from
19801         Thong Nguyen <tum@veridicus.com>).
19802         Fix a few cases where LDIND_I/STIND_I was used for references.
19803
19804 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19805
19806         * reflection.c (mono_reflection_get_token): Remove unused variable.
19807
19808 2006-02-16  Martin Baulig  <martin@ximian.com>
19809
19810         * reflection.c (mono_reflection_get_token): Add support for fields
19811         in instantiated generic types.
19812
19813         * icall.c
19814         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
19815
19816 2006-02-15  Martin Baulig  <martin@ximian.com>
19817
19818         * icall.c
19819         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
19820         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
19821         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
19822         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
19823
19824 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
19825
19826         * class.c, metadata.c, metadata.h, object.c, icall.c,
19827         marshal.c: changed mono_type_get_underlying_type () to do
19828         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
19829         Fixed handling of instantiated generic valuetypes (bug #75479).
19830
19831 2006-02-15  Raja R Harinath  <rharinath@novell.com>
19832
19833         * metadata.c (mono_metadata_decode_signed_value): Simplify.
19834         Delegate to mono_metadata_decode_value, and work on the returned value.
19835
19836         * icall.c (ves_icall_MonoType_GetGenericArguments):
19837         Add consistency check here too.
19838         
19839 2006-02-15  Ankit Jain  <jankit@novell.com>
19840
19841         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
19842         char/short etc.
19843
19844 2006-02-15  Ankit Jain  <jankit@novell.com>
19845
19846         * metadata.c (mono_metadata_decode_signed_value): New function to decode
19847         signed values, used only for representing lower bounds of arrays.
19848         (mono_metadata_parse_array_full): Use new
19849         mono_metadata_decode_signed_value to decode lower bounds.
19850
19851 2006-02-14  Martin Baulig  <martin@ximian.com>
19852
19853         * reflection.c
19854         (mono_reflection_get_token): Support "MonoGenericMethod" and
19855         "MonoGenericCMethod" and allow generic instances / methods.
19856
19857 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
19858
19859         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
19860         to obtain the terminal size using an ioctl.
19861
19862         * object.c (mono_nullable_init): Revert this as nullable reference
19863         types are not valid.
19864         (mono_nullable_box): Ditto.
19865
19866 2006-02-09  Dick Porter  <dick@ximian.com>
19867
19868         * threads.c (mono_thread_detach): Drop a reference to the thread
19869         we're detaching.
19870
19871 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
19872
19873         * object.c (mono_nullable_init): Handle nullable reference types.
19874         (mono_nullable_box): Ditto. Fixes #77446.
19875
19876 2006-02-07  Martin Baulig  <martin@ximian.com>
19877
19878         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
19879
19880 2006-02-07  Ankit Jain  <jankit@novell.com>
19881
19882         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
19883         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
19884         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
19885         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
19886         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
19887         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
19888
19889 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
19890
19891         * class.c (mono_class_create_generic): Set type_token as well.
19892
19893         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
19894         compatible with MS.
19895
19896 2006-02-02  Martin Baulig  <martin@ximian.com>
19897
19898         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
19899         has never been used so far.
19900
19901 2006-02-02  Martin Baulig  <martin@ximian.com>
19902
19903         * mono-debug-debugger.h: Changed comment at the top of this file;
19904         the header is not installed, but it's safe to #include it from
19905         within the JIT.
19906
19907         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
19908         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
19909
19910 2006-02-02  Martin Baulig  <martin@ximian.com>
19911
19912         * mono-debug.h
19913         (MonoSymbolTable): Removed the `metadata_info' field.
19914
19915         * mono-debug.c
19916         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
19917
19918         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19919         (mono_debugger_add_builtin_types): Removed.
19920         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
19921         (mono_debugger_create_notification_function): We now operate on a
19922         pre-allocated area; take a `gpointer' and return `void'.
19923
19924         * mono-debug-debugger.c
19925         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
19926         (mono_debugger_add_builtin_types): Removed.
19927
19928 2006-02-02  Martin Baulig  <martin@ximian.com>
19929
19930         * threads.c (mono_debugger_create_all_threads): New public method.
19931
19932 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19933
19934         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
19935         breaks on several platforms.
19936
19937 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
19938
19939         * assembly.c: the VS.NET build doesn't supply default values for
19940         MONO_ASSEMBLIES and MONO_CFG_DIR.
19941
19942 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
19943
19944         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
19945         helper function.
19946
19947         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
19948
19949         * loader.c (method_from_memberref): Fix a warning.
19950
19951         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
19952
19953         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
19954         with explicit layout. Fixes #77433.
19955
19956 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
19957
19958         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
19959         max_interface_id is initialized before using it. Fixes #77398.
19960         (ves_icall_Type_GetInterfaces): Ditto.
19961
19962 2006-01-30  Raja R Harinath  <rharinath@novell.com>
19963
19964         * metadata.c (mono_metadata_parse_method_signature_full): Don't
19965         allocate memory for parameter attributes when parsing memberref
19966         signatures.
19967         * loader.c (mono_loader_set_error_method_load): Don't warn.
19968         (method_from_memberref): Ensure MissingMethodException gets thrown
19969         if method is not found.  Make warning more informative.
19970
19971 2006-01-29  Raja R Harinath  <harinath@gmail.com>
19972
19973         Fix #77397
19974         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
19975         return true if is byref.
19976         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
19977         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
19978         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
19979
19980 2006-01-27  Raja R Harinath  <rharinath@novell.com>
19981
19982         Fix tests/find-method.2.il
19983         * loader.c (find_method, find_method_in_class): Remove is_inflated
19984         argument.  Revert 2006-01-18 change.
19985         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
19986         is generic, search for method in its generic definition.
19987         * class.c (mono_class_setup_vtable_general): Print generic
19988         arguments of generic types in debugging printf.
19989
19990 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
19991
19992         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
19993
19994         * threads.c (mono_threads_request_thread_dump): New helper function.
19995
19996 2006-01-25  Raja R Harinath  <rharinath@novell.com>
19997
19998         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
19999
20000 2006-01-25  Ankit Jain  <jankit@novell.com>
20001
20002         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
20003         move definition to ..
20004         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
20005         
20006 2006-01-25  Ankit Jain  <jankit@novell.com>
20007             Raja R Harinath  <rharinath@novell.com>
20008
20009         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
20010         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
20011         as necessary.
20012
20013 2006-01-25  Martin Baulig  <martin@ximian.com>
20014
20015         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
20016         `MonoDebuggerThread' into debug-debugger.c.
20017
20018 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
20019
20020         * profiler.c: fix printing of data.
20021
20022 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
20023
20024         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
20025           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
20026
20027 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
20028
20029         * object.c: fix deadlock related to string interning.
20030
20031 2006-01-23  Martin Baulig  <martin@ximian.com>
20032
20033         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20034
20035         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
20036
20037 2006-01-23  Martin Baulig  <martin@ximian.com>
20038
20039         * mono-debug.h: Moved the prototypes of some functions which are
20040         used by the JIT here from mono-debug-debugger.h.
20041
20042 2006-01-21  Martin Baulig  <martin@ximian.com>
20043
20044         * Makefile.am: Don't install mono-debug-debugger.h.
20045
20046 2006-01-21  Martin Baulig  <martin@ximian.com>
20047
20048         * mono-debug-debugger.h: Enforce the private status of this header
20049         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
20050         Moved some stuff from mono-debugger-jit-wrapper.h here.
20051
20052 2006-01-20  Raja R Harinath  <rharinath@novell.com>
20053
20054         * class.c (mono_class_from_typeref): Add a sanity test to help
20055         catch lack of assembly load/search hooks.
20056
20057 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
20058
20059         * marshal.c (emit_struct_conv): Relax the fields with same offset
20060         check even more. Fixes #77230.
20061
20062 2006-01-18  Martin Baulig  <martin@ximian.com>
20063
20064         * loader.c (find_method_in_class): Added `gboolean is_inflated'
20065         argument; if false, we compare the uninstantiated signatures.
20066         (method_from_memberref): Compare the uninstantiated signatures;
20067         fixes #76417.
20068
20069 2006-01-18  Robert Jordan  <robertj@gmx.net>
20070
20071         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
20072         Clear the weak link. Fixes bug #77170.
20073
20074         * gc.c (mono_gchandle_free):
20075         Reflect *-gc.c changes (tiny optimization).
20076
20077 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
20078
20079         * metadata.c (mono_metadata_signature_dup): Applied patch from
20080         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20081         Fixes #77288.
20082
20083 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
20084
20085         * marshal.c (emit_struct_conv): Allow fields with the same offset when
20086         marshalling from native to managed code. Fixes #77230.
20087
20088 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20089
20090         * threadpool.c: fix problem (Mac only) when more than one asynchronous
20091         connect. Fixes bug #77020.
20092
20093 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20094
20095         * class.c: fixed id assignement for nested interfaces (bug #77275).
20096         Added also better info for --print-vtable debugging.
20097
20098 2006-01-12  Martin Baulig  <martin@ximian.com>
20099
20100         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20101         interfaces on-the-fly; fixes #76625.
20102
20103         * class-internals.h
20104         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20105         don't need that anymore.
20106
20107 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20108
20109         * socket-io.c
20110         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20111         To avoid initing the nested_classes when not needed I turned the
20112         PeerCredData as a toplevel internal class, as it has to be shared
20113         anyways. 
20114
20115         Fixes the CASA issue.
20116
20117 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
20118
20119         * domain.c: Accessors for MonoJitInfo
20120
20121         * profiler-private.h: Add jitinfo to the end jit hook
20122
20123         * profiler.[ch]: Define new hooks, called after jitting which give
20124         the MonoJitInfo that was compiled
20125
20126 2006-01-10  Martin Baulig  <martin@ximian.com>
20127
20128         * class.c (mono_class_setup_events): Add support for generic
20129         classes; fixes #76440.
20130
20131 2006-01-06  Raja R Harinath  <rharinath@novell.com>
20132
20133         Fix #77160.
20134         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20135         on passed-in method.
20136
20137 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20138
20139         * object.c (mono_runtime_invoke_array): Add Nullable support.
20140
20141         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20142
20143 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
20144
20145         * file-io.c: Don't consider sockets as directory and avoid an endless
20146         loop. Fix bug #76966.
20147
20148 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20149
20150         * object.c (mono_nullable_init): New helper function.
20151         (mono_nullable_box): Ditto.
20152
20153         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20154
20155         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20156
20157         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20158         
20159 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
20160
20161         * class.c (mono_class_is_assignable_from): Make T assignable to 
20162         Nullable<T>.
20163
20164 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
20165
20166         * appdomain.c: Bump corlib version to 46.
20167         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20168         serialization purpose) and changed ves_icall_System_Reflection_
20169         Assembly_get_code_base signature to accept a boolean (to escape, or 
20170         not, the assembly code base).
20171
20172 2005-12-23  Dick Porter  <dick@ximian.com>
20173
20174         * icall.c: 
20175         * threads-types.h: 
20176         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20177         CreateEvent icall now returns "created" boolean parameter.
20178
20179 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
20180
20181         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
20182         #76967.
20183
20184         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
20185         when attr_klass is an interface. Fixes #77045.
20186
20187 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
20188
20189         * marshal.c (emit_struct_conv): Fix previous patch.
20190         
20191         * marshal.c (emit_struct_conv): Add a check for fields with the same
20192         offset.
20193
20194 2005-12-20  Raja R Harinath  <rharinath@novell.com>
20195
20196         Fix regression in Mono.C5.
20197         * class.c (mono_class_create_generic): If 'klass' is an interface
20198         set up the interface offsets.
20199         (mono_class_is_assignable_from): Don't throw away generic arguments.
20200
20201 2005-12-19  Raja R Harinath  <rharinath@novell.com>
20202
20203         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
20204         type parameters.
20205
20206 2005-12-15  Raja R Harinath  <rharinath@novell.com>
20207
20208         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
20209         dead store.
20210         (do_mono_metadata_parse_generic_class): Don't pass the current
20211         generic context when parsing the type being instantiated: it
20212         cannot use it, anyway.
20213
20214         * loader.c (method_from_memberref): Don't inflate a signature if
20215         it doesn't contain any type parameters.
20216
20217 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
20218
20219         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
20220
20221 2005-12-14  Martin Baulig  <martin@ximian.com>
20222
20223         * class.c
20224         (mono_type_get_name_recurse): Don't return null for type
20225         parameters and open generic classes.
20226         (mono_class_setup_methods): Don't exclude generic instances.
20227         (mono_get_unique_iid): Use different IDs for different
20228         instantiations of the same generic type.
20229         (mono_class_setup_vtable): Only use setup_generic_vtable() for
20230         open generic instances; create a normal vtable for closed generic
20231         instances.
20232         (mono_class_setup_vtable_general): We're now also called for
20233         closed generic instances.
20234
20235         * reflection.c
20236         (mono_reflection_bind_generic_parameters): Correctly use
20237         mono_metadata_lookup_generic_inst() everywhere.
20238
20239 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
20240
20241         * object.c (mono_class_create_runtime_vtable): Call 
20242         mono_class_setup_vtable ().
20243
20244         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
20245         function.
20246         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
20247         #76959.
20248
20249         * loader.c (mono_loader_set_error_type_load): Print the type load
20250         warnings to the console so they are more visible to the user.
20251         (mono_loader_set_error_method_load): Ditto.
20252
20253         * reflection.c (ensure_runtime_vtable): Revert the last change as it
20254         is still broken.
20255         
20256         * reflection.c (ensure_runtime_vtable): Fix build.
20257
20258         * reflection.c (ensure_runtime_vtable): Disable an optimization which
20259         doesn't work in all cases.
20260
20261 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
20262
20263         * object.c (mono_array_new_full): Treat a single dimensional array
20264         with 0 lower bounds as an szarray. Fixes #76973.
20265
20266         * reflection.c (custom_attr_visible): Really fix this.
20267
20268 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
20269
20270         * reflection.c (custom_attr_visible): Allow nested public attributes
20271         as well.
20272
20273         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
20274         interface check.
20275
20276 2005-12-12  Raja R Harinath  <harinath@gmail.com>
20277
20278         * class.c (set_generic_param_owner): Delete.
20279         (mono_class_create_from_typedef): Don't set ->owner field of
20280         generic parameters to "param containers" of enclosing classes.
20281         * reflection.c (mono_reflection_initialize_generic_parameter):
20282         Likewise.
20283
20284 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
20285
20286         * reflection.c (custom_attr_visible): Fix build.
20287
20288 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
20289
20290         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
20291         private attributes.
20292         
20293         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
20294         handling of null parameter defaults.
20295
20296 2005-12-09  Raja R Harinath  <rharinath@novell.com>
20297
20298         * class.c (mono_class_from_generic_parameter): Don't set
20299         klass->generic_container.
20300         (my_mono_class_from_generic_parameter): Likewise.
20301
20302 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
20303
20304         * reflection.c (load_public_key): Fix a warning.
20305         (method_encode_code): Fix unaligned accesses.
20306
20307 2005-12-07  Martin Baulig  <martin@ximian.com>
20308
20309         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
20310
20311         * reflection.c
20312         (write_generic_param_entry): Encode our custom attrs.
20313
20314         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
20315
20316 2005-12-07  Martin Baulig  <martin@ximian.com>
20317
20318         * reflection.c (encode_new_constraint): Removed; we don't use the
20319         `NewConstraintAttribute' anymore.
20320
20321 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
20322
20323         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20324         not fire a TypeResolve event when Assembly.GetType () is called.
20325
20326 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
20327
20328         Beginning of support for nullable types in the runtime. Parts of
20329         this patch are from Martin.
20330
20331         * appdomain.c (MONO_CORLIB_VERSION): Bump
20332
20333         * domain.c (mono_init_internal): get the nullable type
20334
20335         * class.c (mono_class_is_nullable): New method
20336         (mono_class_get_nullable_param): New mehod
20337         (mono_class_create_generic): In types T? set cast_class to T
20338
20339         * class-internals.h (MonoDefaults): new nullable default class
20340         (mono_class_get_nullable_param, mono_class_get_nullable_param):
20341         new methods.
20342
20343 2005-12-05  Raja R Harinath  <rharinath@novell.com>
20344
20345         * metadata.c (select_container): New.  Refactor code to select the
20346         appropriate GenericContainer given the type of generic parameter
20347         we are looking for.
20348         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20349         not a MonoGenericContext.  Use select_container.  Update parameters.
20350         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20351         and MONO_TYPE_MVAR.
20352         (unwrap_arrays): Remove duplicate tests.
20353         (find_generic_param): Rename from 'has_same_context'.  Now walks a
20354         generic instantiated class to find any arguments that are generic
20355         parameters.
20356         (mono_type_create_from_typespec_full): Use find_generic_param to
20357         avoid evicting some generic instantiations from the typespec
20358         cache.
20359
20360 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20361
20362         * reflection.c: fixed writing of doubles on ARM FPA.
20363
20364 2005-12-02  Robert Jordan  <robertj@gmx.net>
20365
20366         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20367
20368 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20369
20370         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20371         least on SUSE 10 they are not the same (on debian, they are just the
20372         same thing).
20373
20374 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20375
20376         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20377         DeclaringType for VARs and MVARs.
20378         * class.c (set_generic_param_owner): Fix initialization of owner
20379         fields.
20380
20381 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20382
20383         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20384
20385 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20386
20387         * threadpool.c: workaround for a bug that shows up on the Mac:
20388         select()+connect() on a blocking socket is not like it should
20389         be, so we proceed to connect() in that case, wasting the I/O
20390         threadpool thread until connect succeedes. Fixes bug #75436.
20391
20392 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20393
20394         * threadpool.c: fix typo when setting file descriptor states.
20395
20396 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20397
20398         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20399         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20400         create a temporary signature container.
20401         (mono_metadata_parse_generic_param): Update to changes.
20402         (mono_type_create_from_typespec_full): Update to changes.
20403         * loader.c (method_from_memberref): Don't use a
20404         MonoGenericContainer while parsing a memberref signature.
20405         (method_from_methodspec): Remove dead-store of the 'container'
20406         variable.  It's overwritten before use.
20407
20408         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20409         checks tighter.
20410         (mono_metadata_parse_generic_param): Likewise.
20411         * loader.c (find_method_in_class): Does not need a
20412         MonoGenericContainer.  Use 'mono_method_signature' rather than
20413         'mono_method_signature_full'.
20414         (find_method, mono_get_method_constrained, method_from_memberref):
20415         Update to changes.
20416
20417         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20418         owner-less generic-parameters are never evicted from the typespec
20419         cache.
20420
20421         * loader.c (method_from_memberref): Don't use the current context
20422         when parsing signatures.
20423         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20424
20425         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20426         side-effects in g_assert.
20427         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20428         that we don't potentially lose information.
20429
20430 2005-11-26  Dick Porter  <dick@ximian.com>
20431
20432         * icall.c:
20433         * threads.c: icalls to implement basic (ie, not named)
20434         System.Threading.Semaphore.
20435
20436 2005-11-24  Dick Porter  <dick@ximian.com>
20437
20438         * process.c
20439         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20440         Use GetProcessId() if it's available.
20441
20442 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20443
20444         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20445
20446 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20447             Ankit Jain  <jankit@novell.com>
20448
20449         * loader.c (mono_get_method_from_token): Initialize 'method' field
20450         of all generic parameters before parsing the signature.  Remove
20451         code that "fixed"-up MVAR references.
20452
20453 2005-11-23  Ankit Jain  <jankit@novell.com>
20454
20455         * metadata.c (mono_metadata_has_generic_params):
20456         (mono_metadata_load_generic_param_constraints):
20457         (mono_metadata_load_generic_params): Move duplicate code ...
20458         (mono_metadata_get_generic_param_row): ... here. Returns the
20459         first row-id in GenericParam table for a given owner (token).
20460         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20461         prototype.
20462
20463 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20464             Ankit Jain  <jankit@novell.com>
20465
20466         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20467         comparing VARs too.
20468         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20469         type->data.generic_param only if the type is an MVAR.
20470         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20471         leak owner-less VARs and MVARs into managed space.
20472
20473 2005-11-21  Martin Baulig  <martin@ximian.com>
20474
20475         * class-internals.h
20476         (MonoMethod): Moved the `generic_container' here from
20477         `MonoMethodNormal' since we now also need it for
20478         `MonoMethodPInvoke';
20479         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20480         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20481         an union containing both `MonoMethodNormal' and
20482         `MonoMethodPInvoke'.
20483
20484         * loader.c
20485         (mono_get_method_from_token): Allow implementing generic methods
20486         as interncalls.
20487
20488         * threads.c
20489         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20490         icall.
20491
20492 2005-11-17  Dick Porter  <dick@ximian.com>
20493
20494         * icall.c: 
20495         * process.h: 
20496         * process.c: Split the Process Start_internal icall into
20497         ShellExecuteEx_internal and CreateProcess_internal, which are
20498         called depending on whether UseShellExecute is true.  Fixes bug
20499         76670.
20500
20501         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20502
20503 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20504
20505         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20506         'msize' parameters, use the information in 'mspec' instead.
20507         (emit_object_to_ptr_conv): Ditto.
20508
20509         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20510         fields out of order. Fixes #76733.
20511
20512 2005-11-17  Ankit Jain  <jankit@novell.com>
20513
20514         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20515
20516 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20517
20518         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20519           bug #76575.
20520
20521 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20522
20523         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20524         for types with non-auto layout. Fixes #76717.
20525
20526 2005-11-16  Ankit Jain  <jankit@novell.com>
20527
20528         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20529         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20530         if generic_context is null.
20531           (mono_metadata_generic_param_equal): param->owner can be null.
20532           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20533         null.
20534
20535 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20536
20537         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20538         the correct value.
20539
20540 2005-11-15  Martin Baulig  <martin@ximian.com>
20541
20542         * object.c (set_value): Use mono_class_from_mono_type() instead of
20543         the hack for generic instances; fixes #76136.
20544
20545 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20546
20547         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20548         fields.
20549
20550         * image.c (load_metadata_ptrs): Initialize the new fields.
20551
20552         * reflection.c (create_dynamic_mono_image): Ditto.
20553
20554         * reflection.c (build_compressed_metadata): Use the new fields.
20555
20556         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20557         icall.
20558
20559         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20560         icall.
20561         
20562 2005-11-15  Ankit Jain  <jankit@novell.com>
20563             Raja R Harinath  <harinath@gmail.com>
20564
20565         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20566         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20567         new per-generic_container cache if the cached MonoType's context matches
20568         the current context.
20569           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20570         to the expected context.
20571           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20572
20573 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20574
20575         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20576         we changed the signature of an icall.
20577         * icall.c: Modify to mono_double_ParseImpl return true/false 
20578         depending on the success, instead of throwing the exception. This will
20579         help us in Double.TryParse methods.
20580         
20581 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20582
20583         * marshal.c (emit_marshal_object): Throw an exception when
20584         marshalling 'object' instead of crashing. Fixes #76696.
20585
20586 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20587
20588         * class-internals.h: Add prototype for mono_type_get_full_name ().
20589
20590 2005-11-11  Dick Porter  <dick@ximian.com>
20591
20592         * threads.c (mono_thread_manage): Make sure the main thread has
20593         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
20594
20595 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20596
20597         * loader.c (mono_loader_set_error_type_load): Log a warning to the
20598         console about the missing type.
20599         (mono_loader_set_error_method_load): Ditto.
20600
20601 2005-11-09  Miguel de Icaza  <miguel@novell.com>
20602
20603         * mono-config.c (mono_get_config_dir): Set the system defaults if
20604         none is specified.
20605
20606         * assembly.c (mono_set_dirs): New API entry point to set the
20607         assembly and the config directory in one call
20608
20609 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
20610
20611         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
20612         the ftnptr was created from a delegate in a domain other than the
20613         current domain. Fixes #75377.
20614
20615         * exception.h exception.c: Add mono_get_exception_not_supported ().
20616
20617 2005-11-08  Martin Baulig  <martin@ximian.com>
20618
20619         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
20620
20621 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
20622
20623         * security-manager.h: Added definitions to deal with strongname key 
20624         pairs bigger (and smaller) than 1024 bits.
20625         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
20626         adjust wrt the public key length being used.
20627
20628 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
20629
20630         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
20631           Windows build (r51396-51397).
20632
20633 2005-11-03  Martin Baulig  <martin@ximian.com>
20634
20635         * class.c (mono_class_setup_vtable_general): Also add generic
20636         methods to the vtable; fixes #76581.
20637
20638 2005-11-01  Miguel de Icaza  <miguel@novell.com>
20639
20640         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
20641         sure that we lookup GetString method from the System.Text.Encoding
20642         class, not the derived class or we get an empty method.
20643
20644         Fixed class #76612.
20645
20646 2005-10-25  Miguel de Icaza  <miguel@novell.com>
20647
20648         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
20649         if it has been previously set (embedders). 
20650
20651         Make mono_set_rootdir available also on Unix.
20652
20653 005-10-24  Robert Jordan  <robertj@gmx.net>
20654
20655         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
20656
20657 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
20658
20659         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
20660         only calls which are made to native code use this flag.
20661
20662         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
20663
20664 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
20665
20666         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
20667         Add support for FieldBuilders.
20668
20669 2005-10-29  Martin Baulig  <martin@ximian.com>
20670
20671         * mono-debug.c
20672         (mono_debug_using_mono_debugger): New public method; returns
20673         whether we're running inside the debugger.
20674
20675 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
20676
20677         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
20678         for Method/Constructor/FieldBuilders.
20679
20680 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
20681
20682         * reflection.c (module_add_cattrs): Save custom attributes for global methods
20683         and fields as well.
20684
20685 2005-10-26  Martin Baulig  <martin@ximian.com>
20686
20687         * mono-debug-debugger.c
20688         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
20689
20690 2005-10-24  Raja R Harinath  <harinath@gmail.com>
20691
20692         * icall.c (base64_to_byte_array): Don't pass an out-of-range
20693         integer to isspace.
20694
20695 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
20696
20697         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
20698         when passing valuetypes byref. Fixes #76502.
20699
20700 2005-10-19  Jackson Harper  <jackson@ximian.com>
20701
20702         * profiler.c: Don't put a . in front of types that are not in a
20703         namespace.
20704
20705 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
20706
20707         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
20708
20709 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
20710
20711         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
20712         #76436.
20713         (mono_marshal_get_ldflda_wrapper): Fix a warning.
20714
20715 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20716
20717         * assembly.c metadata-internals.h icall.c: Define an additional
20718         parameter for mono_assembly_name_parse_full, so we can avoid creating
20719         S.R.AssemblyName.Version when no version info wasn't passed.
20720         
20721 2005-10-09  Miguel de Icaza  <miguel@novell.com>
20722
20723         * class.c (mono_type_get_full_name): Reimplement method that was
20724         removed. 
20725
20726         * image.c: Some docs
20727
20728 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
20729
20730         * profiler.c (output_newobj_profile): Fix printing of Total memory
20731         on x86.
20732
20733 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20734
20735         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
20736
20737 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
20738
20739         * threads.c: remove debug output.
20740
20741 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20742
20743         * threads.c (mono_thread_manage): Fix crashes if more than 64
20744         threads need to be aborted. Hopefully fixes #75899.
20745
20746         * assembly.c (mono_stringify_assembly_name): New helper function.
20747
20748         * class.c: Use mono_stringify_assembly_name instead of the similar
20749         static function.
20750
20751         * assembly.h assembly.c: Add support for calling a postload search 
20752         hook if an assembly cannot be loaded.
20753
20754         * appdomain.c: Register new search hooks which call the AssemblyResolve
20755         events in AppDomain. Fixes #75231
20756
20757 2005-10-07  Martin Baulig  <martin@ximian.com>
20758
20759         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
20760         methods without debug info.
20761
20762 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
20763
20764         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
20765         wrappers.
20766
20767 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20768
20769         * file-io.c: now that we return symlinks, use lstat and, when the file
20770         is a symbolic link, stat, to get the file attributes. Also avoid the
20771         conversion to/from utf16/external.
20772
20773 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
20774
20775         * class.c (mono_class_layout_fields): Compute klass->has_references
20776         correctly if an embedded valuetype is not yet initialized. Fixes
20777         #76331.
20778
20779 2005-10-04  Martin Baulig  <martin@ximian.com>
20780
20781         * metadata.c
20782         (mono_metadata_load_generic_param_constraints): New public
20783         function; splitted the constraints loading out from
20784         mono_metadata_load_generic_params().
20785
20786         * class.c (mono_class_create_from_typedef): Call
20787         mono_metadata_load_generic_param_constraints() after setting up
20788         the type and creating our parent; fixes #75329.
20789
20790 2005-10-04  Martin Baulig  <martin@ximian.com>
20791
20792         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
20793         non-dynamic parent classes.
20794
20795 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
20796
20797         * file-io.c : win32 build fix (ETXTBSY seems not found).
20798
20799 2005-10-04  Martin Baulig  <martin@ximian.com>
20800
20801         * reflection.c
20802         (mono_image_get_methodspec_token): Make the cache actually work;
20803         fixes #75974.
20804
20805 2005-10-04  Martin Baulig  <martin@ximian.com>
20806
20807         * class.c (mono_class_name_from_token): Removed the unneccessary
20808         `MonoGenericContext *' argument.
20809
20810 2005-10-04  Martin Baulig  <martin@ximian.com>
20811
20812         * loader.c
20813         (method_from_methodspec): Make the caching work again; fixes the
20814         performance regression from #76262.
20815
20816 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20817
20818         * file-io.c:
20819         * file-io.h:
20820         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
20821         GetFileSystemEntries that performs the same work but without going
20822         into io-layer, locking, etc.
20823
20824 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
20825
20826         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
20827         ThreadState_Stopped as well. Fixes #76047.
20828
20829 2005-09-29  Martin Baulig  <martin@ximian.com>
20830
20831         * class.c
20832         (inflate_generic_context): If the new context has a `gmethod', set
20833         its `container' that that gmethod's `container'.
20834
20835         * metadata.c
20836         (mono_metadata_parse_generic_param): Simplify things;
20837         `generic_container = generic_context->container;' is just fine.
20838
20839         * loader.c (method_from_methodspec): Code cleanups.
20840
20841 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
20842
20843         * decimal.c: fix warning (and let gcc generate correct
20844         code on ARM with optimizations).
20845
20846 2005-09-28  Martin Baulig  <martin@ximian.com>
20847
20848         * loader.c
20849         (method_from_memberref): Added `MonoGenericContext *class_context'
20850         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
20851         (method_from_methodspec): If we're a memberref, use the enclosing
20852         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
20853
20854 2005-09-28  Martin Baulig  <martin@ximian.com>
20855
20856         * object.c (mono_runtime_invoke_array): Added support for
20857         MONO_TYPE_GENERICINST; fixes #75917.
20858
20859 2005-09-27  Martin Baulig  <martin@ximian.com>
20860
20861         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
20862         `k->byval_arg.type' to determine the actual type.
20863
20864         * loader.c (method_from_methodspec): Removed some hacks.
20865
20866 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
20867
20868         * class-internals.h (mono_field_is_deleted): Do the test for
20869         rtspecialname before we check the actual name of the field. This
20870         prevents us from dereferencing a pointer into the string table,
20871         saving us from accessing a few pages
20872
20873         * *.c: Replace the use of {Enter,Leave}CriticalSection with
20874         macros. This will allow a deadlock debugger to easily be plugged
20875         in.
20876
20877 2005-09-27  Martin Baulig  <martin@ximian.com>
20878
20879         * loader.c (method_from_methodspec): Create a "signature"
20880         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
20881
20882 2005-09-27  Martin Baulig  <martin@ximian.com>
20883
20884         * class.c
20885         (inflate_generic_class): Correctly set the new context's
20886         container.
20887
20888         * loader.c
20889         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
20890         instead of a `MonoGenericContext *'.
20891         (mono_method_signature_full): Take a `MonoGenericContainer *'
20892         instead of a `MonoGenericContext *'.
20893
20894         * metadata.c
20895         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
20896         instead of a `MonoGenericContext *'.
20897         (mono_metadata_parse_method_signature_full): Likewise.
20898
20899 2005-09-26  Martin Baulig  <martin@ximian.com>
20900
20901         * class.c
20902         (mono_class_from_generic_parameter): Set `klass->generic_container'
20903         (mono_class_from_generic_parameter): Likewise.
20904         (mono_bounded_array_class_get): We inherit the generic container
20905         from the element class.
20906
20907         * loader.c
20908         (find_method, find_method_in_class): Take a `MonoGenericContext *'
20909         argument rather than computing it here.
20910         (method_from_memberref): Correctly set the generic context before
20911         parsing the signature.  Fixes #75681.
20912
20913 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
20914
20915         * object.c (mono_class_has_special_static_fields): Fix warnings.
20916
20917 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20918
20919         * assembly.c: Add parse_public_key function, to
20920         par the public keys. Also added mono_assembly_name_parse_full,
20921         to define it the parsed key should be freed or not.
20922         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
20923         to parse a long format assembly name.
20924         * metadata-internals.h: Keep mono_assembly_name_parse_full as
20925         private, since calling it to preserve the key requires
20926         freeing it manually.
20927         
20928 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
20929
20930         * locales.c : removed HAVE_ICU part.
20931
20932 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
20933
20934         * object.c (mono_class_create_runtime_vtable): Avoid calling 
20935         field_is_special_static if the klass has no special static fields.
20936
20937         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
20938         (MonoCachedClassInfo): Likewise.
20939
20940         * object.c (mono_class_has_special_static_fields): New helper function.
20941
20942 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20943
20944         * class.c (mono_class_create_from_typedef): Don't call 
20945         interfaces_from_typedef_full for enums.
20946         (mono_class_create_from_typedef): Compute the base types of enums directly
20947         without calling mono_class_setup_fields ().
20948         (mono_class_find_enum_basetype): New helper function.
20949
20950         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
20951         one place inside the string heap.
20952         
20953 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
20954
20955         * class.c: locking fixes, code cleanups, some docs added.
20956         Allocate some data structures in the image mempool.
20957
20958 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20959
20960         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20961         the example code.
20962         
20963 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
20964
20965         * class-internals.h, class.c, reflection.c: reduce memory taken by
20966         MonoClass.
20967
20968 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
20969
20970         * metadata.c, metadata.h, loader.h: documentation updates, code and
20971         API cleanups.
20972
20973 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20974
20975         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20976         the example code.
20977
20978         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
20979         page faults caused by the runtime while reading metadata.
20980
20981 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20982
20983         * socket-io.c: the field names were changed 3 months ago and no one
20984         realized until bug #76077 got filed!
20985
20986 2005-09-20  Martin Baulig  <martin@ximian.com>
20987
20988         * icall.c (assembly_icalls): Removed some unused debugger icalls.
20989
20990 2005-09-20  Martin Baulig  <martin@ximian.com>
20991
20992         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
20993         write the rank into the class entry.
20994
20995 2005-09-20  Martin Baulig  <martin@ximian.com>
20996
20997         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
20998
20999 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
21000
21001         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21002
21003         * icall.c (custom_attrs_defined_internal): New icall.
21004
21005         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
21006         function.
21007         (mono_custom_attrs_construct_by_type): New helper function.
21008
21009 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
21010
21011         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
21012         terminate the resulting string. Fixes #76123.
21013
21014 2005-09-16  Martin Baulig  <martin@ximian.com>
21015
21016         * mono-debug.c
21017         (mono_debug_add_method): Ignore inflated methods for the moment.
21018
21019 2005-09-14  Martin Baulig  <martin@ximian.com>
21020
21021         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
21022
21023 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
21024
21025         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
21026         return a success/failure indication.
21027         (mono_metadata_interfaces_from_typedef_full): Ditto.
21028         (get_constraints): Ditto.
21029
21030 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
21031
21032         * marshal.c (emit_marshal_array): Fix handling of null arrays.
21033         
21034         * marshal.c (emit_marshal_array): Add support for returning string
21035         arrays from delegates. Fixes #76063.
21036
21037         * marshal.c: Use the emit_ldloc/stloc macros where possible.
21038
21039 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
21040
21041         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
21042         icall.
21043
21044 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
21045
21046         * reflection.c icall.c: Fix after mono_get_exception_type_load
21047         signature change.
21048
21049         * assembly.c (mono_assembly_get_assemblyref): New helper function.
21050         (mono_assembly_load_reference): Use the new helper.
21051
21052         * class-internals.h (MonoLoaderError): New structure containing 
21053         information about type loading errors.
21054
21055         * class-internals.h loader.c: Add APIs to store per-thread loader
21056         error information.
21057
21058         * loader.c class.c: Set the loader error if needed.
21059
21060         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
21061
21062 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
21063
21064         * decimal.c: fixed to handle the broken ARM fp format.
21065
21066 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
21067
21068         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
21069         broken.
21070
21071 2005-09-06  Martin Baulig  <martin@ximian.com>
21072
21073         * domain.c (supported_runtimes): Added v2.0.50727.
21074
21075 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
21076
21077         * culture-info.h: reduce the size of some structures.
21078
21079 2005-09-05  Martin Baulig  <martin@ximian.com>
21080
21081         Reflect latest API changes in the August CTP.
21082
21083         * icall.c
21084         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21085         ("MonoType.HasGenericArguments"): Removed.
21086         ("MonoMethod.BindGenericParameters"): Renamed to
21087         "MakeGenericMethod".
21088         ("MethodBuilder.BindGenericParameters"): Renamed to
21089         "MakeGenericMethod".    
21090
21091 2005-09-05  Martin Baulig  <martin@ximian.com>
21092
21093         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21094
21095 2005-09-05  Martin Baulig  <martin@ximian.com>
21096
21097         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21098
21099         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21100         generic_container is non-NULL.
21101
21102 2005-09-05  Martin Baulig  <martin@ximian.com>
21103
21104         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21105
21106         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21107
21108 2005-08-29  Michal Moskal  <malekith@nemerle.org>
21109
21110         * reflection.c (encode_locals,
21111         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21112         for large generic types.
21113
21114 2005-09-05  Martin Baulig  <martin@ximian.com>
21115
21116         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21117
21118         * class.c (mono_dup_array_type): New public method.
21119         (mono_metadata_signature_deep_dup): New public method.
21120         (dup_type): Correctly duplicate array and function types.
21121
21122 2005-09-05  Martin Baulig  <martin@ximian.com>
21123
21124         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21125
21126         * reflection.c (get_default_param_value_blobs): Handle generic types
21127         and generic methods.
21128
21129 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
21130
21131         * class.c: Fixed error reporting (method/class were inversed) for 
21132         inheritance demands.
21133         * security-manager.c|h: Added the AppDomain when calling the managed
21134         System.Security.SecurityManager.InheritanceDemand method.
21135
21136 2005-09-01  Raja R Harinath  <rharinath@novell.com>
21137
21138         * reflection.c (encode_marshal_blob): 'marshaltype' and
21139         'marshaltyperef' are alternate sources for the custom marshaler
21140         name.
21141
21142 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21143
21144         * class.c: fix creation of array classes with rank == 1
21145         (patch by Ankit Jain <jankit@novell.com>).
21146
21147 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21148
21149         * object.c: fix check for creating the bound data for arrays vs
21150         szarrays.
21151
21152 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21153
21154         * object.c: configuration file name is now based on the executable name,
21155         not the image name. Fixes bug #75931.
21156
21157 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
21158
21159         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21160         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21161
21162 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
21163
21164         * rand.c: Use wincrypt.h instead of WinCrypt.h.
21165
21166 2005-08-24  Ankit Jain  <jankit@novell.com>
21167             Raja R Harinath  <rharinath@novell.com>
21168
21169         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21170           called by it recursively.
21171           (mono_class_init): Remove special case in pending_init handling, since it's
21172           superseded by the fix to mono_class_from_typeref.
21173
21174 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
21175
21176         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
21177         BROKEN_THREAD_START stuff.
21178
21179 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
21180
21181         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
21182         trampoline.
21183
21184         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
21185         
21186         * object.c (mono_delegate_ctor): Replace the original function address with
21187         a delegate trampoline.
21188
21189 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
21190
21191         * icall.c: add boolean argument to base64_to_byte_array and 
21192         InternalFromBase64String to control whether a whitespace-only string
21193         is allowed (or should casue a FormatException to be thrown). We need
21194         this as the behavior has changed between MS.NET 1.x and 2.0, and we
21195         to match the MS behaviour in both profiles.
21196         * appdomain.c: Bump corlib version.
21197
21198 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21199
21200         This patch implements a big portion of publisher policy
21201         support, used to bind assembly versions and redirect
21202         one assembly from version A to version B.
21203
21204         * assembly.c:
21205         New GSList loaded_assembly_bindings, for storing the cached
21206         assembly bindings.
21207         (assembly_binding_maps_name): New static function for checking if a 
21208         assembly binding information maps an assembly name.
21209         (mono_assembly_binding_info_free): New function for freeing
21210         assembly binding information resources.
21211         (get_publisher_policy_info): New static function for retrieving 
21212         assembly binding information from a MonoImage.
21213         (compare_versions): New static function for comparing an assembly
21214         binding information data and the version of an assembly name.
21215         (check_policy_versions): New static function for checking if an
21216         assembly binding info mapping an assembly name is valid for it.
21217         (mono_assembly_load_publisher_policy): New static function for
21218         loading the 'policy.major.minor.MyAssembly' image for an assembly
21219         with an assembly name 'aname'.
21220         (mono_assembly_bind_version): New static function for updating
21221         assembly redirection.
21222         (mono_assembly_apply_binding): New static function for applying
21223         assembly binding.
21224         (search_binding_loaded): New static function for searching 
21225         loaded assembly binding infos in the cache domain.
21226         (mono_assembly_load_full): Don't apply assembly binding for
21227         reflection only assemblies.
21228
21229         * metadata-internals.h: Add MonoAssemblyBindingInfo,
21230         which contains information about assembly binding. Also
21231         declare signature for mono_config_parse_publisher_policy ()
21232         function, used to retrieve pub policy info.
21233         
21234         * mono-config.c:
21235         (publisher_policy_start): New static function used to parse publisher 
21236         policy config files.
21237         (publisher_policy_parser): New static MonoParseHandler containing 
21238         the functions used when parsing config files.
21239         (mono_config_parse_publisher_policy): New function for parsing
21240         publisher policy files.
21241         
21242 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
21243
21244         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
21245
21246         * marshal.c (mono_delegate_free_ftnptr): Ditto.
21247
21248         * object.c (mono_get_addr_from_ftnptr): New helper function.
21249
21250         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
21251
21252         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21253
21254 2005-08-19  Dick Porter  <dick@ximian.com>
21255
21256         * threads.c, threads.h, appdomain.c, appdomain.h,
21257         profiler-private.h, monitor.c, object.c, object-internals.h,
21258         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
21259         store the thread ID, so it can hold a 64 bit value if needed.
21260
21261 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
21262
21263         * reflection.c (mono_reflection_create_dynamic_method): Store the
21264         handle class into the method references as well so ldtoken works in
21265         dynamic methods.
21266
21267         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
21268         types.
21269
21270 2005-08-19  Ankit Jain <jankit@novell.com>
21271
21272         Fix #75847.
21273         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
21274           here rather than using the method signature of a arbitrary function
21275           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
21276           two arguments.
21277           Hack done with Harinath.
21278
21279 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21280
21281         * threadpool.c: disable printing stack traces when we get a exception
21282         in a threadpool thread. I need to do more testing to figure out which
21283         cases actually print this. Fixes bug #75828.
21284
21285 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21286
21287         * icall.c: there might be ignored whitespace after the last '='. This
21288         fixes length computation and bug #75840.
21289
21290 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
21291
21292         * assembly.c (mono_assembly_load_full): Consider .exe extension as
21293         well. Fixes #75809.
21294
21295         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
21296         #75784.
21297         
21298         * reflection.c (create_custom_attr_data): Ditto.
21299
21300 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
21301
21302         * locales.c, culture-info.h : removed RegionLCIDMap.
21303         * culture-info-tables.h : regenerated.
21304
21305 2005-08-16  Martin Baulig  <martin@ximian.com>
21306
21307         * class.c (mono_type_get_name_recurse): Small fix.
21308
21309 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
21310
21311         * locales.c : indentation fixie.
21312
21313 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
21314
21315         * object-internals.h,
21316           locales.h,
21317           locales.c,
21318           culture-info.h,
21319           icall.c : added RegionInfo table support.
21320         * culture-info-table.h : regenerated for region support.
21321
21322 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
21323
21324         * reflection.c (resolve_object): handle all kinds of MonoMethod
21325         including generic ones
21326
21327 2005-08-12  Ankit Jain <jankit@novell.com>
21328
21329         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21330           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
21331
21332 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
21333
21334         * process.c: Don't close a thread handle when it's NULL. This is a
21335         workaround for bug #75733.
21336
21337 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
21338
21339         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21340
21341 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
21342
21343         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21344
21345 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21346
21347         * threadpool.c: if a work item in the thread pool has a callback that
21348         catches a exception, don't propagate it after invoking the callback.
21349         Fixes bug #75336.
21350
21351 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
21352
21353         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21354
21355         * class-internals.h (MonoCachedClassInfo): Add some new fields.
21356
21357         * class.c (mono_class_init): Load field info lazily in the AOT case.    
21358
21359         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21360
21361 2005-08-03  Ankit Jain  <jankit@novell.com>
21362
21363         Fix #75683.
21364         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21365           PInvoke calling convention is 0.
21366
21367 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21368
21369         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21370         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21371
21372 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21373
21374         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21375         to handle threads not started by the GC (patch by Michael Meeks
21376         <michael.meeks@novell.com>).
21377
21378 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21379
21380         * reflection.c: Make buffer used in emitting types larger for some
21381         big generic types (patch by Michal Moskal).
21382
21383 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21384
21385         * mono-debug.c: Fix some (not all) alignment problems.
21386
21387 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21388
21389         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21390         Invoke mono_image_load_from_data_full passing the refonly
21391         parameter.
21392
21393         * assembly.c
21394         (mono_assembly_open_from_bundle): Add the refonly argument, 
21395         in order to pass it to other methods it calls to.
21396         (do_mono_assembly_open): Add the refonly argument, in order 
21397         to pass it to other methods it calls to.
21398         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21399         the refonly parameter to it.
21400
21401         * image.c: Add loaded_images_refonly_hash and
21402         loaded_images_refonly_guid_hash to cache the reflection
21403         only loaded images.
21404         (mono_images_init): Initialize the hash tables used for
21405         caching the reflection only images.
21406         (load_modules): Invoke mono_image_open_full passing the refonly
21407         parameter to load the modules the correct way.
21408         (build_guid_table): Add the refonly argument, to re-build the 
21409         correct hash table.
21410         (do_mono_image_open): Added the refonly argument, in order to
21411         define it for the loaded image.
21412         (mono_image_loaded_full): New function, which receives an
21413         additional parameter to look for the image in the refonly or
21414         non-refonly section.
21415         (mono_image_loaded): Updated, using mono_image_loaded_full.
21416         (mono_image_loaded_by_guid_full): The same case that happens
21417         with mono_image_loaded_full.
21418         (mono_image_loaded_by_guid): Likewise.
21419         (register_image): Use the ref_only variable inside MonoImage
21420         to decide in which hash table store the current image.
21421         (mono_image_open_from_data_full): Rename
21422         mono_image_open_from_data to mono_image_open_from_data_full,
21423         adding the refonly argument, to define the ref_only variable 
21424         inside MonoImage.
21425         (mono_image_open_from_data): Return 
21426         mono_image_open_from_data_full.
21427         (mono_image_open_full): Rename mono_image_open to
21428         mono_image_open_full, receiving the new refonly argument,
21429         to pass it to inner methods.
21430         (mono_pe_file_open): Update this function, to open
21431         a MonoImage as a non-refonly image.
21432         (mono_image_close): Use the refonly variable inside
21433         MonoImage to remove the image from the correct caches.
21434
21435         * image.h: Add the signatures of mono_image_open_full,
21436         mono_image_open_from_data_full, mono_image_loaded_full,
21437         mono_image_loaded_by_guid_full.
21438
21439         * metadata-internals.h: Add the ref_only field to 
21440         MonoImage.
21441         
21442 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21443
21444         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21445         Fix the last behavior, which used to load the assemblies and
21446         extract MonoReflectionAssemblyName information, instead of
21447         extract it from the metadata tables. Needed for Reflection
21448         Only assemblies.
21449         
21450 2005-07-29  Martin Baulig  <martin@ximian.com>
21451
21452         * mono-debug-debugger.c
21453         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21454         not initialized.
21455
21456         * mono-debug.c
21457         (mono_debug_address_from_il_offset): Check whether we have
21458         debugging support before attempting to take the lock.
21459         (mono_debug_source_location_from_address): Likewise.
21460         (mono_debug_source_location_from_il_offset): Likewise.
21461         (mono_debug_il_offset_from_address): Likewise.
21462         (mono_debug_address_from_il_offset): Likewise.
21463
21464 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21465
21466         * class.c (mono_class_from_name_case): Add support for dynamic images.
21467         Fixes #75650.
21468
21469         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21470         for #75479.
21471
21472 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21473         
21474         * reflection.c (mono_method_get_object): Fix warning.
21475
21476 2005-07-28  Martin Baulig  <martin@ximian.com>
21477
21478         * mono-debug.c
21479         (mono_debug_add_wrapper): Also write the wrapper type.
21480
21481 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21482
21483         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21484         
21485         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21486         data indicates the class has none.
21487
21488 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21489
21490         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21491         loader lock with the debugger lock. Prevents deadlocks for beagle.
21492
21493         Beagle can now run on an smp box for a weekend without any
21494         issues. Woohoo!
21495
21496 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21497
21498         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21499         in a module. Fixes #75629.
21500
21501 2005-07-26  Martin Baulig  <martin@ximian.com>
21502
21503         * mono-debug.c (mono_debug_add_wrapper): New static method.
21504         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21505         interncall or a wrapper.
21506
21507         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21508         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21509         (MONO_DEBUGGER_VERSION): Bump to 51.
21510
21511         * mono-debug-debugger.c
21512         (mono_debugger_add_type): Removed this empty function.
21513         (mono_debugger_add_method): Likewise.
21514
21515 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21516
21517         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21518         before accessing method->slot.
21519
21520 2005-07-21  Jb Evain  <jbevain@gmail.com>
21521
21522         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21523         Fixes #75010.
21524
21525 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21526
21527         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21528         #75587.
21529
21530 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21531
21532         * image.h image.c: Add mono_image_get_guid () API function.
21533
21534 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21535
21536         There were issues when multiple threads tried to load
21537         assemblies. A deadlock was created between assemblies_mutex and
21538         mono_domain_assemblies_lock. This fixes the issue by making the
21539         assembly ref counting be lock free. See bug 75586.
21540         
21541         * image.c (mono_image_close): The add ref function here was using
21542         Interlocked operations while the unref was using a mutex and a
21543         --. I don't think this was ever a bug that would be exposed in a
21544         non-pendantic way (ie, by an embedder doing a ref on one thread
21545         and an unref on another), but for the sake of correctness, this is
21546         now Interlocked.
21547
21548         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21549         (mono_assembly_load_reference): Call mono_assembly_addref rather
21550         than touching the refcount ourselves.
21551         (mono_assembly_close): Use InterlockedDecrement to unref the
21552         assembly. Don't acquire the lock unless it is actually needed.
21553
21554 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21555
21556         * class.c (mono_class_layout_fields): Fix calculation of has_references
21557         for generic types.
21558
21559 2005-07-12  Martin Baulig  <martin@ximian.com>
21560
21561         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21562
21563         * metadata.c
21564         (mono_type_hash): Provide better hashing for generic instances.
21565         (mono_generic_inst_hash): Improve hashing.
21566         (mono_generic_class_hash): Likewise.
21567
21568         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21569         generic instances.
21570
21571 2005-07-12  Martin Baulig  <martin@ximian.com>
21572
21573         * reflection.c (mono_reflection_create_runtime_class): Remove the
21574         hack for generic type definitions and non-`Run' assemblies.
21575         (mono_reflection_bind_generic_parameters): Also use
21576         `klass->wastypebuilder' to check for TypeBuilders.
21577
21578 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21579
21580         * class.c (mono_class_layout_fields): Fix calculation of has_references
21581         for generic types.
21582
21583         * class.c (inflate_generic_class): Fix a leak.
21584         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21585         for generic types.
21586
21587 2005-07-11  Martin Baulig  <martin@ximian.com>
21588
21589         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21590         on error.
21591
21592 2005-07-11  Martin Baulig  <martin@ximian.com>
21593
21594         * loader.c (find_method): Also lookup in
21595         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
21596
21597 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21598
21599         * appdomain.c (mono_domain_unload): Don't free the error message
21600         before passing it to mono_get_exception_...
21601
21602         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
21603         
21604 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
21605
21606         * threads.c: try to better guess an available RT signal (bug #75387).
21607
21608 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21609
21610         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
21611         and CACHE_OBJECT.
21612
21613 2005-07-07  Martin Baulig  <martin@ximian.com>
21614
21615         * class.c (mono_type_get_name_full): Return NULL for
21616         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
21617         fixes #75408.
21618
21619 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21620
21621         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
21622         exit the appdomain as well being aborted.
21623
21624         * threadpool.c: Create all threadpool threads inside the root appdomain, and
21625         change back to the root domain after calling managed code. This enables
21626         appdomains using threadpools to be unloaded.
21627
21628 2005-07-07  Martin Baulig  <martin@ximian.com>
21629
21630         * class-internals.h
21631         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
21632         into `MonoDynamicGenericClass' since we only need it for dynamic
21633         types.
21634
21635         * reflection.c (mono_class_bind_generic_parameters): We don't need
21636         to compute the `parent' here.
21637
21638 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
21639
21640         * culture-info-table.h : regenerated.
21641
21642 2005-07-06  Martin Baulig  <martin@ximian.com>
21643
21644         * icall.c
21645         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
21646
21647         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
21648
21649 2005-07-06  Martin Baulig  <martin@ximian.com>
21650
21651         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
21652         we're doing a signature-only comparision; fixes #74945.
21653
21654 2005-07-06  Martin Baulig  <martin@ximian.com>
21655
21656         * class-internals.h (MonoGenericClass): Moved some things out into
21657         a new `MonoInflatedGenericClass' type.  
21658         (MonoInflatedGenericClass): New type; the `klass' of a
21659         `MonoGenericClass' is now computed lazyly in
21660         mono_get_inflated_generic_class().      
21661
21662         * class.c (mono_get_inflated_generic_class): New public function.
21663         (mono_class_inflate_generic_method): Removed the unused
21664         `MonoClass *' argument.
21665         (setup_generic_vtable): Don't call mono_get_inflated_method() on
21666         all the methods.
21667         (mono_class_create_generic): Make this static and merge it with
21668         mono_class_create_generic_2(); we're now called automatically from
21669         mono_get_inflated_generic_class().
21670
21671         * loader.c (mono_method_signature): Call
21672         mono_get_inflated_method() here.
21673
21674 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
21675
21676         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
21677         type of fields with RVA.
21678
21679         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
21680         for this pseudo class.
21681         (my_mono_class_from_generic_parameter): Likewise.
21682         (mono_class_init): Allow interfaces to have cctors.
21683
21684 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21685
21686         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
21687         lazily for AOT methods.
21688
21689 2005-07-05  Martin Baulig  <martin@ximian.com>
21690
21691         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
21692         returns FALSE for a successful match, not TRUE.
21693
21694 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21695
21696         * loader.c (mono_method_get_index): Optimize this a bit.
21697
21698 2005-07-04  Martin Baulig  <martin@ximian.com>
21699
21700         * class.c
21701         (class_compute_field_layout): Move the check for generic type
21702         definitions into mono_class_layout_fields().  Fixes #74684.
21703         (mono_class_from_generic_parameter): Correctly compute
21704         `klass->parent'; fixes #75457.
21705
21706         * reflection.c (register_assembly, register_module): Make sure
21707         `domain->rejobject_hash' is already created.
21708
21709 2005-07-02  Martin Baulig  <martin@ximian.com>
21710
21711         * class-internals.h
21712         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
21713         `MonoDynamicGenericClass'.      
21714
21715 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
21716
21717         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
21718         returned by a field getter is null, since null is a valid value.
21719
21720 2005-07-01  Martin Baulig  <martin@ximian.com>
21721
21722         * reflection.c (mono_reflection_generic_class_initialize): Update
21723         the `dgclass->fields [i].parent' to the correct class.
21724         (mono_image_get_fieldref_token): Use the declaring type, not the
21725         reflected type.
21726
21727 2005-07-01  Martin Baulig  <martin@ximian.com>
21728
21729         * loader.c (find_method): Also look in the interfaces; fixes #75429.
21730
21731 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
21732
21733         * threads.c (thread_cleanup): assert that thread != NULL
21734         (wait_for_tids_or_state_change): We were using the wrong variable
21735         when accessing wait->threads. `i' was always out of the bounds of
21736         the array.
21737
21738 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21739
21740         * loader.c: map user32 and kernel32 to libMonoSupportW
21741
21742 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
21743
21744         * appdomain.c (unload_thread_main): Mark this as WINAPI.
21745
21746 2005-06-28  Martin Baulig  <martin@ximian.com>
21747
21748         * loader.c (method_from_methodspec): Fix #75334.
21749
21750 2005-06-28  Martin Baulig  <martin@ximian.com>
21751
21752         Fix #74953 - Arrays now implement the generic IList<T> interface
21753         on the 2.0 platform.
21754
21755         * class-internals.h (MonoDefaults): Added `generic_array_class'.
21756
21757         * reflection.c (mono_class_bind_generic_parameters): New public
21758         function; similar to mono_reflection_bind_generic_parameters(),
21759         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
21760
21761         * domain.c (mono_init_internal): Try to initialize.
21762         `mono_defaults.generic_array_class' here; this'll only succeed if
21763         we're using the 2.0 corlib.
21764
21765         * icall.c
21766         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
21767         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
21768         (mono_lookup_internal_call): Added support for nested classes.
21769
21770         * loader.c
21771         (mono_get_method_from_token): Set `result->signature->pinvoke' if
21772         we're an interncall and have generic arguments.
21773
21774         * class.c
21775         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
21776         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
21777         instance of System.Array.InternalArray<T> for arrays, so they
21778         implement the generic IList<T> interface.
21779
21780 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
21781
21782         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
21783         (chastamar@yahoo.com). Fixes #75374.    
21784
21785 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
21786
21787         * culture-info-table.h: regenerated.
21788
21789 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21790
21791         * icall.c: handle spaces correctly for base64 strings.
21792
21793 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
21794
21795         * *.c: Kill some warnings.
21796
21797 2005-06-23  Duncan Mak  <duncan@novell.com>
21798
21799         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
21800         that this builds on Solaris 10 (x86).
21801
21802 2005-06-23  Martin Baulig  <martin@ximian.com>
21803
21804         * class.c
21805         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
21806         generic type definitions.
21807
21808 2005-06-23  Martin Baulig  <martin@ximian.com>
21809
21810         Fix #75331.
21811
21812         * metadata.c (mono_class_get_overrides): Renamed to
21813         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
21814         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
21815         pass it to mono_get_method_full().
21816
21817 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
21818
21819         * reflection.c (mono_reflection_create_runtime_class): take the
21820         mono_domain_lock in this method. Prevents deadlocks
21821
21822 2005-06-22  Martin Baulig  <martin@ximian.com>
21823
21824         * loader.c (method_from_methodspec): Fix #75330.
21825
21826 2005-06-22  Martin Baulig  <martin@ximian.com>
21827
21828         * reflection.c (type_get_qualified_name): Use
21829         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
21830         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
21831         argument; use it if we don't have an assembly name.
21832
21833 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
21834
21835         * object.c: In mono_message_init, set "copy out" flag for in
21836         parameters with the [Out] flag.
21837
21838 2005-06-21  Martin Baulig  <martin@ximian.com>
21839
21840         * class.c
21841         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
21842         and MONO_TYPE_PTR.
21843
21844 2005-06-21  Martin Baulig  <martin@ximian.com>
21845
21846         * class.c (mono_class_init): Don't initialize `class->fields' for
21847         generic instances since they're initialized again in
21848         compute_field_layout(). 
21849         (compute_field_layout): Set the field's `generic_info' here; fix
21850         #75320. 
21851
21852 2005-06-21  Martin Baulig  <martin@ximian.com>
21853
21854         * class-internals.h
21855         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
21856
21857         * metadata.c (mono_metadata_generic_method_equal): Also
21858         distinguish the `generic_class'; fixes #75334.
21859
21860 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21861
21862         * domain.c:
21863         * appdomain.c:
21864         * domain-internals.h:
21865         * reflection.c: 'domain_assemblies' field is now protected by its own
21866         lock. Don't call into managed code to run the AssemblyLoad event if we
21867         now there are no registered delegates for it.
21868
21869 2005-06-20  Martin Baulig  <martin@ximian.com>
21870
21871         * class.c (mono_class_is_assignable_from): Use a custom version of
21872         mono_class_has_parent() to make things work for generic instances;
21873         fix #75300.
21874
21875 2005-06-20  Martin Baulig  <martin@ximian.com>
21876
21877         * loader.c (method_from_methodspec): Apply a patch from
21878         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
21879
21880 2005-06-20  Martin Baulig  <martin@ximian.com>
21881
21882         * class.c (mono_class_init): Reverted Zoltan's last change; it
21883         breaks generics.
21884
21885 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
21886
21887         * threads.c (wait_for_tids_or_state_change): Add missing locking.
21888
21889 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21890
21891         * socket-io.c: fix the index in the socket array for writable/error
21892         sockets. Fixes bug #75306.
21893
21894 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
21895
21896         * class.c (mono_class_init): Allow interfaces to have static ctors.
21897
21898 2005-06-17  Martin Baulig  <martin@ximian.com>
21899
21900         * loader.c (method_from_methodspec): Use `context->container' when
21901         parsing the `gmethod->inst'.
21902
21903 2005-06-17  Martin Baulig  <martin@ximian.com>
21904
21905         * class.c (mono_type_get_name_recurse): Don't add the assembly
21906         name for type arguments.
21907
21908 2005-06-15  Martin Baulig  <martin@ximian.com>
21909
21910         * reflection.c (mono_image_get_inflated_method_token): Encode
21911         correct klass; fixes #75260.
21912
21913 2005-06-13 Michal Moskal <malekith@nemerle.org>
21914
21915         * icall.c: Make GetCorrespondingMethod/Constructor take
21916         MonoReflectionMethod method not MonoMethod. Removed
21917         MonoType.GetCorrespondingField, and make
21918         MonoGenericType.GetCorrespondingField take name not
21919         MonoClassField.
21920
21921 2005-06-13  Michal Moskal <malekith@nemerle.org>
21922
21923         * reflection.c (field_encode_signature, encode_locals):
21924          Make sizes of buffers for types larger (for big generic types).
21925          (create_generic_typespec,
21926          mono_reflection_sighelper_get_signature_local,
21927          mono_reflection_sighelper_get_signature_field):
21928          Add asserts for too small buffers.
21929
21930 2005-06-15  Martin Baulig  <martin@ximian.com>
21931
21932         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
21933         if our parent is not a dynamic type.
21934
21935 2005-06-15  Martin Baulig  <martin@ximian.com>
21936
21937         * class-internals.h (MonoTypeNameFormat): New enum.
21938
21939         * class.c
21940         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
21941         (mono_type_get_full_name): Removed.
21942         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
21943         argument instead of the boolean's.
21944
21945         * icall.c (ves_icall_System_MonoType_getFullName):
21946         Added `gboolean assembly_qualified'.    
21947
21948         * reflection.h
21949         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
21950
21951         * reflection.c (mono_reflection_parse_type): Parse the new type
21952         name format.
21953
21954 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21955
21956         * icall.c: no need to convert from utf16 to utf8 and then back again
21957         after the call to GetLogicalDrives.
21958
21959 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21960
21961         * icall.c: frombase64. Fix problems exposed by new tests.
21962
21963 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21964
21965         * icall.c: added internal calls for converting char [] and strings in
21966         base64 into byte [].
21967
21968 2005-06-10  Martin Baulig  <martin@ximian.com>
21969
21970         * class.c (mono_class_create_generic_2): Read the nested classes
21971         from the metadata rather than from `gklass->nested_classes' since
21972         `gklass' might not be initialized yet.
21973
21974 2005-06-09  Duncan Mak  <duncan@novell.com>
21975
21976         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
21977         all public headers. Fixes #74919.
21978
21979 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
21980
21981         * domain.c: The key for proxy_vtable_hash is now a pointer
21982         array. Added new GHashFunc and GCompareFunc functions for this.
21983
21984         * class.h: The list of interfaces in MonoRemoteClass is known in
21985         advance and can't grow (we create a new MonoRemoteClass if needed),
21986         so now the interface array can be allocated together with
21987         MonoRemoteClass.
21988         
21989         * object.c: Added a new method create_remote_class_key.
21990         Fixed mono_remote_class so it does not depend on
21991         mono_upgrade_remote_class.
21992         Removed extend_interface_array.
21993         Added new method clone_remote_class(), which makes a copy of a remote
21994         class and adds a new interface or class to it.
21995         mono_upgrade_remote_class() now creates a new remote class (or gets
21996         it from the cache) if an vtable upgrade is needed. In this way
21997         we make sure that other objects sharing the same remote class
21998         don't get the new vtable with unwanted interfaces.
21999         
22000         * object-internals.h:
22001         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
22002         
22003         * marshal.c: Track changes in mono_upgrade_remote_class().
22004
22005 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
22006         * icall.c: Add runtime methods for obtaining members of inflated
22007         class, which were created from supplied non-inflated members. It
22008         is used in internal Get{Method,Constructor,Field} methods in
22009         System.Type
22010
22011 2005-06-09  Martin Baulig  <martin@ximian.com>
22012
22013         * reflection.c
22014         (mono_reflection_bind_generic_method_parameters): Fix #75169.
22015
22016 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22017         * reflection.c (mono_image_basic_init): Define
22018         Version in MonoDynamicAssembly. 
22019         
22020 2005-06-08  Martin Baulig  <martin@ximian.com>
22021
22022         Fix #75136.
22023
22024         * loader.c
22025         (mono_method_signature_full): New public method; takes a
22026         `MonoGenericContext *'.
22027         (find_method): Use mono_method_signature_full() and pass the
22028         klass'es context to it.
22029
22030         * class.c (mono_class_is_inflated_method): Use
22031         mono_method_signature_full() and pass the context to it.
22032
22033 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
22034
22035         * object.c: add proper locking in mono_remote_class_vtable(),
22036         fixes possible memory corruption.
22037
22038 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
22039
22040         * marshal.c (mono_remoting_marshal_init): set
22041         initialized after initialization.
22042
22043 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
22044
22045         * locales.c : hush.
22046
22047 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
22048
22049         * object.c (extend_interface_array): fix really silly
22050         memory corrupting / comparison bug.
22051
22052 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22053
22054         * reflection.c: Functions added to support the creation
22055         of CustomAttributeData, which includes Attribute data
22056         used by ReflectionOnly methods.
22057
22058         * reflection.h:  mono_reflection_get_custom_attrs_data and
22059          mono_custom_attrs_data_construct added (functions exposed).
22060
22061          * icall.c: Added mono_reflection_get_custom_attrs_data
22062          as icall.
22063         
22064 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
22065
22066         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
22067         lupus's request.
22068
22069 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
22070
22071         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
22072
22073         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
22074         dynamic DllImportAttribute.
22075
22076         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
22077         dynamic DllImportAttribute.
22078
22079         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22080         Fixes #75162.
22081
22082 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22083
22084         * threads.c: avoid segfault when an unstarted thread is aborted.
22085
22086 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
22087
22088         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22089         Returns the name and version of the runtime for reporting.
22090
22091 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22092
22093         * appdomain.c: bump corlib version.
22094         * object-internals.h: new field in MonoReflectionAssembly.
22095
22096 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22097
22098         * object-internals.h: Carlos forgot to add this field.
22099
22100 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22101
22102         * icall.c: Added create_version to create instances
22103         of Version of MonoReflectionAssemblyName. This change helps
22104         the AssemblyName tests to keep running fine.
22105         
22106 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
22107   
22108         * object.c (mono_method_return_message_restore): A somehow less
22109         intrusive fix for #75138.
22110
22111 2005-06-03  Raja R Harinath  <rharinath@novell.com>
22112
22113         * object.c (mono_method_return_message_restore): Fix computation
22114         of expected number of out args.
22115
22116 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22117
22118         * reflection.c (mono_image_get_method_info): Fix the case when the
22119         charset is empty.
22120
22121 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
22122
22123         * object.c: Added missing null check in
22124           mono_method_return_message_restore.
22125
22126 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22127
22128         * reflection.c (mono_image_get_method_info): Handle the case when
22129         dllentry is empty.
22130
22131 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
22132
22133         * object.c: When creating the vtable for a proxy, take into account
22134         all inherited interfaces, not only the ones registered in
22135         iclass->interfaces. This fixs bug #74996.
22136         Also, in mono_method_return_message_restore, verify that the array
22137         of out args has the expected lengh.
22138
22139 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22140
22141         * socket-io.c: update the timeout in Poll when the call is interrupte.
22142
22143 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22144
22145         * socket-io.c: support abort/suspend in Select_internal after last
22146         change.
22147
22148 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22149
22150         * threadpool.c: remove warning.
22151
22152 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22153
22154         * icall.c:
22155         * socket-io.[ch]: Select_internal uses poll() now when available, thus
22156         removing the 1024 limit from select(). Runtime part of the fix for
22157         bug #71203.
22158
22159 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22160
22161         * socket-io.c: when resolving the addresses for the same
22162         host returned by gethostname(), get the local IPs from the interface
22163         list. Loopback addresses are discarded if the are interfaces up with
22164         non-loopback ones. Fixes bug #63265.
22165
22166 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
22167
22168         * appdomain.c, verify.c, object-internals.h, reflection.c:
22169         bumped corlib number to 36, and added new extra_flags field
22170         to ReflectionMethodBuilder and friends.  Fixes #75060.
22171
22172 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22173
22174         * gc.c: register a new weak link only if the object is non-null
22175         (fixes bug#75047).
22176
22177 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22178
22179         * culture-info.h : short time pattern too.
22180
22181 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22182
22183         * culture-info.h : expand long time pattern string length.
22184
22185 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22186
22187         * culture-info-table.h : update (more French date format; #72788).
22188
22189 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
22190
22191         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
22192         the method is static. Fixes #75029.
22193
22194 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
22195
22196         * reflection.c: Update the table_idx field of method builders after
22197         saving the module, since it can change. This is a workaround for
22198         bug #74914. 
22199
22200 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22201
22202         * culture-info-table.h : update (additional French date format).
22203
22204 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
22205
22206         * icall.c (ves_icall_type_Equals): Revert last change.
22207         
22208         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
22209
22210         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
22211
22212 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
22213
22214         * class-internals.h: Added executioncontext_class field to 
22215         MonoDefaults structure.
22216         * domain.c: Cache System.Threading.ExecutionContext class in 
22217         mono_defaults.
22218         * object.c: Capture the ExecutionContext for asynchroneous calls in
22219          mono_async_result_new.
22220         * object-internals.h: Added execution_context and original_context 
22221         fields to MonoAsyncResult. Added execution_context to MonoThread.
22222         * security-manager.c|.h: Added mono_get_context_capture_method to 
22223         return the capture method (if required by the security manager or by
22224         the framework version used).
22225         * threadpool.c: Apply capture (if present) ExecutionContext in 
22226         mono_async_invoke and revert to original context after it completes.
22227
22228 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
22229
22230         * culture-info-table.h : updated (real hacky solution for zh-CHT).
22231
22232 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
22233
22234         * culture-info-table.h : zh-CHT related workaround.
22235
22236 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22237
22238         * marshal.c (emit_marshal_custom): Add some error checking and call the
22239         methods in the ICustomMarshaler interface. Fixes #74875.
22240         
22241         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
22242         native->managed wrappers.
22243
22244 2005-05-12  Martin Baulig  <martin@ximian.com>
22245
22246         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
22247         here and use the loader lock.
22248
22249         * mono-debug.c: Properly lock when the debugger is not attached.
22250         (mono_debug_init): Release the initial lock if we're not running
22251         in the debugger.
22252
22253 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22254
22255         * marshal.c (emit_marshal_custom): Pass through NULL values without
22256         calling the custom marshalling routines.
22257
22258         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
22259         conversion in structures. Fixes #74882.
22260
22261 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
22262
22263         * culture-info-table.h : zh-* cultures were missing.
22264
22265 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
22266
22267         * threads.c: Added a new event background_change_event which is signaled
22268         when a thread changes its background mode.
22269         Moved here several checks previously done in managed code. The checks
22270         require the thread lock, and using the thread lock in managed code
22271         can result in deadlocks.
22272         Merged Start_internal and Thread_internal into a single method. Now 
22273         Thread_internal does all work of creating and starting a thread.
22274         Added icalls for setting and getting the state of the object. Moved from
22275         managed code to avoid locking there.
22276         Added wait_for_tids_or_state_change() which is called instad of
22277         wait_for_tids when waiting for non-backround threads to end. This method
22278         will return if one of the threads ends or the background_change_event
22279         is signaled.
22280         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
22281         the background mode. This method signals the background_change_event
22282         event.
22283         * icall.c:
22284         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
22285         removed Start_internal.
22286         
22287 2005-05-11  Martin Baulig  <martin@ximian.com>
22288
22289         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
22290         to order of some fields to get proper alignment on 64-bit machines.
22291
22292 2005-05-11  Martin Baulig  <martin@ximian.com>
22293
22294         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
22295         changes as they're broken and completely fuck up the debugger.
22296
22297         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
22298
22299 2005-05-10  Martin Baulig  <martin@ximian.com>
22300
22301         * reflection.c (mono_reflection_generic_class_initialize): Don't
22302         call mono_class_setup_parent() here.
22303
22304 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22305
22306         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
22307         send/receive timeout use an integer in milliseconds. We were using a
22308         struct timeval.
22309
22310 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22311
22312         * locales.c:
22313         (internal_get_cultures): reserve the first slot of the array for the
22314         InvariantCulture, which will be filled in managed code.
22315
22316 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
22317
22318         * reflection.c (mono_image_fill_module_table): Initialize the
22319         GENERATION field as well.
22320
22321 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22322
22323         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22324         Monitor.Enter on the object.
22325
22326 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
22327
22328         * threads.c: Enable the wait for running threads when exiting.
22329         * icall.c: Suspend all threads before exiting.
22330
22331 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
22332
22333         * assembly.c (mono_assembly_load_reference): Fix warning.
22334
22335 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22336
22337         * threadpool.c: changed the default number of threads per cpu. From now
22338         on, the default will be 20 + (5 * number of cpus) instead of 50.
22339
22340 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
22341
22342         * loader.c (mono_method_get_signature_full): Add locking here.
22343
22344 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
22345
22346         * appdomain.c: Moved methods for parsing and freeing assembly
22347         names to assembly.c.
22348         * assembly.c, domain-internals.h: Created public methods for parsing
22349         assembly names. Fixed mono_assembly_load_with_partial_name:
22350         it now finds the best match, taking into account the version,
22351         token and culture specified in the partial name. Also return
22352         the latest version if no version information is specified.
22353
22354 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22355
22356         * threadpool.c: replace check for SocketAsyncCall class.
22357
22358 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22359
22360         * threadpool-internals.h:
22361         * Makefile.am: added threadpool-internals.h
22362
22363         * threadpool.c: call mono_unhandled_exception on exceptions not handled
22364         that happen in threadpool threads (tested on MS).
22365         (mono_thread_pool_remove_socket): new function that dispatch any pending
22366         AIO call on a socket that is closing. By now only epoll really needs it,
22367         as select/poll wake up when the socket closes.
22368
22369
22370         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22371
22372 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22373
22374         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22375
22376 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22377
22378         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22379
22380 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22381
22382         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22383         has an abort request, convert it into a suspend request.
22384
22385 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22386
22387         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22388         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22389         is not supported yet.
22390
22391 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22392
22393         * image.c: register assemblies loaded from data (bundles) in the loaded
22394         assemblies hash. Fixes bug #74772.
22395
22396 2005-04-29  Martin Baulig  <martin@ximian.com>
22397
22398         * class.c (mono_type_get_name_recurse): Update to the new naming
22399         schema from the latest .NET 2.x beta2.
22400         (mono_class_setup_vtable_general): If we're a generic instance,
22401         copy the vtable from our generic type definition and inflate all
22402         the methods in it.
22403
22404         * loader.c (find_method): Update to the new naming schema from the
22405         latest .NET 2.x beta2.
22406
22407 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22408
22409         * class.c (mono_class_init): Add a mono_loader_unlock to the
22410         #74734 fix.
22411
22412 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22413
22414         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22415         suspend_all_other_threads () call for the time being, since it can hang.
22416
22417         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22418         the background threads to exit, since it can also hang.
22419
22420         * class.c (mono_class_init): Applied patch from Ankit Jain 
22421         (radical@gmail.com). Avoid pending init errors when a field refers
22422         to a nested class using a typeref. Fixes #74734.
22423
22424         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22425         this for dynamic modules.
22426
22427 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22428
22429         * threads.c: don't wait for threads that are in the process of aborting
22430         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22431         and waiting for background threads to finish. This makes xsp and
22432         mod-mono-server exit without random length delays and/or hangs.
22433
22434 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22435
22436         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22437
22438 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22439
22440         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22441         dynamic types to prevent infinite loops. Fixes #74727.
22442
22443         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22444         ..._is_assignable_to.
22445
22446 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22447
22448         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22449
22450 2005-04-25  Martin Baulig  <martin@ximian.com>
22451
22452         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22453
22454         * domain.c
22455         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22456
22457         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22458
22459         * reflection.c (build_compressed_metadata): Set metadata header
22460         version to 2.0.
22461
22462 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22463
22464         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22465         number into an integral and a decimal part. Fixes #70473.
22466
22467         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22468
22469 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22470
22471         * culture-info-table.h : reflected the latest locale-builder output.
22472
22473 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22474
22475         * threadpool.c: check for SuspendRequested too when deciding if
22476         mono_thread_interruption_checkpoint should be called.
22477
22478 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22479
22480         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22481         * threads.c: remove interruption_mutex and use Interlocked instead. When
22482         suspending all the threads, wait for all the suspended events at once.
22483         If we're shutting down and get an APC that is going to be queued,
22484         call mono_thread_execute_interruption immediately, as the thread might
22485         be sleeping on a pthread condition or mutex.
22486
22487         * icall.c: call mono_runtime_set_shutting_down before suspending the
22488         threads.
22489
22490         Fixes bug #74693. And now xsp is happier when exiting.
22491
22492 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22493
22494         * loader.c (mono_stack_walk): Fix #74690.
22495
22496 2005-04-22  Martin Baulig  <martin@ximian.com>
22497
22498         * mono-debug.h (MonoDebugMethodJitInfo): Added
22499         `MonoDebugMethodJitInfo *jit'.
22500
22501         * mono-debug.c (mono_debug_read_method): Cache the
22502         MonoDebugMethodJitInfo in `address->jit'.
22503         (mono_debug_free_method_jit_info): New public method.
22504
22505 2005-04-22  Martin Baulig  <martin@ximian.com>
22506
22507         * class.c (mono_class_is_assignable_from): Disallow
22508         type parameter -> interface.
22509
22510 2005-04-21  Dick Porter  <dick@ximian.com>
22511
22512         * threads.c (mono_thread_create): Turn an assertion into an error.
22513
22514 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22515
22516         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22517         
22518         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22519         Fix some gcc 4.0 warnings.
22520
22521 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22522
22523         * file-io.c: fix alt dir separator char on unix systems
22524         and cleanup (fixes bug #71214).
22525
22526 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22527
22528         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22529         a call to a remote domain, since the method may be an
22530         interface method in the client domain. This fixes bug #74192.
22531
22532 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22533
22534         * threadpool.c: recv/send are now performed before going back to managed
22535         code to save one transition.
22536
22537 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22538
22539         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22540
22541         * metadata/threadpool.c: removed hack to workaround the bug above.
22542
22543         Fixes bug #74618.
22544
22545 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22546
22547         * reflection.c reflection.h: Fix handling of parameter defaults in
22548         dynamic methods. Also fixes handling of parameter attributes.
22549         Fixes #74609.
22550
22551         * mono-debug.c (mono_debug_close_image): Fix warning.
22552
22553 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22554
22555         * socket-io.h: replaced old unused field with new 'blocking'.
22556         * threadpool.c: restore socket blocking state on windows(tm).
22557
22558 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22559
22560         * icall.c: don't return the codebase in the AssemblyName[] returned by
22561         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22562         * object-internals.h: Removed FIXME (fields were presents) and fixed
22563         versioncompat declaration.
22564
22565 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22566
22567         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22568         not closed, so don't cleanup when it happens.
22569
22570 2005-04-13  Chris Toshok  <toshok@ximian.com>
22571
22572         * mono-debug-debugger.h: change prototype for
22573         mono_debugger_lookup_type.
22574
22575         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22576         this function, although it should probably be named
22577         mono_debugger_init_type.
22578
22579 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22580
22581         * threadpool.c: fix non-AIO case.
22582
22583 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22584
22585         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22586         the built-in profiler to measure just JIT compilation times.
22587
22588 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22589
22590         * threadpool.c: the epollfd might be closed by another thread at
22591         any time, so ignore EBADF at treat it as a "we're closing" sign.
22592
22593 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22594
22595         * threadpool.c: release the semaphores with a count equals to the number
22596         of working threads in both IO and regular pools. Fixed typo that messed
22597         up the count of IO pool threads. Don't initialize the pipe handles if
22598         we're using epoll.
22599
22600 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22601
22602         * threadpool.c: some systems don't like a NULL when deleting the socket
22603         from epoll.
22604
22605 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22606
22607         * threadpool.c: fix semaphore allocation.
22608
22609 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22610
22611         * threadpool.c: added epoll() based implementation for asynchronous IO
22612         that is used instead of the default poll() when available.
22613         It can be disabled by setting MONO_DISABLE_AIO.
22614
22615 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22616
22617         * threadpool.c: windows needs 'closesocket' and instead of returning
22618         0 when the stream is closed while in select, it returns -1. Fixes bug
22619         #74573.
22620
22621 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
22622
22623         * class.c (class_compute_field_layout): Fix the regression caused by
22624         the previous try.
22625
22626 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22627
22628         * threadpool.c: separate pool for socket async. IO.
22629         * threadpool.h: mono_max_worker_threads is not a global any more.
22630
22631 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
22632
22633         * class.c (class_compute_field_layout): Fix #74549.
22634
22635 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22636
22637         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
22638         use 2 connected sockets instead.
22639
22640 2005-04-08  Miguel de Icaza  <miguel@novell.com>
22641
22642         * mono-config.c: Add new entry point for mkbundle
22643         mono_config_parse_memory. 
22644
22645 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22646
22647         * threadpool.c: removed another unused function.
22648
22649 2005-04-08  Ankit Jain  <radical@corewars.org>
22650
22651         * reflection.c (get_default_param_value_blobs): Add 'types'
22652         parameter to get the types encoded in the constant table.
22653         (mono_param_get_objects): Use the type from the constant table,
22654         not the type of the parameter, when creating default values.
22655         Handle null default values correctly.
22656
22657 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22658
22659         * file-io.c:
22660         * file-io.h:
22661         * threadpool.c:
22662         * threadpool.h:
22663         * icall.c:
22664         * socket-io.c: removed dead code for async IO.
22665
22666 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22667
22668         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
22669
22670         * threadpool.c: intercept socket async. calls and pass them to a thread
22671         that is polling and dispatching the job items to the threadpool as
22672         socket become ready. Fixes bugs #71217, #71933.
22673
22674         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
22675         between char and short/ushort arrays.
22676
22677         * socket-io.c: remove dead code.
22678
22679 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22680
22681         * locales.c,
22682           icall.c : removed InternalToUpper_Comp() and
22683           InternalToLower_Comp().
22684
22685 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22686
22687         * char-conversions.h : The tables were incorrectly generated. Should
22688           be generated against invariant culture.
22689
22690 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
22691
22692         * object.c (mono_runtime_invoke_array): Fix return value when 
22693         passing pre-created valuetype objects to ctors.
22694
22695         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
22696         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
22697         Fixes #74338.
22698
22699 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
22700
22701         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
22702         only used with --security and hides the wrong corlib version error.
22703
22704 2005-03-30  Joshua Tauberer  <tauberer@for.net>
22705
22706         * class.c: Changed mono_class_name_from_token so that types
22707         outside of a namespace don't have an initial period.  Improved
22708         the g_warning message used in _mono_class_get when loading
22709         fails.
22710         * assembly.c: In mono_assembly_load_reference, when an assembly
22711         can't be found, "No such file or directory" is misleading and
22712         unhelpful because a few paths were checked for the presence of
22713         the assembly.  When that happens (ENOENT), display a nicer
22714         message indicating the directories that were searched.  In all
22715         cases, the warning is made easier to read for non-hackers.
22716
22717 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
22718
22719         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
22720         project/solution.
22721         * appdomain.h|domain.c: Removed inline from functions.
22722         * appdomain.c: Reduced warnings when compiling on windows.
22723         * icall.c: Fixed output_debug declaration to gunichar2*.
22724         * mono-config.c: Reduced warnings when compiling on windows.
22725         * rand.c: Added missing "windows.h". Added missing return value.
22726         * rawbuffer.c: Added missing winsock2.h for windows.
22727         * sysmath.h: Added mono-compiler.h header to allow/ease 
22728         compilation with non-GCC compilers.
22729         * threads.c: Fixed declarations to compile with VS.NET C compiler.
22730         Removed cast warnings.
22731
22732         Adapted from the work of J Lothian (for VC6).
22733
22734 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
22735
22736         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
22737         from default_path.
22738
22739 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
22740
22741         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
22742         the 2.0 profile.
22743
22744 2005-03-27  Raja R Harinath  <harinath@gmail.com>
22745
22746         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
22747         has to be in $(exec_prefix).  $(prefix) is for arch-independent
22748         stuff, and it would probably use $(prefix)/share rather than
22749         $(prefix)/lib.
22750
22751 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22752
22753         * console-io.c: added 2 includes that might be missing.
22754
22755 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
22756
22757         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
22758         profile.
22759
22760         * reflection.c (create_custom_attr): Allocate the params array using
22761         alloca so it gets GC tracking.
22762
22763 2005-03-23  Chris Toshok  <toshok@ximian.com>
22764
22765         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
22766         out some spew.
22767
22768 2005-03-24  Raja R Harinath  <rharinath@novell.com>
22769
22770         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
22771         changes to pick up any changes in prefix, etc.
22772
22773 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22774
22775         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
22776         
22777         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
22778         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
22779
22780 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22781
22782         * class-internals.h object-internals.h class.c reflection.c: Extend the
22783         mono_lookup_dynamic_token () function to return the class of the
22784         token as well. 
22785
22786         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
22787         well. Fixes #73848.
22788
22789 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
22790
22791         * security-manager.c: Skip inheritance checks for intra-corlib
22792         class inheritance and method overrides. This skips a lot of checks
22793         and (anyway) permissions cannot work until corlib is loaded.
22794
22795 2005-03-23  Martin Baulig  <martin@ximian.com>
22796
22797         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
22798         MONO_TYPE_GENERICINST.  
22799
22800 2005-03-23  Martin Baulig  <martin@ximian.com>
22801
22802         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
22803
22804 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22805
22806         * class.c: added locking comments to some functions.
22807         Cache the interface offsets arrays (saves about 20 KB
22808         of runtime memory in a typical app).
22809         Reduce the time overhead in mono_class_setup_supertypes ().
22810
22811 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
22812
22813         * icall.c: speedup and fix leaks in GetMethodsByName and
22814         GetPropertiesByName.
22815
22816 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22817
22818         * reflection.c: some locking fixes.
22819
22820 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22821
22822         * metadata.c: added missing break in case statement.
22823
22824 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
22825
22826         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22827         typedbyref return values. Fixes #73941.
22828
22829 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
22830
22831         * security-manager.c|h: Added demandunmanaged method and 
22832         suppressunmanagedcodesecurity class to MonoSecurityManager.
22833         Renamed aptc class to allowpartiallytrustedcallers.
22834
22835 2005-03-17  Martin Baulig  <martin@ximian.com>
22836
22837         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
22838
22839 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22840
22841         * file-io.c: disabled file async. IO using aio_*. It uses the
22842         threadpool now. Workaround for bug #73718.
22843
22844 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22845
22846         * assembly.h, mono-config.c: added code to deal with bundled configs
22847         for bundled assemblies.
22848
22849 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
22850
22851         * *.c, private.h: cleanup, removing old private.h header file.
22852
22853 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
22854
22855         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
22856         and throw_on_unmappable_char attributes.
22857
22858 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
22859
22860         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
22861         _ProcessName_internal.
22862
22863 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
22864
22865         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
22866         #73631.
22867
22868         * icall.c threads.c threads-types.h: Remove slothash icalls as they
22869         are no longer used.
22870
22871 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
22872
22873         * object.c (compute_class_bitmap): Add support for generics. Fixes
22874         #73527.
22875
22876 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22877
22878         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
22879
22880 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22881
22882         * filewatcher.c: commented out the code for windows watcher, as we don't
22883         use it (we use the managed implementation instead).
22884
22885 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22886
22887         * object-internals.h (MonoThread): Remove 'unused1' field.
22888
22889         * appdomain.c: Bump corlib version.
22890
22891         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
22892
22893         * reflection.c (mono_reflection_create_runtime_class): Remove the
22894         AssemblyBuilder.Save optimization since it causes too many problems.
22895
22896 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
22897
22898         * exception.c|h: Added mono_get_exception_reflection_type_load to
22899         create a ReflectionTypeLoadException object.
22900         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
22901         to return NULL is a InheritanceDemand fails during reflection. Updated
22902         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
22903         ReflectionTypeLoadException if an InheritanceDemand fails during 
22904         reflection. Added icall mapping for GetLinkDemandSecurity.
22905         * security-manager.c|h: Added ves_icall_System_Security_
22906         SecurityManager_GetLinkDemandSecurity internal call to return the
22907         class and methods permissions set for a LinkDemand. Removed unused
22908         fields in MonoSecurityManager.
22909
22910 2005-03-10  Martin Baulig  <martin@ximian.com>
22911
22912         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
22913         it's a generic instance.
22914
22915 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
22916
22917         * reflection.c (mono_get_object_from_blob): Applied patch from
22918         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
22919
22920         * class.c (mono_class_is_assignable_from): Another try at fixing 
22921         #73469 without breaking anything.
22922
22923 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
22924
22925         * class.c: (mono_class_is_assignable_from): Revert the last changes
22926         since they don't work with generics.
22927         
22928         * class.c (mono_class_is_assignable_from): Fix build bustage.
22929
22930         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
22931         the managed IsAssignableFrom method. Fixes #73469.
22932
22933         * reflection.c (mono_reflection_call_is_assignable_from): New helper
22934         function.
22935
22936 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
22937
22938         * object.c (mono_load_remote_field_new): Fix returning uninitialized
22939         memory when the remoting callback does not sets the out arguments.
22940         Fixes #73007.
22941
22942         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
22943         by mistake.
22944
22945         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
22946
22947         * object-internals.h (MonoStackFrame): Sync with managed object layout.
22948
22949         * appdomain.c: Bump corlib version.
22950
22951 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
22952
22953         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
22954         function.
22955
22956         * threads.c (mono_thread_attach): Detect threads which are not started
22957         by the GC pthread wrappers.
22958
22959 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
22960
22961         * icall.c: Added new icall for RNG.
22962         * rand.c|h: Added new icall to open the RNG. This allows to share a 
22963         single handle on Linux to access /dev/urandom and fix #73183.
22964
22965 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
22966
22967         * object.c: setting the new vtable in a transparent proxy object must
22968         not change the GC descriptor.
22969
22970 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22971
22972         * object.c: fixed compilation without GCJ support.
22973         * reflection.c: for runtime-created types ensure klass->has_references
22974         is correct (bug #73215).
22975
22976 2005-03-02  Martin Baulig  <martin@ximian.com>
22977
22978         * class.c (mono_class_is_assignable_from): Make this work if
22979         `oklass' is a generic instance; fixes #72831.
22980
22981 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22982
22983         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
22984         with hasthis set.
22985         
22986         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
22987
22988         * marshal.c: Reorganize native->managed marshalling code to also use
22989         the emit_marshal_... functions.
22990
22991 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22992
22993         * object.c: typed allocs have issues with bitmap sizes > 30,
22994         so check for max_set >= 30.
22995
22996 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22997
22998         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
22999         managed code. Fixes #73012.
23000
23001         * metadata.h (MonoMarshalSpec): Add elem_mult field.
23002
23003         * metadata.c reflection.c: Load/Emit elem_mult as well.
23004         
23005         * metadata.h (MonoMarshalSpec): Add comment.
23006
23007         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
23008
23009         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
23010         num_elem to -1 if not given.
23011
23012         * object-internals.h (MonoReflectionMarshal): Add has_size field.
23013
23014         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
23015         given values.
23016
23017 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
23018
23019         * null-gc.c (mono_gc_free_fixed): Was not compilable.
23020
23021 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
23022
23023         * reflection.c (encode_marshal_blob): Encode param_num field as well.
23024
23025         * object-internals.h (MonoReflectionMarshal): Add param_num field.
23026
23027 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23028
23029         * object.c: generalized the reference bitmap creation
23030         and added hooks for the new GC.
23031         * class-internals.c: removed the gc_bitmap field from MonoClass.
23032
23033 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23034
23035         * domain.c: help the compiler to produce better code
23036         in mono_jit_info_table_find ().
23037
23038 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23039
23040         * object.c: make all allocations look typed.
23041
23042 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23043
23044         * socket-io.c: load Mono.Posix if it's not loaded already
23045         (fixes bug#73033).
23046
23047 2005-02-24  Martin Baulig  <martin@ximian.com>
23048
23049         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
23050         * reflection.c (dup_type): Likewise.
23051
23052 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
23053
23054         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
23055         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
23056
23057 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23058
23059         * domain.c, threads.c, object-internals.h: make the critical thread
23060         local vars use the fast access mode (even when we're compiled in
23061         a lib). Provide accessors to be used by the jit during codegen.
23062
23063 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23064
23065         * appdomain.c: Changed hook functios behavior to include
23066         support for the reflection only assemblies. Some icalls were changed
23067         to support the mentioned assemblies too. Signatures of static methods
23068         try_assembly_resolve and real_load now have an additional parameter:
23069         refonly.
23070
23071         * assembly.c: General changes to mono_assembly_ methods to support
23072         reflection only api. Functions mono_assembly_open, mono_assembly_load,
23073         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
23074         suffix, to support an additional gbool parameter to specify whether
23075         the assembli is reflection only or not. Created some new hook functions 
23076         to add support for reflection only assemblies. Signatures of static 
23077         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
23078         have now an additional parameter: refonly.
23079
23080         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23081         indicating whether the assembly is reflection only or not.
23082
23083         * exception.c: Add mono_get_exception_invalid_operation.
23084
23085         * icall.c: Throw an InvalidOperationException when trying to invoke
23086         a property/method/event, or trying to set/get the value of a field.
23087         Also add an icall to retrieve the ref_only flag to the
23088         MonoReflectionAssembly.
23089
23090 2005-02-23  Chris Toshok  <toshok@ximian.com>
23091
23092         Part of fix for #72827.
23093         * mono-debug.c (mono_debug_add_method): add lexical block data to
23094         the info we write.  Kind of a hack at the moment - we copy the
23095         lexical block info from the MonoDebugMethodInfo to the
23096         MonoDebugMethodJitInfo here, before writing it.
23097         (mono_debug_read_method): read the lexical block info.
23098
23099         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23100
23101         * debug-mono-symfile.h: add lexical block support.
23102
23103         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23104         support.
23105
23106 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23107
23108         * loader.c (mono_lookup_pinvoke_call): Fix warning.
23109
23110         * object.c (mono_runtime_free_method): Call mono_free_method () and
23111         put the TODOs there.
23112
23113         * loader.c (mono_free_method): Free up most memory allocated for 
23114         dynamic methods.
23115
23116 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23117
23118         * reflection.c: properly flag a Type argument to a
23119         named custom attr value (bug #72248).
23120
23121 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23122
23123         * reflection.c: reduce code duplication in named custom
23124         attribute encoding.
23125
23126 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23127
23128         * reflection.c: properly encode custom attrs of type object
23129         (bug #72649).
23130
23131 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23132
23133         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23134
23135 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23136
23137         * socket-io.c: load System.dll if it's not loaded already
23138         (bug #72850 and #70477).
23139
23140 2005-02-21  Martin Baulig  <martin@ximian.com>
23141
23142         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23143         generic instances.
23144
23145 2005-02-21  Martin Baulig  <martin@ximian.com>
23146
23147         * reflection.c (mono_image_build_metadata): We also need to
23148         "fixup" the MethodImpl table after we computed the final method
23149         indices.  Call fixup_methodimpl() to do that.
23150         (fixup_methodimpl): New private method.
23151
23152 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23153
23154         * assembly.c: special case mscorlib.dll (bug#72536),
23155         patch from Carlos Alberto Cortez.
23156
23157 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
23158
23159         * threads-types.h threads.c: Fix build bustage.
23160
23161         * threads.c: Use a union for long<->double conversions.
23162
23163         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23164         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23165
23166         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
23167         containing the checkpoint call with NOT_TAKEN.
23168         
23169         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
23170         checkpoint before pushing the arguments, so they won't have to be
23171         spilled to stack.
23172
23173 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23174
23175         * domain.c, assembly.c, domain-internals.h: make some data
23176         const and relocation-free.
23177
23178 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23179
23180         * object.c, appdomain.c, class-internals.h: introduce the
23181         MonoClassRuntimeInfo structure to hold the info needed to
23182         use a class at runtime. Made mono_class_vtable() lock-free
23183         for all the appdomains.
23184
23185 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
23186
23187         * metadata-internals.h, image.c: introduce a per-image mempool to
23188         be used for memory that has the same lifetime as the image.
23189
23190 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
23191
23192         * domain.c: In mono_init_internal(), instead of selecting the first
23193         runtime version supported by an executable, get a list of all
23194         supported versions and select the one for which an mscorlib exists
23195         (since even if the runtime supports a given version, it doesn't mean
23196         that the framework for that version is installed).
23197         Modified get_runtimes_from_exe to support this behavior.
23198         In supported_runtimes, added information about additional system
23199         assembly versions.
23200         
23201         * assembly.c: Added support for more than one system assembly version
23202         per runtime version. Updated the assembly list.
23203         In mono_assembly_remap_version, removed the initial version check,
23204         since we don't know to which version we need to compare until we
23205         get the version set on which the assembly is based.
23206         Moved the code for loading corlib into the new method
23207         mono_assembly_load_corlib(), so it can be used by the initialization
23208         code.
23209         
23210         * domain-internals.h: Updated data structures and added declaration
23211         for mono_assembly_load_corlib.
23212
23213 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23214
23215         * reflection.c (resolve_object): Fix the creation of the signature in 
23216         the SignatureHelper case.
23217
23218         * assembly.c (mono_assembly_remap_version): Fix binary search.
23219         
23220 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
23221  
23222         * class.c: Added inheritance check when a method is overloaded (from a
23223         virtual method or when implementing an interface) and when a class is
23224         inherited. Added functions to set a failure for a class and to 
23225         retreive the exception from a failure.
23226         * class-internals.h: Added fields to MonoClass to keep the exception
23227         information status for inheritance (or other exceptions) to be thrown
23228         later (i.e. not at load time).
23229         * object.c: Throw the inheritance SecurityException when a type is to 
23230         be created with either class or method inheritance violations.
23231         * reflection.c|h: Fix when getting declsec from a class. Removed 
23232         unrequired code for class. Improved sanity in parameter naming.
23233         * security-manager.c|h: Added functions to check for class and method
23234         inheritance.
23235
23236 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23237
23238         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
23239         and has_finalize in dynamic types as well.
23240
23241 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
23242
23243         * culture-info-table.h : fixed currency format for en-GB (and so on).
23244
23245 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
23246
23247         * gc.c: ensure the GC handles never have 0 as a value.
23248
23249 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23250
23251         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
23252         a pointer to a struct to unmanaged code. Fixes #72625.
23253
23254 2005-02-16  Martin Baulig  <martin@ximian.com>
23255
23256         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
23257
23258 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23259
23260         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
23261
23262 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23263
23264         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
23265
23266         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
23267         UnmanagedFunctionPointerAttribute, use it for determining calling convention
23268         etc. Fixes #71471.
23269
23270         * reflection.c (mono_custom_attrs_get_attr): New helper function.
23271
23272         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
23273
23274 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
23275
23276         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
23277         changes to make the current context a field in MonoThread.
23278
23279 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23280
23281         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
23282         the last change.
23283         
23284         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
23285         extracted from mono_marshal_get_native_wrapper.
23286
23287         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
23288         to create wrappers around native functions.
23289
23290         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
23291         delegates for arbitrary function pointers. Fixes #71472.
23292
23293 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23294
23295         * threads.c: cleaned up the code a little.
23296
23297 2005-02-15  Martin Baulig  <martin@ximian.com>
23298
23299         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
23300         the data table.
23301
23302         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
23303         allocate larger chunks if needed.
23304
23305 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23306
23307         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
23308         in by mistake.
23309
23310 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
23311
23312         * domain.c: keep the domains in an array and ensure the domain ids
23313         are kept small, so they can be used as indexes to domain-specific data
23314         with a small memory overhead.
23315
23316 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23317
23318         * icall.c: Handle byref types in Type icalls. Fixes #72544.
23319
23320 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23321
23322         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23323
23324 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
23325
23326         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23327
23328         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23329         values.
23330
23331         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23332         
23333 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
23334
23335         * domain-internals.h: add the hashtable here.
23336
23337         * class-internals.h: Remove `info' from MonoMethod
23338
23339         * domain.c: Add a new hashtable, jit_trampoline_hash
23340
23341 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23342
23343         * object.c: don't set the value of static fields
23344         (fixes bug#72494).
23345
23346 2005-02-11  Martin Baulig  <martin@ximian.com>
23347
23348         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23349         (mono_debug_add_method): Silently ignore the method if it's too big.
23350         (mono_debug_add_type): Likewise.
23351
23352 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23353
23354         * threads.c, appdomain.c: remove #ifdefs from the code.
23355
23356 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
23357
23358         * metadata-internals.h: Added flags to MonoAssembly to cache the most
23359         common security informations. This allows us to stay in unmanaged code
23360         when doing LinkDemand and it's special cases (except for the first 
23361         time for initialization). The flags a very much used with --security.
23362         * reflection.c|h: Added code to get declarative security attributes 
23363         for LinkDemand and InheritanceDemand. This required to refactor the
23364         existing code for Demand.
23365         * security-manager.c|h: Added new method fields for the special cases
23366         of LinkDemand.
23367
23368 2005-02-10  Martin Baulig  <martin@ximian.com>
23369
23370         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23371         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23372
23373 2005-02-10  Martin Baulig  <martin@ximian.com>
23374
23375         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23376         debugging code; this is almost a complete rewrite.
23377
23378         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23379
23380 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23381
23382         * domain.c, object.h: expose mono_string_equal () and 
23383         mono_string_hash ().
23384         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23385         it's implemented in managed code.
23386
23387 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23388
23389         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23390         lo leak objects between appdomains.
23391
23392 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23393
23394         * assembly.c: old compilers compilation fix from 
23395         robertj@gmx.net (Robert Jordan).
23396
23397 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23398
23399         * class-internals.h: Little reminder for the future.
23400
23401         * debug-helpers.c: Fix up wrapper_type_names
23402
23403 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23404
23405         * image.c, metadata-internals.h: when loading an image from a file,
23406         mmap all of it and use the same codepaths as when using a
23407         in-memory image: the code is simpler and we use less memory
23408         (both writable and readonly).
23409
23410 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23411
23412         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23413         API to alloc runtime data structures that need to be tracked by the
23414         GC and contain pointers.
23415         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23416         make the code more readable and eventually use a different GC.
23417
23418 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23419
23420         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23421         for out arguments.
23422         
23423 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23424
23425         * object.c: In release_type_locks(), don't release the cctor lock
23426         if it has already been released. This fixes a crash in the
23427         thread5 test.
23428
23429 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23430
23431         * gc.c, marshal.c, icall.c: register a delegate for finalization
23432         only when the native function pointer has been allocated for it.
23433
23434 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23435
23436         * object.c: cleaned up some code, allocate objects that are
23437         pointer free with the atomic malloc variant. Allocate memory
23438         for static data from the mempool if it's pointer-free.
23439         Allocate the bounds array at the end of the array data, when needed.
23440         * object-internals.h, object.h: move a private function in a private
23441         header.
23442         * class.c: handle missing case in tracking references in fields.
23443
23444 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23445
23446         * class.c, class-internals.h: keep track if a type has
23447         reference fields in either the instance or static fields.
23448
23449 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23450
23451         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23452         and renamed to MonoRuntimeInfo. Added fields to store the expected
23453         framework assembly version. Changed mono_get_framework_version and
23454         mono_get_runtime_version for a single mono_get_runtime_info method.
23455         
23456         * assembly.c: Added method to remap system assembly versions to the
23457         current executing runtime version. Removed old mapping code.
23458         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23459         
23460         * icall.c, reflection.c: Track api changes.
23461
23462 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23463
23464         * loader.c (method_from_memberref): Improve error reporting,
23465         produce the class name instead of the typeref/typedef index. 
23466
23467 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23468
23469         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23470
23471 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23472
23473         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23474         stdcall and charset name mangling.  Reorganize the code and add
23475         some tracing stuff.
23476
23477 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23478
23479         * monodiet.c: More iters!
23480
23481         * marshal.c: Iter usage.
23482
23483         * icall.c: Iter usage.
23484
23485         * object.c: Use iters.
23486
23487         * debug-helpers.c: More iters
23488
23489 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23490
23491         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23492         under win32.
23493
23494 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23495
23496         * mono-debug-debugger.c: use iters
23497
23498         * class.c, class-internals.h: mono_class_setup_events is static
23499         now
23500
23501         * All callers: use iters
23502
23503 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23504
23505         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23506         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23507
23508 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23509
23510         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23511
23512         * marshal.h: Add prototypes for ldfld/stfld_remote.
23513
23514         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23515         this is called during startup.
23516         
23517 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23518
23519         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23520         MonoThreadsSync struct private in monitor.c. Changed the way
23521         MonoThreadsSync is allocated so it's faster and there is no
23522         need to keep track of it with a finalizer and it uses less memory.
23523         This also finally allows us to allocate mono objects as ptrfree when
23524         there are no reference fields.
23525
23526 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23527
23528         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23529         disappearing link to the GC interface and use them to simplify
23530         the gchandles code.
23531
23532 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23533
23534         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23535         stfld_remote which call mono_load/store_field_new. This allows methods
23536         calling ldfld/stfld wrappers to be AOTed.
23537
23538         * console-io.c: Include sys/filio.h under solaris.
23539         
23540         * console-io.c: Include curses.h if needed correctly.
23541
23542 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23543         
23544         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23545         method->klass as well.
23546
23547         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23548
23549         * class.c (mono_class_init): Switch on lazy initialization of 
23550         methods.
23551
23552         * class.c (mono_class_get_finalizer): Handle the case when the 
23553         finalizer is inherited.
23554
23555 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23556
23557         * console-io.c: <curses.h> is needed by term.h on solaris.
23558
23559 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23560
23561         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23562         mono_class_setup_properties where possible. Remove this ftn from
23563         the header file, and make it static.
23564
23565 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23566
23567         * loader.c: Add missing setup_... call.
23568
23569         * class.c: Add missing setup_... calls.
23570
23571         * class.c (mono_class_init): Switch on lazy initialization of 
23572         the generic vtable.
23573         
23574         * class.c (mono_class_init): Fix generics broken by the recent changes.
23575
23576         * monodiet.c (handle_type): Add missing setup_... calls.
23577
23578         * class.c: Back out garbage in previous patch.
23579         
23580         * class.c: Add missing setup_... calls.
23581
23582         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23583         mono_class_setup_methods () if possible.
23584
23585         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23586
23587         * class-internals.h (MonoCachedClassInfo): New structure.
23588
23589         * class.c: Initialize properties and events fields of MonoClass lazily.
23590
23591         * class.c: Add infrastructure for lazily initializing the methods and
23592         vtable fields of MonoClass. Not yet used.
23593
23594         * class.c (mono_class_get_finalizer): New helper function.
23595
23596         * class.c: Add infrastructure for loading some class related data from
23597         an AOT file.
23598
23599         * object.c: Add infrastructure for initializing the vtable from data
23600         in the AOT file.
23601
23602         * gc.c (run_finalize): Use mono_class_get_finalizer ().
23603
23604         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
23605         appropriate initialization function before accessing parts of the
23606         MonoClass structure.
23607
23608         * marshal.c: Fix warnings.
23609         
23610         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
23611
23612         * mono-debug-debugger.c (get_exception_message): Use 
23613         mono_class_get_method_from_name_flags ().
23614
23615 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
23616
23617         * reflection.c, appdomain.c: Replace a few manual searches that
23618         Zoltan missed. (Paolo approved this part of my initial patch).
23619
23620 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
23621
23622         * profiler.c: disable recording statistical events at report time.
23623
23624 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23625
23626         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
23627         to byteswap arrays of enum values, too (bug #72080).
23628
23629 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
23630
23631         * appdomain.c (set_domain_search_path): Allow this to be called if
23632         domain->setup is not yet set.
23633
23634         * loader.c (mono_method_get_index): New helper function.
23635
23636         * loader.c reflection.c: Use mono_method_get_index ().
23637
23638         * class.c (mono_class_get_method_from_name_flags): New helper method.
23639
23640         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
23641         this.
23642
23643         * class.c (mono_class_get_cctor): New helper method.
23644
23645         * string-icalls.c object.c class.c marshal.c reflection.c: Use
23646         mono_class_get_method () to look up methods.
23647
23648 2005-02-01  Miguel de Icaza  <miguel@novell.com>
23649
23650         * console-io.c: Fix the build, this should work on Windows.
23651
23652 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
23653
23654         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
23655         be set to null to keep things valid
23656
23657 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23658
23659         * icall.c: added Console 2.0 icalls.
23660         * Makefile.am: added console-io.[ch]
23661         * console-io.[ch]: internal calls for Console 2.0 API.
23662
23663 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23664
23665         * class.c: make sure we consider all the interfaces
23666         when calculating max_interface_id (bug found by
23667         Jeroen Frijters running ikvm).
23668
23669 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
23670
23671         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
23672         valuetype fields to null.
23673
23674         * object.c (set_value): Ditto. Fixes #71669.    
23675
23676 2005-01-31  Martin Baulig  <martin@ximian.com>
23677
23678         * metadata.c (mono_metadata_has_generic_params): New public
23679         function; checks whether something is a generic method.
23680
23681 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
23682
23683         * appdomain.c: fix infinite recursion when adding assemblies.
23684
23685 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
23686
23687         * object.c: Fix small typo to return all items for Environment.
23688         GetCommandLineArgs.
23689
23690 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23691
23692         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
23693         reflection.c: more domain and assembly-unload related fixes
23694         and memory leaks plugs.
23695
23696 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
23697
23698         * 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.
23699
23700 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
23701
23702         * loader.c (mono_method_signature): Make this method lazy
23703         (mono_get_method_from_token): Don't computate the signature here.
23704
23705         Doing this saves quite a bit of memory. I got 90 kb on starting up
23706         monodoc. It should also save some disk reads on startup.
23707
23708         * *: MonoMethod->signature might be NULL now. You *MUST* use
23709         mono_method_signature.
23710
23711 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
23712
23713         * object.c (mono_runtime_get_main_args): Return an array from the
23714         current domain here. Fixes #71938.
23715
23716 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
23717
23718         * monitor.c: formatting changes to comply with the
23719         mono coding style and remove #ifdefs from the code.
23720
23721 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23722
23723         * metadata.c, private.h: remove some unneeded data
23724         and use a more compact representation for table schemas.
23725
23726 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
23727
23728         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
23729         to get a better distribution in hash tables.
23730         * *.c: use mono_aligned_addr_hash() where appropriate.
23731         * assembly.c: make var static.
23732
23733 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
23734
23735         * domain-internals.h: Put MonoJitInfo on a diet.
23736
23737         * domain.c: Fix a warning.
23738
23739 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23740
23741         * gc.c: rework the gc handles code to reuse handles
23742         when freed.
23743
23744 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23745
23746         * domain.c: fixed long standing bug in mono_string_equal() which
23747         was brought to light with the ldstr changes.
23748
23749 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
23750
23751         * reflection.c: Remove warning by adding missing include for marshal.h
23752
23753 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23754
23755         * domain.c, object.c: change the ldstr_table to hold
23756         MonoString* as keys: makes the runtime isinterned lookup
23757         faster and simplifies memory management.
23758
23759 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
23760  
23761         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
23762         possible to add imperative security checks before calling the icall.
23763         * reflection.c: Return security attributes on the original MonoMethod
23764         (and not the wrapped one). This fix permissions on icalls.
23765
23766 2005-01-25  Dick Porter  <dick@ximian.com>
23767
23768         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
23769         the check for mktime() support actually test the mktime() return
23770         value.  "Fixes" bug 71682, though the output is still different to
23771         MS.
23772
23773 2005-01-25  Martin Baulig  <martin@ximian.com>
23774
23775         * class.c (mono_class_is_assignable_from): Make this work for
23776         generic instances.
23777
23778 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
23779
23780         * marshal.c (mono_string_utf8_to_builder)
23781         (mono_string_builder_to_utf16): We might not have ownership of the
23782         string. In thise case, we need to create a new buffer.
23783
23784         * object-internals.h (mono_stringbuilder_capacity): sb->str might
23785         be null, in which case, use the default capacity.
23786
23787 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23788
23789         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
23790         GC events to the profiler.
23791
23792 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23793
23794         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
23795         if you don't want the GC to run.
23796
23797 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
23798
23799         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
23800         start providing a GC API and keeping different implementations in
23801         their own file.
23802         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
23803
23804 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
23805
23806         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
23807         mmap rather than allocating a huge buffer.
23808         (mono_debug_close_mono_symbol_file): Free the buffer allocated
23809         above.
23810
23811 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
23812
23813         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
23814         and CheckExecutionRights.
23815         * reflection.c|h: Keep the index of the declarative security to be 
23816         used, instead of the pointer, when AOT compiler is used. Also add 
23817         class initialization when requesting demands.
23818         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
23819         CheckExecutionRights. Both properties are now FALSE by default, and
23820         unmodifiable, unless the --security option is used.
23821
23822 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23823
23824         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
23825         reflection.c: properly refcount images and assemblies, many leaks fixed.
23826
23827 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23828
23829         * threadpool.c: increase the timeout for threads in the thread pool to
23830         10s.  Fixes bug #67159.
23831
23832 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23833
23834         * class-internals.h: Sun's compiler insists on explicit
23835         signed on bit fields to handle then correctly.
23836
23837 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
23838
23839         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
23840         Make the size of the array fit only the number of invalid path
23841         chars that we have.
23842
23843         * class.c (_mono_class_get): Improve the error reporting when a
23844         class referenced is not found, to assist debugging. 
23845
23846 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
23847
23848         * threads.c: fix off-by-one error.
23849         * domain.c: free data allocated in the domain.
23850
23851 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23852
23853         * reflection.c (mono_method_body_get_object): Fill out exception info
23854         as well.
23855
23856         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
23857         structure.
23858         
23859 2005-01-19  Martin Baulig  <martin@ximian.com>
23860
23861         * loader.c (mono_get_method_constrained): Make this work again.
23862
23863 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23864
23865         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
23866         guint16 to match the managed side.
23867
23868         * reflection.c (mono_reflection_body_get_object): Fill out local
23869         variables array.
23870
23871         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
23872         as well.
23873
23874         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
23875         'local_var_sig_token'.
23876
23877 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
23878
23879         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
23880         System.Drawing.
23881
23882         * reflection.c (mono_method_body_get_object): Handle abstract and
23883         runtime methods.
23884
23885 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
23886
23887         * marshal.c, loader.c, class-internals.h, reflection.c:
23888         store the emthod data for a wrapper in an array instead of a list.
23889
23890 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
23891
23892         * marshal.c: change the code to allocate memory more
23893         conservatively for method wrappers.
23894
23895 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
23896
23897         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
23898         fields from MonoClass to the marshal info structure where they belong.
23899
23900 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23901
23902         * class.c, object.c, class-internals.h, marshal.c: rearrange
23903         some fields and tweak some types to lower memory usage.
23904
23905 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
23906
23907         * threads.c (signal_thread_state_change): Handle the case when the
23908         target thread is the current thread.
23909
23910         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
23911
23912         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
23913         emit_ptr_to_object_conv. 
23914
23915         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
23916         marshalling. Fixes #71352.
23917
23918 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23919
23920         * metadata.h, blob.h: move table enum to blob.h so it can be included
23921         in any header.
23922         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
23923         cut the size of MonoImage/MonoDynamicImage.
23924
23925 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
23926
23927         * profiler.c (mono_profiler_install_simple): Fix default arguments.
23928
23929 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
23930
23931         * reflection.c, reflection.h, icall.c: add a function to check
23932         if an attribute type is defined for a metadata object.
23933
23934 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
23935
23936         * object-internals.h: Added some needed fields from StringBuilder class.
23937         * marshal.c: Set the maxCapacity when creating a StringBuilder.
23938
23939 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
23940
23941         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
23942         threads before shutting down the runtime.
23943
23944         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
23945
23946 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23947
23948         * object-internal.h, threads.c: implement stacksize and 
23949         parameterized thread start functionality (requires
23950         matching corlib). Marked broken code for later removal.
23951
23952 2005-01-12  Martin Baulig  <martin@ximian.com>
23953
23954         * class-internals.h (MonoGenericClass): Moved the `initialized'
23955         flag to MonoDynamicGenericClass, removed `init_pending'.
23956         (MonoGenericInst): Added `is_reference' flag.
23957
23958 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
23959
23960         * reflection.c (mono_image_create_pefile): Only set the pe_offset
23961         inside the MSDOS header. Fixes #71201.
23962
23963         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
23964         gc thread.
23965         (mono_domain_finalize): Ditto.
23966
23967 2005-01-12  Martin Baulig  <martin@ximian.com>
23968
23969         * class.c (mono_get_shared_generic_class): Use the cache for
23970         non-dynamic generic classes.
23971
23972         * class-internals.h (mono_class_create_generic_2): Removed
23973         function prototype, this function is now static inside class.c.
23974
23975         * class.c (mono_class_create_generic_2): Made this static, only
23976         call it from mono_class_init() and mono_class_setup_parent().
23977         (collect_implemented_interfaces_aux): Call mono_class_init() on
23978         the interfaces we collect.
23979         (mono_class_setup_vtable): Call mono_class_init (class->parent).
23980
23981 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23982
23983         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
23984         it a real thread handle.
23985
23986         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
23987         MonoJitExceptionInfo, since each catch clause needs its own variable.
23988         
23989 2005-01-11  Dick Porter  <dick@ximian.com>
23990
23991         * image.c (mono_pe_file_open): New variant on mono_image_open()
23992         that does not set up the CLI metadata; used for FileVersionInfo so
23993         it can get the data for windows binaries too.
23994         
23995         * process.c (process_read_string_block): Don't read off the end of
23996         the StringTable block.
23997
23998         These both fix bug 70766.
23999
24000 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
24001
24002         * gc.c: set some fields to NULL at GC cleanup time.
24003         * threads.c: if we quit the main thread, call exit ().
24004
24005 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24006
24007         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
24008
24009 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
24010
24011         * threads.h, threads.c, object.c: added accessor and settor for
24012         main_thread. Handle it specially when exiting from it: wait
24013         for other foreground threads to exit.
24014
24015 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
24016
24017         * process.c, verify.c: remove some bloat.
24018
24019 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
24020
24021         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
24022         the calling convention to cdecl under win32.
24023
24024 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
24025
24026         * object.c (mono_object_get_size): New function to get the size of
24027         an object instance.
24028
24029         * profiler.c (simple_allocation): Use above.
24030
24031 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
24032
24033         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
24034         ves_icall_System_AppDomain_getRootDomain (as it's not required to
24035         get an appdomain by it's id and we can't assume the root's id is 0).
24036         * domain-internals.h: Change the function prototype to match.
24037         * icall.c: Change the icall table for AppDomain.
24038
24039 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
24040
24041         * locales.c (string_invariant_compare_char): Only compute
24042         GUnicodeTypes in the case where we need them.  Test for ordinality
24043         first and return if so.
24044
24045         From the commit:
24046
24047                 /*
24048                  * FIXME: here we must use the information from c1type and c2type
24049                  * to find out the proper collation, even on the InvariantCulture, the
24050                  * sorting is not done by computing the unicode values, but their
24051                  * actual sort order.
24052                  */
24053
24054 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24055
24056         * loader.c: for P/Invoke methods, allow the "Internal" shared
24057         library name to refer to the calling process symbol namespace.
24058
24059 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
24060
24061         * Makefile.am: Add the security manager to the build.
24062         * security-manager.c|h: New. Initialization of the security manager.
24063
24064 2005-01-07  Dick Porter  <dick@ximian.com>
24065
24066         * threads.c: 
24067         * monitor.c: Update thread state during Monitor and WaitHandle
24068         waits.  Fixes bug 71031.
24069
24070 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
24071
24072         * reflection.c (property_encode_signature): Correctly handle when the
24073         property has no methods.
24074
24075 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
24076
24077         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24078         
24079         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24080         fields from mb, not rmb. Fixes #71017.
24081
24082         * marshal.c (emit_ptr_to_str_conv): Add support for 
24083         ByValTStr -> string conversion. Fixes #71015.
24084
24085         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24086
24087         * mempool.c (mono_mempool_contains_addr): New helper function.
24088
24089 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24090
24091         * metadata.c (mono_metadata_compute_size): Fix size calculation of
24092         HasSematics encoded fields.
24093         
24094         * metadata.c (mono_type_to_unmanaged): Improve error message for 
24095         invalid string marshalling.
24096
24097         * metadata.c: Fix warnings.
24098         
24099 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24100
24101         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24102         profiler support.
24103
24104 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24105
24106         * domain.c object.c domain-internals.h: Revert part of r38077 since the
24107         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24108         tests.
24109
24110 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
24111
24112         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24113         so methods containing these can be AOTed.
24114
24115 2005-01-03  Martin Baulig  <martin@ximian.com>
24116
24117         * loader.c (find_method): Removed the hack for generic instances.
24118         (method_from_memberref): If our parent is a generic instance, pass
24119         its generic type definition to find_method() and then inflate the
24120         method.
24121         (mono_get_method_constrained): Pass the generic type definition to
24122         find_method() and inflate the method later.
24123
24124         * class-internals.h (MonoStats): Added `generic_class_count'.
24125
24126         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24127         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24128
24129         * reflection.c (mono_custom_attrs_from_params): Don't ignore
24130         generic type definitions.
24131
24132 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
24133
24134         * loader.c icall.c: Fix warnings.
24135
24136 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
24137
24138         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24139         blittable types. Fixes #70864.
24140
24141 2004-12-29  Martin Baulig  <martin@ximian.com>
24142
24143         * icall.c
24144         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24145
24146         * reflection.c (mono_method_get_object): Create a
24147         "System.Reflection.MonoGenericMethod" for inflated methods; don't
24148         call mono_get_inflated_method().
24149
24150         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24151
24152 2004-12-27  Martin Baulig  <martin@ximian.com>
24153
24154         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24155         (MonoMethodInflated): Added `inflated' field.
24156
24157         * class.c (mono_class_inflate_generic_method): Don't really
24158         inflate the method here; just set the `is_inflated' flag in the
24159         MonoMethod.
24160         (mono_class_get_inflated_method): Actually inflate the method here
24161         if it's not already inflated; we use the MonoMethodInflated's new
24162         `inflated' field as a cache.
24163
24164 2004-12-26  Martin Baulig  <martin@ximian.com>
24165
24166         * class.c
24167         (inflate_generic_class): Moved some code out of inflate_generic_type().
24168         (mono_class_inflate_generic_method): If we're already inflated,
24169         inflate the context and use the declaring method; ie. make sure
24170         the declaring method of an inflated method is always the generic
24171         method definition.
24172         (mono_class_create_from_typedef): Create
24173         `class->generic_container->context->gclass'.
24174
24175 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
24176
24177         * metadata-internals.h, marshal.c, reflection.c: More
24178         MonoGHashTable->GHashTable.
24179
24180         * domain-internals.h, class.c: Change MonoGHashTable's into
24181         GHashTables for some cases where no gc stuff is used
24182
24183         All users: update apis
24184
24185 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
24186
24187         * metadata.c (builtin_types): Make this `const'. Makes this get
24188         put into the shareable section.
24189         (mono_metadata_init): Casts to make gcc happy.
24190
24191 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
24192
24193         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
24194
24195 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
24196
24197         * icall.c: Added an internal call to retrieve the position and length
24198         of assembly-level declarative security attributes (RequestMinimum, 
24199         RequestOptional and RequestRefuse). This is used by the Assembly class
24200         to re-create the corresponding permission sets.
24201
24202 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
24203
24204         * marshal.c: fix the stelemref wrapper to be type correct
24205         (and faster).
24206
24207 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
24208
24209         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
24210         to do key & 0x7fffffff. Hashtable already does this. It just
24211         results in longer code.
24212
24213 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
24214
24215         * appdomain.c: Bump corlib version.
24216         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
24217         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
24218         * reflection.c|h: Add functions to get declarative security infos
24219         (blob position and length) for assemblies, classes and methods.
24220
24221 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
24222
24223         * reflection.c: sort the constant table (bug #70693).
24224
24225 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
24226
24227         * object-internals.h, threads.c, domain.c: add accessors for
24228         the MonoThread and MonoDomain tls keys.
24229
24230 2004-12-18  Martin Baulig  <martin@ximian.com>
24231
24232         * class.c (inflate_generic_type): If we're inflating a generic
24233         instance, set `ngclass->context->container = context->container';
24234         ie. the container we inflated into.
24235
24236         * metadata.c (mono_metadata_parse_generic_param): Reflect above
24237         inflate_generic_type() changes.
24238
24239 2004-12-17  Martin Baulig  <martin@ximian.com>
24240
24241         * class-internals.h
24242         (MonoGenericClass): Replaced `MonoType *generic_type' with
24243         `MonoClass *generic_class'.  Removed `dynamic_info'; if
24244         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
24245         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
24246
24247 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
24248
24249         * exception.c (mono_exception_from_token): New helper function.
24250
24251 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
24252
24253         * assembly.c (mono_assembly_load_with_partial_name): Call 
24254         mono_assembly_loaded before invoking the preload hooks. Fixes
24255         #70564.
24256
24257         * object-internals.h (MonoThread): Change culture_info and 
24258         ui_culture_info into an array.
24259
24260         * threads.c: Cache culture info objects from more than one appdomain.
24261
24262         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
24263         current UI culture.
24264
24265 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
24266
24267         * threads.h threads.c appdomain.c: Clear the culture_info field of
24268         all threads during unloading if they point to an object in the dying
24269         appdomain.
24270
24271 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
24272
24273         * culture-info.h (TextInfoEntry): New struct
24274         * object-internals.h: sync with managed
24275         * locales.c: fill the `text_info_data' field
24276         * culture-info-tables.h: update
24277
24278 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24279
24280         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
24281         collector.
24282
24283 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
24284
24285         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
24286         (ves_icall_ModuleBuilder_getMethodToken): Ditto
24287
24288 2004-12-12  Martin Baulig  <martin@ximian.com>
24289
24290         * mono-debug-debugger.c (write_type): If we're an enum and the
24291         builtin types have already been initialized, call mono_class_init().
24292
24293 2004-12-11  Martin Baulig  <martin@ximian.com>
24294
24295         * metadata.c (mono_metadata_load_generic_params): Added
24296         `MonoGenericContainer *parent_container' argument; automatically
24297         compute `container->is_method'; pass the correct owner to
24298         get_constraints().      
24299
24300         * reflection.c (compare_genericparam): Sort the GenericParam table
24301         according to increasing owners. 
24302
24303 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
24304
24305         * profiler.c: allow disabling the default profiler.
24306
24307 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
24308
24309         * decimal.c, icall.c: allow disabling System.Decimal support.
24310
24311 2004-12-09  Marek Safar <marek.safar@seznam.cz>
24312
24313         * reflection.c: Add support for null attribute arguments.
24314
24315 2004-12-09  Martin Baulig  <martin@ximian.com>
24316
24317         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
24318         names to get rid of compiler warnings.
24319
24320 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24321
24322         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
24323         mono_marshal_load_type_info (). Fixes #69625.
24324         (mono_marshal_get_ptr_to_struct): Likewise.
24325
24326 2004-12-08  Martin Baulig  <martin@ximian.com>
24327
24328         * mono-debug.h: Bumped version number to 47.
24329
24330         * mono-debug-debugger.c
24331         (mono_debugger_event_handler, mono_debugger_event): Take two
24332         guint64 arguments insteed of a gpointer and a guint32.  
24333
24334 2004-12-08  Martin Baulig  <martin@ximian.com>
24335
24336         * debug-mono-symfile.h
24337         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24338         `address' to `native_offset'.
24339
24340 2004-12-08  Martin Baulig  <martin@ximian.com>
24341
24342         * class.c (mono_class_create_from_typespec): Only inflate if we
24343         either have `context->gclass' or `context->gmethod'.
24344
24345 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24346
24347         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24348
24349         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24350
24351         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24352
24353         * reflection.c (mono_assembly_get_object): Remove the workaround put
24354         in for the release.
24355         
24356         * appdomain.c: Use the corlib_internal field from MonoAssembly.
24357
24358         * appdomain.c: Bump corlib version.
24359
24360         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24361         be visible in other appdomains.
24362
24363 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24364
24365         * threads.c: Interlocked inc and dec for longs were messed up,
24366         use a KISS based impl for this. Fixes 70234
24367
24368 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24369
24370         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24371
24372 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24373
24374         * icall.c: fix to follow policy not to allow struct
24375         arguments in icalls.
24376
24377 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24378
24379         * process.c: make the patch that handles spaces in file paths work
24380         on mono/windows too.
24381
24382 2004-12-06  Martin Baulig  <martin@ximian.com>
24383
24384         * class.c (mono_class_create_generic): Call
24385         mono_class_setup_supertypes() if we're dynamic.
24386         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24387
24388 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24389
24390         * object-internals.h: Add new fields to MonoThread.
24391
24392         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24393
24394         * icall.c threads-types.h threads.c: Add new icalls.
24395
24396         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24397
24398         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24399         managed side.
24400
24401         * appdomain.c: Bump corlib version.
24402
24403         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24404         internal assemblies. Fixes #69181.
24405
24406 2004-12-05  Martin Baulig  <martin@ximian.com>
24407
24408         * class.c (mono_class_inflate_generic_signature): Make this a
24409         no-op if `context' is NULL or we don't have any type parameters;
24410         also copy `sentinelpos'.        
24411
24412 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24413
24414         * image.c: Add unbox_wrapper_cache.
24415
24416         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24417
24418         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24419         function generator.
24420         
24421         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24422         Fixes #70173.
24423
24424         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24425         
24426 2004-12-04  Martin Baulig  <martin@ximian.com>
24427
24428         * loader.c (mono_method_get_signature_full): New public function;
24429         like mono_method_get_signature(), but with an additional
24430         `MonoGenericContext *' argument.
24431
24432         * class.c (mono_class_inflate_generic_signature): Formerly known
24433         as inflate_generic_signature(); make this public.
24434
24435 2004-12-04  Martin Baulig  <martin@ximian.com>
24436
24437         * metadata.c
24438         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24439         instead of a `MonoGenericContainer *'.  
24440         (mono_metadata_parse_array_full): Likewise.
24441         (mono_metadata_parse_signature_full): Likewise.
24442         (mono_metadata_parse_method_signature_full): Likewise.
24443         (mono_metadata_parse_generic_inst): Likewise.
24444         (mono_metadata_parse_generic_param): Likewise.
24445         (mono_metadata_parse_mh_full): Likewise.
24446         (mono_type_create_from_typespec_full): Likewise.
24447
24448 2004-12-03  Martin Baulig  <martin@ximian.com>
24449
24450         * class-internals.h (MonoGenericContainer): Replaced the
24451         `MonoGenericContext * pointer with a `MonoGenericContext'
24452         structure and made it the first element.
24453
24454 2004-12-03  Martin Baulig  <martin@ximian.com>
24455
24456         * class.c
24457         (inflate_generic_type): Set the `context->container' when creating
24458         a new MonoGenericContext.
24459         (mono_class_inflate_generic_method): Likewise.
24460         (mono_class_create_from_typespec): Just use `context->container'
24461         to get the container.
24462
24463         * loader.c (method_from_methodspec): Set `context->parent' from
24464         `context->container' - and if that's a method container, use its
24465         parent.  Also set the `context->container' when creating a new
24466         MonoGenericContext.
24467         (mono_get_method_from_token): Use just `context->container' to get
24468         the container.
24469
24470         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24471         `gclass->context->container'.
24472
24473         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24474         the `context->container' when creating a new MonoGenericContext.
24475
24476 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24477
24478         * reflection.c (compare_genericparam): Sort params with identical
24479         owner by their number. Fixes gen-111 on sparc.
24480
24481 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24482
24483         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24484         around the domain changes.
24485
24486         * appdomain.c (mono_domain_unload): Handle the case when the thread
24487         calling Unload is itself being aborted during unloading. Fixes #70022.
24488
24489         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24490
24491         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24492         checkpoint_func as an icall so it gets a wrapper.
24493         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24494         in the cross-appdomain wrappers too.
24495
24496         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24497
24498         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24499
24500         * reflection.c: Fix some memory leaks.
24501         
24502 2004-12-02  Martin Baulig  <martin@ximian.com>
24503
24504         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24505
24506         * metadata.c (generic_class_cache): New static hashtable.
24507         (mono_metadata_lookup_generic_class): New public method.
24508
24509 2004-12-02  Martin Baulig  <martin@ximian.com>
24510
24511         * class.c (mono_class_create_from_typedef): Call
24512         mono_class_setup_parent() and mono_class_create_mono_type() before
24513         parsing the interfaces.
24514
24515 2004-12-02  Martin Baulig  <martin@ximian.com>
24516
24517         * metadata.c (generic_inst_cache): New static hashtable.
24518         (mono_metadata_lookup_generic_inst): New public function.
24519         (mono_metadata_inflate_generic_inst): New public function.
24520         (mono_metadata_parse_generic_inst): New public function.
24521         (do_mono_metadata_parse_generic_class): Use the new
24522         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24523         since this'll also use the cache.
24524
24525         * reflection.c (mono_reflection_bind_generic_method_parameters):
24526         Use mono_metadata_lookup_generic_inst() to use the new cache.
24527
24528         * class.c (inflate_mono_type): Use
24529         mono_metadata_inflate_generic_inst() to inflate a generic
24530         instance; this'll also use the new cache.
24531
24532         * loader.c (method_from_methodspec): Use
24533         mono_metadata_parse_generic_inst() and
24534         mono_metadata_inflate_generic_inst() rather than parsing it
24535         manually, so we can use the new cache.
24536
24537 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24538
24539         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24540         the wait times out.
24541
24542 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24543
24544         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24545         iter->args based on whether parameters are passed in registers (i.e.
24546         MONO_ARCH_REGPARMS is defined)
24547
24548 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24549
24550         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24551         the exception message. Fixes #70070.
24552         (method_from_methodspec): Fix warnings.
24553
24554 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24555
24556         * process.c: (complete_path) return the path quoted
24557
24558 2004-12-01  Martin Baulig  <martin@ximian.com>
24559
24560         * class-internals.h (MonoGenericInst): New structure.
24561         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24562         `is_open' with `MonoGenericInst *inst'.
24563         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24564         `is_open' with `MonoGenericInst *inst'.
24565
24566 2004-11-30  Martin Baulig  <martin@ximian.com>
24567
24568         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24569
24570         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24571         to `generic_class_cache'.
24572
24573         * metadata.c
24574         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24575         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24576         (mono_generic_inst_is_valuetype): Renamed to
24577         mono_generic_class_is_valuetype().
24578
24579         * class-internals.h
24580         (MonoGenericInst): Renamed to MonoGenericClass.
24581         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24582         (MonoClass): Renamed `generic_inst' to `generic_class'.
24583         (MonoGenericContext): Renamed `ginst' to `gclass'.
24584
24585         * object-internals.h
24586         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24587
24588         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24589         mono_reflection_generic_class_initialize().
24590
24591         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24592         now known as "System.Reflection.MonoGenericClass".
24593         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24594
24595 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
24596
24597         * class-internals.h: Added a flag field to MonoClass to cache the
24598         declarative security attributes actions associated with the class.
24599         * domain-internals.h: Added booleans to MonoJitInfo to cache the
24600         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
24601         applicable to the JITted method.
24602         * reflection.c|h: Added functions to extract (as flags) which security
24603         actions are available (declaratively) for a method, class or assembly.
24604         * metadata.c|h: Added functions to search the declarative security
24605         table in the metadata.
24606         
24607 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
24608
24609         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
24610         EXPORTEDTYPES are already in the class name cache, so there is no
24611         need to add extra code here to look at them. Just removes a bit of
24612         cruft.
24613
24614         (ves_icall_System_Environment_get_TickCount): No need for #if
24615         WINDOWS. We already have the code in io-layer.
24616
24617 2004-11-28  Martin Baulig  <martin@ximian.com>
24618
24619         * loader.c
24620         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
24621         Fixes gen-112.cs.
24622
24623 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
24624
24625         * assembly.c (do_mono_assembly_open): Instead of having a
24626         conditional WITH_BUNDLE, incorporate support for bundles here, by
24627         having a global `bundles' variable holding a pointer to the actual
24628         bundles. 
24629
24630         (mono_register_bundled_assemblies): New API call used by the
24631         bundle code. 
24632
24633         See mkbundle.1 for details.
24634         
24635 2004-11-27  Martin Baulig  <martin@ximian.com>
24636
24637         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
24638         the vtable for generic methods.
24639
24640 2004-11-26  Martin Baulig  <martin@ximian.com>
24641
24642         * metadata.c
24643         (mono_metadata_generic_method_hash): New public function.
24644         (mono_metadata_generic_method_equal): Likewise.
24645
24646         * class-internals.h
24647         (MonoGenericContainer): Added `GHashTable *method_hash'.
24648
24649         * reflection.c (ReflectionMethodBuilder): Added
24650         `MonoGenericContainer *generic_container'.
24651         (reflection_methodbuilder_to_mono_method): Don't create a new
24652         MonoGenericContainer each time we're called.
24653         (mono_reflection_bind_generic_method_parameters): Use
24654         `container->method_hash' to cache the results so we don't create a
24655         different method if we're called several times with the same
24656         arguments.
24657
24658         * loader.c (method_from_methodspec): Use the new
24659         `container->method_hash' here, too.
24660
24661 2004-11-26  Martin Baulig  <martin@ximian.com>
24662
24663         * class.c (inflate_generic_signature): Correctly compute
24664         `res->has_type_parameters'.
24665         (mono_class_vtable): Use the `has_type_parameters' flag to
24666         determine whether we're a generic method.
24667
24668         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
24669
24670 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
24671
24672         * object.c (mono_runtime_run_main): Fix a small memory leak.
24673
24674 2004-11-25  Martin Baulig  <martin@ximian.com>
24675
24676         * class.c (set_generic_param_owner): Fixed the loop.
24677
24678 2004-11-25  Martin Baulig  <martin@ximian.com>
24679
24680         * object.c (mono_class_vtable): Don't create any JIT wrappers for
24681         generic methods.
24682
24683 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
24684
24685         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
24686         names. Fixes #69787.
24687
24688 2004-11-24  Martin Baulig  <martin@ximian.com>
24689
24690         * class.c (mono_class_create_generic_2): If we don't have a
24691         `ginst->parent', inflate `gklass->parent' to get our parent.
24692
24693 2004-11-24  Martin Baulig  <martin@ximian.com>
24694
24695         * reflection.c (compare_genericparam): Correctly sort the
24696         GenericParam table; fixes #69779.
24697
24698 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
24699
24700         * reflection.c: When writing a PE file, don't create a huge
24701         buffer in memory. Just write the arrays we have to the file.
24702         This reduces memory usage.
24703
24704         * metadata-internals.h: MonoDynamicStream pefile is no longer used
24705         globally.
24706
24707 2004-11-17  Martin Baulig  <martin@ximian.com>
24708
24709         * class.c (mono_class_init): Don't setup `class->parent' for
24710         dynamic instances; moved this to mono_class_generic_2().
24711         (mono_class_create_generic): Also set `klass->inited' for dynamic
24712         generic instances.
24713         (mono_class_create_generic_2): Don't do anything for dynamic
24714         generic instances.  Set `klass->parent' here and also call
24715         mono_class_setup_parent() here. 
24716
24717         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
24718         `MonoType *parent' argument; set `ginst->parent' before calling
24719         mono_class_create_generic_2(), so we set the correct parent.
24720
24721 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
24722
24723         * reflection.c: allow getting attributes from ModuleBuilder
24724         (used by ikvm).
24725
24726 2004-11-17  Martin Baulig  <martin@ximian.com>
24727
24728         * class.c (mono_class_create_from_typedef): If a type parameter is
24729         inherited from an outer class, set its owner to that class.
24730
24731 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
24732
24733         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
24734           for (int*) written size. This fixes bug #69592.
24735
24736 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
24737
24738         * icall.c: Added IsAuthenticodePresnet internal call.
24739         * image.c|h: New function that check a MonoImage for an Authenticode
24740         signature in the certificate PE data directory.
24741         * security.c|h: New internal call to ask the runtime if an 
24742         Authenticode signature seems referenced in the PE header.
24743
24744 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
24745
24746         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
24747
24748         * reflection.c (mono_image_create_pefile): Free the assembly streams
24749         after writing out the assembly file.
24750
24751         * object.c (mono_runtime_run_main): Fix small memory leak.
24752
24753         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
24754         property access modifiers. Fixes #69389.
24755
24756 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
24757
24758         * domain.c, object.c, object-internals.h, domain-internals.h,
24759         object.h, marshal.c: keep dynamic code info per domain.
24760
24761 2004-11-15  Martin Baulig  <martin@ximian.com>
24762
24763         * class.c (mono_type_get_name_recurse): Put type arguments in
24764         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
24765         see bug #68387.
24766
24767 2004-11-15  Martin Baulig  <martin@ximian.com>
24768
24769         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
24770         (mono_class_setup_vtable): When computing `the_cname' for a
24771         generic instance, don't include the namespace since we'd otherwise
24772         add it twice.
24773
24774 2004-11-15  Martin Baulig  <martin@ximian.com>
24775
24776         * class.c (mono_class_create_generic): Changed return type to void.
24777         (mono_class_create_generic_2): New public function; setup
24778         `class->method', `class->field' and `class->interfaces' here
24779         instead of in mono_class_init().
24780
24781         * class.h (mono_class_create_generic): Moved to class-internals.h.
24782
24783 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
24784
24785         * reflection.c (mono_image_create_pefile): take a file HANDLE.
24786         rather than writing to memory, write to this file. Right now,
24787         we are just writting into a buffer, and copying that. However
24788         we can avoid the buffer later.
24789
24790         (mono_dynamic_stream_reset): new function
24791
24792         * icall.c, object-internals.h: update for the above.
24793
24794 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
24795
24796         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
24797         have been using gc'd memory. First it is slower, unlikely
24798         the comment in the source code said, secondly, it increases
24799         our footprint to do it in the gc.
24800
24801         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
24802         the method so that it does not have to copy to managed code.
24803
24804 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
24805
24806         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
24807
24808 2004-11-12  Martin Baulig  <martin@localhost>
24809
24810         * reflection.c (mono_image_create_token): Allow generic method
24811         definitions here, since they may appear in an `.override'; see
24812         gen-98/gen-99 for an example.
24813
24814 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
24815
24816         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
24817         #69365.
24818
24819         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
24820         descriptive.
24821
24822 2004-11-11  Martin Baulig  <martin@ximian.com>
24823
24824         * class.c (mono_class_setup_vtable): In an explicit interface
24825         implementation, the method name now includes the arity.
24826
24827 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
24828
24829         * object.c (mono_array_full_copy): Fix warning.
24830
24831 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
24832
24833         * appdomain.c: Removed look_for_method_by_name(). Use the new method
24834         mono_class_get_method_from_name() instead.
24835         
24836         * class-internals.h: Added two new types of wrappers. 
24837         Added MonoRemotingTarget enum. Added new trampoline function type, which
24838         takes an additional MonoRemotingTarget value as parameter, so it is
24839         possible to request a trampoline for a specific target.
24840         
24841         * class.c: Added new mono_class_get_method_from_name() method.
24842         
24843         * class.h: In MonoRemoteClass, we can have now to vtables, one for
24844         general remoting sinks and one specific for cross domain calls.
24845         
24846         * debug-helpers.c: Added new wrapper names.
24847         
24848         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
24849         of a remote class.
24850         
24851         * image.c: Porperly delete value objects form the remoting invoke hashtable.
24852         
24853         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
24854         with several other methods (mono_marshal_get_xappdomain_dispatch,
24855         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
24856         and others) can generate a fast remoting wrapper for cross domain calls.
24857         More information can be found in docs/remoting.
24858         Other changes: Removed mono_find_method_by_name, and used
24859         mono_class_get_method_from_name instead.
24860         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
24861         is stored in the remoting invoke hashtable.
24862         
24863         * marshal.h: published the new method for getting the xdomain wrapper,
24864         and also added a method for getting the adequate wrapper for a given
24865         method and target.
24866         
24867         * object-internals.h, object.c: Added a couple of methods for capying and
24868         cloning arrays.
24869         Modified mono_install_remoting_trampoline, which takes the new remoting
24870         trampoline that has a remoting target as parameter.
24871         mono_class_proxy_vtable now also takes a remoting target as parameter, and
24872         will return the most suitable vtable for the target.
24873         Added mono_remote_class_vtable, which returns the vtable of a remote class
24874         (which can be the normal remoting vtable or the xdomain vtable).
24875         
24876         * threads.c: the xdomain invoke and dispatch wrappers must also be
24877         protected against interruptions.
24878
24879 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24880
24881         * icall.c: use memmove in BlockCopyInternal when the source and
24882         destination arrays are the same.
24883
24884 2004-11-09  Martin Baulig  <martin@ximian.com>
24885
24886         * class-internals.h (MonoGenericContainer): Removed `method' and
24887         `signature', replaced them with `is_method' and `is_signature'
24888         flags.  Added `context'.
24889
24890         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
24891         instead of a `MonoGenericContainer *'.
24892
24893         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
24894         for dynamic type parameters.
24895         (mono_metadata_load_generic_params): Setup `container->context'.
24896
24897         * reflection.c (mono_reflection_setup_generic_class): Setup
24898         `tb->generic_container->context'.
24899         (do_mono_reflection_bind_generic_parameters): Use
24900         mono_class_inflate_generic_type() to correctly inflate types,
24901         rather than using our own hack just for MONO_TYPE_VAR.
24902
24903 2004-11-09  Martin Baulig  <martin@ximian.com>
24904
24905         * class.c (mono_class_inflate_generic_method): Small fix; don't
24906         crash here.
24907
24908         * icall.c
24909         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
24910         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
24911         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
24912         (ves_icall_Type_BindGenericParameters): Likewise.
24913         (ves_icall_Type_get_IsGenericInstance): Likewise.
24914         (ves_icall_Type_GetGenericParameterPosition): Likewise.
24915         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
24916         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
24917         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
24918
24919 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
24920
24921         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
24922         assembly versions and public key tokens. Fixes #69113.
24923
24924 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
24925
24926         * metadata.c: fix bug introduced with the type cache changes
24927         on 2004-11-06.
24928
24929 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
24930
24931         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
24932         the MonoClass pointer instead of the token in exception clauses.
24933         * reflection.c: updates for the above and make the code not depend
24934         on the structure of MonoExceptionClause.
24935
24936 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
24937
24938         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24939         Add support for dynamic assemblies. Fixes #69114.
24940
24941         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
24942
24943 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
24944
24945         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
24946         since most only those methods use it. the code member of
24947         MonoMethodPInvoke was dead, so that can be removed too. Also,
24948         remove inline_count (again, not used), and move slot so that it
24949         can share bits with some other flags. This saves 8 bytes in the
24950         structure and gives us about 50 kb back for mcs helloworld.cs
24951
24952         * *.[ch]: Do naming changes for the above.
24953
24954         * loader.c (mono_method_get_header): Lazily init the header
24955         on first access.
24956         (mono_get_method_from_token): don't init the header here
24957         (mono_free_method): the header may never be allocated
24958
24959         Overall, this saves 150 kb of unmanaged allocations
24960         for mcs helloworld.cs. That accounts for 10% of the unmanaged
24961         memory at runtime.
24962         
24963         * loader.c, loader.h (mono_method_get_header): new accessor.
24964
24965         * *.[ch]: use the above method. Prepares us to lazily load
24966         the header.
24967
24968         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
24969         three warnings, which are actual bugs (see 69206).
24970
24971         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
24972         unused. Saves a cool 4 bytes / method.
24973
24974 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
24975
24976         * metadata.c (builtin_types): Add types for System.Object here.
24977         (mono_metadata_parse_type_full): Cache MonoType*'s that are
24978         for a class or valuetype from klass->this_arg or klass->byval_arg.
24979
24980         On mcs for a hello world, this gets us down from 21836 MonoType's
24981         to 14560.
24982
24983         (mono_metadata_free_type): Account for the above change.
24984
24985 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
24986
24987         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
24988         exception instead of asserting if name is null.
24989         (ves_icall_System_AppDomain_GetData): Ditto.
24990
24991 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
24992
24993         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
24994         EnumBuilder.
24995
24996         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
24997         Return NULL when the domain does not have entry_assembly set.
24998
24999         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
25000         Add a 'resource_modules' argument.
25001         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
25002
25003         * reflection.c (mono_reflection_create_runtime_class): Move setting
25004         of wastypebuilder here, so mono_get_type_object () returns a MonoType
25005         for enums too.
25006
25007         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
25008         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
25009         Throw an ArgumentNullException if 'ptr' is null.
25010
25011         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
25012         assemblies here. Fixes #69020.
25013
25014 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
25015
25016         * reflection.c (build_compressed_metadata): Fix the previous patch for
25017         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
25018         the stack.
25019
25020 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
25021
25022         * assembly.c (mono_assembly_names_equal): Allow a match if one of
25023         the cultures is false. Fixes #69090.
25024
25025         * reflection.c (build_compressed_metadata): Fix invalid memory read 
25026         detected by valgrind.
25027         
25028         * reflection.c (mono_reflection_get_type): Avoid triggering a 
25029         TypeResolve multiple times for the same type. Fixes #65577.
25030
25031 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
25032
25033         * marshal.c: Avoid using ldftn to call managed functions. It is
25034         much slower than just a call.
25035
25036         * reflection.c (mono_module_get_object): free the basename we
25037         allocate here from glib.
25038         
25039         * reflection.c (ensure_runtime_vtable): make sure to free
25040         overrides.  Also, we were allocating an array of MonoMethod not an
25041         array of MonoMethod*.
25042
25043         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
25044
25045         * image.c (mono_image_close): free image->guid here.
25046
25047 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
25048
25049         * reflection.c: Fix some spec conformance issues with the PE file
25050         structures so mcs compiled apps run on the Net 2.0 beta.
25051
25052 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
25053
25054         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
25055         Implement this. Fixes #67264.
25056
25057         * debug-helpers.h debug-helpers.c marshal.c: Move 
25058         mono_find_method_by_name to debug-helpers.c.
25059
25060 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
25061
25062         * object.c (mono_release_type_locks): type_initialization_hash is
25063         a GHashTable.
25064
25065         * reflection.c object.c object-internals.h: Fix warnings.
25066
25067         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
25068         without accessors. Fixes #61561.
25069
25070         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
25071         application base from the root domain if not set. Fixes #65641.
25072         (mono_runtime_init): Fix warning.
25073
25074 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25075
25076         * appdomain.c: call mono_thread_pool_init.
25077         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25078         of worker threads based on the number of CPUs and the environment
25079         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25080         for non-windows (windows) systems.
25081
25082 2004-10-27  Chris Toshok  <toshok@ximian.com>
25083
25084         * mono-debug-debugger.c (write_class): don't call mono_class_init
25085         here, as even with the check for (!klass->init_pending), we get
25086         into a situation where we're hitting cycles in class
25087         initialization.  Fixes #68816.
25088
25089 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
25090
25091         * image.c: Avoid overwriting values in the loaded_images_hash when an
25092         assembly is loaded multiple times. Fixes #61152.
25093
25094         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25095         so multiple satellite assemblies for the same name can be loaded.
25096         Fixes #68259.
25097
25098         * mono_domain_assembly_preload: Actually return the loaded assembly, 
25099         not NULL.
25100
25101         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25102         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25103
25104         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25105         pending finalizers are not invoked after the appdomain has been 
25106         unloaded. Fixes #67862.
25107
25108 2004-10-22  Martin Baulig  <martin@ximian.com>
25109
25110         * mono-debug-debugger.c
25111         (mono_debugger_runtime_invoke): Don't box valuetypes.
25112
25113 2004-10-22  Chris Toshok  <toshok@ximian.com>
25114
25115         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25116         don't hide private methods.
25117
25118 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
25119
25120         * icall.c: Allows the runtime to "share" (when known) the public key
25121         token of an assembly. This avoid the need to recalculate the token 
25122         (from the public key) in managed code.
25123
25124 2004-10-21  Chris Toshok  <toshok@ximian.com>
25125
25126         * debug-helpers.c (append_class_name): argh, revert last patch.
25127         
25128 2004-10-21  Chris Toshok  <toshok@ximian.com>
25129
25130         * debug-helpers.c (append_class_name): use '+' as the delimiter,
25131         not '/', so that it matches what the debugger uses to look up
25132         methods.
25133
25134 2004-10-21  Martin Baulig  <martin@ximian.com>
25135
25136         * mono-debug-debugger.c (mono_debugger_throw_exception): New
25137         public method; this is called each time an exception is thrown and
25138         allows the debugger to use exception catch points.
25139
25140 2004-10-21  Martin Baulig  <martin@ximian.com>
25141
25142         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25143         the stack pointer and the exception object in some struct and pass
25144         that to the debugger.
25145
25146 2004-10-21  Chris Toshok  <toshok@ximian.com>
25147
25148         * mono-debug-debugger.c (do_write_class): add instance/static
25149         event support.  We don't expose "raise" or "other" yet.
25150         (event_is_static): new method.
25151
25152 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
25153
25154         * mono-debug-debugger.c
25155         (mono_debugger_handle_exception): Remove
25156         bogus return value for fussy compilers.
25157
25158 2004-10-20  Martin Baulig  <martin@ximian.com>
25159
25160         * mono-debug-debugger.c
25161         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25162         (mono_debugger_handled_exception): Likewise.
25163
25164 2004-10-20  Martin Baulig  <martin@ximian.com>
25165
25166         * mono-debug-debugger.h (MonoDebuggerEvent): Added
25167         MONO_DEBUGGER_EVENT_EXCEPTION.
25168
25169         * mono-debug-debugger.c (mono_debugger_handle_exception): New
25170         public function to send the debugger a notification for an
25171         exception and inform it about a catch/finally clause.
25172
25173 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
25174
25175         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25176         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25177         fix 2.95 build. 
25178
25179         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25180
25181 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
25182
25183         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
25184         marshalled as [In,Out]. Fixes #58325.
25185
25186 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
25187
25188         * reflection.c (mono_method_body_get_object): Implement some fields.
25189
25190 2004-10-12  Martin Baulig  <martin@ximian.com>
25191
25192         * reflection.c (mono_reflection_bind_generic_parameters): Small
25193         fix, correctly retrieve our parent from a generic instance.
25194
25195 2004-10-12  Martin Baulig  <martin@ximian.com>
25196
25197         * metadata.c (mono_metadata_generic_param_equal): We always have
25198         an owner.
25199
25200         * class.c
25201         (mono_class_from_generic_parameter): We need to have an owner.
25202         (my_mono_class_from_generic_parameter): Likewise.
25203
25204         * reflection.c (mono_reflection_setup_generic_class): Renamed to
25205         mono_reflection_create_generic_class() and added a new
25206         mono_reflection_setup_generic_class().  
25207         (mono_reflection_initialize_generic_param): If we're a nested
25208         generic type and inherited from the containing class, set our
25209         owner to the outer class.
25210
25211 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
25212
25213         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
25214
25215         * reflection.c (mono_method_body_get_object): New function to create
25216         a MethodBody object.
25217
25218         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
25219
25220 2004-10-11  Martin Baulig  <martin@ximian.com>
25221
25222         * metadata.c (_mono_metadata_type_equal): Renamed to
25223         do_mono_metadata_type_equal() and made static.
25224
25225 2004-10-11  Martin Baulig  <martin@ximian.com>
25226
25227         * appdomain.c: Bump corlib version number to 28.
25228
25229 2004-10-10  Martin Baulig  <martin@ximian.com>
25230
25231         * class-internals.h
25232         (MonoGenericInst): Added `MonoGenericContainer *container'.
25233         (MonoGenericMethod): Likewise.
25234         (MonoGenericContext): Likewise.
25235         (MonoGenericParam): Added `MonoGenericContainer *owner'.
25236
25237         * metadata.c
25238         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
25239         (do_mono_metadata_parse_generic_inst): Likewise.
25240         (mono_metadata_parse_type_full): New public method.  This is the actual
25241         mono_metadata_parse_type() implementation - with an additional
25242         `MonoGenericContainer *' argument.
25243         (mono_metadata_parse_array_full): Likewise.
25244         (mono_metadata_parse_signature_full): Likewise.
25245         (mono_metadata_parse_method_signature_full): Likewise.
25246         (mono_metadata_parse_mh_full): Likewise.
25247         (mono_type_create_from_typespec): Likewise.
25248         (mono_metadata_interfaces_from_typedef_full): New public method;
25249         this is similar to the other _full() methods, but we take a
25250         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
25251         (mono_metadata_parse_generic_param): Take an additional
25252         `MonoGenericContainer *' argument and lookup the MonoGenericParam
25253         from that container.
25254         (mono_metadata_generic_param_equal): New static method to compare
25255         two type parameters.
25256         (_mono_metadata_type_equal): New static method; takes an
25257         additional `gboolean signature_only' argument - if true, we don't
25258         compare the owners of generic parameters.
25259         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
25260         with a TRUE argument - do a signature-only comparision.
25261
25262         * loader.c: Use the new _full() methods and pass the
25263         MonoGenericContainer to them.
25264
25265         * object-internals.h (MonoReflectionTypeBuilder): Added
25266         `MonoGenericContainer *generic_container' field.
25267         (MonoReflectionMethodBuilder): Likewise.
25268
25269 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
25270
25271         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
25272         case initial images of dynamic assemblies.
25273
25274         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
25275
25276         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
25277
25278         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
25279         length of event->other array.
25280         (typebuilder_setup_events): Ditto.
25281
25282         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
25283         'assembly_by_name' and add an 'assemblies' list.
25284
25285         * assembly.h assembly.c: Add a new search hook for determining whenever
25286         an assembly is already loaded. Use this instead of searching in the
25287         loaded_assemblies list.
25288
25289         * domain.c appdomain.c: Implement the new search hook so loaded 
25290         assemblies are now scoped by appdomain. Fixes #67727.
25291
25292 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
25293
25294         * threads.c (mono_thread_attach): Initialize synch_lock field so
25295         mono_thread_detach works again.
25296
25297         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
25298         'lib' too. Fixes #63130.
25299
25300 2004-10-06  Jackson Harper  <jackson@ximian.com>
25301
25302         * culture-info-tables.h: regenerated.
25303
25304 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
25305
25306         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
25307         implemented by other interfaces in the result. Fixes #65764.
25308         
25309         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25310         Handle unloadable modules without crashing.
25311
25312         * image.c (load_modules): Revert the previous patch since modules must
25313         have a fixed index inside the array.
25314         
25315         * image.c (load_modules): Don't include native modules in the modules
25316         array.
25317
25318 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
25319
25320         * reflection.h: Add param_defaults field.
25321
25322         * reflection.c: Add support for parameter defaults in dynamic methods.
25323         Fixes #64595.
25324
25325         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25326         an empty string when a type has no namespace. Fixes #64230.
25327
25328 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
25329
25330         * tabledefs.h: Added "internal" security actions to support non-CAS
25331         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
25332         Note: they do not seems to be used anymore in 2.0 (new metadata format)
25333
25334 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
25335
25336         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25337         constructor of abstract class. Fixes #61689.
25338
25339 2004-10-04  Martin Baulig  <martin@ximian.com>
25340
25341         * class-internals.h (MonoGenericContainer): New type.
25342         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25343         `MonoGenericContainer *generic_container'.
25344         (MonoClass): Replaced `gen_params' and `num_gen_params' with
25345         `MonoGenericContainer *generic_container'.
25346
25347         * metadata.c (mono_metadata_load_generic_params): Return a
25348         `MonoGenericContainer *' instead of a `MonoGenericParam *';
25349         removed the `num' argument.
25350
25351 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
25352
25353         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25354         for dynamic images.
25355
25356         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25357         machine fields.
25358
25359         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25360
25361         * reflection.c: Save pe_kind and machine values into the generated
25362         image file.
25363
25364         * appdomain.c: Bump corlib version number.
25365
25366         * object-internals.h: Reorganize layout of LocalBuilder.
25367
25368         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25369         New helper function.
25370
25371         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25372         created MonoType for dynamic types. Fixes #66180.
25373
25374 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25375
25376         * threadpool.c: the ares hashtable needs a critical section around it.
25377         this prevents some nasty segfaults
25378
25379 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25380
25381         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25382         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25383         bug 67324).
25384         
25385 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25386
25387         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25388         
25389 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25390
25391         * image.c: Always canonicalize image file names, to avoid loading
25392         the same assembly twice when referenced using a relative path.
25393
25394 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25395
25396         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25397
25398         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25399
25400         * marshal.c: Fix warnings.
25401
25402 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25403
25404         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25405         attempting to marshal the delegate_trampoline as the method_addr.
25406         This patch has a static hashtable of marshalled delegates so that 
25407         we can map delegate_trampoline addresses back to delegates.  This
25408         allows a delegate passed to managed code to be passed back into native
25409         code.  Fixes #67039
25410
25411 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25412
25413         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25414
25415         * reflection.c (method_encode_code): Align method headers properly.
25416         Fixes #66025.
25417
25418 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25419
25420         * marshal.c: In the runtime invoke wrapper, reset the abort
25421         exception if it is cached. This avoids the automatic rethrowal of 
25422         the exception after the catch of the wrapper. Also check for pending
25423         interruptions before calling the managed method. This is done using
25424         the new method emit_thread_force_interrupt_checkpoint, since the
25425         normal checkpoint method is ignored when running the invoke wrapper.
25426         * object.c: If the abort exception is rethrown, set the abort_exc
25427         field of the thread, so it will be rethrown aftere every catch.
25428         * threadpool.c: Only run an interruption checkpoint if what has been
25429         requested is a stop of the thread (aborts will be ignored).
25430         * threads.c: By default, a thread will now never be interrumped while
25431         running the runtime invoke wrapper (this ensures that runtime_invoke
25432         will always return to the caller if an exception pointer is provided).
25433         There is a new special method mono_thread_force_interruption_checkpoint()
25434         to force an interruption checkpoint even if running a protected
25435         wrapper, which is used by the same runtime invoke wrapper to do a check
25436         at a safe point.
25437
25438 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25439
25440         * object.c, object-internals.h: Implemented mono_release_type_locks,
25441         which releases the cctor locks held by a thread.
25442         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25443         by a thread. Added mono_thread_exit() method to be used to safely stop
25444         a thread.
25445
25446 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25447
25448         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25449         Move null check before dereference.  Avoid indexing beyond the end
25450         of the 'modules' array.
25451
25452 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25453
25454         * metadata-internals.h (MonoImage): Add module_count field.
25455         * image.c (load_modules): Set image->module_count.
25456         (mono_image_load_file_for_image): Use image->module_count.
25457         * reflection.c (mono_image_load_module): Append to image->modules array 
25458         of dynamic assembly.
25459         (mono_module_get_object): Fix loop to actually increment index.
25460         Use image->module_count.
25461         * assembly.c (mono_assembly_load_references): Use image->module_count.
25462         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25463         Likewise.
25464
25465 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25466
25467         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25468         Avoid assert on generic types.
25469
25470 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25471
25472         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25473
25474         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25475
25476         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25477         function to convert a MarshalSpec structure to its managed counterpart.
25478
25479         * reflection.c: Fix warnings.
25480         
25481         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25482         field.
25483
25484         * icall.c (mono_create_icall_signature): Fix build.
25485
25486 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25487
25488         * icall.c: Add MakePointType icall.
25489
25490         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25491         warnings.
25492
25493 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25494
25495         * threadpool.c: reuse allocated slots in the queue.
25496
25497 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25498
25499         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25500
25501         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25502
25503         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25504         previous change.
25505
25506         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25507         ThrowOnUnmappableChar.
25508
25509         * icall.c (ves_icall_Type_GetPacking): New icall.
25510
25511 2004-09-24  Martin Baulig  <martin@ximian.com>
25512
25513         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25514
25515 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25516
25517         * appdomain.c:
25518         (mono_domain_set): allow setting a domain that is being unloaded.
25519         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25520         being unloaded.
25521
25522 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25523
25524         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25525         the GetCustomAttributes icall.
25526
25527 2004-09-23  Martin Baulig  <martin@ximian.com>
25528
25529         * object-internals.h (MonoReflectionGenericParam): Replaced
25530         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25531         with `guint32 attrs'.
25532
25533 2004-09-23  Martin Baulig  <martin@ximian.com>
25534
25535         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25536
25537 2004-09-23  Martin Baulig  <martin@ximian.com>
25538
25539         * object-internals.h (GenericParameterAttributes): New enum.
25540
25541 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25542
25543         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25544         
25545         * class.c (init_events): Fill out event->other field.
25546
25547         * class.c: Fix warnings.
25548
25549         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25550
25551 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25552
25553         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25554         walk which doesn't supply the IL offset.
25555
25556 2004-09-22  Martin Baulig  <martin@ximian.com>
25557
25558         * reflection.c (mono_reflection_setup_internal_class): If we're
25559         System.ValueType, System.Object or System.Enum, set
25560         `klass->instance_size' and create the vtable.
25561         (mono_reflection_create_internal_class): If we're an enum type,
25562         get the base class from our current corlib.
25563
25564 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25565
25566         * reflection.h (MonoResolveTokenError): New type.
25567
25568         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25569         icall.
25570
25571         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25572
25573 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25574
25575         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25576         Support also calling constructors, but only for already allocated objects.
25577
25578 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25579
25580         * reflection.c (type_get_qualified_name): If the klass is null
25581         return the typename to avoid a NullRefEx.
25582         (encode_cattr_value): Get the qualified name of the boxed type,
25583         not the underlying enumtype.  Fixes #62984.
25584
25585 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25586
25587         * marshal.c: Fix problems with previous checkin.
25588
25589 2004-09-21    <vargaz@freemail.hu>
25590
25591         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25592         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25593
25594         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25595
25596 2004-09-21  Geoff Norton <gnorton@customerdna.com>
25597
25598         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
25599         should only return a type for pointers, arrays, and passbyref types.
25600         Fixes bug #63841.
25601
25602 2004-09-21  Martin Baulig  <martin@ximian.com>
25603
25604         * domain.c (mono_debugger_check_runtime_version): New public
25605         function.
25606
25607         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
25608
25609 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
25610
25611         * reflection.c: Added missing sort to the declarative security 
25612         attributes table. MS implementation stops seeing the attributes if the
25613         token number regress in the table (as shown by ildasm and permview).
25614
25615 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
25616
25617         * object-internals.h (MonoReflectionModule): Add 'token' field.
25618         
25619         * reflection.c (mono_reflection_get_token): Add support for Module
25620         and Assembly.
25621         (mono_module_get_object): Set 'token' field.
25622         (mono_module_file_get_object): Set 'token' field.
25623
25624         * icall.c: Add new Assembly and Module icalls.
25625
25626         * appdomain.c: Bump corlib version.
25627
25628 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
25629
25630         * loader.h loader.c class.h class.c: Add helper functions for obtaining
25631         tokens of metadata objects.
25632
25633         * reflection.h reflection.c (mono_reflection_get_token): New function
25634         to obtain the token of a metadata object.
25635
25636         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
25637
25638 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
25639
25640         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
25641         
25642         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
25643
25644 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
25645
25646         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
25647         * object-internals.h: Added 3 MonoArray* members to MonoReflection
25648         AssemblyBuilder to access the permissions set in the class lib.
25649         * reflection.c: Added security attributes encoding step in 
25650         mono_image_build_metadata.
25651         * tabledefs.h: Added new security actions defined in 2.0:
25652         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
25653
25654 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25655
25656         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
25657         macro parameter.
25658
25659 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25660  
25661         * locales.c: nullify the ICU_collator member of CompareInfo when it is
25662           finalized. There where random SIGSEVs at program termination, when
25663           an object being finalized was trying to do a string comparison and
25664           the current culture was already finalized.
25665  
25666 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25667
25668         * threads.c: call thread_cleanup before finishing the thread if we get
25669         there.
25670
25671 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
25672
25673         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
25674         assemblies from the parent. Fixes #65665.
25675
25676 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
25677
25678         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
25679         modifiers.
25680
25681 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
25682
25683         * reflection.h: add prototype for mono_get_dbnull_object
25684         * reflection.c: add prototypes for get_default_param_value_blobs 
25685         and mono_get_object_from_blob for fussier compilers
25686
25687 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
25688  
25689         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
25690         false deadlock checks in class initialization.
25691  
25692 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
25693
25694         * image.c (mono_image_addref): Fix comment.
25695
25696         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
25697         possible.
25698
25699 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
25700
25701         * reflection.c (mono_param_get_objects): Modified to return
25702         ParameterInfo.DefaultValue object.
25703
25704         (get_default_param_value_blobs):
25705         (mono_get_object_from_blob):
25706         (mono_get_dbnull_object): New helper routines. 
25707
25708         * object.c (mono_get_constant_value_from_blob): New helper routine
25709         carved out from get_default_field_value ()
25710
25711         * object-internals.h (mono_get_constant_value_from_blob): Added
25712         function declaration.
25713
25714 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
25715
25716         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
25717         referenced assemblies. Fixes #62135.
25718
25719         * exception.h exception.c (mono_get_exception_file_not_found2): New
25720         helper function.
25721
25722 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
25723
25724         * class.h class.c: Add mono_type_get_underlying_type ().
25725
25726 2004-09-09  Geoff Norton <gnorton@customerndna.com>
25727
25728         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
25729         Fix GetTypes() to support dynamically created assemblies.
25730
25731 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
25732
25733         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
25734         
25735         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
25736         previous patch.
25737
25738         * reflection.h reflection.c loader.c: Allow dynamic construction of
25739         pinvoke methods. Fixes #65571.
25740         
25741         * reflection.c (mono_reflection_get_type): Revert previous change since
25742         it causes regressions.
25743
25744 2004-09-08  Martin Baulig  <martin@ximian.com>
25745
25746         * class.c (class_compute_field_layout): Don't call
25747         mono_class_layout_fields() for open generic instances.
25748
25749 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
25750         * threads.c appdomain.c: fix typo in GC macro
25751
25752 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25753
25754         * threads.c: don't call mono_thread_detach() in start_wrapper(),
25755         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
25756
25757 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
25758
25759         * image.c (mono_image_close): Applied patch from 
25760         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
25761         assembly is loaded multiple times from data.
25762         
25763         * image.c (mono_image_open): Fix warning.
25764
25765 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25766
25767         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
25768         once. Fixes #58334.
25769         
25770         * reflection.c (mono_reflection_create_runtime_class): Initialize
25771         klass->nested_classes. Fixes #61224.
25772
25773 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25774
25775         * threads.c: sched_yield() on exit, to allow threads to quit.
25776
25777 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25778
25779         * object.c (mono_unhandled_exception): Remove leftover debug code.
25780
25781 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
25782
25783         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
25784
25785 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25786
25787         * marshal.c (emit_marshal_array): Really null terminate string arrays.
25788         
25789         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
25790
25791 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25792
25793         * marshal.c (emit_marshal_array): Null terminate string arrays.
25794         
25795         * marshal.c (raise_auto_layout_exception): Fix warning.
25796
25797         * reflection.c (mono_param_get_objects): Initialize the default value
25798         with DBNull.Value, not null. Fixes #62123.
25799
25800 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
25801
25802         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
25803         throw an exception with a cute explanation.
25804
25805 2004-09-06  Dick Porter  <dick@ximian.com>
25806
25807         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
25808         Close the new process's thread handle, as we don't use it.  The
25809         handle stays around forever otherwise.
25810
25811 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25812
25813         * object.c (arith_overflow): Fix warning.
25814
25815         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
25816         calling conventions in method refs. Fixes #65352.
25817
25818         * reflection.c: Fix warnings.
25819
25820 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25821
25822         * icall.c: Add a new icall for Array.Clear
25823
25824 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25825
25826         * object.c: When allocating an array, we have to throw
25827         an overflow exception if any of the lengths are < 0.
25828
25829 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25830
25831         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
25832         properly. Also move implementation of string array marshalling to 
25833         managed code. Fixes #42316.
25834
25835 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25836
25837         * assembly.c: provide more information when loading an assembly fails.
25838
25839 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25840
25841         * filewatcher.c: don't expect the development fam package to be
25842         installed.
25843
25844 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
25845
25846         * marshal.c: Make a copy of the signature cookie since it will be
25847         freed by the caller.
25848         
25849         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
25850
25851         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
25852
25853         * metadata.c (mono_metadata_free_marshal_spec): New function to free
25854         marshal specs.
25855
25856         * marshal.c: More refactoring.
25857         
25858         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
25859         smaller functions.
25860
25861 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
25862
25863         * object.c: In mono_message_invoke, fill the output parameter array after
25864           calling the managed method (it was done before the call). This fixes
25865           bug #59299.
25866
25867 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25868
25869         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
25870         as well.
25871
25872 2004-09-02  Martin Baulig  <martin@ximian.com>
25873
25874         * class.c (mono_class_instance_size): Don't allow generic type
25875         definitions or open generic instances.
25876         (mono_class_array_element_size): If we're a value type, call
25877         mono_class_instance_size() on the original class.
25878
25879         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
25880         handle generic instances.
25881
25882         * mono-debug-debugger.c (write_type): Handle generic instances
25883         like classes.
25884
25885 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25886
25887         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
25888         the allocation request fails. Fixes #65089.
25889
25890         * object.c (mono_runtime_free_method): Do not call mono_free_method.
25891         
25892         * object.c (mono_runtime_free_method): New function to free a dynamic
25893         method.
25894
25895         * marshal.c (mono_delegate_free_ftnptr): New function to free the
25896         delegate trampoline.
25897
25898         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
25899         with hasthis as dynamic,
25900
25901         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
25902
25903         * domain.c (mono_jit_info_table_remove): New function to remove an
25904         entry from the jit info table.
25905
25906         * class-internals.h (MonoMethod): Add 'dynamic' field.
25907
25908         * loader.c: Fix warnings.
25909
25910 2004-09-01  Martin Baulig  <martin@ximian.com>
25911
25912         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
25913         instead of mono_debugger_lock() because the latter one is a no-op
25914         unless running in the debugger.
25915
25916 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25917
25918         * class.c (class_compute_field_layout): Classes with auto-layout or
25919         reference fields are not blittable.
25920         
25921 2004-09-01  Dick Porter  <dick@ximian.com>
25922
25923         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
25924         mono_image_get_filename() to get the assembly location.
25925
25926         * icall.c:
25927         * metadata.h: Fix compile warnings
25928
25929 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25930
25931         * class.c (class_compute_field_layout): System.Object is blittable.
25932
25933         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
25934         as in/out. Fixes #59909.
25935
25936 2004-09-01  Martin Baulig  <martin@ximian.com>
25937
25938         * metadata.h (MONO_TYPE_ISREFERENCE): Call
25939         mono_metadata_generic_inst_is_valuetype() if we're a generic
25940         instance to check whether our underlying type is a reference type.
25941
25942 2004-09-01  Martin Baulig  <martin@ximian.com>
25943
25944         * metadata.c (mono_type_size): If we're a generic instance, call
25945         mono_class_value_size() for value types.
25946
25947 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
25948
25949         * marshal.c: Implement more custom marshalling functionality. Fixes
25950         #64915.
25951
25952 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25953
25954         * mono-debug.c, debug-mono-symfile.c: add some locking love.
25955
25956 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
25957
25958         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
25959
25960         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
25961
25962         * icall.c: Fix some warnings.
25963
25964         * threads.c (abort_appdomain_thread): Fix unref errors.
25965         (mono_thread_current): Fix THREAD_DEBUG define.
25966
25967 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
25968
25969         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
25970
25971         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
25972
25973 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
25974
25975         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
25976         string arrays.
25977
25978 2004-08-28  Martin Baulig  <martin@ximian.com>
25979
25980         * metadata.c
25981         (mono_metadata_generic_inst_is_valuetype): New public function.
25982
25983         * metadata.h (MONO_TYPE_ISSTRUCT): Call
25984         mono_metadata_generic_inst_is_valuetype() if we're a generic
25985         instance to check whether our underlying type is a valuetype.
25986
25987 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
25988
25989         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
25990         #63768.
25991
25992 2004-08-25  Martin Baulig  <martin@ximian.com>
25993
25994         * loader.c (mono_get_method_from_token): Abstract methods can also
25995         be generic and thus have type parameters.
25996
25997         * metadata-internals.h
25998         (MonoDynamicImage): Added `GPtrArray *gen_params'.
25999
26000         * reflection.c (mono_image_get_generic_param_info): Don't create a
26001         metadata row, just add an entry to the `gen_params' array.
26002         (build_compressed_metadata): Sort the `gen_params' array and then
26003         actually create the metadata.
26004
26005 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26006
26007         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
26008
26009 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
26010
26011         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
26012
26013 2004-08-24  Martin Baulig  <martin@ximian.com>
26014
26015         * class.cs (mono_class_is_subclass_of): Like an interface, a
26016         generic instance also derives from System.Object.
26017
26018 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
26019
26020         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
26021         custom modifiers to be in any order. Fixes #61990.
26022
26023 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
26024
26025         * object.c: Register mono_object_new_fast icall.
26026         
26027         * object.c (mono_class_get_allocation_ftn): Return to calling
26028         mono_object_new_fast, since it seems faster to compute the object 
26029         size in unmanaged code than passing it as a parameter.
26030
26031         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
26032
26033         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
26034         this function with Boehm as the oom handler, so we don't have to check
26035         the result of GC_malloc.
26036
26037         * object.c: Remove checks for oom.
26038
26039         * object.h object.c (mono_class_get_allocation_ftn): New function to
26040         return the icall which can be used to allocate an instance of a given
26041         class. 
26042
26043         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
26044
26045         * class-internals.h: Add 'enabled' field.
26046
26047 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
26048
26049         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
26050
26051 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
26052         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
26053         value 0x0010.
26054
26055 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
26056
26057         * appdomain.c: use the Tls function for appdomain too,
26058         at Zoltan's request. Actually return in mono_context_get
26059
26060         * appdomain.c, profiler.c, threads.c: use __thread
26061
26062 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
26063
26064         * appdomain.c threads.c: Call GC_CreateThread on windows.
26065
26066         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
26067         multiple libraries since this don't work on windows.
26068
26069 2004-08-18  Martin Baulig  <martin@ximian.com>
26070
26071         * class-internals.h
26072         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
26073         MonoMethodHeader.
26074
26075         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
26076         MonoMethodNormal since we also need it for abstract and interface
26077         methods.
26078
26079         * reflection.c
26080         (build_compressed_metadata): Sort the GenericParam table.
26081         (mono_image_create_token): Added `gboolean create_methodspec'
26082         argument; this is false when generating a MethodImpl token.
26083         (reflection_methodbuilder_to_mono_method): Abstract and interface
26084         methods may also have generic parameters.
26085
26086 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
26087
26088         * appdomain.c: thread local alloc
26089
26090 2004-08-17  Martin Baulig  <martin@ximian.com>
26091
26092         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26093
26094         * icall.c
26095         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26096         argument.
26097
26098         * class.c (mono_type_get_full_name): New public function.
26099         (mono_type_get_name): Don't include the type arguments.
26100
26101 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
26102
26103         * Makefile.am: Build static versions of libmetadata and libmonoruntime
26104         for inclusion into the mono executable.
26105
26106 2004-08-16  Martin Baulig  <martin@ximian.com>
26107
26108         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26109         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26110
26111 2004-08-14  Martin Baulig  <martin@ximian.com>
26112
26113         * class.c (dup_type): Also copy the `byref' field.
26114
26115 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
26116
26117         * reflection.c (create_dynamic_mono_image): Revert the last change 
26118         since it breaks bootstrap.
26119
26120 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
26121
26122         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26123
26124         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26125         not free them with g_free.
26126
26127 2004-08-11  Martin Baulig  <martin@ximian.com>
26128
26129         * reflection.c (mono_reflection_setup_internal_class): Also call
26130         mono_class_setup_mono_type() if we already have a `tb->type.type'.
26131
26132 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
26133
26134         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
26135         called during default (first) AppDomain creation. Keep track of
26136         Evidence when loading assemblies.
26137
26138 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26139
26140         * opcodes.c, opcodes.h: reduce runtime relocations.
26141
26142 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26143
26144         * culture-info.h, locales.c: fixes and chages to sue the new
26145         optimized format of the locale data.
26146         * culture-info-tables.h: regenerated.
26147
26148 2004-08-06  Geoff Norton <gnorton@customerdna.com>
26149         
26150         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26151
26152 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
26153
26154         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26155         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26156         * domain-internals.h: icall declaration.
26157         * icall.c: icall registration.
26158         * object-internals.h: New fields in MonoAssembly for CAS.
26159
26160 2004-08-05  Duncan Mak  <duncan@ximian.com>
26161
26162         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26163         CEE_LDELEM_ANY.
26164
26165 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26166
26167         * reflection.c: fix to deal with object[] arrays in custom ctors
26168         (bug #62550).
26169
26170 2004-08-05  Martin Baulig  <martin@ximian.com>
26171
26172         * class.c (mono_class_array_element_size): Added support for
26173         generic instances and correctly handle "recursive" types.
26174
26175 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
26176
26177         * assembly.c: Fix warnings.
26178
26179 2004-08-04  Martin Baulig  <martin@ximian.com>
26180
26181         * class.c
26182         (mono_type_get_name_recurse): Added `gboolean include_arity'
26183         argument specifying whether or not we should include the generic
26184         arity in the type name.
26185         (_mono_type_get_name): New static function.
26186         (mono_class_setup_vtable): If we're a generic instance, don't
26187         include the generic arity in the names of explicit method
26188         implementations.        
26189
26190 2004-08-03  Martin Baulig  <martin@ximian.com>
26191
26192         * class.c (mono_type_get_name_recurse): Enclose the generic type
26193         arguments in `<', '>'.
26194
26195 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26196
26197         * gc.c: make GC warning messages use the trace API, they are just
26198         noise to most of the users.
26199
26200 2004-08-03  Martin Baulig  <martin@ximian.com>
26201
26202         * debug-mono-symfile.c (read_string): Correctly read the string.
26203
26204 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
26205
26206         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
26207         
26208         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
26209         icalls.
26210         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
26211
26212 2004-07-30  Martin Baulig  <martin@ximian.com>
26213
26214         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
26215         Reflect latest symbol writer changes.   
26216
26217 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26218
26219         * object.c: always create an object if null is passed
26220         to Invoke() where a valuetype is expected.
26221
26222 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
26223
26224         * marshal.c (mono_marshal_init): make managed
26225         signatures match native ones better for 64bits.
26226
26227 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26228
26229         * appdomain.c: hack to build correctly the private bin path on windows.
26230         Fixes bug #61991.
26231
26232 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
26233
26234         * assembly.c: Load mscorlib from the correct framework directory
26235           (mono/<version>/mscorlib.dll).
26236         * appdomain.h: Added prototypes for new functions.
26237         * internals.h: Added some prototypes.
26238         * domain.c: When initializing the runtime, get from the executable and
26239           the configuration files the runtime version that the app supports.
26240           Added support methods for reading app.exe.config. Added list of versions
26241           supported by the JIT. Added two new methods: mono_init_from_assembly,
26242           which initializes the runtime and determines the required version from
26243           the provided exe file, and mono_init_version, which initializes
26244           the runtime using the provided version.
26245         * icall.c: Get machine.config from version-specific directory.
26246         * reflection.c: When generating an image, embed the version number
26247           of the current runtime.
26248
26249 2004-07-28  Dick Porter  <dick@ximian.com>
26250
26251         * socket-io.c
26252         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
26253         returned sockaddr size before creating the remote address object.
26254         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
26255         61608.
26256
26257 2004-07-28  Dick Porter  <dick@ximian.com>
26258
26259         * locales.c (string_invariant_compare_char): Fix invariant char
26260         compares between upper and lower cases.  Fixes bug 61458.
26261
26262 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
26263         
26264         * marshal.c: actually cache stelem.ref wrappers.
26265         
26266 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
26267
26268         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
26269         sections and remove the mono_cli_rva_map () function.
26270
26271 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26272
26273         * debug-mono-symfile.c: fix one more endianess issue, from a patch
26274         by Geoff Norton (<gnorton@customerdna.com>).
26275
26276 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26277
26278         * class.c: fix class loads for pointer types (typeof(int) !=
26279         typeof(int*)).
26280
26281 2004-07-27  Martin Baulig  <martin@ximian.com>
26282
26283         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
26284         reading the debugging information from an external ".mdb" file.
26285
26286 2004-07-24  Martin Baulig  <martin@ximian.com>
26287
26288         * reflection.c (mono_image_get_type_info): Only write a class
26289         layout entry if we actually have a size or a packing size.
26290
26291 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26292
26293         * reflection.c (type_get_fully_qualified_name): 
26294         insert cast to get type checking of ?: with non-gcc compilers
26295
26296 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26297
26298         * rand.c: use g_getenv for both lookups of
26299         MONO_EGD_SOCKET
26300
26301 2004-07-17  Martin Baulig  <martin@ximian.com>
26302
26303         * reflection.c (mono_reflection_bind_generic_method_parameters):
26304         Set `gmethod->reflection_info'.
26305
26306 2004-07-17  Martin Baulig  <martin@ximian.com>
26307
26308         * class.c (mono_class_create_from_typedef): Insert the newly
26309         created class into the hash table before computing the interfaces
26310         since we could be called recursively.
26311
26312 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
26313
26314         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
26315         function to implement stelem.ref in managed code
26316         * class-internals.h, debug-helpers.c: a new wrapper type
26317         for the above.
26318
26319 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26320
26321         * gc.c: allow GC handles to work even when no GC is compiled in.
26322         Fix part of bug #61134 (GetAddrOfPinnedObject).
26323
26324 2004-07-13  Peter Williams  <peter@newton.cx>
26325  
26326         * process.c (complete_path): Make sure we don't attempt to execute
26327         directories.
26328  
26329 2004-07-12  Geoff Norton <gnorton@customerdna.com>
26330
26331         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
26332           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
26333           and will add/subtract the hour if needed
26334
26335 2004-07-12  Martin Baulig  <martin@ximian.com>
26336
26337         * reflection.c (mono_field_get_object): If we have
26338         `field->generic_info', take the attributes from
26339         `field->generic_info->generic_type'.    
26340
26341 2004-07-12  Martin Baulig  <martin@ximian.com>
26342
26343         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26344         This function must be called before initializing the runtime.
26345         (mono_debug_init_1): New function; call this after initializing
26346         the runtime, but before loading the assembly.  It tells the
26347         debugger to load corlib and the builtin types.
26348
26349         * mono-debug-debugger.c: Did some larger changes in the debugging
26350         code; support recursive class declarations, make sure we actually
26351         add all classes.
26352
26353 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26354
26355         * debug-helpers.c: undo my previous patch and fixed the real issue in
26356         ../mini/exceptions-x86.c
26357
26358 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26359
26360         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26361         when no HOME env. variable was set and a NullRef was thrown in a .cctor
26362         called from other .cctors.
26363
26364 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26365
26366         * loader.c: Removed the mono_loader_wine_init hack now that we are
26367         doing a managed version of Windows.Forms.
26368
26369 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26370
26371         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26372         threadpool.c, threads.c: remove static data from rootset.
26373
26374 2004-07-09  Dick Porter  <dick@ximian.com>
26375
26376         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26377         Don't do any more processing if the matched length was 0.  It was
26378         increasing the size of the string before.  Fixes bug 61167.
26379
26380 2004-07-09  Dick Porter  <dick@ximian.com>
26381
26382         * socket-io.h:
26383         * socket-io.c
26384         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26385         Add support for SO_PEERCRED if its available.
26386
26387 2004-07-09  Peter Bartok <pbartok@novell.com>
26388         * loader.c: winelib.exe.so error message is now only displayed if
26389         MONO_DEBUG is set. To help us avoid questions when people are trying
26390         out the new Managed.Windows.Forms.
26391
26392 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26393
26394         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26395         for isinst and castclass wrappers.
26396
26397         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26398         to libmetadata from the JIT, so they could be used by the marshalling
26399         code and the interpreter.
26400
26401         * marshal.c: Register marshalling related JIT icalls here instead of
26402         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26403         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26404
26405         * metadata.h: Remove unneeded marshalling conversions.
26406
26407         * opcodes.c: Update for new opcodes.
26408         
26409 2004-07-08  Martin Baulig  <martin@ximian.com>
26410
26411         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26412         (mono_debug_get_domain_data): Make this function static.
26413
26414 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26415
26416         * gc.c, object.h: add nice GC handle API for embedders.
26417
26418 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26419
26420         * reflection.c: more changes for the new api
26421
26422         * object.c: When we reflect on a field w/ a constant value, it
26423         will not have a memory location, so we must access metadata. Also,
26424         allow easier reading of strings so that we can read them from
26425         the constant data.
26426
26427         * class.c (mono_class_layout_fields): no need for literal fields here.
26428
26429         * class-internals.h: api changes for const fields
26430
26431         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26432
26433 2004-07-06  Martin Baulig  <martin@ximian.com>
26434
26435         * mono-debug.h: Increment version number to 44.
26436
26437         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26438         now a gpointer, rewrote this whole method.
26439
26440         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26441         function.  Add information about the wrapper in a new "misc table".
26442
26443         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26444         for the new misc table.
26445
26446 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26447
26448         * metadata-internals.h image.c: Add a cache for helper signatures.
26449
26450         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26451
26452 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26453
26454         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26455         delegates from a delegate. Fixes #61033.
26456         
26457         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26458         marshalling of stringbuilder arrays. Fixes #59900.
26459
26460 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26461
26462         * icall.c: Add EnumBuilder:setup_enum_type icall.
26463
26464 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26465
26466         * icall.c: Added a new icall for the property version of
26467         OffsetOfStringData.
26468
26469 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26470
26471         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26472         it has a constant size across platforms.
26473
26474         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26475         stack trace.
26476
26477 2004-06-29  Martin Baulig  <martin@ximian.com>
26478
26479         * mono-debug.c (mono_debug_add_method): Protect the whole function
26480         in mono_debugger_lock(), not just parts of it.
26481
26482 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26483
26484         * reflection.c: make sure padding bytes in heaps are zeroed.
26485
26486 2004-06-24  David Waite  <mass@akuma.org>
26487
26488         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26489         image.c, loader.c, locales.c, marshal.c, metadata.c,
26490         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26491         string-icalls.c, threads.c: change to C90-style comments from C99 /
26492         C++ -style
26493
26494 2004-06-24  Dick Porter  <dick@ximian.com>
26495
26496         * threads.c
26497         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26498         return createdNew.  Fixes bug 60412.
26499
26500         * threads-types.h: 
26501         * icall.c: Add createdNew parameter to CreateMutex icall
26502
26503 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26504
26505         * reflection.c, object-internals.h: save default value in params.
26506
26507 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26508
26509         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26510         no need to build a new path combining that with the application base.
26511         Fixes bug #60442.
26512
26513 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26514
26515         * reflection.c: fixed minor standard compliance issues.
26516
26517 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26518
26519         * reflection.c: fixed issue with encoding some custom attributes
26520         (arrays in properties and fields, bug #60411).
26521
26522 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26523
26524         * reflection.c: fix start address when copying the public key token.
26525
26526 2004-06-23  Martin Baulig  <martin@ximian.com>
26527
26528         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26529         the `exc' object in a static object to put it into the GC's root set.
26530
26531 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26532
26533         * reflection.c: make mono_reflection_setup_internal_class ()
26534         callable a second time to setup a new parent class.
26535
26536 2004-06-23  Dick Porter  <dick@ximian.com>
26537
26538         * threads.c: Check for WAIT_IO_COMPLETION return values.
26539
26540 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26541
26542         * appdomain.c: Removed the g_free on the public key token. Now copy 
26543         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26544         * assembly.c: Added public key token string value when loading 
26545         assemblies. Fix bug #60439.
26546         * icall.c: Added missing informations (like public key) in 
26547         GetReferencedAssemblies. Fix #60519.
26548         * image.h: Changed definition for public key token from const char*
26549         public_tok_value to guchar public_key_token [17];
26550         * reflection.c: Updated for changes to public key token.
26551
26552 2004-06-22  Lluis Sanchez Gual
26553
26554         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26555         for the field in base classes.
26556
26557 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26558
26559         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26560         mark headers as not supported, they are installed only for use by the
26561         debugger.
26562
26563 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26564
26565         * *.c, *.h: avoid namespace pollution in public headers.
26566
26567 2004-06-21  Martin Baulig  <martin@ximian.com>
26568
26569         * exception.c (mono_get_exception_security): It's in
26570         "System.Security", not in "System".
26571
26572         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26573         the exception classes.
26574
26575 2004-06-21  Martin Baulig  <martin@ximian.com>
26576
26577         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26578         Protect the exception object from being finalized.
26579
26580 2004-06-21  Martin Baulig  <martin@ximian.com>
26581
26582         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26583         public function.
26584
26585 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26586
26587         * reflection.c: Load the assembly in mono_reflection_type_from_name,
26588         if it was not loaded before. Fix parts of #60439.
26589
26590 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26591
26592         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26593         code that was broken since Ben's change: wrappers are now
26594         dependent on the method signature only again.
26595
26596 2004-06-21  Martin Baulig  <martin@ximian.com>
26597
26598         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
26599         added interface support.
26600
26601 2004-06-21  Martin Baulig  <martin@ximian.com>
26602
26603         * class.c (mono_vtable_get_static_field_data): New public method.
26604
26605 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
26606
26607         * filewatcher.c : Windows build fix to be compliant with API changes.
26608
26609 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26610
26611         * class.h, class.c: more accessors.
26612         * metadata.h, metadata.c: prepare for hiding MonoType and
26613         MonoMethodSignature: people should use the accessors from now on
26614         outside of the tree.
26615
26616 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26617
26618         * *.c, *.h: more API cleanups.
26619
26620 2004-06-18  Jackson Harper  <jackson@ximian.com>
26621
26622         * assembly.c: Trace loading assemblies.
26623         * loader.c: Trace loading native libraries.
26624         * mono-config.c: Trace loading config files.
26625         
26626 2004-06-18  Dick Porter  <dick@ximian.com>
26627
26628         * locales.c: Tell ICU the lengths of strings, it can cope with
26629         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
26630
26631 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
26632
26633         * image.c: swapped name/filename;
26634
26635 2004-06-18  Martin Baulig  <martin@ximian.com>
26636
26637         * mono-debug-debugger.c (write_class): Write the parent class at
26638         the end of the header.
26639
26640 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26641
26642         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
26643
26644 2004-06-17  Raja R Harinath  <rharinath@novell.com>
26645
26646         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
26647         (bundle_obj): New conditional define.
26648         (BUILT_SOURCES): Remove.
26649         ($(bundle_srcs)): Make parallel-make safe.
26650         (libmonoruntime_la_LIBADD): Make unconditional.
26651         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
26652         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
26653
26654 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
26655
26656         * culture-info-tables.h: It was inconsistent with the latest
26657           supp info files.
26658
26659 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
26660
26661         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
26662         be loaded.
26663
26664         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
26665         with gcc 2.95.
26666
26667 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26668
26669         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
26670         cleaned up public header threads.h.
26671
26672 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26673
26674         * Makefile.am, *.c, *.h: more API cleanups.
26675
26676 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
26677
26678         * Makefile.am: removed monosn from compilation.
26679         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
26680         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
26681         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
26682         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
26683         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
26684         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
26685
26686 2004-06-15  Jackson Harper  <jackson@ximian.com>
26687
26688         * assembly.c: Make locales lower case when searching the GAC for
26689         assemblies. gacutil will always make locales lowercase when
26690         installing so this effectively makes them case insensitive.
26691         
26692 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
26693
26694         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
26695         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
26696           parameter which allows to choose whether the wait can be interrupted or 
26697           not. Also added the method mono_monitor_enter(), which locks the monitor
26698           using an infinite wait and without allowing interruption.
26699           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
26700           interrupted.
26701         * object.h: Added new fields in MonoThread. suspend_event holds the event
26702           used to susped/resume the thread. synch_lock is the lock object to use for
26703           modifying the thread state.
26704         * threads.c: Use the new synch_lock object for locking, instead of "this",
26705           which can generate deadlocks.
26706           Moved thread state change in Thread.Sleep and Thread.Join from managed
26707           to unmanaged code. This avoids a deadlock when the thread was suspended
26708           just after acquiring the thread lock.
26709           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
26710           Implemented Thread.Suspend using an event instead of ThreadSuspend,
26711           which is not fully implemented in the io-layer.
26712         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
26713
26714 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
26715
26716         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
26717         threads-types.h: more API cleanups.
26718
26719 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26720
26721         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
26722         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
26723         threadpool.c, threads.c: first pass at the exported API cleanup.
26724
26725 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
26726
26727         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
26728
26729 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26730
26731         * icall.c: added internalGetHome.
26732
26733 2004-06-14  Dick Porter  <dick@ximian.com>
26734
26735         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
26736         possible to return successfully when '.' or '..' were the only
26737         entries in a directory, but were skipped.  The MonoIOStat was not
26738         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
26739         Fixes bug 59574.
26740
26741 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26742
26743         * reflection.c: make binaries run on .Net 1.1 by default.
26744
26745 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26746
26747         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
26748
26749 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
26750
26751         * marshal.c: keep track of struct size with explicit layout
26752         (bug #59979).
26753
26754 2004-06-12  Martin Baulig  <martin@ximian.com>
26755
26756         * mono-debug-debugger.c: Comment out a debugging g_message().
26757
26758 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26759
26760         * reflection.c, reflection.h: do not free custom attrs that are cached.
26761         * icall.c: use braces to make code clearer.
26762
26763 2004-06-11  Martin Baulig  <martin@ximian.com>
26764
26765         * class.h (MonoInflatedField): New type.
26766         (MonoClassField): Replaced `MonoType *generic_type' with
26767         `MonoInflatedField *generic_info'.
26768
26769         * icall.c
26770         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
26771
26772 2004-06-11  Martin Baulig  <martin@ximian.com>
26773
26774         * reflection.c (mono_image_create_method_token): Correctly encode
26775         varargs methods.
26776
26777 2004-06-11  Martin Baulig  <martin@ximian.com>
26778
26779         * metadata.c (mono_metadata_parse_method_signature): When parsing
26780         a MethodDef which has VarArgs, also set sentinelpos if we don't
26781         have any parameters.
26782
26783 2004-06-11  Martin Baulig  <martin@ximian.com>
26784
26785         * verify.c (mono_method_verify): In CEE_CALL, use
26786         mono_method_get_signature() to get the method's signature, unless
26787         we're a PInvoke method.
26788
26789 2004-06-10  Jackson Harper  <jackson@ximian.com>
26790
26791         * assembly.c: Use <path>/lib/mono/gac for the extra paths
26792         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
26793         logical name as the supplied path is just a prefix to the gac not
26794         the direct path to it.
26795         
26796 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
26797
26798         * reflection.c: make the token for a created method match
26799         the token of the MethodBuilder it was created from
26800         (IKVM requires this behaviour now).
26801
26802 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
26803
26804         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
26805         reflection.c, socket-io.c: leak fixes.
26806
26807 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
26808
26809         * icall.c: handle sentinel pos in vararg methods in position different
26810         from 0.
26811
26812 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26813
26814         * culture-info-tables.h: freshly generated.
26815
26816 2004-06-09  Martin Baulig  <martin@ximian.com>
26817
26818         * loader.c (mono_get_method_constrained): Call `mono_class_init
26819         (constrained_class)'.   
26820
26821 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
26822
26823         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
26824         any methods. Fixes #59629.
26825
26826 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26827
26828         * culture-info-tables.h: reflecting locale-builder updates.
26829
26830 2004-06-08  Dick Porter  <dick@ximian.com>
26831
26832         * object.h:
26833         * locales.c: Fixed compile warnings, including a real bug in
26834         CompareInfo_internal_compare.
26835         
26836 2004-06-08  Dick Porter  <dick@ximian.com>
26837
26838         * locales.c
26839         (ves_icall_System_Globalization_CompareInfo_internal_index):
26840         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26841         Double-check the resuls of usearches, because ICU currently
26842         ignores most of the collator settings here.  Fixes bug 59720.
26843         
26844 2004-06-08  Dick Porter  <dick@ximian.com>
26845
26846         * locales.c
26847         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26848         Fix memory leak and segfault-causing typo.  No idea how this one
26849         lasted so long without being noticed.
26850
26851 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
26852
26853         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
26854         any methods. Fixes #59629.
26855
26856 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26857
26858         * assembly.c:
26859         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
26860         own the critical section before). Removed dead code (that's done
26861         in the preload hook).
26862
26863         (mono_assembly_load_with_partial_name): call the preload hook.
26864
26865 2004-06-08  Martin Baulig  <martin@ximian.com>
26866
26867         * metadata.c (mono_metadata_signature_alloc): Default
26868         `sentinelpos' to -1.
26869
26870         * reflection.c (mono_image_get_array_token): Likewise.
26871
26872 2004-06-08  Martin Baulig  <martin@ximian.com>
26873
26874         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
26875
26876         * metadata.c (mono_metadata_parse_method_signature): When parsing
26877         a MethodDef which has VarArgs, set sentinelpos.
26878
26879         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
26880         `gint16' since we're using -1 for non-varargs methods.
26881
26882         * reflection.c
26883         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
26884         (method_encode_signature): Added varargs support.
26885         (method_builder_encode_signature): Likewise.
26886         (mono_image_get_varargs_method_token): New static method.
26887         (mono_image_create_method_token): New public method; this is
26888         called via an icall instead of mono_image_create_token() when
26889         calling a varargs method.       
26890
26891 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
26892
26893         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
26894
26895 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26896
26897         * culture-info-tables.h : Reflecting the latest locale-builder that
26898           fixed empty array representation ({} to {0}).
26899
26900 2004-06-07  Jackson Harper  <jackson@ximian.com>
26901
26902         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
26903         looking up extra gac paths. This allows MONO_GAC_PATH to act
26904         exactly like a prefix.
26905         
26906 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26907
26908         * reflection.c (mono_reflection_type_from_name): Make a copy of the
26909         type name before modifying it. Fixes #59405.
26910
26911 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26912
26913         * culture-info.h: added fields for "all datetime patterns".
26914         * locales.c: (  ves_icall_System_Globalization_CultureInfo
26915           _construct_datetime_format ()): fill xxx_patterns fields.
26916         * object.h: added fields for "all datetime patterns" to
26917           MonoDateTimeFormatInfo.
26918         * culture-info-tables.h: reflecting locale-builder updates.
26919
26920 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26921
26922         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
26923         the event has no add and remove methods. Fixes #59629.
26924
26925 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
26926
26927         * object.c: Fixed possible integer overflow when allocating large
26928         strings.
26929
26930 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26931
26932         * culture-info-tables.h: reflecting locale-builder updates.
26933
26934 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26935
26936         * culture-info-tables.h: reflecting locale-builder updates.
26937
26938 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
26939
26940         * culture-info-tables.h: reflecting locale-builder updates.
26941
26942 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
26943
26944         * threads.c: Made Thread.Sleep abortable.
26945
26946 2004-06-02  Martin Baulig  <martin@ximian.com>
26947
26948         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
26949
26950         * debug-mono-symfile.h: Bumped symbol file version number to 37.
26951
26952 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
26953
26954         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
26955
26956 2004-05-30  Jackson Harper  <jackson@ximian.com>
26957
26958         * reflection.c: Do not hardcode assembly versions or public key
26959         tokens anymore. All of this except the corlib section was dead
26960         code anyways.
26961         
26962 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
26963
26964         * object.c (mono_runtime_invoke_array): Automatically create boxed
26965         objects for byref valuetypes if needed. Fixes #59300.
26966         
26967         * object.c (mono_method_return_message_restore): Handle 
26968         MONO_TYPE_OBJECT as well.
26969
26970 2004-05-28  Jackson Harper  <jackson@ximian.com>
26971
26972         * reflection.c: The modified type encoding was causing build
26973         problems. Reverted for now.
26974         
26975 2004-05-28  Jackson Harper  <jackson@ximian.com>
26976
26977         * reflection.c/h: Take an assembly ref so that we dont create
26978         fully qualified names when encoding types in the same assembly as
26979         the custom attribute being emitted.
26980         * appdomain.c: Increment version number.
26981         
26982 2004-05-26  Duncan Mak  <duncan@ximian.com>
26983
26984         * icall.c
26985         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
26986         Set the full version number (major, minor, build, revision).
26987
26988 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
26989
26990         * marshal.c (emit_struct_conv): increment src/dst after blit
26991         (mono_marshal_get_managed_wrapper,
26992         mono_marshal_get_native_wrapper): make sure we have marshalling
26993         info before marshalling params (info computation affects
26994         blittable)
26995
26996         * class.c (class_compute_field_layout): correctly deal with
26997         blittable
26998         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
26999         value types (as per what windows dows by default)
27000         (mono_class_setup_mono_type): System.ValueType is blittable
27001         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
27002         blittable
27003
27004         * marshal.c (mono_marshal_load_type_info): flag types  as
27005         non-blittable if the native layout doesn't match the managed
27006         layout
27007
27008 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27009
27010         * appdomain.c: don't add stuff in the private search path that is
27011         above the application base. If application base is not set, there's
27012         no private search path.
27013
27014 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
27015
27016         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
27017         byref struct arguments in native->managed marshalling.
27018
27019 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
27020
27021         * marshal.c (mono_marshal_get_runtime_invoke): correctly
27022         cache methods using signature (special case for methods
27023         that are value type or string class)
27024         
27025         * image.c (mono_image_close): clean up allocated GSList's
27026         in runtime_invoke_cache.
27027
27028 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27029
27030         * mono-config.c: set the correct path for mono_cfg_dir on windows when
27031         there's no MONO_CFG_DIR environment variable defined.
27032
27033 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27034
27035         * threads.c: windows version must be >= 0x0500 to include OpenThread.
27036
27037 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
27038
27039         * threadpool.c: Really wait for 500ms after the async call, even if the wait
27040           is interrumped.
27041         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
27042           before waiting for it, and call CloseHandle after the wait to unref it.
27043           This will make sure that handles are not disposed too early.
27044
27045 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27046
27047         * appdomain.c:
27048         * appdomain.h:
27049         * icall.c: removed
27050         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
27051         needed now.
27052
27053         * object.c: se the application_base only for the domain that runs
27054         Main. Fixes bug #59216,
27055
27056 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27057
27058         * appdomain.c:
27059         * object.c: only the domain in which Main is run have
27060         SetupInformation.ConfigurationFile set, so moved a few lines from
27061         appdomain.c to object.c.
27062
27063 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27064
27065         * appdomain.c: we tried to load [name].(dll|exe), but according
27066         to bug #57710, we must also try [culture]/[name].(dll|exe) and
27067         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
27068         There's a test case attached to bug #58922.
27069
27070 2004-05-27  Dick Porter  <dick@ximian.com>
27071
27072         * icall.c:
27073         * file-io.c: Implemented icalls for locking and unlocking regions
27074         in a file.
27075         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
27076         FALSE on error (fixes both compiler warning and real bug.)
27077
27078 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
27079
27080         * culture-info-tables.h: reflecting locale-builder updates.
27081
27082           (Added missing ChangeLog entry for 05/26)
27083
27084 2004-05-27  Jackson Harper  <jackson@ximian.com>
27085
27086         * locales.c: Fix some cut and paste errors.
27087         
27088 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27089
27090         * mono-config.c: set the correct path for config. directory on windows.
27091
27092 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27093
27094         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27095           on win32.
27096
27097 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27098
27099         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27100         from pinvoke functions.
27101         
27102         * marshal.c (mono_ftnptr_to_delegate): Implement this.
27103
27104 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27105
27106         * culture-info-tables.h: reflecting locale-builder updates.
27107
27108 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27109
27110         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27111         #59086.
27112
27113 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
27114
27115         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27116         * icall.c: Modified icalls for RNG.
27117         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
27118         Windows (CryptoAPI).
27119
27120 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27121
27122         * locales.c: Fix build.
27123
27124 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
27125
27126         * culture-info-tables.h: reflecting locale-builder updates.
27127
27128 2004-05-25  Jackson Harper  <jackson@ximian.com>
27129
27130         * locales.c: When creating the current culture use the $LANGs
27131         specific culture. So DateTimeFormat and NumberFormat entries are created.
27132         
27133 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27134
27135         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27136         a char array as parameter.
27137
27138 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
27139
27140         * image.c: In mono_image_open(), always use an absolute path name to
27141           look for already loaded images.
27142
27143 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
27144
27145         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27146         missing in the windows build (like older cygwin include files).
27147
27148 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
27149
27150         * icall.c: Fixed check for possible integer overflow in Buffer_
27151         BlockCopy icall. Replaced comments style // by /* */.
27152
27153 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
27154
27155         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27156         
27157         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27158         check after MONO_VTADDR. Fixes pinvoke2.exe.
27159
27160         * marshal.h marshal.c metadata.h: Add beginnings of support for
27161         ftnptr -> delegate marshalling.
27162
27163 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
27164
27165         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27166         * threads.c: Fix warnings.
27167
27168 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
27169
27170         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27171         * icall.c: Registered icalls for Suspend and Resume.
27172         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27173           Thread.Abort.
27174         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27175         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27176         * process.c: Use WaitForSingleObjectEx.
27177         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
27178           checkpoints.
27179         * threads.c, threads.h: Make use of new Ex wait methods. Improved
27180           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27181           for Suspend and Resume. Added new mono_thread_stop, used for stoping
27182           background threads. Added basic support for Abort in Windows.
27183           Start new threads using a managed delegate invoke wrapper. This wrapper
27184           has an interruption checkpoint that is needed since an interruption
27185           can be requested before the thread leaves the unmanaged code that starts 
27186           the thread.
27187         * marshal.c: Added interruption checkpoint after every native call, and
27188           also before managed calls for wrappers called from unmanaged code to
27189           go into managed code.
27190         * object.h: Added new field in MonoThread to keep track of interruption
27191           requests.
27192
27193 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
27194
27195         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
27196         calls.
27197
27198 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27199
27200         * appdomain.c:
27201         * assembly.c:
27202         * gc.c:
27203         * locales.c:
27204         * mono-config.c:
27205         * rand.c: getenv -> g_getenv (windows!)
27206
27207         * process.c: complete_path is also used on non-windows platforms.
27208
27209 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27210
27211         * icall.c: new signature for Process_Start.
27212
27213         * process.[ch]: new signature for Process_Start. If we're on windows
27214         and UseShellExecute is false, we have to search for the program by
27215         ourselves if we don't get a full path.
27216
27217 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
27218
27219         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
27220         marshalling and call CleanUpNativeData if needed. Fixes #58646.
27221
27222 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27223
27224         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
27225         Fixes bug #58373.
27226
27227 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27228
27229         * process.c: use double quotes to quote program name and arguments on
27230         windows. Fixes bug #58575.
27231
27232 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27233
27234         * file-io.c: don't return "." and ".." when using windows Find*File.
27235
27236 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
27237
27238         * marshal.c: Don't pass wrappers to message init because method 
27239         addressed used to lookup metadata. part of remoting[2|3] fix.
27240
27241 2004-05-15  Jackson Harper  <jackson@ximian.com>
27242
27243         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
27244         path is essentially the same as MONO_PATH except that it points to
27245         GACs instead of lib directories.
27246         * loader.h: The user gac is gone so we dont need function to
27247         enable/disable it.
27248         * mono-config.c: user gac option is now gone.
27249         
27250 2004-05-15  Jackson Harper  <jackson@ximian.com>
27251
27252         * culture-info.h: Make defines more consistent, add calendar data
27253         to the culture info table.
27254         * culture-info-tables.h: Add basic calendar data. Basically
27255         everyone gets default gregorian until all the data is
27256         updated.
27257         * locales.c: Use the new consistent defines. Set calendar data for
27258         culture info objects.
27259         * object.h: add a field for calendar data to CultureInfo
27260         
27261 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
27262
27263         * image.c: image->runtime_invoke_cache is keyed on signatures now.
27264         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
27265         a signature.
27266         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
27267         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
27268         an extra param that is the pointer of the method to invoke. The IL for
27269         the invoke method is no longer specific to the method, but to the
27270         signature of the method. Thus, we can share the same code for multiple
27271         methods. This reduces the number of methods that have to be compiled.
27272
27273 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
27274
27275         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
27276
27277         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27278
27279         * icall.c: Optimize Buffer.BlockCopy.
27280
27281 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27282
27283         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
27284         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
27285         quote). Changed them to "MMMM yyyy".
27286
27287 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
27288
27289         * rand.c
27290         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
27291
27292 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
27293
27294         * reflection.h: Updated after changes to managed structures.
27295
27296         * appdomain.c: Bump corlib version.
27297
27298 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27299
27300         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
27301         windows.
27302
27303 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27304
27305         * Makefile.am: link to ../os/libmonoos.la on windows.
27306
27307         * assembly.c:
27308                 -If MONO_DEBUG, warn about non-existing directories in
27309                 MONO_PATH.
27310                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
27311                 compile time variable.
27312                 -Removed init_default_path and call mono_set_rootdir from
27313                 libmonoos.a instead (windows only).
27314
27315         * assembly.h: declare mono_assembly_getrootdir().
27316
27317         * domain.c:
27318         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
27319
27320         * loader.c: s/getenv/g_getenv/
27321
27322 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
27323
27324         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27325
27326         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27327
27328         * metadata.h: Add new marshalling conversions.
27329
27330         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27331         function.
27332
27333         * reflection.c (mono_reflection_get_type): Lookup the type in all
27334         modules of a multi-module assembly. Fixes #58291.
27335
27336 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
27337
27338         * threads.c: Before aborting a background, set the StopRequested
27339         state.  This avoids throwing the Abort exception.
27340         In mono_thread_manage, don't continue with the shutdown until all
27341         aborted threads have actually stopped.
27342
27343 2004-05-10  Jackson Harper  <jackson@ximian.com>
27344
27345         * locales.c: Remove the modifier from culture names.
27346         
27347 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27348
27349         * Makefile.am: monosn is not installed any more. It has been deprecated
27350         in favor of sn.
27351
27352 2004-05-07  Jackson Harper  <jackson@ximian.com>
27353
27354         * locales.c
27355         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27356         Fix array construction, add bailout if the length is 0.
27357
27358 2004-05-07  Dick Porter  <dick@ximian.com>
27359
27360         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27361         machine doesn't have a DNS entry.  Patch by Urs Muff
27362         (umuff@quark.com), fixes bug 57928.
27363
27364 2004-05-06  Jackson Harper  <jackson@ximian.com>
27365
27366         * reflection.c: Handle null PublicTokens properly. alloc mem for
27367         assembly names culture so we dont crash when freeing it.
27368         
27369 2004-05-06  Jackson Harper  <jackson@ximian.com>
27370
27371         * assembly.c: Check the usergac when loading with partial names.
27372         
27373 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27374
27375         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27376         does nothing for now (not required for Linux/Windows) but the class
27377         library can call it (and a newer or modified runtime could need it).
27378         * icall.c: Registred icall.
27379
27380 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27381
27382         * loader.c: prints a message on module loading error we set MONO_DEBUG
27383         environment variable.
27384
27385 2004-05-05  Jackson Harper  <jackson@ximian.com>
27386
27387         * appdomain.c: Handle PublicKeyToken=null properly.
27388         
27389 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27390
27391         * environment.c|h: Added icall ves_icall_System_Environment_
27392         GetOSVersionString to get the current OS version as a string.
27393         * icall.c: Registred icall.
27394
27395 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27396
27397         * object.c: in mono_object_get_virtual_method(), take into account that
27398         non-virtual methods don't have a slot in the vtable. Check needed when
27399         the object is a proxy.
27400
27401 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27402
27403         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27404         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27405
27406         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27407
27408         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27409         passed when a valuetype is expected.
27410
27411         * object.c (mono_unhandled_exception): Only set the exit code if the
27412         exception happens in the main thread. Fixes thread5.exe.
27413
27414         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27415         invalid names. Fixes #58047.
27416
27417 2004-05-03  Jackson Harper  <jackson@ximian.com>
27418
27419         * assembly.c: This line was committed accidently and is unneeded.
27420         
27421 2004-05-03  Jackson Harper  <jackson@ximian.com>
27422
27423         * icall.c: Add new icall for Assembly::LoadWithPartialName
27424         * assembly.c/.h: new function that probes the GAC to load partial
27425         assembly names by Paolo Molaro.
27426         
27427 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27428
27429         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27430         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27431         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27432         full type name.
27433
27434 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27435
27436         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27437         * reflection.c: fix bug when parsing a full type name and Version is not
27438         the last thing in the string.
27439
27440 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27441
27442         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27443         crashes when it is freed.
27444
27445 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27446
27447         * assembly.c: print the compat warning to stderr.
27448
27449 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27450
27451         * assembly.c (mono_assembly_load_references): Add a compatibility
27452         hack to run old applications that might be still referencing the
27453         3300-based assemblies, only do this for System.xxx.
27454
27455 2004-05-01  Jackson Harper  <jackson@ximian.com>
27456
27457         * appdomain.c: If the culture is neutral we set it to "".
27458         
27459 2004-04-29  Jackson Harper  <jackson@ximian.com>
27460
27461         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27462
27463 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27464  
27465         * string-icalls.c: added low overhead function for copying chars
27466         * icall.c: added needed icall for the above function
27467  
27468 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27469
27470         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27471         Environment.GetLogicalDrives.
27472
27473 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27474
27475         * rand.c: try and talk to egd or prngd
27476         for random bytes if opening devices fail.
27477
27478 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27479
27480         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27481         alignment for the type using the native alignment of its members 
27482         instead of using klass->min_align.
27483
27484         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27485
27486 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27487
27488         * file-io.c:
27489         * socket-io.c: added check for sys/aio.h.
27490
27491 2004-04-28  Dick Porter  <dick@ximian.com>
27492
27493         * threads.c: Don't abort a thread thats already aborting, when
27494         terminating everything.
27495
27496 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27497
27498         * icall.c: added 2 new async calls for Socket.
27499
27500         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27501         IO on *nix systems.
27502
27503         * threadpool.c: removed unused variable.
27504
27505 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27506
27507         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27508
27509 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27510
27511         * locales.c: put back string_invariant_tolower () and
27512         string_invariant_toupper ().
27513
27514 2004-04-26 David Waite <mass@akuma.org>
27515
27516         * file-io.h:
27517         * socket-io.h:
27518         * threads.h:
27519         * unicode.h: remove comma from end of enumeration declarations
27520
27521 2004-04-26 David Waite <mass@akuma.org>
27522
27523         * debug-mono-symfile.h:
27524         * decimal.c:
27525         * mono_debug.h:
27526         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27527
27528
27529 2004-04-26  Jackson Harper  <jackson@ximian.com>
27530
27531         * appdomain.c: Increment version number.
27532         
27533 2004-04-26  Jackson Harper  <jackson@ximian.com>
27534
27535         * appdomain.c: Set assembly references public token value when
27536         PublicKeyToken is specified, not the hash_value. Free public token
27537         values when free assembly name data. Previously the public key
27538         token was hex decoded, however we are using hex encoded public key
27539         tokens, so this is not neccasary.
27540         * assembly.c: Lookup assemblies in the gac if their public token
27541         value is set. Add function to allow enabling user gac
27542         lookups. Specify whether or not the assembly was loaded from the
27543         GAC. Compare full assembly names when checking the cache for
27544         assemblies (Temporarily disabled see comment in code). Remove
27545         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27546         specifies trace-loader they get extra info to stdout on the
27547         loading of assemblies.
27548         * image.h: Add a field for an assembly references public token
27549         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27550         whether an assembly has been loaded from the GAC.
27551         * image.c: Remove a corlib -> mscorlib name mapping.
27552         * loader.h: Add function to enable/disable the user gac.
27553         * mono-config.c: Check if the usergac is enabled in the config
27554         file.
27555         * icall.c: New icall to determine whether or not an assembly has
27556         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27557         * tabldefs.h: Add constant for assemblyref flag that specifies a
27558         full public key is used instead of a public token.
27559         * reflection.c: Remove mscorlib -> corlib mappings. Set
27560         PublicTokenValue instead of hash value. This value is a hex
27561         string so it does not need to be expanded.
27562
27563 2004-04-26  Martin Baulig  <martin@ximian.com>
27564
27565         * mono-debug-debugger.c (mono_debugger_initialize): Set
27566         `mono_debugger_initialized' before calling mono_debug_lock().
27567
27568 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27569
27570         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27571           InternalToUpper/InternalToLower.
27572         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27573           removed invariant culture shortcut.  This is now done in managed code.
27574         * locales.c: (string_invariant_toupper/tolower) removed.
27575
27576 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27577
27578         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27579         Added Poll internal call.
27580
27581         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27582         call for Poll. Select was too heavy for polling a single socket.
27583
27584         * threadpool.[ch]: added mono_threadpool_cleanup.
27585         * threads.c: use it. Don't use Thread_Abort on windows.
27586
27587 2004-04-23  Martin Baulig  <martin@ximian.com>
27588
27589         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27590
27591 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
27592
27593         * icall.c: Registred new icalls for key pair protection and added an
27594         icall for Environment.GetFolderPath on Windows.
27595         * security.c|h: Added new icalls for key pair protection.
27596
27597 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27598
27599         * socket-io.c: don't display the non-supported family warning for known
27600         families. Now this is not displayed on windows when checking support
27601         for IPv4/IPv6.
27602
27603 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27604
27605         * class.c: don't display the layout warning for static fields.
27606
27607 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
27608
27609         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
27610         * locales.c, locales.h: Added new icalls for culture-specific
27611         Char.ToLower and Char.ToUpper.
27612
27613 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27614
27615         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
27616         by David Waite.
27617
27618 2004-04-20  Martin Baulig  <martin@ximian.com>
27619
27620         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
27621         of the type name before passing it to mono_reflection_type_from_name().
27622
27623 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
27624
27625         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
27626         encodings here. Fixes #56965.
27627
27628 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
27629
27630         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27631         fix test on strstr result not that I can see anything that
27632         relies on the result.
27633
27634 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
27635
27636         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
27637         Fixes #57081.
27638
27639         * marshal.c (mono_marshal_get_string_encoding): New helper function.
27640
27641         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
27642         function to determine which marshalling to use for strings. Fixes
27643         #56965.
27644
27645         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
27646
27647         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
27648
27649 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
27650
27651         * icall.c: #include mono-config.h
27652
27653 2004-04-15  Jackson Harper  <jackson@ximian.com>
27654
27655         * culture-info-tables.h: Fix date formats for en-US culture.
27656         
27657 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
27658
27659         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
27660         ThreadPool.SetMinThreads.
27661         * threadpool.c: Implemented ThreadPool.GetMinThreads and
27662         ThreadPool.SetMinThreads.
27663
27664 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27665
27666         * mono-config.c: also load the .config file in the directory
27667         where the assembly was found.
27668
27669 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
27670
27671         * assembly.c: load per-assembly config files.
27672         * icall.c: decrapified code to get the config dir and moved to
27673         mono-config.c.
27674         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
27675         per-assembly config files. When doing a dll map lookup give precedence
27676         to the per-assembly data.
27677
27678 2004-04-14  Martin Baulig  <martin@ximian.com>
27679
27680         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
27681         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
27682         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
27683
27684         * mono-debugger-debugger.c: While the debugger is locked, remember
27685         whether the symbol tables have changes and send one single
27686         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
27687
27688 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
27689
27690         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
27691
27692         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
27693         function.
27694
27695         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
27696         account when marshalling string arrays. Fixes #56965.
27697
27698 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
27699
27700         * icall.c: Add new icalls mapping for security.
27701         * security.c|h: Add internal calls for WindowsIdentity,
27702         WindowsImpersonationContext and WindowsPrincipal.
27703
27704 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
27705
27706         * class.c: Added comment to ensure the System.MonoDummy class
27707         is removed when no longer necessary
27708
27709 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
27710
27711         * appdomain.c: Pass arguments to the bootstraping exceptions to
27712         minimize JITed methods at boot
27713
27714         * metadata.c (mono_exception_from_name_two_strings): Allow for the
27715         second string to be null.
27716
27717         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27718         Change the protocol to minimize the JIT methods at startup.  Now
27719         it Returns the internal codepage, if the value of "int_code_page"
27720         is 1 at entry, and we can not compute a suitable code page
27721         number, returns the code page as a string.
27722
27723 2004-04-13  Jackson Harper  <jackson@ximian.com>
27724
27725         * culture-info-tables.h: Fix number of decimal digits for all
27726         english locales.
27727
27728 2004-04-13  Jackson Harper  <jackson@ximian.com>
27729
27730         * icall.c: Clairfy out of sync error message. It is not always
27731         your corlib that is out of sync.
27732
27733 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
27734
27735         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
27736         properties when only the set accessor is overriden. Fixes #55874.
27737
27738 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
27739
27740         * assembly.c (mono_assembly_load_references): Make this thread safe.
27741         Fixes #56327.
27742
27743 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
27744
27745         * monosn.c: Add missing initialization calls.
27746
27747 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
27748
27749         * locales.c:
27750         ves_icall_System_Globalization_CultureInfo_construct_number_format
27751         Fix g_assert so it compiles on fussier compilers re int/ptr
27752         mismatch
27753
27754 2004-04-08  Dick Porter  <dick@ximian.com>
27755
27756         * socket-io.h:
27757         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
27758         53992.  Also rearrange the code so that the internal calls return
27759         an error value and exceptions are thrown from managed code.
27760
27761         * icall.c: Add type info to the socket icalls.
27762
27763 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27764
27765         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
27766         owes me a beer.
27767
27768 2004-04-07  Martin Baulig  <martin@ximian.com>
27769
27770         * class.c (mono_class_from_generic_parameter): Don't default
27771         `klass->parent' to `mono_defaults.object_type'.
27772
27773 2004-04-07  Martin Baulig  <martin@ximian.com>
27774
27775         * reflection.c (mono_reflection_initialize_generic_parameter): Set
27776         `param->pklass->reflection_info'.       
27777
27778 2004-04-07  Jackson Harper  <jackson@ximian.com>
27779
27780         * culture-info-tables.h: Fix date separator symbol.
27781         
27782 2004-04-07  Martin Baulig  <martin@ximian.com>
27783
27784         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
27785         from System.Type to System.MonoType.
27786
27787 2004-04-07  Martin Baulig  <martin@ximian.com>
27788
27789         * reflection.h
27790         (MonoReflectionGenericParam): Added `has_reference_type' and
27791         `has_value_type' fields.
27792
27793         * reflection.c (mono_image_get_generic_param_info): Encode the
27794         correct flags if we have the `class' or `struct' constraint.
27795
27796 2004-04-07  Martin Baulig  <martin@ximian.com>
27797
27798         * reflection.h
27799         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
27800
27801 2004-04-07  Jackson Harper  <jackson@ximian.com>
27802
27803         * appdomain.c: Revert extra patches, just wanted to bump the
27804         version number.
27805         
27806 2004-04-07  Jackson Harper  <jackson@ximian.com>
27807
27808         * Makefile.am: Add culture-info private headers.
27809         * icall.c: Add new icalls for contructing locales.
27810         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
27811         * locales.h: Declare new culture info construction methods.
27812         * object.h: Add new fields used to avoid the CultureMap to
27813         MonoCultureInfo.
27814         * culture-info.h: Definition of structs used in the culture info
27815         tables.
27816         * culture-info-tables.h: Autogenerated tables that contain culture
27817         info data. This file was generated with the locale-builder tool.
27818         * appdomain.c: Incement corlib version number.
27819         
27820 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
27821
27822         * appdomain.c: (mono_runtime_init) move mono_thread_init
27823         to before mono_object_new calls so critical sections
27824         are initialized before use.
27825
27826 2004-04-07  Martin Baulig  <martin@ximian.com>
27827
27828         * icall.c
27829         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
27830         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
27831         (ves_icall_MonoGenericParam_initialize): Removed.
27832         (monogenericparam_icalls): Removed.
27833         (generictypeparambuilder_icalls): Added new table for
27834         System.Reflection.Emit.GenericTypeParameterBuilder.
27835
27836         * reflection.c
27837         (mono_reflection_define_generic_parameter): Removed.
27838         (mono_reflection_initialize_generic_parameter): This is now called
27839         from GenericTypeParameterBuilder's .ctor.
27840
27841 2004-04-06  Martin Baulig  <martin@ximian.com>
27842
27843         * class.c (mono_class_init): Don't inflate nested classes in a
27844         generic instance.
27845         (mono_type_get_name_recurse): Include the generic arguments for
27846         generic instances and generic type declarations.
27847         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
27848         (_mono_class_get_instantiation_name): Removed.
27849         (mono_class_create_generic): Always use `gklass->name' as our name.
27850
27851         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
27852
27853         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
27854         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
27855         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
27856         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
27857         closed generic methods here.
27858
27859         * reflection.c
27860         (mono_reflection_generic_inst_get_nested_types): Removed.
27861         (inflate_mono_method): Copy the generic parameters from the
27862         MonoMethodHeader into out MonoGenericMethod.
27863
27864 2004-04-06  Martin Baulig  <martin@ximian.com>
27865
27866         * row-indexes.h
27867         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
27868
27869         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
27870
27871         * reflection.c (build_compressed_metadata): If we have any entries
27872         in the GenericParam, MethodSpec or GenericParamConstraint tables,
27873         set the header version to 1.1.
27874
27875 2004-04-06  Martin Baulig  <martin@ximian.com>
27876
27877         * class.c (mono_class_init): If we're a generic instance,
27878         initialize our nested classes, too.
27879         (_mono_class_get_instantiation_name): Deal with the new `!%d'
27880         suffix. 
27881
27882 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27883
27884         * process.c: quote the argument passed to the shell on windows.
27885
27886 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
27887
27888         * threads.c (mono_alloc_special_static_data): Allow this to be
27889         called during startup.
27890
27891 2004-04-02  Martin Baulig  <martin@ximian.com>
27892
27893         * icall.c
27894         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
27895
27896 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
27897
27898         * icall.c: Fix build.
27899
27900 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
27901
27902         * Makefile.am: Added security.c|h.
27903         * icall.c: Added icall for get_UserName;
27904         * security.c: New file for security related icalls. Added function
27905         get_UserName for System.Environment (fix #56144).
27906         * security.h: New. Header file for security.c
27907
27908 2004-04-02  Dick Porter  <dick@ximian.com>
27909
27910         * icall.c: Deleted the icalls that were obsoleted some time ago
27911         by the ICU string code, and which were mixed into the icall
27912         rearranging.  Fixes bug 55969.
27913
27914         * string-icalls.h: 
27915         * string-icalls.c: Deleted the code that those icalls reference.
27916
27917 2004-04-01  Martin Baulig  <martin@ximian.com>
27918
27919         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
27920
27921         * class.c (mono_class_from_generic_parameter): Don't set 
27922         TYPE_ATTRIBUTE_INTERFACE.
27923         (my_mono_class_from_generic_parameter): Likewise.
27924
27925 2004-04-01  Martin Baulig  <martin@ximian.com>
27926
27927         * loader.c (find_method): Added an optional `MonoClass *ic'
27928         argument to search in a specific interface.
27929         (mono_get_method_constrained): New public function.
27930
27931 2004-04-01  Martin Baulig  <martin@ximian.com>
27932
27933         * reflection.c (mono_image_get_generic_field_token): Use the
27934         `handleref' cache here.
27935
27936 2004-04-01  Martin Baulig  <martin@ximian.com>
27937
27938         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
27939
27940         * reflection.c (create_generic_typespec): Use the `typespec' hash
27941         here, not the `typeref' one.    
27942
27943 2004-04-01  Martin Baulig  <martin@ximian.com>
27944
27945         * class.c (mono_class_inflate_generic_type): Moved the
27946         functionality into a new static inflate_generic_type() which
27947         returns NULL if it didn't do anything.  Only increment the
27948         `mono_stats.inflated_type_count' if we actually inflated
27949         something.
27950         (mono_class_get_full): Check the classes type to see whether we
27951         need to inflate it; also inflate MONO_TYPE_(M)VAR.
27952
27953 2004-04-01  Jackson Harper  <jackson@ximian.com>
27954
27955         * reflection.c: Set culture for assembly references.
27956         
27957 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
27958
27959         * reflection.[ch], icall.[ch], Fix support for pinning variables.
27960
27961 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27962
27963         * assembly.c:
27964         (do_mono_assembly_open): the critical section also covers
27965         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
27966
27967 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27968
27969         * threads.c:
27970         (mono_manage_threads): abort the background threads when finishing.
27971         Fixes bug #47232.
27972
27973 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27974
27975         * gc.c: only close the done_event handle if there was no timeout.
27976         C-ified comments.
27977
27978 2004-03-30  Martin Baulig  <martin@ximian.com>
27979
27980         * icall.c (icall_entries): It's called "System.Activator", not
27981         "System.Activation".    
27982
27983 2004-03-30  Martin Baulig  <martin@ximian.com>
27984
27985         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
27986         (mono_class_create_from_typespec): Likewise.
27987
27988 2004-03-30  Martin Baulig  <martin@ximian.com>
27989
27990         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
27991         `has_ctor_constraint' and `initialized'.
27992
27993 2004-03-30  Martin Baulig  <martin@ximian.com>
27994
27995         * reflection.c (encode_new_constraint): New static function to add
27996         the constructor constraint attribute to a type parameter.
27997         (encode_constraints): Call encode_new_constraint() if necessary.
27998
27999         * reflection.h
28000         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
28001
28002         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
28003         
28004 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
28005
28006         * reflection.c, icall.c: add support for pinning variables. 
28007
28008 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
28009
28010         * marshal.c (mono_marshal_get_managed_wrapper):
28011         init bool local with zero rather than null.
28012
28013 2004-03-29  Martin Baulig  <martin@ximian.com>
28014
28015         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
28016         the "official" behavior here.
28017         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
28018
28019 2004-03-29  Martin Baulig  <martin@ximian.com>
28020
28021         * icall.c: Reflect latest API changes.
28022
28023 2004-03-29  Martin Baulig  <martin@ximian.com>
28024
28025         * loader.c (mono_get_method_from_token): Also call
28026         mono_metadata_load_generic_params () for abstract and interface
28027         methods; replace the type arguments in the method signature with
28028         the ones which are loaded from the metadata.
28029
28030 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
28031
28032         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
28033         of the lock is not the current thread. MS.NET don't do it, in spite of
28034         what the documentation says. See bug #56157.
28035
28036 2004-03-28  Martin Baulig  <martin@ximian.com>
28037
28038         * class.c (mono_class_init): Don't call init_properties() and
28039         init_events() for generic instances; set `prop->parent' when
28040         inflating properties.
28041
28042         * reflection.c (mono_generic_inst_get_object): Call
28043         `mono_class_init (ginst->klass)'.
28044         (mono_type_get_object): Only create a MonoGenericInst if your
28045         generic type is a TypeBuilder.
28046         (do_mono_reflection_bind_generic_parameters): Only set
28047         `ginst->is_dynamic' if our generic type is a TypeBuilder.
28048
28049 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
28050
28051         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
28052         Fixes #56091.
28053
28054 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28055
28056         * icall.c: added Kill_internal icall.
28057         * process.[ch]: added Kill_internal icall.
28058
28059 2004-03-25  Martin Baulig  <martin@ximian.com>
28060
28061         * class.h (MonoStats): Added `generic_instance_count',
28062         `inflated_method_count', `inflated_type_count' and
28063         `generics_metadata_size'.       
28064
28065 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28066
28067         * reflection.c: no warnings now.
28068
28069 2004-03-25  Martin Baulig  <martin@ximian.com>
28070
28071         * class.c (mono_class_get_full): New public function; does a
28072         mono_class_get(), but also takes a `MonoGenericContext *'.
28073
28074         * loader.c (mono_field_from_memberref): Renamed to
28075         `field_from_memberref', made static and added `MonoGenericContext *'
28076         argument.
28077         (mono_field_from_token): Added `MonoGenericInst *' argument.
28078         (method_from_memberef): Likewise.
28079         (mono_get_method_from_token): Likewise.
28080         (mono_get_method_full): New public function; does a
28081         mono_get_method(), but also takes a `MonoGenericContext *'.
28082
28083         * verify.c (mono_method_verify): Get the method's generic context
28084         and pass it to mono_field_from_token(), mono_get_method_full() and
28085         mono_class_get_full().
28086
28087 2004-03-25  Martin Baulig  <martin@ximian.com>
28088
28089         * class.c (mono_class_inflate_generic_type): Take a
28090         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28091         `MonoGenericMethod *'.
28092
28093 2004-03-25  Martin Baulig  <martin@ximian.com>
28094
28095         * loader.h (MonoMethodInflated): Store the MonoGenericContext
28096         instead of the MonoGenericMethod here.
28097
28098 2004-03-25  Martin Baulig  <martin@ximian.com>
28099
28100         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28101         each time we create a new MonoGenericInst, we also create a new
28102         context which points back to us.
28103
28104         * class.c (inflate_method): Use `ginst->context' instead of
28105         creating a new context.
28106
28107         * loader.c (method_from_memberref): Use
28108         `klass->generic_inst->context' instead of creating a new context.
28109
28110 2004-03-25  Martin Baulig  <martin@ximian.com>
28111
28112         * class.h (MonoGenericContext): New struct.
28113         (MonoGenericMethod): Removed `generic_inst'.
28114
28115         * class.c (mono_class_inflate_generic_method): Take a
28116         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28117
28118 2004-03-25  Martin Baulig  <martin@ximian.com>
28119
28120         * loader.h (MonoMethodInflated): New typedef.
28121
28122         * metadata.h (MonoMethodSignature): Removed `gen_method', make
28123         `generic_param_count' consume just 30 bits, added `is_inflated'
28124         and `has_type_parameters' flags (one bit each).
28125
28126         * class.c (mono_class_inflate_generic_method): Create a
28127         MonoMethodInflated instead of a MonoMethodNormal and set
28128         `is_inflated' in the method signature.
28129
28130         * class.h (MonoGenericMethod): Removed `generic_method'.
28131
28132 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
28133
28134         * image.c: Make sure the name of a MonoImage is always an absolute path.
28135           This fixes bug #54415.
28136
28137 2004-03-24  Martin Baulig  <martin@ximian.com>
28138
28139         * class.c (mono_class_setup_vtable): If we're a generic instance,
28140         use our generic type's vtable size.
28141
28142 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
28143
28144         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28145         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
28146         problems.
28147
28148 2004-03-23  Martin Baulig  <martin@ximian.com>
28149
28150         * class.h (MonoDynamicGenericInst): Added `int count_events' and
28151         `MonoEvent *events'.
28152
28153         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28154         (typebuilder_icalls): Added "get_event_info"; calls
28155         mono_reflection_event_builder_get_event_info(). 
28156
28157         * reflection.c (mono_reflection_generic_inst_initialize): Added
28158         `MonoArray *events'.
28159         (mono_reflection_event_builder_get_event_info): New function.
28160
28161 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
28162
28163         * object.h: add mono_type_initialization_init
28164
28165         * object.c (mono_runtime_class_init): 
28166         implement class constructor synchronization rules
28167         to cope with threading issues.  
28168         add mono_type_initialization_init
28169
28170         * appdomain.c (mono_runtime_init): call 
28171         mono_type_initialization_init
28172
28173         * class.h: removing initializing field from MonoVTable
28174
28175 2004-03-23  Martin Baulig  <martin@ximian.com>
28176
28177         * class.c (my_mono_class_from_generic_parameter): Use
28178         `param->name' if it's not NULL. 
28179
28180 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
28181
28182         * class.c: do not insert non-virtual methods in the vtable.
28183         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
28184         that means the method is non-virtual. This never would have
28185         happened before.
28186
28187 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
28188
28189         * profiler.c: Added lock for accessing coverage_hash.
28190
28191 2004-03-22  Martin Baulig  <martin@ximian.com>
28192
28193         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
28194         `method->method->signature->generic_param_count != 0' to make it
28195         work for interface methods.
28196
28197 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28198
28199         * process.c: quote the string passed to the shell using g_shell_quote.
28200
28201 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28202
28203         * threads.c:
28204         (mono_threads_manage): don't remove the finalizer thread and self
28205         from the threads hash table so that mono_thread_manage can be called
28206         more than once.
28207
28208 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28209
28210         * process.c: quote the arguments when UseShellExecute is true. Fixes
28211         bug #55790.
28212
28213 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28214
28215         * threads.c: set mono_thread_detach as a cleanup routine for every
28216         thread. This way it's always executed upon thread termination, either
28217         aborted or finished normally. No more xsp hangs!
28218
28219 2004-03-17  Martin Baulig  <martin@ximian.com>
28220
28221         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
28222         `int count_nested' and a `MonoType **nested'.
28223
28224         * reflection.c (mono_reflection_bind_generic_parameters): Moved
28225         most of the functionality into a new static
28226         do_mono_reflection_bind_generic_parameters() and don't take a
28227         `MonoType *nested_in' argument any more.  Don't compute nested
28228         types here.
28229         (mono_reflection_generic_inst_get_nested_types): New public method
28230         to get nested types.
28231
28232         * class.c (mono_class_create_generic): Set `klass->nested_in' if
28233         we're a nested class.
28234
28235         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
28236         mono_reflection_generic_inst_get_nested_types() to compute the
28237         nested types.
28238
28239 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28240
28241         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
28242         descriptive error message under windows.
28243         
28244 2004-03-17  Martin Baulig  <martin@ximian.com>
28245
28246         * class.c (dup_type): Added `const MonoType *original' argument;
28247         copy the attrs from the original type.
28248
28249 2004-03-17  Martin Baulig  <martin@ximian.com>
28250
28251         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
28252         `m->generic_inst_cache' here.
28253
28254 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28255
28256         * exception.h exception.c: Add stack_overflow_exception.
28257
28258 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28259
28260         * threadpool.c:
28261         (overlapped_callback): call SetEvent *after* invoking the callback.
28262         No need to call CloseHandle.
28263
28264 2004-03-16  Martin Baulig  <martin@ximian.com>
28265
28266         * reflection.c (mono_image_get_fieldref_token): Take a
28267         `MonoReflectionField *' instead of a `MonoClassField *' and a
28268         `MonoClass *'; store the `MonoReflectionField *' in the hash.
28269
28270 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28271
28272         * appdomain.c: don't add the culture to the filename we're looking for
28273         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
28274
28275 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28276
28277         * locales.c: don't ignore symbols when doing case insensitive compares.
28278         Thanks Dick! Fixes bug #54046.
28279
28280         * threads.c: surround 'threads' usage with enter/leave in
28281         mono_thread_manage.
28282
28283 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
28284
28285         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
28286         implicitly marshalled as [Out]. Fixes #55450.
28287
28288         (mono_marshal_get_runtime_invoke): Zero out the result if there is
28289         an exception.
28290
28291 2004-03-16  Martin Baulig  <martin@ximian.com>
28292
28293         * class.c (mono_class_from_generic_parameter): Use the actual
28294         parameter name. 
28295
28296 2004-03-16  Martin Baulig  <martin@ximian.com>
28297
28298         * reflection.c (type_get_signature_size): New static function.
28299         Compues the size of the type in a method signature.
28300         (method_get_signature_size): New static function; calls
28301         type_get_signature_size() to compute the actual size of the
28302         method's signature.
28303         (method_encode_signature): Use method_get_signature_size() to get
28304         the signature's size rather than using `nparams * 10'.
28305
28306 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28307
28308         * file-io.h: define here WapiOverlapped on windows. I don't want the
28309         regular OVERLAPPED one.
28310
28311         * file-io.c:
28312         * threadpool.c: somehow, BindIoCompletionCallback is not found.
28313         Disabling AIO on windows.
28314
28315 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28316
28317         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
28318         bug #55385.
28319
28320 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28321
28322         * appdomain.c: upgraded corlib version.
28323
28324         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28325         and BeginWrite. Allow opening files for asynchrnous operations.
28326
28327         * file-io.h: new struct that maps FileStreamAsyncResult.
28328         * icall.c: added new icalls.
28329         * process.[ch]: support setting child process environment variables
28330         and use the SHELL or COMSPEC when UseShellExecute is true.
28331
28332         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28333         callback for async. IO is here and also BindHandle.
28334
28335         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28336         from here.
28337
28338 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
28339
28340         * reflection.c (create_custom_attr): Allow len == 0.
28341
28342         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28343         computation on big-endian machines.
28344
28345 2004-03-13  Martin Baulig  <martin@ximian.com>
28346
28347         * class.h (MonoGenericInst): Added `int count_ifaces'.
28348
28349         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28350         `ginst->count_ifaces' instead `klass->interface_count' since we
28351         may get called before the vtable is created.
28352
28353         * loader.c (mono_method_get_param_names): If we're a generic
28354         instance, return and don't initialize the class.
28355
28356         * reflection.c (mono_reflection_setup_generic_class): Don't call
28357         ensure_runtime_vtable().
28358         (mono_reflection_bind_generic_parameters): Set
28359         `ginst->count_ifaces'.
28360
28361 2004-03-11  Jackson Harper <jackson@ximian.com>
28362
28363         * icall.c:
28364         * unicode.c:
28365         * unicode.h: Remove unused System.Char icalls.
28366         
28367 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28368
28369         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28370         code when we P/Invoke the first library in Windows.Forms, instead
28371         of when we first open the assembly.
28372
28373         * assembly.c: Drop the lookup from here.
28374
28375 2004-03-10  Martin Baulig  <martin@ximian.com>
28376
28377         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28378         class for properties, fields and events.  Finally fixes #54945.
28379
28380 2004-03-10  Martin Baulig  <martin@ximian.com>
28381
28382         * metadata.c (mono_metadata_class_equal): New static function;
28383         checks whether two generic instances or two generic parameters are
28384         equal.
28385         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28386         compare classes.        
28387
28388 2004-03-10  Martin Baulig  <martin@ximian.com>
28389
28390         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28391
28392         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28393         argument and write it into the `reflection_info' field.
28394
28395         * icall.c
28396         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28397         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28398
28399 2004-03-09  Jackson Harper  <jackson@ximian.com>
28400
28401         * char-conversions.h: use 8 bits for numeric data its all we need
28402         * icall.c: numeric data is only 8 bits now.
28403
28404 2004-03-09  Martin Baulig  <martin@ximian.com>
28405
28406         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28407
28408         * class.c (init_properties, init_events): Initialize the new
28409         `parent' field.
28410
28411         * reflection.c (typebuilder_setup_properties): Likewise.
28412         (typebuilder_setup_events): Likewise.
28413
28414         * reflection.h (MonoEventInfo): Replaced `parent with
28415         `declaring_type' and `reflected_type'.
28416
28417         * icall.c (ves_icall_get_property_info): Distinguish between
28418         declaring and reflected type.
28419         (ves_icall_get_event_info): Likewise.
28420
28421 2004-03-09  Martin Baulig  <martin@ximian.com>
28422
28423         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28424         (ves_icall_Type_GetField): Correctly set field->klass.
28425
28426 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28427
28428         * loader.h: Fix warning.
28429
28430 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28431
28432         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28433         library routine if present.  Notice that it will still continue
28434         executing even if its missing, for those working on the Gtk#
28435         edition of Windows.Forms.
28436
28437         * assembly.c (do_mono_assembly_open): If loading the
28438         System.Windows.Forms call mono_loader_wini_init.
28439
28440 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28441
28442         * class.h: Added MonoRemoteClass struct.
28443         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28444         function for MonoStrings.
28445         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28446         Added internal call for getting the proxy type.
28447         * marshal.c: Get the type of transparent proxies from its remote_class.
28448         Added methods that generate the IL for type checks and casts:
28449         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28450         mono_marshal_get_proxy_cancast.
28451         * marshal.h: Declaration of the previous new methods.
28452         * object.c: Added new moethods for creating and updating MonoRemoteClass
28453         instances: mono_remote_class, mono_upgrade_remote_class, 
28454         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28455         * verify.c: FIx transparent_proxy_fields layout.
28456         * appdomain.c: Bump corlib version.
28457
28458 2004-03-04  Jackson Harper  <jackson@ximian.com>
28459
28460         * icall.c: Add icall to access char conversion tables.
28461         * char-conversions.h: Character conversion tables.
28462         * Makefile.am: Add char-conversions.h private header file.
28463         
28464 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28465
28466         * appdomain.c (unload_thread_main): Increase unloading timeout to
28467         10 sec as a temporary workaround for Nant problems.
28468
28469 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28470
28471         * gc.c: Add checks for GC_enable and GC_disable.
28472
28473         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28474         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28475         (bug #54988).
28476         
28477 2004-02-27  Martin Baulig  <martin@ximian.com>
28478
28479         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28480         `MonoReflectionType *' instead of a `MonoType *'.
28481
28482 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28483
28484         * gc.c (run_finalize): Avoid finalizing the object representing the
28485         finalizer thread.
28486         (finalizer_thread): Fix warning.
28487
28488 2004-02-25  Martin Baulig  <martin@ximian.com>
28489
28490         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28491         argument for nested types.
28492         (mono_class_create_generic): Added support for nested generictypes.
28493
28494         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28495         `GList *nested'.
28496
28497         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28498
28499         * reflection.c (method_encode_signature): Increase the minimum
28500         value of `size' from 10 to 11.
28501         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28502         and `MonoType **types' arguments instead of the `MonoArray
28503         *types'; added `MonoType *nested_in'.  Recursively instantiate
28504         nested classes. 
28505
28506 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28507
28508         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28509         stack_overflow_ex members which are used by exception handling.
28510
28511         * appdomain.c (mono_runtime_init): Initialize the new members.
28512
28513         * gc.c (mono_gc_enable): New helper function.
28514         * gc.c (mono_gc_disable): New helper function.
28515
28516 2004-02-23  Martin Baulig  <martin@ximian.com>
28517
28518         * icall.c: I must have been really stupid - make it actually work
28519         this time ;-)
28520
28521 2004-02-23  Martin Baulig  <martin@ximian.com>
28522
28523         * loader.c (method_from_memberref): Only inflate the method if
28524         it's in another klass.
28525
28526 2004-02-23  Martin Baulig  <martin@ximian.com>
28527
28528         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28529         (mono_class_init): If we're a generic instance and an interface,
28530         compute `class->interface_id'; also create `class->interfaces'
28531         here and inflate them.
28532
28533         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28534         `ginst->is_open'.
28535         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28536
28537         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28538
28539 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28540
28541         * reflection.c (method_encode_code): Improved the error message
28542         generated by the exception.
28543
28544 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28545
28546         * icall.c: Martin did not do what he said in the ChangeLog for
28547         2004-02-18, but put back the changes for properties and events.
28548         Commenting those changes out again and adding comment to bug #54518.
28549         
28550         * process.c: removed warning.
28551
28552 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28553
28554         * marshal.c (emit_struct_conv): Print an error message instead of
28555         asserting when a type does not have the StructLayout attribute.
28556
28557 2004-02-20  Martin Baulig  <martin@ximian.com>
28558
28559         * reflection.c (mono_type_get_object): Also use the cache for
28560         generic instances.
28561         (mono_reflection_bind_generic_parameters): Always compute
28562         `ginst->ifaces'.        
28563
28564 2004-02-20  Martin Baulig  <martin@ximian.com>
28565
28566         * class.h (MonoGenericMethod): Removed `klass'.
28567
28568         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28569         *klass' argument.
28570
28571 2004-02-20  Martin Baulig  <martin@ximian.com>
28572
28573         * reflection.c (method_encode_methodspec): Actually use the
28574         uninflated signature for the memberref.
28575
28576 2004-02-20  Martin Baulig  <martin@ximian.com>
28577
28578         * class.h (MonoGenericMethod): Removed `declaring'.
28579
28580         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28581         is NULL, compute it here.
28582
28583 2004-02-20  Martin Baulig  <martin@ximian.com>
28584
28585         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28586
28587         * metadata.c (mono_metadata_generic_inst_hash): New method.
28588         (mono_metadata_generic_inst_equal): New method.
28589
28590         * reflection.c (mono_reflection_bind_generic_parameters): Use the
28591         `klass->image->generic_inst_cache' cache to avoid creating
28592         duplicate MonoGenericInst's.
28593
28594         * class.c (mono_class_inflate_generic_type): Use the cache.
28595
28596 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
28597
28598         * object.c: fixed gc descriptor calculation for embedded valuetypes.
28599
28600 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28601
28602         * icall.c: added Socket.WSAIoctl icall.
28603
28604         * socket-io.[ch]: implemented
28605         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
28606
28607 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
28608
28609         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
28610
28611 2004-02-18  Urs C Muff  <umuff@quark.com>
28612
28613         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
28614         this work on PPC and other big-endian architectures.
28615
28616         * debug-mono-symfile.h: Prepended the names of all the `guint32'
28617         fields with an underscore to make sure they're only accessed by
28618         the read32() macro.
28619
28620 2004-02-18  Martin Baulig  <martin@ximian.com>
28621
28622         * icall.c: Put the klass->refclass changes back for methods and
28623         fields, but not for properties and events.  We're currently not
28624         distinguishing between DeclaringType and ReflectedType for
28625         properties and events, that's what caused the regressions.
28626
28627 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28628
28629         * object.c:
28630         (mono_async_result_new): the handle can be NULL.
28631
28632         * threadpool.c: Use an event instead of a semaphore, don't initialize
28633         it until needed. This saves quite a few semaphores from being created
28634         when using the threadpool.
28635
28636 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
28637
28638         * object.c (mono_string_is_interned_lookup): Fix interning of long
28639         strings. Fixes #54473.
28640
28641         * domain.c (ldstr_equal): Optimize if the two strings are equal.
28642
28643         * icall.c: Revert the klass->refclass changes since they introduce
28644         regressions (bug #54518).
28645
28646 2004-02-18  Martin Baulig  <martin@ximian.com>
28647
28648         * class.c (mono_class_init): If we're a generic instance and don't
28649         come from a TypeBuilder, inflate our members here.
28650         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
28651         (mono_class_create_generic): New public method.
28652         (mono_class_initialize_generic): Removed.
28653         (get_instantiation_name): Renamed to
28654         _mono_class_get_instantiation_name() and made it public.
28655
28656 2004-02-18  Martin Baulig  <martin@ximian.com>
28657
28658         * class.c (mono_class_inflate_generic_type): Clear the new
28659         instance's `nginst->klass' when inflating a generic instance.
28660         (mono_class_is_subclass_of): Added (basic) support for generic
28661         instances.
28662
28663 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
28664
28665         * appdomain.h, domain.c: use a MonoCodeManager instead of a
28666         MonoMempool to hold compiled native code.
28667
28668 2004-02-17  Martin Baulig  <martin@ximian.com>
28669
28670         * class.h (MonoDynamicGenericInst): Added `count_properties' and
28671         `properties'.
28672
28673         * reflection.c (mono_reflection_generic_inst_initialize): Added
28674         `MonoArray *properties' argument.
28675
28676         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
28677
28678 2004-02-17  Martin Baulig  <martin@ximian.com>
28679
28680         * icall.c (ves_icall_Type_GetFields): Renamed to
28681         ves_icall_Type_GetFields_internal() and added a
28682         `MonoReflectionType *rtype' argument; pass it to
28683         mono_field_get_object() to set the field's "reflected" type.
28684         (ves_icall_Type_GetConstructors): Likewise.
28685         (ves_icall_Type_GetEvents): Likewise.
28686         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
28687         argument; pass it to mono_method_get_object() to set the method's
28688         "reflected" type.       
28689
28690 2004-02-17  Martin Baulig  <martin@ximian.com>
28691
28692         * class.h (MonoDynamicGenericInst): New type.
28693         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
28694
28695         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
28696         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
28697         (ves_icall_MonoGenericInst_GetFields): New interncall.
28698
28699         * class.c (mono_class_from_generic): Don't call
28700         mono_class_initialize_generic() if this is a dynamic instance;
28701         ie. it's being created from a TypeBuilder.
28702         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
28703         `class->byval_arg.type'.
28704
28705         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
28706         to `inflate_method' and made static.
28707         (mono_reflection_inflate_field): Removed.
28708         (mono_reflection_generic_inst_initialize): New public method.
28709
28710         * reflection.h (MonoReflectionGenericInst): Removed `methods',
28711         `ctors' and `fields'; added `initialized'.
28712
28713 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
28714
28715         * debug-helpers.c (mono_method_full_name): Fix output for empty
28716         namespaces.
28717
28718 2004-02-12  Martin Baulig  <martin@ximian.com>
28719
28720         * class.h (MonoClassField): Added `MonoType *generic_type'.
28721
28722         * reflection.c (mono_image_get_fieldref_token): Added support for
28723         instantiated generic types.
28724         (field_encode_inflated_field): Removed.
28725         (mono_image_get_inflated_field_token): Removed.
28726         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
28727
28728         * reflection.h (MonoReflectionInflatedField): Removed.
28729
28730 2004-02-12  Martin Baulig  <martin@ximian.com>
28731
28732         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
28733         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
28734
28735         * reflection.c (mono_image_get_methodspec_token): Take a
28736         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
28737         (mono_image_create_token): Check whether we have a
28738         `method->signature->gen_method' and call
28739         mono_image_get_methodspec_token() if appropriate.
28740         (inflated_method_get_object): Removed.
28741         (mono_reflection_bind_generic_method_parameters): Return a
28742         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
28743         (mono_reflection_inflate_method_or_ctor): Likewise.
28744
28745         * reflection.h (MonoReflectionInflatedMethod): Removed.
28746
28747 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
28748
28749         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
28750         for custom valuetype marshalling.
28751
28752         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
28753
28754 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28755
28756         * icall.c: fixed WSAGetLastError_internal name.
28757
28758 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
28759
28760         * threads.c (mono_thread_attach): Allow this to be called multiple
28761         times for a thread.
28762         
28763         * threads.c (build_wait_tids): Do not wait for ourselves.
28764
28765         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
28766         appdomain list is empty.
28767
28768         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
28769         memory returned by mono_string_builder_to_utf16, since it points into
28770         managed memory. Thanks to Bernie Solomon for noticing this.
28771
28772         * icall.c: Add AppDomainSetup icalls.
28773
28774         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
28775
28776         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
28777         types.
28778
28779         * reflection.c (reflection_methodbuilder_to_mono_method): Save
28780         custom attributes to the method_aux struct. Also fix array indexes etc.
28781
28782         * loader.c (mono_method_get_param_names): Make dynamic case work again.
28783         
28784 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
28785
28786         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
28787         (both static and runtime) and reduce startup time.
28788
28789 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
28790
28791         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
28792         AsAny marshalling conversion instead of crashing.
28793
28794         * marshal.c: Fix warnings.
28795
28796 2004-02-09  Martin Baulig  <martin@ximian.com>
28797
28798         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
28799
28800         * reflection.h (MonoReflectionInflatedMethod): Removed the
28801         `declaring' field, it's now in the unmanaged MonoGenericMethod.
28802
28803         * reflection.c (method_encode_methodspec): Removed the `method'
28804         argument; we get it from `gmethod->declaring'.
28805         (inflated_method_get_object): Removed the `declaring' argument.
28806
28807 2004-02-09  Martin Baulig  <martin@ximian.com>
28808
28809         * class.h (MonoGenericMethod): New type.
28810         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
28811         `generic_method'.
28812
28813         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
28814         a `MonoGenericMethod *gen_method' one.
28815
28816         * class.c (mono_class_inflate_generic_type): Take an additional
28817         `MonoGenericMethod * argument.  This is only non-NULL if we're
28818         inflating types for a generic method.   
28819         (mono_class_inflate_generic_signature): Renamed to
28820         inflate_generic_signature() and made static; take a
28821         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28822         (inflate_generic_header): Take a `MonoGenericMethod *' argument
28823         instead of a `MonoGenericInst *' one.
28824         (mono_class_inflate_generic_method): Likewise.
28825
28826         * reflection.c (encode_generic_method_sig): Take a
28827         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28828         (method_encode_methodspec): Likewise.
28829         (inflated_method_get_object): Likewise. 
28830
28831         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
28832         field with a `MonoGenericMethod *gmethod' one.  
28833
28834 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
28835
28836         * class.h (mono_class_has_parent): add parens to expansion
28837         so you can ! this.
28838
28839 2004-02-08  Martin Baulig  <martin@ximian.com>
28840
28841         * image.h (MonoImage): Removed `generics_cache'.
28842
28843         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
28844         instead of a `MonoType *' argument; removed the `inflate_methods'
28845         argument.  Don't inflate methods here.
28846
28847         * loader.c (find_method): If it's a generic instance, call
28848         mono_class_init() on the `sclass->generic_inst->generic_type'.
28849
28850         * metadata.c (mono_type_size): Make this work on uninitialized
28851         generic instances; call it on the `ginst->generic_type's class.
28852
28853         * reflection.c (mono_reflection_bind_generic_parameters): Call
28854         mono_class_from_generic() to create the `ginst->klass'.
28855
28856 2004-02-08  Martin Baulig  <martin@ximian.com>
28857
28858         * class.h (MonoClass): Changed type of `generic_inst' from
28859         `MonoType *' to `MonoGenericInst *'.
28860
28861 2004-02-08  Martin Baulig  <martin@ximian.com>
28862
28863         * icall.c (ves_icall_Type_BindGenericParameters): Just call
28864         mono_type_get_object(), this is now creating a `MonoGenericInst'
28865         for MONO_TYPE_GENERICINST.
28866         (ves_icall_MonoGenericInst_GetParentType): Likewise.
28867         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
28868
28869         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
28870         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
28871         (inflated_method_get_object): Added `MonoClass *refclass' argument.
28872         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
28873         and reflected type.
28874
28875         * reflection.h (MonoReflectionInflatedMethod): Removed
28876         `declaring_type' and `reflected_type'.
28877
28878 2004-02-08  Martin Baulig  <martin@ximian.com>
28879
28880         * class.h (MonoGenericInst): Added `MonoType *parent' and
28881         `MonoType **ifaces'.
28882
28883         * reflection.h (MonoReflectionGenericInst): Removed `klass',
28884         `parent' and `interfaces'.
28885
28886         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28887         `MonoType *' argument and return a `MonoType *'.
28888
28889         * icall.c
28890         (ves_icall_MonoGenericInst_GetParentType): New interncall.
28891         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
28892
28893 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28894
28895         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
28896         valuetype marshalling.
28897
28898 2004-02-06  Martin Baulig  <martin@ximian.com>
28899
28900         * class.c
28901         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
28902         (my_mono_class_from_generic_parameter): Likewise.
28903
28904 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28905
28906         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
28907         contents of the symbol files lazily.
28908
28909         * object.h (MonoThread): Add 'name' and 'name_len' fields.
28910
28911         * threads.h threads.c icall.c: New icalls for getting and setting the
28912         threads name.
28913
28914 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
28915
28916         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
28917         Raise an exception when the domain is not found.
28918
28919 2004-02-03  Martin Baulig  <martin@ximian.com>
28920
28921         * reflection.c (mono_image_get_methodspec_token): Use the
28922         uninflated signature; fixes gen-33.
28923
28924 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
28925
28926         * gc.c threads.c: Make the finalizer thread a normal managed thread so
28927         the finalizer code can use thread functionality.
28928
28929         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
28930         the finalizer thread.
28931
28932         * threads.c: Make some functions more robust.
28933
28934         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
28935
28936         * metadata.h: Add new marshalling conventions.
28937
28938         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
28939         stringbuilder marshalling. Fixes #53700.
28940
28941         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
28942
28943         * reflection.c (mono_image_get_type_info): Save declarative security
28944         info.
28945
28946         * reflection.c (mono_image_get_field_info): Handle uninitialized 
28947         unmanaged fields as well.
28948
28949         * appdomain.c: Bump corlib version.
28950
28951 2004-02-01  Martin Baulig  <martin@ximian.com>
28952
28953         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
28954         method type arguments.  
28955
28956 2004-01-30  Duncan Mak  <duncan@ximian.com>
28957
28958         * marshal.h: Add prototype for
28959         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
28960         and
28961         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
28962         fix the build.
28963
28964 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
28965
28966         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
28967         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
28968
28969 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28970
28971         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28972         custom marshalling of valuetypes.
28973
28974         * marshal.c: Fix some warnings.
28975
28976 2004-01-29  Martin Baulig  <martin@ximian.com>
28977
28978         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
28979         for generic method parameters.
28980
28981         * reflection.c (method_encode_methodspec): Write the uninflated
28982         signature into the methodspec table.
28983         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
28984         is always the uninflated method.
28985         (reflection_methodbuilder_to_mono_method): Copy the generic
28986         parameters from the MethodBuilder into `header->gen_params'.
28987
28988 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28989
28990         * class.c (mono_class_from_generic_parameter): Fix warning.
28991
28992 2004-01-27  Martin Baulig  <martin@ximian.com>
28993
28994         * class.c (mono_class_from_generic_parameter): Don't create
28995         `klass->methods' here.  
28996
28997 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
28998
28999         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
29000         extension since it does not work with libraries named lib<FOO>.dll.so.
29001
29002 2004-01-25  Martin Baulig  <martin@ximian.com>
29003
29004         * class.c (mono_class_inflate_generic_type): Added support for
29005         MONO_TYPE_GENERICINST.
29006
29007         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
29008         inflate methods on open constructed types.      
29009
29010 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29011
29012         * object.c: fire ProcessExit event in the root AppDomain after running
29013         Main. Fixes bug #53299.
29014
29015 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
29016
29017         * socket-io.c: include the new socket-wrappers.h header.
29018         Use the wrappers instead of the unix socket functions to make the code
29019         more clear.
29020
29021 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
29022
29023         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
29024
29025         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29026         Fixes #22532.
29027
29028 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
29029
29030         * reflection.c (mono_image_create_pefile): Handle the case when the
29031         entry point is not a MethodBuilder.
29032
29033         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29034         field to ReflectionMethod since it is not allways a builder.
29035
29036         * reflection.c (type_get_fully_qualified_name): New helper function to
29037         return the fully qualified name of a type.
29038
29039         * reflection.c (encode_marshal_blob): Always emit the fully qualified
29040         type name for custom marshallers.
29041
29042         * reflection.c (mono_marshal_spec_from_builder): Ditto.
29043
29044         * class.c (mono_class_setup_vtable): If a parent class already 
29045         implements an interface, use the implementing methods from that class.
29046         Fixes #53148.
29047
29048 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29049
29050         * threadpool.c: just return instead of ExitThread to allow for thread
29051         clean up earlier.
29052
29053 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
29054
29055         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
29056         when closing resource modules.
29057
29058         * reflection.c (mono_image_create_pefile): Handle the case when the
29059         entry point is not a MethodBuilder.
29060
29061         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29062         field to ReflectionMethod since it is not allways a builder.
29063
29064 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
29065
29066         * marshal.c (mono_marshal_get_managed_wrapper): 
29067         mono_marshal_alloc takes native int so CONV_I
29068         the arg for 64bits.
29069
29070 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
29071
29072         * reflection.c (fixup_cattrs): New function to fixup the methoddef
29073         tokens in the cattr table. Fixes #53108.
29074
29075 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29076
29077         * loader.c: don't trim ".dll" before looking up in the config file.
29078         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29079
29080 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
29081
29082         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
29083         Return the module which contains the resource as well.
29084         (ves_icall_System_Reflection_Module_Close): New icall.
29085
29086         * appdomain.c: Bump corlib version number.
29087
29088         * image.c (mono_image_addref): New public function.
29089
29090         * assembly.c: Call mono_image_addref.
29091
29092         * reflection.c (mono_module_get_object): Increase reference count of 
29093         the image.
29094
29095         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29096         Fixes #22532.
29097
29098         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29099         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
29100         proper exceptions on DllImport problems.
29101
29102 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29103
29104         * class.c, metadata.c: eliminate CSIZE macro.
29105
29106 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
29107
29108         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29109         * object.h: Added async_callback field in MonoAsyncResult.
29110         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29111         * verify.c: Added async_callback in MonoAsyncResult layout.
29112
29113 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
29114
29115         * reflection.c (mono_reflection_get_custom_attrs): Add support
29116         for Modules.
29117
29118 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29119
29120         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
29121         marshalling.
29122         (mono_marshal_method_from_wrapper): Add null pointer check.
29123
29124 2004-01-16  Martin Baulig  <martin@ximian.com>
29125
29126         * debug-mono-symfile.h: Set version number to 36 and reflect
29127         latest symbol writer changes.
29128
29129 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29130
29131         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29132         multi-dimensional arrays.
29133         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29134         (mono_class_from_mono_type): Use bounded_array_class_get.
29135         
29136         * class.c (mono_bounded_array_class_get): New function which takes
29137         a 'bounded' bool argument to distinguish vectors from one dimensional
29138         arrays.
29139
29140         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
29141         bounded_array_class_get if the array has bounds.
29142
29143         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29144         Search modules loaded using AssemblyBuilder:AddModule as well.
29145
29146 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29147
29148         * appdomain.c: increased corlib version.
29149         * filewatcher.c: removed g_print.
29150         * icall.c:
29151         (get_property_info): only allocate what is actually requested.
29152         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29153
29154 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29155
29156         * Makefile.am: added filewatcher.[ch]
29157         * filewatcher.[ch]: FileSystemWatcher runtime support.
29158         * icall.c: added new FSW icalls.
29159
29160 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29161
29162         * string-icalls.c: fix stringbuilder regression as suggested by
29163         Iain McCoy <iain@mccoy.id.au>.
29164
29165 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
29166
29167         * process.c (process_read_stringtable_block): Recognize '007f' as
29168         a language neutral stringtable block.
29169
29170 2004-01-12  Patrik Torstensson
29171
29172         * object.h (MonoStringBuilder) : Changed layout to support our
29173         new stringbuilder class.
29174         * marshal.c: Change marshalling to support the new layout of 
29175         string builder.
29176         * appdomain.c: increased version number because new layout of
29177         string builder.
29178
29179 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
29180
29181         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
29182         assembly name as an string instead of an AssemblyName, since it is
29183         easier to extract info from it.
29184
29185         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
29186         the culture subdirectories too. Fixes #52231.
29187
29188 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29189
29190         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
29191         It takes 2 new parameters with an optional name for the method to look
29192         for and case ignoring info.
29193
29194         * threadpool.c: removed unused variable.
29195
29196 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29197
29198         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
29199         It takes 2 new parameters with an optional name for the property to look
29200         for and case ignoring info.
29201         Fixes bug #52753.
29202
29203 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
29204
29205         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
29206         Fix #52451.
29207
29208 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29209
29210         * appdomain.c:
29211         * assembly.c: escape the uri before passing it to g_filename_from_uri.
29212         Fixes bug #52630.
29213
29214 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
29215
29216         * reflection.c: Add support for more than one unmanaged resource.
29217
29218         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
29219         in field->def_value, as done in all other cases.
29220
29221         * reflection.c (mono_reflection_get_custom_attrs): Add support for
29222         TypeBuilders.
29223
29224         * reflection.c (mono_reflection_create_runtime_class): Remove 
29225         errorneous assignment to klass->element_class, since it is already
29226         done in mono_reflection_setup_internal_class.
29227
29228 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29229
29230         * gc.c: added missing LeaveCriticalSection.
29231         * icall.c: indented a couple of lines.
29232         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
29233         if we call EndInvoke inside a callback. Fixes bug #52601.
29234
29235 2004-01-07  Martin Baulig  <martin@ximian.com>
29236
29237         * mono-debug-debugger.h
29238         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
29239
29240 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
29241
29242         * appdomain.c: Use messages in NotImplementedException.
29243
29244         * exception.c (mono_get_exception_not_implemented): Now this takes
29245         a message argument.
29246
29247         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
29248         exception instead of g_asserting an aborting when something is not
29249         implemented.
29250
29251         Add some inline docs.
29252
29253 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
29254
29255         * reflection.h: Update after changes to object layout.
29256
29257         * reflection.c: Implement saving of unmanaged aka win32 resources.
29258
29259         * appdomain.c: Bump version number.
29260
29261         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
29262         Handle missing domains gracefully.
29263
29264 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
29265
29266         * file-io.c : On Windows, there are much more invalid_path_chars.
29267
29268 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
29269
29270         * class.h, object.c: prepare for GetType () speedup.
29271
29272 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
29273
29274         * profiler.c: workaround for --profile null reference exception on
29275           cygwin. Patch by Patrik Torstensson.
29276
29277 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
29278
29279         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
29280         make work for unaligned access.
29281
29282 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
29283
29284         * class.c: small cleanup (class->fields [i] -> field).
29285         * image.c: check address of metadata is valid.
29286
29287 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
29288
29289         * assembly.h assembly.c (mono_assembly_loaded): New public function to
29290         search the list of loaded assemblies.
29291
29292         * reflection.c (mono_reflection_type_from_name): Use 
29293         mono_assembly_loaded instead of mono_image_loaded.
29294
29295         * reflection.c: Fix warnings.
29296
29297 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
29298
29299         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
29300         is dynamic. This is needed since an assembly can contain both dynamic and
29301         non-dynamic images.
29302
29303         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
29304         assembly->dynamic.
29305
29306         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
29307
29308         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
29309         to store modules loaded using AddModule.
29310
29311         * reflection.c (mono_image_fill_file_table): Generalize this so it works
29312         on Modules.
29313
29314         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
29315
29316         * reflection.c (mono_image_fill_export_table_from_module): New function to
29317         fill out the EXPORTEDTYPES table from a module.
29318
29319         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
29320         into a separate function. Also handle loaded non-dynamic modules.
29321
29322         * reflection.c (mono_image_basic_init): Fix memory allocation.
29323
29324         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29325
29326         * assembly.c (mono_assembly_load_references): Make this public.
29327
29328 2003-12-19  Martin Baulig  <martin@ximian.com>
29329
29330         * class.c (mono_class_initialize_generic): Made this static, take
29331         a `MonoGenericInst *' instead of a `MonoClass *'.
29332         (mono_class_from_generic): Call mono_class_initialize_generic()
29333         unless we're already initialized or being called from
29334         do_mono_metadata_parse_generic_inst().
29335
29336         * class.h (MonoGenericInst): Added `initialized' and
29337         `init_pending' flags.
29338
29339         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29340         `mono_class_init (gklass)' or mono_class_initialize_generic()
29341         here; set `generic_inst->init_pending' while parsing the
29342         `type_argv'.
29343
29344 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
29345
29346         * locales.c: include string.h for memxxx prototypes
29347
29348 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
29349
29350         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29351         constructor when accessing literal fields.
29352
29353 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
29354
29355         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29356
29357         * reflection.c (assembly_add_resource_manifest): New function to fill
29358         the MANIFESTRESOURCE table.
29359
29360         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29361
29362         * reflection.h: Update to changes in class layout.
29363
29364         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29365         Reenable call to mono_runtime_is_shutting_down ().
29366
29367         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29368         determine if the runtime is shutting down.
29369
29370 2003-12-16  Jackson Harper <jackson@ximian.com>
29371
29372         * icall.c: comment out call to mono_runtime_is_shutting_down to
29373         fix build.
29374         
29375 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29376
29377         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29378         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29379
29380 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29381
29382         * reflection.c: move definition of swap_with_size
29383         to before its first call
29384
29385 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29386
29387         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29388
29389         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29390         icall.
29391
29392         * object.c: Fix warnings.
29393
29394         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29395         members if FlattenHierarchy is set.
29396
29397         * reflection.c (mono_image_add_decl_security): New function to emit
29398         declarative security.
29399
29400         * reflection.h reflection.c: Add support for declarative security.
29401
29402         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29403         
29404 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29405
29406         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29407         
29408         * appdomain.c verify.c: Moved corlib version checking into its own
29409         function in appdomain.c since it needs to create vtables etc.
29410
29411 2003-12-13  Patrik Torstensson <p@rxc.se>
29412
29413         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29414         instead of unwrapped server.
29415
29416 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29417
29418         * verify.c (check_corlib): Fix field index.
29419
29420 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29421
29422         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29423         GetGacPath icall.
29424
29425 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29426
29427         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29428         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29429         cope with sizeof(size_t) != sizeof(guint32).
29430
29431 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29432
29433         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29434         in case of failure.
29435
29436 2003-12-10  Mark Crichton <crichton@gimp.org>
29437
29438         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29439         in managed code.
29440
29441         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29442
29443 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29444
29445         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29446         marked as deleted.
29447
29448 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29449
29450         * verify.c (check_corlib): Handle the case when the version field is 
29451         initialized by a static constructor.
29452
29453 2003-12-08  Patrik Torstensson  <p@rxc.se>
29454
29455     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29456
29457 2003-12-08  Martin Baulig  <martin@ximian.com>
29458
29459         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29460         a MonoReflectionGenericParameter, also take the parameter index
29461         and name as arguments.
29462         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29463         (ves_icall_MonoGenericParam_initialize): New interncall.
29464         (ves_icall_Type_make_byref_type): New interncall.
29465
29466         * reflection.h (MonoReflectionGenericParam): Derive from
29467         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29468         `index' fields.
29469
29470         * reflection.c (mono_reflection_define_generic_parameter): Create
29471         and return a new MonoReflectionGenericParam; don't initialize the
29472         constraints here.
29473         (mono_reflection_initialize_generic_parameter): New public method;
29474         initializes the constraints and creates the `param->pklass'.
29475
29476 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29477
29478         * reflection.h reflection.c: Use the new fields 'num_types', 
29479         'num_fields' and 'num_methods' to track the number of types etc.
29480
29481         * verify.c (check_corlib): Check corlib version number.
29482
29483 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29484
29485         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29486         function works on all methods.
29487
29488 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29489
29490         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29491         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29492         the custom_type_info flag of the transparent proxy.
29493         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29494         objects that supports IRemotingTypeInfo.
29495         * object.h: Added custom_type_info field in transparent proxy.
29496
29497 2003-12-06  Martin Baulig  <martin@ximian.com>
29498
29499         * class.c (mono_class_create_from_generic): Removed.
29500         (mono_class_from_generic): Check `ginst->klass' before doing
29501         anything else.  This is important to fully support "recursive"
29502         generic types.
29503
29504         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29505         empty `generic_inst->klass' before doing anything else.
29506
29507 2003-12-06  Dick Porter  <dick@ximian.com>
29508
29509         * verify.c: 
29510         * object.h:
29511         * icall.c:
29512         * locales.c: Use C structs to access class fields.  Don't do a
29513         conversion between MonoString and UChar because both are
29514         platform-endian UTF-16.  Compare now takes startindex and count
29515         parameters.  Add a char overload for IndexOf.  Speed up the
29516         invariant string IndexOf.
29517
29518 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29519
29520         * Makefile.am (monosn_LDADD): Fix parallel build.
29521
29522 2003-12-04  Martin Baulig  <martin@ximian.com>
29523
29524         * icall.c
29525         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29526         (ves_icall_Type_make_array_type): New interncall.       
29527
29528 2003-12-04  Martin Baulig  <martin@ximian.com>
29529
29530         * locales.c: also change it in the !HAVE_ICU case.
29531
29532 2003-12-04  Dick Porter  <dick@ximian.com>
29533
29534         * icall.c:
29535         * locales.c: construct_compareinfo is now in CompareInfo, not
29536         CultureInfo.
29537
29538 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29539
29540         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29541         image->files array.
29542
29543         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29544         table as well.
29545
29546         * assembly.c (mono_assembly_load_references): Only load references
29547         once.
29548
29549         * class.c (mono_class_from_name): Avoid linear search of the 
29550         EXPORTEDTYPE table.
29551
29552         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29553
29554 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29555
29556         * image.h (MonoImage): Add 'field_cache' field.
29557
29558         * loader.c (mono_field_from_token): Cache field lookups.
29559         
29560         * reflection.c (mono_module_get_object): Fix name property.
29561
29562         * icall.c (ves_icall_get_enum_info): Update after changes to 
29563         mono_metadata_get_constant_index ().
29564
29565         * icall.c: Get rid of get_type_info icall, use a separate icall for
29566         each type property to avoid needless memory allocations. Fixes #51514.
29567
29568         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29569         to avoid needless binary searches.
29570
29571         * class.c (class_compute_field_layout): Move the initialization of
29572         field->def_value to mono_class_vtable ().
29573
29574         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29575         non-corlib types.
29576
29577         * object.c (mono_object_allocate): Make it inline.
29578
29579         * object.c (mono_object_allocate_spec): Make it inline.
29580         
29581 2003-12-02  Dick Porter  <dick@ximian.com>
29582
29583         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29584         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29585
29586 2003-12-01  Dick Porter  <dick@ximian.com>
29587
29588         * threads.c: Fix signature and call in CreateMutex and
29589         CreateEvent.
29590
29591 2003-12-01  Dick Porter  <dick@ximian.com>
29592
29593         * icall.c: 
29594         * locales.c: Implement string compares and searching
29595
29596         * object.h: Add extra Thread field
29597
29598 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
29599
29600         * reflection.c (fixup_method): Add support for MonoCMethod.
29601
29602 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
29603
29604         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
29605
29606         * reflection.c (assembly_name_to_aname): Allow extra characters in
29607         assembly names. Fixes #51468.
29608
29609 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
29610
29611         * exception.c (mono_exception_from_name_domain): New helper function.
29612
29613         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
29614         exception object in the correct domain.
29615
29616         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
29617         formatting + make a copy a the input data.
29618
29619         * loader.c (mono_get_method_from_token): Methods which contain
29620         native code do not have entries in the ImplMap.
29621
29622         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
29623         Thanks to Gonzalo for spotting this.
29624         
29625         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
29626         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
29627
29628         * assembly.h (mono_assembly_load_from): Split the second part of 
29629         assembly loading into a new public function.
29630
29631         * exception.h (mono_get_exception_bad_image_format): New function.
29632
29633 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
29634
29635         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29636         Enumerate all modules inside a dynamic assembly. Fixes #51293.
29637         
29638         * icall.c: Add new icall for creating dynamic methods.
29639
29640         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
29641
29642         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
29643
29644         * reflection.c (mono_reflection_create_dynamic_method): New icall to
29645         create a dynamic method.
29646
29647         * reflection.c (resolve_object): New helper function.
29648
29649         * reflection.c: Generalize ReflectionMethodBuilder and the functions
29650         which manipulate it so they can also work on dynamic methods.
29651
29652         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
29653         creating the MonoReflectionMethodAux structure if it is not needed.
29654         
29655         * reflection.h verify.c: Update after changes to object layout.
29656
29657         * reflection.c (method_builder_encode_signature): Fix compilation on
29658         gcc 2.95.x.
29659
29660 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
29661
29662         * appdomain.h: Added support for context static fields. Added static_data
29663           field to MonoAppContext and renamed thread_static_fields to a more
29664           generic special_static_fields in MonoAppDomain, since it can now contain
29665           context static fields.
29666         * domain.c: Updated hashtable name.
29667         * object.c: Replaced field_is_thread_static() for a more generic
29668           field_is_special_static() which also checks for context static attribute.
29669           In mono_class_vtable(), added support for static context fields.
29670         * threads.c: Changed methods that manage thread static fields to more
29671           generic methods so they can be reused both for thread and context static
29672           data.
29673         * threads.h: Declared some new methods.
29674
29675 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
29676
29677         * reflection.h: Update after changes to the managed types.
29678
29679         * reflection.c (encode_custom_modifiers): New helper function.
29680
29681         * reflection.c (method_encode_signature): Emit custom modifiers.
29682
29683         * reflection.c (field_encode_signature): Emit custom modifiers.
29684
29685 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
29686
29687         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
29688
29689         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
29690         implementation.
29691
29692         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
29693         icall.
29694
29695         * object.c (mono_field_get_value_object): New function.
29696
29697         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
29698         specific.
29699
29700 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
29701
29702         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
29703         return a preallocated out-of-memory exception instance.
29704
29705         * object.c (out_of_memory): Use the new function.
29706
29707         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
29708         flag is before the custom modifiers. Fixes #49802.
29709
29710 2003-11-16  Martin Baulig  <martin@ximian.com>
29711
29712         * class.c (mono_class_is_open_constructed_type): Implemented the
29713         MONO_TYPE_GENERICINST case.
29714
29715 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
29716
29717         * assembly.c (mono_assembly_fill_assembly_name): New function to
29718         fill out the MonoAssemblyName structure.
29719         (mono_assembly_open): Use the new function.
29720
29721         * icall.c (fill_reflection_assembly_name): New helper function.
29722
29723         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
29724         new function.
29725
29726         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
29727
29728 2003-11-15  Martin Baulig  <martin@ximian.com>
29729
29730         * class.c (mono_class_is_open_constructed_type): New public
29731         function; checks whether a type is an open constructed type,
29732         ie. whether it still contains type parameters.
29733         (mono_class_inflate_generic_type): If we're a type parameter and
29734         the inflated type is also a MONO_TYPE_(M)VAR, return the original
29735         type.
29736
29737         * class.h (MonoGenericInst): Added `guint32 is_open'.
29738
29739         * loader.c (method_from_methodspec): Check whether we're an open
29740         or closed constructed type and set `ginst->is_open'.
29741
29742         * reflection.c (mono_reflection_bind_generic_parameters): Check
29743         whether we're an open or closed constructed type and set
29744         `ginst->is_open'.
29745         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
29746         from open constructed types.
29747
29748 2003-11-15  Martin Baulig  <martin@ximian.com>
29749
29750         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29751         a generic instance (instead of a generic type declaration) with
29752         unbound generic parameters, bind them to our actual types.
29753
29754 2003-11-14  Martin Baulig  <martin@ximian.com>
29755
29756         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
29757
29758         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29759         an interface type, populate `res->interfaces' with instantiated
29760         versions of all the interfaces we inherit.
29761
29762 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
29763
29764         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
29765         when MONO_PATH is set but doesn't contain the install dir.
29766
29767 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29768
29769         * icall.c:
29770         (ves_icall_Type_GetInterfaces): don't return an interface twice when
29771         it's also implemented in base classes. Fixes bug #50927.
29772
29773 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
29774
29775         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
29776         if this method is called from a finalizer. Fixes #50913.
29777
29778 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
29779
29780         * threads.c: Implement VolatileRead/VolatileWrite
29781
29782         * icall.c: Add new icalls for VolatileRead/VolatileWrite
29783
29784 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29785
29786         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
29787         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
29788         2.95.3.
29789
29790         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
29791         from Peter Ross (pro@missioncriticalit.com).
29792         
29793 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
29794
29795         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
29796
29797 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29798
29799         * assembly.c (mono_assembly_load_references): Disable check because it
29800         triggers on older corlibs which lots of people have.
29801
29802 2003-11-12  Jackson Harper  <jackson@ximian.com>
29803
29804         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
29805         load corlib.dll if mscorlib.dll is not found.
29806         * assembly.h: Remove corlib name define.
29807         * class.c:
29808         * domain.c:
29809         * image.c: Change corlib name to mscorlib.
29810         
29811 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29812
29813         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
29814
29815 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
29816
29817         * appdomain.h: Added loader_optimization here to sync with the C#
29818         code, and add disallow_binding_redirects field.
29819
29820 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29821
29822         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
29823
29824         * reflection.c (mono_image_build_metadata): Fix crash on modules
29825         with no types.
29826
29827         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
29828
29829         * icall.c (ves_icall_get_method_info): Return callingConvention as
29830         well.
29831
29832         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
29833         namespaces from the EXPORTEDTYPE table as well.
29834
29835         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
29836         from all modules inside the assembly.
29837         
29838 2003-11-11  Martin Baulig  <martin@ximian.com>
29839
29840         * reflection.c (mono_reflection_bind_generic_parameters): Make
29841         this work for interfaces.
29842
29843 2003-11-11  Martin Baulig  <martin@ximian.com>
29844
29845         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
29846
29847 2003-11-11  Martin Baulig  <martin@ximian.com>
29848
29849         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
29850         "MonoInflatedMethod" and "MonoInflatedCtor".
29851
29852 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29853
29854         * reflection.c (resolution_scope_from_image): Use the assembly table
29855         from the manifest module, since other modules don't have it.
29856
29857         * debug-helpers.c (mono_type_full_name): New helper function.
29858
29859         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
29860
29861         * image.c (mono_image_load_file_for_image): New public function which
29862         is a replacement for the load_file_for_image in class.c.
29863
29864         * assembly.c (mono_assembly_load_module): A wrapper for the function
29865         above which does assembly association and reference loading too.
29866
29867         * class.c (mono_class_from_name): Call mono_assembly_load_module.
29868
29869 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29870
29871         * appdomain.c: not all of the attributes for the full assembly name
29872         are required and the order doesn't matter. Fixes bug #50787.
29873
29874 2003-11-10  Dick Porter  <dick@ximian.com>
29875
29876         * locales.c: Use platform-endian UTF16
29877
29878 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29879
29880         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29881         
29882 2003-11-10  Martin Baulig  <martin@ximian.com>
29883
29884         * metadata.c
29885         (mono_metadata_load_generic_params): Make this actually work.
29886
29887         * reflection.c (mono_reflection_bind_generic_parameters): If our
29888         parent is a generic instance, pass all the `types' to it, no
29889         matter whether it has the same number of type parameters or not.
29890
29891 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29892
29893         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29894
29895         * assembly.c (mono_assembly_load_references): Move the image<->assembly
29896         assignment code to this function so it gets called recursively for all
29897         modules.
29898
29899         * image.c (load_modules): Remove the assembly assignment since it is
29900         now done by mono_assembly_load_references.
29901         
29902         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29903         Add 'module' argument.
29904         (mono_module_get_types): New helper function.
29905         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
29906
29907 2003-11-08  Martin Baulig  <martin@ximian.com>
29908
29909         * class.c (mono_class_inflate_generic_method): Interface method
29910         don't have a header.
29911
29912         * reflection.c (mono_image_get_methodspec_token): Take an
29913         additional `MonoGenericInst *' argument instead of reading it from
29914         the header; this is necessary to support interfaces.
29915         (mono_image_create_token): Pass the `MonoGenericInst *' from the
29916         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
29917         (inflated_method_get_object): Take an additional `MonoGenericInst *'
29918         argument.
29919
29920         * reflection.h (MonoReflectionInflatedMethod): Added
29921         `MonoGenericInst *ginst'.
29922
29923 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
29924
29925         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
29926
29927 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
29928
29929         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
29930
29931 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
29932
29933         * reflection.c 
29934         (reflection_methodbuilder_from_method_builder):
29935         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
29936         initialize a ReflectionMethodBuilder structure.
29937         (mono_image_get_methodbuilder_token):
29938         (mono_image_get_ctorbuilder_token): New functions to emit memberref
29939         tokens which point to types in another module inside the same assembly.
29940
29941         * reflection.c: Use the new helper functions.
29942         
29943         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
29944
29945         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
29946         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
29947
29948         * reflection.c (resolution_scope_from_image): Emit a moduleref if
29949         neccesary.
29950
29951         * reflection.c (mono_image_build_metadata): Emit metadata only for the
29952         current module. Emit the manifest only for the main module.
29953
29954         * reflection.c (mono_image_create_token): Add assertion when a 
29955         memberref needs to be created.
29956
29957         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
29958
29959         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
29960         larger buffer for the custom attribute blob. Fixes #50637.
29961         
29962 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29963
29964         * threadpool.c: notify listener on async processing handles after
29965         invoking the async callback. Thanks to Zoltan.
29966
29967 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29968
29969         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
29970         avoid code duplication.
29971
29972         * reflection.h (MonoDynamicImage): New type which is currently unused,
29973         but will be used through the ref.emit code in place of 
29974         MonoDynamicAssembly.
29975
29976         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29977         object layout.
29978
29979         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
29980         a MonoDynamicImage instead of just a MonoImage.
29981         
29982         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
29983         icalls to ModuleBuilder but keep their semantics, so they will work
29984         with moduleb->assemblyb. This will change later.
29985         
29986 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29987
29988         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29989         object layout.
29990
29991         * reflection.c (mono_image_build_metadata): Avoid creation of a default
29992         main module, since it is now done by the managed code.
29993
29994 2003-11-03  Martin Baulig  <martin@ximian.com>
29995
29996         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
29997         `ginst->klass' here.
29998         (method_encode_methodspec): Don't use the `ginst->generic_method's
29999         klass if it's a generic instance, use `ginst->klass' in this case.
30000
30001 2003-11-03  Martin Baulig  <martin@ximian.com>
30002
30003         * reflection.c (mono_image_get_generic_method_param_info):
30004         Removed, use mono_image_get_generic_param_info() instead.
30005         (mono_image_get_type_info): Write the GenericParam table before
30006         the Method table.  This is neccessary because in the GenericParam
30007         table, type parameters of the class (ie. '!0' etc.) must come
30008         before the ones from its generic methods (ie. '!!0' etc).
30009
30010 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30011
30012         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
30013
30014 2003-11-02  Martin Baulig  <martin@ximian.com>
30015
30016         * reflection.c (create_generic_typespec): Take a
30017         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
30018         the generic parameters from it.
30019
30020 2003-11-02  Martin Baulig  <martin@ximian.com>
30021
30022         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
30023         instead of a `MonoClassField *' since we just need the type.
30024         (create_generic_typespec): New static function.  Creates a
30025         TypeSpec token for a generic type declaration.
30026         (mono_image_get_generic_field_token): New static function.
30027         (mono_image_create_token): If we're a FieldBuilder in a generic
30028         type declaration, call mono_image_get_generic_field_token() to get
30029         the token.
30030
30031 2003-11-02  Martin Baulig  <martin@ximian.com>
30032
30033         * reflection.h
30034         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
30035         `MonoReflectionGenericInst *declaring_type' and
30036         `MonoReflectionGenericInst *reflected_type' fields.
30037
30038         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
30039         `MonoReflectionGenericInst *declaring_type' and a
30040         `MonoReflectionGenericInst *reflected_type' argument instead of a
30041         single `MonoReflectionGenericInst *type' one.  Set
30042         `res->declaring_type' and `res->reflected_type' from them.
30043         (mono_reflection_inflate_field): Likewise.      
30044
30045 2003-11-02  Martin Baulig  <martin@ximian.com>
30046
30047         * class.c (mono_class_setup_vtable): Don't store generic methods
30048         in the vtable.  
30049
30050 2003-11-02  Martin Baulig  <martin@ximian.com>
30051
30052         * reflection.h (MonoReflectionGenericInst): Added
30053         `MonoReflectionType *declaring_type'.
30054
30055         * reflection.c (mono_reflection_bind_generic_parameters): Use
30056         `if (tb->parent)' instead of `klass->parent'.
30057
30058 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
30059
30060         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
30061         with an empty ASSEMBLY table.
30062
30063         * reflection.c (mono_image_build_metadata): Avoid using the same loop
30064         variable in the inner and outer loops.
30065
30066 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
30067
30068         * metadata.h (mono_metadata_make_token): Put parentheses around macro
30069         argument.
30070
30071         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
30072         
30073         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
30074         icalls. Instead, do everything in managed code. This is needed since
30075         it is hard to restore the original domain etc. in unmanaged code in the
30076         presence of undeniable exceptions.
30077
30078         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
30079         New icalls to push and pop appdomain refs.
30080
30081 2003-10-31  Martin Baulig  <martin@ximian.com>
30082
30083         * class.c (inflate_generic_type): Renamed to
30084         mono_class_inflate_generic_type() and made it public.
30085
30086         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30087         New interncall.
30088
30089         * loader.c (mono_field_from_memberref): Also set the retklass for
30090         typespecs.
30091
30092         * fielder.c (mono_image_get_inflated_field_token): New static
30093         method; creates a metadata token for an inflated field.
30094         (mono_image_create_token, fixup_method): Added support for
30095         "MonoInflatedField".
30096         (fieldbuilder_to_mono_class_field): New static function.
30097         (mono_reflection_inflate_field): New public function.
30098
30099         * reflection.h
30100         (MonoReflectionGenericInst): Added `MonoArray *fields'.
30101         (MonoReflectionInflatedField): New typedef.     
30102
30103 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
30104
30105         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30106         for Solaris and other platforms without s6_addr16
30107
30108 2003-10-30  Martin Baulig  <martin@ximian.com>
30109
30110         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30111         argument instead of two.
30112         (mono_class_inflate_generic_signature): Likewise.
30113         (inflate_generic_header): Likewise.
30114         (mono_class_inflate_generic_method): Likewise.  In addition, if
30115         `ginst->klass' is set, it becomes the new `method->klass'.
30116
30117         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30118         field.
30119
30120         * reflection.c (encode_generic_method_sig): Write a 0xa as the
30121         first byte. [FIXME]
30122         (method_encode_methodspec): If we have generic parameters, create
30123         a MethodSpec instead of a MethodRef.
30124         (fixup_method): Added support for "MonoInflatedMethod" and
30125         "MonoInflatedCtor".
30126         (mono_image_create_token): Added support for "MonoInflatedMethod"
30127         and "MonoInflatedCtor".
30128         (inflated_method_get_object): New static function; returns a
30129         managed "System.Reflection.MonoInflatedMethod" object.
30130         (mono_reflection_bind_generic_method_parameters): Return a
30131         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30132         (mono_reflection_inflate_method_or_ctor): Likewise.
30133         (mono_image_get_generic_method_param_info): Initialize unused
30134         fields to zero.
30135         (mono_image_get_generic_param_info): Likewise.
30136
30137         * reflection.h (MonoReflectionInflatedMethod): New public
30138         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
30139         "S.R.MonoInflatedCtor" classes.
30140
30141         * loader.c (method_from_memberref): If we're a TypeSpec and it
30142         resolves to a generic instance, inflate the method.
30143
30144 2003-10-28  Dick Porter  <dick@ximian.com>
30145
30146         * object.c (mono_runtime_run_main): Convert command-line arguments
30147         into utf8, falling back to the user's locale encoding to do so.
30148
30149 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
30150
30151         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30152         at this time.
30153
30154         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30155
30156         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30157         up icalls at method definition time. Partially fixes #33569.
30158
30159 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
30160
30161         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30162         marshalling of arrays. Fixes #50116.
30163
30164         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30165
30166         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30167         points to a vtable in the dying appdomain.
30168
30169         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30170         listeners into unmanaged code inside the lock.
30171
30172         * object.c (mono_class_vtable): Turn off typed allocation in non-root
30173         domains and add some comments.
30174
30175 2003-10-25  Martin Baulig  <martin@ximian.com>
30176
30177         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30178
30179         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30180
30181         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
30182         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
30183         currently parsing.  Create the generic class and store it in
30184         `generic_inst->klass' before parsing the type arguments.  This is
30185         required to support "recursive" definitions; see mcs/tests/gen-23.cs
30186         for an example.
30187         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
30188         to support recursive typespec entries.
30189
30190         * class.c (mono_class_setup_parent): If our parent is a generic
30191         instance, we may get called before it has its name set.
30192         (mono_class_from_generic): Splitted into
30193         mono_class_create_from_generic() and mono_class_initialize_generic().
30194
30195 2003-10-25  Martin Baulig  <martin@ximian.com>
30196
30197         * icall.c (ves_icall_Type_BindGenericParameters): Return a
30198         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
30199         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
30200         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
30201
30202         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
30203         (create_typespec): Likewise.
30204         (mono_reflection_bind_generic_parameters): Return a
30205         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
30206         (mono_reflection_inflate_method_or_ctor): New public function.
30207
30208         * reflection.h (MonoReflectionGenericInst): New typedef.        
30209
30210 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
30211
30212         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
30213         inside the domain lock. Fixes #49993.
30214         
30215         * object.c (mono_class_vtable): When typed allocation is used, 
30216         allocate vtables in the GC heap instead of in the mempool, since the
30217         vtables contain GC descriptors which are used by the collector even
30218         after the domain owning the mempool is unloaded.
30219
30220         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
30221
30222         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
30223         reflect what it does. Also invalidate mempools instead of freeing
30224         them if a define is set.
30225
30226         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
30227         of the appdomain.
30228         
30229         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
30230         hold the finalizable objects in this domain.
30231
30232         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
30233         appdomain.
30234
30235         * appdomain.c (mono_domain_set): New function to set the current
30236         appdomain, but only if it is not being unloaded.
30237
30238         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
30239         appdomain which is being unloaded.
30240         
30241         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
30242         unloading of the root appdomain.
30243
30244         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
30245         icall to execute a method in another appdomain. Intended as a 
30246         replacement for InternalSetDomain, which can confuse the code 
30247         generation in the JIT.
30248
30249         * appdomain.c (mono_domain_is_unloading): New function to determine
30250         whenever an appdomain is unloading.
30251
30252         * appdomain.c (mono_domain_unload): New function to correctly unload
30253         an appdomain.
30254
30255         * assembly.c (mono_assembly_load_references): Check that an assembly
30256         does not references itself.
30257
30258         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
30259         domain manually, it asks the finalizer thread to do it, then waits for
30260         the result. Also added a timeout.
30261
30262         * icall.c: Register the new icalls.
30263
30264         * threads.h threads.c: Export the mono_gc_stop_world and 
30265         mono_gc_start_world functions.
30266         
30267         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
30268         function to fill out the mempool with 0x2a.
30269
30270 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
30271
30272         * reflection.h (MonoReflectionMethodAux): New structure to store
30273         information which is rarely used, thus is not in the MonoMethod
30274         structure.
30275
30276         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
30277         store the aux info.
30278
30279         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
30280         and marshalling info into the aux structure.
30281
30282         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
30283         from the aux structure.
30284
30285         * loader.c (mono_method_get_param_names): Retrieve the param names from
30286         the aux structure.
30287         
30288 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
30289
30290         * exception.h exception.c: Add AppDomainUnloadedException && fix 
30291         warning.
30292
30293 2003-10-21  Dick Porter  <dick@ximian.com>
30294
30295         * socket-io.c
30296         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
30297         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
30298
30299 2003-10-21  Martin Baulig  <martin@ximian.com>
30300
30301         * reflection.c (mono_reflection_bind_generic_parameters):
30302         `klass->parent' is NULL for interfaces.
30303
30304 2003-10-21  Martin Baulig  <martin@ximian.com>
30305
30306         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30307
30308 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
30309
30310         * exception.c (mono_exception_from_name_msg): New helper function for
30311         creating exceptions and initializing their message field.
30312
30313         * exception.c: Simplify functions using the new helper.
30314
30315         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
30316         New function.
30317
30318         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
30319         mono_raise_exception, since otherwise gcc doesn't generate the function
30320         epilog for raise_exception, confusing the stack unwinding in the JIT.
30321         Fixes #45043.
30322
30323         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30324         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30325         Fixes #49499.
30326
30327 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30328
30329         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30330         utf8.
30331
30332 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
30333
30334         * icall.c: Removed GetUninitializedObject method because
30335           AllocateUninitializedClassInstance does the same.
30336
30337 2003-10-18  Martin Baulig  <martin@ximian.com>
30338
30339         * class.c (inflate_generic_signature): Renamed to
30340         mono_class_inflate_generic_signature() and made it public.
30341         (my_mono_class_from_generic_parameter): New static function; if we
30342         don't already have the generic parameter's MonoClass, create a
30343         very simple one which is just used internally in the runtime and
30344         not passed back to managed code.
30345
30346         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30347
30348         * metadata.h (MonoMethodSignature): Moved the
30349         `MonoGenericParam *gen_params' to the MonoMethodHeader.
30350         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30351
30352         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30353         ves_icall_MonoMethod_GetGenericArguments(); this is now an
30354         interncall on the MonoMethod class, not on MethodInfo.
30355         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30356         calling mono_reflection_bind_generic_method_parameters() directly.
30357
30358         * loader.c (mono_method_get_signature): If this is a MethodSpec;
30359         return the already computed `method->signature'.
30360         (method_from_methodspec): New static function to load a method
30361         from a MethodSpec entry.
30362         (mono_get_method_from_token): Call the new method_from_methodspec()
30363         for MethodSpec tokens.  
30364         (mono_get_method_from_token): If we're a generic method, load the
30365         type parameters.
30366
30367         * reflection.c (mono_image_get_memberref_token): Allow
30368         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30369         table.
30370         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30371         (mono_image_create_token): First check whether it's a generic
30372         method (so we'd need to create a MethodSpec), then do the other
30373         two alternatives.
30374         (mono_reflection_bind_generic_method_parameters): Return a
30375         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30376         called directly from the interncall.
30377
30378 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30379
30380         * reflection.c (load_public_key): Move loading of the public key
30381         into managed code.
30382
30383         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30384
30385         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30386         fields.
30387
30388         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30389         culture, hash_alg and public_key. Fixes #49555.
30390
30391 2003-10-17  Martin Baulig  <martin@ximian.com>
30392
30393         * class.h (MonoGenericInst): Moved this declaration here and added
30394         `MonoMethod *generic_method'.
30395
30396         * icall.c
30397         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30398         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30399
30400         * metadata.c (mono_metadata_type_equal): Two types of
30401         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30402         index; ie. don't compare the address of the `MonoGenericParam'
30403         structure.
30404         (mono_metadata_load_generic_params): Removed the `MonoMethod
30405         *method' argument.
30406
30407         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30408         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30409
30410         * reflection.c (method_encode_signature): Encode the number of
30411         generic parameters.
30412         (encode_generic_method_sig): New static function.
30413         (method_encode_methodspec): New static function; creates an entry
30414         in the MethodSpec table for a generic method.
30415         (mono_image_get_methodspec_token): New static function.
30416         (mono_image_create_token): Call mono_image_get_methodspec_token()
30417         for generic methods.
30418         (mono_reflection_bind_generic_method_parameters): New public
30419         function.  Instantiates a generic method.
30420
30421 2003-10-16  Martin Baulig  <martin@ximian.com>
30422
30423         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30424         *gen_params' here from MonoMethodHeader.
30425
30426         * metadata.c (mono_metadata_parse_method_signature): If we have
30427         generic parameters, initialize `method->gen_params' and then set
30428         the correct `type->data.generic_param' in all the parameters.
30429
30430 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30431
30432         * threads.c (mono_threads_get_default_stacksize): New function to 
30433         return the default stacksize.
30434
30435         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30436         termination of the finalizer thread, since the previous method had
30437         race conditions. Fixes #49628.
30438
30439         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30440         as for the other managed threads.
30441
30442 2003-10-16  Martin Baulig  <martin@ximian.com>
30443
30444         * class.c (inflate_generic_signature): Copy `generic_param_count'
30445         and `gen_params'.
30446
30447         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30448         New interncall.
30449
30450         * metadata.c (mono_metadata_parse_method_signature): Actually set
30451         the `method->generic_param_count' here.
30452         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30453
30454 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30455
30456         * object.h: Add a new field to TypedRef to simplify the implementation
30457         of the REFANY opcodes in the JIT.
30458
30459         * icall.c: Make use of the new field.
30460
30461         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30462         dynamically.
30463
30464 2003-10-15  Martin Baulig  <martin@ximian.com>
30465
30466         * class.c (mono_class_from_gen_param): Renamed to
30467         mono_class_from_generic_parameter() and moved most of the
30468         functionality from mono_reflection_define_generic_parameter()
30469         here; ie. we create a "real" class here.
30470         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30471         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30472         previously been called.
30473
30474         * class.h (MonoGenericParam): Moved the declaration of this struct
30475         here from metadata.h and added `MonoMethod *method'.
30476
30477         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30478         interncall.
30479
30480         * loader.c (mono_get_method_from_token): If we have any generic
30481         parameters, call mono_metadata_load_generic_params() to read them
30482         from the MONO_TABLE_GENERICPAR.
30483
30484         * metadata.c (mono_metadata_load_generic_params): Added
30485         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30486
30487         * metadata.h (MonoMethodSignature): Replaced
30488         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30489         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30490
30491         * reflection.c (mono_reflection_define_generic_parameter): Moved
30492         most of the functionality into the new
30493         mono_class_from_generic_parameter(); set the `method' field if
30494         we're a method parameter.       
30495
30496 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30497
30498         * marshal.c (emit_struct_conv): if native size is 0
30499         emit no code.
30500
30501 2003-10-14  Martin Baulig  <martin@ximian.com>
30502
30503         * icall.c: The generics API has changed in the spec since it was
30504         added to System.Type; these modifications make it match the spec
30505         again.
30506         (ves_icall_Type_GetGenericParameters): Renamed to
30507         `ves_icall_Type_GetGenericArguments'.
30508         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30509         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30510         `ves_icall_MonoType_get_HasGenericArguments'.
30511         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30512         `ves_icall_MonoType_get_IsGenericParameter'.
30513         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30514         this is no interncall anymore.
30515         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30516         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30517
30518 2003-10-14  Martin Baulig  <martin@ximian.com>
30519
30520         * reflection.c (mono_reflection_bind_generic_parameters): Also
30521         inflate generic methods if we're reading the class from IL.
30522
30523 2003-10-13  Martin Baulig  <martin@ximian.com>
30524
30525         * reflection.c (mono_reflection_define_generic_parameter): This
30526         method isn't called directly from the icall anymore; take a
30527         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30528         method generic parameters.
30529         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30530         (method_builder_encode_signature): Encode generic parameters.
30531         (mono_image_get_method_info): Write generic params to the
30532         MONO_TABLE_GENERICPARAM table.
30533
30534         * reflection.h (MonoReflectionMethodBuilder): Added
30535         `MonoArray *generic_params'.
30536
30537         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30538
30539         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30540         wrapper for mono_reflection_define_generic_parameter().
30541         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30542
30543 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30544
30545         * marshal.h: Add missing function to fix build.
30546
30547         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30548         the SetLastError pinvoke attribute.
30549
30550         * marshal.c (mono_marshal_set_last_error): New helper function called
30551         by the generated code.
30552         
30553         * marshal.c (mono_mb_emit_branch): New helper function.
30554
30555         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30556
30557         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30558         classes as parameters and return values of delegates. Fixes #29256. 
30559
30560 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30561
30562         * locales.c: use gint32 in non HAVE_ICU case
30563
30564 2003-10-11  Martin Baulig  <martin@ximian.com>
30565
30566         * mono-debug.c (mono_debug_add_method): Added a workaround for
30567         bug #48591.
30568
30569 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30570
30571         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30572         delegates passed to native code must use the STDCALL calling 
30573         convention. Fixes #35987.
30574
30575 2003-10-10  Martin Baulig  <martin@ximian.com>
30576
30577         * class.c (inflate_generic_type): If we're inflating for a generic
30578         type instance (and not for a generic method), return
30579         MONO_TYPE_MVAR unchanged.
30580
30581 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30582
30583         * string-icalls.c: Join ignores null strings in the source array.
30584         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30585         * threads.c: GetAvailableTheads is slightly more accurate.
30586
30587 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
30588
30589         * threads.h threads.c : add mono_threads_set_default_stacksize
30590         and pass default to CreateThread calls.
30591
30592 2003-10-09  Dick Porter  <dick@ximian.com>
30593
30594         * icall.c:
30595         * locales.h:
30596         * locales.c: Internal calls for constructing CultureInfo and
30597         related objects from libicu (if its available.)
30598
30599 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
30600
30601         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
30602
30603 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30604
30605         * threadpool.c: added an argument to async_invoke_thread that is the
30606         item to process, pass the MonoAsyncResult to the thread start function
30607         when creating a new thread. This way we don't need to acquire any lock
30608         when we're creating a new thread. Readded a semaphore for faster
30609         response times (instead of that Sleep i added).
30610
30611 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
30612
30613         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30614         get daylight change dates better on Windows, fix handling
30615         of platforms without tm_gmtoff.
30616
30617 2003-10-06  Martin Baulig  <martin@ximian.com>
30618
30619         * class.c (inflate_generic_method): Renamed to
30620         mono_class_inflate_generic_method() and made public.
30621         (mono_class_init): Don't inflate the generic methods here.
30622         (mono_class_from_generic): Added `gboolean inflate_methods'
30623         argument.  Inflate the methods here.
30624
30625         * loader.c (mono_method_get_param_names): Ignore instances of
30626         generic types for the moment.
30627
30628         * reflection.c (fixup_method): Added support for inflated methods.
30629         (mono_image_create_token): Use mono_image_get_methodref_token()
30630         for inflated methods.
30631         (mono_custom_attrs_from_param): Ignore instances of generic types
30632         for the moment.
30633         (mono_reflection_bind_generic_parameters): New public function.
30634         Moved all the functionality from
30635         ves_icall_Type_BindGenericParameters() here and added support for
30636         dynamic types.
30637         (mono_reflection_define_generic_parameter): Initialize
30638         `klass->methods' here.
30639
30640         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
30641         functionality into mono_reflection_define_generic_parameter().
30642         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
30643         TypeBuilder, return that TypeBuilder.
30644
30645 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30646
30647         * appdomain.c: removed mono_delegate_semaphore.
30648
30649         * threadpool.c:
30650         (mono_thread_pool_add): moved hash table creation inside and the thread 
30651         creation outside of the critical region.
30652         (mono_thread_pool_finish): removed obsolete code.
30653         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
30654         continue or exit the thread depending on the queue.
30655
30656 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
30657
30658         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
30659         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
30660         handle more bool marshalling options
30661
30662 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
30663
30664         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
30665         arrays of structs. Also add a more descriptive error message when
30666         a structure member is marshalled as LPArray.
30667
30668 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
30669
30670         * marshal.c (mono_marshal_get_native_wrapper): Add support for
30671         marshalling arrays of complex types. Fixes #29098. Also remove an
30672         usused and incomplete function.
30673
30674 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30675
30676         * gc.c: report heap_size - free_bytes as total memory allocated
30677         (bug#49362).
30678
30679 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
30680
30681         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
30682         fix timezone handling problems on Windows.
30683         
30684         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
30685         asserts when the year is outside the range handled by ms the functions.
30686
30687         * class.c (setup_interface_offsets): If the class is an interface,
30688         fill out its interface_offsets slot.
30689
30690 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30691
30692         * threadpool.c: mark threadpool threads as background.
30693
30694 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
30695
30696         * decimal.c - define DECINLINE to nothing if not using GCC
30697
30698 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
30699
30700         * assembly.c: More refcount fixes.
30701
30702 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30703
30704         * string-icalls.c: if we're not trimming, return the same string.
30705         When not splitting, don't create a new string.
30706
30707 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30708
30709         * image.c:
30710         (mono_image_open): increment the ref_count inside the critical section.
30711
30712 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
30713
30714         * image.c (mono_image_open): Fix reference counting bug.
30715
30716 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
30717
30718         * marshal.c (mono_marshal_type_size) struct alignment changed for 
30719         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
30720         64bits. Avoid leak in mono_marshal_get_native_wrapper when
30721         mono_lookup_pinvoke_call throws.        
30722
30723 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
30724
30725         * reflection.c (mono_reflection_parse_type): Fix #49114.
30726
30727         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
30728         temporary workaround for cygwin header problem.
30729
30730         * object.c (mono_object_isinst): Synchronize this with the code
30731         generated by the JIT for casts.
30732
30733 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
30734
30735         * reflection.c (encode_type): Fix #38332.
30736
30737 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
30738
30739         * marshal.c (mono_marshal_method_from_wrapper): New function to return
30740         the original method from the wrapper method.
30741
30742 2003-09-25  Martin Baulig  <martin@ximian.com>
30743
30744         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
30745         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
30746         (ves_icall_Type_get_IsGenericInstance): New interncall.
30747
30748 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
30749
30750         * object.c: fix cast warning in big endian code.
30751
30752 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
30753
30754         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
30755         
30756 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30757
30758         * assembly.c: don't call check_env from mono_assembly_load. It's
30759         already done once in mono_assemblies_init and may cause headaches when
30760         multiple threads are loading assemblies.
30761
30762 2003-09-19  Martin Baulig  <martin@ximian.com>
30763
30764         * reflection.c (mono_reflection_define_generic_parameter): Don't
30765         allocate `klass->methods', set `klass->flags' to
30766         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
30767
30768 2003-09-18  Martin Baulig  <martin@ximian.com>
30769
30770         * class.c (mono_class_init): Don't create `class->methods' if it's
30771         already initialized.
30772
30773         * metadata.c (mono_metadata_load_generic_params): Make this
30774         actually work.
30775
30776         * reflection.c (mono_reflection_define_generic_parameter): Set
30777         parent class and interfaces from the constraints.
30778
30779         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
30780         to keep this struct in sync with the declaration in TypeBuilder.cs.
30781
30782 2003-09-17  Martin Baulig  <martin@ximian.com>
30783
30784         * metadata.h (MonoType): Replaced the data's `int type_param'
30785         field with `MonoGenericParam *generic_param'.
30786         (MonoGenericParam): Added `MonoClass *klass'.
30787
30788         * class.c (mono_class_from_gen_param): Removed the
30789         `MonoImage *image' and `int type_num' arguments.
30790
30791         * metadata.c (mono_metadata_parse_generic_param): New static
30792         method; creates a MonoGenericParam which just contains the index.
30793         (do_mono_metadata_parse_type): Call
30794         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
30795         MONO_TYPE_MVAR.
30796
30797         * reflection.c (mono_image_typedef_or_ref): Generic type
30798         parameters may be in the same assembly, but never use a typedef
30799         for them.
30800         (mono_reflection_define_generic_parameter): We're now creating a
30801         "real" class for the type parameter; it's now safe to call
30802         mono_class_from_mono_type() on the class'es type, it'll do the
30803         right thing.
30804
30805 2003-09-16  Martin Baulig  <martin@ximian.com>
30806
30807         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
30808         `symfile->range_entry_size' and `symfile->class_entry_size' here;
30809         the `symfile' data structure must be fully initialized before it
30810         gets added to the table.
30811
30812 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
30813
30814         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
30815
30816         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
30817         class init trampolines.
30818
30819 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
30820
30821         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
30822         to the built-in profiler to turn off time and allocation profiling
30823         respectively.
30824
30825 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
30826
30827         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
30828         g_direct_equal.
30829
30830         * debug-helpers.c (mono_method_full_name): Print the wrapper type
30831         in human readable form.
30832
30833 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
30834
30835         * reflection.c icall.c: Fixed warnings.
30836
30837         * image.c (load_class_names): Use a temporary hash table to hold the
30838         namespaces in order to avoid doing many string comparisons.
30839
30840         * image.h: Fix typo.
30841
30842         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
30843         Pass NULL instead of g_direct_equal to the GHashTable constructor 
30844         since the NULL case is short-circuited inside g_hash_table_lookup, 
30845         leading to better performance.  
30846
30847         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
30848         obtain the first custom attribute for a given index. Depends on the
30849         CustomAttribute table being sorted by the parent field.
30850
30851         * reflection.c (mono_custom_attrs_from_index): Use the new function 
30852         for better performance.
30853
30854 2003-09-07  Martin Baulig  <martin@ximian.com>
30855
30856         * class.c (mono_class_init): If we're a generic instance, inflate
30857         all our methods instead of loading them from the image.
30858         (mono_class_from_generic): Set `class->methods = gklass->methods'.
30859
30860 2003-09-07  Martin Baulig  <martin@ximian.com>
30861
30862         * mono-debug-debugger.c: Added support for constructors.
30863
30864 2003-09-06  Martin Baulig  <martin@ximian.com>
30865
30866         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
30867         New interncall.
30868
30869         * reflection.c (mono_reflection_setup_generic_class): Call
30870         ensure_runtime_vtable() to create the vtable.
30871
30872 2003-09-05  Martin Baulig  <martin@ximian.com>
30873
30874         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
30875         MONO_TYPE_MVAR.
30876
30877 2003-09-04  Martin Baulig  <martin@ximian.com>
30878
30879         * reflection.c (mono_reflection_define_generic_parameter): Generic
30880         parameters start with zero.
30881
30882 2003-09-04  Martin Baulig  <martin@ximian.com>
30883
30884         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30885
30886         * reflection.h (MonoReflectionGenericParam): New typedef.
30887         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
30888         the generic parameters from the managed TypeBuilder.
30889
30890         * reflection.c (mono_reflection_define_generic_parameter): New function.
30891         (mono_reflection_create_runtime_class): Encode generic parameters.
30892         (mono_reflection_setup_generic_class): New function; this is
30893         called after adding adding all generic params to the TypeBuilder.
30894         (encode_type): Added MONO_TYPE_VAR.
30895
30896 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
30897
30898         * class.h class.c (mono_class_needs_cctor_run): Moved this method
30899         here from the JIT.
30900
30901         * assembly.h assembly.c: Moved the AOT loading code into an assembly
30902         load hook.
30903
30904 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
30905
30906         * reflection.h reflection.c class.h class.c: Delete duplicate 
30907         definition of mono_type_get_name () from reflection.c and export the
30908         one in class.c.
30909
30910         * class.c: Class loading fixes from Bernie Solomon 
30911         (bernard@ugsolutions.com).
30912
30913         * reflection.c: Endianness fixes from Bernie Solomon 
30914         (bernard@ugsolutions.com).
30915         
30916 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
30917
30918         * assembly.h assembly.c: Define a file format version for AOT
30919         libraries.
30920         
30921         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
30922
30923         * appdomain.h (MonoJitInfo): New field to determine whenever the
30924         code is domain neutral.
30925         
30926 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
30927
30928         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
30929
30930 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
30931
30932         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
30933         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
30934         Avoid caching the result since strings must be domain specific. Fixes
30935         #48050.
30936
30937 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
30938
30939         * marshal.c (mono_marshal_init): Make this callable multiple times
30940         since it is hard to find a correct place to call it.
30941
30942         * object.c (mono_runtime_class_init): Execute static constructors in
30943         the correct appdomain.
30944
30945         * image.c (build_guid_table): Handle the case when multiple images have
30946         the same GUID.
30947
30948 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30949
30950         * icall.c: added a couple of icalls for System.Web.
30951
30952 2003-08-28  Martin Baulig  <martin@ximian.com>
30953
30954         * icall.c (ves_icall_Type_BindGenericParameters): Use
30955         `klass->generic_inst' instead of `&klass->byval_arg' in the
30956         mono_type_get_object() call.  The returned type must be
30957         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
30958
30959 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
30960
30961         * NOTES: New file.
30962
30963         * object.c (mono_class_proxy_vtable): Make it thread safe.
30964
30965         * pedump.c: Fix warning.
30966
30967         * object.c appdomain.h: Get rid of metadata_section. 
30968         It is no longer needed and it was causing deadlocks with domain->lock.
30969
30970         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
30971
30972 2003-08-26  Martin Baulig  <martin@ximian.com>
30973
30974         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
30975
30976 2003-08-26  Martin Baulig  <martin@ximian.com>
30977
30978         * pedump.c (main): Call mono_metadata_init(),
30979         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
30980         and mono_loader_init().
30981
30982 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
30983
30984         * loader.h: Add missing include to fix build.
30985
30986         * image.h: mono_image_load_references is no more.
30987
30988         * assembly.c: Reworked assembly loading to make it really thread safe.
30989         After these changes, the assembly returned by mono_assembly_open is
30990         fully initialized, i.e. all its references assemblies are loaded.
30991
30992         * assembly.c (mono_image_load_references): Renamed to 
30993         mono_assembly_load_references, and made private, since clients no
30994         longer need to call it.
30995
30996         * class.c: Removed calls to mono_assembly_load_references, since it was
30997         a source of deadlocks.
30998
30999         * loader.h loader.c class.h class.c: Protect data structures using a 
31000         new lock, the loader lock.
31001
31002         * class.c (mono_class_setup_vtable): Create temporary hash tables and
31003         GPtrArrays only when needed.
31004
31005         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
31006         into empty structures by mcs. Fixes pinvoke7.cs.
31007         
31008         * domain.c (mono_init): Call a new initialization function.
31009
31010         * appdomain.c (mono_runtime_init): Call the new initializer function
31011         of the marshal module.
31012
31013         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
31014         inserted into empty structures by mcs. Fixes pinvoke7.cs.
31015
31016         * marshal.h marshal.c: Added locks around the wrapper caches to make
31017         this module thread safe.
31018
31019         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
31020         this argument. Fixes pinvoke1.exe.
31021
31022 2003-08-25  Lluis Sanchez <lluis@ximian.com>
31023
31024         * object.h: Added call_type field to MonoMethodMessage and the corresponding
31025         enumeration of values. Removed fields to store remote call output values in
31026         MonoAsyncResult. Not needed any more.
31027         * object.c: Initialize call_type and async_result fields in mono_message_init.
31028         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
31029         dispatching the message.
31030         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
31031         async call to finish. To do it use a message with EndInvoke call type.
31032
31033 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
31034
31035         * loader.h loader.c (mono_method_hash_marhal_info): New function which
31036         determines whenever a method has marshalling info.
31037
31038 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31039
31040         * assembly.c: fix the build on windows.
31041
31042 2003-08-22 Lluis Sanchez <lluis@ximian.com>
31043
31044         * object.cs: Fixed bug #47785.
31045
31046 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
31047
31048         * string-icalls.c (StringReplace): If their are no occurances of
31049         the old string found return a reference to the supplied
31050         string. This saves some memory and matches MS behavoir.
31051         
31052 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31053
31054         * socket-io.c: fixed compilation for systems that define AF_INET6
31055         and don't define SOL_IP/SOL_IPV6.
31056
31057 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
31058
31059         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
31060         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
31061
31062         * rawbuffer.c rawbuffer.h: Make this module thread safe.
31063
31064         * domain.c: Make this module thread safe.
31065
31066         * domain.c (mono_init): Call new initialization function.
31067
31068         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
31069         reference types too. Fixes #38812.
31070
31071         * image.c (mono_image_init): Fixed warnings.
31072
31073         * class.c (mono_class_from_typeref): Handle assembly load failure
31074         correctly.
31075
31076         * appdomain.c (add_assemblies_to_domain): Handle the case when
31077         the references of an assembly are not yet loaded.
31078
31079         * metadata.c image.c assembly.c: Moved initialization of global
31080         variables to a separate function called at startup since lazy 
31081         initialization of these variables is not thread safe.
31082         
31083         * image.c assembly.c: Made this module thread safe by adding locks in 
31084         the appropriate places.
31085
31086         * domain.c (mono_init): Call the new initialization functions of the
31087         three modules.
31088
31089 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
31090
31091         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31092           make a direct call. It is proxy's work to make the call asynchronous.
31093           mono_delegate_end_invoke(): If the targe is a proxy, just collect
31094           the return values.
31095         * object.cs: mono_method_call_message_new(): read AsyncResult and
31096           state object from parameters list, if this info is requested.
31097         * object.h: Added fields to store remote call output values in
31098           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31099
31100 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31101
31102         * object.h: add needed fields to MonoThread.
31103         * threads.c, threads.h: allow registering a function to cleanup data
31104         allocated per thread by the JIT.
31105
31106 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31107
31108         * loader.h: portability fix by Bernie Solomon
31109         * <bernard@ugsolutions.com>.
31110
31111 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
31112
31113         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
31114         return a MonoArray. This simplifies the code and also ensures that
31115         the cache allways contains an object reference as a value.
31116
31117         * icall.c (ves_icall_get_parameter_info): Simplified using the new
31118         function.
31119
31120 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31121
31122         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31123         fixes a problem with byte ordering when getting the address family for
31124         a socket.
31125
31126 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
31127
31128         * .cvsignore: Added monosn.
31129
31130         * reflection.h reflection.c loader.c: Added support for parameter
31131         marshalling to dynamically created types. Fixes #47295.
31132
31133 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31134
31135         * rand.c: remove useless warnings.
31136
31137 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31138
31139         * class.c: implemented ldtoken for methods and fieldrefs.
31140
31141 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31142
31143         * threadpool.c: when mono_async_invoke was called, no one took care of
31144         monitoring the queue. So if the method invoked took some time and we
31145         got new async invoke requests after 500 ms (the thread created waited
31146         that long in WaitForSingleObject), the new async invoke was not called
31147         until the previous one finished.
31148
31149         This is fixed now. Thanks to Totte for helping with it.
31150
31151 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31152
31153         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31154
31155 2003-08-11  Martin Baulig  <martin@ximian.com>
31156
31157         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31158
31159 2003-08-06  Martin Baulig  <martin@ximian.com>
31160
31161         * mono-debug-debugger.c: Added support for static fields,
31162         properties and methods.
31163
31164 2003-08-06  Martin Baulig  <martin@ximian.com>
31165
31166         * mono-debug-debugger.c: Don't store the MonoString's vtable to
31167         make this work for applications with multiple application domains.
31168
31169 2003-08-04  Martin Baulig  <martin@ximian.com>
31170
31171         * mono-debug-debugger.c: Completely reworked the type support; the
31172         most important thing is that we're now just using one single
31173         `MonoType' instance per type.
31174
31175 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31176
31177         * mono-endian.h, mono-endian.c, icall.c: Added icall
31178         ves_icall_System_Double_AssertEndianity to assert double word endianity
31179         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31180
31181 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31182
31183         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
31184         support, icalls and fixes.
31185
31186 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
31187
31188         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
31189         classes that are a punctuation character in .NET is not the same a
31190         g_unichar_ispunct.
31191
31192 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31193
31194         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
31195
31196 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
31197
31198         * icall.c: Add new MemCopy internalcall.
31199         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
31200         Simplified code; It is not necessary to handle all the cases here,
31201         as the C# code takes care of it.  Only handle the case of the name
31202         resource embedded into the assembly.
31203
31204         Changed signature to return the data pointer and the size of the
31205         data. 
31206
31207 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
31208
31209         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
31210         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
31211
31212 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31213
31214         * socket-io.c: ignore EINTR error in select.
31215
31216 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31217
31218         * class.h, class.c: removed unused subclasses field in MonoClass.
31219
31220 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31221
31222         * icall.c: improve fix of get_base_definition(). If the parent class
31223           doesn't have the mehod, look at the parent of the parent.
31224         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
31225           to check if a parameter is an in or out parameter
31226           (PARAM_ATTRIBUTE_IN is not set by default).
31227           mono_method_return_message_restore(): Use mono_class_value_size to
31228           get the size of a value type. mono_type_stack_size (parameterType)
31229           does not return the correct value if parameterType is byRef.
31230           mono_load_remote_field(), mono_load_remote_field_new(),
31231           mono_store_remote_field(), mono_store_remote_field_new():
31232           raise exception if the remote call returns an exception.
31233
31234 2003-07-28  Martin Baulig  <martin@ximian.com>
31235
31236         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
31237         method.  This is a wrapper around mono_runtime_invoke() which
31238         boxes the instance object if neccessary.
31239
31240 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31241
31242         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
31243         metadata.h, row-indexes.h, verify.c: first cut of generics support.
31244
31245 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31246
31247         * icall.c: disable mcs bug workaround.
31248
31249 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
31250
31251         * object.c (mono_runtime_class_init): Take the metadata_section
31252         mutex before obtaining the domain mutex.
31253
31254         * appdomain.h: Added definition of metadata_section mutex here. 
31255
31256         * object.c: define metadata_mutex here.
31257
31258 2003-07-24  Ravi Pratap  <ravi@ximian.com>
31259
31260         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
31261         fixed.
31262
31263 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
31264
31265         * reflection.c: Fix bug #46669
31266
31267 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31268
31269         * exception.c:
31270         * exception.h:
31271         * icall.c:
31272         * object.h: fill in the type name for TypeLoadException.
31273
31274 2003-07-23  Ravi Pratap  <ravi@ximian.com>
31275
31276         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
31277         relationship between TypeBuilders while compiling corlib) and bug
31278         45993 (Array types returned from the runtime while compiling
31279         corlib were from the loaded corlib).
31280
31281 2003-07-22  Martin Baulig  <martin@ximian.com>
31282
31283         * mono-debug-debugger.c: Reworked the type support a bit more;
31284         distinguish between types and classes.
31285
31286 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
31287
31288         * icall.c: add IsArrayImpl icall.
31289
31290 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
31291
31292         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
31293         initializing real_size only once. Also fix bug #46602.
31294
31295 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
31296
31297         * object.c: Renamed mono_metadata_section to metadata_section.
31298
31299 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
31300
31301         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
31302           empty array if the type is an array. Fixed.
31303           ves_icall_MonoMethod_get_base_definition: if the base method
31304           is abstract, get the MethodInfo from the list of methods of
31305           the class.
31306         * reflection.c: ParameterInfo.PositionImpl should be zero-based
31307           and it was 1-based. Fixed in mono_param_get_objects.
31308
31309 2003-07-20  Martin Baulig  <martin@ximian.com>
31310
31311         * mono-debug.h: Set version number to 31.
31312         (mono_debug_init): Added `MonoDomain *' argument.
31313
31314         * mono-debug-debugger.c: Reworked the type support; explicitly
31315         tell the debugger about builtin types; pass the `klass' address to
31316         the debugger.
31317
31318 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
31319
31320         * image.c: Allow new metadata tables to be loaded without a
31321         warning. Also update the warning message to give the new constant value.
31322                 
31323 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31324
31325         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31326         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
31327         array type representation changes.
31328
31329 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31330
31331         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31332         on Environment.Exit () call.
31333
31334 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31335
31336         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31337         requires a matching corlib.
31338
31339 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31340
31341         * Changelog: My editor decided to add a CR to each line. Sorry about that.
31342           Committed again without the CRs.
31343         
31344 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31345
31346         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31347           getting it from the "this" socket instance. Did not work
31348           if the socket is a subclass of Socket.
31349           Also fixed bug #35371.
31350
31351 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31352
31353         * metadata.c: fixed size for TypedByRef.
31354         * loader.c: when searching for a method, consider the vararg amrker.
31355         * unicode.c, decimal.c: constify some arrays.
31356
31357 2003-07-15  Dick Porter  <dick@ximian.com>
31358
31359         * socket-io.c: Fixed compilation for gcc < 3.2.
31360
31361         Fixed compilation for machines that don't have AF_INET6 (thanks to
31362         Bernie Solomon <bernard@ugsolutions.com> for that part.)
31363
31364         Fixed compile warnings.
31365         
31366         Fixed formatting and line endings.
31367
31368 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31369
31370         * socket-io.h:
31371         * socket-io.c: Added IPv6 support.
31372
31373 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31374
31375         * class.c (mono_class_is_assignable_from): New function to implement
31376         the is_assignable_from logic. Used by mono_object_isinst, 
31377         Type::IsAssignableFrom () and the interpreter.
31378
31379         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31380         Object, even interfaces.
31381         
31382         * object.c (mono_object_isinst): Implement in terms of 
31383         is_assignable_from.
31384
31385         * icall.c (ves_icall_type_is_assignable_from): New icall.
31386
31387 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31388
31389         * domain.c (foreach_domain): fix compiler warning.
31390
31391 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31392
31393         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31394         not available on all plattforms
31395
31396 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31397
31398         * image.h image.c: Store the metadata version string in MonoImage.
31399         * icall.c: New icall to retrieve the image version.
31400         * reflection.c (create_dynamic_image): Fill in the image version field
31401         * reflection.c (build_compressed_metadata): Use the image version
31402         from the image structure.
31403
31404 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31405
31406         * appdomain.c: modified comment.
31407         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31408         That will be its last iteration when mono_gc_cleanup is called from
31409         mono_runtime_cleanup and before the domain is unloaded.
31410
31411         Fixes bug #45962.
31412
31413 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31414
31415         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31416         attributes.
31417
31418 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31419
31420         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31421         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31422         Bernie Solomon <bernard@ugsolutions.com>.
31423
31424 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31425
31426         * object.c, object.h: provide mono_object_new_fast() for faster
31427         allocation in some special cases.
31428
31429 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31430
31431         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31432         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31433
31434 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31435
31436         * threadpool.c: fix leaks.
31437
31438 2003-07-01  Dick Porter  <dick@ximian.com>
31439
31440         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31441         using MonoGHashTables.  Fixes threadpool bug posted to list.
31442
31443 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31444
31445         * image.h, image.c: added support to load an assembly from a byte array.
31446         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31447         assembly bundle support.
31448
31449 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31450
31451         * threadpool.c (mono_thread_pool_add): keep a reference to the
31452         AsyncResult to prevent GC
31453
31454 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31455
31456         * class.c: leak fix.
31457
31458 2003-06-25  Dick Porter  <dick@ximian.com>
31459
31460         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31461         for the async object, the WaitHandle object will close the handle.
31462         Fixes bug 45321.
31463
31464 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31465
31466         * class.c: in mono_array_class_get (), lookup from the hash with the
31467         same type we insert: this works around a bug in
31468         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31469         lluis. The real fix will have to wait for after the release.
31470
31471 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31472
31473         * icall.c: fix memory leak when getting type members.
31474
31475 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31476
31477         * reflection.c: added more pubtoken special cases.
31478
31479 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31480
31481         * class.c: handle field offset correctly when class size
31482         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31483
31484 2003-06-20  Martin Baulig  <martin@ximian.com>
31485
31486         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31487         *image' field.
31488
31489 2003-06-20  Martin Baulig  <martin@ximian.com>
31490
31491         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31492
31493 2003-06-20  Martin Baulig  <martin@ximian.com>
31494
31495         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31496         just distinguish between variables in registers and variables at
31497         an offset relative to a register.
31498
31499 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31500
31501         * icall.c: #ifdef out latest changes until mcs is fixed.
31502
31503 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31504
31505         * icall.c: return members in metadata order.
31506
31507 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31508
31509         * icall.c: avoid infinite loop in GetTimeZoneData.
31510
31511 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31512
31513         * icall.c: added Marshal.Prelink/All icalls.
31514
31515 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31516
31517         * object.c, object.h: fix warnings and do some overflow checking
31518         when creating arrays.
31519
31520 2003-06-17  Dick Porter  <dick@ximian.com>
31521
31522         * file-io.h:
31523         * file-io.c: File attributes need to be tweaked slightly when
31524         passed from the managed to the w32 world.
31525
31526 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31527         * profiler.h profiler-private.h profiler.c: Rework last patch
31528         based on suggestion by Paolo.
31529         
31530 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31531
31532         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31533         instruction level coverage data collection.
31534         * profiler.h profiler.c (: Added new callback function which can be
31535         used by the profiler to limit which functions should have coverage
31536         instrumentation.
31537         * profiler.c (mono_profiler_load): Call g_module_build_path to
31538         generate the file name of the profiler library.
31539
31540 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31541
31542         * profiler.c, profiler.h, profiler-private.h: added basic block 
31543         coverage profiling API.
31544
31545 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31546
31547         * reflection.c (mono_reflection_create_runtime_class): Add support
31548         for events in dynamically generated code.
31549
31550         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31551         not allocated.
31552
31553 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31554
31555         * icall.c: when getting timezone info, return reasonable values if we
31556         can't get the actual data.
31557
31558 2003-06-14  Dick Porter  <dick@ximian.com>
31559
31560         * threads.c (start_wrapper): Remove the reference to the thread
31561         object in the TLS data, so the thread object can be finalized.
31562         This won't be reached if the thread threw an uncaught exception,
31563         so those thread handles will stay referenced :-( (This is due to
31564         missing support for scanning thread-specific data in the Boehm GC
31565         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31566
31567 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31568
31569         * reflection.c: ensure streams and tables are first allocated with
31570         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31571
31572 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31573
31574         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31575
31576 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31577
31578         * reflection.c (mono_reflection_create_runtime_class): Add support for
31579         properties to dynamically created classes.
31580         * reflection.c: Fix a few places where non-MonoObjects were inserted
31581         into the tokens hashtable.
31582
31583 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31584
31585         * object.c: some support to handle out of memory exceptions.
31586
31587 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
31588
31589         * marshal.c (mono_marshal_get_native_wrapper): support reference
31590         return types
31591
31592 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31593
31594         * object.h, object.c: more portability stuff from Bernie Solomon.
31595         Unexport mono_object_allocate(). Added mono_object_unbox ().
31596         Set exitcode when an unhandled exception is thrown.
31597
31598 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
31599
31600         * marshal.c (mono_marshal_get_native_wrapper): use custom
31601         marshaler for return types.
31602
31603 2003-06-10  Dick Porter  <dick@ximian.com>
31604
31605         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
31606         ip_mreq is available
31607
31608 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
31609
31610         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
31611         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
31612         by Bernie Solomon <bernard@ugsolutions.com>.
31613
31614 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
31615
31616         * gc.c (mono_gc_init): Avoid error message on shutdown when
31617         GC_DONT_GC=1 is used.
31618
31619         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
31620         New icall to return the GUID of a module.
31621
31622 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31623
31624         * class.c: ensure instance size always includes the parent's size
31625         even whem class size is set explicitly (fixes bug#44294).
31626
31627 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31628
31629         * profiler.h, profiler.c: made the simple profiler thread-safe,
31630         get more accurate timing info. Allow the loading of an
31631         externally-developed profiler module.
31632
31633 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
31634
31635         * marshal.c (mono_marshal_get_native_wrapper): improved
31636         class/byref arguments.
31637         (mono_marshal_get_native_wrapper): better string marshaling support.
31638
31639 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
31640
31641         * class.c: ensure .pack and .size are handled correctly and
31642         simplified layout of static fields.
31643
31644 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
31645
31646         * appdomain.c
31647         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
31648
31649         * loader.c (mono_lookup_pinvoke_call): look for modules in the
31650         current directory (fix bug 44008)
31651
31652 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
31653
31654         * marshal.c (mono_marshal_get_native_wrapper): started support for
31655         custom marshalers.
31656         (mono_delegate_to_ftnptr): consider marshalling specifications
31657
31658 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
31659
31660         * reflection.c, reflection.h: emit custom marshal info.
31661
31662 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31663
31664         * object.c: free the GError.
31665         * icall.c: added CloseEvent_internal.
31666         * threads.[ch]:
31667         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
31668         call.
31669
31670 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
31671
31672         * loader.c (mono_method_get_signature): Add support for dynamic
31673         assemblies.
31674
31675 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
31676
31677         * reflection.c: fixed bug #43905.
31678
31679 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31680
31681         * class.c, domain.c, icall.c, metadata.h, object.h: support for
31682         handling TypedReference and ArgIterator.
31683         * loader.c, loader.h: added function to get signature at call site.
31684
31685 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31686
31687         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
31688         data readonly. Buglets and warning fixes. Some MethodSpec support.
31689
31690 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31691
31692         * class.h, class.c, object.c: remove relative numbering support.
31693
31694 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
31695
31696         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
31697         free the string, until we get a chance to fix Gtk#
31698
31699 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31700
31701         * marshal.c: revert last patch.
31702
31703 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
31704
31705         * icall.c: updates for new mono_class_vtable() not calling
31706         the type constructor anymore.
31707
31708 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31709
31710         * object.h, object.c: separate vtable creation from type
31711         initialization. Make running the .cctor thread safe.
31712
31713 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
31714
31715         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
31716
31717 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
31718
31719         * loader.c (mono_get_method): consider calling convention
31720
31721 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
31722
31723         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
31724         to return the invisible global type for a module.
31725
31726         * reflection.c (mono_image_build_metadata): Emit global fields too.
31727
31728 2003-05-20  Peter Williams  <peterw@ximian.com>
31729
31730         * loader.c (mono_lookup_internal_call): Add a few newlines.
31731
31732 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
31733
31734         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
31735         literal strings.
31736
31737         * appdomain.c (set_domain_search_path): Recalculate search path when
31738         AppDomainSetup.PrivateBinPath changes.
31739
31740         * object.c (mono_class_compute_gc_descriptor): It turns out some
31741         parts of the class libs (like System.Thread) holds pointers to
31742         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
31743         to treat native int a pointer type here.
31744         
31745 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
31746
31747         * appdomain.h, domain.c: add hashtable for jump target resolution.
31748
31749 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
31750
31751         * reflection.h reflection.c icall.c: Added new icalls 
31752         GetManifestResourceInfoInternal, GetModulesInternal and support
31753         infrastructure.
31754
31755 2003-05-16  Dick Porter  <dick@ximian.com>
31756
31757         * icall.c:
31758         * file-io.h:
31759         * file-io.c: Implement System.IO.MonoIO::GetTempPath
31760
31761 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
31762
31763         * object.c: mono_store_remote_field: little fix to previous patch.
31764
31765 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31766
31767         * class.c: add constructors to array classes.
31768         * icall.c: special case array construction for InternalInvoke (),
31769
31770 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
31771
31772         * class.h class.c reflection.c object.c: Added support for field
31773         defaults in dynamically generated classes.
31774
31775 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
31776
31777         * reflection.c: properly encode charset for ddlimport.
31778
31779 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
31780
31781         * threads.c: allow compiling without GC.
31782
31783 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31784
31785         * appdomain.h, object.c, object.h, threads.c, threads.h: added
31786         handling of thread static data.
31787
31788 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31789
31790         * reflection.h, reflection.c: added mono_custom_attrs_free ().
31791
31792 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
31793
31794         * class.c (mono_array_class_get): always set the serializable flags
31795         (mono_array_class_get): always set the SEALED attribute for array types
31796
31797 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
31798
31799         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
31800         attributes (fix for bug 42021).
31801
31802 2003-05-12  Dick Porter  <dick@ximian.com>
31803
31804         * gc.c: Don't run finalizers when the finalizer thread is
31805         finishing up, because the default domain has already been
31806         destroyed.
31807
31808 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
31809
31810         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
31811         value is null, we should throw an exception.   This is slightly
31812         different than the other conventions used for the constructor.
31813
31814 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31815
31816         * socket-io.c: fixed windows build.
31817
31818 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31819
31820         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
31821
31822 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
31823
31824         * object.c (mono_string_new_wrapper): Compatibility fix for MS
31825         compilers.
31826
31827 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
31828
31829         * class.c (mono_class_layout_fields): Add experimental GC aware
31830         auto layout facility. Requires class library changes to work correctly.
31831
31832         (mono_class_setup_vtable): Avoid overriding explicit interface
31833         method implementations. Fixes iface3.exe test.
31834
31835         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
31836         object reference.
31837         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
31838         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
31839
31840         * metadata.h: Add new type classification macro which determines
31841         whenever the type holds an object reference.
31842
31843 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
31844
31845         * marshal.c (mono_marshal_get_native_wrapper): cleanups
31846
31847 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
31848
31849         * gc.c (finalizer_thread): Work around a GC bug.
31850
31851 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
31852
31853         * marshal.c (emit_struct_conv): allow unions
31854
31855         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
31856
31857 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
31858
31859         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
31860
31861 2003-05-06  Martin Baulig  <martin@ximian.com>
31862
31863         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
31864
31865 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31866
31867         * socket-io.c:
31868         (Select_internal): allow NULLs, don't create arrays if not needed.
31869         Coupled with Socket.cs changes.
31870
31871         * threadpool.c:
31872         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
31873         register a finalizer for it that will close the semaphore handle. This
31874         fixes the leak and make Lupus' test run with > 4080 loops.
31875
31876 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
31877
31878         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
31879         Jerome Laban (bug #42287)
31880
31881 2003-05-02  Martin Baulig  <martin@ximian.com>
31882
31883         * debug-mono-symfile.h
31884         (MonoSymbolFile): Moved declaration into mono-debug.h.
31885         (MonoDebugMethodJitInfo): Likewise.
31886         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
31887         argument.
31888         (_mono_debug_address_from_il_offset): Take a
31889         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
31890
31891         * mono-debug.h
31892         (MonoDebugDomainData): New struct.
31893         (mono_debug_get_domain_data): New function.
31894         (mono_debug_add_method): Take an additional `MonoDomain *'
31895         argument.
31896         (mono_debug_source_location_from_address): Likewise.
31897         (mono_debug_il_offset_from_address): Likewise.
31898         (mono_debug_address_from_il_offset): Likewise.
31899
31900 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
31901
31902         * reflection.c: one more check for null type in custom attrs.
31903
31904 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31905
31906         * reflection.c: avoid warning (comparison is always false due to limited
31907         range of data type).
31908
31909 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31910
31911         * icall.c: throw an exception in Type.GetField if the argument 'name'
31912         is NULL.
31913
31914 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
31915
31916         * reflection.c: fixed handling of enums in named arguments to custom
31917         attributes (bug #42123).
31918
31919 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
31920
31921         * reflection.c: use the right array element type and handle
31922         a null for a Type argument, too.
31923
31924 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
31925
31926         * reflection.c: handle arrays as arguments to custom attributes.
31927
31928 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31929
31930         * reflection.c: handle a string value in a custom attr
31931         ctor that takes an object.
31932
31933 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
31934
31935         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
31936         (fix bug #42063)
31937
31938 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
31939
31940         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
31941
31942 2003-04-27  Martin Baulig  <martin@ximian.com>
31943
31944         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
31945         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
31946         MONO_DEBUGGER_EVENT_BREAKPOINT.
31947         (mono_breakpoint_trampoline_code): Removed.
31948         (mono_debugger_event_handler): The last argument is now a
31949         `guint32'.
31950         (mono_debugger_insert_breakpoint_full): Removed the
31951         `use_trampoline' argument.
31952         (mono_debugger_method_has_breakpoint): Likewise.
31953         (mono_debugger_trampoline_breakpoint_callback): Renamed to
31954         mono_debugger_breakpoint_callback(); take the method and
31955         breakpoint number as arguments.
31956
31957 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
31958
31959         * metadata.c: fix off by one when loading parameters attributes.
31960
31961 2003-04-24  Martin Baulig  <martin@ximian.com>
31962
31963         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
31964
31965 2003-04-24  Martin Baulig  <martin@ximian.com>
31966
31967         * mono-debug-debugger.c: Moved all code which interacts with the
31968         Mono Debugger here.
31969
31970         * debug-mono-symfile.c: This code now just deals with the symbol
31971         file itself, the debugger code is now in mono-debug-debugger.c.
31972
31973 2003-04-23  Martin Baulig  <martin@ximian.com>
31974
31975         * mono-debug.c (mono_debug_source_location_from_il_offset):
31976         New method; like mono_debug_source_location_from_address(), but
31977         takes an IL offset instead of a machine address.
31978
31979 2003-04-23  Martin Baulig  <martin@ximian.com>
31980
31981         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
31982         `line' field; this is now computed by the debugger.
31983
31984 2003-04-23  Martin Baulig  <martin@ximian.com>
31985
31986         * mono-debug.[ch]: New files.  This is the new debugging interface.
31987
31988         * mono-debug-debugger.[ch]: New files.  Moved all code which
31989         interacts with the Mono Debugger here.
31990
31991 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
31992
31993         * domain.c (mono_init): initialize mono_defaults.monitor_class
31994
31995 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
31996
31997         * reflection.c (method_encode_code): Add a spicy exception to help
31998         future compiler authors.
31999
32000 2003-04-21  Martin Baulig  <martin@ximian.com>
32001
32002         * icall.c
32003         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32004         Make this work with relative pathnames; g_filename_to_uri() needs
32005         an absolute filename.
32006
32007 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
32008
32009         * icall.c: Track name changes in Object and ValueType.
32010
32011 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
32012
32013         * metadata.c (mono_type_stack_size): size should be a multiple of
32014         sizeof (gpointer)
32015
32016 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32017
32018         * gc.c:
32019         (internal_domain_finalize): moved into mono_domain_finalize. No need
32020         to create another thread because the finalizers will be run in the
32021         finalizer thread.
32022         
32023         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
32024         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
32025         to be run (MS does this too).
32026
32027 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
32028
32029         * object.c (mono_class_compute_gc_descriptor): Update comment.
32030
32031         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
32032
32033         * image.h: Add synchronized wrapper cache.
32034
32035         * image.c (do_mono_image_open): Initialize cache.
32036
32037         * reflection.c (create_dynamic_mono_image): Initialize cache.
32038
32039 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32040
32041         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
32042         ves_icall_System_Buffer_ByteLengthInternal.
32043
32044 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32045
32046         * reflection.c: setup klass->nested_in earlier. Allow
32047         a dash in the assembly name.
32048
32049 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
32050
32051         * metadata.c (mono_type_to_unmanaged): dont access
32052         type->data.klass for MONO_TYPE_OBJECT
32053         (mono_type_to_unmanaged): consider System.Delegate class
32054
32055 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
32056
32057         * class.c: just setup supertypes in the proper place instead of
32058         initializing the full element class for arrays.
32059
32060 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32061
32062         * class.c: ensure the element class of arrays is initialized.
32063         Setup the supertype info for array classes, too.
32064
32065 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
32066
32067         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
32068
32069 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32070
32071         * Makefile.am: re-added -m option when running cygpath. This way,
32072         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
32073         separator.
32074         * mono-config.c: same codepath for locating mono config file for WIN32
32075         and the rest.
32076         * assembly.c: if mono_assembly_setrootdir is called, don't override
32077         the value set.
32078
32079 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32080
32081         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32082         MONO_ASSEMBLIES variable.
32083
32084 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32085
32086         * icall.c: added Assembly::GetNamespaces() icall.
32087
32088 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32089
32090         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32091
32092 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
32093
32094         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32095         * object.c: fixed bug in the construction of vtable for proxies
32096
32097 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
32098
32099         * object.c (mono_array_new): Mark mono_array_new as an icall.
32100
32101 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32102
32103         * class.c: fixed test for public method when overriding interfaces.
32104         Closes bug #40970.
32105
32106 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32107
32108         * appdomain.h, domain.c: added mono_domain_foreach() to
32109         be able to access the currently loaded appdomains.
32110         * object.c: make string interning work across sppdomains.
32111         Mark some functions for use as icalls.
32112
32113 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
32114
32115         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32116
32117         * reflection.h reflection.c: Allocate long living data using 
32118         GC_MALLOC_ATOMIC so the collector does not need to scan it.
32119
32120         * reflection.c: Double the allocation size in streams instead of
32121         increasing it, to prevent unneccesary copying on large assemblies.
32122         
32123         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32124         creation if the assembly does not have the Run flag set.
32125
32126 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32127
32128         * class.h: avoid the C++ keywords in header files (Jerome Laban
32129         spotted and fixed this).
32130
32131 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32132
32133         * object.c:
32134         (mono_unhandled_exception): fill in the arguments for the
32135         UnhandledException event. Only trigger that event for the default
32136         domain (as MS does).
32137
32138 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
32139
32140         * object.c: Improve typed allocation stuff based on suggestions from
32141         Paolo. Also turn it on if the GC library supports it.
32142
32143 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32144
32145         * object.c object.h class.h: Added experimental typed allocation
32146         facility using the interfaces in gc_gcj.h.
32147
32148         * os/gc_wrapper.h: Added new include files.
32149         
32150 2003-04-03  Martin Baulig  <martin@ximian.com>
32151
32152         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32153         which is not yet enabled by default.
32154
32155         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32156         functions.
32157         (mono_gc_lock, mono_gc_unlock): New static functions.
32158
32159         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32160         functions; stop/start the world for the garbage collector.  This
32161         is using the windows API; we need to complete the SuspendThread()/
32162         ResumeThread() implementation in the io-layer to make this work on Unix.
32163         (mono_gc_push_all_stacks): New public function; tells the garbage
32164         collector about the stack pointers from all managed threads.
32165
32166 2003-04-03  Martin Baulig  <martin@ximian.com>
32167
32168         * object.h (MonoThread): Added `gpointer stack_ptr'.
32169
32170         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32171
32172 2003-04-03  Martin Baulig  <martin@ximian.com>
32173
32174         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32175
32176 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32177
32178         * reflection.c (typebuilder_setup_fields): Initialize field.first and
32179         field.last.
32180
32181 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
32182
32183         * loader.c (mono_lookup_internal_call): Report the corlib that is
32184         out of sync.
32185
32186 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
32187
32188         * icall.c (ves_icall_type_GetTypeCode): fixed check for
32189         System.DBNull (it's class not valuetype).
32190
32191 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32192
32193         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
32194         if the array method was already assigned a token (fixes bug#40646).
32195
32196 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
32197
32198         * reflection.c (mono_reflection_get_type): Attempt type resolve even
32199         if no assembly is given.
32200
32201 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
32202
32203         * metadata.h: Added the new tables.
32204
32205         * row-indexes.h: Added definitions for new tables.
32206
32207         * metadata.c: Add schemas for new tables, and add support for
32208         computing the sizes of them.
32209
32210         * class.c: Update for handling the new type cases.
32211
32212 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
32213
32214         * metadata.h (MONO_TYPE_IS_VOID): new macro
32215
32216 2003-03-31  Martin Baulig  <martin@ximian.com>
32217
32218         * threads.h (MonoThreadCallbacks): Added `thread_created'.
32219
32220         * threads.c (mono_thread_new_init): Call `thread_created' in the
32221         mono_thread_callbacks.
32222
32223 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
32224
32225         * loader.h: added marshalbyrefobject_class to mono_defaults
32226         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
32227         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
32228           generation of output parameters.
32229           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
32230         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
32231           contextbound and the target object belongs to the context of the caller.
32232         * object.h: added context and unwrapped_server variables in MonoRealProxy.
32233         * object.c: Implemented support for interfaces and abstract classes
32234           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
32235           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
32236
32237 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
32238
32239         * class.h class.c (mono_class_is_subclass_of): New function.
32240         
32241         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
32242         routines for most common case (calls from ArrayList::ToArray).
32243
32244         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
32245         routine so programs which call Environment::Exit() can be profiled.
32246
32247         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
32248         Added MONO_ARCH_SAVE_REGS.
32249
32250         * icall.c (ves_icall_type_is_subtype_of): Use new function.
32251
32252 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
32253
32254         * blob.h: Add a couple of new MonoType types definitions.
32255
32256         * tabledefs.h: Add a couple of new call convs.
32257
32258 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
32259
32260         * reflection.h (MonoReflectionDynamicAssembly): track changes in
32261         the layout of the class.
32262
32263         * reflection.c (alloc_table): double the size on overflow to avoid
32264         unnecessary copying.
32265
32266         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
32267         avoid filling out metadata tables and blobs. Also set mb->ilgen to
32268         null so it can be garbage collected.
32269         
32270 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
32271
32272         * reflection.c (mono_reflection_get_type): Return the resolved type
32273         only if it is in the assembly we searched.
32274
32275         * reflection.c (ensure_runtime_vtable): Initialize method slots.
32276
32277         * class.c (mono_class_setup_vtable): Set the slot of the overriding
32278         method.
32279
32280 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32281
32282         * appdomain.c:
32283         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
32284         the right one is 'file:///blah', but MS allows it.
32285         * assembly.c:
32286         (mono_assembly_open): allow 'file://blah'
32287
32288         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
32289
32290 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
32291
32292         * socket-io.c: fixes bug #40310.
32293
32294 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
32295
32296         * reflection.c (mono_reflection_parse_type): handle deeply nested
32297         types correctly.
32298
32299         * reflection.c (mono_image_create_token): Use unique token values
32300         since they will be put into a hash table.
32301
32302         * class.c (mono_class_setup_vtable): If a method occurs in more than
32303         one place in the vtable, and it gets overriden, then change the
32304         other occurances too.
32305
32306         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
32307         object as return type.
32308
32309 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32310
32311         * icall.c: Deleted "ToString" implementation for double and float
32312         because they are full implemented in managed code.
32313
32314 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32315
32316         * reflection.c, reflection.h: implemented and exported functions
32317         to retrieve info about custom attributes.
32318
32319 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32320
32321         * appdomain.c: moved Uri handling to assembly.c
32322         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32323         work when using a file Uri in *nix and windows.
32324
32325         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32326         GetReferencedAssemblies.
32327
32328 2003-03-18  Dick Porter  <dick@ximian.com>
32329
32330         * icall.c: Rename a couple of internal calls
32331
32332         * threads.c: Set the thread state to Stopped when a thread exits.
32333         Fixes bug 39377.
32334
32335 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
32336
32337         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32338         New icall.
32339
32340         * object.c (mono_class_vtable): fix warning.
32341
32342 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
32343
32344         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32345
32346         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32347         memory.
32348         (method_encode_clauses): Create exception info structures in the right
32349         order.
32350         (mono_reflection_setup_internal_class): Initialize supertypes field.
32351
32352         * class.c object.c: Handle interfaces which implement other interfaces 
32353         correctly.
32354
32355         * class.h class.c: Move the supertypes array initialization code into 
32356         a separate function so it can be used for dynamic types too. Also call
32357         it earlier, in mono_class_init(), since it can be used before the
32358         type is initialized.
32359
32360 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32361
32362         * Makefile.am:
32363         * assembly.c:
32364         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32365
32366         * appdomain.c:
32367         * appdomain.h:
32368         * marshal.c:
32369         * object.c: remove warnings.
32370
32371 2003-03-13  Martin Baulig  <martin@ximian.com>
32372
32373         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32374         (MonoDebugLexicalBlockEntry): New types.
32375
32376         * debug-mono-symfile.c
32377         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32378
32379 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32380
32381         * process.c: ret can be any non-zero value accroding to MS doc.
32382
32383 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32384
32385         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32386         fixing a warning for a miss-used prototype, would have cause
32387         random memory corruption.
32388
32389 2003-03-07  Martin Baulig  <martin@ximian.com>
32390
32391         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32392         getting really annoying ....
32393
32394 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32395
32396         * reflection.c (fixup_method): added support for array methods.
32397
32398 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32399
32400         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32401         (pointed out by Michael Adams).
32402
32403 2003-03-04  Dick Porter  <dick@ximian.com>
32404
32405         * icall.c: Temporarily reverted the Double and Single ToString()
32406         change, because it broke nunit.
32407
32408 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32409
32410         * object.h, threads.h: make include files compatible with C++
32411         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32412
32413 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32414
32415         * icall.c: Erased ToString helper functions for Double and Single.
32416         Now, that implementations ar all in managed code (Double and Single
32417         Formatters).
32418
32419 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32420
32421         * appdomain.c: Added method for initializing the default context of
32422         a domain. Added internal call for getting the default context.
32423         * appdomain.h: Added context variable in MonoDomain struct.
32424         * domain.c: mono_domain_set also sets the default context of the domain
32425         * icall.c: Mapped internal method InternalGetDefaultContext.
32426         * object.c: mono_object_get_virtual_method returns always a remoting
32427         wrapper if the object is a transparent proxy.
32428         mono_runtime_invoke_array: when creating an object by calling the
32429         constructor, if the created object is a proxy, then the constructor should
32430         be called using the a remoting wrapper.
32431
32432 2003-03-03  Dick Porter  <dick@ximian.com>
32433
32434         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32435         variable so it compiles on solaris.  Problem spotted by
32436         Christopher Taylor <ct@cs.clemson.edu>
32437
32438 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32439
32440         * appdomain.c:
32441         (get_info_from_assembly_name): don't leak value.
32442
32443         * icall.c:
32444         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32445         result.
32446
32447 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32448
32449         * assembly.c: export mono_image_load_references ().
32450         * class.c: handle function pointers. mono_class_from_name() now
32451         supports nested type names directly.
32452
32453 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32454
32455         * reflection.h reflection.c: Encode already created dynamic methods 
32456         and fields correctly as a DEF instead of a REF.
32457
32458         * reflection.c: Get rid of the force_ref argument to 
32459         mono_image_typedef_or_ref since it was wrong in the first place.
32460
32461         * string-icalls.c: add error checking to string constructors according
32462         to the MSDN docs.
32463
32464         * reflection.c: Emit types in the order their TypeBuilders were 
32465         created. Previously, a new table index was assigned to each type before
32466         the tables were emitted. This was wrong because the signature blob
32467         might already refer to a type by its original table index.
32468
32469 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32470
32471         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32472         change.
32473         
32474 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32475
32476         * Makefile.am: make assemblies dir have \ instead of / on windows.
32477
32478 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32479
32480         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32481         iterate over the NESTEDCLASS table using a linear search since the
32482         table is not guaranteed to be sorted by the secondary key.
32483
32484         * class.c (mono_class_create_from_typedef): fixed up call to
32485         mono_metadata_nesting_typedef.
32486         
32487 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32488
32489         * marshal.c (mono_string_to_byvalstr): clear the memory as
32490         suggested by Jerome Laban <jlaban@wanadoo.fr>
32491
32492 2003-02-26  Dick Porter  <dick@ximian.com>
32493
32494         * process.c: Cope with padding in .rsrc blocks
32495
32496 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32497
32498         * metadata.h: reverted the filter_len change, it breaks reflection
32499         
32500 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32501
32502         * metadata.h: added a new field to store the filter_len
32503         
32504
32505 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32506
32507         * reflection.c: handle custom attributes for types and members
32508         created with Reflection.Emit (bug#38422).
32509
32510 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32511
32512         * reflection.c: define RTSpecialName automatically for constructors for
32513         compatibility with MS.NET.
32514
32515         * reflection.c (mono_reflection_create_runtime_class): initialize
32516         nested_in field of dynamically created classes.
32517
32518 2003-02-22  Martin Baulig  <martin@ximian.com>
32519
32520         * debug-mono-symfile.h: Incremented version number.
32521
32522 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32523
32524         * object.h icall.c process.c: fix warnings.
32525
32526 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32527
32528         * appdomain.h appdomain.c:
32529         (mono_domain_try_type_resolve): split the 
32530         name_or_tb argument into a name and a tb argument.
32531         (mono_domain_has_type_resolve): new function to check whenever the
32532         application has registered a TypeResolve event handler.
32533         
32534         * icall.c reflection.h reflection.c: move the type resolve logic into
32535         mono_reflection_get_type () so it will be invoked when 
32536         Assembly::GetType () is called.
32537
32538         * reflection.c:
32539         (mono_reflection_get_type): renamed to get_type_internal.
32540         (mono_reflection_get_type): fixed type name generation so it works 
32541         for nested types too.
32542         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32543         costly type name generation if there is no resolve event handler.
32544
32545 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32546
32547         * class.c, image.c: load exported types from file references.
32548
32549 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32550
32551         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32552           used to cache the managed methods used to create proxies and make 
32553           remote invocation of methods.
32554         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32555           to be remotely created.
32556         * object.c: Modified the method mono_class_vtable(). It now initializes 
32557           the remote flag of the vtable. Modified mono_object_new_specific(), 
32558           so now it checks the remote flag.
32559         * icall.c: Added a couple of internal methods, one for enabling instance 
32560           creation interception for a type, and one for creating objects bypassing
32561           the remote check.
32562
32563 2003-02-18  Martin Baulig  <martin@ximian.com>
32564
32565         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32566         New interncall to get a method's metadata token.
32567
32568         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32569         New interncall for the debugger.
32570
32571 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32572
32573         * class.c (mono_class_setup_vtable): allocate supertype array
32574
32575 2003-02-18  Martin Baulig  <martin@ximian.com>
32576
32577         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32578
32579 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32580
32581         * reflection.c:
32582         (assembly_name_to_aname): jump over unknown properties (i've found
32583         something like: 'type, assembly, version=xxx, custom=null, public...',
32584         so now will ignore custom=null and still get the rest of the values).
32585
32586 2003-02-17  Dick Porter  <dick@ximian.com>
32587
32588         * threads.c: Have Thread.Start() wait for a semaphore to signal
32589         that the thread has set up all its local data.  This fixes bug
32590         34323, where Abort() raced the new thread's TLS data.
32591
32592         Also removes the handle_store() call from start_wrapper, because
32593         threads are now always created suspended and there is no longer a
32594         race between the parent and child threads to store the info.
32595
32596 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
32597
32598         * image.c: explain the #- heap issue in a message, hopefully
32599         avoiding FAQs on mono-list.
32600
32601 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32602
32603         * icall.c:
32604         (GetEntryAssembly): if the domain has not invoked
32605         AppDomain.ExecuteAssembly yet, return the assembly of the default
32606         AppDomain.
32607
32608 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
32609
32610         * class.c (mono_ldtoken): make it work in dynamic assemblies.
32611
32612 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
32613
32614         * metadata.c, reflection.c: simple speedup to type hash
32615         and equals code.
32616
32617 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
32618
32619         * image.c, image.h, class.c, assembly.c: move module loading
32620         to MonoImage. When loading metadata, consider alignemnet from
32621         the start of metadata, not from the metadata address in memory.
32622
32623 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
32624
32625         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
32626         AssemblyBuilder objects. Factored out custom attribute creation into
32627         a separate function.
32628         (create_custom_attr): new function to create custom attributes.
32629
32630 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
32631
32632         * Makefile.am: Got tired of typing the full pathname to pedump.
32633         Until there is another option, am installing this.
32634
32635 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
32636
32637         * class.c (class_compute_field_layout): always set field->parent 
32638         (mono_ldtoken): use mono_defaults.fieldhandle_class;
32639
32640 2003-02-11  Dick Porter  <dick@ximian.com>
32641
32642         * threads-types.h:
32643         * monitor.c: Rewrote Monitor, making lock much faster and
32644         Pulse/Wait work as specified.  Also uses much fewer handles, and only
32645         creates them as needed.
32646
32647         * exception.c: Added SynchronizationLockException
32648
32649         * threads.c: Deleted old Monitor implementation.  The new one is
32650         in a new file.
32651
32652 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
32653
32654         * class.c: handled TypedReference type code. Set the correct size for
32655         class data. Setup interface_offsets for interface classes, too.
32656
32657 2003-02-09  Martin Baulig  <martin@ximian.com>
32658
32659         * debug-mono-symfile.h: Reflect latest symbol writer changes.
32660
32661 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
32662
32663         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
32664         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
32665         * object.c: fixed mono_object_get_virtual_method () for interfaces.
32666         * verify.c: check for code that runs after the end of the method.
32667
32668 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32669
32670         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
32671         "System.Math::Round2".
32672         * sysmath.h: Added Floor, Round and Round2 definitions.
32673         * sysmath.c: Modified certain functions that were not 100% compliant
32674         with MS.NET (math precision) and added the implementation of Floor,
32675         Round and Round2.
32676
32677 2003-02-07  Martin Baulig  <martin@ximian.com>
32678
32679         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
32680
32681 2003-02-07  Martin Baulig  <martin@ximian.com>
32682
32683         * debug-mono-symfile.c: Reflected latest symwriter changes.
32684         (mono_debug_create_mono_symbol_file): Removed.
32685         (mono_debug_open_mono_symbol_file): Take an argument which
32686         specifies whether to create a dynamic symbol file.
32687
32688 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
32689
32690         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
32691
32692 2003-02-05  Martin Baulig  <martin@ximian.com>
32693
32694         * reflection.c (mono_image_build_metadata): Make this public,
32695         protect it against being called multiple times, don't create
32696         resources and don't build the compressed metadata here.
32697         (mono_image_create_pefile): Do this here.
32698
32699         * icall.c
32700         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
32701
32702 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32703
32704         * socket-io.c: fixed bug #36322.
32705
32706 2003-02-06  Piers Haken <piersh@friskit.com>
32707
32708         * appdomain.[ch]:
32709         * class.h:
32710         * debug-mono-symfile.c:
32711         * icall.c:
32712         * loader.c:
32713         * mono-config.c:
32714         * monosn.c:
32715         * reflection.c:
32716         * socket-io.c: warning cleanups
32717
32718 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
32719
32720         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
32721         function. works like remoting invoke, but does a check for the Proxy first.
32722
32723 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
32724
32725         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
32726
32727 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
32728
32729         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
32730         array of pointers.
32731         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
32732         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
32733
32734         * object.c (mono_store_remote_field_new): used by the new jit
32735         instead of mono_store_remote_field
32736         (mono_load_remote_field_new): used by the new jit
32737         instead of mono_load_remote_field
32738
32739 2003-02-05  Patrik Torstensson
32740
32741         * appdomain.c: changed unload to take the domain id instead
32742         of domain
32743         
32744         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
32745
32746
32747 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32748
32749         * appdomain.c: don't look for assemblies in ApplicationBase if
32750         PrivateBinPathProbe is set.
32751
32752 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32753
32754         * object.c: make the first argument in main_args contain the absolute
32755         path to the assembly. Fixes bug #37511.
32756
32757 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32758
32759         * icall.c: get correct UTC offset for countries not using daylight
32760         time saving. Fixes bug #30030.
32761
32762 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32763
32764         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
32765         and 1 are the family).
32766
32767 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
32768
32769         * icall.c (ves_icall_InternalExecute): removed wrong assertion
32770
32771         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
32772
32773 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
32774
32775         * reflection.c: added support for SignatureHelper tokens, which is
32776         needed by the Calli opcode.
32777
32778         * reflection.h: track changes to SignatureHelper class.
32779
32780         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
32781
32782 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32783
32784         * appdomain.c: fixed loading assemblies from PrivateBinPath.
32785
32786 2003-02-03  Patrik Torstensson
32787         * appdomain.[c|h], domain.c : 
32788          - Added support for getting a domain via domain id
32789          - Support for setting and getting domain from System.AppDomain 
32790            (used in cross appdomain channel)
32791          - Added support for get/set for a MonoAppContext on a thread 
32792            (Context class in System.Runtime.Remoting.Contexts),
32793          - Removed hack in Get/SetData and ExecuteAssembly.
32794         
32795         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
32796         the managed world to get control when a proxy is created.
32797
32798         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
32799         
32800 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
32801
32802         * icall.c
32803         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32804         Populate the codebase field as well.
32805
32806 2003-02-02  Martin Baulig  <martin@ximian.com>
32807
32808         * debug-mono-symfile.c
32809         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
32810         (mono_debug_symfile_add_method): Allow interncalls.
32811
32812 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32813
32814         * icall.c: throw parse exception if strtod fails or the string is empty.
32815
32816 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
32817
32818         * marshal.c: handle object type separately from defined
32819         class types.
32820
32821 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
32822
32823         * marshal.c: handle NATIVE_LPSTR for strings when it's
32824         explicitly specified.
32825
32826 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
32827
32828         * reflection.c, reflection.h, icall.c: setup the reflection
32829         handle cache for ModuleBuilders and AssemblyBuilders.
32830
32831 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
32832
32833         * reflection.c (reflection_methodbuilder_to_mono_method): set
32834         pinvoke flag
32835
32836 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32837
32838         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
32839
32840 2003-01-29  Dick Porter  <dick@ximian.com>
32841
32842         * threads.c: No need for the fake_thread kludge now that Thread
32843         doesn't run a class constructor
32844         
32845 2003-01-29  Dick Porter  <dick@ximian.com>
32846
32847         * threads.c: Use g_direct_hash instead of the rather bogus
32848         g_int_hash
32849
32850 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
32851
32852         * marshal.c (mono_marshal_get_native_wrapper): add check for null
32853         (fix pinvoke12.exe)
32854         (mono_marshal_get_struct_to_ptr): generate valid IL code
32855         (mono_marshal_get_ptr_to_struct): generate valid IL code
32856         (*): correctly set sig->pinvoke, we need to memdup the signature
32857         to do that
32858
32859 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32860
32861         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
32862         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
32863
32864 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32865
32866         * profiler.c: provide more callers information.
32867
32868 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
32869
32870         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
32871
32872         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
32873
32874         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
32875
32876 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32877
32878         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
32879         exception instead of going into an infinite loop on dates which it 
32880         can't yet handle.
32881
32882         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
32883         out-of-range exception if needed.
32884
32885         * class.c (mono_class_setup_vtable): allow a virtual method to provide
32886         an implementation for an interface method and to override an inherited
32887         method at the same time. 
32888         Imagine a scenario when a virtual method is used to override a
32889         virtual abstract method in a parent class, and this same method 
32890         provides an implementation for an method inherited from an interface. 
32891         In this case, the interface resolution code will set im->slot, which 
32892         means that the virtual method override pass will skip this method 
32893         which means a pointer to the abstract method inherited from the parent
32894         will remain in the vtable of this non-abstract class.
32895
32896         * class.c: (mono_class_setup_vtable): continue search for a real 
32897         method if only an abstract method is found.     
32898
32899 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32900
32901         * reflection.c: add size to encoding for ByValStr and ByValArray
32902         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
32903
32904 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32905
32906         * class.c (mono_class_setup_vtable): pass the override info as an
32907         argument.
32908
32909         * class.c (mono_class_setup_vtable): set the slot of overriding methods
32910         correctly.
32911         
32912         * reflection.c (ensure_runtime_vtable); add support for method 
32913         overrides.
32914         
32915 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32916
32917         * reflection.c (resolution_scope_from_image): Hack to work to work with
32918         dynamic assemblies.
32919
32920         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
32921         added a 'force_ref' argument to force this function to allways return 
32922         a TypeRef. This is needed by mono_image_get_memberref_token ().
32923         
32924 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32925
32926         * reflection.c (mono_image_get_type_info): interfaces really don't have
32927         a parent.
32928
32929         * reflection.c (mono_image_basic_init): fill out missing fields of
32930         image structure.
32931
32932         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
32933         dynamic assemblies. This is required so dynamic assemblies show up in
32934         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
32935         Type::GetType() etc. This is consistent with MS behaviour.
32936
32937         * image.c image.h reflection.c: add newly created classes to the name 
32938         cache so mono_class_get () will find them.      
32939
32940 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32941
32942         First part of changes to get IKVM.NET running under mono.
32943         
32944         * appdomain.h, appdomain.c: added new function 
32945         mono_domain_try_type_resolve() which will emit TypeResolve events. 
32946         This function will call AppDomain::DoTypeResolve to do the actual work.
32947
32948         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
32949         moved existing code dealing with dynamic tokens to a new function 
32950         called mono_reflection_lookup_dynamic_token (). This function will 
32951         raise TypeResolve events when appropriate. Since reflection.c is not 
32952         part of libmetadata, a new hook function called 
32953         mono_lookup_dynamic_token() is added to class.c which will call this.
32954
32955         * assembly.h assembly.c: make the invoke_load_hook function public,
32956         so it can be called for dynamic assemblies.
32957
32958         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
32959
32960         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
32961         type isn't found.
32962
32963         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
32964         MonoGHashTable, since it contains pointers to objects which the GC 
32965         needs to track.
32966
32967         * assembly.c (search_loaded): remove unused variable.
32968         
32969 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
32970
32971         * object.c: fixed issue exposed by gcc-generated IL programs
32972         that use RVA data for pointers.
32973
32974 2003-01-25  Martin Baulig  <martin@ximian.com>
32975
32976         * threads.c (start_wrapper): Moved the initialization of
32977         `start_func' above the mono_new_thread_init() call to which we
32978         pass it as argument.
32979
32980 2003-01-24  Martin Baulig  <martin@ximian.com>
32981
32982         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
32983         the MonoThread pointer.
32984
32985 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
32986
32987         * icall.c: Rename `PowImpl' to Pow.
32988
32989 2003-01-23  Dick Porter  <dick@ximian.com>
32990
32991         * threads.c (start_wrapper): Create a Thread object if needed, so
32992         the Main() thread can do the class initialisation in a subthread
32993         that has been set up to allow managed code execution.
32994
32995         Pass the thread ID instead of the MonoThread pointer to the thread
32996         start and attach callbacks.  This change is required, because the
32997         jit thread start callback must be called _before_ the Thread
32998         object can be created.
32999         
33000         (mono_thread_init): Removed much object creation code that is no
33001         longer needed.  No managed code is called from here now.
33002
33003         * object.c (mono_runtime_exec_managed_code): Create a subthread
33004         for Main, and call back to the runtime to use it.
33005         Set the exit code when Main exits.
33006
33007         * gc.c: Make sure domain finalisation happens in a subthread.
33008         Re-enable threaded GC, fixing bug 31333 (again).
33009
33010         * environment.c: System.Environment internall calls (so far just
33011         ExitCode is here, the others are still in icall.c)
33012
33013         * appdomain.c (mono_runtime_cleanup): All threads running managed
33014         code should have finished before mono_runtime_cleanup() is
33015         reached, so no need to clean up threads.
33016
33017 2003-01-22  Martin Baulig  <martin@ximian.com>
33018
33019         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
33020         `gpointer func' arguments.      
33021         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
33022         but added `MonoThread *thread' argument.
33023         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
33024
33025         * threads.c (mono_new_thread_init): Added `gpointer func' argument
33026         and pass it to the mono_thread_start_cb callback.
33027         (mono_install_thread_callbacks): New public function to install a
33028         set of callbacks which are set by the debugger.
33029         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
33030
33031 2003-01-22  Martin Baulig  <martin@ximian.com>
33032
33033         * Makefile.am: Install debug-mono-symfile.h.
33034
33035 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
33036
33037         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
33038
33039 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
33040
33041         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
33042         * class.c (mono_ptr_class_get): correctly set access levels of pointers
33043         (mono_array_class_get): correctly set access levels of arrays
33044
33045 2003-01-20      Patrik Torstensson
33046         * image.h (MonoAssemblyName): changed major, minor, build, revision
33047         from signed to unsigned.
33048
33049 2003-01-20  sean kasun <skasun@azstarnet.com>
33050
33051         * reflection.c (load_cattr_value): Now this handles
33052         MONO_TYPE_SZARRAY.  Fixes bug #35629
33053
33054 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
33055
33056         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
33057         integer value
33058
33059 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33060
33061         * decimal.c: fixed bug #26056.
33062
33063 2003-01-17  Martin Baulig  <martin@ximian.com>
33064
33065         * gc.c: Raise an ExecutionEngineException instead of using g_error().
33066
33067 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33068
33069         * exception.[ch]:
33070         (mono_get_exception_type_initialization): new function.
33071
33072         * object.c: throw a TypeInitializationException when an exception is
33073         thrown invoking the class constructor.
33074
33075 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33076
33077         * reflection.c: fixed attribute reading.
33078
33079 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33080
33081         * icall.c:
33082         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33083         provided, look for the type in the calling assembly and then in
33084         mscorlib; if the assembly name is provided, only try that one.
33085
33086 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33087
33088         * object.c: register the vtable before there is a chance it's
33089         queried again recursively.
33090
33091 2003-01-13  Duncan Mak  <duncan@ximian.com>
33092
33093         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33094         gc-internal.h. 
33095         
33096 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
33097
33098         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33099
33100 2003-01-11  Martin Baulig  <martin@ximian.com>
33101
33102         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33103         this to 20 for the release.
33104
33105 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
33106
33107         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33108
33109         * loader.c (mono_method_get_marshal_info): bug fix
33110
33111         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33112         structures with explicit layout
33113
33114 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33115
33116         * profiler.c: made the output more readable (and sorted). 
33117         Added caller information for the allocation profiler.
33118
33119 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
33120
33121         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33122
33123 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33124
33125         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33126         to get value types.
33127         
33128 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33129
33130         * object.c, profiler.h, profiler.c, profiler-private.h:
33131         Added object allocation profiler.
33132
33133 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33134
33135         * reflection.h, reflection.c: handle global methods.
33136         Compress blob entries.
33137
33138 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33139
33140         * marshal.c: fix compilation.
33141
33142 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
33143
33144         * loader.c (mono_method_get_marshal_info): impl.
33145
33146         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33147
33148 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33149
33150         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33151         for reference types.
33152
33153 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33154
33155         * loader.c: fixed off by one error in loaded parameter names.
33156
33157 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
33158
33159         * marshal.c (mono_marshal_get_icall_wrapper): like
33160         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33161         instead of a MonoMethod.
33162
33163 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33164
33165         * decimal.c: fixed bug #36537.
33166
33167 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33168
33169         * marshal.c: throw a missing method exception if a
33170         P/Invoke method is not found.
33171
33172 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33173
33174         * icall.c: allow a null this for constructors.
33175
33176 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33177
33178         * icall.c: raise the proper exceptions if the arguments to the
33179         internal Invoke are incorrect.
33180
33181 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
33182
33183         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
33184
33185 2003-01-03  Martin Baulig  <martin@ximian.com>
33186
33187         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33188
33189 2002-12-31  Martin Baulig  <martin@ximian.com>
33190
33191         * debug-mono-symfile.c: Completely rewrote the type section.
33192         Instead of using individual malloc()ed fields, we use one big
33193         continuous memory area and offsets into this area.
33194         See the comments in the source code for details.
33195
33196 2002-12-30  Martin Baulig  <martin@ximian.com>
33197
33198         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
33199
33200 2002-12-30  Martin Baulig  <martin@ximian.com>
33201
33202         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
33203         line number table in this data blob instead of using an external
33204         pointer.
33205
33206 2002-12-28  Martin Baulig  <martin@ximian.com>
33207
33208         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33209
33210 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
33211
33212         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
33213         as a boxed return type.
33214
33215 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
33216
33217         * appdomain.c
33218         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
33219         g_build_filename to properly get separators on the filename created.
33220
33221         * object.h: Small change, introduce MonoMarshalByRefObject to
33222         track the layout of that structure in the C# universe as we make
33223         changes there.
33224
33225 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
33226
33227         * object.c: removed assert to allow static fields on interfaces.
33228         * loader.c: a TypeSpec may be used for any type, not just arrays.
33229
33230 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33231
33232         * class.c, class.h: added mono_class_array_element_size ().
33233         Ignore static methods in interfaces.
33234
33235 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33236
33237         * threads.c: fixed the build under cygwin.
33238
33239 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33240
33241         * reflection.c: handle nullref constants. Allocate keys for
33242         reflection handles with the GC.
33243
33244 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33245
33246         * threads.c, threads.h: added mono_thread_get_abort_signal()
33247         to get a suitable signal for thread abort.
33248
33249 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33250
33251         * metadata.c: fix handling of ExportedType table.
33252
33253 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33254
33255         * icall.c: added WriteWindowsDebugString internal call.
33256
33257 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33258
33259         * reflection.h: added fields to match C# implementation.
33260
33261 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33262
33263         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
33264
33265 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
33266
33267         * gc.h, gc-internal.h: Rename header for GC internal calls to
33268         gc-internal.h from gc.h as to not clash with Boehm GC having its
33269         header installed as <gc.h> in outside include paths.
33270         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
33271         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
33272
33273 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33274
33275         * icall.c: assign minor, build and revision in FillName.
33276
33277 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
33278
33279         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
33280         Added support for running code generated by Reflection.Emit.
33281
33282 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33283
33284         * appdomain.c: check for NULL argument in LoadFrom.
33285
33286 2002-12-10  Dick Porter  <dick@ximian.com>
33287
33288         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
33289
33290 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33291
33292         * appdomain.c: fix buglet when building exe file name.  Handle full
33293         assembly name (needed after latest changes to AssemblyName).
33294         * image.c:
33295         (mono_image_close): free some hashtables.
33296
33297 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
33298
33299         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
33300         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
33301         on some systems (redhat 7.3) 
33302
33303 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
33304
33305         * threads.c: delete the critical section of a sync block,
33306         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
33307
33308 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
33309
33310         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
33311
33312 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33313
33314         * appdomain.[ch]: handle the assembly preload event to try loading the
33315         assemblies using the paths we have in the current domain.
33316
33317         * assembly.[ch]: created an assembly preload hook that is called to try
33318         loading the assembly by other means that the ones provided here.
33319
33320         * domain.c: initialize the domain search path.
33321
33322         From now on, assemblies (TODO: except corlib and System) are loaded
33323         according to these rules when using mono_assembly_load ():
33324
33325                 1. It tries to load the assembly from the ApplicationBase
33326                 of the current domain appending .dll and .exe (TODO: have to
33327                 try loading from name/name.dll and name/name.exe).
33328
33329                 2. It tries the search path specified in PrivateBinPath for the
33330                 current domain (if any).
33331
33332                 3. Previous behavior.
33333
33334 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33335
33336         * icall.c: implemented GetInterfaceMap() related icall.
33337         * domain.c, loader.h: load MethodInfo in mono_defaults.
33338
33339 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33340
33341         * gc.c: disable the finalizer thread for now, untill all the issues
33342         with it are resolved.
33343
33344 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33345
33346         * string-icalls.c: handle embedded nulls in string ctor when the
33347         length is specified.
33348
33349 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33350
33351         * class.c: look for explicit interface implementation in parent
33352         classes, too.
33353
33354 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
33355
33356         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
33357
33358 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33359
33360         * gc.c: protect handles with a critical section.
33361
33362 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33363
33364         * icall.c:
33365         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33366         parameters. If no assembly specified, try getting the type from all
33367         the assemblies in the current domain, else, load the assembly and get
33368         the type from it.
33369
33370 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33371
33372         * marshal.c: applied patch from Aleksey Demakov that fixes
33373         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33374
33375 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33376
33377         * icall.c: fixed get_location.
33378
33379 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33380
33381         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33382         declarations to make it work with older gcc. 
33383
33384         * loader.c (mono_get_method): set signature->pinvoke for native calls
33385
33386 2002-11-20  Dick Porter  <dick@ximian.com>
33387
33388         * threads.c (mono_thread_init): Set the main thread's handle
33389
33390 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33391
33392         * gc.c: allow compilation without GC support. Changed to match the
33393         mono coding style.
33394
33395 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33396
33397         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33398
33399 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33400
33401         * reflection.c: set a public key token on the core assemblies.
33402
33403 2002-11-18  Dick Porter  <dick@ximian.com>
33404
33405         * threads.c: Split out some thread initialisation so that other
33406         files can set the start callback function.
33407
33408         * gc.c: Run finalisers in a separate thread, to avoid stack
33409         overflow.  Fixes bug 31333.
33410
33411         * appdomain.c: Set up GC finalisation thread.
33412
33413         * reflection.c: 
33414         * object.c: 
33415         * domain.c: Use gc.h macros for GC_malloc
33416         
33417 2002-11-15  Dick Porter  <dick@ximian.com>
33418
33419         * threadpool.c: 
33420         * threads.c:
33421         * appdomain.c: Removed mono_runtime_init_with_attach(),
33422         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33423         merging the extra parameter with the existing function.  Removed
33424         unneeded code in mono_thread_attach().
33425
33426 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33427
33428         * image.c (mono_image_loaded_by_guid): a method to get loaded
33429         images by guid. 
33430         (load_metadata_ptrs): we store the guid as string.
33431
33432 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33433
33434         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33435
33436         * metadata.c (mono_guid_to_string): imported method form Zoltan
33437         Varga (slightly modified)
33438
33439         * assembly.c (mono_assembly_open): load precompiled code
33440
33441         * loader.h (MonoMethod): we store the method token for use in the
33442         aot compiler. 
33443
33444 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33445
33446         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33447         the hook function called when an assembly is loaded.
33448         
33449         * domain.c: Modified file.
33450         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33451
33452         Fixes bug #33196.
33453
33454 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33455
33456         * reflection.c: Map PEFileKind to the value expected by the WinNT
33457         image loader. 
33458
33459 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33460
33461         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33462         Read until the buffer is filled completely.
33463
33464 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33465
33466         * icall.c: implemented MonoType.InternalGetEvent ().
33467
33468 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33469
33470         * appdomain.c: implemented InitAppDomainSetup. Delayed
33471         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33472         the entry_assembly.
33473
33474         * assembly.c: base_dir is now an absolute path ending with
33475         G_DIR_SEPARATOR.
33476
33477         * icall.c: modified get_location according to the above changes.
33478
33479         * object.c: init AppDomain.SetupInformation for the default domain after
33480         we have the entry assembly.
33481
33482         * domain.c: when unloading a domain, setup = NULL.
33483
33484 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33485
33486         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33487
33488 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33489
33490         * object.h, object.c: introduced mono_object_get_virtual_method ()
33491         to lookup the method invoked on an object when a callvirt is done on
33492         a method.
33493         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33494
33495 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33496
33497         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33498         current domain when loaded an assembly and failed to load it.
33499
33500         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33501
33502 2002-10-31  Dick Porter  <dick@ximian.com>
33503
33504         * icall.c: 
33505         * file-io.h: 
33506         * file-io.c: Return the error status in a parameter, as the
33507         GetLastError() value has long since been blown away if we try and
33508         look it up in a subsequent internal call invocation.  Delete the
33509         GetLastError() internal call, because it's useless.
33510
33511 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33512
33513         * class.[ch]: added cast_class to fix bug 29517
33514
33515 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33516
33517         * marshal.c: create valid IL code in the filter clause:
33518         the new JIT is less forgiving:-)
33519
33520 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33521
33522         * icall.c: removed get_property internal call.
33523
33524 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33525
33526         * appdomain.h domain.c: Added an ID to appdomains.
33527         
33528         * threads.c threads.h icall.c: Implement icall
33529         Thread:GetDomainID(), and remove unused icall 
33530         CurrentThreadDomain_internal.
33531
33532 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33533
33534         * icall.c: Don't recurse through the base types in GetConstructor.
33535         Fixes bug #32063. 
33536
33537 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33538
33539         * mempool.h, mempool.c: added mono_mempool_empty() and
33540         mono_mempool_stats().
33541
33542 2002-10-23  Dick Porter  <dick@ximian.com>
33543
33544         * file-io.c: 
33545         * file-io.h: 
33546         * icall.c: Added MonoIO.GetFileType internal call
33547
33548 2002-10-17  Dick Porter  <dick@ximian.com>
33549
33550         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33551         delegate semaphore before waiting for all threads to finish,
33552         because new threads can also call async delegates.  Fixes bug
33553         32004.
33554
33555         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33556         of 3 seconds, in case another async job is queued.  (This part is
33557         needed because the bug fix reintroduced the 3s exit lag.)  This
33558         makes the mono_runtime_shutdown flag superfluous.
33559
33560 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33561
33562         * reflection.c: include ehader size in method section headers.
33563         Really check for suplicated modules entries.
33564
33565 2002-10-17  Martin Baulig  <martin@gnome.org>
33566
33567         * debug-mono-symfile.c: Added back support for locals.
33568
33569 2002-10-14  Martin Baulig  <martin@gnome.org>
33570
33571         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33572         MONO_TYPE_VOID.
33573
33574 2002-10-14  Martin Baulig  <martin@gnome.org>
33575
33576         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33577         mono_class_get() instead of looking in the class cache. 
33578
33579 2002-10-13  Martin Baulig  <martin@gnome.org>
33580
33581         * debug-mono-symfile.c: Set version number to 28, include the
33582         signature in method names.
33583
33584 2002-10-13  Martin Baulig  <martin@gnome.org>
33585
33586         * debug-mono-symfile.h: Set version number to 27.
33587
33588 2002-10-11  Martin Baulig  <martin@gnome.org>
33589
33590         * gc.c: Don't register/unregister NULL pointers as disappearing links.
33591
33592 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33593
33594         * metadata.c, metadata.h: added helper function to allocate signatures.
33595
33596 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33597
33598         * icall.c: added internal call to get the location of machine.config.
33599
33600 2002-10-08  Martin Baulig  <martin@gnome.org>
33601
33602         * debug-mono-symfile.c: Ignore classes with a pending init for the
33603         moment.
33604
33605 2002-10-03  Dick Porter  <dick@ximian.com>
33606
33607         * threads.c: Freebsd pthread_t is a pointer
33608
33609 2002-10-03  Dick Porter  <dick@ximian.com>
33610
33611         * socket-io.c: Implemented GetHostName_internal
33612
33613 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33614
33615         * mono-config.c:
33616         (mono_config_parse_file): don't leak the text.
33617
33618 2002-10-02  Martin Baulig  <martin@gnome.org>
33619
33620         * debug-mono-symfile.c: Added support for methods.
33621
33622 2002-10-01  Martin Baulig  <martin@gnome.org>
33623
33624         * debug-mono-symfile.c: Don't emit methods and line numbers for
33625         the dynamic symbol file, just write the type table.  We can easily
33626         have an external helper program which creates a symbol file for an
33627         IL file.        
33628
33629 2002-10-01  Dick Porter  <dick@ximian.com>
33630
33631         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
33632         Only add the handle to the cleanup array when we're about to
33633         launch the thread.  Bug 31425 deadlocked when the test was run on
33634         mono under w32.
33635
33636 2002-10-01  Martin Baulig  <martin@gnome.org>
33637
33638         * debug-mono-symfile.c: Added support for properties.
33639
33640 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33641
33642         * reflection.c: unaligned store fix from Mark Crichton
33643         <crichton@gimp.org>.
33644
33645 2002-09-27  Martin Baulig  <martin@gnome.org>
33646
33647         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
33648         New interncall.
33649
33650 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33651
33652         * assembly.h, assembly.c: use a sane API to hook into the assembly
33653         loading process instead of a useless special-purpouse hack
33654         (ngen needs a hook, too, for example).
33655
33656 2002-09-27  Dick Porter  <dick@ximian.com>
33657
33658         * threads.c (mono_thread_init): Call GetCurrentProcess() so
33659         io-layer can set up some process handle info.  Not needed on w32,
33660         but doesn't hurt either.
33661
33662         * process.c: Pass the program name in the second parameter to
33663         CreateProcess, so the path is searched.  Include the working
33664         directory. Implemented process name, process enumeration, and some
33665         process detail internal calls.
33666         
33667         * icall.c: Added internal calls for process lookup, and some
33668         process details
33669
33670 2002-09-26  Martin Baulig  <martin@gnome.org>
33671
33672         * assembly.c (mono_install_open_assembly_hook): New global
33673         function to install a function to be invoked each time a new
33674         assembly is loaded.
33675         (mono_assembly_open): Run this callback function if set.
33676
33677         * debug-mono-symfile.c: Put back line numbers for the dynamic
33678         symbol file and also record the .il file as source file.  This
33679         allows us to install the temporary symbol file as `file.dbg' just
33680         like a compiler-generated one.
33681
33682 2002-09-26  Nick Zigarovich <nick@chemlab.org>
33683
33684         * Corrected typo in gc.c (BOHEM vs BOEHM).
33685
33686 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33687
33688         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
33689         GetProperties. Also avoid calling g_slist_length in GetProperties and
33690         GetMethods.
33691
33692 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33693
33694         * reflection.c: avoid unaligned stores (bug spotted by
33695         Mark Crichton  <crichton@gimp.org>).
33696
33697 2002-09-25  Martin Baulig  <martin@gnome.org>
33698
33699         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
33700         instead of guint64 for addresses and added prologue/epilogue info.
33701
33702 2002-09-25  Martin Baulig  <martin@gnome.org>
33703
33704         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
33705         store line number info.  For the dynamic symbol file, we only need
33706         to provide the JIT generated dynamic line number info for the dynamic
33707         symbol file.
33708
33709 2002-09-25  Martin Baulig  <martin@gnome.org>
33710
33711         * debug-mono-symfile.h: Incremented version number.
33712
33713 2002-09-24  Martin Baulig  <martin@gnome.org>
33714
33715         * class.c (mono_debugger_class_init_func): New global function
33716         pointer variable.
33717         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
33718         call it.
33719
33720         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
33721         function.  This is called via the mono_debugger_class_init_func
33722         hook to add all types to the dynamic type table.
33723         (ves_icall_MonoDebugger_GetType): New interncall to get a class
33724         from its metadata token.
33725
33726         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
33727         New interncall for the debugger.
33728
33729 2002-09-24  Nick Drochak <ndrochak@gol.com>
33730
33731         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
33732         before using it in case it is null.
33733         
33734 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33735
33736         * metadata.c: allow custom modifiers in local var signatures
33737         (bug spotted by Zoltan Varga).
33738
33739 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33740
33741         * class.c: deal with the <Module> class that may have a NULL vtable.
33742         Eliminate warnings.
33743
33744 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33745
33746         * image.c, image.h: more strong name helpers.
33747         * monosn.c: more work: convert pem keys to cryptoapi format.
33748
33749 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33750
33751         * string-icalls.c: speedup IndexOf.
33752
33753 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33754
33755         * icall.c: updates from Zoltan.2.Varga@nokia.com.
33756
33757 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33758
33759         * icall.c: cleanup: use mono_object_domain ().
33760
33761 2002-09-23  Martin Baulig  <martin@gnome.org>
33762
33763         * debug-mono-symfile.c: Improved type support.
33764
33765 2002-09-22  Martin Baulig  <martin@gnome.org>
33766
33767         * debug-mono-symfile.c: Added support for reference types and strings.
33768
33769 2002-09-22  Martin Baulig  <martin@gnome.org>
33770
33771         * debug-mono-symfile.c: Started to work on the type table.
33772
33773 2002-09-21  Martin Baulig  <martin@gnome.org>
33774
33775         * debug-mono-symfile.c: Largely reworked the symbol table format.
33776         The symbol table is now incrementally updated each time a new
33777         method is added.  We're now also using our own magic and version
33778         so that you don't need to recompile all your classes if the
33779         dynamic table changes.
33780         (mono_debug_update_mono_symbol_file): Removed.
33781         (mono_debug_symfile_add_method): New function to add a method.
33782
33783 2002-09-21  Martin Baulig  <martin@gnome.org>
33784
33785         * icall.c
33786         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
33787         New interncall.
33788
33789         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
33790         New interncall to get a method from its metadata token.
33791
33792 2002-09-21  Martin Baulig  <martin@gnome.org>
33793
33794         * debug-mono-symfile.c: Create type table.
33795
33796 2002-09-20  Martin Baulig  <martin@gnome.org>
33797
33798         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
33799
33800 2002-09-20  Martin Baulig  <martin@gnome.org>
33801
33802         * debug-mono-symfile.c: Provide information about params and locals.
33803
33804 2002-09-20  Martin Baulig  <martin@gnome.org>
33805
33806         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
33807         New interncall.
33808
33809         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
33810         interncall to get a method from its metadata token.
33811
33812 2002-09-20  Martin Baulig  <martin@gnome.org>
33813
33814         * debug-mono-symfile.c: Added a few checks for method->header
33815         being non-NULL.  This should never happen, but for the moment
33816         let's use a g_warning() rather than a g_assert().
33817
33818 2002-09-19  Mark Crichton  <crichton@gimp.org>
33819
33820         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
33821         even if support for it isn't present.  Added an #ifdef to fix this.
33822
33823         * socket-io.c: Added checks back for Solaris support.
33824
33825 2002-09-19  Martin Baulig  <martin@gnome.org>
33826
33827         * debug-mono-symfile.c (read_string, write_string): Reflect latest
33828         changes in the symbol file format.
33829
33830 2002-09-18  Martin Baulig  <martin@gnome.org>
33831
33832         * debug-mono-symfile.c: Set version number to 21.
33833
33834 2002-09-18  Dick Porter  <dick@ximian.com>
33835
33836         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
33837         on netbsd.  Fixes bug 30051.
33838
33839 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33840
33841         * reflection.c:
33842         (set_version_from_string): little fix.
33843
33844 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33845
33846         * monosn.c, Makefile.am: added strong name utility.
33847         * reflection.h, reflection.c: implemented delayed signing,
33848         locale, version and hash id assembly attributes.
33849
33850 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33851
33852         * loader.c, metadata.c: load param attributes in signatures.
33853
33854 2002-09-16  Martin Baulig  <martin@gnome.org>
33855
33856         * debug-mono-symfile.c: Added string table with all method names.
33857
33858 2002-09-14  Martin Baulig  <martin@gnome.org>
33859
33860         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
33861         fast method lookup.
33862
33863 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33864
33865         * reflection.c: record the public key token of referenced assemblies.
33866
33867 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33868
33869         * image.c, image.h: added functions to get the strong name and the
33870         public key of an assembly.
33871         * pedump.c: use them.
33872
33873 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
33874
33875         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
33876
33877 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
33878
33879         * marshal.c (mono_marshal_get_managed_wrapper): Added
33880         MONO_TYPE_BOOLEAN 
33881
33882 2002-09-11  Martin Baulig  <martin@gnome.org>
33883
33884         * gc.c: Call GC_unregister_disappearing_link() on all links when
33885         finalizing them, this is necessary to aviod a crash in boehm's
33886         finalize handler.
33887
33888 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33889
33890         * gc.c: handle GetTarget for finalized objects spotted and fixed by
33891         nick@chemlab.org.
33892
33893 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33894
33895         * icall.c: implemented MonoType::Module.
33896         * reflection.c, reflection.h: mono_module_get_object () from
33897         Tomi Pakarinen <tomi.pakarinen@welho.com>.
33898
33899 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33900
33901         * icall.c: ignore overridden methods in GetMethods ().
33902         Fix for FieldInfo::SetValue().
33903         * object.c: handle float/double in runtime invoke.
33904
33905 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33906
33907         * object.c: allow a constructor to be called again on an object.
33908
33909 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33910
33911         * class.h, class.c: move field layout code to it's own function and
33912         export it. Get an interface id earlier. Move fields in MonoClass
33913         so they are more cache friendly and align the bitfields.
33914         * loader.c: temporary handle get_param_names() for a runtime method.
33915         * reflection.c, reflection.h: more code to handle runtime creation of
33916         types.
33917
33918 2002-09-09  Martin Baulig  <martin@gnome.org>
33919
33920         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
33921         signature with the pinvoke field being set for the actual call.
33922
33923 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33924
33925         * icall.c: removed some unused icalls. Start of map of glib charsets
33926         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
33927
33928 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33929
33930         * debug-helpers.c: break infinite loop (found and fixed by
33931         Holger Arnold <harnold@gmx.de>).
33932
33933 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33934
33935         * icall.c: target may be null in create_delegate.
33936
33937 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33938
33939         * marshal.c: handle a boolean return type.
33940
33941 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33942
33943         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
33944
33945 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33946
33947         * gc.c: fix weakreferences.
33948
33949 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33950
33951         * icall.c: added icall to get default codepage.
33952
33953 2002-09-03  Dick Porter  <dick@ximian.com>
33954
33955         * threads.h: 
33956         * threads.c: Use MonoThread instead of MonoObject where
33957         apropriate.
33958
33959         Store running thread objects in a hash table, so that we have all
33960         the info to hand when waiting for them to finish
33961         (means we don't need OpenThread() any more, so mingw builds should
33962         be fully functional again.)
33963
33964         * verify.c:
33965         * object.h: Added thread ID to MonoThread
33966
33967 2002-09-03  Martin Baulig  <martin@gnome.org>
33968
33969         * icall.c (System.Reflection.Assembly::get_location): New interncall.
33970
33971 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33972
33973         * icall.c: fixed leak in get_temp_path. Thanks lupus.
33974
33975 2002-09-03  Martin Baulig  <martin@gnome.org>
33976
33977         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
33978         argument to store the end address of the disassembled instruction.
33979
33980         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
33981         here from debug-symfile.h.
33982         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
33983         JIT into this struct.
33984         (MonoSymbolFile): Added `char *image_file' field.
33985         (MonoDebugGetMethodFunc): Removed.
33986         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
33987         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
33988         (mono_debug_find_method): New method.
33989
33990         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
33991         create a full symbol file.
33992         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
33993         and static symbol files.
33994         (mono_debug_find_method): The symbol file keeps an internal method hash,
33995         call this to get a MonoDebugMethodInfo from a MonoMethod.
33996
33997         * debug-symfile.[ch]: Removed.
33998
33999 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
34000
34001         * image.c (do_mono_image_open): Remove linker version check.
34002
34003 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
34004
34005         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
34006         wrappers for instance methods.
34007         
34008 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34009
34010         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
34011
34012 2002-08-28  Dick Porter  <dick@ximian.com>
34013
34014         * Makefile.am: Export HOST_CC for w32 builds
34015
34016 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34017
34018         * file-io.c process.c: MonoString are null terminated, no
34019         need for mono_string_to_utf16() anymore.
34020
34021 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34022
34023         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
34024
34025 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
34026
34027         * icall.c, reflection.h: speedup System.MonoType.
34028
34029 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34030
34031         * reflection.c: allow null as the value of a string argument in
34032         custom attributes constructors.
34033
34034 2002-08-27  Martin Baulig  <martin@gnome.org>
34035
34036         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
34037         `trampoline_address' field.
34038
34039 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
34040
34041         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
34042         check (fixes bug #29486) 
34043
34044 2002-08-27  Martin Baulig  <martin@gnome.org>
34045
34046         * debug-mono-symfile.c: Changed the file format in a way that allows us
34047         open it read-only and to use a specially malloced area for all the
34048         dynamic data.  We can now also generate a symbol file on-the-fly if we're
34049         debugging IL code and there is no MCS generated symbol file for it.
34050
34051 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34052
34053         * object.c: added a define for a good string and array
34054         creation speedup (not enabled by default because we need to deal with
34055         the synch stuff).
34056
34057 2002-08-26  Martin Baulig  <martin@gnome.org>
34058
34059         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
34060         function to create a dynamic symbol file.  This is used by the
34061         debugger to create a symbol file for IL code on-the-fly.
34062
34063 2002-08-26  Martin Baulig  <martin@gnome.org>
34064
34065         * loader.c (mono_lookup_pinvoke_call): Include the error message
34066         from g_module_error() in the error message.
34067
34068 2002-08-24  Martin Baulig  <martin@gnome.org>
34069
34070         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
34071         function to update the symbol file.  The symbol file is mmap()ed
34072         writable, but private.  This allows us to install the symbol file
34073         together with the assembly.
34074
34075 2002-08-24  Martin Baulig  <martin@gnome.org>
34076
34077         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
34078         but they can read the new symbol file format which mcs is now creating.
34079
34080         * debug-symfile.c (mono_debug_find_source_location): Moved to
34081         debug-mono-symfile.c; this is now operating on the new symbol file.
34082
34083 2002-08-23  Martin Baulig  <martin@gnome.org>
34084
34085         * debug-helpers.c (mono_method_desc_from_method): New function to get
34086         a MonoMethodDesc from a MonoMethod.
34087
34088 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34089
34090         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34091         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34092
34093 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34094
34095         * string-icalls.[ch]: make helper methods static.
34096
34097 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34098
34099         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34100         types to it and to SetValueInternal.
34101
34102         * object.c: Moved handle_enum label to its proper place. This was the
34103         f... bug! ;-)
34104
34105         This time i compiled mcs and gtk-sharp and they both work.
34106
34107 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34108
34109         * icall.c: reverted partially my previous patch until 
34110         object.c:set_value handles enums correcly.
34111
34112 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34113
34114         * icall.c:
34115         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34116         (ves_icall_System_Environment_get_MachineName): removed warning when
34117         compiling under cygwin.
34118
34119 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34120
34121         * object.c: fixed field_get_value() for reference types.
34122
34123 2002-08-22  Dick Porter  <dick@ximian.com>
34124
34125         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34126         Don't free a buffer while it's still needed.  Patch from Jonathan
34127         Liger <Jonathan.liger@wanadoo.fr>
34128
34129 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
34130
34131         * icall.c (ves_icall_System_Environment_get_Platform): Add new
34132         internal call.
34133
34134 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
34135
34136         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34137         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34138
34139         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34140         we call unmanaged code which throws exceptions.
34141
34142 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34143
34144         * appdomain.h: added per-domain entry_assembly.
34145         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34146         arguments.
34147         * icall.c: Assembly::GetEntryAssembly icall.
34148         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34149         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34150
34151 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34152
34153         * appdomain.h, gc.c: added mono_domain_finalize ().
34154
34155 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34156
34157         * object.c:
34158         (mono_print_unhandled_exception): changed g_warning by g_printerr
34159         because g_log has a 1024 characters limit (yeah, i got a big stack
34160         trace). Don't print exception name, that should be in ToString 
34161         returned string.
34162
34163 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34164
34165         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34166         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34167
34168 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34169
34170         * object.c:
34171         (mono_print_unhandled_exception): after previous commit, i realized
34172         that MS calls ToString on the exception. I changed this function to
34173         do that. This way we get stack_trace for free.
34174
34175 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34176
34177         * object.c:
34178         (mono_print_unhandled_exception): invoke Message property instead of
34179         getting 'message' field from Exception. Don't allocate memory for
34180         'trace' and 'message' if not needed.
34181
34182 2002-08-18  Dick Porter  <dick@ximian.com>
34183
34184         * unicode.c: Fix asserts to match Encoder.cs checks
34185
34186 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34187
34188         * marshal.c: fix unaligned store issue and a few wrong
34189         opcode argument types.
34190
34191 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34192
34193         * icall.c: added GetUninitializedObjectInternal internal call.
34194
34195 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
34196
34197         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
34198         to the right domain.
34199
34200 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
34201
34202         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
34203
34204         * class.c (class_compute_field_layout): set blittable to false for Strings
34205
34206         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
34207
34208 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34209
34210         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
34211         first chunk of code to create types at runtime. Code to
34212         handle ReflectedType/DeclaringType. Make reflection handles
34213         domain specific.
34214
34215 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34216
34217         * class.c: set correct name in arrays.
34218
34219 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
34220
34221         * appdomain.c (mono_domain_transfer_object): make it work with
34222         valuetypes. bug fixes.
34223
34224 2002-08-12  Dick Porter  <dick@ximian.com>
34225
34226         * object.h: Rename some parameters to avoid c++ keywords (Patch
34227         from Joseph Wenninger <kde@jowenn.at>)
34228
34229 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
34230
34231         * icall.c: added icall to implement Assembly.GetFile*.
34232
34233 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34234
34235         * reflection.h, reflection.c: code to embed managed resources.
34236
34237 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34238
34239         * class.c: move all the type size stuff into
34240         class_compute_field_layout().
34241
34242 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34243
34244         * class.c: ensure enums have always the correct instance size.
34245         * unicode.c: remove wrong assert.
34246
34247 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34248
34249         * assembly.c: fix mem corruption issue.
34250         * image.h, image.c: added mono_image_get_resource () to access
34251         managed resources.
34252         * icall.c: implemented Assembly.EntryPoint property and some
34253         Managed Resources related internalcalls.
34254
34255
34256 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34257
34258         * image.c, image.h: impemented mono_image_get_entry_point ().
34259         * appdomain.c: use mono_image_get_entry_point.
34260
34261 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34262
34263         * reflection.c: support the object type argument when loading
34264         custom attributes.
34265
34266 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
34267
34268         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
34269         String as return type.
34270
34271 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
34272
34273         * reflection.c: fix encoding of named args for custom attrs to match
34274         the ms implementation. Read them back when instantiating custom
34275         attributes.
34276
34277 2002-08-02  Radek Doulik  <rodo@ximian.com>
34278
34279         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
34280         by Dietmar as quick fix
34281         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
34282         16 as stack size, used on more places as quick fix before Dietmar
34283         will fix it properly
34284
34285 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34286
34287         * object.h, object.c: added accessors for fields and properties.
34288
34289 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34290
34291         * class.c, class.h: made mono_class_get_field_from_name ()
34292         loop on parent types.
34293         Added mono_class_get_property_from_name ().
34294
34295 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34296
34297         * class.c, class.h: move the code to setup the type vtable in its own
34298         function so that it can be reused also for types created at runtime.
34299         Eliminate the "class" identifier from the header file.
34300         * reflection.c: setup the vtable for enums so that we can create
34301         objects for use in SetConstant ().
34302
34303 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
34304
34305         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
34306         instead of the delegate itself as this pointer (bug #28383)
34307
34308 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
34309
34310         * marshal.c (mono_marshal_get_managed_wrapper): added return type
34311         conversions.
34312
34313 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34314
34315         * loader.c: don't set the pinvoke bit on icalls.
34316
34317 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
34318
34319         * debug-helpers.c (mono_method_full_name): only print a number to
34320         indicate wrapper type (so that the output is more readable in traces).
34321
34322 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
34323
34324         * class.c (mono_class_init): include method override patch from Paolo
34325
34326 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34327
34328         * icall.c: fixed GetTypeCode().
34329
34330 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
34331
34332         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34333         use real delegate invoke function to make it work with multicast
34334         delegates (fix bug# 28291).
34335
34336 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34337
34338         * object.c: load constant strings.
34339
34340 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34341
34342         * reflection.c: no magic numbers.
34343         * tabledefs.h: security action enum.
34344
34345 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34346
34347         * assembly.c: fix possible memory corruption.
34348
34349 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34350
34351         * reflection.h, reflection.c: added support for linking resources.
34352         * verify.c: check we have an updated corlib.
34353
34354 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
34355
34356         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34357         string arrays.
34358         (mono_marshal_string_array): null terminate unmanaged string arrays.
34359         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34360
34361 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34362
34363         * icall.c: Type.GetType () can now return also types from the
34364         calling assembly.
34365
34366 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34367
34368         * loader.h, loader.c: stack walking support.
34369         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34370         GetCallingAssembly.
34371
34372 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34373
34374         * marshal.c: added optimisations for blittable types 
34375
34376         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34377         (mono_class_setup_mono_type): set blittable attribute for single
34378         and double.
34379
34380         * marshal.c (mono_string_utf8_to_builder): impl.
34381         (mono_string_builder_to_utf8): impl.
34382         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34383
34384 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34385
34386         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34387         (mono_marshal_get_managed_wrapper): impl. byref types
34388
34389 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34390
34391         * icall.c:
34392         (search_method): don't display debug message. 
34393
34394 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34395
34396         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34397
34398 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34399
34400         * appdomain.c: set the missing filename when throwing exception.
34401
34402 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34403
34404         * metadata.c (mono_type_size): code cleanup
34405         (mono_type_stack_size): removed some test code
34406
34407 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34408
34409         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34410         mono_get_exception_file_not_found now.
34411
34412         * exception.c (mono_exception_from_name_two_strings): New version
34413         that will call a constructor with two string arguments. 
34414         (mono_get_exception_file_not_found): New helper routine, used to
34415         report file-not-found errors.
34416
34417 2002-07-20  Dick Porter  <dick@ximian.com>
34418
34419         * process.h:
34420         * process.c: Pass file handles to CreateProcess
34421         
34422         * icall.c:
34423         * file-io.h:
34424         * file-io.c: Implemented CreatePipe
34425
34426 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34427
34428         * metadata.c (mono_get_param_info): set alignment for value types
34429
34430 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34431
34432         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34433         Constify mono_domain_assembly_open().
34434         * loader.c: handle null namespace in icalls.
34435
34436 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34437
34438         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34439         (emit_str_to_ptr_conv): marshal object as structs
34440
34441         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34442
34443         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34444
34445 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34446
34447         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34448         (mono_marshal_get_native_wrapper): we an now return value types
34449
34450 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34451
34452         * verify.c: more checks implemented.
34453
34454 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34455
34456         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34457         (fix bug #27695)
34458         (mono_marshal_get_native_wrapper): allow byref arguments
34459         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34460         impl. PtrToStringXXX methods
34461         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34462         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34463         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34464         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34465         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34466
34467 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34468
34469         * reflection.c: fix buglet in parsing an assembly name.
34470
34471 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34472
34473         * marshal.c (emit_ptr_to_str_conv): first impl.
34474
34475 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34476
34477         * object.c, class.h: cache the vtable in the class as suggested by
34478         vargaz@freemail.hu (Zoltan Varga).
34479
34480 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34481
34482         * class.h, loader.c: added mono_field_from_token().
34483         * verify.c: first cut of type checking code.
34484
34485 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34486
34487         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34488
34489 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34490
34491         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34492         (fix bug #27782)
34493         (mono_marshal_get_remoting_invoke): impl.
34494         (mono_delegate_begin_invoke): impl.
34495         (mono_mb_emit_save_args): impl.
34496         (mono_delegate_end_invoke): impl.
34497         (mono_marshal_get_delegate_begin_invoke):
34498         (mono_marshal_get_delegate_end_invoke):
34499         (mono_marshal_get_delegate_invoke): generate a special name for
34500         those methods (including the signature) and associate them whith
34501         the delegate class. 
34502
34503 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34504
34505         * reflection.[ch]: 
34506         (mono_reflection_type_from_name): now it has a MonoImage parameter
34507         which is used as the default image to search the type in. If the image
34508         is NULL or getting the type from it fails, it defaults to corlib.
34509
34510         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34511         new parameter.
34512
34513 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34514
34515         * reflection.c: update the parameter table index.
34516
34517 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34518
34519         * domain.c: don't include the mark byte in the string hash.
34520
34521 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34522
34523         * icall.cs: icall for Type.GetTypeCode ().
34524         * verify: a couple of fixes and disabled local initialization checks.
34525
34526 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34527
34528         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34529
34530         * debug-helpers.c (mono_method_full_name): print the type of the
34531         runtime wrapper
34532
34533         * metadata.c (mono_signature_hash): a hash function for signatures
34534         (mono_signature_hash): better hash algorithm
34535
34536         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34537
34538         * debug-helpers.c (mono_method_full_name): this can now generate
34539         method names with signatures
34540
34541         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34542         method dont have this pointers.
34543
34544 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34545
34546         * reflection.c: fixup typebuilder tokens.
34547         * image.c: fix buglet.
34548         * marshal.h: remove whitespace.
34549         * metadata.h, metadata.c: reinstate code that was removed.
34550         * verify.c: handle catch directives and fix another couple of bugs.
34551
34552 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34553
34554         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34555         (mono_marshal_get_native_wrapper): make it comp. with the old code
34556         (mono_marshal_get_native_wrapper): support boolean
34557         (mono_marshal_get_managed_wrapper): support more types
34558
34559 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34560
34561         * class.c (class_compute_field_layout): compute class->blittable attribute.
34562
34563 2002-07-09  Dick Porter  <dick@ximian.com>
34564
34565         * threads.c: Make the thread cleaning up cope with threads that
34566         call ExitThread()
34567
34568 2002-07-08  Radek Doulik  <rodo@ximian.com>
34569
34570         * reflection.c (method_encode_code): use non-translated values to
34571         compute finally_start, this fixes exception handling on ppc, yay!
34572
34573         * decimal.h (struct signscale): fix endianess
34574
34575 2002-07-07  Radek Doulik  <rodo@ximian.com>
34576
34577         * reflection.c: swap box_val and not val
34578
34579 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34580
34581         * reflection.c, reflection.h: handle full assembly info in type name.
34582         Handle Type arguments when loading custom attributes.
34583         * icall.c: updated to use new mono_reflection_type_from_name () method.
34584
34585 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34586
34587         * loader.c:
34588         (method_from_memberref): also print assembly name when method not found.
34589
34590 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34591
34592         * icall.c:
34593         (ves_icall_TypeGetProperties): fixed bug #27473. 
34594
34595 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34596
34597         * reflection.c: display image name and token when cannot find the
34598         .ctor for an attribute.
34599
34600 2002-07-05  Martin Baulig  <martin@gnome.org>
34601
34602         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34603
34604 2002-07-04  Dick Porter  <dick@ximian.com>
34605
34606         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
34607         compile on mingw.  This will cause mingw builds to not wait for
34608         subthreads to terminate after the main thread does.  I've lodged a
34609         bug with the mingw developers for them to wrap OpenThread().
34610
34611 2002-07-03  Dick Porter  <dick@ximian.com>
34612
34613         * threads.c: Store thread IDs instead of handles, because
34614         GetCurrentThread() returns a pseudohandle and therefore stores
34615         useless values.  mono_thread_cleanup() continues checking the
34616         array of threads until it is empty, to cope with subthreads
34617         spawning new threads after the main thread has finished.
34618
34619         * profiler.h:
34620         * profiler.c:
34621         * profiler-private.h: Pass the thread ID to thread profiler
34622         functions, instead of a handle
34623
34624 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34625
34626         * verify.c: fixes to make it more usable.
34627         * pedump.c: added --verify code to verify IL code in an assembly.
34628
34629 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34630
34631         * reflection.c: turn errors into warnings to allow compiling corlib.
34632
34633 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34634
34635         * reflection.c: add special cases to compile corlib.
34636
34637 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34638
34639         * reflection.c: handle properties with only a set method.
34640
34641 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34642
34643         * opcodes.h: add enum with opcodes in opval order.
34644
34645 2002-07-01  Dick Porter  <dick@ximian.com>
34646         
34647         * object.h:
34648         * object.c (mono_runtime_run_main): Removed unneeded argument
34649
34650 2002-06-28  Martin Baulig  <martin@gnome.org>
34651
34652         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34653
34654 2002-06-27  Dick Porter  <dick@ximian.com>
34655
34656         * threads.c: Store the handle in both the parent thread and in the
34657         subthread, to minimise the time between starting a new thread and
34658         storing its ID.
34659
34660 2002-06-26  Dick Porter  <dick@ximian.com>
34661
34662         * appdomain.c (mono_runtime_cleanup): Close the socket library
34663         after all the threads have finished, not before
34664
34665 2002-06-26  Martin Baulig  <martin@gnome.org>
34666
34667         * debug-symfile.c (mono_debug_find_source_location): Added
34668         `guint32 *line_number' argument.  If it's not NULL, store the line number
34669         there and return the file name without the line number.
34670
34671 2002-06-25  Dick Porter  <dick@ximian.com>
34672
34673         * icall.c:
34674         * process.h:
34675         * process.c: Process forking and other support functions
34676
34677 2002-06-25  Dick Porter  <dick@ximian.com>
34678
34679         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
34680         things dont happen when the image is closed.
34681         (mono_image_lookup_resource): Walk the resource section looking
34682         for a particular entry
34683
34684         * cil-coff.h: PE resource section decoding
34685
34686 2002-06-25  Dick Porter  <dick@ximian.com>
34687         
34688         * assembly.h:
34689         * assembly.c: 
34690         (mono_assembly_foreach): Accessor functions to walk the list of
34691         loaded assemblies
34692         (mono_assembly_set_main):
34693         (mono_assembly_get_main): Process methods need to know which
34694         assembly is the "main" one
34695
34696         * object.c (mono_runtime_run_main): Record the main assembly
34697
34698         * debug-helpers.c: Fix typo
34699
34700 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
34701
34702         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
34703         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
34704
34705 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34706
34707         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
34708
34709 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
34710
34711         * image.c (do_mono_image_open): Initialize reference count,
34712         otherwise we leak the MonoImage.
34713
34714 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34715
34716         * reflection.c: small tweak to handle self-hosting.
34717
34718 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34719
34720         * reflection.c: fix type name parse code.
34721
34722 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34723
34724         * reflection.c: break out of the loop.
34725         * image.c: special case corlib.
34726
34727 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34728
34729         * reflection.c: add all the custom attrs at the end to ensure the
34730         ctors have been properly initialized when the attributes are defined
34731         in the current assembly.
34732
34733 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34734
34735         * reflection.c: handle correctly multiple-nested types.
34736
34737 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34738
34739         * row-indexes.h: fix typos.
34740         * reflection.c: adjust for typos and fix method_def_or_ref
34741         encoding in MethodImpl table.
34742
34743 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34744
34745         * reflection.c: fix entry point patching (thanks Serge!).
34746
34747 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
34748
34749         * verify.c: add check for System.Exception
34750
34751 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34752
34753         * image.c, class.c: minifix for code just c&p'ed.
34754         * reflection.c: warning fix.
34755         * object.h, loader.h, domain.c: load also StringBuilder.
34756
34757 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34758
34759         * marshal.h, marshal.c: some support code to handle complex marshaling.
34760
34761 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34762
34763         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
34764         Better signatures with vtable error dump.
34765
34766 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
34767
34768         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
34769
34770 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
34771
34772         * icall.c (ves_icall_Type_GetField): impl.
34773
34774 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34775
34776         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
34777         to retrieve a marshal description blob for a field or param.
34778
34779 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34780
34781         * reflection.h, reflection.c: change order of nested type emission
34782         to avoid table corruption. The NestedTypes table is sorted.
34783         * icall.c: change order of GetConstructor results to workaround mcs bug.
34784
34785 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34786
34787         * reflection.h, reflection.c: handle field and param marshal
34788         information.
34789
34790 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34791
34792         * icall.c, marshal.c marshal.h: more Marshal class implementation.
34793
34794 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34795
34796         * reflection.c: fix call convention.
34797
34798 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34799
34800         * reflection.h, reflection.c: mono_image_get_memberref_token()
34801         takes a type instead of a class, now. Added
34802         mono_image_get_array_token() to create tokens for the special
34803         multi-dim array methods.
34804
34805 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34806
34807         * assembly.c: handle modules (no assembly table). Split
34808         loading references in its own function.
34809         * class.c: handle moduleref resolution scope.
34810         * image.c, image.h: cache module name in image.
34811
34812 2002-06-07  Martin Baulig  <martin@gnome.org>
34813
34814         * reflection.c (mono_image_get_type_info): Only add a class layout entry
34815         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
34816
34817 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34818
34819         * icall.c: more signature fixes that used uint instead of int.
34820
34821 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34822
34823         * reflection.c: fixed signature of field refs.
34824
34825 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34826
34827         * class.c, reflection.c: handle typerefs of nested types
34828         (both on read and when writing files).
34829
34830 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34831
34832         * icall.c: fix method signatures that tried to workaround the previous
34833         typo, d'oh!
34834
34835 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34836
34837         * debug-helpers.c: fix typo.
34838
34839 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34840
34841         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
34842         rewrote the PE/COFF writing code (our programs are understood by the
34843         ms runtime, now).
34844
34845 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34846
34847         * gc.c, gc.h, icall.c: weakreference support.
34848
34849 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34850
34851         * Makefile.am, mono-config.c: use $(sysconfdir).
34852
34853 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34854
34855         * icall.c: changed default precision of Double.ToString() to 15.
34856         Fixed memory leak. Unified with Single.ToString.
34857
34858 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34859
34860         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
34861
34862 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34863
34864         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
34865         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
34866         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
34867         and myself.
34868
34869 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34870
34871         * debug-symfile.c, sysmath.c: yet more compilation fixes.
34872
34873 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34874
34875         * reflection.c, socket-io.c: more compilation fixes.
34876
34877 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34878
34879         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
34880         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
34881         unicode.c: warning and compiler compatibility fixes.
34882
34883 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34884
34885         * class.h, metadata.c: fixed warnings/compilation errors.
34886
34887 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34888
34889         * Makefile.am, mono-config.c, mono-config.h: configuration file
34890         support routines.
34891         * loader.c, loader.h: make Dll mapping configurable at runtime in the
34892         config file. Export methods to insert and lookup mappings.
34893
34894 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34895
34896         * reflection.c: handle types and boxed objects in custom attr
34897         constructors.
34898
34899 2002-05-30  Martin Baulig  <martin@gnome.org>
34900
34901         * debug-symfile.c
34902         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
34903
34904 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
34905
34906         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
34907         to lookup the implmap row for a P/Invoke method.
34908         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
34909         P/Invoke method from the runtime on an as needed basis.
34910
34911 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
34912
34913         * metadata.c (mono_metadata_parse_signature): impl.
34914
34915 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34916
34917         * class.c: handle .pack directive.
34918
34919 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34920
34921         * object.c: initialize static fields with RVA data.
34922
34923 2002-05-25  Martin Baulig  <martin@gnome.org>
34924
34925         * debug-symfile.c
34926         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
34927
34928 2002-05-24  Martin Baulig  <martin@gnome.org>
34929
34930         * debug-symfile.c
34931         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
34932         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
34933         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
34934
34935 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34936
34937         * object.c: special case string ctros in invoke.
34938         * gc.c: silly whitespace changes.
34939
34940 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
34941
34942         * threadpool.[ch]: impl. a threadpool that can
34943         be used by mint and mono.
34944
34945 2002-05-22  Martin Baulig  <martin@gnome.org>
34946
34947         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
34948         The first argument is now a `MonoReflectionModuleBuilder *', the return
34949         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
34950         `methods' field to get the method builder.  The `token' argument is the
34951         unfixed token.
34952
34953         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
34954         invalid characters instead of g_assert_not_reached()ing.  This seems
34955         to be the behaviour of mscorlib.
34956
34957 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
34958
34959         * object.c (mono_runtime_invoke_array): applied patch from Rachel
34960         Hestilow to fix bug #25104
34961
34962 2002-05-21  Martin Baulig  <martin@gnome.org>
34963
34964         * debug-symfile.c (mono_debug_find_source_location): New function.
34965         Looks up an IL offset in the line number table and returns the source
34966         location as a string.
34967
34968 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34969
34970         * icall.c:
34971         (mono_double_ToStringImpl): changed %f by %g until we have something
34972         better.
34973
34974 2002-05-21  Nick Drochak  <ndrochak@gol.com>
34975
34976         * icall.c : Use different name for Math.Pow's icall.  Needed to check
34977         parameters first in C#.
34978
34979 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34980
34981         * icall.c, reflection.h: added icall to get info about an event.
34982
34983 2002-05-20  Radek Doulik  <rodo@ximian.com>
34984
34985         * object.c (mono_value_box): don't use memcpy for boxing on BIG
34986         endian
34987         (mono_value_box): don't use memcpy for small sizes on
34988         architectures with unaligned access
34989
34990 2002-05-20  Martin Baulig  <martin@gnome.org>
34991
34992         * reflection.c (mono_reflection_setup_internal_class): Don't crash
34993         if `tb->parent == NULL'.
34994         (mono_reflection_create_internal_class): New function.  This is
34995         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
34996         for enum types.
34997
34998         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
34999         New interncall.
35000
35001 2002-05-19  Martin Baulig  <martin@gnome.org>
35002
35003         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
35004         argument to get the length, don't default to the array length.
35005
35006 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
35007
35008         * assembly.c (mono_assembly_setrootdir): New function used to
35009         override the MONO_ASSEMBLIES directory.
35010
35011 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35012
35013         * icall.c: ValueType_GetHashCode() initialize local var.
35014
35015 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35016
35017         * reflection.c: sort custom attributes table.
35018
35019 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35020
35021         * reflection.c: support named args in custom attributes (write support).
35022
35023 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35024
35025         * reflection.c: fix finally position calculation.
35026
35027 2002-05-15  Radek Doulik  <rodo@ximian.com>
35028
35029         * reflection.c: fixed endianess at many places
35030
35031         * icall.c (ves_icall_InitializeArray): comment out debug msg
35032
35033 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
35034
35035         * object.c (mono_unhandled_exception): new function to handle
35036         unhandled exceptions.
35037         (mono_unhandled_exception): call the UnhandledException event.
35038         (mono_runtime_delegate_invoke): impl.
35039
35040 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
35041
35042         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
35043         returns the RVA, not the direct pointer to the data. Handle the case
35044         when the class size is fixed.
35045
35046 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35047
35048         * reflection.c: fix some endianess issues.
35049
35050 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
35051
35052         * object.c (mono_runtime_invoke): is now able to catch exceptions.
35053
35054         * threads.c (mono_thread_init): added a callback which is invoked
35055         at thread start.
35056
35057 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35058         
35059         * icall.c: make GetHashCode return non-negative values.
35060
35061 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35062
35063         * object.c, icall.c, gc.c: revert to address-based hashcode.
35064
35065 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
35066
35067         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
35068
35069 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35070
35071         * icall.c, class.c: special case <Module>.
35072
35073 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
35074
35075         * icall.c: fix bug in GetNow().
35076
35077 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
35078
35079         * object.c (mono_runtime_class_init): make sure that we call all
35080         static class constructors.
35081
35082 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35083
35084         * reflection.c: sort methodsemantics table.
35085
35086 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35087
35088         * reflection.h, reflection.c: honour init locals setting.
35089
35090 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35091
35092         * icall.c: copied Double ToStringImpl for Single ToStringImpl
35093
35094 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35095
35096         * reflection.c: support ContructorBuilders in attribute blob creation.
35097
35098 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35099
35100         * reflection.c: some changes to build a binary that can be run
35101         directly in windows.
35102
35103 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35104
35105         * loader.c: print a big message when an icall can't be found.
35106
35107 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35108
35109         * string-icalls.c: fix bug 24248.
35110
35111 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35112
35113         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35114         icall.c, reflection.h: separate assembly loading by pathname and by
35115         assembly name. Use the MONO_PATH env var to search for assemblies.
35116
35117 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35118
35119         * assembly.c, image.h: add some support for assemblies
35120         with multiple modules.
35121         * class.c, class.h: export mono_class_from_typeref().
35122         * loader.c: remove duplicated code and use mono_class_from_typeref(),
35123         instead.
35124
35125 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35126
35127         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35128         documentation says (the ECMA one is correct).
35129
35130 2002-05-02  Dick Porter  <dick@ximian.com>
35131
35132         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35133         Don't name the synchronisation mutex.
35134
35135 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
35136
35137         * rand.c
35138         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35139         Make the prototypes match.
35140         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35141         Same.
35142
35143         * icall.c
35144         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35145         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35146         all systems have tm.tm_zone, so use strftime() with %Z to print
35147         the timezone abreviation into a temp string.
35148
35149         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35150         rather than mono_array_addr() on a MonoString on Big Endian
35151         machines.
35152
35153 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
35154
35155         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35156         fix bug 24041
35157
35158 2002-04-30  Dick Porter  <dick@ximian.com>
35159
35160         * socket-io.c: Cope with SOCKET being an integer rather than a
35161         pointer now.
35162
35163         * threads.c: Added Thread_free_internal, to deal with thread
35164         handle cleanup.  Moved calls to handle_store() and handle_remove()
35165         to start_wrapper(), so each can only be called once.  Allocate
35166         synchronisation blocks with GC_malloc(), and use GC finalisation
35167         to close the handles.
35168
35169         * icall.c: added System.Threading.Thread::Thread_free_internal
35170
35171 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35172
35173         * icall.c: support Environment.Exit, CommandLineArgs().
35174
35175 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35176
35177         * object.c, object.h: added mono_runtime_run_main () and
35178         mono_runtime_get_main_args () for use in System.Environment.
35179
35180 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35181
35182         * gc.c: fix thinko, enable actual finalization since the jit is now
35183         fixed.
35184
35185 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35186
35187         * gc.c, object.c: take into account that an object may be offset wrt the address
35188         returned by GC_malloc().
35189
35190 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
35191
35192         * image.c: handle files without entries in the assembly table (modules).
35193
35194 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
35195
35196         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
35197         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
35198         allowed to be null when it's System.Object class setup.
35199
35200 2002-04-27  Martin Baulig  <martin@gnome.org>
35201
35202         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
35203         if `tb->parent == NULL' rather than crashing.
35204
35205 2002-04-28  Nick Drochak  <ndrochak@gol.com>
35206
35207         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
35208         calling acos() where asin() should have been called.
35209
35210 2002-04-26  Martin Baulig  <martin@gnome.org>
35211
35212         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
35213         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
35214         there's a subdirectory called `System', but we don't want to read that
35215         subdirectory as an assembly.
35216
35217 2002-04-25  Martin Baulig  <martin@gnome.org>
35218
35219         * debug-symfile.c: Reflect latest MonoString changes.
35220
35221 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35222
35223         * rand.c, rand.h: instance method icalls need to have an explicit
35224         this pointer as first argument in the C implementation.
35225
35226 2002-04-25  Nick Drochak <ndrochak@gol.com>
35227
35228         * icall.c: Fix typo in map for GetNonZeroBytes
35229
35230 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35231
35232         * string-icalls.c : String does now passes unit tests without any 
35233         errors, the following changes has been made:
35234         
35235         Implemented replace methods.
35236         Renaming of methods to (try) follow the standard.
35237         Fixed compare ordinal
35238         Made all memory allocated directly to function instead of via icall function.
35239         Small performance fix in is_in_array function
35240                         
35241  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
35242
35243         c (mono_string_Internal_ctor_charp_int_int):
35244         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
35245         sindex < 0, throw ArgumentOutOfRangeException instead of
35246         ArgumentNullException.
35247
35248         Added new check for length == 0, however
35249         I need to make it return String.Empty from the C code.
35250         
35251         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
35252         that calculate the length for us here.
35253         
35254         (mono_string_Internal_ctor_sbytep_int_int): Replaced
35255         mono_string_new_utf16 with mono_string_new, since value is utf8.
35256
35257 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35258
35259         * object.c: register the object for finalization if needed.
35260         Allocate one more char in the string for the terminating 0 char.
35261
35262 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35263
35264         * class.c, class.h, image.c: check if a type implemenst a destructor.
35265         Use the proper key for array class lookups.
35266         * icall.c: register the icalls in the System.GC class.
35267         * gc.c, gc.h: GC-related functions and icalls.
35268
35269 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35270
35271         * icall.c:
35272         * socket-io.c:
35273         * unicode.c: free some strings gotten from mono_string_to_utf8 and
35274         changed a couple of free () by g_free ().
35275
35276         * decimal.c: one-liner in the comments for decimal2string ().
35277
35278 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35279
35280         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
35281
35282 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35283
35284         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
35285         * object.c (mono_runtime_invoke_array) : handle null in params
35286
35287 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35288
35289         * string-icalls.c: fixed bug in split (one off bug)
35290
35291 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35292
35293         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
35294         * icalls.c: added String::Equals as internal method
35295
35296 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35297
35298         * threads.c: fixed bug in the double interlocked functions
35299
35300 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
35301
35302         * threads.c: implemented all of the new interlocked icalls.
35303         * string-icalls.c: fix a bug in insert.
35304         * icalls.c: added the icalls for interlocked, removed old string functions.
35305         
35306 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35307
35308         * loader.c: fix off-by-one error when reading argument names.
35309
35310 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35311
35312         * profiler.c: win32 counter implementation (untested).
35313         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
35314         (the latter needs testing and more complete impl. from win32 folks).
35315
35316 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
35317
35318         * object.c: mono_array_new_full workaround mono_array_class_get
35319         problem.
35320
35321 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35322
35323         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35324         * object.h (mono_string_chars): Changed casting type.
35325
35326 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35327
35328         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35329                            method signatures to use gunichar2 instead of gint16.
35330
35331 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
35332
35333         * object.h, object.c: domain-specific versions of mono_object_new and
35334         mono_array_new.
35335
35336 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
35337
35338         * object.c: changed String layout
35339
35340         * string-icalls.c (mono_string_Internal_ctor_chara): added
35341         internal string constructors.
35342
35343 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35344
35345         * threads.c: pass 'this' to the thread start routine.
35346
35347 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35348
35349         * string-icalls.c: fix IndexOf and LastIndexOf. Now
35350         InternalCompareStr don't call twice mono_string_cmp_char for the last
35351         character. Improved performance in mono_string_cmp_char.
35352
35353 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35354
35355         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35356         code into its own library: libmonoruntime.
35357
35358 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
35359
35360         * object.h, object.c: changed array format so that szarrays do not
35361         require a bounds structure.
35362         * icall.c, appdomain.c: support for new szarray format.
35363
35364 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35365
35366         * metadata.c: compare also the retuns type when comparing signatures:
35367         we didn't do this as an optimization since really overloaded methods
35368         must differ also in the arguments, but this doesn't work with
35369         low-level IL code (or when using explicit conversion operators: see
35370         bug#23498 for an example).
35371
35372 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35373
35374         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35375
35376 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35377
35378         * icall.c: make MonoType::GetElementType its own icall.
35379
35380 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35381
35382         * icall.c: remove MonoMethod_get_Name().
35383         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35384         object.
35385
35386 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35387
35388         * string-icalls.c: optimized a few methods.
35389
35390 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35391
35392         * icall.c: added all new string internal calls
35393         * string-icalls.c: added, new string internal call implementation.
35394         * object.c: added mono_string_new_size for allocating a string a size
35395
35396 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35397
35398         * object.c (mono_object_isinst): use the same code as in the
35399         optimized x86 version.
35400
35401 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35402
35403         * profiler.c: TSC-based timer code (faster and more accurate).
35404         Not hooked up in configure, yet (set USE_X86TSC to 1).
35405
35406 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35407
35408         * profiler.c, profiler.h: track time spent compiling methods.
35409         * threads.c: track thread creation/destruction.
35410
35411 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35412
35413         * profiler.c, profiler.h, profiler-private.h: profiling interface
35414         and sample implementation. Moved here so that it can be used also by
35415         the jit.
35416
35417 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35418
35419         * reflection.c, reflection.h: keep types and other handles separate in
35420         the hash tables for referred tokens. Add guid for modules.
35421
35422 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35423
35424         * assembly.c: fix bugs found with valgrind.
35425         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35426
35427 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35428
35429         * threads: added icall support for getting current domain for
35430                    the thread.
35431  
35432 2002-04-13  Martin Baulig  <martin@gnome.org>
35433
35434         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35435         (MonoDebugVarInfo): Added `index' field for register based addresses.
35436         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35437         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35438         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35439         `MonoDebugVarInfo *this_var'.
35440
35441         * debug-symfile.c (relocate_variable): New static function to write
35442         a location description for a local variable or method parameter.
35443
35444 2002-04-12  Martin Baulig  <martin@gnome.org>
35445
35446         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35447         stack offset and begin/end scope address of a local variable.
35448         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35449         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35450         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35451
35452         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35453         Added new relocation types for start/end scope of a local variable.
35454
35455 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35456
35457         * object.h: add mono_object_domain() macro.
35458         * reflection.c: handle typespecs.
35459         * icall.c: MonoMethod::get_Name() implementation.
35460
35461 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35462
35463         * icall.c: String::GetHashCode() icall implementation.
35464
35465 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35466
35467         * icall.c: String::IndexOfAny icall.
35468         * object.c, object.h: make array->max_length more useful.
35469         Intrduced mono_object_class() and mono_string_length() macros.
35470
35471 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35472
35473         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35474         instead of g_unichar_isdigit.
35475
35476 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35477
35478         * icall.c: Implement a simple Double.ToString().
35479
35480 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35481
35482         * appdomain.h: only io-layer.h is supposed to be included.
35483         * icall.c: explicitly import environ. Fix warning.
35484
35485 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35486
35487         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35488                 return true even if it's not Daylight Savings time.
35489                 Only return false for the case where the function isn't
35490                 implemented for a plaform (read Windows).
35491
35492 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35493
35494         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35495         data with a mutex.
35496
35497 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35498
35499         * mempool.c (mono_mempool_alloc): only use g_malloc when
35500         absolutely necessary.
35501
35502 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35503
35504         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35505
35506         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35507         (mono_class_proxy_vtable): use domain mempool
35508
35509 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35510
35511         * appdomain.h, appdomain.c: split initialization that requires the
35512         execution engine support into mono_runtime_init().
35513
35514 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35515
35516         * class.c (mono_class_init): don't include vtable inside MonoClass
35517         to save some memory, gather some statistics.
35518         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35519
35520 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35521
35522         * icall.c: internalcall implementation for ValueType.Equals().
35523
35524 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35525
35526         * object.c (mono_message_init): moved 
35527         (mono_runtime_exec_main): new arch. independent impl.
35528         (mono_runtime_invoke_array): new method - like
35529         mono_runtime_invoke, but you can pass an array of objects.
35530         (mono_remoting_invoke): new arch. independent impl.
35531         (mono_message_invoke): new arch. independent impl.
35532         (mono_runtime_class_init): new arch. independent impl.
35533         (mono_runtime_object_init): new arch. independent impl.
35534
35535 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35536
35537         * metadata.c, object.c, reflection.c: documented the exported
35538         functions.
35539
35540 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35541
35542         * icall.c: simpler code to pass the assembly builder data to corlib.
35543         Implement GetNestedTypes() internalcall.
35544
35545 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35546
35547         * class.c: warn if a type can't be loaded.
35548
35549 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35550
35551         * image.h: typedef MonoImageOpenStatus
35552         * types.h: removed unused file
35553         
35554 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35555
35556         * icall.c: Enum_ToObject accepts enum value arguments.
35557
35558 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35559
35560         * class.c: move initialization of properties, events and nested
35561         classes, so that they happen for interfaces, too.
35562
35563 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35564
35565         * icall.c: cleanup some ugly casts in Array_SetValue*.
35566
35567 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35568
35569         * icall.c: the values array fro enums is of the correct type, now.
35570         Implement (correctly) getFullName instead of assQualifiedName for
35571         MonoType.
35572         * reflection.h, reflection.c: added mono_type_get_name ().
35573
35574 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35575
35576         * assembly.c, image.h: for each MonoImage, record from wich assembly
35577         it was loaded.
35578         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35579         Make Type.Assembly work.
35580
35581 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35582
35583         * debug-symfile.h: use char* instead of gpointer to avoid
35584         unnecessary casts.
35585
35586         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35587
35588         * icall.c (ves_icall_InternalExecute): impl. FielSetter
35589         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35590
35591 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
35592
35593         * icall.c (mono_message_init): impl. (code cleanup)
35594         (ves_icall_InternalExecute): impl. FieldGetter
35595
35596         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
35597         defined we call all (non-static)methods through the vtable. 
35598
35599 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
35600
35601         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
35602         finalizer even though the memory is still referenced (and the chunk of
35603         memory is not freed).
35604
35605 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35606
35607         * assembly.c: fix brokeness.
35608
35609 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
35610
35611         * class.c: kill some warnings. Check explicit interface method
35612         implementation also without considering the namespace.
35613         Load also literal strings in static class data.
35614
35615 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
35616
35617         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
35618         (default_assembly_name_resolver): Make the resolver take the
35619         "base" directory where the assembly was originally defined, so we
35620         can load DLLs that are in the same directory as the assembly that
35621         is being referenced.
35622
35623 2002-03-28  Dick Porter  <dick@ximian.com>
35624
35625         * file-io.h: 
35626         * file-io.c:
35627         * socket-io.c: 
35628         * unicode.h: 
35629         * unicode.c: Warning cleanups
35630
35631 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
35632
35633         * object.h, reflection.h: use the correct type instead of MonoObject.
35634
35635 2002-03-28  Martin Baulig  <martin@gnome.org>
35636
35637         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
35638         (mono_debug_update_symbol_file): Initialize classes if necessary.
35639
35640 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35641
35642         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
35643         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
35644
35645 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
35646
35647         * assembly.h: fix function prototype.
35648         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
35649         * mono-endian.h: use const cast.
35650
35651 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35652
35653         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
35654
35655 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35656
35657         * loader.c: don't assert when a typeref can't be loaded, give
35658         a chance to the runtime to trow an exception instead.
35659         * loader.h: fix warning.
35660
35661 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35662
35663         * class.c (mono_class_proxy_vtable): added proxy support
35664
35665 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
35666
35667         * icall.c: removed last of PAL calls, added System.Environment
35668         * file-io.h, file-io.c: MonoIO implementation
35669         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
35670
35671 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35672
35673         * appdomain.c: do not use the byte marker in ldstr table lookup.
35674         * debug-helpers.c: allow two ':' to separate class and method name.
35675         * object.c: allocate arrays bounds with the GC, too.
35676         * verify: add a few more checks.
35677
35678 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
35679
35680         * reflection.c: output also literal strings. Allocate parameter data
35681         with GC_malloc() (thanks, Martin, for catching this!).
35682
35683 2002-03-26  Martin Baulig  <martin@gnome.org>
35684
35685         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
35686         include the `this' offset in the `param_offsets'.
35687
35688 2002-03-25  Martin Baulig  <martin@gnome.org>
35689
35690         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
35691         mono_debug_get_class() function to get the classes. Added new
35692         relocation types for arrays and strings.
35693         (mono_debug_get_class): New static function to search in all
35694         referenced assemblies for a metadata token.
35695
35696         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
35697
35698 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
35699
35700         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
35701         hold gc-allocated objects. Make the string heap a stream like the
35702         others. Removed duplicated code when writing stream info.
35703         Added asserts to catch possible buffer overflows. Set the sorted map
35704         for tables that need sorting. Added some documentation.
35705
35706 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
35707
35708         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
35709         for interned strings and vtables.
35710
35711 2002-03-24  Martin Baulig  <martin@gnome.org>
35712
35713         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
35714         it in the array since it was created with g_slist_prepend().
35715
35716 2002-03-24  Martin Baulig  <martin@gnome.org>
35717
35718         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
35719         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
35720         (mono_debug_method_from_token): Renamed to
35721         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
35722         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
35723
35724         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
35725         relocation types.
35726
35727         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
35728
35729 2002-03-24  Martin Baulig  <martin@gnome.org>
35730
35731         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
35732         (mono_debug_method_from_token): New func.
35733
35734         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
35735         New interncall, calls mono_debug_local_type_from_signature().
35736         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
35737         calls mono_debug_method_from_token().
35738
35739 2002-03-23  Martin Baulig  <martin@gnome.org>
35740
35741         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
35742         specifies the number of bytes to be converted, not the array size.
35743         Return the number of chars, not the number of bytes.
35744         (ves_icall_iconv_get_chars): The `byteCount' argument
35745         specifies the number of bytes to be converted, not the array size.
35746
35747 2002-03-23  Martin Baulig  <martin@gnome.org>
35748
35749         * reflection.h (MonoReflectionSigHelper): New type.
35750
35751         * reflection.c (mono_reflection_sighelper_get_signature_local),
35752         (mono_reflection_sighelper_get_signature_local): New functions.
35753
35754         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
35755         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
35756         interncalls.
35757
35758 2002-03-23  Martin Baulig  <martin@gnome.org>
35759
35760         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
35761         is_writeable is set.
35762         (mono_raw_buffer_update): New function to write the modified map
35763         back to disk.
35764
35765         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
35766
35767         * debug-symfile.c (mono_debug_update_symbol_file): Call
35768         mono_raw_buffer_update() when done writing.
35769
35770 2002-03-23  Martin Baulig  <martin@gnome.org>
35771
35772         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
35773
35774         * debug-symfile.c: Added support for arguments and local variables.
35775
35776 2002-03-23  Dick Porter  <dick@ximian.com>
35777
35778         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
35779         protected by ifdefs, hence breaking the w32 build.
35780
35781 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35782
35783         * object.c: implement is_interned() the right way.
35784
35785 2002-03-21  Martin Baulig  <martin@gnome.org>
35786
35787         * debug-symfile.[ch]: New files to handle debugging information
35788         files. There's also support to dynamically update these symbol
35789         files to include machine dependent information.
35790
35791 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
35792
35793         * threads.c (mono_thread_create): new function to create thread
35794         from C
35795
35796 2002-03-20  Martin Baulig  <martin@gnome.org>
35797
35798         * icall.c (ves_icall_InternalInvoke): Create a new object if the
35799         method is a constructor.
35800         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
35801         points to ves_icall_InternalInvoke().
35802
35803 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
35804
35805         * file-io.c: Flush shouldn't throw exceptions.
35806
35807 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
35808
35809         * file-io.c: FileStream flush support; FileSetLength now
35810         restores file pointer.
35811
35812 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35813
35814         * class.c: set image for pointer classes.
35815
35816 2002/03/19  Nick Drochak <ndrochak@gol.com>
35817
35818         * sysmath.c: Forgot one.
35819
35820 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
35821
35822         * sysmath.c: Avoid redefining existing names.
35823
35824 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
35825
35826         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
35827         handled by runtime as icall rather than dllimport from libm.so
35828         * file-io.c, file-io.h: fixed handle argument type.
35829
35830 2002-03-18  Dick Porter  <dick@ximian.com>
35831
35832         * reflection.c (mono_image_get_type_info): rename interface to
35833         iface, because of "#define interface struct" on windows.
35834
35835 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
35836
35837         * class.c, class.h: rename and export mono_ptr_class_get().
35838         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
35839         * reflection.c, reflection.h, icall.c: better/saner type name
35840         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
35841         method signatures.
35842
35843 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
35844
35845         * class.c (mono_class_init): removed hardcoded GHC_SLOT
35846
35847         * icall.c (ves_icall_InternalInvoke): impl.
35848
35849 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35850
35851         * reflection.c: output the interface map table, too.
35852
35853 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35854
35855         * class.c (class_compute_field_layout): separate computation of 
35856         static field layout
35857
35858 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
35859
35860         * icall.c: added System.Buffer support.
35861         * file-io.c: moved file icalls from PAL to FileStream.
35862
35863 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35864
35865         * icall.c (ves_icall_System_Object_GetHashCode): impl.
35866
35867 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
35868
35869         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
35870
35871 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35872
35873         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
35874
35875 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35876
35877         * debug-helpers.{c,h}: moved here from monograph some useful functions
35878         to locate a method by name/signature in a class or image. Included
35879         also a small and flexible IL disassembler.
35880
35881 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35882
35883         * reflection.c: fixup tokens in methods with small header size, too.
35884
35885 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
35886
35887         * object.c (mono_string_to_utf8): remove assert(!error), instead
35888         print a warning. 
35889
35890 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
35891
35892         * icall.c: update to the new mono_Array_class_get interface.
35893
35894 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35895
35896         * appdomain.c, object.c: Boehm-GC enable.
35897         * icall.c: make get_data_chunk() support split data requests.
35898         Ensure a class is initialized in more cases. Return only the first
35899         property found in GetProperties() or the compiler gets confused. 
35900         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
35901         * reflection.h, reflection.c: add fixup mechanism for field and method
35902         tokens. Initialize assembly->typeref in a single place. Output
35903         properties after events. Support custom attributes for events, too.
35904         Typo fix for paramter custom attrs.
35905
35906 2002-03-07  Martin Baulig  <martin@gnome.org>
35907
35908         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
35909
35910 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
35911
35912         * class.c (mono_array_class_get): fix. for multi. dim. arrays
35913
35914 2002-03-06  Martin Baulig  <martin@gnome.org>
35915
35916         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
35917         non-zero lower bounds. See testcases #F10-#F13.
35918
35919 2002-03-05  Martin Baulig  <martin@gnome.org>
35920
35921         * exception.c (mono_get_exception_argument_out_of_range): New exception.
35922
35923         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
35924         ves_icall_System_Array_GetValue(), only calculate the absolute array position
35925         here.
35926         (ves_icall_System_Array_SetValue): Likewise.
35927         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
35928         as argument and does the actual work. This function is used when copying a
35929         multi-dimensional array.
35930         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
35931         now do all the widening conversions of value types.
35932         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
35933
35934 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35935
35936         * class.c: remove some magic numbers and use the smbolic names,
35937         instead. Added init_events() to load event info at class init time.
35938         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
35939         and mono_metadata_methods_from_event().
35940         * reflection.h, reflection.c: added support for writing out the evnets
35941         related information.
35942
35943 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35944
35945         * reflection.h, icall.c: use a different method (GetInterfaces)
35946         to gather interface info and add isbyref, isprimitive and
35947         ispointer to the ves_icall_get_type_info() return value.
35948
35949 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35950
35951         * class.h: stared adding support for events.
35952         * icall.c: split find_members implementation. Added debug icall to get
35953         the address of an object.
35954         * reflection.c: handle TypeBuilders in mono_type_get_object().
35955
35956 2002-03-01  Martin Baulig  <martin@gnome.org>
35957
35958         * icall.c (ves_icall_System_Array_GetLength): This must throw an
35959         ArgumentOutOfRangeException(), not an ArgumentException().
35960         (ves_icall_System_Array_GetLowerBound): Likewise.
35961         (ves_icall_System_Array_GetValue): Improved argument checking.
35962         (ves_icall_System_Array_SetValue): Improved argument checking.
35963
35964 2002-03-01  Martin Baulig  <martin@gnome.org>
35965
35966         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
35967         called with invalid arguments rather than just dying with g_assert().
35968         (ves_icall_System_Array_SetValue): Likewise.
35969         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
35970         raise a NotImplementedException instead.
35971         (ves_icall_System_Array_GetLength): Added argument checking.
35972         (ves_icall_System_Array_GetLowerBound): Added argument checking.
35973
35974 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
35975
35976         * object.h (mono_assert): new macros mono_assert and
35977         mono_assert_not_reached
35978
35979 2002-02-28  Martin Baulig  <martin@gnome.org>
35980
35981         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
35982         and "System::String::IsInterned" to "System::String::_IsInterned".
35983
35984 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
35985
35986         * icall.c: remove hacks for typebuilder. Added icall to create a
35987         modified type from a tybebuilder.
35988         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
35989         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
35990         to create a backing MonoClass for a TypeBuilder.
35991
35992 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35993
35994         * class.c, class.h: more refactoring of class init.
35995         Export mono_class_setup_mono_type() and mono_class_setup_parent().
35996
35997 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
35998
35999         * marshal.c, marshal.h: start of marshaling interface.
36000
36001 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36002
36003         * icall.c: fix order in assembly qualified name icall.
36004
36005 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36006
36007         * class.c: do not free str, since we store it in the hash table.
36008         * reflection.h: add label field to MonoILExceptionInfo.
36009         * reflection.c: handle references to more than one assembly. Handle
36010         case when there isn't a module created in the assembly.
36011
36012 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36013
36014         * class.c: Fix typo. Start refactoring of class init code.
36015
36016 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36017
36018         * appdomain.c: exit with 1 on error.
36019         * class.c: we already have the name in MonoClassField.
36020         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
36021         MonoStreamHeader instead of an offset of image->raw_metadata.
36022
36023 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
36024
36025         * appdomain.c (mono_init): Be even more descriptive about the error.
36026
36027 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
36028
36029         * appdomain.c: give the user an informative message when corlib can't
36030         be loaded.
36031
36032 2002-02-26  Martin Baulig  <martin@gnome.org>
36033
36034         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
36035         New icall to get the time zone data.
36036
36037 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36038
36039         * reflection.c: set virtual and raw size of section correctly.
36040         * threads.c: transfer domain information to newly created threads.
36041
36042 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36043
36044         * class.c: when instancing a class in a domain, load the default
36045         vaules for static fields from the constant table. Fix System.Enum to
36046         not be an enum.
36047         * icall.c: implement Object::GetType() internalcall. Implemented
36048         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
36049         Fixed checking of binding flags in find_members().
36050         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
36051         * reflection.c: handle enumerations when writing to the constant
36052         table. Use a different object cache for types.
36053
36054
36055 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
36056
36057         * object.c (mono_object_isinst): fix for arrays
36058
36059         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
36060
36061 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36062
36063         * object.c: don't use mprotect ()  and fix intern pool hash table
36064         lookup for big endian systems.
36065
36066 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36067
36068         * icall.c: change type_is_subtype_of () signature.
36069
36070 2002-02-21  Mark Crichton  <crichton@gimp.org>
36071
36072         * rand.c, rand.h: Added random number generator for
36073         System.Security.Cryptography classes.
36074
36075         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
36076
36077         * icall.c: Added System.Security.Cryptography calls.
36078
36079 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36080
36081         * class.c, icall.c, metadata.c: better support for pointer types.
36082         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36083         * reflection.c: Add support for getting custom attrs for properties
36084         and simplify some code.
36085
36086 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36087
36088         * icall.c: change getToken () and add custom attribute GetBlob()helper
36089         method.
36090         * reflection.h: add custom attrs array to the reflection builder structures.
36091         * reflection.c: encode and emit custom attributes for all the relevant
36092         reflection objects. Cache fieldref and methodref tokens. Change
36093         mono_image_create_token() interface to take a MonoDynamicAssembly.
36094         More complete custom attributes decoder. Load custom attributes for
36095         Assembly, Field, Method and Constructor objects, too. Make the
36096         returned array an Attribute[] one, not object[]. Added
36097         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36098         custom attribute constructor.
36099
36100 2002-02-20  Dick Porter  <dick@ximian.com>
36101
36102         * icall.c:
36103         * rawbuffer.c:
36104         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36105         problem code out for now).
36106
36107 2002-02-19  Radek Doulik  <rodo@ximian.com>
36108
36109         * object.c (mono_ldstr): use hash table to avoid multiple swapping
36110
36111 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36112
36113         * icall.c: register the GetCustomAttributes method.
36114         * object.c, object.h: add mono_string_new_len ().
36115         * reflection.h, reflection.c: added mono_runtime_invoke(),
36116         mono_install_runtime_invoke(). Added
36117         mono_reflection_get_custom_attrs () to load custom attributes and
36118         create the attribute objects.
36119
36120 2002-02-19  Dick Porter  <dick@ximian.com>
36121         * threads-dummy-types.c:
36122         * threads-dummy-types.h:
36123         * threads-dummy.c:
36124         * threads-dummy.h:
36125         * threads-pthread-types.c:
36126         * threads-pthread-types.h:
36127         * threads-pthread.c:
36128         * threads-pthread.h:  Deleted obsolete files
36129
36130 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
36131
36132         * class.c (mono_class_vtable): runtime init the class when we
36133         allocate static class data.
36134
36135         * icall.c (ves_icall_System_Array_SetValue): check for null values.
36136
36137         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36138         and String - but we will need generic marshalling support in the
36139         future. 
36140         (mono_init): set the domain name in a ms compatible way
36141
36142         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36143         String[].
36144
36145 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
36146
36147         * object.c (mono_array_clone): use alloca() instead of g_malloc  
36148         for sizes
36149
36150         * appdomain.c (mono_domain_unload): impl.
36151
36152 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36153
36154         * appdomain.c, object.c: fix intern pool implementation.
36155         * class.c: fix alignment code.
36156
36157 2002-02-16  Radek Doulik  <rodo@ximian.com>
36158
36159         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36160         and s2 > s1, just copy lower bytes to be compatible with little
36161         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36162         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36163
36164         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36165         force big_endian to be 1 for big endian machines 
36166         (ves_icall_iconv_new_decoder): ditto
36167
36168 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
36169
36170         * socket-io.c (convert_sockopt_level_and_name): If the system
36171         doesn't define SOL_IP or SOL_TCP, get them by hand using
36172         getprotobyname() and caching the values (because this could be a
36173         slow operation).
36174         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36175         Use the appropriate struct when the system does support it. Ie,
36176         not all systems have struct ip_mreqn so use struct ip_mreq when
36177         appropriate.
36178
36179 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36180
36181         * reflection.c: handle finally clauses.
36182
36183 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
36184
36185         * socket-io.c: use g_snprintf() instead of snprintf.
36186
36187 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36188
36189         * reflection.c (mono_param_get_objects): Cast second argument to
36190         mono_method_get_param_names to a const char** to silence the
36191         compiler warning.
36192
36193         * appdomain.c (mono_domain_assembly_open): Put parens around the
36194         truth statement in the for-loop.
36195
36196         * unicode.c (iconv_convert): Got rid of a compiler warning about
36197         int i being unused when the system has a new iconv.
36198         (iconv_get_length): Same.
36199
36200         * image.c (load_class_names): Cast the second argument to
36201         g_hash_table_insert() to char* to hush compiler warnings about the
36202         arg being a const.
36203         (mono_image_open): Same here.
36204
36205         * socket-io.c: Don't conditionally include sys/filio.h or
36206         sys/sockio.h here anymore since we now get them from
36207         io-layer/io-layer.h
36208         (inet_pton): If the system doesn't support inet_aton, implement
36209         using inet_addr and also #define INADDR_NONE if it isn't defined
36210         by the system.
36211
36212 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
36213
36214         * metadata.c, metadata.h: added function to get packing and size info
36215         of a typedef.
36216         * reflection.h, reflection.c: handle field RVA data. Save info about
36217         the table layout if needed. Assign typedef indexes to all the types
36218         before dumping the info about them to avoid forward reference problems.
36219
36220 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
36221
36222         * socket-io.c (convert_sockopt_level_and_name): ifdef
36223         SO_ACCEPTCONN because it is not defined on my system (old debian)
36224
36225 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36226
36227         * opcode.c: use stddef.h to get NULL.
36228
36229 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36230
36231         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
36232         for FIONBIO, FIONREAD and SIOCATMARK.
36233         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
36234         define INADDR_NONE and besides, inet_addr() is deprecated and
36235         should not be used. Use inet_pton() instead - it also has the
36236         added bonus that it can easily handle IPv6 addresses as well.
36237         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
36238
36239 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36240
36241         * decimal.c: remove _MSC_VER conditional.
36242
36243 2002-02-13  Dick Porter  <dick@ximian.com>
36244
36245         * socket-io.c: 
36246         * icall.c: Internal calls for Blocking, Select, Shutdown,
36247         GetSocketOption and SetSocketOption
36248
36249 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36250
36251         * assembly.cs: better resolver: use it instead of some kludgy
36252         code.
36253
36254 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
36255
36256         * reflection.c: the best way to speed-up the compiler is to avoid
36257         infinite loops.
36258
36259 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
36260
36261         * class.c (mono_class_vtable): changed the object layout
36262         (obj->vtable->class). 
36263         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
36264
36265 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36266
36267         * assembly.c: look for assemblies in the assembly dir, too.
36268
36269 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36270
36271         * class.c: fix thinko in mono_class_from_type().
36272
36273 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36274
36275         * exception.h, exception.c: added TypeLoadException.
36276         * object.h, object.c: added mono_array_clone ().
36277         * icall.c: handle throwOnError in AssemblyGetType().
36278         Added Array.Clone().
36279         * opcode.h, opcode.c: use a single value for the opcode val.
36280         Compile fix for non-gcc compilers.
36281
36282 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
36283
36284         * opcodes.c, opcodes.h: export interesting info about opcodes.
36285
36286 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
36287
36288         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
36289         icalls. 
36290
36291         * class.c (class_compute_field_layout): set element_class for enums
36292         (mono_class_create_from_typedef): set element_class for normal classes
36293
36294         * icall.c (ves_icall_System_Enum_get_value): impl.
36295
36296         * class.c (mono_class_create_from_typedef): do not set valuetype
36297         flag for System.ValueType and System.Enum
36298
36299 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
36300
36301         * unicode.c (iconv_convert): fix big endian problem.
36302
36303 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36304
36305         * class.c: add asserts if we are ever going to scribble over memory.
36306         * socket-io.c: not all systems have AF_IRDA defined.
36307
36308 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
36309
36310         * class.c (class_compute_field_layout): do not consider static
36311         fields to compute alignment
36312
36313 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
36314
36315         * appdomain.c (mono_appdomain_get): impl.
36316         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
36317
36318 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36319
36320         * icall.c: ignore "file://" prefix when loading an assembly.
36321
36322 2002-01-23  Dick Porter  <dick@ximian.com>
36323
36324         * socket-io.c:
36325         * icall.c:
36326         * Makefile.am: Added socket support
36327
36328 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36329
36330         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36331         code back.  This should return the assemblies that are loaded by
36332         the runtime on behalf of an application domain. 
36333
36334         The current implementation is still broken, it just returns every
36335         assembly loaded, but until we get real applications domain this
36336         will do.
36337
36338 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
36339
36340         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36341         AppDomain object.
36342
36343 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36344
36345         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36346         the mono_class_from_name lookup.
36347         (ves_icall_get_parameter_info): ditto.
36348         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36349         method.
36350         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36351
36352 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36353
36354         * class.c: load also nested classes on class init.
36355         System.ValueType instance methods gets passed boxed
36356         values, unless methods in derived classed that get a pointer to the
36357         data.
36358         * icall.c: use better name parsing code in GetType().
36359         * image.c, image.h: add mono_image_loaded ().
36360         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36361         * reflection.c, reflection.h: added mono_reflection_parse_type().
36362
36363 2002-01-22  Veronica De Santis <veron78@interfree.it>
36364
36365         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36366         * threads.c : Added the implementation of internal calls for events
36367         * threads.h : Added prototypes of internal calls for events
36368         
36369 2002-01-21  Radek Doulik  <rodo@ximian.com>
36370
36371         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36372
36373 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36374
36375         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36376         (mono_class_value_size): use min_align
36377
36378 2002-01-20  Dick Porter  <dick@ximian.com>
36379
36380         * threads.h:
36381         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36382         so it compiles on w32.
36383
36384 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36385
36386         * metadata.c (mono_type_stack_size): impl.
36387
36388         * class.c (mono_class_get_field): impl. memberref token
36389
36390 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36391
36392         * icall.h : Added the internal calls mapping for CreateMutex_internal
36393                     and ReleaseMutex_internal.
36394         * threads.h : Added the prototype of mutexes internal calls.
36395         * threads.c : Added the implementations of mutexes internal calls.
36396
36397 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36398
36399         * metaparse.h: removed unused file.
36400         * reflection.c, reflection.h: added stream_data_align () function 
36401         to align data in streams and keep stream aligned. Add support for
36402         exception support in method headers.
36403
36404 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36405
36406         * unicode.c: make iconv_convert () return the number of bytess written
36407         in the output buffer.
36408
36409 2002-01-15  Dick Porter  <dick@ximian.com>
36410         * threads.c: Make the runtime's idea of infinite timeouts coincide
36411         with the class library's
36412
36413         Fix a particularly egregious bug in mono_thread_cleanup(). That
36414         code was so utterly bogus it must have been written on a Monday.
36415
36416 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36417
36418         * reflection.h: add subtypes field to TypeBuilder.
36419         * reflection.c: encode constants for literal fields.
36420         Handle subtypes. Fix user string token (and add a zero byte)
36421         at the end.
36422         
36423 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36424
36425         * class.c (mono_class_init): bug fix: assign slot numbers for
36426         abstract methods.
36427
36428 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36429
36430         * reflection.c: don't try to output a code RVA for abstract methods.
36431         Small fixes for method header format. Output parameter info to the
36432         ParamDef table. Save method overriding info to MethodImpl table.
36433         Fix property support. Allow typedef.extends to be a type in the
36434         building assembly.
36435         * verify.c: fix off-by-one error.
36436
36437 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36438
36439         * class.c: fix mono_class_from_mono_type () for szarray types.
36440         Remove unused cache check in mono_class_from_type_spec().
36441         * icall.c: *type_from_name () functions handle simple arrays and byref.
36442         * reflection.c: handle byref and szarray types. Handle methods without
36443         body (gets P/Invoke compilation working). Handle types and fields in
36444         get_token ().
36445         * reflection.h: add rank to MonoTypeInfo.
36446
36447 2002-01-10  Dick Porter  <dick@ximian.com>
36448
36449         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36450         internal calls
36451
36452 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36453
36454         * icall.c: initialize class in type_from_handle ().
36455         Loop also in parent classes for get_method ().
36456         * reflection.c: properly encode class and valuetype types.
36457         Start on encoding TypeBuilder types. Handle fieldrefs.
36458         Use correct length when registering a user string.
36459         Handle ConstructorBuilder and MonoMethod in get_token ().
36460         Make mono_type_get_object () aware of cached types.
36461         * object.c: back out change to mono_string_new ().
36462
36463 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36464         * object.c: mono_string_new should return a NULL when the string 
36465         passed in is NULL -- not try to deference it.
36466         
36467 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36468
36469         * icall.c: hack to make IsSubType work for TypeBuilders.
36470         * reflection.c: emit constructors before methods.
36471         Retrieve param names in mono_param_get_objects().
36472
36473 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36474
36475         * Makefile.am: fix list of headers and sources so automake 1.5
36476         doesn't complain. Removed \# at end of list.
36477
36478 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36479
36480         * reflection.c: get token for a method ref. Set return type of
36481         constructor to void.
36482         * loader.c: debug message.
36483         * class.c: typo fix.
36484
36485 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36486
36487         * icall.c: fix array init with rank > 1. FindMembers
36488         loops in parent class as well.
36489         * image.c: do not insert nested types in name cache.
36490         * reflection.c: warning fix.
36491         * reflection.h: add override method (for interface impl).
36492
36493 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36494
36495         * metadata.c: fix customattr decoding.
36496
36497 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36498
36499         * rawbuffer.cs: Added native Win32 implementation, avoids using
36500         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36501
36502 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36503
36504         * class.c: make the low-level routines handle the cache.
36505
36506 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36507
36508         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36509
36510 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36511
36512         * class.c: fix mono_array_element_size() for objects.
36513         * class.h, class.c: add properties to MonoClass and load them
36514         at init time.
36515         * icall.c: check with isinst() when assigning a value to an array
36516         instead of requiring the classes to match exactly.
36517         Implemented icall for System.Type::GetType().
36518         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36519         enums. Handle bindingflags when looking for methods and fields.
36520         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36521         and mono_metadata_methods_from_property().
36522         * reflection.h, reflection.c: added structures for propreties,
36523         parameters and enums. Implemented mono_property_get_object() and
36524         mono_param_get_objects().
36525
36526 2001-12-18  Dick Porter  <dick@ximian.com>
36527
36528         * file-io.c: Use mono_string_to_utf16() instead of
36529         mono_string_chars()
36530
36531         * object.c: Added mono_string_to_utf16(), which copies the non
36532         NULL-terminated MonoString into a new double-null-terminated
36533         buffer.
36534
36535 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36536
36537         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36538
36539 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36540
36541         * file-io.c: raise exceptions if handle is invalid.
36542
36543 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36544
36545         * assembly.c: yet another check for mscorlib.
36546         * class.c, class.h: load nesting info for classes.
36547         * icall.c: many new functions to support the Reflection classes.
36548         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36549         * reflection.h, reflection.c: mono_image_create_token(),
36550         mono_assembly_get_object(), mono_type_get_object(),
36551         mono_method_get_object(), mono_field_get_object(): methods to return
36552         objects that parallel the C representation of assemblies, types,
36553         methods, fields.
36554
36555 2001-12-11  Dick Porter  <dick@ximian.com>
36556
36557         * icall.c:
36558         * file-io.c: Internal calls for file IO.
36559
36560 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36561
36562         * tabledefs.h: missing FileAttributes.
36563         * verify.h, verify.c: use is_valid_string () to simplify and check for
36564         valid strings more correctly. Fix warnings and speeling.
36565         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36566         Check code: branches, maxstack, method calls.
36567
36568 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36569
36570         * object.c (mono_object_allocate): removed static, so that the jit
36571         can allocate value types.
36572
36573         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36574
36575 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36576
36577         * class.c: init enum types right away and register the
36578         token->MonoClass map in mono_class_create_from_typedef ().
36579         * verify.h, verify.c: first cut of the verifier.
36580         * pedump.c: add --verify switch to verify metadata tables.
36581         * tabledefs.h: add some missing enums.
36582
36583 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36584
36585         * class.c (mono_install_runtime_class_init): impl.
36586         (mono_class_init): renamed mono_class_metadata_init to
36587         mono_class_init, also removed the metadata_inited flag
36588
36589         * object.c (mono_object_isinst): use faster algorithm
36590
36591 2001-11-30  Radek Doulik  <rodo@ximian.com>
36592
36593         * mono-endian.h: reverted last change
36594         added function prototypes
36595
36596         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
36597         add mono-endian.c back
36598
36599         * mono-endian.c: returned back, as Paolo pointed out, it's needed
36600         for unaligned access, I've mistaked it with endianess. I am
36601         sorry.
36602         (mono_read16): fix reverted endianess
36603         (mono_read64): ditto
36604         (mono_read32): ditto
36605
36606 2001-11-30  Dick Porter  <dick@ximian.com>
36607
36608         * exception.c: Implement mono_exception_from_name()
36609
36610 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36611
36612         * metadata.h, metadata.c: remove params_size and locals_size and their
36613         calculation from the metadata code: they are only usefult to the
36614         interp.
36615
36616 2001-11-29  Radek Doulik  <rodo@ximian.com>
36617
36618         * object.c (mono_ldstr): swap bytes here, it's probably not the
36619         best place, but works for me now, I'll redo it once I know mono
36620         better, also note that I add PROT_WRITE and don't reset back, also
36621         note that it's only affects big endians, so x86 should be OK
36622
36623         * mono-endian.h (read16): use just glib macros for both endians
36624
36625         * mono-endian.c: removed as glib macros are used in in
36626         mono-endian.h so we don't need to care about endianess for read
36627         macros as glib does that for us already
36628
36629 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
36630
36631         * class.h, class.h: take minimum alignment into consideration so
36632         that the fields of a class remain aligned also when in an array.
36633
36634 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36635
36636         * loader.h, loader.c: add mono_method_get_param_names().
36637         * class.c: 0-init class fields.
36638
36639 2001-11-26  Dick Porter  <dick@ximian.com>
36640
36641         * icall.c:
36642         * threads-types.h:
36643         * threads.c: New file that handles System.Threading on all platforms
36644
36645         * object.c: 
36646         * object.h: Remove the synchronisation struct from MonoObject,
36647         replace it with a pointer that gets initialised on demand
36648
36649         * Makefile.am: Replace all the system-specific threading code with
36650         a single file that uses the new wrapper library
36651
36652 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
36653
36654         * class.c, class.h: add mono_install_trampoline() so that the runtime
36655         can register a function to create a trampoline: removes the ugly
36656         requirement that a runtime needed to export arch_create_jit_trampoline.
36657         * object.h, object.c: added mono_install_handler() so that the runtime
36658         can install an handler for exceptions generated in C code (with
36659         mono_raise_exception()). Added C struct for System.Delegate.
36660         * pedump.c: removed arch_create_jit_trampoline.
36661         * reflection.c: some cleanups to allow registering user strings and
36662         later getting a token for methodrefs and fieldrefs before the assembly
36663         is built.
36664         * row-indexes.h: updates and fixes from the new ECMA specs.
36665
36666 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
36667
36668         * class.h, class.c: add enum_basetype field to MonoClass.
36669         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
36670         to get index in the constant table reated to a field, param or
36671         property.
36672         * reflection.h, reflection.c: handle constructors. Set public-key and
36673         version number of the built assembly to 0.
36674         * row-indexes.h: update from new ECMA spec.
36675
36676 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36677
36678         * class.h, class.c: add a max_interface_id to MonoClass.
36679         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
36680         since it's used to do that. Added mono_type_type_from_obj().
36681         Make GetType() return NULL instead of segfaulting if the type was not
36682         found. Handle simple arrays in assQualifiedName.
36683         * object.h: add a struct to represent an Exception.
36684         * reflection.c: output call convention in method signature.
36685         Add code to support P/Invoke methods and fixed offsets for fields.
36686
36687 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
36688
36689         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
36690         the value.
36691         * icall.c: use mono_array_addr instead of array->vector: fixes the
36692         reflection image writing.
36693         * reflection.c: init call convention byte to 0 in method signature.
36694         Encode the property signature. Don't output property-related methods
36695         twice. Really process the properties for a type (don't cast a field to
36696         a property, my mom always told me that).
36697         Fix 64 bit issues in pointer alignment in a different and more
36698         readable way.
36699
36700 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
36701
36702         * loader.h: Removed type class from MonoDefaults, added monotype
36703
36704         * loader.c: Loaded MonoType, removed loading of Type
36705
36706         * icall.c (my_mono_new_object): Now returns a System.MonoType,
36707         and fills in System.Type._impl with a RuntimeTypeHandle rather
36708         than the actual MonoClass *
36709
36710         (ves_icall_type_from_handle): change from type_class to
36711         monotype_class
36712
36713         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
36714         implemented
36715
36716         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
36717         implemented
36718
36719         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
36720
36721         (ves_icall_System_Reflection_Assembly_GetType): implemented
36722
36723         (ves_icall_System_MonoType_assQualifiedName): implemented
36724
36725         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
36726
36727 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
36728
36729         * assembly.c (mono_assembly_open): Implement a cache for the
36730         assemblies. 
36731
36732         (mono_assembly_close): only destroy the assembly when the last
36733         reference is gone.
36734         
36735 2001-11-09  Dick Porter  <dick@ximian.com>
36736
36737         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
36738
36739 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
36740
36741         * class.c (mono_class_metadata_init): bug fix: compute the right slot
36742
36743 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36744
36745         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
36746         from Martin Weindel.
36747         * object.h: add mono_string_chars ().
36748
36749 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
36750
36751         * reflection.c (build_compressed_metadata): Eliminates warnings
36752         and uses 64-bit clean code.
36753
36754         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
36755         (mono_type_equal): Change signature to eliminate warnings.
36756
36757 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36758
36759         * icall.c, loader.c: remove the internalcall array constructors.
36760         Changes to match the new MonoArray structure.
36761         * object.h, object.c: an array object doesn't allocate an extra
36762         vector. Add mono_array_new_full () to create jagged arrays easily.
36763
36764 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36765
36766         * metadata.h, metadata.c: add mono_metadata_field_info () to
36767         retreive all the info about a field from vairous tables.
36768         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
36769         * class.h, class.c: augment MonoClassField with more info.
36770         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
36771         policy and load a field's RVA if needed.
36772
36773 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
36774
36775         * class.c (mono_class_metadata_init): create a trampoline for all
36776         virtual functions instead of actually compiling them.
36777
36778 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
36779
36780         * class.h, class.c: include name in MonoClassField.
36781         * class.c: fix fundamental type of System.Object and System.String.
36782         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
36783         tokens in ldtoken.
36784         * icall.c: remove internalcalls for the Reflection stuff that is now
36785         done in C# code.
36786         * loader.c: mono_field_from_memberref () implementation.
36787         * mono-endian.c: thinko (s/struct/union/g).
36788         * object.c, object.h: make the mono_string_* prototypes actually use
36789         MonoString instead of MonoObject.
36790         * reflection.c, reflection.h: updates for changes in the reflection
36791         code in corlib: we use C structures that map to the actual C# classes.
36792         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
36793         fat method header if needed and use the info from the ILGenerator for
36794         methods. Handle fields in types. Misc fixes.
36795
36796 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
36797
36798         * class.c (mono_class_metadata_init): bug fix: always allocate
36799         space for static class data
36800
36801 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
36802
36803         * class.c (mono_compute_relative_numbering): use relative
36804         numbering to support fast runtime type checks.
36805
36806 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
36807
36808         * class.c (mono_class_create_from_typeref): added debugging output
36809         to print class name when MonoDummy is returned instead of real class
36810
36811 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
36812
36813         * class.c (mono_class_metadata_init): interface offset table now
36814         contains pointers into the vtable - this is more efficient for the jit
36815
36816 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
36817
36818         * class.c (mono_class_metadata_init): use a temporary vtable (the
36819         old algorithm only worked for the interpreter, but not for the jit)
36820
36821 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
36822
36823         * loader.c (method_from_memberref): use mono_class_get to get the
36824         class of an array instead of using System.Array directly.
36825         (mono_get_method): also add MEMBERREF methods to the method cache
36826         which usefull for arrays.
36827
36828 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
36829
36830         * pedump.c (arch_compile_method): added to compute vtable entry
36831
36832         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
36833         number of interfaces.
36834         
36835         * class.h: merged MonoArrayClass into MonoClass
36836
36837         * class.c (mono_class_create_from_typedef): compute the vtable size and
36838         allocate space to include the vtable inside MonoClass
36839         (mono_class_metadata_init): initialize the vtable
36840
36841 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
36842
36843         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
36844         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
36845         * image.c: endian fixes by Laurent Rioux.
36846         * object.h, object.c: rename MonoStringObject to MonoString and
36847         MonoArrayObject to MonoArray. Change some function names to conform to
36848         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
36849         guint16* as first argument, so don't use char*.
36850         Provide macros to do the interesting things on arrays in a portable way.
36851         * threads-pthread.c: updates for the API changes and #include <sched.h>
36852         (required for sched_yield()).
36853         * icall.c: updates for the API changes above.
36854         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
36855         platforms that need them.
36856
36857 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36858
36859         * class.c: set the correct type for all the fundamental
36860         type when loading the class.
36861
36862 2001-10-05  Dick Porter  <dick@ximian.com>
36863
36864         * threads-pthread.c (pthread_mutex_timedlock): Simple
36865         compatibility version for C libraries that lack this call.
36866
36867 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36868
36869         * class.c: MonoTypes stored in MonoClass are stored as
36870         fundamental MonoTypes when the class represents a
36871         fundamental type (System.Int32, ...).
36872         The TypeHandle return by ldtoken is a MonoType*.
36873         * icall.c: ves_icall_get_data_chunk () write out all the
36874         PE/COFF stuff. Implement ves_icall_define_method (),
36875         ves_icall_set_method_body (), ves_icall_type_from_handle ().
36876         * image.c: properly skip unknown streams.
36877         * loader.h, loader.c: add type_class to mono_defaults.
36878         * metadata.c, metadata.h: export compute_size () as
36879         mono_metadata_compute_size () with a better interface.
36880         Typo and C&P fixes.
36881         * pedump.c: don't try to print the entry point RVA if there is no entry point.
36882         * reflection.c, reflection.h: many cleanups, fixes, output method
36883         signatures and headers, typedef and typeref info, compress the metadata
36884         tables, output all the heap streams, cli header etc.
36885         * row-indexes.h: typo fixes.
36886
36887 2001-10-04  Dick Porter  <dick@ximian.com>
36888
36889         * object.h: Add a synchronisation mutex struct to MonoObject
36890
36891         * object.c (mono_new_object): Initialise the object
36892         synchronisation mutexes
36893
36894         * icall.c: System.Threading.Monitor internal calls
36895         
36896         * threads-pthread.h:
36897         * threads-pthread.c: System.Threading.Monitor internal calls
36898
36899         * threads-types.h: New file, includes the system-specific thread
36900         structures
36901         
36902         * threads-pthread-types.h:
36903         * threads-pthread-types.c: New files, handle pthread-specific
36904         synchronisation types
36905
36906         * threads-dummy-types.h: 
36907         * threads-dummy-types.c: New files of dummy support for
36908         thread-specific types
36909
36910         * metadata.c:
36911         * image.c:
36912         * pedump.c: include mono-endian.h not endian.h
36913         
36914         * Makefile.am: More threads files.
36915         Name mono-endian.h not endian.h
36916
36917 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
36918
36919         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
36920         stuff and implement a few more bits.
36921         * icall.c: a field needs to be dereferenced twice. Do not use the same
36922         name for two variables in the same scope.
36923         * image.c, image.h: cleanups.
36924
36925 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
36926
36927         * class.c (mono_class_metadata_init): bug fix: compute the right size
36928
36929 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
36930
36931         * icall.c: implemented some of the Reflection internalcalls.
36932         * image.c, image.h: start writing out the PE/COFF image.
36933         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
36934         that does the reverse than decode_blob_size ().
36935         * object.c: use mono_metadata_encode_value (). Move here
36936         temporary implementation of mono_string_to_utf8 ().
36937         * rawbuffer.c: make malloc_map static.
36938
36939 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36940
36941         * metadata.c: fix type comparison for arrays.
36942         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
36943         Added a couple of new classes to monodefaults.
36944         * icall.c: added a couple of Reflection-related internalcalls.
36945         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
36946         Added a byval_arg MonoType to MonoClass.
36947
36948 2001-09-28  Dick Porter  <dick@ximian.com>
36949
36950         * icall.c:
36951         * threads-pthread.h: 
36952         * threads-pthread.c: Implemented internal calls for
36953         LocalDataStoreSlot operations.  Applied mutexes around all shared
36954         data.  Reworked the thread creation and Start() operations to
36955         avoid a race condition.
36956         
36957         * threads-dummy.h:
36958         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
36959
36960 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
36961
36962         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
36963
36964 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
36965
36966         * class.c, loader.c: warn and return NULL instead of erroring out.
36967         * icall.c: added System.AppDomain::getCurDomain().
36968         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
36969
36970 2001-09-25  Dick Porter  <dick@ximian.com>
36971
36972         * threads-pthread.h:
36973         * threads-pthread.c: Implemented timed thread joining and added
36974         System.Threading.Thread::Join_internal internal call
36975
36976         * icall.c: Added System.Threading.Thread::Join_internal internal call
36977
36978         * threads-dummy.h:
36979         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
36980
36981 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
36982
36983         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
36984         mono_string_intern () to implement the semantics of the ldstr opcode
36985         and the interning of System.Strings.
36986         * icall.c: provide hooks to make String::IsIntern and String::Intern
36987         internalcalls.
36988
36989 2001-09-23  Dick Porter  <dick@ximian.com>
36990
36991         * threads-dummy.c: 
36992         * threads-dummy.h: New files of dummy threading routines
36993
36994         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
36995         support code based on system specifics
36996
36997         Rename PTHREAD_LIBS to THREAD_LIBS
36998         
36999 2001-09-23  Dick Porter  <dick@ximian.com>
37000
37001         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
37002         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
37003         internal calls.
37004         (mono_thread_init): Set up a Thread object instance to return when
37005         the main thread calls Thread.CurrentThread
37006         (mono_thread_cleanup): Wait for all subthreads to exit
37007
37008         * icall.c: New internal calls for System.Threading.Thread::Sleep
37009         (including Schedule) and CurrentThread
37010
37011         * threads.h: New file, to insulate thread-specific stuff from the
37012         rest of the code
37013
37014 2001-09-21  Dick Porter  <dick@ximian.com>
37015
37016         * threads-pthread.h: 
37017         * threads-pthread.c: New file, for handling pthreads-style
37018         threading support.  Start() now starts a new thread and executes
37019         the ThreadStart delegate instance.
37020
37021         * icall.c: Added the internalcall for
37022         System.Threading.Thread::Start_internal
37023
37024         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
37025
37026 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
37027
37028         * loader.c: work around the different signatures for delegates
37029         constructors csc generates in compiled code vs the ones compiled in mscorlib.
37030
37031 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37032
37033         * class.h, class.c: add mono_class_get_field_from_name ().
37034         * *: Fix C comments and other ANSI C issues.
37035
37036 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
37037
37038         * endian.h, assembly.c: fix some endianness issues.
37039
37040 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
37041
37042         * loader.h, load.c: add delegate_class to mono_defaults.
37043         Handle runtime provided methods in mono_get_method ().
37044
37045 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
37046
37047         * loader.c (mono_get_method): use pinvoke for internal call
37048
37049         * icall.c: use pinvoke for internal call
37050
37051         * loader.c (method_from_memberref): set the method name
37052
37053 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
37054
37055         * metadata.c: help the compiler generate better code for
37056         mono_class_from_mono_type ().
37057
37058 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
37059
37060         * class.c (mono_class_metadata_init): delayed computing of the
37061         class size to mono_class_metadata_init ()
37062
37063 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
37064
37065         * class.c, class.h: add an interfaces member to MonoClass.
37066         * image.c, image.h: add assembly_name field to MonoImage
37067         from the assembly table.
37068         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
37069
37070 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37071
37072         * class.c: Handle Array in mono_class_from_mono_type ().
37073         * metadata.c, pedump.c: some endian fixes.
37074
37075 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37076
37077         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37078         * metadata.c: fix small problem introduced with the latest commit.
37079
37080 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37081
37082         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37083         We don't need a MonoMetadata pointer anymore to compare signatures in
37084         mono_metadata_signature_equal (), update callers.
37085         Reduced memory usage an number of allocations for MonoMethodHeader and
37086         MonoMethodSignature.
37087
37088 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37089
37090         * metadata.c: added compare for szarray.
37091
37092 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37093
37094         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37095         and add a couple more types to it and mono_defaults. Give an hint on
37096         classes that need implementing in our corlib and are referenced
37097         in mscorlib.
37098
37099 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37100
37101         * class.h, class.c: keep track if a class is also an Enum.
37102         * loader.c: Implement a couple more types for use in libffi
37103         marshalling. Gives better diagnostics when failing to dlopen
37104         a library. Set method->klass for P/Invoke methods, too.
37105
37106 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37107
37108         * class.c, class.h: add a MonoType this_arg to MonoClass that
37109         represents a pointer to an object of the class' type that
37110         can be used by the interpreter and later the type cache.
37111         Add best guess alignment info for valuetype objects.
37112
37113 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37114
37115         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37116         into MonoType: one less level of indirection and allocation and
37117         simplifies quite a bit of code. Added cache for MonoTypes that are
37118         used frequently, so that we don't need to allocate them all the time.
37119
37120 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
37121
37122         * class.c (mono_class_create_from_typedef): System.Enum is also a
37123         value type, although it does not derive from System.ValueType
37124         (maybe a bug in the ms compiler?)
37125
37126         * metadata.c (mono_type_size): return the right size for value types
37127
37128         * loader.c (mono_get_method): only initialize method header if not abstract
37129
37130         * class.c (mono_class_from_mono_type): use mono_default values. 
37131
37132 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
37133
37134         * *: use MonoClass pointers instead of <type_tokens>
37135         
37136         * class.h: new flag: metadata_inited.
37137
37138         * class.c (mono_class_metadata_init): impl.
37139         (mono_class_instance_size): impl.
37140         (mono_class_data_size): impl.
37141
37142 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37143
37144         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37145         MonoClass now has the name and name_space fields. 
37146         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37147         mono_get_method () takes and optional MonoClass as argument.
37148         Removed mono_typedef_from_name() and added mono_class_token_from_name()
37149         instead that takes advantage of a map from class names to typedef
37150         tokens in MonoImage.
37151
37152 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37153
37154         * metadata.c: zero is not a valid alignment boundary.
37155         Merge MONO_TYPE_VOID in default decoding code.
37156
37157 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
37158
37159         * image.h: merged MonoMetadata into MonoImage
37160
37161         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37162         identify the type of elements.
37163
37164 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37165
37166         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37167         * cil-coff.h: split MonoMSDOSHeader and add size info.
37168         * image.c: add some consistency checks.
37169         * metadata.c: fix row size computation: one programmer
37170         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37171         add explanation for the locator routine.
37172         Fix decoding of size in method header.
37173         
37174 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
37175
37176         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
37177         (g_concat_dir_and_file): Bring g_concat_dir_and_file
37178         function from gnome-libs.  This uses the right path separator
37179         based on the OS, and also works around a bug in some systems where
37180         a double slash is not allowed. 
37181         (default_assembly_name_resolver): Use g_concat_dir_and_file
37182         (mono_assembly_open): ditto.
37183
37184 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
37185
37186         * metadata.c (mono_metadata_signature_equal): impl.
37187
37188         * *: void is now a realy MonoType (instead of using NULL)
37189         
37190         * metadata.c (do_mono_metadata_parse_type): use
37191         mono_metadata_parse_type to parse void value.
37192
37193 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
37194
37195         * metadata.c, metadata.h: in the signature and method header store
37196         only the space required for holding the loca vars and incoming arguments.
37197
37198 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
37199
37200         * metadata.c (do_mono_metadata_parse_type): treat void like any
37201         other type (instead of assigning NULL);
37202
37203 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
37204
37205         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
37206
37207 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
37208
37209         * image.c (do_mono_image_open): added a cache for arrays.
37210
37211 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37212
37213         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
37214         decode a single column from a row in a metadata table and changes
37215         to take advantage of it in the typedef locator (gives a nice speed up).
37216         Store offset info for function params.
37217
37218 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
37219
37220         * image.h (MONO_IMAGE_IS_CORLIB): removed 
37221
37222 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
37223
37224         * assembly.c: how could mono_assembly_close () had ever worked?
37225         * metadata.c, metadata.h: provide offset info for local vars.
37226         Implement mono_type_size () to take care of alignment as well
37227         as size (it was mono_field_type_size in cli/class.c before).
37228
37229 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
37230
37231         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
37232
37233         * assembly.h (CORLIB_NAME): set to corlib.dll
37234
37235         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
37236
37237 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37238
37239         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
37240         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
37241         tokentype.h: massive namespace cleanup.
37242
37243 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37244
37245         * metadata.h, metadata.c: decode exception clauses when parsing method header.
37246
37247 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
37248
37249         * metadata.c (mono_metadata_free_type): added check for type !=
37250         NULL (void) before calling mono_metadata_free_type()
37251
37252 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
37253
37254         * metadata.h, row_indexes.h: added header with enumerations to use
37255         to index in the columns from tables in metadata and to decode coded
37256         tokens: we should start using this instead of embedding magic numbers
37257         all over the code.
37258
37259 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
37260
37261         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
37262         Move metadata_t info from cli_image_info_t to MonoImage, where
37263         it's easily accessible. Changed all the uses accordingly.
37264         Added the method and class caches to MonoImage.
37265         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
37266         and mono_metadata_decode_value () signature to be more consistent
37267         with the other parse functions (and simplify code). Taken advantage
37268         of zero-length array allocation with GCC. Removed reduntant (and
37269         wrong) MonoFieldType struct and use MonoParam instead. Changed
37270         mono_metadata_parse_field_type () to use common code for parsing.
37271         Added mono_metadata_typedef_from_field () and
37272         mono_metadata_typedef_from_method () to lookup a typedef index from a
37273         field or method token.
37274         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
37275
37276 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
37277
37278         * metadata.c (mono_metadata_parse_field_type): Implement. 
37279         (do_mono_metadata_parse_type): Split engine from
37280         mono_metadata_parse_type, so that we can create smaller structures
37281         for things that just have one pointer to the MonoType (look at
37282         the MonoFieldType)
37283
37284 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
37285
37286         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
37287         as Jan Gray found out, it is incorrect. 
37288
37289 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
37290
37291         * assembly.c: Implement asssembly loading.  This loads an image
37292         and loads all the referenced assemblies.  Come to think of it, we
37293         could always do lazy loading of the assemblies. 
37294
37295         * image.c (mono_image_open): Keep loaded images in a hashtable.
37296
37297         * image.h (MonoImage): Add reference count.
37298
37299 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
37300
37301         * assembly.c (mono_assembly_open): Keep track of the file name in
37302         case the assembly has no ASSEMBLY table.
37303
37304         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
37305         from get.c here.
37306
37307 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
37308
37309         * metadata.c, metadata.h: decode local vars in method header
37310         parse function. Change callers accordingly.
37311
37312 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
37313
37314         * metadata.h, cil-coff.h: protect against multiple inclusion.
37315         Added some new structures to hold information decoded from metadata:
37316         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
37317         and relevant decoding/free functions.
37318         * metadata.c: implement decoding functions. Add warning for out of bounds
37319         index in mono_metadata_locate(). Implement mono_get_method () to retreive
37320         all the info about a method signature and invocation. Remove check on
37321         uninitialized local var in parse_mh() and fix memory leak.
37322
37323 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
37324
37325         * metadata.h: More macros.
37326
37327         * tokentype.h: New file.
37328
37329 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37330
37331         * assembly.c: added a consistency check and initialize
37332         some structures with g_new0().
37333         * metadata.c: fixed a couple more bugs in table size computation
37334         and add other checks for out-of bound access to metadata.
37335
37336 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37337
37338         * metatada.c: fix bugs computing table sizes. Spew a
37339         warning when index in string heap is out of bounds.
37340
37341 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
37342
37343         * metadata.h: Add a couple of macros to manipulate tokens. 
37344
37345 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37346
37347         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37348         cli_section_tables).
37349
37350 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
37351
37352         * metadata.c (mono_metadata_user_string): New function, provides
37353         access to the UserString heap. 
37354
37355 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
37356
37357         * metadata.c: Add inline documentation.
37358
37359 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
37360
37361         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37362         files. 
37363
37364 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37365
37366         * typeattr.h: New file, TypeAttribute flags. 
37367
37368 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37369
37370         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37371         mono_assembly_ensure_section): Section loading code.
37372         (load_section_tables): Load the sections.
37373
37374         * mono/metadata/metadata.c (mono_metadata_locate_token,
37375         mono_metadata_locate): Functions to locate the information
37376         definition given a token or a table and an index.
37377         (mono_metadata_compute_table_bases): New.
37378         (compute_size): New function to compute the sizes of the various
37379         tables.
37380
37381         * mono/metadata/metadata.h: Finish listing the different index
37382         types. 
37383
37384         * mono/metadata/pedump.c: Improve to dump new information.
37385
37386 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37387
37388         * mono/metadata/metadata.c: Entered all the tables matching
37389         Beta2. 
37390
37391         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
37392
37393
37394
37395