1c49e07859b8f9af3071ab5f82c20ad9aa8c0775
[mono.git] / mono / metadata / ChangeLog
1 2010-04-24  Mark Probst  <mark.probst@gmail.com>
2
3         * sgen-gc.c: Disable managed allocator and wbarrier when the
4         binary protocol is enabled.
5
6 2010-04-24  Mark Probst  <mark.probst@gmail.com>
7
8         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
9
10 2010-04-24  Mark Probst  <mark.probst@gmail.com>
11
12         * sgen-gc.c: Remove a few commented out and unneeded bits.
13
14 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
15
16         * threadpool.c: patch from Robert Nagy that fixes a nullref and
17         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
18
19 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
20
21         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
22         types.
23
24         Fixes #331126
25
26 2010-04-21  Mark Probst  <mark.probst@gmail.com>
27
28         * sgen-gc.c: Turn off semi-precise stack mark.
29
30 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
31
32         * reflection.c (mono_custom_attrs_from_index): Use right function
33         to free 'list' (i.e. g_list_free) if the verifier fails.
34
35 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
36
37                 * verify.c: Handle the case where mono_type_get_underlying_type_any
38                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
39                 and MONO_TYPE_VALUETYPE in those case.
40
41                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
42
43                 Hopefully Fixes #564253.
44
45 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
46
47         * domain-internals.h: made threadpool_jobs volatile.
48         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
49         all local jobs.
50         * threadpool.c:
51                 -When two threads try to initialize the socket IO pool,
52                 the second one waits until the intialization is finished
53                 instead of continuing right away.
54                 -Add checks for domain unload: no items added in this case.
55                 -Only measure the time every 10 elements added to the queue.
56                 This is an experiment since linux x86 gettimeofday() sucks.
57                 -Create new thread if there are none waiting for work items.
58                 -There was a missing decrement of the busy threads.
59                 -Make sure the local queue is cleaned up before exiting the
60                 thread when the program ends.
61
62 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
63
64         * reflection.c (mono_type_get_object): Normalize generics types
65         as to how managed code expect them to be. A generic instance over
66         the GTD arguments must have the same mirror as the GTD itself.
67
68         Fixes #473289.
69
70 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
71
72         * locales.c: Implement support for DISABLE_NORMALIZATION.
73
74 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
75
76         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
77         since it is not a MonoMethod.
78
79 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
80
81         * icall-def.h: Add get_RequiresElevatedPermissions icall to
82         System.Security.SecurityManager - used only by Moonlight
83         * security-core-clr.c|h: Add Elevated Trust/Permission support
84         for CoreCLR / Moonlight
85
86 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
87
88         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
89         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
90
91 2010-04-16  Marek Habersack  <mhabersack@novell.com>
92
93         * mono-perfcounters.c: added code for the "Mono
94         Memory/Total Physical Memory" performance counter.
95
96         * mono-perfcounters-def.h: added definition of the "Mono
97         Memory/Total Physical Memory" performance counter.
98
99 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
100
101         * class.c (mono_class_get_method_by_index): Return NULL
102         on type load failures.
103
104 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
105
106         * class.c (mono_class_from_typeref): Check if the supplied
107         image has an assembly bound to it.
108
109         Fixes #567884.
110
111 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
112
113         * loader.c (mono_method_get_signature_full): Use new function
114         inflate_generic_signature_checked to check for errors.
115
116         Fixes #560839.
117
118 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
119
120         * loader.c (inflate_generic_signature): Add _checked variant
121         and move this function to use it.
122
123 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
124
125         * class.c (mono_class_setup_vtable_general): Use error checking
126         version of mono_class_inflate_generic_method_full.
127
128         Fixes #596975.
129
130 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
131
132         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
133         error handling passing MonoError around.
134
135         Fixes #560336.
136
137 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
138
139         * socket-io.c: make GetHostByName ("") work on windows.
140         Fixes bug #456723.
141
142 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
143
144         * object-internals.h:
145         * threads.c: use a spin lock when accesing the per-thread appdomain
146         list.
147
148 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
149
150         * threads.c: no need to take the threads lock in push/pop appdomain.
151
152 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
153
154         * reflection.c (_mono_reflection_parse_type): MS supports
155         non-assembly-qualified types in a generic type parameter list
156         when enclosed in '[]' (which signals that they should be a fqn).
157
158         This breaks ECMA specs for how type names are encoded in cattr
159         blobs but F# does it.
160
161         Fixes #576342.
162
163 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
164
165         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
166         for instance methods/ctors.
167
168         Fixes #422113.
169
170 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
171
172         * reflection.c: Use the new verifier support for checking
173         custom attributes.
174
175         Fixes #595306.
176
177 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
178
179         * metadata-verify.c: Implement structural verification
180         of custom attributes. This check requires access to the
181         loader since to resolve the size of an enum we have to
182         look it up.
183         We don't check if named argumenments are encoded in a
184         compatible fashion to their underlying field/prop.
185         Maybe we should?
186
187         * verify-internals.h: Add two new cattr verification API.
188
189 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
190
191         * metadata-verify.c (decode_signature_header): Fix signature.
192
193 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
194
195         * verify.c (mono_verifier_is_enabled_for_method): Handle
196         assembly less images.
197
198         * verify.c (mono_verifier_is_class_full_trust): Ditto.
199
200 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
201
202         * loader.c (mono_method_signature_checked): Properly
203         init MonoError.
204
205         * loader.c (mono_method_signature): It's the calee
206         resposibility to init the error object.
207
208 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
209
210         * metadata-verify.c (decode_signature_header): Do proper
211         overflow checking.
212
213 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
214
215         * reflection.c: maintain the invariants required by
216         mono_class_layout_fields() also in typebuilder_setup_fields ().
217
218 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
219
220         * security-core-clr.c: Call mono_class_setup_methods in 
221         get_default_ctor before checking klass->methods. Fix typo in
222         comment
223
224 2010-04-10  Jb Evain  <jbevain@novell.com>
225
226         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
227         add .net 4.0 RTM version.
228
229 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
230
231         * reflection.c (resolve_object): Properly inflate generic
232         methods when a context is supplied.
233
234         Fixes #591226.
235
236 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
237
238         * verify.c (mono_method_verify): A switch op don't empty
239         the stack for the next one. Fixes a bug when running fsi
240         under --verify-all.
241
242 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
243
244         * metadata-verify.c (is_valid_standalonesig_blob): Accept
245         fields as valid standalone sig too. F# does generate them.
246
247         * metadata-verify.c (verify_typedef_table_full): Ignore
248         what <module> extends.
249
250 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
251
252         * verify.c (do_invoke_method): It's ok to do use call with
253         virtual, non-final methods if their class is sealed.
254
255 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
256
257         * icall.c (ves_icall_MonoField_GetValueInternal): This function
258         is a near identical copy of mono_field_get_value_object. So simply
259         call it.
260
261         * object.c (mono_field_get_value_object): Handle literal fields
262         on open generic classes.
263
264         Fixes #594942.
265
266 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
267
268         * reflection.c (mono_reflection_create_runtime_class): Setup
269         parent/supertype information again since it can be changed
270         without notice.
271
272 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
273
274         * verify.c (verify_type_compatibility_full): Properly handle
275         stores between arrays of primitives.
276
277         Fixes the verifier side of #555950.
278
279 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
280
281         class.c (mono_bounded_array_class_get): Properly init
282         cast_class to take the fact that uint[] and int[] can be
283         casted between each other.
284
285         Fixes #555950.
286
287 2010-04-07  Geoff Norton  <gnorton@novell.com>
288
289         * domain.c: Avoid a deadlock on osx.  Fixes #565765
290
291 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
292
293         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
294         builders. Fixes #594464.
295
296 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
297
298         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
299         waiting for all threads to suspend, as those threads can't be suspended.
300
301 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
302
303         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
304         to avoid crashes on newly created threads.
305
306 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
307
308         * file-io.c: reset the MonoIOStat structure in case of error.
309         Fixes bug #582667.
310
311 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
312
313         * class.c (print_implemented_interfaces): Print proper type name.
314
315         * class.c (mono_class_setup_vtable): Don't try that hard to produce
316         the override map for generic instances since it later ignored.
317
318         * class.c (mono_class_implement_interface_slow): Don't break for
319         dynamic generic instances.
320
321         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
322
323         * reflection.c (mono_reflection_method_get_handle): New method that
324         resolves a method handle.
325
326         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
327         case when we override methods from a dynamic generic instance interface.
328
329         Fixes #575941.
330
331 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
332
333         * threadpool.c: don't attempt to close the pipe when it has not been
334         created.
335
336 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
337
338         * threadpool.c: if there are no waiting threads, try to start a new
339         one. This fixes the not-so-random hangs in System.ServiceModel tests.
340         No need to use InterlockedCompareExchange to read volatile variables.
341
342 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
343
344         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
345         and reference types that point to the same class.
346
347         Fixes #565598.
348
349 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
350
351         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
352         when verifying compatibility between a generic instance and a generic
353         parameter.
354
355         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
356
357         * verify.c (stack_slot_stack_type_full_name): Improve verification type
358         name.
359
360         Fixes #587849.
361
362 2010-04-04  Mark Probst  <mark.probst@gmail.com>
363
364         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
365
366 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
367
368         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
369
370 2010-04-03  Marek Habersack  <mhabersack@novell.com>
371
372         * process.c: when cross-compiling with MinGW, force GetProcessId
373         lookup using GetProcAddress.
374
375 2010-04-02  Mark Probst  <mark.probst@gmail.com>
376
377         * sgen-gc.c: parse_environment_string_extract_number() must be
378         static.
379
380 2010-04-02  Mark Probst  <mark.probst@gmail.com>
381
382         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
383         gray_object_dequeue(), to make sure they're inlined.
384
385 2010-04-02  Mark Probst  <mark.probst@gmail.com>
386
387         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
388         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
389
390 2010-04-02  Jb Evain  <jbevain@novell.com>
391
392         * exception.c: remove dead code.
393
394 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
395
396         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
397         with mono-gc.h.
398
399 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
400
401         * sgen-gc.c: Make the nursery size adjustable by the
402         MONO_GC_PARAMS environment variable.
403
404         Code is contributed under MIT/X11 license.
405
406 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
407
408         * threadpool.c: threadpool threads wait is alertable.
409         Fixes bug #592964.
410         Reduced the stack size of the *poll_wait thread.
411
412 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
413
414         * exception.c|metadata-internals.h: Add new mono_get_exception_
415         field_access_msg and mono_get_exception_method_access_msg 
416         functions that accept a const char* parameter to provide more 
417         details when the exception is thrown.
418         * security-core-clr.c|h: Rework code to allow logging exceptions
419         (export MONO_LOG_MASK="security") and to supply more details in
420         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
421         mono_security_core_clr_is_field_access_allowed and 
422         mono_security_core_clr_is_call_allowed to return an exception,
423         with messages and logging, that can be emitted by method-to-ir.c
424
425 2010-04-01  Mark Probst  <mark.probst@gmail.com>
426
427         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
428         pinned object.
429
430 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
431
432         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
433         the assembly name is not well formed utf8. Fixes #567882.
434
435 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
436
437         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
438         the generic parameters from the builder. Fixes #473298.
439
440 2010-03-31  Miguel de Icaza  <miguel@novell.com>
441
442         * object.c (mono_class_proxy_vtable): Eliminate warning. 
443
444         * marshal.c (emit_marshal_boolean): Eliminate possible
445         uninitialized local warning. 
446
447 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
448
449         * class.c (mono_class_init): Postpone coreclr inheritance check
450         until the end of the initialization (so we can check up the 
451         default ctor manually for the core-clr inheritance rules).
452         * security-core-clr.c: Add the missing (undocumented) checks on
453         default constructors when verifying inheritance rules.
454
455 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
456
457         * domain-internals.h (MonoJitExceptionInfo): Add new field
458         handler_end to the data union. To be used to point the end
459         of a finally block.
460
461 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
462
463         * reflection.c: Add support for new v4 type
464         System.Reflection.MonoModule that is the concrete version
465         of Module which is abstract unver v4.
466
467 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
468
469         * class.c (mono_class_init): Don't set class failure after
470         inited = 1 is set. It must be done before.
471
472 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
473
474         * mono-config.c: Add support for OS "haiku"
475         * ChangeLog: Fix UTF-8 encoding
476
477         Code is contributed under MIT/X11 license.
478
479 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
480
481         * console-unix.c: fixed include logic for sys/ioctl.h.
482
483 2010-03-30  Mark Probst  <mark.probst@gmail.com>
484
485         * threads.c: Fix bitmap generation for TLS marking on 64 bit
486         systems.
487
488 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
489
490         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
491         unfinished/broken typebuilders.
492
493 2010-03-29  Mark Probst  <mark.probst@gmail.com>
494
495         * sgen-gc.c: Use the same heuristic for the LOS target that we use
496         for the minor section allowance.
497
498 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
499
500         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
501         "NoOptimization".
502
503 2010-03-29  Mark Probst  <mark.probst@gmail.com>
504
505         * sgen-gc.c: Count bytes allocated with heavy statistics.
506
507 2010-03-29  Mark Probst  <mark.probst@gmail.com>
508
509         * sgen-gc.c: More detailed time statistics.
510
511 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
512
513         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
514         fix the user defined mark interface to pass a pointer
515         to the object location and not the object itself.
516
517 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
518
519         * reflection.c (mono_method_body_get_object): Release
520         the method header before the call to CACHE_OBJECT since
521         this is a macro that returns.
522
523 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
524
525         * class.c (inflate_generic_type): mono_metadata_type_dup
526         already dupes array information, the g_memdup was just
527         leaking memory.
528
529 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
530
531         * verify.c: Add stack_peek function. Fix CEE_DUP
532         to not read from invalid memory if push did expand
533         the stack.
534
535 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
536
537         * verify.c: Remove old table verification code that has
538         been superseeded by the new metadata verifier.
539
540         * verify.h: Remove mono_image_verify_tables from the public
541         API.
542
543         * pedump.c: Fix for removed bits.
544
545 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
546
547         * verify.c: Allocate stack slows lazily to reduce stack usage
548         in case of methods with huge stacks. Reduces memory consumption
549         for mcs yyparse from 459Mb to 1.8Mb.
550
551 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
552
553         * threadpool.c: don't try executing items from domains being
554         unloaded. Fixes appdomain-async-invoke test.
555
556 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
557
558         * threadpool.c: spin while the threadpool initializes.
559         * mono-wsq.c: if the WSQ has not been initialized or has been shut
560         down, don't do anything.
561
562 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
563
564         * threads.c (mono_thread_create_internal): Set the GC type of the
565         threads_starting_up hash table.
566
567 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
568
569         * threadpool.c: reset 'state' to avoid returning non-null when the
570         event type is not found.
571
572 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
573
574         * sgen-gc.c: make copy_object () take the address of the
575         slot holding the reference. This allows saving memory stores
576         when not needed and it allows keeping track of oldspace->nursery
577         references for the card table code.
578
579 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
580
581         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
582
583         Code is contributed under MIT/X11 license.
584
585 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
586
587         * object.c, threads.c, threads-types.h, threads.h: make the
588         managed thread local storage references precisely tracked.
589
590 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
591
592         * threadpool.[ch]: reworked the threadpool:
593                 -Threadpool threads use a work-stealing queue. Adding a work
594                 item from a threadpool thread will queue it in the thread
595                 local queue without locking (in most cases).
596                 -epoll events are coalesced before being added to the IO
597                 queue.
598                 -Dynamically change the number of active threads
599                 -Changed the global queue to be more GC friendly
600
601         * class-internals.h: add 2 new performance counters for the number of
602         threads in the threadpool and the IO threadpool.
603
604         * object-internals.h: new field in MonoAsyncResult.
605         * icall-def.h: new internal call for queueing work items.
606
607         * Makefile.am: add 2 new files.
608
609         * appdomain.c: bump up corlib version.
610
611         * mono-wsq.[ch]: an implementation of a work-stealing queue.
612
613         * mono-perfcounters-def.h:
614         * mono-perfcounters.c: added 2 new performance counters.
615
616 2010-03-26  Mark Probst  <mark.probst@gmail.com>
617
618         * sgen-gc.c: More FIXME/TODO updates.
619
620 2010-03-25  Mark Probst  <mark.probst@gmail.com>
621
622         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
623         function mono_gc_invoke_with_gc_lock() which invokes a function
624         with the guarantee that no collection will occur during its execution.
625
626 2010-03-25  Mark Probst  <mark.probst@gmail.com>
627
628         * sgen-gc.c: Update a few comments.
629
630 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
631
632         * reflection.c: Add support for new v4 type
633         System.Reflection.MonoAssembly that is the concrete version
634         of Assembly which is abstract unver v4.
635
636 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
637
638         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
639         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
640
641         Expose a few macros that are needed for SR but not SRE to the
642         world (previous inside the SRE ifdef)
643
644 2010-03-24  Mark Probst  <mark.probst@gmail.com>
645
646         * sgen-gc.c (gc_register_current_thread): We need
647         stack_start_limit as well in the non-attribute pthread case.
648
649 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
650
651         * threads.c: Fix windows build.
652
653 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
654
655         * thread-types.h: Add mono_thread_resume_interruption.
656
657         * threads.c: Add mono_thread_resume_interruption, this
658         function should be called after the last protected handler
659         found at interruption time has finished.
660
661 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
662
663         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
664         Check MonoInternalThread's ::state instead of ::abort_exc
665         since the later can be lazily created.
666
667         This is specially problematic when running a finally block
668         under AbortRequested state. ResetAbort must work, but the
669         abort_exc object has not been created because interruption
670         has not began.
671
672 2010-03-22  Geoff Norton  <gnorton@novell.com>
673
674         * locales.c: Its possible for CFStringGetCStringPtr
675         to return null and not convert encodings.  Use
676         CFStringGetCString instead.
677
678 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
679
680         * class-internals.h, class.c, object.c: introduce compressed
681         interface bitmaps (for now only under small config): this saves
682         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
683         startups.
684
685 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
686
687         * mono-debug.c: don't try to get the method header, it causes a
688         deadlock and it is not used for anything anymore.
689
690 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
691
692         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
693         broken by the last change.
694
695 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
696
697         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
698         SOCK_RDM.
699         
700         Code is contributed under MIT/X11 license.
701
702 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
703
704         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
705         nursery.
706
707         Code is contributed under MIT/X11 license.
708
709 2010-03-19  Martin Baulig  <martin@ximian.com>
710
711         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
712         dummy field, containing an empty string.
713         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
714
715
716 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
717
718         * class.c: setup_interface_offsets() refactor to not call
719         mono_class_get_implemented_interfaces () more times than needed and
720         to reduce the runtime memory requirements to be O(num_interfaces)
721         instead of O(max_interface_id).
722
723 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
724
725         * mono-mlist.[ch]: add mono_mlist_set_next ().
726
727 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
728
729         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
730         associated changes to support holes in the protected range of a
731         try block.
732
733         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
734         retrieves the holes table from a given MonoJitInfo.
735
736 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
737
738         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
739         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
740         hide the contents of the MonoString and MonoArray structs from the
741         public API. Change the accessor macros to accessors functions where
742         needed. Adjusted the array API to allow for pointer-sized lengths and
743         starting positions, so 64 bit arrays can be optionally provided in an
744         API compatible way if needed on 64 bit systems.
745
746 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
747
748         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
749         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
750
751 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
752
753         * class-internals.h: remove the method header from MonoMethod since
754         from now on it will be transient. We have a header pointer for method
755         wrappers, since in that case we need to keep track of it. For this
756         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
757         structs now. The same happens with MonoMethodInflated.
758         * class.c: reset the sre_method flag for inflated method structures:
759         this makes the code that cares look at the header in the MonoMethodInflated
760         structure.
761         * loader.c: lookup the method header in the appropriate field now that
762         it is removed from MonoMethod.
763         * metadata-internals.h: add a flag to the method header to know if it
764         can be freed inside mono_metadata_free_mh ().
765         * method-builder.c: updates after moving the header field from
766         MonoMethod to MonoMethodWrapper.
767         * reflection.c: MonoMethods generated from Reflection.Emit use
768         MonoMethodWrapper structs if they need a method header now (later take
769         advantage of this and remove all the current unsafe uses of method_aux_hash).
770         * metadata.c: make method header parsing not leak when verification
771         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
772         These changes save a few hundred KB of runtime memory in a mcs
773         bootstrap or a monodevelop startup.
774
775 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
776
777         * verify.c: Improve error message.
778
779 2010-03-12  Jb Evain  <jbevain@novell.com>
780
781         * reflection.c (add_exported_type): populate the exported
782         table with the type's nested type.
783
784 2010-03-10  Mark Probst  <mark.probst@gmail.com>
785
786         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
787         can't read parentheses.
788
789 2010-03-10  Mark Probst  <mark.probst@gmail.com>
790
791         * threads.c (thread_cleanup): Add a guard to dereferencing
792         "thread" to avoid an unlikely race condition.
793
794 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
795
796         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
797         instead of an empty string.
798
799 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
800
801         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
802         convert to a boolean, recent gcc versions compile this differently.
803
804 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
805
806        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
807        inlined.
808
809 2010-03-09  Mark Probst  <mark.probst@gmail.com>
810
811         * sgen-gc.c (STRING_SIZE): Off by one.
812
813 2010-03-09  Mark Probst  <mark.probst@gmail.com>
814
815         * sgen-archdep.h: Fix the signal context register access for
816         AMD64.
817
818 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
819
820         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
821
822 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
823
824         * verify.c: Store the initial basic block returned by mono_basic_block_split
825         so we can release the whole list and not just the first one.
826
827 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
828
829         * verify.c, debug-helpers.c, profiler.c, loader.c,
830         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
831         MonoMethodHeader a transient entity.
832
833 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
834
835         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
836         uncontrolled growth of the gray stack.
837
838         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
839         added items are removed first, improving cache locality. Avoid freeing queue
840         segments in the fast path, use the list of segments as the free list, truncate
841         it to its max size at the start of collection.
842
843 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
844
845         * metadata-internals.h: more memory savings, both with small config and without.
846
847
848 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
849
850         * appdomain.c, domain-internals.h, domain.c, object.c:
851         make class_vtable_hash into an array to reduce memory usage.
852
853 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
854
855         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
856         object-internals.h, object.c, reflection.c, threadpool.c:
857         reduce resource usage when the small config is selected.
858         In particular, up to 64K of methods/fields/properties/events
859         are allowed and "other" methods in events are ignored.
860
861 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
862
863         * threads.c: reduce resource usage when compiled for a small config.
864
865 2010-03-05  Mark Probst  <mark.probst@gmail.com>
866
867         * sgen-gc.c: Also collect number of degraded-alloced objects with
868         heavy statistics.
869
870 2010-03-04  Geoff Norton  <gnorton@novell.com>
871
872         * assembly.c: Only support OSX bundling if the bundle is 
873         actually detectable.
874
875 2010-03-04  Geoff Norton  <gnorton@novell.com>
876
877         * loader.c: The marshal specs are freed at the end of the call
878         but it explicitly frees the strings as well as the container,
879         so we need to dup them too to avoid referencing free'd memory.
880
881 2010-03-04  Geoff Norton  <gnorton@novell.com>
882
883         * icall-def.h:
884         * icall.c: Add a new private internal icall to construct
885         an object from its type without running the ctor.
886
887 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
888
889         * profiler.c: allow multiple profiler engines to be loaded
890         at the same time.
891
892 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
893
894         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
895         profiler event to track object moves.
896
897 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
898
899         * object.c, profiler.c, profiler.h, string-icalls.c:
900         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
901
902 2010-03-03  Miguel de Icaza  <miguel@novell.com>
903
904         * decimal.c (mono_double2decimal): Add support for reducing the
905         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
906         expected.
907
908 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
909
910         * icall-def.h:
911         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
912
913 2010-03-03  Marek Habersack  <mhabersack@novell.com>
914
915         * mono-config.c (mono_config_parse_assembly_bindings): added -
916         parses assembly binding redirections from appdomain's config
917         file.
918
919         * metadata-internals.h: added definition of a new function -
920         mono_config_parse_assembly_bindings - to support parsing assembly
921         binding redirections defined in appdomain's config file.
922
923         * domain-internals.h: added two new fields to _MonoDomain - a list
924         of assembly bindings and a flag to parse the config file only
925         once.
926
927         * assembly.c (assembly_binding_maps_name): empty culture name and
928         NULL culture name are considered equal.
929         (mono_assembly_apply_binding): added support for domain specific
930         assembly binding redirections, read from the appdomain's
931         configuration file. Fixes bug #580185
932
933 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
934
935         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
936         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
937         support.
938
939 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
940
941         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
942         from this function. The new function receive the parent token instead of a type.
943
944         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
945         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
946         typebuilders. This make it possible to properly encode generic type builders since
947         their unmanaged type don't have generics data while unfinished.
948
949         Fixes #583655.
950
951 2010-03-02  Mark Probst  <mark.probst@gmail.com>
952
953         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
954         writing binary log files (can be enabled by #define'ing
955         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
956         bugs in longer running programs.
957
958 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
959
960         * metadata.c: added some API documentation.
961
962 2010-03-01  Robert Jordan  <robertj@gmx.net>
963
964         * filewatcher.h: Include glib.h to fix the MSVC build.
965
966 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
967
968         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
969         a GC handle instead. This is a bit slower to access, but avoids burdening the
970         GC with 100s of individual roots.
971
972         * reflection.c (mono_class_get_ref_info):
973         (mono_class_set_ref_info):
974         (mono_class_free_ref_info): New internal helper fuctions.
975
976         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
977         of accessing klass->reflection_info directly.
978
979         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
980         words.
981
982         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
983         the previous array.
984
985 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
986
987         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
988         needs an indirection.
989
990 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
991
992         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
993         so all generic sharing code is in one place.
994
995         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
996         we don't call setup_interface_offsets () for unfinished types.
997
998 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
999
1000         * class.c (mono_class_generic_sharing_enabled): Move this to
1001         generic-sharing.c.
1002
1003         * image.c: Add an unload hook which is called before an image is unloaded.
1004
1005         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
1006         metadata.c having to depend on generic sharing.
1007
1008 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1009
1010         * class.c: reduce size of ridiculously large cache.
1011
1012 2010-02-26  Martin Baulig  <martin@ximian.com>
1013
1014         * mono-debug.h
1015         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
1016
1017         * threads.c (mono_thread_internal_reset_abort): New method; resets
1018         the abort, but doesn't throw any exception if no abort was requested.
1019
1020 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1021
1022         * class.c (get_implicit_generic_array_interfaces): Call
1023         mono_class_setup_interface_offsets () before accessing
1024         eclass->interface_offsets_count. This only shows up on platforms without IMT for
1025         some reason.
1026
1027 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1028
1029         * environment.c, environment.h, icall.c: make the GetOSVersionString()
1030         icall internal.
1031
1032 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
1033
1034         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
1035         direct access to the MonoType fields.
1036
1037 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1038
1039         * threads.h: Move some internal functions which were added to this header by
1040         mistake to threads-types.h.
1041
1042         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
1043
1044 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
1045
1046         * class-internals.h, class.h, object.h: make MonoRemoteClass
1047         and mono_remote_class() internal.
1048
1049 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1050
1051         * metadata-internals.h, class-internals.h, metadata.h: make the
1052         MonoType guts internal as well.
1053
1054 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
1055
1056         * reflection.h: the MonoTypeNameParse guts are internal now.
1057         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
1058         are internal now, provide accessors as needed.
1059         * metadata.h, metadata-internals.h: the MonoMethodSignature
1060         guts are internal now.
1061         * Makefile.am: mempool.h is an internal header now.
1062         * *.h, *.c: remove glib.h usage from the public headers.
1063
1064 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
1065
1066         * culture-info-table.h : regenerated.
1067
1068 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1069
1070         * metadata.c: Add mono_method_get_header_summary which returns minimal
1071         information about the header of a method. This is the information used
1072         by the inline oracle to reject methods.
1073
1074         This method doesn't decode local variables and doesn't cache it's result,
1075         so it should cause a minimal reduction in memory usage.
1076
1077         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1078         mono_method_get_header_summary.
1079
1080 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
1081
1082         * threads.c (mono_thread_exit): Make sure that the main thread is
1083         non-null before dereferencing it.
1084
1085 2010-02-21  Geoff Norton  <gnorton@novell.com>
1086
1087         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1088         locale.
1089         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
1090         before falling back to the posix lookup.
1091
1092 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
1093
1094         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1095         the DONT_MANAGE flag set.
1096
1097 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1098
1099         * domain.c: Remove old v1 version strings. Let the runtime
1100         default to 2.0 instead of failing because it can't find a
1101         working 1.0 instalation.
1102
1103 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1104
1105         * domain.c: Add v4 RC version string.
1106
1107 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1108
1109         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1110         of overflow checking function.
1111
1112 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1113
1114         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1115         generic methods.
1116
1117         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1118         cases for ParameterInfo.
1119
1120         Fixes #579493.
1121
1122 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1123
1124         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1125         have has_cctor set. Fixes #575946.
1126
1127 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1128
1129         * appdomain.c: display a warning if the parsing the config file
1130         produces any error.
1131         Skip the BOM in UTF-8 files.
1132         Copy the AppDomainSetup before setting the privateBinPath so that the
1133         correct configuration file is read.
1134
1135 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1136
1137         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1138         vtable trampoline per vtable slot index. Not used yet.
1139
1140 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1141
1142         * icall-def.h:
1143         * icall.c: add internal call that returns the system page size.
1144
1145 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1146
1147         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1148         'int' for system classes.
1149
1150 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1151
1152         * icall.c, icall-def.h: new icall to check for sufficient
1153         stack space.
1154
1155 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1156
1157         * reflection.c (ensure_complete_type): Check that reflection_info
1158         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1159
1160 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1161
1162         * attrdefs.h:
1163         * tabledefs.h: Add NoOptimization flag.
1164
1165 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1166
1167         * sgen-gc.c: Don't consider it a missing remset if the target
1168         object is pinned - we might have done the store but not added the
1169         remset yet.
1170
1171 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1172
1173         * sgen-gc.c: When checking for missing remsets, don't assert on
1174         the first one, but print them all and then assert.
1175
1176 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1177
1178         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1179
1180 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1181
1182         * console-unix.c: On OSX Control-Y is assigned to
1183         VDSUSP (non-Posix), the
1184         suspend-program-next-time-it-tries-to-read-input command (this is
1185         different than C-z, which suspends immediately).
1186
1187         Do the same thing that bash does and ignore this setting,
1188         making our repl/getline support pasting.
1189
1190 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1191
1192         * sgen-gc.c: Simple plausibility check for scan_starts.
1193
1194 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1195
1196         * sgen-gc.c: Round up when calculating the number of scan starts.
1197
1198 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1199
1200         * reflection.c: Export mono_get_object_from_blob.
1201
1202         * object-internals.h: Ditto.
1203
1204         * icall.c: New icall property_info_get_default_value to get the default
1205         value of a property. Since using this is not common, no caching is done.
1206
1207         * icall-def.h: Add new icall.
1208
1209 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1210
1211         * class.c: Add mono_class_get_property_default_value.
1212
1213         * class-internal.h: Export mono_class_get_property_default_value.
1214
1215 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1216
1217         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1218
1219 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1220
1221         * sgen-gc.c: introduced critical regions to allow some lockless
1222         operations and increase scalability.
1223
1224 2010-02-10  Geoff Norton  <gnorton@novell.com>
1225
1226         * reflection.c: Support building with DISABLE_REFLECTION
1227
1228 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1229
1230         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1231         Closes bug #566057.
1232
1233         * exception.c: fix typo in comment.
1234
1235 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1236
1237         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1238         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1239
1240         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1241
1242         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1243         the internal API.
1244
1245         Fixes #574434.
1246
1247 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1248
1249         * threads.c: Removed two assertions that were too strict.  Added a
1250         clarifying comment.  Fixes #577090.
1251
1252 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1253
1254         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1255         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1256
1257         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1258
1259         * verify.c (mono_type_get_stack_name): Fix a warning.
1260
1261 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1262
1263         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1264         mono_marshal_wrapper_info_from_wrapper.
1265
1266         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1267         mono_marshal_method_set_wrapper_data, and export.
1268
1269         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1270         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1271         by calling mono_marshal_get_wrapper_info ().
1272
1273         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1274         small objects which does no size checks.
1275
1276 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1277
1278         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1279
1280 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1281
1282         * verify.c (mono_method_verify): Use the new basic block formation pass
1283         to avoid verifying dead basic blocks. This is the same behavior as the
1284         runtime MS verifier.
1285
1286 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1287
1288         * mono-basic-block.c:
1289         * mono-basic-block.h: New implementation of a basic block formation pass.
1290         The formation pass does static liveness analysis as well to detect dead
1291         basic blocks.
1292
1293 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1294
1295         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1296         'this' argument in icalls.
1297
1298 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1299
1300         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1301
1302 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1303
1304         * object.c, domain.c: When using SGen, we must register
1305         vtable->type as a root if it's not a MonoType, because then it
1306         wasn't pin-alloced.
1307
1308 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1309
1310         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1311         at the start of nursery collections, because we might have had
1312         degraded allocations which changed next_data.
1313
1314 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1315
1316         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1317         custom attr so this function works in cross-compiling mode.
1318
1319 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1320
1321         * class.c (make_generic_param_class): Initialize interface offsets since we
1322         set klass->inited. Fixes #574819.
1323
1324 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1325
1326         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1327         calling the JIT domain cleanup hook.
1328
1329 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1330
1331         * pedump.c (main): Properly set the verifier mode when running the metadata
1332         verifier.
1333
1334 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1335
1336         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1337         overlapping fields now that we're called before has_references is set.
1338
1339         * pedump.c (dump_verify_info): Clear any loader error before verifying another
1340         method. Otherwise all sort of weird stuff happens.
1341
1342 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1343
1344         * object.c (mono_field_get_value_object): Handle nullable types correctly.
1345         Fixes #572874.
1346
1347 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
1348
1349         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
1350         Fixes #573322.
1351
1352 2010-01-23  Mark Probst  <mark.probst@gmail.com>
1353
1354         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
1355         pin_staging_area_index is greater than 0.
1356
1357 2010-01-22 Miguel de Icaza (miguel@novell.com)
1358
1359         * loader.c: Since we do nothing with the error returned, pass NULL
1360         to ignore the error.
1361
1362 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1363
1364         * reflection.c (typebuilder_setup_fields): Pretend field setup already
1365         happened before starting to encode the actual fields. This avoid ciclic
1366         dependencies and eventual crashes.
1367
1368         Fixes #572660.
1369
1370 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1371
1372         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
1373         atomic and remove the half-constructed hack in SGen.
1374
1375 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1376
1377         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
1378         has a recursive reference to itself.
1379
1380         Fixes #571863.
1381
1382 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1383
1384         * loader.c (mono_method_signature): Fix error message.
1385
1386 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1387
1388         * sgen-gc.c: Reuse to-space sections between nursery collections.
1389
1390 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1391
1392         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
1393         from the current assembly or mscorlib. Fixes bug #322957.
1394
1395 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1396
1397         * marshal.c: Calculate the target class of the delegete invoke wrappers using
1398         get_wrapper_target_class.
1399
1400 2010-01-19  Mark Probst  <mark.probst@gmail.com>
1401
1402         * sgen-gc.c: Fix warnings.
1403
1404 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1405
1406         * verify.c (store_local): Better error message.
1407
1408 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1409
1410         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
1411         arguments.
1412
1413 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1414
1415         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
1416         function is generics variance aware.
1417
1418 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
1419
1420         * security-core-clr.c (mono_security_core_clr_can_access_internals):
1421         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
1422
1423 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
1424
1425         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
1426           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
1427
1428         Code is contributed under MIT/X11 license.
1429
1430 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1431
1432         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
1433         on a GTD.
1434
1435 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1436
1437         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
1438         return a point to a wrapper specific info structure describing the wrapper.
1439         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
1440  
1441 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1442  
1443         * sgen-gc.c: Make minor collection section allowance adaptive,
1444         depending on the amount of memory reclaimed in the last major
1445         collection.  If more memory was reclaimed (i.e. more garbage
1446         produced), do the next collection earlier.
1447
1448 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1449
1450         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
1451         to itself.
1452
1453         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
1454         the token as parameter.
1455
1456         * verify-internals.h: Ditto.
1457
1458         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
1459
1460         Fixes #571460.
1461
1462 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1463
1464         * sgen-gc.c: Make store_remset_buffer_index long.
1465
1466 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1467
1468         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
1469
1470         Fixes #569579.
1471
1472 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1473
1474         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
1475         off precise marking if it is available.
1476         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
1477
1478 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
1479
1480         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
1481
1482         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
1483         pinned objects.
1484
1485         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
1486         to the array allocator.
1487
1488 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1489
1490         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
1491         result of mono_compile_method (), it already includes an ftnptr.
1492
1493 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1494
1495         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
1496
1497 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1498
1499         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
1500         hash value which doesn't depend on glib/eglib versions.
1501         (mono_metadata_type_hash): Use it.
1502
1503         * object.c (mono_method_get_imt_slot): Ditto.
1504
1505 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
1506
1507         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
1508         independently of the GTD.
1509
1510         * class.c (mono_class_setup_fields): Fail if field has negative offset.
1511
1512         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
1513         to the upper limit since instance_size includes this amount.
1514
1515         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
1516
1517         Fixes #569544.
1518
1519 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
1520
1521         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
1522         with static methods.
1523
1524         * object.c (build_imt_slots): Avoid asserting when static methods are
1525         encountered in an interface.
1526
1527 2010-01-13  Mark Probst  <mark.probst@gmail.com>
1528
1529         * sgen-gc.c (to_space_expand): Fix assertion.
1530
1531 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
1532
1533         * string-icalls.c: missing declaration fixes.
1534         * sgen-gc.c: portability fixes.
1535
1536 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1537
1538         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
1539
1540         * class.c:
1541         * cominterop.c:
1542         * icall.c:
1543         * object.c: 
1544         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
1545
1546 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1547
1548         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
1549         it can fail loading the type.
1550
1551         * class.c: Add mono_class_inflate_generic_class_checked.
1552
1553         * class.c:
1554         * verify.c:
1555         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
1556
1557 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
1558
1559         * loader.c (mono_method_signature_checked): New internal function taking an
1560         MonoError argument.
1561
1562         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
1563         Fixes build on rh 7.3.
1564
1565 2010-01-10  Aaron Bockover  <abockover@novell.com>
1566
1567         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
1568         at runtime in the same way as on Windows, which yields a relocatable
1569         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
1570         of the running mono process.
1571
1572         On TARGET_ARM, fallback () will always be executed.
1573
1574 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1575
1576         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
1577
1578 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1579
1580         * class.c (mono_class_is_assignable_from_slow): Support variant
1581         generic delegates.
1582
1583         * class.c (mono_class_implement_interface_slow): Support types with
1584         variant generic arguments.
1585
1586 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1587
1588         * verify.c: Remove some code duplication.
1589
1590 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1591
1592         * object.c: Update docs.
1593
1594 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1595
1596         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
1597
1598         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
1599         fallback trampoline as well.
1600
1601         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
1602         out argument that is set to TRUE if the match was direct. 
1603
1604         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
1605
1606         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
1607
1608 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1609
1610         * class.c: Add mono_class_interface_offset_with_variance function that does same
1611         as mono_class_interface_offset but takes variance into account.
1612
1613         * class-internal.h: Export mono_class_interface_offset_with_variance.
1614
1615         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
1616
1617 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1618
1619         * object.c:
1620         * icall.c:
1621         * class.c: Add some FIXME for due to variant generic arguments.
1622
1623         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
1624         can't use the simple bitfield check, so call mono_class_is_assignable_from if
1625         the bitfield check fails.
1626
1627 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1628
1629         * class.c (mono_class_is_assignable_from): Rework the generics variance code
1630         to be easier to read and fix bugs in the case a non generic type implements a variant
1631         interface.
1632
1633         * class.c (mono_class_has_variant_generic_params): Make non static.
1634
1635         * class-internals.h: Export mono_class_has_variant_generic_params as part of
1636         the private API.
1637
1638 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1639
1640         * assembly.c: fix MONO_PATH debug output.
1641
1642 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
1643
1644         * culture-info-table.h : regenerated.
1645
1646 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1647
1648         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
1649         types that are meant to not have a parent.
1650
1651 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1652
1653         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
1654         from the image mempool, so it is not leaked.
1655
1656 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1657
1658         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
1659
1660 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
1661
1662         * verify.c (verify_valuetype_layout_with_target): Fix case
1663         that can lead to infinite recursion. Fix bug #567861
1664
1665 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1666
1667         * pedump.c: Run code verifier even if image verification fails
1668         due to a failed type we. This allows more errors to be shown.
1669
1670 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1671
1672         * class.c (count_virtual_methods): Remove the assert and now
1673         fail properly.
1674         
1675         * class.c (setup_interface_offsets): This can fail now.
1676
1677         * class.c (mono_class_setup_vtable_general): Check for parent vtable
1678         errors. Check setup_interface_offsets errors.
1679
1680         * class.c (setup_interface_offsets): Simplify the return error logic
1681         and remove class_init_ok.
1682
1683         Fixes #560327.
1684
1685 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1686
1687         * class.c (mono_class_init): Do class verification at the beginning. Add
1688         some asserts to avoid tripping into invalid memory.
1689
1690         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
1691         g_error and a decent message.
1692
1693         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
1694
1695         Fixes #567548.
1696
1697 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1698
1699         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
1700         as inline functions instead of defining them in mempool.c.
1701
1702         * metadata-internals.h (MonoImageSet): New structure representing a set of
1703         MonoImages, which own a collection of generic instances.
1704
1705         * metadata.c: Get rid of the global generic caches, instead assign each generic
1706         instance to the image set which consists of all the images referenced by the
1707         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
1708         the memory used by generic instances to be allocated from a per image-set mempool
1709         later.
1710
1711 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1712
1713         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
1714
1715 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1716
1717         * appdomain.c (zero_static_data): Fix a warning.
1718
1719         * locales.c (construct_culture_from_specific_name): Applied patch from
1720         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
1721         not found. Fixes #567900.
1722
1723 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
1724
1725         * loader.c (mono_method_get_signature_full): Remove two asserts.
1726         Return NULL instead so that the verifier can handle both cases 
1727         gracefully.
1728
1729 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1730
1731         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
1732         so we can properly fail types instead of crashing.
1733
1734         Fixes #567676.
1735
1736 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1737
1738         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
1739         generic method.
1740
1741 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1742
1743         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
1744
1745 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1746
1747         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
1748         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
1749         we can't remove it from it since we don't hold the lock.
1750         (mon_new): Free the orphaned events here when a mon structure is added to the
1751         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
1752         this down.
1753
1754 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1755
1756         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
1757         as max stack might be zero.
1758
1759         Fixes #562320.
1760
1761 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1762
1763         Rework all uses of mono_class_setup_methods to accept that it can fail now.
1764
1765         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
1766         instances if the GTD did.
1767
1768         * class.c (mono_class_setup_properties): Ditto.
1769
1770         * class.c (mono_class_setup_events): Ditto.
1771
1772         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
1773
1774         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
1775         error setting.
1776
1777         * class.c (mono_class_init): Fail if GTD did.
1778
1779         * cominterop.c:
1780         * generic-sharing.c:
1781         * icall.c:
1782         * loader.c:
1783         * object.c:
1784         * verify.c: Properly handle failure of mono_class_setup_methods.
1785
1786 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1787
1788         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
1789         mono_class_inflate_generic_method_full internal.
1790
1791         * class.c (inflate_generic_context): Now takes a MonoError argument.
1792
1793         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
1794         errors.
1795
1796 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1797
1798         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
1799         they cannot be patched. Partly fixes #564408.
1800
1801 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1802
1803         * metadata-internals.h, reflection.c: Use the
1804         MonoDynamicImage.handleref hash table only with unmanaged keys,
1805         and add a managed hash table handleref_managed for managed keys.
1806
1807 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1808
1809         * sgen-gc.c: Unset to-space bumper between collections.  It might
1810         become invalid due to degraded allocations.
1811
1812 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
1813
1814         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
1815         with the one from the original method.
1816
1817         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
1818         compatibility.
1819
1820         * verify-internals.h: Add new function to the internal API.
1821
1822 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
1823
1824         * culture-info-tables.h: regenerated it to include the Georgian culture.
1825
1826 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1827
1828         * sgen-gc.c: Include mono/utils/memcheck.h.
1829
1830         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
1831         instead of the current domain, since the two might not match if this is called
1832         from the debugger.
1833
1834         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
1835         domain which created this assembly.
1836
1837 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1838
1839         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
1840
1841 2009-12-17  Mark Probst  <mark.probst@gmail.com>
1842
1843         * sgen-gc.c: Managed implementation of the specialized generic
1844         store write barrier.
1845
1846 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
1847
1848         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
1849         A private virtual newslot method is used to implement an interface method without exposing
1850         it to users. When querying for public instance methods, such method would hide a public one
1851         on a parent type.
1852
1853         Fixes #564379.
1854
1855 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
1856
1857         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
1858         conventions.
1859
1860 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1861
1862         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
1863
1864 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1865
1866         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
1867         as they are no longer used.
1868         
1869          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
1870
1871         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
1872
1873 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1874
1875         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
1876         if the owner class has not been finished before returning reflection_info.      
1877
1878         Fixes #565127.
1879
1880 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
1881
1882         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
1883         param doesn't have custom attributes. Fixes #565117.
1884
1885         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
1886         #565120.
1887
1888 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
1889
1890         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
1891
1892 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
1893
1894         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
1895         same amount done by a core-clr enabled runtime.
1896
1897 2009-12-15  Marek Habersack  <mhabersack@novell.com>
1898
1899         * appdomain.c (mono_make_shadow_copy): make sure access mode of
1900         the target files is reset to writable by owner and readable by
1901         everyone else to prevent problems when updating shadow copies of
1902         files whose source is read-only. Fixes bug #556884
1903
1904 2009-12-15  Mark Probst  <mark.probst@gmail.com>
1905
1906         * class.c (mono_generic_class_get_class): Allocate the generic
1907         class via malloc again, so that it can be freed when any one of
1908         the images of its constituent types is closed.
1909
1910         * metadata.c: When closing an image, don't free generic insts and
1911         generic classes right away, but put them into a list for later
1912         freeing.
1913
1914         * image.c, metadata-internals.h: Store the free list and in the
1915         second pass of closing an image, free it.
1916
1917 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1918
1919         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
1920
1921         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
1922         types in type_hash.
1923
1924         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
1925
1926 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1927
1928         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
1929         user type.
1930
1931         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
1932         is used.
1933
1934 2009-12-14  Miguel de Icaza  <miguel@novell.com>
1935
1936         * verify.c (mono_method_verify): The Unused opcodes produce an
1937         InvalidProgramException on .NET
1938
1939 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
1940
1941         * loader.c (mono_method_get_header): Move assert after the verifier
1942         has been called on the method header.
1943
1944 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1945
1946         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
1947
1948         * appdomain.c: Bump corlib version.
1949
1950 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1951
1952         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
1953         types as well since otherwise generic instances would not return UT as arguments but
1954         their undelying system type.
1955
1956         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
1957         to reflect the fact that they can have now multiple different types.
1958
1959         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
1960
1961         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
1962
1963         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
1964
1965         * reflection.c (mono_reflection_register_with_runtime): Init super types
1966         if the image is not dynamic.
1967
1968         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
1969         check if the generic type definition is a TypeBuilder.
1970
1971         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
1972         doesn't belong to a dynamic image, skip initialization.
1973
1974         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
1975         base definition is not a dynamic type.
1976
1977 2009-12-11  Marek Habersack  <mhabersack@novell.com>
1978
1979         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
1980         mono_profiler_string_allocation
1981
1982         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
1983         if string profiling is enabled, call
1984         mono_profiler_string_allocation
1985
1986         * profiler.h: added two MonoProfileFlags -
1987         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
1988         installation functions for the hooks below.
1989
1990         * profiler-private.h, profiler.c: added two hooks:
1991         mono_profiler_string_allocation called whenever a string is
1992         allocated by InternalAllocateStr and mono_profiler_iomap called
1993         whenever IOMAP code performs an adjustement on a file path.
1994
1995 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
1996
1997         * boehm-gc.c: fixed race condition while getting the target of a
1998         disappearing link (bug #522233).
1999
2000 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2001
2002         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
2003         the error.
2004
2005 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2006
2007         * reflection.c: Add mono_reflection_register_with_runtime icall to
2008         allow a MonoGenericClass to register itself as the managed mirror of
2009         a given generic instance.
2010         This is a temporary workaround until all MGC instantiation happens in
2011         managed code.
2012
2013         * object-internals.h: Ditto.
2014
2015         * icall-def.h: Ditto.
2016
2017 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2018
2019         * sgen-gc.c (find_in_remsets): Also search the generic store
2020         remsets.
2021
2022 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2023
2024         * sgen-gc.c: Don't access class names in debugging code when
2025         unloading a domain, because they might not be valid anymore.
2026
2027 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2028
2029         * domain.c, domain-internals.h: New function mono_domain_unset().
2030
2031         * appdomain.c (unload_thread_main): Detach the thread again at the
2032         end.
2033
2034         * threads.c: When a thread exists or is detached, unset its domain
2035         so that it's NULL when, for example, a pthread destructor runs.
2036
2037         * sgen-gc.c: Assert that there is no domain set after a thread is
2038         done.
2039
2040 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2041
2042         * class.c (mono_generic_class_get_class),
2043         metadata.c (free_generic_class): Allocate generic MonoClass's from
2044         the image mempool, not via malloc.  The problem with malloc is
2045         that when unloading a domain those classes are freed before
2046         clearing the heap and SGen needs the classes.  Rewriting the
2047         unloading code to do the free later would be more work and there's
2048         no point in using malloc anyway.
2049
2050 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
2051
2052         * loader.c (mono_method_signature): Always call mono_loader_unlock 
2053         before returning.
2054
2055 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2056
2057         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
2058         user string blobs.
2059
2060         * verify-internals.h: Add new function to the internal API.
2061
2062         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
2063         check if it's a valid string.
2064
2065         * object.c (mono_ldstr): Ditto.
2066
2067         Fixes #561943.
2068
2069 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2070
2071         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
2072         from a method before returning it. This is the expected behavior.
2073
2074 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
2075
2076         * reflection.c (inflate_method): Handle the case of a regular system type.
2077
2078 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2079
2080         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2081         gathering code.
2082
2083         * mempool.c, mempool-internals.h: New function
2084         mono_mempool_get_bytes_allocated().
2085
2086         * Makefile.am: sgen-pinning-stats.c added.
2087
2088 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2089
2090         * sgen-gc.c (create_allocator): Only use the fast path if the
2091         object size is within the small object size limit.
2092
2093 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2094
2095         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2096         possibly adding padding to sizeof (GCMemSection).
2097
2098 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2099
2100         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2101         reference is not in the nursery.
2102
2103 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
2104
2105         * class.c (mono_class_from_typeref): Bounds check idx against the 
2106         assemblyref table.
2107
2108 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2109
2110         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2111         through the potential roots, then sort the results and find the
2112         pinned objects from there.
2113
2114         * Makefile.am: sgen-pinning.c added.
2115
2116 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2117
2118         * sgen-gc.c: Record generic stores in specialized remset buffers.
2119
2120 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2121
2122         * sgen-gc.c: Make pinned chunks the same size as major heap
2123         sections, and align them as well, so that we can check whether an
2124         object is in a pinned chunk or a major section in constant time.
2125
2126 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2127
2128         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2129
2130 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2131
2132         * sgen-gc.c: Make all major heap sections the same size (currently
2133         128k) and allocate them on aligned addresses.  Small heap sections
2134         give us better granularity with pinned objects - we can free up
2135         much more memory.
2136
2137 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2138
2139         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2140         output removed.
2141
2142 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2143
2144         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2145
2146         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2147         names in addition to the runtime generated one.
2148
2149         * mono/metadata/image.h: Add a function to take the real name of the assembly
2150         image.
2151
2152         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2153         use it instead of the runtime generated one.
2154
2155         Code is contributed under MIT/X11 license.
2156
2157 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2158
2159         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2160         before the other checks to prevent problems if the DateTime class is blittable.
2161         Hopefully fixes #559600.
2162
2163 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2164
2165         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2166         returns the largest string length that will not be put into the
2167         LOS.
2168
2169         * sgen-gc.c, gc-internal.h: New function that returns the largest
2170         object size that will not be put into the LOS.
2171
2172         * appdomain.c: Bump corlib version.
2173
2174 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2175
2176         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2177
2178         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2179
2180 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2181
2182         * reflection.c (inflate_method): Fix signature.
2183
2184         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2185         in managed code.
2186
2187 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2188
2189         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2190
2191 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2192
2193         * sgen-gc.c: Abstract to-space handling.
2194
2195 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2196
2197         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2198
2199         Fixes #559906.
2200
2201 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2202
2203         * sgen-gc.c: Only add references from outside the nursery to
2204         within the nursery to the global remset list.
2205
2206 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2207
2208         * appdomain.c (create_exceptions): Set the domain temporarily if
2209         necessary to avoid cross-domain references.
2210
2211 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2212
2213         * verify.c (get_stack_type): Return that the type is invalid instead of
2214         asserting.
2215
2216         * verify.c (mono_method_verify): Verify that all locals and arguments
2217         have valid stack types.
2218
2219         Fixes #559913.
2220
2221 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2222
2223         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2224         bounds checking overflow aware.
2225
2226         Fixes #559910.
2227
2228 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2229
2230         * verify.c (do_invoke_method): Check for invalid method signatures.
2231
2232         Fixes #553450.
2233
2234 2009-12-02  Jb Evain  <jbevain@novell.com>
2235
2236         * appdomain.c (MONO_CORLIB_VERSION): bump.
2237         * icall-def.h (get_base_definition): renamed to get_base_method
2238         and add a boolean argument indicating we want the original
2239         method definition, or the immediate base method.
2240         * icall.c: apply the get_base_definition to get_base_method change.
2241
2242 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2243
2244         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2245
2246         Fixes #558042.
2247
2248 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2249
2250         * class.c: remove asserts for invalid type token in
2251         mono_class_name_from_token(), mono_assembly_name_from_token() and
2252         mono_class_create_from_typedef () (fixes bug #553318).
2253
2254 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2255
2256         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2257         incorrect assemblies (bug #553322).
2258
2259 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2260
2261         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2262
2263         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2264
2265         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2266
2267         * class.c (inflate_generic_context): Ditto.
2268
2269         * loader.c (method_from_methodspec): Ditto.
2270
2271         Fixes #558230.
2272
2273 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2274
2275         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2276
2277         * class.c (mono_class_create_from_typespec): Ditto.
2278
2279         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2280
2281         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2282
2283         Fixes #558184.
2284
2285 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2286
2287         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2288
2289         * verify.c (verify_delegate_compatibility): Ditto.
2290
2291         * verify.c (do_newobj): Ditto.
2292
2293         Fixes #558046.
2294
2295 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2296
2297         * sgen-gc.c: Use a gray queue instead of requiring that gray
2298         objects are in a contiguous region.
2299
2300         * sgen-gray.c: The gray queue implementation.
2301
2302         * Makefile.am: sgen-gray.c added.
2303
2304 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2305
2306         * appdomain.c: When unloading a domain, zero its static data and
2307         perform a minor collection when using SGen.  That will get rid of
2308         all the remsets pointing into that domain's static data.
2309
2310         * sgen-gc.c: Allow remsets into static data.  By doing this we
2311         need less checks so we're more efficient.
2312
2313 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2314
2315         * verify.c (mono_method_verify): Check for catch clauses with broken
2316         types.
2317
2318         Fixes #558465.
2319
2320 2009-12-01  Jb Evain  <jbevain@novell.com>
2321
2322         * class.c (make_generic_param_class): set the namespace of
2323         the generic parameter class from its owner, if available.
2324
2325 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2326
2327         * verify.c (code_bounds_check): Do proper overflow checking.
2328
2329         * verify.c (mono_method_verify): The number of switch entries is
2330         an unsigned int. Properly bounds check it.
2331
2332         Fixes #558594.
2333
2334 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2335
2336         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2337         mono_metadata_method_has_param_attrs which only checks if a given param
2338         list has a non zero flags entry.
2339
2340         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2341         to inform how many params should we expect to decode.
2342
2343         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2344         as it's faster than mono_metadata_get_param_attrs.
2345
2346         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2347         add mono_metadata_method_has_param_attrs.
2348
2349 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2350
2351         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
2352         failures.
2353
2354         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
2355         is -1 but its class is broken.
2356
2357         Fixes #558522.
2358
2359 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2360
2361         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
2362         for parameter overflow.
2363
2364         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
2365         of mono_metadata_get_param_attrs.
2366
2367         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
2368         API.
2369
2370         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
2371
2372 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2373
2374         * class.c (mono_class_setup_fields): Check for fields with broken types.
2375
2376         Fixes #558741.
2377
2378 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
2379
2380         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
2381         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
2382         its TypeBuilder::CreateType ().
2383
2384         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
2385         if not needed.
2386
2387         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
2388         to make setup_interface_offsets happy.
2389
2390         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
2391         compilation now works.
2392
2393 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
2394
2395         * appdomain.c (create_exceptions): New helper function extracted from
2396         mono_runtime_init () to precreate objects used during exception handling.
2397         (mono_runtime_init): Call it.
2398         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
2399
2400 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2401
2402         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
2403         compilation until the proper one is found.
2404
2405 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
2406
2407         * class.c (mono_class_setup_vtable_general): Cache the result of
2408         get_virtual_methods () since it can be slow because of the metadata
2409         optimization.
2410
2411         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
2412         from a MonoValueHashTable for now, since the later is based on an earlier
2413         version of hpj's internal probing code and seems to have serious collision
2414         issues.
2415
2416         * loader.c (mono_get_method_full): Update after the change above.
2417
2418 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2419
2420         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
2421
2422 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2423
2424         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
2425         the GTD instead of the DGC instead of crashing.
2426
2427         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
2428         required. Inflate fields if needed.
2429
2430         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
2431         finished. Renamed.
2432
2433 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2434
2435         * class.c (check_interface_method_override): Check for NULL signatures and fail
2436         the type.
2437
2438         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
2439
2440         Fixes #553428.
2441
2442 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2443
2444         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
2445         the MONO_METHOD_FLAGS column instead of decoding the whole row.
2446
2447 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2448
2449         * loader.c (field_from_memberref): Resolve the class first then the field
2450         signature. Remove a lot of duplicated code and make sure we don't pass valid
2451         values to mono_loader_set_error_field_load.
2452
2453         Fixes #553306.
2454
2455 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2456
2457         * class.c (inflate_generic_type): Change code to use new signature of
2458         mono_error_set_bad_image.
2459
2460         Fixes #558124.
2461
2462 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
2463
2464         * verify.c (mono_method_verify): Don't free ctx.params items if 
2465         we aborted while inflating the ctx.locals. Complete previous fix
2466
2467 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
2468
2469         * verify.c (mono_method_verify): Use the uninflated type name, 
2470         when the inflated is null, to report errors. Also take care when
2471         freeing, not to free everything since, in case of an error, some
2472         stuff would be copies (i.e. not allocated by the function itself)
2473         Fix bug #558145
2474
2475 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2476
2477         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
2478         or overflow. The caller must have done this check explicitly. This guard us
2479         from accessing invalid memory.
2480
2481         * verify.c (do_push_static_field): Check for stack overflow.
2482
2483         Fixes #553333.
2484
2485 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2486
2487         * loader.c (find_method_in_class): Don't crash if the signature cannot
2488         be resolved.
2489
2490         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
2491         of asserting for the case of invalid params.
2492
2493         Fixes #553304.
2494
2495 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
2496
2497         * image.c (mono_image_load_module): Fix crash when a bad assembly
2498         has no module at all (fix bug #553412) and also replace the 
2499         g_assert with a return NULL (documented return value for failure)
2500
2501 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
2502
2503         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
2504
2505 2009-11-23  Miguel de Icaza  <miguel@novell.com>
2506
2507         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
2508         file attribute to managed code and avoid doing the mask/attribute
2509         checks here. 
2510
2511 2009-11-22  Miguel de Icaza  <miguel@novell.com>
2512
2513         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
2514         the managed world.
2515
2516         * icall-def.h: New entry points.
2517         
2518 2009-11-19  Mark Probst  <mark.probst@gmail.com>
2519
2520         * process.c: Don't put references to managed objects into a
2521         g_ptr_array.
2522
2523 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
2524
2525         * class.c (can_access_internals): Allow CoreCLR to participate in
2526         allowing (or not) [InternalsVisibleTo] between assemblies.
2527         * security-core-clr.c|h: Make sure that only trusted code (a 
2528         superset of platform code) can access the internals of platform
2529         code.
2530
2531 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
2532
2533         * reflection.c: use the correct base class to get the virtual method
2534         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
2535
2536 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
2537
2538         * security-core-clr.c (get_caller_no_reflection_related): 
2539         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
2540         it's still reflection and must be filtered correctly.
2541
2542 2009-11-16  Mark Probst  <mark.probst@gmail.com>
2543
2544         * object.c (compute_class_bitmap): Fix for large bitmaps.
2545
2546 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
2547
2548         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
2549
2550         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
2551         koush@koushikdutta.com). Disable GC_no_dls on android.
2552
2553 2009-11-12  Mark Probst  <mark.probst@gmail.com>
2554
2555         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
2556         tlab_next points outside the TLAB because the allocator was
2557         interrupted.
2558
2559 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2560
2561         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
2562
2563 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2564
2565         * object-internals.h: Change signature for mono_string_to_utf8_image.
2566
2567         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
2568         argument.
2569
2570         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
2571         exceptions due to mono_string_to_utf8.
2572
2573 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2574
2575         * object-internals.h: Change signature for mono_string_to_utf8_mp.
2576
2577         * object.c (mono_remote_class): Make sure all resources are released before
2578         raising an exception.
2579
2580         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
2581
2582 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2583
2584         * mono-perfcounters.c (network_get_impl): Change variable initialization
2585         ordering to fix potential memory leak in case of exceptions.
2586
2587         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
2588         encoded strings.
2589         
2590 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2591
2592         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
2593         variable initialization ordering to fix potential memory leak in case
2594         of exceptions.
2595
2596 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
2597
2598         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
2599         needed.
2600
2601 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2602
2603         * appdomain.c: Fix shadow path code to better deal with exceptions.
2604
2605 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2606
2607         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
2608         exception in the middle of the runtime code.
2609
2610 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2611
2612         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
2613         leak memory with broken envvar value.
2614
2615 2009-11-06  Mark Probst  <mark.probst@gmail.com>
2616
2617         * reflection.c (mono_reflection_setup_internal_class): Because
2618         nested classes are not added to the name cache, we must put them
2619         in the reflection_info_unregister_classes list.
2620
2621 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
2622
2623         * class.c: When CoreCLR is enabled don't call mono_init_com_types
2624         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
2625         platform (trusted) code. Instead we return a TypeLoadException to
2626         be thrown later. This is the exception thrown by Silverlight 2 if
2627         a type, inside application (user) code is marked with [ComImport]
2628
2629 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2630
2631         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
2632         mono_is_debugger_attached () too.
2633
2634         * mono-debug.c (mono_is_debugger_attached): New helper function.
2635         (mono_set_is_debugger_attached): Ditto.
2636
2637 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2638
2639         * object-internals.h: Add mono_string_to_utf8_checked.
2640
2641         * object.c: Implement mono_string_to_utf8_checked.
2642
2643 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2644
2645         * class.c: Add missing check for load errors after every
2646         call to mono_class_setup_fields
2647
2648         Fixes #552282.
2649
2650 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2651
2652         metadata-verify.c (verify_tables_schema): Fix the error message.
2653
2654 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2655
2656         * metadata.c: Change event table schema to use TDOR for event type
2657         as this is what it's meant to be.
2658
2659         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
2660         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
2661         entry.
2662
2663         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
2664         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
2665         rows in MONO_TABLE_GENERICPARAM.
2666
2667         Fixes #552289.
2668
2669 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2670
2671         * class.c (mono_image_add_to_name_cache): Assert on duplicate
2672         insertion.
2673
2674         * reflection.c (mono_reflection_setup_internal_class): Avoid
2675         registering a gc root the same MonoClass multiple times.
2676         Don't register nested types on the global scope as they should
2677         not be available there.
2678
2679 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2680
2681         * culture-info-tables.h: regenerated.
2682
2683 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2684
2685         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
2686
2687 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
2688
2689         * string-icalls.c|h: Remove string internal calls that are not 
2690         used anymore by the class libraries.
2691         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
2692         which is not used in the class librairies.
2693         * icall-def.h: Update tables.
2694
2695 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2696
2697         * class.h: Move mono_class_inflate_generic_type_checked...
2698
2699         * class-internals.h: to here and make it internal. We don't want to
2700         further expose MonoGenericContext. 
2701
2702 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2703
2704         * verify.c (mono_method_verify): Improve error message.
2705
2706 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2707
2708         * reflection.c (fieldref_encode_signature): If field_image is NULL then
2709         the token is already properly encoded. Fixs 4.0 build.
2710
2711 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2712
2713         * locales.c (construct_number_format): Check if the number index is
2714         valid before trying to use it, if not, just return.
2715         
2716 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
2717
2718         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
2719         since that loses the abort state. Fixes #539394.
2720
2721 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
2722
2723         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
2724         explicit this argument to the call signature.
2725         (mono_marshal_get_icall_wrapper): Ditto.
2726
2727 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2728
2729         * reflection.c (fieldref_encode_signature): Add new field_image parameter
2730         to indicate which assembly to use when resolving a custom-mod.
2731
2732         Fixes handling of volatile fields used across assemblies as reported in #551513.
2733
2734 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2735
2736         * loader.c: Improve error messages.
2737
2738 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2739
2740         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
2741         of interfaces. Fixes IKVM.
2742
2743         * class.c (mono_class_setup_vtable_general): Improve debug spew.
2744
2745 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2746
2747         * verify.c (verifier_inflate_type): Return the inflated type on success.
2748
2749 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
2750
2751         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
2752
2753         * threads.c (mono_thread_attach): Call the profiler thread start callback.
2754
2755         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
2756
2757         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
2758         flag set.
2759
2760         * profiler.c: Add new profiler callbacks for runtime invoke.
2761
2762         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
2763
2764 2009-11-01  Mark Probst  <mark.probst@gmail.com>
2765
2766         * sgen-gc.c: Keep track of the reason for a major collection and
2767         write it to the heap-dump file.
2768
2769 2009-10-31  Miguel de Icaza  <miguel@novell.com>
2770
2771         * threads.c: refactor the code that initializes the
2772         thread_start_args into a reusable function and use this in the two
2773         methods that start up threads.
2774
2775 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
2776
2777         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
2778         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
2779
2780 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
2781
2782         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
2783         Until now, we only had the per-cpu(core) counters.
2784
2785 2009-10-28  Mark Probst  <mark.probst@gmail.com>
2786
2787         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
2788         mono_gc_get_suspend_signal(), which returns the suspend signal
2789         number used by the GC.
2790
2791 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
2792
2793         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
2794
2795         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
2796         signalling start_notify.
2797
2798 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2799
2800         * appdomain.c: do not test the st_mode field for shadow-copies.
2801         Fixes bug #545276.
2802
2803 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2804
2805         * threadpool.[ch]: added hooks for thread start/finish and item
2806         processing begin/end. For monotouch use only.
2807
2808 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
2809
2810         * threads.c (mono_thread_get_name): New helper function.
2811
2812         * reflection.c (resolve_object): Set handle_class for strings too.
2813         (mono_reflection_create_custom_attr_data_args): New helper function to decode
2814         a cattr blob into a set of arrays and structures without creating the custom
2815         attributes themselves.
2816         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
2817
2818         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
2819
2820         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
2821         function.
2822
2823 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2824
2825         * verify.c: Replace calls to mono_class_inflate_generic_type with
2826         mono_class_inflate_generic_type_checked. Fixes #480005.
2827
2828 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2829
2830         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
2831         object since not all paths lead to callees initing it.
2832
2833 2009-10-23  Alp Toker  <alp@nuanti.com>
2834
2835         Fix embedding API breakage from r144688. mono-compiler.h is an internal
2836         header and should not be shipped:
2837
2838         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
2839         which is specific to the mono build. Not going to work.
2840
2841 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
2842
2843         * security-manager.c: Report if core-clr is active from
2844         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
2845         to allow Moonlight BCL to behave appropriately (both in browser
2846         and outside, e.g. smcs)
2847
2848 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
2849
2850         * mono-config.c: ignore UTF-8 BOM and report parser errors.
2851         Fixes bug #549108.
2852
2853 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2854
2855         * class.c: fix typo.
2856
2857 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
2858
2859         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
2860         a MonoError parameter.
2861
2862         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
2863         version that can does proper error handling.
2864
2865         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
2866
2867         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
2868
2869         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
2870
2871 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
2872
2873         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
2874         NO_UNALIGNED_ACCESS is defined.
2875
2876 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
2877
2878         * marshal.c (mono_string_builder_to_utf16): Applied patch from
2879         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
2880         Fixes #549173.
2881
2882 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2883
2884         * sgen-gc.c: Shorten sections whenever possible.
2885
2886 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2887
2888         * sgen-gc.c: Use our portable semaphore #defines.
2889
2890 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2891
2892         * sgen-gc.c: A debug option for dumping the heap layout to a file
2893         after each collection.
2894
2895 2009-10-21  Mark Probst  <mark.probst@gmail.com>
2896
2897         * sgen-gc.c: Make managed write barriers atomic via
2898         thread-restarts.
2899
2900 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
2901
2902         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
2903         methods. Fixes #543021.
2904
2905 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2906
2907         * socket-io.[ch]: fix VS build.
2908
2909 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2910
2911         * icall-def.h:
2912         * socket-io.[ch]: implemented SendFile.
2913
2914 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
2915
2916         * class.c (mono_class_create_from_typedef): Initialize class->element_class
2917         before the interfaces to avoid crashes later if class initialization fails.
2918         Fixes #548417.
2919
2920         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
2921         Fixes #548276.
2922
2923 2009-10-20  Marek Safar  <marek.safar@gmail.com>
2924
2925         * domain.c: Bump 4.0 version.
2926
2927 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
2928
2929         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
2930         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
2931         check since 'pubkey' can't be NULL at this stage
2932         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
2933         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
2934         initialization of 'iter'
2935
2936 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
2937
2938         * cominterop.c : Search the interface parts of vtable to find 
2939           method matches.  Fixes 547030.
2940
2941         Code is contributed under MIT/X11 license.
2942
2943 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
2944
2945         * marshal.c: BeginInvoke cannot be called on multicast delegates with
2946         multiple targets. Fixes bug #574426.
2947
2948 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2949
2950         * profiler.h: Put here the definition of
2951         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
2952         (and fix the build...).
2953
2954 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2955
2956         * profiler.c, profiler.h, profiler-private.h:
2957         Added support for different ways of getting call chains in stat mode.
2958
2959 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2960
2961         * object.c, object-internals.h: New function for computing the
2962         size of an array, factored out of mono_array_new_full().  Use
2963         SGen's functions for allocating arrays and vectors.
2964
2965         * sgen-gc.c, gc-internal.h: Special functions for allocating
2966         arrays and vectors without race conditions.  A managed array
2967         allocator method.
2968
2969         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
2970
2971 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2972
2973         * object.c, object.h, icall.c: Write barriers do the copying now,
2974         as well, so no need for an additional memcpy.
2975
2976         * sgen-gc.c: Lock when storing remsets.  Do the memory
2977         copying/moving in the write barriers.
2978
2979         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
2980
2981         * reflection.c: Added an assert.
2982
2983 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2984
2985         * threads.c, process.c: A few missing write barriers.
2986
2987 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
2988
2989         * mono-perfcounters.c, mono-perfcounters-def.h: Add
2990         network performance counters for bytes sent per second, bytes
2991         received per second, and bytes total per second.
2992
2993         Code is contributed under MIT/X11 license.
2994
2995 2009-10-09  Mark Probst  <mark.probst@gmail.com>
2996
2997         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
2998         Fix warning.
2999
3000 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3001
3002         * threads.c, object-internals.h, object.c: Move code for
3003         transferring an object to a different domain (via
3004         serialization/remoting) to object.c.
3005
3006         * object.c (call_unhandled_exception_delegate): If the exception
3007         is in a different domain than the delegate, transfer the exception
3008         to that domain.
3009
3010 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
3011
3012         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
3013         Fixes #322934.
3014
3015 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3016
3017         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
3018
3019 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3020
3021         * object.c (mono_method_return_message_restore): Handle the case
3022         where the argument is an instance of a generic type.  Fixes
3023         #544446.
3024
3025 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3026
3027         * object.c (set_value): Write barrier fix - we must pass the
3028         count, not the size.
3029
3030 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
3031
3032         * domain.c (mono_init_internal): Print a useful error message when encountering
3033         an old mscorlib, instead of crashing. Fixes #544307.
3034
3035 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3036
3037         * appdomain.c (copy_app_domain_setup): Fix a warning.
3038
3039         * debug-helpers.c (dis_one): Ditto.
3040
3041 2009-10-04  Mark Probst  <mark.probst@gmail.com>
3042
3043         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
3044         into the new domain, instead of referencing the original one.
3045
3046         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
3047         non-static.
3048
3049         * appdomain.c: Corlib version bump.
3050
3051 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3052
3053         * threadpool.c: one more...
3054
3055 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3056
3057         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
3058         threads to die because we're shutting down. delgate5.exe works again.
3059
3060 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
3061
3062         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
3063           ccw_interface_hash table when a ccw is finalized.
3064
3065         Code is contributed under MIT/X11 license.
3066
3067 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3068
3069         * assembly.c, domain.c, image.c, metadata-internals.h: Split
3070         domain and image unloading into two steps.  We must do this
3071         because clearing the domain in SGen requires the class metadata to
3072         be intact, but we need to free the mono_g_hash_tables in case a
3073         collection occurs during domain unloading and the roots would trip
3074         up the GC.
3075
3076 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3077
3078         * object-internals.h: Remove serialized culture fields from
3079         MonoInternalThread.
3080
3081         * icall-def.h, thread-types.h, threads.c: Remove serialized
3082         culture icalls.
3083
3084         * appdomain.c: Corlib version bump.
3085
3086 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3087
3088         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3089         Fixes #543133.
3090
3091 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3092
3093         * sgen-gc.c: Try to shorten the new section after a major
3094         allocation to avoid ever-growing sections.
3095
3096 2009-10-13  Martin Baulig  <martin@ximian.com>
3097
3098         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3099         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3100         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3101         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3102
3103         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3104
3105 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3106
3107         * threadpool.c: fixed the order in which 'completed' and the wait
3108         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
3109         No need to use the wait_handle field of ASyncCall. Make sure the
3110         threadpool is active when adding a job or queueing an idle thread.
3111
3112 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3113
3114         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3115
3116         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3117         when using --compile-all.
3118
3119 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3120
3121         * metadata.c (free_generic_class): Unregister the field_objects
3122         roots if we're using SGen.
3123
3124 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3125
3126         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3127         for GenericParamTableEntry.gparam.
3128
3129 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3130
3131         * marshal.c: don't create the handle when calling. It is created later
3132         if needed.
3133
3134 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3135
3136         * sgen-gc.c: Warning fixes.
3137
3138 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3139
3140         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3141         whole heap for cross-domain references before each collection.
3142
3143         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3144         object.
3145
3146         * threadpool-internals.h, threadpool.c: New function
3147         mono_thread_pool_is_queue_array() for checking whether a given
3148         array is used as a (cross-domain) queue by the thread pool code.
3149
3150 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3151
3152         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3153         searches the whole heap for objects containing a specific
3154         reference.  Only for debugging.
3155
3156 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3157
3158         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3159
3160         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3161         byte arrays between domains.
3162
3163 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3164
3165         * threadpool.c:
3166         * class-internals.h:
3167         * mono-perfcounters-def.h:
3168         * mono-perfcounters.c:
3169         -There is a list of idle threads
3170         -Each of those idle threads wait on their own WaitHandle instead
3171         of all of them using the same semaphore. When a new work item is
3172         added, the job is assigned directly to an idle thread or a newly
3173         created one if possible and then the handle for that thread is
3174         signaled. Compare that to the current approach where all the
3175         threads in the pool compete to dequeue a job from the same
3176         queue.
3177         -New struct ThreadPool that brings together the bunch of static
3178         variable for each threadpool (IO and regular).
3179         -New performance counters: # of items added and its rate per
3180         threadpool. The rate will be used later, perhaps together with
3181         other perf. counters, to decide when idle threads should exit.
3182
3183 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3184
3185         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3186         Fix typo on Windows build.      
3187         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3188         
3189         Code is contributed under MIT/X11 license.
3190
3191 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3192
3193         * object-internals.h: The Thread class is split up into Thread and
3194         InternalThread now.  We have exactly one InternalThread per
3195         thread, and at most one Thread per appdomain per thread.  Most
3196         data is stored in InternalThread.  All InternalThread objects live
3197         in the root domain.
3198
3199         * class-internals.h: Add internal_thread_class to MonoDefaults.
3200
3201         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3202         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3203         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3204         resulting from the split of the Thread class.
3205
3206         * gc-internal.h: Prototype for new function for checking whether a
3207         thread is the finalizer thread.
3208
3209         * appdomain.c: Corlib version bump.
3210
3211 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3212
3213         * appdomain.c|h: Add a mono_domain_try_unload method which is
3214         equivalent to mono_domain_unload, except that it returns an exception
3215         instead of throwing it. Make mono_domain_unload use the
3216         mono_domain_try_unload method to avoid code-duplication.
3217
3218 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3219
3220         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3221         a problem.
3222
3223 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3224
3225         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3226         aborting when a conversion is not implemented.
3227
3228 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3229
3230         * verify.c: when comparing culture strings, use g_ascii_strcmp
3231
3232         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3233         when comparing public key tokens to use memcmp on 16 bytes.   I do
3234         not believe this ever worked as advertised in the past.
3235
3236         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3237         which would have always failed earlier.
3238
3239 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3240
3241         * gc.c: Raise a NullArgumentException if the object passed is
3242         null.
3243
3244 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3245
3246         * image.c (mono_image_close): Atomically decrement the reference count and
3247         remove the image from the hash tables, to prevent another thread from seeing a
3248         dying MonoImage. Fixes #541194.
3249
3250 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3251
3252         * threadpool.c: actually use the minimum number of 'completion ports'
3253         (for us is just a potential worker thread).
3254
3255 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3256
3257         * threadpool.c: remove ares_htable. It does not make sense any more
3258         since the same objects are now stored in GC-tracked arrays while they are
3259         in the queue.
3260
3261 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3262
3263         * threadpool.c: increase the minimum length of the queues to 128.
3264         Remove warning.
3265
3266 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3267
3268         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3269         return the modified signature used by string ctors.
3270
3271 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3272
3273         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3274         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3275         method, to be used by full-aot.
3276
3277 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3278
3279         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3280         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3281         be known to be good.
3282
3283         * class.c (mono_class_init): Fail array types if their element type fails initialization
3284         as well.
3285
3286         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3287         initialization, additionally we request the element_type vtable to be initialized as well.
3288
3289         This is fine and should not increase the working set in any meaningful way since it's reasonable
3290         to assume       that most code will create an array and eventually populate it, which will require the
3291         type's vtable to be initialized.
3292
3293         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3294
3295 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3296
3297         * normalization-tables.h : regenerated.
3298
3299 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3300
3301         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3302         a leb128 encoding can take up to 5 bytes.
3303
3304 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3305
3306         * class.c (verify_class_overrides): Remove useless argument.
3307
3308         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3309         before interface enumeration as this is no longer required.
3310
3311 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3312
3313         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3314         used under mono_class_init context. This functions avoid any code path that
3315         calls mono_class_init, which leads it to be slow as some things like the interface
3316         bitmap are not available.
3317
3318         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3319         of it's own broken version. Fixes the verifier part of #538588.
3320
3321         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3322         API.
3323
3324 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3325
3326         * class.c (mono_class_init): Always set an exception in a class if
3327         vtable setup fails.  Fixes #538577.
3328
3329         * generic-sharing.c: Raise an exception if mono_class_vtable()
3330         returns NULL.
3331
3332 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3333
3334         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3335         methods of vtypes, as they could be incorrectly shared with static methods
3336         taking an IntPtr argument.
3337
3338 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3339
3340         * domain.c:
3341         * object.c:
3342         * class-internals.h: renamed waithandle_class to
3343         manualresetevent_class.
3344         * marshal.c: propagate the exception if a remoting BeginInvoke call
3345         fails.
3346
3347 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3348
3349         * object.c: Properly handle vtable failures.
3350
3351 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3352
3353         * socket-io.c: Assert on vtable failure.
3354
3355         * mono-mlist.c: Assert on vtable failure.
3356
3357 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3358
3359         * marshal.c: Assert on vtable failure.
3360
3361 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3362
3363         * icall.c: Properly handle vtable failures.
3364
3365 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3366
3367         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
3368
3369 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3370
3371         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
3372
3373         * console-unix.c (do_console_cancel_event): Same.
3374
3375 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3376
3377         * class-internals.h: Add mono_class_vtable_full function that allows control
3378         if an exception should be raised or not.
3379
3380         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
3381         to do what its documentation say, that is to return NULL and set exception_type on
3382         failure.
3383
3384         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
3385         and change the code to honor it.
3386
3387 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3388
3389         * verify.c: Fix typo in error message.
3390
3391 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
3392
3393         * security-core-clr.c: Fix default_platform_check so it can run
3394         the runtime coreclr tests (without an infinite recursion when
3395         throwing an exception).
3396
3397 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3398
3399         object.c (mono_delegate_ctor_with_method): Guard against null method.
3400
3401 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3402
3403         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
3404         that should be replaced with error handling later.
3405
3406 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3407
3408         * marshal.c (mono_delegate_end_invoke): Fix warning.
3409
3410 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3411
3412         * loader.c (mono_field_from_token): Properly handle invalid
3413         dynamic tokens.
3414
3415 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3416
3417         * pedump.c (verify_image_file): Skip types that can't be
3418         decoded.
3419
3420 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3421
3422         * verify.c: Look for recursive valuetypes only against the
3423         type been initialized as this is a lot simpler and works.
3424
3425 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3426
3427         * verify.c: Ensure that fields are properly loaded before
3428         checking them.
3429
3430 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3431
3432         * object.c (mono_object_get_virtual_method) : Call 
3433           mono_cominterop_get_invoke if the object is a COM object.
3434
3435         Code is contributed under MIT/X11 license.
3436
3437 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
3438
3439         * verify.c: Check for recursive valuetype definitions.
3440
3441 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3442
3443         Use inheritance-aware interface offsets. Inherited types use the same offsets
3444         of their parents. This reduce offset duplication in case more than one type in
3445         the inheritance tree explicitly implements the same interface.
3446
3447         This also removes a source of vtable bubbles found in #532409. An abstract type
3448         isn't required to provide abstract methods to all interfaces it implements, which
3449         resulted in a bubble with the previous scheme as the child would get a non-full
3450         vtable from its parent. We fail all concrete types with vtable bubbles, so this
3451         should be fixed.
3452
3453         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
3454         it's expected to not cause any significant increase beyond that.
3455
3456         * class.c (setup_interface_offsets): Compute super class iface offsets
3457         first to force sharing.
3458
3459         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
3460         dumping only the relevant ones.
3461
3462         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
3463         methods a new slot regardless if they belong to an interface or not. This allows
3464         an inherited type to override the iface method separately from the class one.
3465
3466 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3467
3468         * threadpool.c: make the Sleep() alertable to prevent delays exiting
3469         applications that take less than 2s to execute.
3470         Bug #524984 fixed.
3471
3472 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
3473
3474         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
3475
3476         * object.c (mono_get_runtime_callbacks): New helper function to return
3477         the runtime callbacks.
3478
3479         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
3480         mono_get_runtime_build_info () as the display name.
3481         
3482 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3483
3484         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
3485         argument, since NEWARR expects a native int. Fixes #481559.
3486
3487 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3488
3489         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
3490         against broken SRE methods.
3491
3492 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3493
3494         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
3495         a NULL variable. Abort early on failure.
3496
3497 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3498
3499         * class.c (can_access_type): Fail visibility test for non nested
3500         types with nested visibility.
3501
3502 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
3503
3504         * assembly.c (parse_public_key): Avoid allocating (and not 
3505         freeing) the public key array when it's not requested by the 
3506         caller.
3507         * threads.c (mono_thread_manage, mono_thread_create_internal, 
3508         ves_icall_System_Threading_Thread_Thread_internal): Free 
3509         allocated memory on error.
3510
3511 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3512
3513         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
3514
3515 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3516
3517         * class.c (mono_class_setup_fields): Remove duplicated local variable
3518         named gklass.
3519         Rename gklass to gtd to reflect the fact that it points to the generic
3520         type definition.
3521         Remove the duplicated call to mono_class_setup_fields on gtd and move
3522         the error check to the beginning.
3523
3524 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3525
3526         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
3527         Remove cruft of the previous patch.
3528
3529 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3530
3531         * metadata-verify.c (verify_method_table): Check for abstract + final.
3532         Fixes #534175.
3533
3534 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3535
3536         * verify.c (verify_class_fields): Check for duplicate fields.
3537
3538 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3539
3540         * metadata-verify.c: Verify the typeref table for duplicates.
3541
3542 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3543
3544         This reverts r140936 and properly handles interfaces with static methods. The
3545         right fix is to ensure vtables without bubles which is an easier to verify
3546         constraint. We should avoid such special cases as of the reverted patch as those
3547         only make the runtime more brittle.
3548
3549         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
3550         static methods on interfaces.
3551
3552         * class.c (setup_interface_offsets): Use the number of virtual methods when
3553         calculating interface offsets instead of the number of methods. This way we
3554         avoid bubles on the layout.
3555
3556 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
3557
3558         * metadata-verify.c (verify_metadata_header): Some very smart
3559         obfuscators like to add extra stream headers. Ignore them.
3560
3561 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
3562
3563         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
3564         methods correctly.
3565
3566 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
3567
3568         * metadata-verify.c: Verify for duplicated types.
3569
3570 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
3571
3572         * metadata-verify.c (verify_typedef_table): Verify for nested types
3573         without an entry on the nested class table.
3574
3575 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
3576
3577         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
3578         <tom_hindle@sil.org>. Add locking around hash table accesses.
3579
3580 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3581
3582         * verify.c (mono_verifier_verify_class): Verify all interface if
3583         really are interfaces. Fixes #534184.
3584
3585 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
3586
3587         * pedump.c: Initialize all types during metadata validation so we report
3588         errors only detected as part of class initialization.
3589
3590 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
3591
3592         * metadata-verify.c (verify_method_table): PInvoke requires method to
3593         be static. Fixes #534189
3594
3595 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
3596
3597         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
3598         being NULL.
3599
3600 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3601
3602         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
3603         for holes or bad methods. Fixes #525314.
3604
3605 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3606
3607         * class.c (setup_interface_offsets): Don't allocate slot
3608         for the same interface multiple times. This creates bubbles
3609         that waster space and make vtable verification harder.
3610
3611         The same interface get a slot multiple times since we need
3612         to get the closure of all implemented interfaces, which means
3613         the same interface is reported multiple times.
3614
3615 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3616
3617         * verify.c (mono_verifier_verify_class): Don't check the fields
3618         of generic instances since the context on which they got expanded
3619         might lead to false positives.
3620
3621         Such thing happens when a generic type is inflated in the context
3622         of a generic method and the inflated type of a field turns into a
3623         generic method argument, which causes the checking code to think
3624         it's an invalid class when it's not.
3625
3626 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3627
3628         * verify.c (mono_type_is_valid_in_context): Verify if type
3629         is NULL and remove duplicate test.
3630
3631 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3632
3633         * verify.c (mono_verifier_verify_class): Check fields for
3634         invalid generic arguments.
3635
3636 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3637
3638         * class.c (verify_class_overrides): Verify if for static
3639         and non virtual methods.
3640
3641 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3642
3643         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
3644         Check for errors after retrieving the vtable.
3645
3646 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3647
3648         * class.c (mono_class_setup_vtable_general): Verify
3649         if method overrides are valid before processing them.
3650
3651 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3652
3653         * marshal.c (mono_array_to_lparray): Fix minimal build with
3654         cominterop disabled.
3655
3656         * marshal.c (mono_free_lparray): Same.
3657
3658 2009-08-21  Mark Probst  <mark.probst@gmail.com>
3659
3660         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
3661         the hash function for the ares_htable.
3662
3663 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
3664
3665         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
3666         bit for assembly flags. MS is ok with it but there is no spec anywhere
3667         on its mean
3668
3669 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3670
3671         * class.c (mono_class_create_from_typedef): Emit profiler events
3672         in all cases.
3673
3674 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3675
3676         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
3677         Release memory on failure.
3678
3679 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3680
3681         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
3682         to the internal API.
3683
3684         * metadata.c (get_constraints): Use a single-linked table as we don't
3685         traverse it backward. Fail and return FALSE if only of the contraint types
3686         is not found.
3687
3688         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
3689         to mono_metadata_load_generic_param_constraints except for having a return value.
3690         This has to be done since the later is part of the public API.
3691
3692         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
3693         and fail the type.
3694
3695         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
3696         and fail the method.
3697
3698 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3699
3700         * metadata-verify.c (is_valid_method_header): Add work-around to deal
3701         with MS broken behavior of emmitting EH section sizes without the
3702         header size added.
3703
3704 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3705
3706         * metadata.c (mono_type_create_from_typespec): Don't allocate image
3707         memory until we're sure that we'll need it. This avoids leaking for
3708         broken types or duplicated instantiation.
3709
3710 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3711
3712         * metadata-verify.c (is_valid_method_header): Fix stupid formating
3713         mistake.
3714
3715 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3716
3717         * metadata-verify.c (is_valid_method_header): Fix number of clauses
3718         and expected size calculation.
3719
3720 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3721
3722         * class.c (mono_class_get_field_idx): Add fixme for broken
3723         behavior for types with multiple fields with the same name.
3724         I would rather fix it, but have no idea on how to generate
3725         such artifact for testing.
3726
3727 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3728
3729         * verify.c (verifier_load_field): We should allow references to
3730         fields to be made using the generic type definition. It's up to
3731         the loader system to fail invalid ops.
3732
3733         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
3734         are invalid.
3735
3736 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3737
3738         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
3739
3740         * metadata-internals.h: Fix declaration of 
3741         mono_metadata_interfaces_from_typedef_full.
3742
3743         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
3744         heap_alloc_result parameter that controls if the result should be
3745         g_malloc'd.
3746
3747         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
3748         array be g_malloc'd and properly document this public API function.
3749
3750 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3751
3752         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
3753         remove METHOD_HEADER_TINY_FORMAT1.
3754
3755         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
3756
3757         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
3758
3759         Both spec and MS uses only 2 bits to enumerate the kind of header.
3760         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
3761         is superfluous, only used for tiny headers with odd code lengths.
3762
3763         This change also make sure that mono doesn't wronly interpret bit 2
3764         of fat header flags, which is currently reserved.
3765
3766 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3767
3768         * metadata.c (do_mono_metadata_parse_type): Do error
3769         checking for element types. Don't abort if presented
3770         with a broken type kind.
3771
3772 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3773
3774         * metadata.c (mono_metadata_parse_method_signature_full):
3775         Gracefully fail bad vararg signatures.
3776
3777 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3778
3779         * profiler.c:
3780         * class.c: Fix warnings for uninitialized variables.
3781
3782 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3783
3784         * icall.c: Fix _NSGetEnviron method declaration warning.
3785
3786 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3787
3788         * icall.c:
3789         * reflection.c: Make bitwise checks explicit.
3790
3791 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3792
3793         * debug-helpers.c:
3794         * marshal.c: Fix printf warnings.
3795
3796 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
3797
3798         * reflection.c (encode_cattr_value): Fix a warning.
3799
3800 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3801
3802         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
3803         of array bounds.
3804
3805 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3806
3807         * loader.c (mono_method_signature): Don't assert on broken
3808         signature. Print a more useful error message.
3809
3810 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3811
3812         * loader.c (mono_method_get_marshal_info): Assert if
3813         signature is invalid. Bounds check stores to the
3814         mspecs array;
3815
3816 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3817
3818         * loader.c (field_from_memberref): Fix warning.
3819
3820 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3821
3822         * loader.c (mono_method_get_param_names): Check if signature
3823         is null. Don't store beyond the size of the name array.
3824
3825 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3826
3827         * loader.c (mono_get_method_constrained): Check if signature
3828         is null.
3829
3830 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3831
3832         * loader.c (mono_loader_set_error_bad_image): Improve
3833         error messages.
3834
3835 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3836
3837         * loader.c (mono_get_method_full): Convert an assertion
3838         into a loader error.
3839
3840 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3841
3842         * class-internals.h, class.c: Better naming and documentation.
3843
3844 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
3845
3846         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
3847         obj is NULL.
3848
3849 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3850
3851         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
3852         parsing fails.
3853
3854 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3855
3856         * loader.c (mono_loader_error_prepare_exception): Handle missing field
3857         errors with no class set.
3858
3859         * loader.c (field_from_memberref): If the field signature is of the wrong
3860         type fail with a MissingFieldException instead of a BadImageException as
3861         this is the behavior observed on MS. 
3862
3863 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3864
3865         * loader.c (field_from_memberref): Don't crash if either the field
3866         signature or the typespec class are invalid.
3867
3868 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3869
3870         * verify.c (verifier_load_field): Don't allow field related
3871         ops to reference fields on generic type definition.
3872
3873 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3874
3875         * metadata-verify.c: Add new warning level for errors specified
3876         by ECMA 335 but that MS ignores.
3877
3878         * metadata-verify.c (verify_method_table): Make compiler controled
3879         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
3880         this check is safe because the end result will only be some visibility
3881         exceptions been thrown.
3882
3883 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3884
3885         * verify.c (get_boxable_mono_type): Don't allow the
3886         use of the generic type definition on boxed type positions.
3887
3888         Fixes #531237.
3889
3890 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3891
3892         * threadpool.c: Make sure no cross-domain references remain in
3893         ares_htable or the arrays that are thrown away when resizing.
3894
3895 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3896
3897         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
3898         list of classes for which we have to unregister reflection_info
3899         with the GC and which are not in the namespace cache.
3900
3901         * reflection.c (mono_reflection_initialize_generic_parameter): Add
3902         the class to the list.
3903
3904 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3905
3906         * domain.c (mono_domain_free): Unregister the GC roots in
3907         MonoDomain.
3908
3909 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
3910
3911         * reflection.c (mono_reflection_type_get_handle): Fix typo.
3912
3913 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
3914
3915         * class.c: Add mono_class_get_field_from_name_full which does
3916         the same as mono_class_get_field_from_name but does check field
3917         signature as well.
3918
3919         * class-internals.h: Export mono_class_get_field_from_name_full as
3920         part of the internal API.
3921
3922         * loader.c (field_from_memberref): Search fields by name and signature
3923         as it's valid to have two fields with same name but different types.
3924
3925         Fixes #528055.
3926
3927 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
3928
3929         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
3930
3931         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
3932
3933         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
3934         System.Type.
3935
3936 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
3937
3938         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
3939
3940         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
3941
3942 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3943
3944         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
3945         to sgen-scan-object.h, which can be included and parameterized via
3946         macros.
3947
3948         * Makefile.am: sgen-scan-object.h added.
3949
3950 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3951
3952         * gc.c: #define GC_dont_gc if we're compiling with SGen.
3953
3954 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3955
3956         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
3957         before clearing a domain in the GC.
3958
3959 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3960
3961         * exception.c (mono_exception_from_name_domain): Actually create
3962         the exception in the specified domain.
3963
3964         * appdomain.c (mono_domain_create_appdomain_internal): Create the
3965         OutOfMemoryException a bit later so that the domain is inialized
3966         "enough" that it works.
3967
3968 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3969
3970         * threads.c (thread_cleanup): Clean up the cached_culture_info
3971         array to prevent cross-domain references.
3972
3973 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
3974
3975         * metadata.c: more documentation for MonoType accessors.
3976
3977 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
3978
3979         Fix incorrect size definitions where the tail array isn't a list
3980         of pointers
3981         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
3982         define size.
3983         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
3984         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
3985         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
3986
3987 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3988
3989         * reflection.h:
3990         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
3991
3992 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3993
3994         * metadata.c:
3995         * loader.c:
3996         * metadata-internals.h:
3997         * method-builder.c:
3998         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
3999
4000 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4001
4002         * cominterop.c:
4003         * metadata.c:
4004         * metadata.h:
4005         * loader.c:
4006         * marshal.c:
4007         * reflection.c: #define for sizeof in MonoType and
4008         MonoMethodSignature.
4009
4010 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4011
4012         * domain.c:
4013         * domain-internals.h: add and use #define's instead of sizeof()
4014         for MonoJitInfo and MonoJitInfoTable.
4015
4016 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4017
4018         * object.c:
4019         * class.h: use #define instead of sizeof() for MonoRemoteClass.
4020
4021 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4022
4023         * metadata.c:
4024         * metadata.h:
4025         * object.c:
4026         * class-internals.h:
4027         * generic-sharing.c:
4028         * marshal.c: use a #define instead of sizeof() for a few
4029         structures that use a zero-length array.
4030
4031 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
4032
4033         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
4034         to handle inflated generic methods.
4035
4036         * appdomain.c: Bump corlib version.
4037
4038         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
4039         instances.
4040
4041         * reflection.c (fixup_method): Same
4042
4043         * reflection.c (resolve_object): Same.
4044
4045         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
4046         g_error and a decent message.
4047
4048 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
4049
4050         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
4051         from the object because it could not yet be available globally
4052         (it happens if the profiler tries to create a gchandle on the
4053         MonoThread object of a thread that is still registering itself
4054         with the runtime).
4055
4056 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
4057
4058         * reflection.c (mono_generic_class_get_object): Initialized the
4059         managed type arguments array.
4060
4061         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
4062
4063         * appdomain.c: Bump corlib version.
4064
4065 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
4066
4067         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
4068         #527902.
4069
4070 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
4071
4072         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4073         Avoid a crash if synch_cs is not set.
4074         
4075         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4076         Handle the case when the handle is 0.
4077
4078         * appdomain.c: Bump corlib version.
4079
4080 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
4081
4082         * reflection.c (mono_type_get_object): Fix a warning.
4083
4084 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4085
4086         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4087         descriptor here.  We assume it's already been computed.
4088
4089         * generic-sharing.c (instantiate_other_info): Compute the GC
4090         descriptor for info type MONO_RGCTX_INFO_KLASS.
4091
4092 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4093
4094         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4095         type, so don't use MONO_OBJECT_SETREF to set a field.
4096
4097 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4098
4099         * gc.c: We were missing one case where invoking a finalizer would
4100         not reset the domain.  Also, in the finalizer thread loop, assert
4101         that we're in the root domain.
4102
4103 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4104
4105         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4106         if the type is not an array.
4107
4108 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4109
4110         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4111         method bound to the declaring type of the method. Raise an exception
4112         if the type is not a generic param.
4113
4114 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4115
4116         * class.c (print_unimplemented_interface_method_info): Print the
4117         full type name.
4118
4119         * class.c (mono_class_setup_vtable_general): When dealing with a
4120         generic instance first check if the generic type definition is
4121         not broken.
4122
4123 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4124
4125         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4126
4127         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4128
4129         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4130
4131         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4132
4133         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4134
4135         Code is contributed under MIT/X11 license
4136
4137 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4138
4139         * verify.c: Fix naming of stelem and ldelem.
4140
4141 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4142
4143         * generic-sharing.c: Replace the templates lock with the loader
4144         lock because of very hard to resolve deadlock issues.
4145
4146 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4147
4148         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4149         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4150         directly. Fixes #525338.
4151
4152         * class.c (mono_class_get_vtable_size): New helper function.
4153
4154         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4155         the field belongs to the type. Fixes #525733.
4156
4157 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4158
4159         * sgen-gc.c: When we stop a thread and its stack top is not within
4160         its allocated stack (because it's in an altstack signal handler),
4161         restart it and stop it again, until it is.
4162
4163 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4164
4165         * sgen-gc.c: Take a thread's stack top and registers from the
4166         sigcontext in the suspend signal handler.
4167
4168         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4169         stuff to sgen-archdep.h.
4170
4171         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4172         caller, because have code in sgen-archdep.h to acquire that data.
4173
4174 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4175
4176         * profiler.c, profiler.h, profiler-private.h:
4177         Added support for keeping track of code chunks and buffers.
4178
4179 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4180
4181         * metadata-verify.c: Fix endianness problems on decoding functions.
4182         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4183
4184 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4185
4186         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4187         schema for vectors and one dimension SZARRAY.
4188
4189 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4190
4191         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4192         schema for vectors and one dimension SZARRAY.
4193
4194 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4195
4196         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4197         Interlocked.(Compare)Exchange with object arguments, which invoke
4198         write barriers.
4199
4200 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4201
4202         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4203         passed invalid arguments.   Fixes another crasher in the
4204         Silverlight test suite.
4205
4206         * class.c (mono_class_array_element_size): Return 0 for the size
4207         of the class;  This fixes the crasher exposed by :
4208
4209         typeof (void).MakeArrayType ();
4210
4211         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4212         if there is no method to dereference.    Put all the code that
4213         depends on this inside the if (method) block.
4214
4215         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4216         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4217
4218         With this change, we pass the test.
4219         
4220         * reflection.c (mono_reflection_sighelper_get_signature_local):
4221         Only dereference the assembly if it has been set.    Fixes a
4222         crasher exposed by #525328
4223
4224 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4225
4226         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4227         don't perform the store in mono_gc_wbarrier_generic_nostore().
4228         Remove the second argument (value), which is not needed.
4229
4230 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4231
4232         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4233         the build.
4234
4235         * boehm-gc.c: Ditto.
4236         
4237 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4238
4239         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4240         not perform the store itself.  Introduce
4241         mono_gc_wbarrier_generic_nostore(), which is the same as
4242         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4243         store.
4244
4245 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4246
4247         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4248         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4249         we still need the memcpy().
4250
4251 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4252
4253         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4254         so that big arrays are handled correctly.  Always use
4255         safe_object_get_size() to calculate array object sizes, which
4256         takes bounds into account.
4257
4258 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4259
4260         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4261         GC descriptor is computed before we use it.
4262
4263 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4264
4265         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4266         write barrier if necessary.
4267
4268 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4269
4270         * icall-def.h, icall.c, thread-types.h: New separate icall for
4271         VolatileWrite(object&,object) that uses a write barrier.
4272
4273         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4274         barriers in icalls which write to "ref" or "out" arguments.
4275
4276 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4277
4278         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4279         handler in a separate icall, to reduce the size of the wrappers.
4280
4281 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4282
4283         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4284
4285 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4286
4287         * metadata-verify.c (parse_field): Allow byref field.
4288
4289         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4290
4291         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4292
4293 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4294
4295         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4296         Fixes #522784.
4297
4298 2009-07-20  Robert Jordan  <robertj@gmx.net>
4299
4300         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4301         Fix invalid IL in valuetype handling (STOBJ must push the
4302         corresponding class). Fixes bug #523149.
4303
4304         Code is contributed under MIT/X11 license.
4305
4306 2009-07-20  Geoff Norton  <gnorton@novell.com>
4307
4308         * gc.c: Use proper semaphores where available on posix and darwin.
4309
4310 2009-07-19  Geoff Norton  <gnorton@novell.com>
4311
4312         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4313
4314 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4315
4316         * refletion.c (is_sre_usertype): Change name to is_usertype and
4317         invert it's result so it returns true if the type is an user type
4318         and not the opposite.
4319
4320         * reflection.c (is_*_type): Change all of those to use new macro
4321         check_corlib_type_cached that cached the type lookup so we don't
4322         need to do string comparisons all the type. Changed the signature
4323         to take a MonoClass instead.
4324
4325         * reflection.c: Change mono_image_create_token and resolve_object
4326         to use is_sre_* functions.
4327
4328 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4329
4330         * sgen-gc.c: Check for writes to the stack in the managed
4331         wbarrier as well.
4332
4333 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4334
4335         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4336         but put them on a list which is processed with the other thread's
4337         remsets.
4338
4339 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4340
4341         * sgen-gc.c: Fix and enable the internal allocator instead of
4342         using malloc/free (which causes deadlocks).
4343
4344 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4345
4346         * refletion.c: Fix builds with SRE disabled by adding a minimal
4347         implementation of mono_reflection_type_get_handle.
4348
4349 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4350
4351         * refletion.c: Make mono_reflection_type_get_handle non static.
4352
4353         * object-internals.h: Export mono_reflection_type_get_handle.
4354
4355         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
4356         unmanaged handle using mono_reflection_type_get_handle.
4357
4358 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4359
4360         * refletion.c: Replace all reads of MonoReflectionType::type with
4361         calls to mono_reflection_type_get_handle. Only the functions that
4362         deal with constructing TypeBuilder::type have not been changed
4363         because they have to deal with NULL values.
4364
4365         This is a first step into supporting reflection types that don't
4366         map directly into their unmanaged counterpart.
4367
4368 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4369
4370         * metadata-verify.c (parse_locals_signature): Don't complain
4371         on signature with zero locals since MS generates it and doesn't
4372         bother with.
4373
4374 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4375
4376         * reflection.c (mono_image_get_array_token): Resolve return
4377         type using mono_reflection_type_get_handle.
4378
4379         * reflection.c (mono_image_get_array_token): Resolve array method
4380         parent type using mono_reflection_type_get_handle.
4381
4382 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4383
4384         * reflection.c (mono_image_basic_init): Applied patch from
4385         <Dax@daxxfiles.net>. Set the public key token from the assembly
4386         builder. Fixes #518909.
4387
4388         * appdomain.c: Bump corlib version.
4389
4390 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4391
4392         * class.c (mono_class_needs_cctor_run): Make this return false if
4393         the class has no cctor.
4394
4395 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4396
4397         * sgen-gc.c: When the minor GC needs to allocate a new section,
4398         invoke the major GC afterwards.
4399
4400 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
4401
4402         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
4403           Applying the window_style field to the SHELLEXECUTEINFO struct.
4404
4405         Code is contributed under MIT/X11 license.
4406
4407 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4408
4409         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
4410         locking earlier.  Fix it in the managed allocator by making sure
4411         that no thread is stopped there before the GC runs.  If we do stop
4412         a thread there, we restart it and let it run a but, until it stops
4413         somewhere else.
4414
4415         * gc-internal.h, gc.c: Function for getting the IP from a signal
4416         context via a function registered by mini.
4417
4418 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
4419
4420         * object-internals.h (MonoIntPtr): New structure describing a boxed
4421         IntPtr.
4422
4423         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
4424         returns. Fixes #519953.
4425
4426         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
4427
4428 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4429
4430         * class-internals.h, generic-sharing.c: New RGCTX info type for
4431         getting a remoting invoke with check wrapper.
4432
4433 2009-07-07  Geoff Norton  <gnorton@novell.com>
4434
4435         * icall-def.h: Fix the enable-minimal build.
4436
4437 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4438
4439         * object-internals.h: Add MonoReflectionDerivedType.
4440
4441         * reflection.c: Implement support for PointerType.
4442         Fixed tons of warnings.
4443
4444 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4445
4446         * object-internals.h: Add MonoReflectionByRefType.
4447
4448         * reflection.c: Implement support for ByRefType.
4449
4450 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4451
4452         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
4453
4454         * object-internals.h: Add MonoReflectionArrayType and
4455         mono_reflection_create_unmanaged_type.
4456
4457         * reflection.c: Implement support for ArrayType.
4458
4459 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4460
4461         * metadata-verify.c (is_valid_method_header): Parse EH block
4462         flags correctly.
4463
4464 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4465
4466         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
4467         processing the disappearing links, and process disappearing links
4468         in a loop until no new objects are copied.
4469
4470 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4471
4472         * object.c (handle_enum): Invoke the write barrier when copying
4473         value type instances.
4474
4475         * sgen-gc.c: Register remsets for unmanaged write barriers only
4476         when the address written to is actually on the heap.  This makes
4477         set_value() in object.c work without requiring that the result be
4478         on the heap.
4479
4480 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
4481
4482         The runtime wrappers are all bound to a given type that must
4483         exist in the same image. For regular images we use the <Module>
4484         type, which is required to exist for all images.
4485
4486         The <Module> type can't be used for dynamic images because it
4487         might not exist at the time the wrapper is required, so we create
4488         a synthetic type to use instead.
4489
4490         The current code works because of the 2 stage setup of MonoClass,
4491         but once this is gone it will no longer work.
4492
4493         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
4494
4495         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
4496
4497         * object-internals.h: Export mono_image_set_wrappers_type icall
4498         as part of the internal API.
4499
4500         * marshal.c (get_wrapper_target_class): If the image is dynamic,
4501         use MonoDynamicImage::wrappers_type instead of the <Module> type.
4502
4503         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
4504         image wrappers_type to the provided value.
4505
4506 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
4507
4508         * appdomain.c (deregister_reflection_info_roots): No need
4509         to use the image lock here.
4510
4511 2009-07-02  Mark Probst  <mark.probst@gmail.com>
4512
4513         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
4514
4515 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
4516
4517         * threads.c: Store the thread start argument in a hash table instead of
4518         registering it as a root, as libgc doesn't support unregistering roots
4519         under windows, leading to 'too many root sets' errors when many threads
4520         are created.
4521
4522         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
4523         shutdown, they can still be referenced by the other dying objects.
4524         Fixes #514506.
4525
4526 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4527
4528         * socket-io.c: DontLinger does not allow LingerOptions.
4529
4530 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4531
4532         * metadata-verify.c: The spec doesn't mention that it's possible to add
4533         custom attribute to a generic parameter. Fixed.
4534
4535 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4536
4537         * class.c (inflate_generic_type): Don't crash while trying to output a message
4538         on why we're aborting.
4539
4540 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4541
4542         * socket-io.c: DontLinger can take an int or a boolean too.
4543
4544 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
4545
4546         * gc.c: check for a null argument to SuppressFinalize () and
4547         ReRegisterForFinalize ().
4548
4549 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4550
4551         * loader.c (method_from_methodspec): Call into the verifier to check
4552         the signature.
4553
4554         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
4555
4556         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
4557         part of the internal API.
4558
4559 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4560
4561         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
4562         the signature.
4563
4564         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
4565
4566         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
4567         part of the internal API.
4568
4569 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4570
4571         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
4572         the signature.
4573
4574         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
4575         blob verification.
4576
4577         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4578         part of the internal API.
4579
4580 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4581
4582         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
4583         when doing basic verification. 
4584
4585         This check must be done since the runtime peeks into signatures in much
4586         more places than it does decoding so it makes sense to ensure that all
4587         pointers to blob objects are well formed.
4588
4589 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4590
4591         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
4592         Use proper overflow dectection. Fix usage of it.
4593
4594 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4595
4596         * loader.c (field_from_memberref): Call into the verifier to check
4597         the signature.
4598
4599         * loader.c (mono_method_get_signature_full): Same.
4600
4601         * loader.c (method_from_memberref): Same.
4602
4603         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
4604
4605         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4606         part of the internal API.
4607
4608 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4609
4610         * threadpool.c (mono_thread_pool_add): If the domain is unloading
4611         or unloaded, still return an AsyncResult, but don't add it to the
4612         threadpool.
4613
4614 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4615
4616         * threads.c: fix missing colon when DEBUG is defined.
4617
4618 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4619
4620         * threadpool.c: Don't add new calls to a threadpool if the domain
4621         of the call is unloading or unloaded.  When dequeuing a job, null
4622         the reference in the queue.
4623
4624 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4625
4626         * sgen-gc.c (null_link_in_range): Add the dislink for the old
4627         generation if an object was moved.
4628
4629 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
4630
4631         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
4632           parameters of type SAFEARRAY[VARIANT].
4633
4634         * reflection.c (encode_marshal_blob): Properly generate element type
4635           (SafeArraySubType marshal attribute option).
4636
4637         Code is contributed under MIT/X11 license.
4638
4639 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
4640
4641         * reflection.c: in mono_method_clear_object () really ensure all the
4642         objects are removed.
4643
4644 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4645
4646         * loader.c (mono_method_signature): Call into the verifier to check
4647         the method signature.
4648
4649         * metadata-verify.c (verify_method_table): Move signature verification
4650         to verify_method_table_full.
4651
4652         * metadata-verify.c: Add mono_verifier_verify_method_signature.
4653
4654         * verify-internals.h: Export mono_verifier_verify_method_signature as
4655         part of the internal API.
4656
4657 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4658
4659         * loader.c (mono_method_get_header): Call into the verifier to
4660         check the method header.
4661
4662         * metadata-verify.c: Add mono_verifier_verify_method_header.
4663
4664         * verify-internals.h: Export mono_verifier_verify_method_header as
4665         part of the internal API.
4666
4667 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4668
4669         * class.c (mono_class_find_enum_basetype): Call into the verifier to
4670         check the field signature. Replace an assert with an explicit check.
4671
4672         * class.c (mono_class_setup_fields): Call into the verifier to check
4673         the field signature.
4674
4675         * metadata-verify.c: Add mono_verifier_verify_field_signature.
4676
4677         * verify-internals.h: Export mono_verifier_verify_field_signature as
4678         part of the internal API.
4679
4680 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4681
4682         * class.c (mono_class_find_enum_basetype): Simplify this function
4683         by moving code outside of the loop and not decoding static fields.
4684
4685 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4686
4687         * metadata-verify.c (verify_typedef_table): Check the extends
4688         token here. Move to here a flags check from verify_typedef_table_full.
4689
4690 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4691
4692         * metadata-verify.c (is_valid_method_header): Fix a warning.
4693
4694         * metadata-internals.h (MonoImage): Remove the unused 
4695         static_rgctx_invoke_wrapper_cache.
4696
4697         * image.c marshal.c: Ditto.
4698
4699 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4700
4701         * image.c (do_mono_image_load): Enable table data verification.
4702
4703 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4704
4705         * metadata-verify.c (is_valid_constant): Fix nullref check.
4706
4707 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4708
4709         * metadata-verify.c (is_valid_constant): Fix string bounds check.
4710
4711 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4712
4713         * sgen-gc.c: Managed allocation with pthreads TLS.
4714
4715         * threads.c, threads-types.h: Functions for the JIT to tell the
4716         runtime whether it supports the MONO_TLS opcode.
4717
4718 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4719
4720         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
4721         without methods.
4722
4723 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4724
4725         * metadata-verify.c (is_valid_constant): Fix the string length check.
4726         Use safe overflow checking. Add decent error messages.
4727
4728 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4729
4730         * metadata-verify.c: Move remaininh blob checks to the offline
4731         verification path.
4732
4733 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4734
4735         * metadata-verify.c: Move more blob checks to the offline verification
4736         path.
4737
4738 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
4739
4740         * object-internals.h : Adding interrupt_on_stop field.
4741
4742         * threads.c (mono_thread_request_interruption) : On Windows exit the
4743           thread if interrupt_on_stop is set.
4744
4745         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
4746          Removing old interrupt logic and setting the interrupt_on_stop for the
4747          thread when calling accept.
4748
4749         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
4750          setting the interrupt_on_stop for the thread when calling accept.
4751
4752         Contributed under MIT/X11 license.
4753
4754 2009-06-20  Martin Baulig  <martin@ximian.com>
4755
4756         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
4757
4758 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
4759
4760         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
4761         running in no-exec mode.
4762
4763 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4764
4765         * metadata-verify.c (verify_method_table): Move header
4766         checking to verify_method_table_full.
4767
4768         * metata-verify.c (mono_verifier_verify_full_table_data):
4769         Call verify_method_table_full.
4770
4771 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4772
4773         * metadata-verify.c (verify_field_table): Move signature
4774         checking to verify_field_table_full.
4775
4776         * metata-verify.c (mono_verifier_verify_full_table_data):
4777         Call verify_field_table_full.
4778
4779 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4780
4781         * metadata-verify.c (verify_typedef_table): Move remaining
4782         stuff to verify_typedef_table_full.
4783
4784 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4785
4786         * metadata-verify.c: Kill is_corlib from VerifyContext.
4787         It is only used by the offline mode.
4788         So we better remove it from the runtime path.
4789
4790 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4791
4792         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
4793         function that perform the offline metadata verification steps.
4794
4795         * metadata-verify.c (verify_typedef_table): Move some checks to
4796         verify_typedef_table_full and make it been called by new function
4797         mono_verifier_verify_full_table_data.
4798
4799         * pedump.c: Call mono_verifier_verify_full_table_data.
4800
4801         * verify-internals.h: Export mono_verifier_verify_full_table_data as
4802         part of the internal API.
4803
4804 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4805
4806         * metadata-verify.c (typedef_is_system_object): Fix System.Object
4807         check.
4808
4809         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
4810         flags bits. SupportLastError was confused as bit 7 instead of 6.
4811
4812         * metadata-verify.c (verify_implmap_table): Fix import scope verification
4813         to check against the module ref table instead of module.
4814
4815         * metadata-verify.c (verify_implmap_table): Fix corlib check.
4816
4817         * pedump.c: Call mono_image_load_names.
4818
4819 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4820
4821         * image.c: Extract mono_image_load_names from do_mono_image_load.
4822
4823         * metadata-internals.h: Export mono_image_load_names as part of
4824         the internal API.
4825         
4826 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
4827
4828         * metadata.c (mono_metadata_cleanup): Free the generic method cache
4829         first, as it could reference data in the other caches.
4830
4831 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
4832
4833         * metadata-verify.c: Finished with method header verification.
4834
4835 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
4836
4837         * metadata-verify.c: Added more header verification code.
4838         Now only EH clauses are missing.
4839
4840 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
4841
4842         * marshal.c (get_runtime_invoke_type): Don't share primitive types
4843         for return values.
4844
4845 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
4846
4847         * metadata-verify.c: Initial method header verification.
4848
4849 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
4850
4851         * metadata-verify.c (verify_import_table): The IAT contents
4852         might end been patched by the windows DL when running with
4853         coree enabled.
4854
4855 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
4856
4857         * class.c (mono_class_from_typeref): If the enclosing type is not
4858         found return null instead of crashing. Fixes #508487.
4859
4860 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
4861
4862         * normalization-tables.h : updated to the latest unicode charcter
4863           data.
4864         * appdomain.c : bump corlib version.
4865
4866 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
4867
4868         * class.c (mono_class_from_name): Fix support for assembly references
4869         in the EXPORTEDTYPE table. Fixes #511704.
4870
4871 2009-06-13  Geoff Norton  <gnorton@novell.com>
4872
4873         * domain.c: Ensure that mono_domain_assembly_open actually opens the
4874         assembly in the target domain.
4875
4876 2009-06-12  Robert Jordan  <robertj@gmx.net>
4877
4878         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
4879         because "this" of the managed signature has become an
4880         ordinary parameter in the unmanaged signature.
4881
4882 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
4883
4884         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
4885         field for owner-less generic containers.
4886
4887         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
4888         image field of the owner-less generic containers created here.
4889
4890         * metadata.c (mono_metadata_load_generic_params): Ditto, the
4891         contain is ownerless until the caller sets its owner.
4892
4893         * metadata.c (type_in_image): Handle owner-less generic containers
4894         correctly.
4895         
4896 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4897
4898         * image.c (mono_image_close): Support debug_assembly_unload for
4899         dynamic images too.
4900
4901 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
4902
4903         * class.c: Fix some typos in comments.
4904
4905 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4906
4907         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
4908
4909         * threads.c (mono_thread_execute_interruption): Avoid creating the
4910         abort exception object while holding the synch_cs lock.
4911
4912 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4913
4914         * metadata-verify.c: Verify basic cattr content.
4915
4916 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
4917
4918         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
4919         nested types.
4920         
4921         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
4922         support for nested types. Fixes #511704.
4923
4924 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4925
4926         * metadata-verify.c: Verify methodspec signatures.
4927
4928 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4929
4930         * metadata-verify.c: Verify typespec signatures.
4931
4932 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
4933
4934         * metadata.c (free_inflated_method): Call 
4935         mono_marshal_free_inflated_wrappers (), which was missed earlier.
4936
4937 2009-06-08  Miguel de Icaza  <miguel@novell.com>
4938
4939         * mono-config.c: Small change to report the PPC64/ILP32 model.
4940
4941 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4942
4943         * metadata-verify.c (parse_type): Check szarray.
4944
4945 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4946
4947         * metadata-verify.c (parse_type): Check fnptr.
4948
4949 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4950
4951         * metadata-verify.c (parse_type): Check generic instances.
4952
4953 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4954
4955         * metadata-verify.c (parse_type): Check array shape.
4956
4957 2009-06-05  Robert Jordan  <robertj@gmx.net>
4958
4959         * class.c (mono_class_create_from_typedef): Check only for
4960         mscorlib's System.Array.
4961
4962 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
4963
4964         * metadata-verify.c (parse_type): Check pointer, class/valuetype
4965         and generic params. 
4966
4967         * metadata-verify.c (parse_field): Check the signature.
4968
4969 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
4970
4971         * metadata-verify.c: Implement locals signature check.
4972
4973 2009-06-04  Marek Safar  <marek.safar@gmail.com>
4974
4975         * domain.c: Add .NET 4.0 Beta 1 version.
4976
4977 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
4978
4979         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
4980           For QueryInterface on CCWs consider the base class
4981           interfaces as well.
4982
4983         Code is contributed under MIT/X11 license.
4984
4985 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4986
4987         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
4988
4989         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
4990         used.
4991
4992         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
4993         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
4994
4995         * generic-sharing.c (inflate_other_data): Ditto.
4996         
4997 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
4998
4999         * metadata-verify.c: Implement property signature check.
5000
5001 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5002
5003         * sgen-gc.h: Register saving support for PPC.
5004
5005 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5006
5007         * sgen-gc.c: Fixed a pthread TLS screwup.
5008
5009 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5010
5011         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
5012         supported.
5013
5014 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5015
5016         * sgen-gc.c: Disable TLA and managed allocation if the __thread
5017         keyword is not supported.
5018
5019 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5020
5021         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
5022         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
5023         the inflated method is freed. Fixes #508389.
5024
5025         The code is contributed under the MIT/X11 license.
5026         
5027 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
5028
5029         * marshal.c (get_wrapper_target_class): New helper function.
5030         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
5031         the <Module> class of the image. Fixes #509049.
5032
5033 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5034
5035         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
5036         Check if the thread was interrupted and proccess it straight away.
5037         Makes abortion much more responsive.
5038
5039 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5040
5041         * threads.c (mono_thread_execute_interruption): Use atomic cas with
5042         MonoThread::interruption_requested to match it's counterpart.
5043
5044         Fixes a hang in abort-stress-1 on a 2 core x86.
5045
5046         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
5047         Fix warning.
5048
5049 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5050
5051         Change MonoImage::name_cache to be protected by the image lock
5052         instead of the loader lock.
5053
5054         * appdomain.c (deregister_reflection_info_roots): Protect access
5055         to name_cache.
5056
5057         * class.c (mono_image_init_name_cache): Change from the loader lock
5058         to the image lock. Check if the cache wasn't already created.
5059
5060         * class.c: Change from the loader to the image lock.
5061
5062         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
5063         the code to hold the image lock while iterating over name_cache and
5064         not go into mono_array_new holding it.
5065
5066         * metadata-internals.h: Add a comment about this change.
5067
5068 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5069
5070         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5071         Under the 2.0 profile raise the loader error.
5072
5073         Fixes #508532.
5074
5075 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5076
5077         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5078         of ldind opcode for generic instances so we don't fail for direct wrappers.
5079         This only affect direct calls.
5080
5081 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5082
5083         * reflection.c (create_dynamic_mono_image): Fix warnings.
5084
5085         * generic-sharing.c (other_info_equal): Ditto.
5086         
5087 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5088
5089         * metadata-verify.c: Implement field signature check.
5090
5091 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5092
5093         * metadata-verify.c: Implement standalone signature check.
5094
5095 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5096
5097         * metadata-verify.c: Implement methodref signature check.
5098
5099 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5100
5101         * object-internals.h (MonoRuntimeCallbacks): New structure containing
5102         callbacks supplied by the runtime.
5103
5104         * object.c (mono_install_callbacks): New internal function to install
5105         the callbacks.
5106
5107         * object.c (mono_create_ftnptr): Move the implementation of this to
5108         mini/.
5109
5110         * object.c (mono_get_addr_from_ftnptr): Ditto.  
5111
5112 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5113
5114         * metadata-verify.c (parse_return_type): Proper byref check.
5115         * metadata-verify.c (is_valid_method_signature): Check for zero arity
5116         generic signatures and method params.
5117
5118 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5119
5120         * metadata-verify.c (decode_signature_header): Fix bounds check.
5121
5122         * metadata-verify.c (parse_custom_mods): Check custom mods.
5123
5124         * metadata-verify.c (parse_type): Do initial basic verification
5125         of valid values.
5126         
5127         * metadata-verify.c (is_valid_method_signature): Parse the generic
5128         param count.
5129
5130 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5131
5132         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5133         discarded based on their most specific definition so we set the method_slots
5134         array before checking if the method is acceptable or not.
5135
5136         Fixes #506757.
5137
5138 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5139
5140         * icall.c: Free the old array when resizing a mono_ptr_array.
5141
5142 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5143
5144         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5145         for the hashes whose keys are managed objects.
5146
5147 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5148
5149         * object-internals.h, threads.c: Set the execution context on
5150         thread start here, not in corlib.
5151
5152         * appdomain.c: Bump corlib version.
5153
5154 2009-05-27  Martin Baulig  <martin@ximian.com>
5155
5156         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5157         if `_mono_debug_using_mono_debugger' is set to make things work
5158         properly when embedding Mono.
5159
5160 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5161
5162         * class.c (mono_class_setup_fields): Don't mark simd types as having
5163         16 bytes alignment as the whole runtime doesn't support.
5164
5165 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5166
5167         * metadata-verify.c (safe_read): Use endian safe read macros.
5168
5169 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5170
5171         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5172         it is read-only when using full aot.
5173
5174 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5175
5176         * metadata-verify.c (is_valid_method_signature): Verify parts
5177         of the return type. Provide an error message in case of failure.
5178
5179 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5180
5181         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5182
5183 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5184
5185         * metadata-verify.c: Include the size prefix in the bounds check.
5186
5187 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5188
5189         * icall.c: Remove warnings.
5190
5191         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5192         prevent auto-detection based on GCC defines.
5193
5194         Add PS3
5195
5196         * metadata-verify.c: Do not include signal.h
5197
5198         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5199         messages.  Not sure why the g_assert_not_reached is not enough to
5200         quiet the compiler.
5201         
5202
5203         * appdomain.c: Remove code that is not used when
5204         DISABLE_SHADOW_COPY is set.
5205
5206         * image.c: use g_getenv
5207
5208 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5209
5210         * reflection.c: Remove code that it not used with
5211         DISABLE_REFLECTION_EMIT is defined.
5212
5213 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5214
5215         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5216         invoke wrappers.
5217
5218 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5219
5220         * socket-io.c
5221         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5222         the ifdef here and instead put that on io-layer
5223
5224 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5225
5226         * metadata-verify.c: Verify the generic param constraint table.
5227
5228 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5229
5230         * metadata-verify.c (verify_generic_param_table): Fix
5231         thinko on the valid flags bits for generic params.
5232
5233 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5234
5235         * metadata-verify.c: Verify the methodspec table.
5236
5237 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5238
5239         * metadata-verify.c: Verify the generic param table.
5240
5241 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5242
5243         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5244
5245 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5246
5247         * sgen-gc.c: Use generation enum more consistently and use the
5248         correct generation in mono_gc_register_for_finalization().
5249
5250 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5251
5252         * metadata-verify.c: Verify the nested class table.
5253
5254 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5255
5256         * metadata-verify.c: Verify the manifest resource table.
5257
5258 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5259
5260         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5261
5262 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5263
5264         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5265         wrappers, this is now done in the JIT.
5266         
5267         * class.c (mono_set_generic_sharing_supported): New internal function.
5268         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5269
5270 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5271
5272         * metadata-verify.c: Verify the exported type table.
5273
5274 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5275
5276         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5277
5278 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5279
5280         * metadata-verify.c: Verify the file table.
5281
5282 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5283
5284         * metadata-verify.c (verify_assembly_table): Fix an error message.
5285
5286         * metadata-verify.c: Verify the assemblyref table.
5287
5288 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5289
5290         * metadata-verify.c (verify_assembly_table): Fix the valid
5291         bits mask for flags.
5292
5293 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5294
5295         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5296         generic methods as well.
5297
5298 2009-05-15  Geoff Norton  <gnorton@novell.com>
5299
5300         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5301         use-case and is significantly more performant than the wapi layer.
5302
5303 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5304
5305         * metadata-verify.c: Verify the assembly table.
5306
5307 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5308
5309         * metadata-verify.c: Fix rows limit check.
5310
5311 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5312
5313         * metadata-verify.c: Verify the fieldrva table.
5314
5315 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5316
5317         * sgen.c: Speed up weak links and finalizers by grouping them by
5318         generation.
5319
5320 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5321
5322         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5323         free the old GCHandle (only applies to SGen).
5324
5325 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5326
5327         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5328         mono_metadata_load_generic_params () for non-generic methods.
5329
5330 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5331
5332         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5333         New function for returning a monitor's weak link if it has one.
5334
5335         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5336         one) when clearing a domain.  These can still be around because
5337         the object might not have been collected.
5338
5339 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5340
5341         * gc.c: Fix a warning.
5342
5343 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
5344
5345         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5346         prevous wait that resulted in a deadlock on Windows when initializing
5347         the runtime form DllMain. Also results in improved startup time.
5348         (finalizer_thread): Get rid of thread_started_event.
5349         * threads.c, threads-types.h (mono_thread_create_internal): Return the
5350         resulting MonoThread.
5351
5352         Contributed under MIT/X11 license.
5353
5354 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
5355
5356         * metadata-verify.c: Verify the implmap table.
5357         Don't require that #US and #Strings be present.
5358
5359 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
5360
5361         * security-core-clr.c: Delegate checks are done at creation time,
5362         not a invocation time. Fix exception for Telerik Silverlight demo
5363
5364 2009-05-11  Mark Probst  <mark.probst@gmail.com>
5365
5366         * sgen-gc.c (need_remove_object_for_domain): Remove the special
5367         case for the Thread class.
5368
5369         * threads.c: Do clean-up of abort exception/state in
5370         thread_cleanup() instead of Thread.free_internal().  Also clean up
5371         current_appcontext.  The reason we have to do that is because
5372         those references might point into another domain and if that
5373         domain is unloaded before the thread is finalized, they point to
5374         invalid data.
5375
5376 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
5377
5378         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
5379         stub signatures.
5380         
5381         Contributed unter MIT/X11 license.
5382
5383 2009-05-09  Miguel de Icaza  <miguel@novell.com>
5384
5385         * verify.c, metadata-verifier.c: Add support for disabling the
5386         verifier in some builds.
5387
5388         [ Sorry, my previous commit accidentally commited some work in
5389         progress ]
5390
5391 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5392
5393         * class.c (mono_class_setup_fields): Set class->field.first for
5394         generic instances.
5395
5396 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5397
5398         * metadata-verify.c: Verify the typespec table.
5399
5400 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5401
5402         * metadata-verify.c: Verify the module table.
5403
5404 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5405
5406         * metadata-verify.c: Verify the methodimpl table.
5407
5408 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5409
5410         * metadata-verify.c: Verify the property table.
5411
5412 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5413
5414         * debug-helpers.c (mono_method_desc_match): Add support for generic
5415         glob patterns.
5416
5417 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
5418
5419         * metadata-verify.c: Verify the propertymap table.
5420
5421 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
5422
5423         * metadata-verify.c: Verify the event table.
5424
5425         * metadata-verify.c (search_sorted_table): Fix offset
5426         calculation.
5427
5428 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5429
5430         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
5431
5432 2009-05-01  Mark Probst  <mark.probst@gmail.com>
5433
5434         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
5435         because mono_delegate_free_ftnptr() needs it.
5436
5437 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5438
5439         * metadata-verify.c: Verify the eventmap table.
5440
5441 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5442
5443         * metadata-verify.c: Verify the standalonesig table.
5444
5445 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5446
5447         * metadata-verify.c: Verify the field layout table.
5448
5449 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5450
5451         * class.c (mono_type_get_name_recurse): Don't crash
5452         for ownerless generic params.
5453
5454         * debug-helpers.c (mono_type_get_desc): Correct the format
5455         for ownerless generic params.
5456
5457 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5458
5459         * metadata-verify.c: Verify the class layout table.
5460
5461 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5462
5463         * metadata-verify.c: Verify the decl security table.
5464
5465 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5466
5467         * domain.c (mono_domain_set_internal_with_options): Don't do
5468         anything if the old domain is the same as the old one.  Fixes
5469         #499326.
5470
5471 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5472
5473         * appdomain.c: Deregister the reflection_info roots when unloading
5474         a domain.
5475
5476         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
5477         memory allocated by a domain and frees its disappearing links.
5478
5479         * boehm-gc.c, null-gc.c: Empty implementation of
5480         mono_gc_clear_domain().
5481
5482 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5483
5484         * appdomain.c (clear_cached_vtable): Free the static fields memory
5485         block.
5486
5487 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5488
5489         * gc.c: Set the correct domain when invoking finalizers.
5490
5491         * appdomain.c: Set the correct domain when creating threads.
5492
5493 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5494
5495         * sgen-gc.c: Fix skip size for vectors.
5496
5497 2009-05-03  Martin Baulig  <martin@ximian.com>
5498
5499         * mono-debug-debugger.c
5500         (mono_debugger_check_breakpoints): Check class init handlers even
5501         if we don't have any method load handers.
5502
5503 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
5504
5505         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
5506         returning refonly assemblies if refonly is FALSE. Fixes #499013.
5507
5508 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5509
5510         * metadata-verify.c: Verify the field marshal table.
5511
5512 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5513
5514         * metadata-verify.c: Verify the custom attribute table.
5515
5516 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5517
5518         * metadata-verify.c: Verify the constant table.
5519
5520 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5521
5522         * metadata-verify.c: Verify the memberef table.
5523
5524 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5525
5526         * metadata-verify.c (get_coded_index_token): Remove
5527         dead argument.
5528
5529 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5530
5531         * metadata-verify.c: Verify the interfaceimpl table.
5532
5533 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5534
5535         * verify.c: Improve error message.
5536
5537         * debug-helpers.c (mono_type_get_desc): Harden the code that
5538         deals with VAR and MVAR.
5539
5540 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
5541
5542         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
5543         part of #498692.
5544
5545 2009-04-23 Tom Hindle <tom_hindle@sil.org>
5546
5547         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
5548         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
5549
5550 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
5551
5552         * security-core-clr.c: Avoid redundant checks for platform code, 
5553         e.g. check for method and for class (very common) and check
5554         for class and outer class (less common)...
5555
5556 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
5557
5558         * reflection.c: Avoid returning random cattrs for synthetic methods.
5559         Fixes #498545.
5560
5561 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5562
5563         * assembly.c: assemblies in the GAC should never be shadow-copied.
5564
5565 2009-04-26  Mark Probst  <mark.probst@gmail.com>
5566
5567         * domain.c, domain-internals.h: Disable
5568         track_resurrection_{objects,handles}_hash in MonoDomain if using
5569         SGen.
5570
5571 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5572
5573         * metadata-verify.c: Verify the param table.
5574
5575 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5576
5577         * metadata-verify.c (verify_typedef_table): Range check FieldList and
5578         MethodList.
5579
5580         * metadata-verify.c (verify_method_table): Proper check the ParamList
5581         field.
5582
5583 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5584
5585         * metadata-verify.c (verify_method_table): Check for runtime
5586         implemented functions such as delegate .ctors. Remove spurious
5587         printf.
5588         
5589 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5590
5591         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
5592
5593 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5594
5595         Don't allocate MonoGenericInfo for ownerless generic params.
5596         * class-internals.h (MonoGenericParam::info): Move field to ...
5597         (MonoGenericParamFull): ... this.  New struct.
5598         (MonoGenericContainer::type_params): Change type to
5599         MonoGenericParamFull.
5600         (MonoGenericParam, MonoGenericContainer): Update accessors.
5601         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
5602         'info' field for ownerless generic param.
5603         (mono_metadata_load_generic_params): Update to changes.
5604         * reflection.c (mono_reflection_create_generic_class): Likewise.
5605         (reflection_methodbuilder_to_mono_method): Likewise.
5606         (mono_reflection_initialize_generic_parameter): Likewise.
5607
5608 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5609
5610         Don't use MonoGenericParamInfo for ownerless generic params.
5611         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
5612         use ParamInfo class at all.
5613         (mono_class_from_generic_parameter): Use them.
5614         (make_generic_param_class): Fix a couple of instances where 'pinfo
5615         == NULL' wasn't handle.
5616
5617 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5618
5619         * class.c (make_generic_param_class): Carve out of ...
5620         (mono_class_from_generic_parameter): ... here.
5621
5622 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5623
5624         Simplify mono_class_from_generic_parameter
5625         * class-internals.h (MonoGenericParamInfo::token): New field.
5626         * metadata.c (mono_metadata_load_generic_params): Initialize it
5627         from metadata.
5628         * class.c (mono_class_from_generic_parameter): Use it instead of
5629         searching through metadata.
5630
5631 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5632
5633         * metadata-verify.c: Add verification of the method table.
5634
5635 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5636
5637         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
5638         Delegate::Invoke optimization.
5639
5640 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5641
5642         * appdomain.c (mono_domain_create_appdomain_internal): Free the
5643         string returned by get_shadow_assembly_location_base.
5644
5645         * appdomain.c (get_shadow_assembly_location_base): Add a comment
5646         about caller's ownership.
5647
5648 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5649
5650         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
5651         reflection memory on domain unload.
5652
5653         * domain.c (mono_domain_free): Don't free refobject_hash, let the
5654         reflection cleanup code do it.
5655
5656         * domain-internals.h: Add mono_reflection_cleanup_domain.
5657
5658         This fixes a memory leak for managed mirrors of reflection objects
5659         on domain unload. 
5660
5661 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5662
5663         * metadata-verify.c: Implement more verification of the field table.
5664
5665 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5666
5667         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
5668         doesn't try to parse the input assembly, which can be broken.
5669
5670 2009-04-23  Mark Probst  <mark.probst@gmail.com>
5671
5672         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
5673         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
5674         by using the lowest bit in the link to store whether the link is
5675         tracked.  Move the track_resurrection hashes into boehm-gc.c.
5676
5677 2009-04-22  Miguel de Icaza  <miguel@novell.com>
5678
5679         * Makefile.am: Split the console support in platform specific code
5680         and put together a framework for making this easy in the future so
5681         that we can start splitting code instead of having a mess of PLATFORM_WIN32
5682
5683 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5684
5685         * pedump.c: Fix a warning.
5686
5687 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5688
5689         * verify.c (mono_delegate_type_equal): Compare valuetypes using
5690         mono_class_from_mono_type to avoid bad interactions with the dual representation
5691         of the generic type definition.
5692
5693 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5694
5695         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
5696         get the MonoClass for the call context type as it might be a generic
5697         instance.
5698
5699         Fixes #491483.
5700
5701 2009-04-21  Mark Probst  <mark.probst@gmail.com>
5702
5703         * object-internals.h: The Thread object has no execution_context
5704         member anymore.
5705
5706         * threads.c, threadpool.c, threads-types.h: Accessor functions for
5707         the execution context.
5708
5709         * appdomain.c: Bump corlib version.
5710
5711 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5712
5713         * verify.c (do_newobj): Improve error message.
5714
5715 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5716
5717         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
5718         is nested in the filter block.
5719
5720         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
5721         block is not fully nested.
5722
5723         Fixes #495656.
5724
5725 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5726
5727         * verify.c (verify_type_compatibility_full): Compare MonoClass and
5728         not MonoType to check for equality of valuetypes as the generic type
5729         definition allows for two different encodings: the generic type definition
5730         class or a generic instance over the GTD arguments.
5731
5732         Fixes #496175.
5733
5734 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5735
5736         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
5737
5738         * verify.c (do_initobj): Improve error message.
5739
5740 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5741
5742         * metadata-verify.c: Enable pe verification as the issue with #496453
5743         is that the authenticode data directory have a different unspecified
5744         format. Ignore it for now.
5745
5746         * pedump.c: Run the metadata verifier together with the IL verifier.
5747
5748         Fixes ##496453.
5749
5750 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5751
5752         * metadata-verify.c: Temporarily disable pe verification due to #496453.
5753
5754 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5755
5756         * class.c (can_access_type): Check visibility against
5757         the element type for pointers and arrays.
5758
5759         Fixes #496150.
5760
5761 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5762
5763         * metadata-verify.c: Fix cli and table verification to use information
5764         from the MonoImage. A lot of duplicated code got killed.
5765
5766 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5767
5768
5769         This patch starts to integrate the metadata verifier with the runtime code.
5770
5771         This patch causes major regression in functionality for the metadata verifier
5772         as cli and table verification are disabled since they require to be ported to
5773         use MonoImage information.
5774
5775         * image.c (do_mono_image_load): Split the code in this function
5776         into mono_image_load_pe_data and mono_image_load_cli_data.
5777         Add     care_about_pecoff parameter to not load pecoff data.
5778         Call into the metadata verifier for pecoff and cli verification.
5779
5780         * image.c (mono_image_open_raw): New function that doesn't perform
5781         any parsing of the image contents.
5782         
5783         The reason for the 3 new functions is to give pedump better control
5784         into the interaction with the verifier.
5785
5786         * metadata-internals.h: Add new functions from image.c as part of the
5787         internal mono API.
5788
5789         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
5790         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
5791         to make those functions work together with the runtime.
5792
5793         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
5794         true if the image needs to be verified.
5795
5796         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
5797
5798         * pedump.c: Use new metadata verifier API.
5799
5800 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
5801
5802         * object.c (mono_install_vtable_trampoline): Make this receive a
5803         trampoline creation function instead of trampoline, allowing the JIT
5804         to use a different trampoline for each vtable.
5805
5806 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5807
5808         * object.c (mono_raise_exception): Don't reset the thread abort
5809         exception state here.
5810
5811 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5812
5813         * icall-def.h: New icall for getting the thread abort exception
5814         state for a thread.
5815
5816         * object.c, thread.c, object-internals.h: A thread's abort
5817         exception state is now a GC handle.  To get the object it stands
5818         for, we must move it into the current app domain, if it's
5819         different than the one where it originated from.
5820
5821         * appdomain.c: Bump corlib version.
5822
5823         * domain.c, domain-internals.h: New function for setting the
5824         domain and migrate the thread abort exception or not.
5825
5826 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5827
5828         * metadata-verify.c: Add initial verification of the
5829         field table.
5830
5831 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5832
5833         * metadata-verify.c: Add a macro to conditionally enable
5834         dumping of verification information. Add  make_coded_token
5835         and search_sorted_table to enable search sorted tables
5836         by a given coded token.
5837
5838 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5839
5840         * metadata-verify.c: Add array mapping from table index
5841         to description offset. Add get_col_offset and get_col_size
5842         functions.
5843
5844 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5845
5846         * metadata-verify.c: Add remaining table descriptions offsets.
5847         Add remaining coded index descriptions.
5848
5849 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5850
5851         * metadata-verify.c: Fixed constant table description.
5852         Fixed calculation of HasCustomAttribute coded index size.
5853         Fixed calculation of size for many table indexes. 
5854
5855 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5856
5857         * pedump.c (dump_metadata): Dump table offset instead
5858         of useless pointer in memory.
5859
5860 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5861
5862         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
5863
5864 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5865
5866         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
5867         a missing of for interface types.
5868
5869 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5870
5871         * metadata-verify.c (verify_pe_optional_header): Add comment of why
5872         the code is commented.
5873
5874         * metadata-verify.c (verify_resources_table): Remove spurious printf
5875         and don't fail if there are unmanaged resources. Gmcs generates a useless
5876         one     for all assemblies - I bet it's some MS compatibility junk.
5877
5878 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5879
5880         * metadata-verify.c (verify_typedef_table): Verify the extends field.
5881
5882         * metadata-verify.c (mono_image_verify): Add a is_corlib.
5883
5884         * verify-internals.h: Same.
5885
5886         * pedump.c: Fix for mono_image_verify new signature.
5887
5888 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5889
5890         * metadata-verify.c (verify_typedef_table): Verify for some invalid
5891         flags combinations.
5892
5893 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5894
5895         * metadata-verify.c (verify_module_table): Ignore the generation field.
5896
5897 2009-04-15  Martin Baulig  <martin@ximian.com>
5898
5899         * debug-mono-symfile.c
5900         (mono_debug_symfile_lookup_location): Don't print a warning for
5901         unknown extended opcodes if they're within 0x40 and 0x7f.
5902
5903 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
5904
5905         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
5906         invoke signatures returning an enum. Fixes #494847.
5907
5908 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5909
5910         * metadata-verify.c: Initial code to verify the typedef table.
5911
5912 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5913
5914         * verify.c (mono_method_verify): Don't fail if an unconditional branch
5915         with non empty stack happens before the beginning of a try block.
5916
5917         Fixes #494812.
5918
5919 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5920
5921         * metadata-verify.c: Verify typename and typenamespace fields of
5922         the typeref table.
5923
5924 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
5925
5926         * metadata-verify.c: Initial code to verify the typeref table.
5927
5928 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
5929
5930         * verify.c (verify_delegate_compatibility): Fix error message.
5931
5932 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
5933
5934         * security-core-clr.c: Fix typo
5935
5936 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5937
5938         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
5939         a MonoGHashTable to keep its values alive.
5940         (emit_marshal_boolean): Fix a warning.
5941
5942 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5943
5944         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
5945         not have any interface configured for IPv4/IPv6.
5946
5947 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5948
5949         * assembly.c: fix typo in error message.
5950
5951 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5952
5953         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
5954         allocating the location holding the this argument to prevent
5955         'too many root sets' errors.
5956
5957         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
5958         to mark fields as special static.
5959         (mono_field_static_get_value): Handle special static fields.
5960         (mono_field_static_set_value): Ditto.
5961
5962         * class-internals.h (struct _MonoClassField): Document this.
5963
5964 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5965
5966         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
5967           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
5968           case.  This will handle when managed code returns null to native code.
5969
5970         Code is contributed under MIT/X11 license.
5971
5972 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5973
5974         * object.c (build_imt_slots): Changing a free to a g_free to match
5975           the g_malloc0 in add_imt_builder_entry that allocated this memory.
5976
5977         Code is contributed under MIT/X11 license.
5978
5979 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5980
5981         * marshal.c (emit_marshal_boolean): Adding code to ensure that
5982           the correct TRUE value is passed through the marshaling layer.
5983
5984         Code is contributed under MIT/X11 license.
5985
5986 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
5987
5988         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
5989         correctly. Fixes #492330.
5990         
5991         * marshal.c: Fix the embedding of object pointers into JITted code in
5992         the native-to-managed wrappers by allocating some GC tracked memory, and
5993         embedding the address of that.
5994
5995 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
5996
5997         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
5998         pointers into the vtable.
5999
6000 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6001
6002         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
6003
6004         * verify.c (verify_ldftn_delegate): Improve error message.
6005
6006 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6007
6008         * reflection.c (my_mono_class_from_mono_type): Remove.
6009
6010 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6011
6012         Prepare to reduce memory usage of owner-less generic parameters (1/n)
6013         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
6014         and constraints fields into ...
6015         (MonoGenericParamInfo): ... this.
6016         (mono_generic_param_info, mono_generic_container_get_param_info):
6017         New accessors.
6018         * class.c, debug-helpers.c, icall.c: Update to changes.
6019         * metadata.c, reflection.c, verify.c: Likewise.
6020
6021 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
6022
6023         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
6024
6025         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
6026         
6027         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
6028         booleans with sbytes.
6029
6030 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6031
6032         * class.c (can_access_instantiation): Verify accesibility of element types
6033         for arrays and pointers.
6034
6035         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
6036
6037         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
6038
6039         Fixes #493068.
6040
6041 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6042
6043         * verify.c (do_invoke_method): Improve error messages.
6044
6045 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
6046
6047         * verify.c:  Fixing the MSVC build.
6048
6049         Code is contributed under MIT/X11 license.
6050
6051 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
6052
6053         * security-core-clr.c: Simplify get_reflection_caller not to call
6054         mono_method_get_last_managed (another stack walk) and adjust the
6055         callers to handle a (should not happen) NULL return value.
6056
6057 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6058
6059         Add accessors to some MonoGenericParam fields
6060         * class-internals.h (mono_generic_param_owner): New accessor.
6061         (mono_generic_param_num): Likewise.
6062         (mono_type_get_generic_param_owner): New helper.
6063         (mono_type_get_generic_param_num): New helper.
6064         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
6065
6066 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6067
6068         * class-internals.h (mono_generic_container_get_param): New wrapper.
6069         * class.c, icall.c, metadata.c, verify.c: Use it.
6070
6071 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6072
6073         Fix gtest-252.cs
6074         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6075         the standard case/loop.  In particular, don't complain about
6076         references to generic type definitions.
6077
6078 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
6079
6080         * debug-helpers.c (dis_one): Decode string arguments.
6081
6082 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6083
6084         * pedump.c (dump_verify_info): Dump type name correctly.
6085
6086 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6087
6088         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6089         are larger than code size.
6090
6091         This can happen in valid code if the try/catch block is not followed by any instruction
6092         and do a backward branch on the leave instruction.
6093
6094         Fixes #492494.
6095
6096 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
6097
6098         * security-core-clr.c: Fix typo while comparing second method names
6099         in can_avoid_corlib_reflection_delegate_optimization
6100
6101 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6102
6103         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6104
6105         Fixes #487738.
6106
6107 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6108
6109         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6110         a MVAR using a class context.
6111
6112         Fixes #490335.
6113
6114 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
6115
6116         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6117
6118         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6119
6120         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6121         functions supplied by the JIT for the SGEN GC.
6122
6123         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6124         
6125 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6126
6127         monitor.c (mono_monitor_try_enter_internal):
6128         Added calls to profile monitor contentions.
6129         Also duplicated a small piece of code (the "get the monitor" logic)
6130         from the fast path to the slow path, and changed the relevant goto
6131         statements, so that monitor acquisition events can be emitted from the
6132         slow path (this is by Paolo Molaro).
6133
6134 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6135
6136         * profiler.c, profiler.h, profiler-private.h:
6137         Added support for profiling monitor contentions.
6138
6139 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6140
6141         * metadata-verify.c: Verify the modules table.
6142
6143 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6144
6145         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6146         using the context of the method been verifier and not of the method been called.
6147
6148         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6149         safely inflate generic types. 
6150
6151 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6152
6153         * security-core-clr.c: Change the strategy for checking the 
6154         "reflection using delegates optimization" to avoid unneeded 
6155         attributes in multiple class libraries.
6156
6157 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6158
6159         * sgen-gc.c: Remove object element in the disappearing link struct
6160         by storing the object pointer in the link.
6161
6162 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6163
6164         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6165
6166 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6167
6168         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6169
6170         * verify.c (mono_method_verify): Do proper bounds checking of exception
6171         clause ranges.
6172
6173 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6174
6175         * loader.c (mono_field_from_token): Don't crash if the field parent could
6176         not be decoded.
6177
6178 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6179
6180         * sgen-gc.c: Execute critical finalizers after ordinary
6181         finalizers.
6182
6183         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6184         mono_defaults.
6185
6186 2009-03-31 Jb Evain <jbevain@novell.com>
6187
6188         * verify.c (do_ldstr): don't check if a string is in the user strings
6189         heap if the current image is dynamic.
6190
6191 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6192
6193         * sgen-gc.c: Wait until the last finalizer has executed when
6194         returning from WaitForPendingFinalizers.
6195
6196 2009-03-31  Martin Baulig  <martin@ximian.com>
6197
6198         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6199         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6200         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6201         (mono_debugger_event_create_appdomain): New function.
6202         (mono_debugger_event_unload_appdomain): New function.
6203
6204         * appdomain.c (mono_domain_create_appdomain_internal): Call
6205         mono_debugger_event_create_appdomain().
6206
6207 2009-03-31  Martin Baulig  <martin@ximian.com>
6208
6209         * mono-debug-debugger.c
6210         (mono_debugger_register_class_init_callback): Also register the
6211         class init callback if the class is already initialized to make
6212         things work with shadow copied assemblies.
6213
6214 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6215
6216         * security-core-clr.c
6217         (mono_security_core_clr_ensure_reflection_access_field): Let 
6218         critical code access the field (just like we do for methods). Use
6219         check_field_access helper.
6220         (mono_security_core_clr_ensure_reflection_access_method): Use 
6221         check_field_access helper.
6222
6223 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6224
6225         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6226         call the run-finalize function directly.
6227
6228         * gc.c, gc-internal.h: Make run_finalize() non-static.
6229
6230 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6231
6232         * sgen-gc.c: Use a separate struct for disappearing links.
6233
6234 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6235
6236         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6237         * MaxIOVectorLength enabled, just ignore them.
6238         Fixes bug #349688.
6239
6240 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6241
6242         * metadata-verify.c: Fix eglib build.
6243
6244 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6245
6246         * threads-types.h: Fix the win32 build.
6247
6248 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6249
6250         * class.c: move coreclr inheritance/override checks to 
6251         security-core.clr.c
6252         * security-core.clr.c|h: add code from class.c with additional
6253         documentation. Fix override check when the method is not critical.
6254
6255 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6256
6257         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6258         (match_class): Ditto.
6259
6260 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6261
6262         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6263
6264         * metadata-verify.c: Implement table layout row size calculation. Verify
6265         the total size of the tables.
6266
6267 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6268
6269         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6270
6271 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6272
6273         * appdomain.c:
6274         * console-io.[ch]: added new mono_console_init() to make sure that
6275         file descriptors 0, 1 and 2 are opened.
6276         Bug #489019 fixed.
6277
6278 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6279
6280         * appdomain.h: Export a new callback type and a new function to
6281         set this callback. This allow a mono host to provide it's own
6282         definition for "platform code".
6283         * metadata-internals.h: Add a core_clr_platform_code flag on 
6284         _MonoImage to (cache and) know if it is representing platform 
6285         code.
6286         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6287         on platform code images.
6288         * security-core-clr.c|h 
6289         (mono_security_set_core_clr_platform_callback): Allow the host
6290         to provide it's own platform check definition.
6291         (mono_security_core_clr_determine_platform_image): Detect if an 
6292         image is platform code (using the specified callback).
6293         (mono_security_core_clr_is_platform_image): Return cached value 
6294         for platform code.
6295
6296 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6297
6298         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6299         which has different parameter types for the 'tid' argument in windows and
6300         the io-layer.
6301
6302         * appdomain.c attach.c threads.c: Use the new helper.
6303
6304 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6305
6306         * metadata-verify.c: Verify valid table bits.
6307
6308 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6309
6310         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6311
6312         * metadata-verify.c: Add initial table schema verification.
6313
6314 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6315
6316         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6317         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6318         #488383.
6319
6320         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6321
6322         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6323
6324 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6325
6326         * security-core-clr.c: Add/update documentation
6327
6328 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6329
6330         * marshal.c (emit_marshal_object): Generate code to throw an exception
6331         instead of throwing it. Fixes #488670.
6332
6333 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6334
6335         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6336         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6337         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6338         and add a call to mono_security_core_clr_ensure_delegate_creation
6339         to do the extra checks required by CoreCLR.
6340         * security-core-clr.c|h: Add function to check delegate creation,
6341         both in the binding and accessibility, under CoreCLR.
6342
6343 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
6344
6345         * reflection.c (mono_reflection_create_dynamic_method): when 
6346         coreclr is enabled make sure that every resolved object are
6347         checked (e.g. field and method access).
6348         * security-core-clr.c|h: Add function to check objects resolved
6349         when a dynamic method is created.
6350
6351 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6352
6353         * metadata-verify.c: Cache directory rva translations.
6354
6355         * metadata-verify.c: Add cli-header and streams verification.
6356
6357 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6358
6359         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
6360         the wrong offset (8 instead of 6).
6361
6362 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6363
6364         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
6365         methods, return the native function address itself. Fixes
6366         #487758.
6367
6368 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6369
6370         * console-io.c: some of the values for control characters might not be
6371         present.
6372
6373 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
6374
6375         * exception.c|h: Add helpers to create [Field|Method]AccessException
6376         * icall.c: Add required coreclr check calls for field reflection.
6377         Move the existing (method) check logic into security-core-clr.c
6378         * security-core-clr.c: Add functions to check if the access of a
6379         field or method is allowed when reflecting under coreclr. This is
6380         mostly done using a stack walk to find the "real" caller: i.e. the
6381         code that is calling the reflection
6382
6383 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
6384
6385         * gc-internal.h: Change location of gc_wrapper.h
6386
6387 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
6388
6389         * class.c: Simplification to coreclr checks for overrides that
6390         makes it easier to set breakpoints.
6391
6392 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
6393
6394         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
6395         mono_security_core_clr_method_level): Avoid potential 
6396         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
6397         user/application code) and make it easier to set breakpoints
6398
6399 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6400
6401         * metadata-verify.c: Reject cli header tables that mono don't handle.
6402
6403 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6404
6405         * pedump.c: Fix CLI header dumping.
6406
6407 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6408
6409         * metadata-verify.c: More CLI header verification.
6410
6411 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6412
6413         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
6414
6415 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6416
6417         * metadata-verify.c: Initial verification of the CLI header.
6418
6419 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6420
6421         * metadata-verify.c (verify_resources_table): Fix verification of zero
6422         sized resource section and id entries count.
6423
6424 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
6425
6426         * icall.c: Handle user types in many Type icalls. Fixes #486303.
6427
6428 2009-03-17  Jb Evain  <jbevain@novell.com>
6429
6430         * profiler.c: call mono_gc_base_init from mono_profiler_load.
6431
6432 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
6433
6434         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
6435         (mono_gc_make_descr_for_array): Ditto.
6436
6437 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6438
6439         * verify.c (mono_verifier_is_class_full_trust): Add support for
6440         CoreCLR security mode where trusted assemblies are defined as
6441         "platform code".
6442
6443 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6444
6445         * metadata-verify.c: Add minimal PECOFF resource verification.
6446
6447 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6448
6449         * metadata-verify.c: Be less restrictive with some coff fields.
6450
6451 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6452
6453         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
6454         params as boxed values on stack. Fixes #485706.
6455
6456 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6457
6458         * console-io.c: the termios values may vary in different flavors of unix.
6459
6460 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6461
6462         * console-io.[ch]: return the entire set of control characters when
6463         initializing the terminal.
6464         * appdomain.c: bump corlib version.
6465
6466 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
6467
6468         * mono-perfcounters.c: added support for in-process custom
6469         performance counters.
6470
6471 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6472
6473         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
6474
6475 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6476
6477         * metadata-verify.c: Verify the data pointed by the import table. 
6478
6479 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6480
6481         * metadata-verify.c (load_data_directories): Store data
6482         directory contents.
6483
6484         * metadata-verify.c: Verify the import table. 
6485
6486 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6487
6488         * metadata-verify.c: Verify data directories.
6489
6490 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6491
6492         * metadata-verify.c: Check section header flags.
6493
6494 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6495
6496         * appdomain.c: if the assembly name is a shadow-copied file, return
6497         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
6498         in mono_make_shadow_copy.
6499         * icall.c: if the assembly name is a shadow-copied file, replace it
6500         with the original assembly path.
6501
6502         Bug #484244 fixed. NUnit tests for corlib can be run without
6503         --noshadow now.
6504
6505 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
6506
6507         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
6508         entries when the table is reallocated.
6509
6510         * icall.c: Allocate the memory used by the mono_ptr_array macros using
6511         mono_gc_alloc_fixed () since it contains GC refs.
6512
6513 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
6514
6515         * reflection.c (ensure_complete_type): New helper function to call
6516         type resolve handlers for unfinished dynamic types.
6517         (resolve_object): Call it for MonoClassFields. Fixes #483852.
6518
6519 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
6520
6521         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
6522         #483247.
6523
6524 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
6525
6526         * appdomain.c (get_shadow_assembly_location): Fix memleak.
6527
6528 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
6529
6530         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
6531         between GCHandles of type WeakTrackResurrection and the objects they
6532         point to.
6533
6534         * gc.c: Partly implement the sematics of GCHandles of type 
6535         WeakTrackResurrection: these handles should only be cleared after the
6536         finalizer of the object they are pointing to has ran.
6537
6538 2009-03-06  Mark Probst  <mark.probst@gmail.com>
6539
6540         * icall.c: Partially revert r126631 because using the jump
6541         trampolines for generic shared methods makes it superfluous.
6542
6543 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
6544
6545         * threads.c (handle_store): Create the 'threads' hash table with the proper
6546         MONO_HASH_VALUE_GC type.
6547
6548 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
6549
6550         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
6551         FIRST_GC_TRACKED.
6552
6553         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
6554         and LAST_GC_TRACKED as a GC root.
6555
6556         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
6557
6558         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
6559         the static data even if it consists of 1 reference.
6560
6561         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
6562         if there is a GC descriptor.
6563
6564         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
6565         instead of through the GC since they contain no object references.
6566
6567 2009-03-05  Mark Probst  <mark.probst@gmail.com>
6568
6569         * generic-sharing.c (instantiate_other_info): Always return a jump
6570         trampoline for method code.
6571
6572 2009-03-05  Marek Habersack  <mhabersack@novell.com>
6573
6574         * culture-info-tables.h: generated to include the en-tt culture.
6575
6576 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6577
6578         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
6579         capture the thread context.
6580
6581         * object.c (mono_async_result_new): Cache the invoke wrappers to
6582         ExecutionContext::Capture.
6583
6584 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6585
6586         * marshal.h: Add a prototype for what mono_compile_method returns
6587         for invoke wrappers.
6588
6589         * gc.c: Use the new prototype declaration.
6590
6591 2009-03-04  Geoff Norton  <gnorton@novell.com>
6592
6593         * boehm-gc.c: Add some MONO_LOG tracing for the GC
6594         * gc-internal.h:
6595         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
6596
6597 2009-03-04  Martin Baulig  <martin@ximian.com>
6598
6599         * mono-debug.h
6600         (mono_debugger_runtime_invoke): Removed.
6601
6602         * mono-debug-debugger.c
6603         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
6604
6605 2009-03-02  Martin Baulig  <martin@ximian.com>
6606
6607         * mono-debug.h
6608         (mono_debugger_unhandled_exception): Removed.
6609         (mono_debugger_handle_exception): Removed.
6610         (mono_debugger_throw_exception): Removed.
6611
6612         * mono-debug.c
6613         (mono_debug_debugger_version): Bump to 5.
6614
6615         * mono-debug-debugger.c: Moved the exception handling code to
6616         ../mini/debug-mini.c
6617
6618 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6619
6620         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
6621         finalize_objects_hash.
6622
6623         * gc.c: Use the separate lock to access the finalize_objects_hash field.
6624         
6625         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
6626         field.
6627
6628         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
6629         cache.
6630
6631         * image.c (mono_image_close): Free it.
6632         
6633         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
6634         allowing a creation of a wrapper which invokes its method using a CALLVIRT
6635         on the this argument.
6636
6637         * gc.c (run_finalize): Optimize the calling of the finalizers.
6638
6639 2009-03-03  Martin Baulig  <martin@ximian.com>
6640
6641         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
6642         of the `MonoGenericInst' changes.
6643
6644 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6645
6646         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
6647         mono_array_class_get_cached to reduce locking contention. Extract
6648         a domain var.
6649
6650         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
6651         intermediary managed arrays. Use caching version of mono_array_new
6652         to allocate the result array.
6653
6654         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
6655
6656         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
6657
6658         * locales.c (create_names_array_idx):  Use mono_array_new_cached
6659         to reduce locking contention.
6660
6661 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6662                 
6663         * object.c (mono_method_add_generic_virtual_invocation): Put back the
6664         thunk builder code for the non-interface case.
6665
6666 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
6667
6668         * object.c (get_generic_virtual_entries): New helper function to collect
6669         the virtual generic method instances which need to be added to an IMT
6670         thunk.
6671         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
6672         Instead of creating a new IMT thunk, reset the vtable slot to the
6673         trampoline, the thunk will be created the next time the trampoline is called.
6674         (build_imt_slots): Add support for virtual generic methods in interfaces by
6675         adding to the IMT thunk all the methods registered using 
6676         mono_method_add_generic_virtual_invocation ().
6677
6678         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
6679         (struct _MonoIMTCheckItem): Ditto.
6680
6681         * object.c (mono_method_add_generic_virtual_invocation): Take a
6682         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
6683         the IMT thunk to include all items.
6684         
6685         * object.c (mono_class_create_runtime_vtable): Add a missing
6686         mono_loader_unlock ().
6687
6688 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6689
6690         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6691
6692         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
6693
6694 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6695
6696         * object-internals.h: Rename _MonoReflectionEvent to
6697         MonoReflectionMonoEvent so it reflects the right managed type.
6698         Add a MonoReflectionEvent that correctly represents System.EventInfo.
6699
6700         * icall.c:
6701         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
6702         type.
6703
6704 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6705
6706         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
6707         intermediary managed arrays. Use caching version of mono_array_new
6708         to allocate the result array.
6709
6710 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6711
6712         * reflection.c: Use cached version of mono_array_new alongside
6713         the mono_reflection_get_custom_attrs_by_type call path.
6714
6715 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6716
6717         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
6718         intermediary managed arrays. Use caching version of mono_array_new
6719         to allocate the result array.
6720
6721         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
6722
6723 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6724
6725         * icall.c: Add small implementation of a growable stack bound array.
6726
6727         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
6728
6729         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
6730         intermediary managed arrays. Use caching version of mono_array_new
6731         to allocate the result array.
6732
6733 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
6734
6735         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
6736         helps Enum::CompareTo to be implemented without reboxing all enums
6737         to their underlying type.
6738 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
6739
6740         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
6741         since it acquires a global lock leading to scalability problems.
6742
6743         * profiler.c: Make the stat profiler work with multiple appdomains, this
6744         currently only works when no appdomains are unloaded.
6745
6746 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6747
6748         * appdomain.c: make the check to avoid copying when the assembly is
6749         already shadow copied actually work.
6750
6751 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
6752
6753         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6754
6755         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
6756         changes to the managed side.
6757
6758 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
6759
6760         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
6761         classes + a separate lock for it, as it is used frequently at runtime, not
6762         just during metadata loading/JIT compilation.
6763
6764         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
6765         for szarrays.
6766         
6767         * object-internals.h (mono_class_from_name_cached): New macro to cache
6768         the results of the lookup locally without having to declare a static
6769         variable to hold it.
6770         (mono_class_get_field_from_name_cached): Ditto.
6771         (mono_array_class_get_cached): Ditto.
6772
6773         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
6774         the new macros.
6775         
6776         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
6777         slower search in metadata.
6778
6779         * pedump.c: Fix a warning.
6780
6781 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
6782
6783         * reflection.c (encode_locals): Add checks for user types.
6784         (method_encode_clauses): Ditto.
6785         (method_encode_code): Ditto.
6786         (mono_image_create_token): Ditto.
6787
6788         * object-internals.h: Change the type of more fields from MonoReflectionType*
6789         to MonoObject*.
6790
6791 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
6792
6793         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
6794         the a thread does not suspend within 100ms.
6795
6796         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
6797         in addition to StopRequested as well.
6798
6799         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
6800
6801         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
6802         search the method_hash before inserting a new entry, to avoid crashes when
6803         the same method is inserted multiple times, causing the old 
6804         MonoDebugMethodInfo structure to be freed by the value dtor function.
6805
6806 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6807
6808         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
6809         SO_EXLUSIVEADDRUSE where available.
6810
6811 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
6812
6813         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
6814         runtime invoke wrappers, this time it is string ctor wrappers, which
6815         pass a dummy string as 'this' instead of their obj argument. Fixes
6816         #478473.
6817
6818 2009-02-21  Jb Evain  <jbevain@novell.com>
6819
6820         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
6821         only get create_culture once.
6822
6823 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
6824
6825         * reflection.c (mono_reflection_setup_internal_class): Move the user type
6826         check before the locking.
6827         
6828         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
6829         (mono_reflection_create_runtime_class): Ditto.
6830         (mono_reflection_sighelper_get_signature_local): Ditto.
6831         (mono_reflection_sighelper_get_signature_field): Ditto.
6832
6833         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
6834         is a System.MonoType object or similar.
6835         (monotype_cast): New helper function to cast a MonoObject to a 
6836         MonoReflectionType object.
6837
6838         * object-internals.h: Change MonoReflectionType* members in structures to
6839         MonoObject* members to force the usage of the monotype_cast () function.
6840
6841         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
6842         structures/arrays. This causes us to assert instead of crashing when 
6843         instances of user defined subclasses of System.Type are encountered.
6844
6845 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6846
6847         * cil-coff.h:
6848         * icall-def.h:
6849         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
6850         win32 resource loaded from a PE file.
6851
6852         * image.c: fix mono_image_lookup_resource.
6853
6854 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6855
6856         * icall-def.h:
6857         * threads-types.h:
6858         * threads.c: added internal call for WaitHandle.SignalAndWait.
6859
6860 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
6861
6862         * cominterop.c : Adding cominterop_type_from_handle and 
6863           registering it as an icall.  Replacing all references
6864           to type_from_handle.
6865
6866         Code is contributed under MIT/X11 license.
6867
6868 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6869
6870         * Makefile.am: Add lock-tracer.h and lock-trace.c.
6871
6872         * appdomain.c: Call the tracer init function.
6873
6874         * domain-internals.h: Enable the tracer for the domain locks.
6875
6876         * image.c: Enable the tracer for image locks.
6877
6878         * loader.c: Enable the trace for the loader lock.
6879
6880         * lock-tracer.h:
6881         * lock-tracer.c: Initial implementation of the lock trace utility.
6882         The tracer requires a compile time define to be enabled and a env var
6883         to be enabled at runtime.
6884
6885 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6886
6887         * domain.c (mono_domain_code_foreach): Improve documentation.
6888
6889 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6890
6891         * appdomain.c:
6892         * generic-sharing.c:
6893         * object.c:
6894         * reflection.c:  Adjust locking order to the new semantics where the loader lock
6895         comes first.
6896
6897 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
6898
6899         * domain.c: Add mono_domain_code_* functions that perform locking
6900         around the domain codeman.
6901
6902         * domain-internals.h: Export those functions.
6903
6904         * object.c: Use new functions instead of acquiring the domain lock.
6905
6906 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
6907
6908         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
6909         delegate. Fixes #477396.
6910
6911 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6912
6913         * reflection.c (create_custom_attr): Get rid of alloca.
6914
6915 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
6916
6917         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
6918           Adding exception handling for all CCW calls.
6919
6920         Code is contributed under MIT/X11 license.
6921
6922 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6923
6924         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
6925
6926         * marshal.c (emit_marshal_boolean): Add null checks to the new 
6927         native->managed marshalling code. Fixes #476247.
6928
6929 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6930
6931         * class.c (mono_class_get_vtable_entry): Move the addition of
6932         static rgctx invoke wrappers for vtable methods here, this simplifies
6933         a lot of code and causes fewer rgctx wrappers to be created.
6934
6935         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
6936         name of the statistics to begin with an uppercase.
6937
6938 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6939
6940         * reflection.c: Revert previous change as it breaks the build.
6941         
6942 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6943
6944         * verify.c: Properly handle SZARRAY element type.
6945
6946         Fixes #474271.
6947
6948 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6949
6950         * reflection.c (mono_image_create_method_token): Correctly encode
6951         MethodDef MemberRefParent token.
6952
6953         Fixes #472845.
6954
6955 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6956
6957         * image.c (mono_image_close): Delete the critical section before
6958         freeing the memory holding it.
6959
6960 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6961
6962         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
6963         Fixes #476257.
6964
6965 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6966
6967         * pedump.c (main): Call mono_marshal_init so pedump
6968         doesn't crash.
6969
6970 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6971
6972         * loader.c (method_from_memberref): Properly fix #474271 and
6973         don't break the runtime bad.
6974
6975 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6976
6977         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
6978         (mono_domain_alloc0): Ditto.
6979
6980 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6981
6982         * loader.c (method_from_memberref): Don't abort if the array
6983         method is not found. A regular loader failure is more informative
6984         and correct.
6985
6986         Fixes #474271.
6987
6988 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6989
6990         *loader.c: Guard MonoImage::method_cache/methodref_cache
6991         using the image lock instead of the loader lock.
6992
6993         * metadata.h: Add comments about which fields are protected by
6994         the image lock.
6995
6996 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6997
6998         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
6999
7000         * generic-sharing.c (mono_method_construct_object_context): Remove the
7001         wrapper_type == NONE assert, it is not needed.
7002
7003 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
7004
7005         * reflection.c (clear_cached_object): New helper function.
7006         (mono_method_clear_object): New function to clear the cached reflection
7007         objects for a dynamic method.
7008
7009         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
7010         Partly fixes # 463323.
7011         
7012 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7013
7014         * class.c:
7015         * loader.c:
7016         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
7017
7018 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7019
7020         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
7021         take the image lock instead of the loader lock.
7022
7023         * metadata-internals.h: Export new functions.
7024
7025 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7026
7027         * domain.c (app_config_parse): Remove another use of stat that is
7028         not necessary as g_file_get_contents already does the presence
7029         check. 
7030
7031 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7032
7033         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
7034
7035         * marshal.c: Move the bstr handling code to cominterop.c.
7036
7037         * marshal.c: Remove some COM interop code missed previously.
7038
7039 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7040
7041         More Paolo patches from the Wii port:
7042         
7043         * security.c: Remove ves_icall_System_Environment_get_UserName
7044         from here.
7045
7046         * icall.c: And put ves_icall_System_Environment_get_UserName
7047         here. 
7048
7049         * appdomain.c (mono_set_private_bin_path_from_config): Remove
7050         redundant call to stat that was only used to test for the file
7051         existence.   Patch from Paolo.
7052
7053         * gc.c (run_finalize): If COM is disabled, do not link in
7054         mono_marshal_free_ccw.
7055
7056         * generic-sharing.c: Use alloca.h here as well.
7057
7058 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
7059
7060         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
7061
7062 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7063
7064         * cominterop.c cominterop.h: New files.
7065
7066         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
7067         function/typedefs which are needed by cominterop.c global.
7068
7069 2009-02-12  Mark Probst  <mark.probst@gmail.com>
7070
7071         * generic-sharing.c: Don't take the loader lock to guard image
7072         mempool allocs.
7073
7074 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7075
7076         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7077         called without the loader lock which is required to guard MonoImage:tokens.
7078
7079 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7080
7081         * class.c:
7082         * metadata.c:
7083         * method-builder.c:
7084         * marshal.c:
7085         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7086
7087 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7088
7089         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7090         Rework the code to use regular mono_image_alloc/0.
7091
7092         * loader.c: Rework the code to use regular mono_image_alloc/0.
7093
7094         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7095
7096 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
7097
7098         * object-internals.h : Fixing a typo in the 
7099           MonoReflectionComVisibleAttribute struct.
7100
7101         * marshal.c (cominterop_com_visible): Check the implemented 
7102           interfaces for ComImport.
7103
7104         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
7105           assume that bools should be treated as VARIANTBOOLs.
7106
7107         * marshal.c (emit_marshal_boolean): Adding cases for 
7108           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7109
7110         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
7111           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7112
7113         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7114           should be treated as VARIANTBOOLs.    
7115
7116         Code is contributed under MIT/X11 license.
7117
7118 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7119
7120         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7121         allocation with the image lock.
7122
7123 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7124
7125         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7126         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7127
7128         * object.c: Add mono_string_to_utf8_image.
7129
7130         * object-internals.h: Export mono_string_to_utf8_image.
7131
7132         * reflection.c: Rework all explicit references to the the image mempool to go thought
7133         the mono_image_alloc set of functions.
7134
7135 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7136
7137         This patch is the third of a series to remove explicit reference of MonoImage::mempool
7138         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7139         and generics-sharing.c.
7140
7141         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7142         as first argument. Note that this function remains broken as it doesn't perform locking around the
7143         mempool allocation.
7144
7145         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7146
7147         * image.c: Add g_slist_append_image.
7148
7149         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7150         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7151
7152         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7153         Fix all related code to do the same.
7154
7155         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7156
7157         * metadata-internals.h: Fix the signatures.
7158
7159 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7160
7161         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7162         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7163         and similar to work using MonoImage.
7164
7165         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7166         MonoMemPool.
7167
7168         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7169
7170         * class.c (mono_metadata_signature_deep_dup): Same.
7171
7172         * class.c (inflate_generic_type): Same.
7173
7174         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7175
7176         * metadata.c (mono_metadata_signature_dup_full): Same.
7177
7178         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7179         mono_metadata_signature_dup_full.
7180
7181         * metadata.c (mono_metadata_type_dup): Same.
7182
7183         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7184
7185         * reflection.c: Same.
7186
7187         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7188
7189         * metadata-internals.h: Fix the signatures.
7190
7191         * class-internals.h: Same.
7192
7193 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7194
7195         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7196         and use mono_image_alloc set of functions instead. 
7197
7198         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7199         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7200         of a MonoMemPool.
7201
7202         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7203
7204         * class.c (g_list_prepend_mempool): Removed.
7205
7206         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7207
7208         * image.c: Add g_list_prepend_image.
7209
7210         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7211
7212         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7213
7214
7215 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7216
7217         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7218         mono_image_unlock.
7219
7220         * image.c (mono_image_init): Init the lock field.
7221  
7222         * image.c (mono_image_init): Cleanup the lock field.
7223
7224         * image.c: Add mono_image_(un)lock functions.
7225
7226 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7227
7228         * class.c, class-internals.h: mono_method_get_context_general()
7229         combines the functionality of mono_method_get_context() and
7230         mini_method_get_context().
7231
7232         * generic-sharing.c, domain-internals.h:
7233         mono_method_construct_object_context() and
7234         mono_domain_lookup_shared_generic() moved from mini.
7235
7236         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7237         method doesn't have the correct instantiation because it's shared
7238         generic code.  Fixes #473999.
7239
7240 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7241
7242         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7243
7244         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7245         
7246 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7247
7248         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7249
7250         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7251
7252         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7253         and recheck the cache for dups after it.
7254
7255         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7256
7257         Fixes one of the deadlocks found in #473150.
7258
7259 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7260
7261         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7262           For Win32, add additional break conditions for accept.
7263
7264         Code is contributed under MIT/X11 license.
7265
7266 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7267
7268         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7269         lazily initialize the native wrapper cache.
7270         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7271         cache, since they are different from the normal wrappers.
7272
7273         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7274
7275         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7276         AOT compiled native wrappers.
7277
7278 2009-02-09  Geoff Norton  <gnorton@novell.com>
7279
7280         * appdomain.h:
7281         * security-core-clr.c: Allow enabling core-clr from the embedding
7282         API.
7283
7284 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7285
7286         * socket-io.c: when requesting all the local ips, if there are no
7287         interfaces up and running, MS returns 127.0.0.1.
7288
7289 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7290
7291         * mono-perfcounters-def.h: processor time is an inverse time.
7292         Fixes bug #468625.
7293
7294 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7295
7296         * socket-io.c: an empty host name returns the list of local IPs.
7297         Fixes bug #386637 part 1/2.
7298
7299 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7300
7301         * verify.c (mono_class_interface_implements_interface): Call
7302         mono_class_setup_interfaces ().
7303         (merge_stacks): Ditto.
7304
7305 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7306
7307         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7308         klass->interfaces.
7309         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7310         (mono_generic_class_get_class): Ditto.
7311
7312 2009-02-06  U-QUACK\miguel  <miguel@quack>
7313
7314         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7315         they live in security.c
7316
7317         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7318         another bit from Paolo's code.
7319
7320 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7321
7322         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7323         methods which will be discarded by add_imt_builder_entry ().
7324
7325         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7326         need to be boxed.
7327
7328         * loader.c: Add a statistics for the size of the memberref signature cache.
7329         
7330         * loader.c (find_cached_memberref_sig): New helper function.
7331         (cache_memberref_sig): Ditto.
7332
7333         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7334         they will be parsed again for every generic instantiation, leading to unbounded
7335         memory growth.
7336
7337 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7338
7339         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7340         parameters of generic methods.
7341
7342         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7343         after the original method is copied to the inflated method.
7344         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7345
7346         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7347         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
7348
7349         * class.c metadata.c: Update after the changes above.
7350
7351 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7352
7353         * metadata-verify.c: Simplified error handling and added
7354         section table validation.
7355
7356 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7357
7358         * class-internals.h (MonoClassExt): New structure containing rarely used
7359         fields of MonoClass.
7360         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
7361         through a new 'ext' field.
7362
7363         * class.c (mono_class_alloc_ext): New helper function to allocate 
7364         class->ext.
7365
7366         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
7367
7368 2009-02-05  Mark Probst  <mark.probst@gmail.com>
7369
7370         * object.c (mono_object_get_virtual_method): Properly inflate
7371         generic methods.  Fixes #472692.
7372
7373 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7374
7375         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
7376         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
7377         for the parent type, the created type must be ready to be used on a generic
7378         instantiation.
7379         We fill this_arg/byval_arg if the parent is a generic instance to make sure
7380         we won't have duplicated entries in generic_inst_cache.
7381
7382         Fixes #469553.
7383
7384 2009-02-05  Miguel De Icaza  <miguel@novell.com>
7385
7386         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
7387         replace with plain BSD per the comments on the bug MONO77637.
7388
7389 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7390
7391         * class.c (mono_class_get_generic_class): New accessor function.
7392         (mono_class_get_generic_container): Ditto.
7393
7394         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
7395         fields, similar to the ones in MonoMethod.
7396
7397         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
7398         (mono_class_create_from_typedef): Set klass->is_generic if needed.
7399
7400         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
7401         
7402         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
7403         the same information as element_class->byval_arg.
7404
7405         * class.c reflection.c: Remove references to class->byval_arg.
7406
7407         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
7408         klass->enum_basetype directly.
7409
7410         * verify.c metadata.c object.c icall.c reflection.c: Use 
7411         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
7412         directly.
7413
7414 2009-02-04  Miguel de Icaza  <miguel@novell.com>
7415
7416         * icall-def.h: Remove internal calls for sockets when
7417         DISABLE_SOCKET is defined, file system writing features when the
7418         OS only support reading and not writing data and Policy support if
7419         the Policy is disabled.
7420         
7421         * image.c (do_mono_image_open): Apply Paolo's patches for using
7422         mono_file_map_ APIs here.
7423
7424         * assembly.c: Add support for platforms to avoid prefix
7425         auto-detection. 
7426
7427 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
7428
7429         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
7430         warning.
7431
7432         * class.c (mono_class_inflate_generic_class): New helper function.
7433
7434         * class.c: Use mono_class_inflate_generic_class in a few places. Add
7435         statistics for inflated methods/classes.
7436
7437         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
7438
7439         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
7440         the call is made from Delegate.CreateDelegate () for the invoke method of
7441         a delegate.
7442
7443         * loader.c: Add a statistics for the memory occupied by inflated signatures.
7444
7445         * metadata.c (mono_metadata_signature_size): New helper function.
7446
7447         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
7448         generic instances.
7449
7450         * metadata.c (inflated_method_in_image): Avoid calling 
7451         mono_method_signature () if the method does not already have a signature.
7452
7453 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7454
7455         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
7456         valuetype is compatible with target type, check by inheritance as a
7457         VT is not really compatible with System.ValueType, for example.
7458
7459         * verify.c (do_invoke_method): Improve error message.
7460
7461         * verify.c (do_box_value): If boxing a nullable, use the type argument
7462         on stack instead.
7463
7464         * verify.c (do_newobj): Improve error message.  
7465
7466         Fixes #469549.
7467
7468 2009-02-03  Miguel de Icaza  <miguel@novell.com>
7469
7470         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
7471
7472 2009-02-03  Mark Probst  <mark.probst@gmail.com>
7473
7474         * generic-sharing.c: Don't hold domain lock when calling
7475         instantiate_other_info().  Fixes #471958.
7476
7477         * domain-internals.h, loader.c: Describe locking policy of domain
7478         lock vs loader lock.
7479
7480 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7481
7482         * verify.c (mono_delegate_signature_equal): Make it possible to check
7483         first-arg-bound delegates to static method.
7484
7485         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
7486         static methods with the first arg bound.
7487
7488         Fixes #469529.
7489
7490 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7491
7492         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
7493         errors.
7494
7495         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
7496         under strict mode. Any type, when boxed can be seen as a reference type.
7497
7498         Fixes #469528.
7499
7500 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7501
7502         * object.h: The lower bound of an array is a signed integer value.
7503         Introduce mono_array_lower_bound_t typedef. It should be used instead of
7504         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
7505
7506         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
7507         calculate the upper bound.
7508         
7509         Fixes #471252.
7510
7511 2009-02-02  Miguel de Icaza  <miguel@novell.com>
7512
7513         From Paolo's work, refactored, cleared up:
7514         
7515         * threadpool.c, icall.c: ifdef code that requires a working socket
7516         stack.
7517
7518         * metadata.c (mono_metadata_field_info): Do not attempt to return
7519         a value from a function declared as void.
7520
7521         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
7522         from the console stack.
7523
7524         * assembly.c: use strrchr instead of rindex.
7525
7526         * class.c, object.c, marshal.c, icall.c, reflection.c: include
7527         alloca.h on systems that have it.
7528
7529         * environment.c: Avoid code that uses stuff from
7530         HAVE_SYS_UTSNAME_H
7531         
7532         * appdomain.c: Include sys/time.h.
7533
7534         * console-io.c: include sys/ioctl.h if it is available.
7535
7536 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
7537
7538         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
7539
7540         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
7541         the method builder.
7542
7543         * marshal.c: Set mb->skip_visibility instead of setting it on the method
7544         after it was created and cached, as the later is not thread safe.
7545         
7546 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7547
7548         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
7549         called while the debugging module is not initialized. Fixes #471669.
7550
7551 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
7552
7553         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
7554
7555         Fixes #471255.
7556
7557 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7558
7559         * generic-sharing.c (lookup_or_register_other_info): Make sure the
7560         loader lock is not taken while the templates lock is held.  Fixes
7561         #471089.
7562
7563 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7564
7565         * metadata.c (type_in_image): Added a check to fix a monodis
7566         crash.
7567
7568 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7569
7570         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
7571         nullable arguments.
7572
7573         * object.c (mono_runtime_invoke_array): Ditto.
7574         
7575         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
7576         freeing wrappers of dynamic methods.
7577
7578         * loader.c (mono_free_method): Call it. Fixes #463323.
7579         
7580         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
7581         methods taking vtype/byref arguments, to fix yet another bug caused by
7582         the sharing of runtime invoke wrappers. Partly fixes #471259.
7583
7584 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
7585
7586         * debug-mono-symfile.c (check_line): Return NULL instead of returning
7587         <first file in file table>:1 when the IL offset does not have an associated
7588         line number.
7589
7590 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
7591
7592         * mono-debug.c (mono_debug_lookup_locals): New function to return local
7593         variable info for a method.
7594
7595         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
7596         
7597 2009-01-30  Jb Evain  <jbevain@novell.com>
7598
7599         * pedump.c: reuse code from monodis to make sure pedump honors
7600         MONO_PATH, which is needed to verify net_2_1 assemblies.
7601
7602 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
7603
7604         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
7605         there is no line number info.
7606
7607 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
7608
7609         Avoid some MonoType allocations
7610         * reflection.c (mono_reflection_initialize_generic_parameter):
7611         Reuse MonoType from param->pklass rather than allocating one.
7612         (mono_dynamic_image_free): Update to changes.
7613
7614 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7615
7616         Rearrange some code to improve consistency
7617         * reflection.c (mono_reflection_setup_generic_class): Move body ...
7618         (mono_reflection_initialize_generic_parameter): ... here.
7619
7620 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
7621
7622         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
7623         with type constraints as an experiment.
7624
7625         * boehm-gc.c (on_gc_notification): Update mono_stats.
7626
7627 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7628
7629         Avoid some allocations
7630         * class-internals.h (_MonoGenericInst::type_argv): Convert from
7631         pointer to tail array to avoid extra allocation.
7632         * metadata.c (free_generic_inst): Update to changes.
7633         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
7634         on-stack struct.
7635
7636 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
7637
7638         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
7639         return TRUE if the two type objects are the same.
7640
7641 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7642
7643         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
7644         (mono_class_native_size): Use klass->marshal_info->min_align instead of
7645         klass->min_align, since klass->min_align contains the managed alignment,
7646         while the native alignment can be different, like for longs on x86.
7647         Fixes #469135.
7648
7649         * class-internals.h (MonoMarshalType): Add a min_align field.
7650
7651 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
7652
7653         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
7654         the 1.0 format.
7655
7656 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7657
7658         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
7659         some comments about the usage of the used_regs field.
7660
7661         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
7662         Fixes #469217.
7663
7664 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
7665
7666         * appdomain.c: return NULL instead of throwing FileNotFoundException
7667         when LoadAssembly() fails.
7668
7669 2009-01-23  Mark Probst  <mark.probst@gmail.com>
7670
7671         * metadata.c (mono_metadata_generic_param_equal): Only compare the
7672         image if the owner is NULL.  Fixes the AOT failures.
7673
7674 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
7675
7676         * metadata.c (mono_metadata_load_generic_params): Initialize the 
7677         MonoGenericParam structure using memset so the image field is initialized
7678         as well.
7679
7680 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7681
7682         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
7683         a plain store.
7684
7685 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
7686
7687         * class.c (mono_class_setup_vtable_general): In the generic instance
7688         optimization, set method->slot for abstract virtual methods. Fixes part of
7689         #467834.
7690
7691 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7692
7693         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
7694         which signals that the unloading has started but all appdomain services must
7695         remain operational.
7696
7697         * appdomain.c (mono_domain_unload): The initial state for unloading now
7698         is unloading_start and we switch to unloading after the managed call to
7699         AppDomain::DomainUnload has finished.
7700
7701         The new unloading state has to be created because managed code in the
7702         DomainUnload event can depend on things like the threadpool still working.
7703         The domain must remain fully functional while the event executes.
7704
7705         This shown as an issue due to Process::WaitForExit, which waits for
7706         async reads of stdout and stderr to complete. Since those are processed
7707         in the threadpool the code deadlocks because the DomainUnload callback 
7708         waits for the async read finished event, which should have been set by a
7709         threadpool job but has been discarded due to the domain been in unload
7710         state.
7711
7712 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7713
7714         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
7715         image must match.
7716
7717 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7718
7719         * reflection.c (resolve_object): For fields, inflate the class and
7720         then get the field in the inflated class.
7721
7722 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7723
7724         * object-internals.h (struct _MonoException): Added a comment
7725         explaining the new use of trace_ips.
7726
7727 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7728
7729         * generic-sharing.c (inflate_other_data): Inflate array methods
7730         correctly.
7731
7732         * loader.c, class-internals.h: Rename search_in_array_class() to
7733         mono_method_search_in_array_class() and make it non-static.
7734
7735 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7736
7737         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
7738         Hopefully fixes #458168.
7739
7740 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7741
7742         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
7743         as it is performed elsewhere.
7744
7745         Code is contributed under MIT/X11 license
7746
7747 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7748
7749         * mono-perfcounters-def.h: Add counters for asp.net requests total and
7750         requests queued.
7751         * object.c (mono_raise_exception): Increment the exceptions total
7752         counter when an exception is thrown.
7753         * class-internals.h: Add a location for storing the total number of
7754         asp.net requests served.
7755         * mono-perfcounters.c: Implement update support for asp.net counters
7756         from the class libraries. Implement read support for asp.net counters
7757         and exceptions total counter.
7758
7759 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7760
7761         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
7762         accessing klass->methods. Fixes #467385.
7763
7764 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7765
7766         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
7767         for byval arguments without an [Out] attribute. Fixes #467212.
7768
7769         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
7770         Fix compilation under android.
7771         
7772         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
7773         processed, scan them directly after they are copied, to achieve better locality
7774         and cache usage.
7775
7776         * socket-io.c: Applied patch from Koushik Dutta
7777         (koush@koushikdutta.com). Disable IPV6 when running under android.
7778
7779 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7780
7781         * icall.c (ves_icall_InternalExecute): Add write barriers.
7782
7783         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
7784         the GC code.
7785
7786         * sgen-gc.c: Implement write barriers in IL code.
7787
7788 2009-01-17  Geoff Norton  <gnorton@novell.com>
7789
7790         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
7791
7792 2009-01-17  Geoff Norton  <gnorton@novell.com>
7793
7794         * image.c: When unloading the image->references table, there can be gaps
7795         in it.  Ensure that we iterate every entry to avoid leaking assembly references
7796         when unloading an appdomain.
7797
7798 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
7799
7800         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
7801         speed up ptr-in-nursery checks.
7802
7803         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
7804         threads_lock () to prevent deadlocks.
7805
7806         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
7807         does not need to be scanned during minor collections, since writes to it
7808         must use write barriers.
7809
7810 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
7811
7812         * metadata-verify.c: Add pe nt header verification.
7813         
7814 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7815
7816         * gc.c: Fix a few warnings when using SGEN.
7817
7818 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
7819
7820         * metadata-verify.c: Add pe optional header verification.
7821
7822 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7823
7824         * sgen-gc.c: Add support for user defined marker functions, used by
7825         MonoGHashTable to avoid registering a GC root for every hash node.
7826
7827 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7828
7829         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
7830         non-pinned roots into separate hashes to avoid having to traverse them
7831         in functions which are only interested in one kind.
7832
7833 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
7834
7835         * metadata-verify.c: Add pe header machine field verification.
7836         
7837 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
7838
7839         * metadata-verify.c: Add pe header size verification.
7840
7841 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7842
7843         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
7844         using the GC, they don't contain references.
7845
7846         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
7847
7848 2009-01-13  Geoff Norton  <gnorton@novell.com>
7849
7850         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
7851         AppDomains created on the native side can be cleaned up on the native side.
7852
7853 2009-01-13  Geoff Norton  <gnorton@novell.com>
7854
7855         * appdomain.c: Ensure that we call mono_context_init for the embedding api
7856         as well as the managed api.
7857
7858 2009-01-13  Geoff Norton  <gnorton@novell.com>
7859
7860         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
7861         with a MonoAppDomain initialized against it.
7862
7863 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7864
7865         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
7866         
7867         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
7868
7869         * marshal.c: Avoid setting the exception clauses after a method has been entered 
7870         into the wrapper caches. Fixes #465700.
7871
7872         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
7873         method builder.
7874         (mono_mb_create_method): Set the clauses from the method builder.
7875
7876 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
7877
7878         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
7879         Patch from Makoto Kishimoto.
7880
7881 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7882
7883         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
7884         encoding them as ROOT_DESC_COMPLEX.
7885         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
7886
7887 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
7888
7889         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
7890         no longer point to the nursery.
7891
7892         * sgen-gc.c: Add a few comments/FIXMEs.
7893         
7894         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
7895
7896         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
7897         initialization of the various _method variables thread safe. Fixes
7898         #465377.
7899
7900 2009-01-12  Mark Probst  <mark.probst@gmail.com>
7901
7902         * domain.c, domain-internals.h: Remove the shared_generics_hash
7903         and its lookup functions.
7904
7905 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
7906
7907         * socket-io.c:  Fixing the MSVC build. 
7908
7909         Code is contributed under MIT/X11 license.
7910
7911 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
7912
7913         * metadata-verify.c: Add pe header watermark verification.
7914
7915 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7916
7917         * metadata-verify.c: Add lfanew verification.
7918
7919 2009-01-12  Jb Evain  <jbevain@novell.com>
7920
7921         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
7922         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
7923
7924 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
7925
7926         * socket-io.c: Fix the build.
7927
7928         * environment.c: Fix an #ifdef.
7929
7930 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7931
7932         * threadpool.c (async_invoke_thread): Handle the wait function returning
7933         WAIT_IO_COMPLETION as well.
7934         (async_invoke_io_thread): Ditto.
7935
7936 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
7937
7938         * threads.c: Fixing the Windows build.
7939
7940         Code is contributed under MIT/X11 license.
7941
7942 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7943  
7944         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
7945         interrupt a wait.
7946         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
7947         the thread to wait again.
7948
7949 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7950
7951         * metadata-verify.c: Initial skeleton of the metadata verifier.
7952
7953         * pedump.c: Add support for the metadata verifier.
7954
7955         * verify-internal.h: Export the whole assembly metadata verifier function.
7956
7957 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7958
7959         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
7960
7961 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7962
7963         * Makefile.am: Upgrade dtrace-prelink.sh location.
7964
7965 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
7966
7967         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
7968         well. Otherwise the shutdown deadlock that happens on unix will can happen
7969         as well.
7970         If the main thread code finishes too fast it's possible that the finalizer
7971         thread won't have executed yet, won't record itself as the finalizer thread
7972         and the shutdown sequence will wait on it forever.
7973
7974 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
7975
7976         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
7977         with MSVC.
7978
7979 2009-01-08  Miguel de Icaza  <miguel@novell.com>
7980
7981         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
7982         Robert Jordan for pointing this out.
7983
7984 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
7985
7986         * icall.c
7987         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
7988         ves_icall_System_IO_DriveInfo_GetDriveType.
7989
7990 2009-01-07  Miguel de Icaza  <miguel@novell.com>
7991
7992         * icall.c: Wrap calls to mono_strtod in CriticalSection
7993         invocations when using eglib, to work around #464316.
7994
7995 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
7996
7997         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
7998         return value of GetCurrentDirectory to never access unitialized memory.
7999
8000 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8001
8002         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
8003         return value of GetCurrentDirectory and expand the buffer if needed.
8004
8005         Fixes #459094.
8006
8007 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
8008
8009         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
8010           Adding a call to mono_init_com_types.
8011
8012         Code is contributed under MIT/X11 license.
8013
8014 2009-01-07  Geoff Norton  <gnorton@novell.com>
8015
8016         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
8017         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
8018         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
8019         be the value of the ip buffer.
8020
8021 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8022
8023         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
8024         interfaces_packed here.
8025
8026         Fixes part of #463294.
8027
8028 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8029
8030         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
8031
8032         Fixes part of #463294.
8033
8034 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8035
8036         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
8037         is a boxed complex as well.
8038
8039         Fixes part of #463294.
8040
8041 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8042
8043         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
8044         control if a methodspec should be created for the generic method definition from external assemblies.
8045         Caching of methodspec is done using the handleref hash table.
8046
8047         Fixes #462592.
8048
8049 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
8050
8051         * loader.c (find_method): When searching the interfaces of a class
8052         check the transitive closure of implemented interfaces.
8053
8054         Fixes #463303.
8055
8056 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8057
8058         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
8059         
8060 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8061
8062         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
8063         interfaces calculation to fill_valuetype_array_derived_types.
8064
8065         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
8066         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
8067         for example.
8068
8069         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
8070         interfaces for valuetypes if needed.    
8071
8072         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8073         for their basetype as well. Types are array expanded if rank is > 0.
8074
8075         Fixes #400716.
8076
8077 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
8078
8079         * socket-io.h : Changing the signature of
8080           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8081           the blocking state.
8082
8083         * icall-def.h :  Changing the signature of
8084           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8085
8086         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8087           For Windows only.  Avoid blocking when calling accept by
8088           querying for a connection via select.  The loop also queries
8089           the thread state every 1000 micro seconds for the thread
8090           stop state.  This will avoid the process hanging on shutdown
8091           when using a TcpChannel that is never connected to.
8092
8093         Code is contributed under MIT/X11 license.
8094
8095 2008-12-30  Marek Safar  <marek.safar@gmail.com>
8096
8097         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8098
8099 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8100
8101         * class.c (get_implicit_generic_array_interfaces): Extract common
8102         code to a helper function making it a lot easier on the eyes.
8103
8104 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8105
8106         * class.c (get_implicit_generic_array_interfaces): If the internal
8107         enumerator is an interface inflate System.Object instead of itself.
8108
8109         Fixes #461261.
8110
8111 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
8112
8113         * object.c (mono_runtime_invoke_array): Don't assert with
8114         byref nullable types.
8115
8116         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8117         byref nullables we unbox the object and store it on the
8118         stack. 
8119         We can't use the boxed object since it is the T of Nullable<T>
8120         and the boxed representation of a nullable it's underlying type
8121         or null.
8122         We could cheat and create a boxed nullable and use the same
8123         machinery of other byref VTs but this feels like a hack and
8124         using the stack has the bonus of reducing heap pressure.
8125
8126         Fixes #461941.
8127
8128 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8129
8130         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8131         return value.
8132
8133         Fixes #461867.
8134
8135 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8136
8137         * icall-def.h : Adding an internal call definition for 
8138           System.Environment.internalBroadcastSettingChange.
8139
8140         * icall.c : Adding a Windows only implementation to broadcast a 
8141           WM_SETTINGCHANGE when an environment variable has changed.
8142
8143         Code is contributed under MIT/X11 license.
8144
8145 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8146
8147         * class.c, class-internals.h: Made
8148         mono_class_has_parent_and_ignore_generics() non-static.
8149
8150 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8151
8152         * image.c: deal with the mmap failing when loading an image.
8153
8154 2008-12-17  Geoff Norton  <gnorton@novell.com>
8155
8156         * threadpool.c: Ensure that the io_queue_lock is initialized
8157         in all circumstances, as we always attempt to cleanup against it.
8158
8159 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8160
8161         * icall.c (ves_icall_System_Environment_get_Platform): For
8162         compatibility reasons for existing client code we will keep
8163         returning 4 for a while.   
8164
8165         For how long will depend on the documentation being updated, and
8166         for us to give client code a chance to be updated.
8167
8168         This reverts the original decison on #433108 since we did not
8169         catch roughly 33 instances of the broken code in our own source
8170         code base, we did not catch failures on the buildbots, and QA did
8171         not bring this as a problem.
8172
8173         Only today I found some customer's code breaking due to our own
8174         class libraries not being fully updated and tracked it down to
8175         this change.  I am reverting it because if we could not even get
8176         our story straight in our own code base, how can we hope that our
8177         end user code be fixed?
8178
8179         As of this morning, our Wiki page that documents how to detect
8180         Unix had not been fixed.    
8181
8182 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8183
8184         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8185
8186         * class.c (mono_class_get_fields): Handle loading errors.
8187
8188 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8189
8190         * 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.
8191         
8192 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8193
8194         * mono-perfcounters.c: avoid warning.
8195
8196 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8197
8198         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8199         make sure all interfaces have MonoClass::interface_id set.
8200
8201         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8202         method table is property set.
8203
8204 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8205
8206         * class.c: New function mono_class_setup_interface_id that setup
8207         MonoClass::interface_id if needed.
8208
8209         * class-internals.h: Export new function.
8210
8211 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8212
8213         * class.c: Add code to sanity check the vtable after setup_vtable_general
8214         has done it's work.
8215
8216 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8217
8218         * icall.c: make Assembly.GetExecutingAssembly work properly when
8219         reflection is used to invoke the method.
8220         Bug #321781 fixed.
8221
8222 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8223
8224         * metadata/generic-sharing.c: Look for constraints in all type
8225         arguments, not just the first one.
8226
8227 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8228
8229         * appdomain.c: return the correct CodeBase for an Assembly instance
8230         that was loaded from the shadow-copy directories.
8231         Bug #458190 fixed.
8232
8233 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8234
8235         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8236
8237         * sgen-gc.c (check_object): New debugging helper function.
8238
8239         * object.c: Fix calls to mono_value_copy_array ().
8240
8241 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8242
8243         * class.c (mono_class_setup_fields): If working on an inflated class
8244         first check if the generic definition did init with success.
8245
8246         Fixes #445361.
8247
8248 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8249
8250         pedump.c (main): Fix a warning.
8251
8252 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8253
8254         * object-internals.h : Adding a definition for 
8255           MonoReflectionComVisibleAttribute.
8256
8257         * marshal.c (cominterop_com_visible) :  Method added to check the 
8258           ComVisible attribute of a class.
8259
8260         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8261           cominterop_raise_hr_exception added to consolidate common code 
8262           to raise hr exceptions.
8263
8264         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8265           if a managed class should support IDispatch.
8266
8267         * marshal.c 
8268           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8269           Added additional checks for managed object when getting 
8270           an IDispatch interface.
8271
8272         Code is contributed under MIT/X11 license.
8273
8274 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8275
8276         pedump.c (main): Handle mono_get_method () returning NULL. 
8277
8278 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8279
8280         * marshal.h: Fix a warning.
8281
8282 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8283
8284         * marshal.c : Adding cominterop_release_all_rcws to release all
8285           runtime callable wrappers held by the runtime.
8286
8287         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8288           
8289         Code is contributed under MIT/X11 license.
8290
8291 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8292
8293         * metadata.c (mono_image_alloc_lock): New helper function.
8294         (mono_image_alloc0_lock): Ditto.
8295
8296         * metadata.c: Use the alloc_lock () helper functions for allocating
8297         memory from the image mempool.
8298
8299 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8300
8301         * class.c (mono_class_from_generic_parameter): Document it's
8302         locking behavior. Fix double checked locking here, we stored in
8303         param->pklass a partially initialized MonoClass and no membar was used.
8304
8305 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8306
8307         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8308         (3) functions are present in the C library use them to do the
8309         job. If they are absent, make sure that the sum of int_part and
8310         dec_part is rounded before returning. This is necessary due to the
8311         division of dec_part by the power of 10 before the final addition
8312         is performed - if the result is not rounded in some cases it will
8313         yield invalid results.
8314
8315 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8316
8317         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8318         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8319         instruction instead of a pointer constant.
8320
8321 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8322
8323         * loader.c (mono_method_get_header): Do most of the work outside the
8324         loader lock, to avoid assembly load hook deadlocks.
8325
8326         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8327         (mono_metadata_parse_type_full): Ditto.
8328
8329 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8330
8331         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8332         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8333         funtions. Finally, use a lock to produce well ordered output.
8334
8335         The lock looks silly, as all calls to the corlib mempool should be guarded
8336         with the loader lock, but for some reason this fact doesn't help. 
8337
8338         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8339
8340 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8341
8342         * socket-io.c: 64 bit big-endian fixes.
8343
8344 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
8345
8346         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8347         targets that require strict compatibility between the types.
8348
8349         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
8350         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
8351         Kill the strict argument and create a new one valuetype_must_be_boxed.
8352
8353         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
8354         state that all valuetypes must be boxed.
8355
8356         Fixes #448560.
8357
8358 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
8359
8360         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
8361         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
8362
8363         Contributed under MIT/X11 license.
8364
8365 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
8366
8367         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
8368         the inflate_generic_type machinery should handle it.
8369
8370         This avoids a crash when the field's flags is zero and it's type is
8371         a primitive.
8372         What happens is that mono_metadata_parse_type_full will see that opt_attrs
8373         is zero and will return one of the cached built-in primitive types. Since
8374         those types live in read-only memory, the code that copies it crashes.  
8375
8376 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8377
8378         * object.c: Don't put function descriptors into generalized IMT
8379         thunks.
8380
8381 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8382
8383         * class.c: Enable generic code sharing on PPC64.
8384
8385 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8386
8387         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
8388         from mini/mini.c.
8389
8390         * generic-sharing.c: Allocate the method template slists from the
8391         image mempool so it doesn't leak.
8392
8393 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
8394
8395         * class.c (generic_array_methods): Release the linked list.
8396
8397 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8398
8399         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
8400         invocation to g_utf16_to_utf8().
8401
8402 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8403
8404         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
8405         arguments on big endian archs.
8406
8407 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8408
8409         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
8410         the type name (test added in corlib).
8411
8412 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8413
8414         * pedump.c: initialize perf. counters. Fixes a segv.
8415
8416 2008-11-25  Martin Baulig  <martin@ximian.com>
8417
8418         * mono-debug-debugger.c
8419         (mono_debugger_runtime_invoke): Return the exception object if an
8420         exception was thrown.  Visual Studio displays the exception object
8421         in the locals window.
8422
8423 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8424
8425         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
8426         ftnptr.
8427
8428 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8429
8430         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
8431         MONO_TYPE_U are sizeof (gpointer), too.
8432
8433 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8434
8435         * marshal.c (mono_type_native_stack_size): Fixed size and
8436         alignment for reference types.
8437
8438 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8439
8440         * class.c (mono_class_generic_sharing_enabled): Disable generic
8441         code sharing for PPC64.
8442
8443 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
8444
8445         * icall.c (mono_method_get_equivalent_method): Make sure
8446         method->klass->methods is inited before looping over it.
8447
8448 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8449
8450         * object.c: when calling ExecuteAssembly in a newly created domain,
8451         the configuration file and application base are already set up.
8452         Bug #446353 take 2 fixed.
8453
8454 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
8455
8456         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
8457         Fixes #444715. Fix a warning.
8458
8459 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
8460
8461         * appdomain.c: write the full path of the assembly to the .ini file
8462         created when "shadow-copying"
8463         Bug #446353 fixed.
8464
8465 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8466
8467         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
8468         if signature==FALSE.
8469
8470 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8471
8472         * marshal.h : Fix the cygwin build.
8473            marshal.c:12442: undefined reference to `_IID_IMarshal'
8474           
8475         Code is contributed under MIT/X11 license.
8476
8477 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8478
8479         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
8480           free threaded marshaler when QueryInterface is called on a COM callable
8481           wrapper requesting the IMarshal interface.
8482           
8483         Code is contributed under MIT/X11 license.
8484
8485 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8486
8487         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
8488
8489         * reflection.c (mono_type_get_object): Special case the very common
8490         void type.
8491
8492         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
8493         hold typeof(void).
8494
8495 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
8496
8497         * process.h : Adding method declaration for
8498           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8499           
8500         * process.c : Adding implementation for
8501           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8502           
8503         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
8504           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8505
8506         Code is contributed under MIT/X11 license.
8507
8508 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
8509
8510         * appdomain.c (unload_thread_main): Clean up threadpool by
8511         calling mono_thread_pool_remove_domain_jobs.
8512
8513         * domain-internals.h (struct _MonoDomain): Add new fields to
8514         help coordinate the cleanup of the threadpool.
8515
8516         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
8517         that cleans up the threadpool of all jobs associated with an appdomain.
8518         It does that by cleaning up the queues and making sure all active
8519         threads are accounted.
8520
8521         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
8522         unloaded or in the process of. Take this is such way that there is
8523         no race condition between another thread starting the unload and the
8524         current thread acknowledging it.
8525
8526         * threadpool.c (async_invoke_thread): Same.
8527
8528         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
8529         firing the new thread.
8530
8531         * threadpool.c (start_tpthread): Same.
8532
8533         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
8534
8535         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
8536
8537 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
8538
8539         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8540         Add support for DuplicateHandle.
8541         
8542         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8543         Add support for DuplicateHandle.
8544         
8545         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8546         Add support for DuplicateHandle.
8547
8548         Code is contributed under MIT/X11 license.
8549
8550 2008-11-06  Mark Probst  <mark.probst@gmail.com>
8551
8552         * class-internals.h: Make min_align into a whole byte.
8553
8554         * class.c: Set min_align for SIMD types to 16.
8555
8556 2008-11-05  Geoff Norton  <gnorton@novell.com>
8557
8558         * attach.c: Default the attacher to enabled for all cases including
8559         embedded.
8560
8561 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8562
8563         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
8564         change r117650.
8565
8566 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8567
8568         * monitor.c, monitor.h: New function for querying offsets of
8569         members of MonoThreadsSync.
8570
8571 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8572
8573         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
8574         to speed up this function and to avoid the boundless memory growth caused by
8575         the signature_dup () calls.
8576
8577 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
8578
8579         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
8580         wrapper.
8581
8582         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
8583         by 1 bit.
8584
8585         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
8586
8587 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8588
8589         * appdomain.c:
8590         * domain-internals.h: made mono_set_private_bin_path_from_config()
8591         "internal".
8592         * object.c: call the above function after setting the configuration
8593         file path for the root domain.
8594         Fixes bug #314478.
8595
8596 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8597
8598         * assembly.c: when the assembly is loaded from an absolute path, end
8599         basedir with a directory separator.
8600         Bug #440781 fixed.
8601
8602 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8603
8604         * monitor.c (mono_monitor_get_fast_enter_method): If
8605         CompareExchange is not available, don't create the fastpath
8606         instead of asserting.  (The method is missing in the 1.1 profile.)
8607
8608 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8609
8610         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
8611
8612         * monitor.c, monitor.h: Code for generating Monitor.Enter and
8613         Monitor.Exit IL fastpaths.
8614
8615 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8616
8617         * class.c (mono_class_create_from_typedef): Added Vector2ul.
8618
8619 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8620
8621         * class.c (mono_class_create_from_typedef): Added Vector2l.
8622
8623 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8624
8625         * class.c (mono_class_create_from_typedef): Added Vector2d.
8626
8627 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
8628
8629         * appdomain.c: translate \ into / for cache_path.
8630         * domain-internals.h: new mono_is_shadow_copy_enabled().
8631         * icall.c: (fill_reflection_assembly_name) do the same path
8632         manipulations that get_code_base does.
8633         (get_code_base) use mono_is_shadow_copy_enabled.
8634
8635 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
8636
8637         * appdomain.c: shadow-copied assemblies go to CachePath +
8638         ApplicationName when both are set. DynamicBase has nothing to do with
8639         shadow copies.
8640         Bug #406877 fixed.
8641
8642 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
8643
8644         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
8645         STANDALONESIG table.
8646
8647         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
8648         standalone signatures.
8649
8650         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
8651         comparison code: instead of comparing the signatures using a custom
8652         equals function, transform them to a common signature and compare that. This
8653         works better with AOT.
8654
8655 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
8656
8657         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
8658
8659         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
8660         call for generic instances.
8661         (mono_class_setup_properties): Call setup_properties () before accessing
8662         gklass->properties.
8663
8664         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8665         over the virtual methods of a class using metadata if possible, avoiding the
8666         creation of MonoMethod's for non-virtual methods.
8667         
8668         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8669         get_virtual_methods () to iterate over the virtual methods of classes.
8670
8671 2008-10-25  Martin Baulig  <martin@ximian.com>
8672
8673         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
8674
8675 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8676
8677         * class.c (mono_class_create_from_typedef): Added Vector4i.
8678
8679 2008-10-24  Mark Probst  <mark.probst@gmail.com>
8680
8681         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
8682         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
8683         special-casing applies to eliminate the call completely.
8684
8685 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8686
8687         * class.c (mono_class_create_from_typedef): Added Vector8s.
8688
8689 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8690
8691         * class.c (mono_class_create_from_typedef): Added Vector16sb.
8692
8693 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8694
8695         * icall.c: get rid of annoying warning.
8696
8697 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8698
8699         * threadpool.c: in 1.x, if you change the background status of the
8700         threadpool thread, it's not reset.
8701         Remove unnecessary calls to SetState.
8702
8703 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8704
8705         * threadpool.c: asynchronously create a set of idle threads upon first
8706         use of the threadpool. SetMinThreads will now start the appropriate
8707         number of idle threads if they are not already running. The default is
8708         1 threadpool thread per CPU. Increased the maximum number of threads
8709         per CPU to 10.
8710
8711 2008-10-22  Martin Baulig  <martin@ximian.com>
8712
8713         Revert r116521 from Zoltan, it breaks the debugger:
8714
8715         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8716         over the virtual methods of a class using metadata if possible, avoiding the
8717         creation of MonoMethod's for non-virtual methods.
8718         
8719         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8720         get_virtual_methods () to iterate over the virtual methods of classes.
8721
8722 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8723
8724         * threads.c: when creating a threadpool thread, set its state to
8725         'background'.
8726         * threadpool.c: reset the background state of a threadpool thread
8727         after finishing each work item
8728         Bug #437888 fixed.
8729
8730 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8731
8732         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
8733         
8734         * class.c (mono_class_setup_vtable_general): Add an optimized version for
8735         generic instances which works by inflating the methods in the container
8736         class's vtable.
8737
8738         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
8739         variant which doesn't make a copy if no inflation was done.
8740         (mono_class_setup_fields): Use it.
8741
8742         * metadata.c (mono_metadata_get_shared_type): New helper function to
8743         return a shared instance of a given MonoType.
8744
8745         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
8746         a copy of most non-generic types.
8747
8748 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
8749
8750         * threadpool.c: remove one more GetSystemInfo () call.
8751
8752 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
8753
8754         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
8755         use the code in mono-proclib.h to get processor information.
8756
8757 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8758
8759         * appdomain.c: fixed the logic that determines whether assemblies in a
8760         directory are "shadow-copied" or not. Bug #433483 fixed.
8761
8762 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8763
8764         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
8765         warning.
8766
8767 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8768
8769         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
8770         returning a vtype.
8771
8772         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
8773         reflection.c: Use mono_field_get_name () for accessing a field's name.
8774
8775         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
8776         class.c
8777
8778         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
8779         field.
8780
8781         * loader.c (find_method_in_class): Reenable the metadata optimization by
8782         not using it for generic instances.
8783
8784         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
8785         data/def_type fields from MonoClassField into a separate structure.
8786         (struct MonoClassField): Remove data/def_type fields.
8787         (struct _MonoClass): Add a 'field_def_values' array to store the default
8788         values/RVA for fields.
8789
8790         * class.c reflection.c: Update after the changes.
8791         
8792         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
8793         for accessing field->data.
8794
8795         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
8796
8797         * loader.c (find_method_in_class): Revert the last change for now as
8798         it breaks Mono.C5 unit tests.
8799
8800         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
8801         'field_generic_types' and 'field_objects' which contain the information
8802         previously stored in MonoInflatedField.
8803         (MonoInflatedField): Delete.
8804         (struct _MonoClassField): Delete 'generic_info' field.
8805
8806         * reflection.c: Store the information which was previously in 
8807         field->generic_info in MonoDynamicGenericClass instead.
8808
8809         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
8810         MonoClassField changes.
8811
8812 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
8813
8814         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
8815         store the value inside the data array of the MonoMethodWrapper.
8816         This saves memory, is faster and fixes the lifetime issues (methods
8817         were never removed from the hash previously). May also fix bug#436996.
8818
8819 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8820
8821         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
8822         generic instances, compute the type from the generic definition instead of
8823         looking in field->generic_info.
8824
8825         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
8826         for inflated fields, the only user was get_fieldref_token () which no
8827         longer needs it.
8828
8829         * class.c (mono_class_init): Revert the last change as it seems to cause
8830         crashes.
8831
8832         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
8833         bytes on 64 bit platforms.
8834
8835         * object.c (mono_class_create_runtime_vtable): Fix a warning.
8836         
8837         * object.c (mono_class_create_runtime_vtable): Don't initalize
8838         field->data/field->def_type here, it is done lazily by 
8839         mono_class_get_field_default_value ().
8840
8841         * icall.c (ves_icall_get_enum_info): Call 
8842         mono_class_get_field_default_value () instead of directly accessing
8843         field->data and field->def_type.
8844
8845         * object.c (get_default_field_value): Ditto.
8846
8847         * class.c (mono_field_get_data): Ditto.
8848         
8849         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
8850         call for generic instances.
8851
8852         * loader.c (find_method_in_class): If klass != from_class, then inflate
8853         the method with the context of from_class, since the caller assumes this.
8854
8855 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
8856
8857         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
8858         for accessing method->slot.
8859
8860 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
8861
8862         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
8863
8864 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
8865
8866         * class.c (mono_method_get_vtable_index): Use
8867         mono_method_get_vtable_slot () for accessing method->slot.
8868
8869         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
8870         accessing klass->methods.
8871
8872         * class.c (mono_method_get_vtable_slot): New helper function.
8873         (mono_class_get_vtable_entry): Ditto.
8874         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
8875         accessing method->slot.
8876
8877         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
8878         method to get_inflated_method ().
8879
8880         * class.c (mono_class_get_inflated_method): New helper method to obtain
8881         a method of an inflated class without calling setup_methods ().
8882         (mono_class_get_cctor): Use get_inflated_method.
8883
8884         * generic-sharing.c (mono_class_get_method_generic): Ditto.
8885         
8886         * marshal.c image.c: Lazily create all the marshal caches.
8887
8888         * image.c (mono_image_init): Move initialization of runtime_invoke
8889         caches to marshal.c.
8890
8891         * marshal.c (get_cache): New helper function to lazily initialize a 
8892         wrapper cache.
8893         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
8894
8895         * debug-helpers.c (mono_method_full_name): Include generic arguments.
8896
8897 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
8898
8899         * loader.c: fixed check for interface type.
8900
8901 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
8902
8903         * appdomain.c: check for NULL setup before it's referenced.
8904
8905 p
8906 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
8907
8908         * class.c: remove the unused old vtable setup code.
8909
8910 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
8911
8912         * class.c: don't depend on interface order in
8913         setup_interface_offsets (bug #435777).
8914         * reflection.c: sort the InterfaceImpl table (patch from
8915         Jb Evain  <jbevain@novell.com>).
8916
8917 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
8918
8919         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
8920         the low level assemblies lock.
8921
8922 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
8923
8924         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
8925         object.c, reflection.c, socket-io.c, threads.c: introduced
8926         mono_framework_version () to return the major framewrok version,
8927         changed the code that was using more complex patterns to use it.
8928         Return the correct value for PlatformID for OSX.
8929
8930 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
8931
8932         * icall-def.h, process.h, process.c: added an icall to get info about
8933         processes using mono-proclib.
8934
8935 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
8936
8937         * mono-perfcounters.c: use the mono-proclib functions to
8938         access process information.
8939
8940 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
8941
8942         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
8943         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
8944         reflection.c: remove rawbuffer usage: mmap support is more sanely
8945         provided by utils/mono-mmap.
8946
8947 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
8948
8949         * gc.c: use posix semaphores when possible so that
8950         mono_gc_finalize_notify() is signal safe.
8951
8952 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
8953
8954         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
8955         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
8956         be #ifdef-ed out, the linker will remove the rest.
8957
8958         * marshal.c: Implement DISABLE_COM.
8959
8960         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
8961
8962 2008-10-11  Miguel de Icaza  <miguel@novell.com>
8963
8964         * locales.c (string_invariant_compare_char): Optimization: do not
8965         call g_unichar_type unless we actually need the information.
8966
8967 2008-10-10  Mark Probst  <mark.probst@gmail.com>
8968
8969         * object.c, class-internals.h: Also create remoting trampolines
8970         for generic methods.  Pass the domain to the remoting trampoline
8971         creation function, too.
8972
8973 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
8974
8975         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
8976
8977 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8978
8979         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
8980         Vector4ui.
8981
8982 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8983
8984         * assembly.c:
8985         * locales.c: remove the use of g_strdown. Fixes bug #322313.
8986
8987 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
8988
8989         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
8990         for the least possible amount of time (extending the fix in r113458).
8991
8992 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8993
8994         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
8995
8996 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8997
8998         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
8999         as possible simd intrinsic types.
9000         Optimized the test to check for the common prefix first.
9001
9002 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
9003
9004         * class.c: back out part of a broken optimization committed on
9005         May 23th (bug #433908).
9006
9007 2008-10-09  Mark Probst  <mark.probst@gmail.com>
9008
9009         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
9010         Win32.  Should fix #432388 for most cases until we have the new
9011         profiler on Win32.
9012
9013 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9014
9015         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
9016         instead of using inst->id so the hash is stable for AOT.
9017
9018 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
9019
9020         * appdomain.c:
9021         * icall.c: create a .ini file for shadow-copied assemblies that
9022         contains the location of the original assembly. Use this to return the
9023         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
9024         Also fix the number of '/' for windows when returning the CodeBase.
9025         Fixes bug #430920.
9026
9027 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9028
9029         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
9030
9031         Code is contributed under MIT/X11 license.
9032
9033 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9034
9035         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
9036           if if the class vtable needs initialized.
9037
9038         Code is contributed under MIT/X11 license.
9039
9040 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9041
9042         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
9043           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
9044           STRING->BSTR, and CLASS->INTERFACE.
9045
9046         Code is contributed under MIT/X11 license.
9047
9048 2008-10-07  Marek Habersack  <mhabersack@novell.com>
9049
9050         * sysmath.h: changed the declaration of the
9051         ves_icall_System_Math_Round2 icall by adding an extra
9052         away_from_zero parameter.
9053
9054         * sysmath.c (ves_icall_System_Math_Round2): added support for
9055         away from zero rounding. The icall now takes an extra boolean
9056         parameter to signal that away from zero operation is requested.
9057
9058 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9059
9060         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
9061         the delegate klass so it can work with full-aot.
9062         (mono_marshal_get_delegate_end_invoke): Ditto.
9063         (mono_marshal_get_delegate_invoke): Ditto.
9064
9065 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
9066
9067         * gc.c, attach.h, attach.c: remove a bad pattern:
9068         add_finalizer_callback () is not implemented correctly, it can't
9069         without adding more overhead to the finalizer loop and it's not
9070         even needed, since we know exactly what we need to call, so there is
9071         no need to do so through an expensive function pointer.
9072
9073 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
9074
9075         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9076         for the no-gc case.
9077         * attach.c (mono_attach_init): Remove the #ifdef.
9078
9079 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
9080
9081         * attach.c (mono_attach_init): Don't use
9082         mono_gc_add_finalizer_thread_callback when compiling without GC.
9083         Fixes #432306.
9084         
9085         Code is contributed under MIT/X11 license.
9086
9087 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9088
9089         * class.c (mono_class_create_from_typedef): Remove the 
9090         #ifndef DISABLE_SIMD stuff.
9091
9092 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9093
9094         * class-internals.h (MonoClass): Added simd_type bit field.
9095
9096         * class.c (mono_class_create_from_typedef): Check if type is a simd
9097         intrinsic.
9098
9099 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9100
9101         * object.c (mono_method_add_generic_virtual_invocation): Only add
9102         instantiations to the thunk whose count is at least as large as
9103         the threshold.
9104
9105 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9106
9107         * icall.c: changed the Type of the exception thrown when trying to
9108         invoke a constructor on an abstract class. Part of the fix for bug
9109         #324185.
9110
9111 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9112
9113         * class.c, class-internals.h (mono_method_get_vtable_index): New
9114         function which returns the index into the vtable and properly
9115         handles inflated virtual generic methods.
9116
9117 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9118
9119         * object.c, domain.c, object-internals.h, domain-internals.h:
9120         Generalize IMT thunk machinery to also handle thunks for virtual
9121         generic method invokes.  When a virtual generic method is invoked
9122         more than a number of times we insert it into the thunk so that it
9123         can be called without lookup in unmanaged code.
9124
9125         * generic-sharing.c, class-internals.h: Fetching a
9126         MonoGenericInst* for a method from an (M)RGCTX.
9127
9128 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9129
9130         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9131         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9132         marshalling. Fixes #431304.
9133
9134 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9135
9136         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9137           handle when ref is specified without In or Out.
9138
9139         Code is contributed under MIT/X11 license.
9140
9141 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9142
9143         * loader.c (mono_get_method_constrained): Don't expand method with
9144         the class's context, because it's already a method of that class.
9145
9146 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9147
9148         * attach.c : should be correct build fix.
9149
9150 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9151
9152         * attach.c: Fix the previous change.
9153
9154 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9155
9156         * attach.c : quick w32 build fix.
9157
9158 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9159
9160         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9161         crashes MonoDevelop: #430455.
9162
9163 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9164
9165         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9166         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9167
9168         * domain.c: Remove initialization/cleanup of the removed fields.
9169
9170 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9171
9172         * class.c (mono_class_generic_sharing_enabled): Enable generic
9173         code sharing for PPC.
9174
9175 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9176
9177         * attach.c : Fixing the Windows builds.
9178
9179         Code is contributed under MIT/X11 license.
9180
9181 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9182
9183         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9184         the default generic sharing mode to 'all'.
9185
9186 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9187
9188         * generic-sharing.c, class-internals.h: New function for checking
9189         whether a method needs a static RGCTX invoke wrapper.  A few
9190         funtions moved from mini/generic-sharing.c.
9191
9192         * icall.c: New function used.
9193
9194 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9195
9196         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9197         Static RGCTX invoke wrapping applies to value type methods, too.
9198
9199         * class.c (mono_class_setup_vtable_general): In generic-shared
9200         value types, wrap methods with a static RGCTX invoke wrapper.
9201
9202 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9203
9204         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9205         osx build.
9206
9207 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9208
9209         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9210         register a callback which is called when the finalizer thread is woken
9211         up.
9212         (finalizer_thread): Call the callback if it exists.
9213
9214         * attach.h attach.c: New files, implementing the attach mechanism.
9215
9216         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9217         
9218         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9219         by the previous change.
9220
9221 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9222
9223         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9224         loader.c, marshal.c, metadata-internals.h, metadata.c,
9225         method-builder.c, object.c, reflection.c: introduced specific functions
9226         to allocate from the domain and image mempools and cleaned up most of
9227         the code to use them (still missing a few in reflection.c).
9228         Keep the loader bytes counter updated.
9229
9230 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9231
9232         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9233         loader-related counters.
9234
9235 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9236
9237         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9238         added more MS-compatible counters.
9239
9240 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9241
9242         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9243         class->blittable. Fixes #428217.
9244
9245 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9246
9247         * reflection.c (mono_image_get_field_on_inst_token): Call 
9248         field_encode_signature () since that handles custom modifiers too.
9249         Fixes #424663.
9250
9251 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9252
9253         * reflection.c (add_custom_modifiers): New helper function to merge custom
9254         modifiers stored in objects to a MonoType.
9255         (fieldref_encode_signature): Encode custom modifiers.
9256         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9257         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9258
9259 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9260
9261         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9262         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9263         64-bit IL only images because imports are not resolved for IL only images.
9264         Special thanks to Bill Holmes for finding this bug and testing the patch.
9265         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9266
9267         Contributed under MIT/X11 license.
9268
9269 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9270
9271         * mono-config.c (dllmap_start): Add support for the bits keyword
9272         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9273
9274 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9275
9276         * reflection.c (inflate_mono_method): When the class the method is
9277         to be inflated for is itself not inflated, just return the method.
9278
9279 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9280
9281         * mono-perfcounters.c: use more user friendly process instance names.
9282
9283 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9284
9285         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9286           handle "[in] ref" and "[in][out] ref" cases.
9287
9288         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9289           to mono_mb_create_method.  This was causing problems calling native to
9290           managed passing Variants by value.
9291
9292         Code is contributed under MIT/X11 license.
9293
9294 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9295
9296         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9297         before accessing the friend_assembly_names field.
9298
9299         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9300         times.
9301         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9302         called lazily when it is needed.
9303
9304         * metadata-internals.h (struct _MonoAssembly): Add 
9305         'friend_assembly_names_inited' flag.
9306
9307 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9308
9309         * mono-perfcounters-def.h: fix the types of a few counters.
9310         * mono-perfcounters.c: implemented the instance names getter
9311         and a few bugfixes.
9312
9313 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9314
9315         * culture-info-table.h : regenerated.
9316
9317 2008-09-17  Robert Jordan  <robertj@gmx.net>
9318
9319         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9320         context bound objects. Fixes #415577.
9321
9322         Code is contributed under MIT/X11 license.
9323
9324 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9325
9326         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9327         implementation (bug #423582).
9328
9329 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9330
9331         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9332         is not set. Fixes #426309.
9333
9334 2008-09-16  Jb Evain  <jbevain@novell.com>
9335
9336         * class.c (mono_class_from_name): fix the exported type look up
9337         when the type is defined in a referenced assembly.
9338
9339 2008-09-16  Jb Evain  <jbevain@novell.com>
9340
9341         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9342         increment the next index counter on each iteration to make that work
9343         for more than one type forwarder. Unmanaged part to fix #422929.
9344
9345 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9346
9347         * object-internals.h: enum ComInterfaceType in
9348         MonoInterfaceTypeAttribute is guint32, not guint16.
9349
9350 2008-09-12  Mark Probst  <mark.probst@gmail.com>
9351
9352         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
9353         writing code.
9354
9355 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9356
9357         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
9358         not gboolean.
9359
9360 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9361
9362         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
9363         Endianness fixes for MonoSymbolFileOffsetTable.
9364
9365 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9366
9367         * process.c (complete_path) : Removing quotes from the 
9368           input path.  The glib file routines do not handle file paths
9369           that have quotes around them.
9370
9371         Code is contributed under MIT/X11 license.
9372
9373 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9374
9375         * socket-io.h : Adding a comment to provide locations where 
9376           changes to MonoSocketAsyncResult need to be synced.
9377
9378         Code is contributed under MIT/X11 license.
9379
9380 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
9381
9382         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
9383         parameters as well. Fixes #425001.
9384
9385 2008-09-08  Miguel de Icaza  <miguel@novell.com>
9386
9387         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
9388         windows build.
9389
9390 2008-09-07  Miguel de Icaza  <miguel@novell.com>
9391
9392         * console-io.c: Add support for tracking the window size if it
9393         changes.
9394
9395         The setup is very simple: the TtySetup function will now return a
9396         pointer to a location in memory that tracks the current console
9397         size.  The managed code checks its current value every time its
9398         queried against the last value set, and updates accordingly.
9399
9400         With this setup we can work with multiple consoles, and we do not
9401         require to poke into managed code from a signal handler.
9402
9403         Additionally, the environment for COLUMNS and LINES is now handled
9404         in unmanaged code.
9405
9406         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
9407
9408 2008-09-07  Mark Probst  <mark.probst@gmail.com>
9409
9410         * marshal.c (mono_type_native_stack_size): Treat
9411         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
9412
9413 2008-09-04  Jb Evain  <jbevain@novell.com>
9414
9415         * class.c (mono_class_is_assignable_from): fix assignability of nullables
9416         to nullables.
9417
9418 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
9419
9420         * verify.c (verify_type_compatibility_full): Revert change
9421         to allow converting a native int to unmanaged pointer be verifiable
9422         under non-strict mode.
9423         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
9424
9425         * verify.c: Added some TODOs.
9426
9427 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
9428
9429         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
9430           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
9431           Changed to use GlobalAlloc for the memory returned on Windows platforms.
9432
9433         Code is contributed under MIT/X11 license.
9434
9435 2008-09-02  Jb Evain  <jbevain@novell.com>
9436
9437         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
9438
9439 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
9440
9441         reflection.c (typebuilder_setup_fields): Handle classes with
9442         explicit size.
9443
9444 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
9445
9446         class.c (mono_class_setup_events): Add memory barrier due to
9447         double checked locking.
9448         
9449         class.c (mono_class_setup_properties): Same.
9450
9451 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
9452
9453         * class.c (mono_class_is_assignable_from): Fix the build.
9454         
9455         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
9456         before accessing klass->interface_bitmap. Fixes #421744.
9457
9458 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
9459
9460         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
9461         the runtime into no-exec mode, useful when running the AOT compiler.
9462
9463         * appdomain.c gc.c object.c: Avoid executing managed code when running
9464         in no-exec mode.
9465         
9466         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
9467
9468         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
9469         special case when the mono_assembly_loaded () returns NULL because the 
9470         search hook is not installed.
9471
9472 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
9473
9474         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
9475         crashes in bstr marshalling on linux.
9476
9477 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9478
9479         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
9480         with more than one parameter.
9481
9482 2008-08-24  Miguel de Icaza  <miguel@novell.com>
9483
9484         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
9485         start/stop flow control as well when turning off ICANON (allows
9486         C-s and C-q to be read by Console.ReadKey).
9487
9488 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9489
9490         * class.c (mono_class_init): Move the initialization of nested classes
9491         into mono_class_get_nested_types (). Fixes #418433.
9492
9493         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
9494         flag.
9495
9496         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
9497         iterating tough the nested classes of a class.
9498
9499 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
9500
9501         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
9502         on arm.
9503
9504 2008-08-22  Miguel de Icaza  <miguel@novell.com>
9505
9506         * console-io.c (sigcont_handler): Support signal chaining for
9507         SIGCONT.
9508
9509         (console_set_signal_handlers): Use best practices with sigaction,
9510         clear the structure before using it. 
9511
9512 2008-08-22  Robert Jordan  <robertj@gmx.net>
9513
9514         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
9515         Fix the Windows build.
9516
9517 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
9518
9519         * class.c (mono_class_generic_sharing_enabled): Make the default
9520         sharing mode 'corlib'.
9521
9522 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
9523
9524         * console-io.c (console_set_signal_handlers): Fix a warning.
9525
9526         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
9527         method normally, the JIT will take care of avoiding recursion.
9528
9529 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
9530
9531         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
9532
9533         Code is contributed under MIT/X11 license.
9534
9535 2008-08-20  Miguel de Icaza  <miguel@novell.com>
9536
9537         * console-io.c (sigcont_handler): We need to restore the entire
9538         termios state, not only the original settings, as things like echo
9539         can be controlled after this (Booish exposes this issue with its
9540         own ReadLine implementation).
9541
9542         Additionally, we need to set the terminal back into keypad_xmit
9543         mode.
9544         
9545         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
9546         string as a paramter as well.   Otherwise we get different
9547         keyboard sequences.
9548
9549 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
9550
9551         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
9552         delegates with byref out parameter passing. Fixes #351520.
9553
9554         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
9555         a generic context.
9556         (mono_type_get_desc): Add the type arguments for GENERICINST.
9557         (mono_method_full_name): Stringify the class name using mono_type_full_name
9558         so it picks up generic arguments.
9559
9560 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
9561
9562         * console-io.c: Removed debug output.
9563
9564 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
9565
9566         reflection.c (mono_reflection_create_runtime_class): Alloc
9567         the nested classes linked list using the dynamic image mempool.
9568         Fixes leak in corlib compilation.
9569
9570 2008-08-19  Miguel de Icaza  <miguel@novell.com>
9571
9572         * console-io.c: Fix incredibly annoying behavior on the console
9573         after resuming execution after control-z.   This affected every
9574         console application.
9575
9576 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
9577
9578         * mempool-internals.h: Header for mono private mempool functions. The first
9579         two function are for allocating glib linked lists using pools.
9580
9581         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
9582
9583         * Makefile.am: Added mempool-internals.h.
9584
9585 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
9586
9587         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
9588         (mono_domain_free): Ditto.
9589
9590         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
9591         be used by the JIT to store its domain-specific information, instead of putting
9592         it directly into MonoDomain.
9593
9594         * domain.c (mono_install_create_domain_hook): New helper function to install
9595         a hook which initializes domain->runtime_info.
9596
9597         * domain.c (mono_install_free_domain_hook): Ditto.
9598         
9599 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
9600
9601         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
9602         asserting if the ares parameter is null.
9603
9604         * mono-perfcounters.c: Fix warnings.
9605
9606         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
9607         is not needed, don't check for interruptions either.
9608         (mono_marshal_get_delegate_end_invoke): Ditto.
9609
9610 2008-08-15  Marek Habersack  <mhabersack@novell.com>
9611
9612         * mono-perfcounters.c (predef_readonly_counter): added support for
9613         reading the ASP.NET Requests Queued counter from another process.
9614
9615 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
9616
9617         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
9618         MonoImage to simplify the AOT code.
9619
9620 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
9621
9622         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
9623         marshalling. Fixes #416078.
9624
9625 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9626         
9627         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
9628         it is set, looking up the icall address is deferred to the JIT, since 
9629         in embedded scenarios, the icall might not be registered in the runtime
9630         doing the AOT compilation. Backported from the 2.0 branch.
9631
9632 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9633
9634         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
9635         Fixes #415621.
9636
9637 2008-08-05  Marek Habersack  <mhabersack@novell.com>
9638
9639         * Makefile.am: added support for cross-compilation.
9640
9641 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
9642
9643         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
9644
9645 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9646
9647         * mono-perfcounters.c: jitted methods and jitted bytes counters.
9648
9649 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
9650
9651         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
9652         mono-perfcounters.c: performance counters implementation.
9653
9654 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
9655
9656         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
9657         to gpointer, letting the AOT code decide what to store in it.
9658
9659 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
9660
9661         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
9662           mono_class_setup_methods if the methods are not initialized.
9663
9664         Code is contributed under MIT/X11 license.
9665
9666 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9667
9668         * verify.c: Remove some debug code I commited by accident.
9669
9670         * verify.c (mono_method_is_valid_in_context): Change the return value
9671         to make possible to distinguish between invalid and unverifiable.
9672
9673         * verify.c (verifier_load_method): Don't return NULL for unverifiable
9674         methods.
9675
9676 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9677
9678         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
9679         constraints. Fixes regression in gtest-253.
9680
9681 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9682
9683         * verify.c (mono_verifier_verify_class): Don't allow generic types
9684         with explicit layout.
9685
9686         * verify.c (mono_method_verify): Check locals and argument types.
9687
9688 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
9689
9690         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
9691         wait if the thread is in StopRequested state.
9692
9693         * class.c (mono_class_from_name): Refactor the module searching code into
9694         a separate function so it can be reused in the AOT case too.
9695
9696 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
9697
9698         * verify.c (mono_type_is_valid_in_context): Improve the error message.
9699         Check both the type and it's generic type definition for loader errors.
9700         
9701         * verify.c (mono_method_is_valid_in_context): Don't generate another
9702         error when a type errors occur, this leads to the wrong exception been
9703         thrown.
9704
9705 2008-07-28  Dick Porter  <dick@ximian.com>
9706
9707         * icall-def.h
9708         * process.c
9709         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
9710         New internal calls to duplicate and close a process handle.
9711
9712 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
9713
9714         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
9715
9716 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
9717
9718         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
9719
9720 2008-07-27  Robert Jordan  <robertj@gmx.net>
9721
9722         * class.c (mono_class_init): Don't compute class.has_finalize for
9723         valuetypes. Fixes #412477.
9724
9725 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
9726
9727         * verify.c: Implement constraint equivalence checking.
9728         This is required when a generic parameter is used as
9729         argument to a constrained one.
9730
9731         Fixes #410637.
9732
9733 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
9734
9735         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9736
9737         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
9738
9739         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
9740         synch with managed object layout.
9741
9742 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9743
9744         * verify.c (do_branch_op): Handle valuetypes and generic
9745         arguments properly.
9746
9747         * verify.c (do_cmp_op): Same.
9748
9749         Fixes #410383.
9750
9751 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9752
9753         * generic-sharing.c: Fix memory leaks.
9754
9755         * class.c, class-internals.h: Make
9756         mono_class_inflate_generic_type_with_mempool() non-static.
9757
9758 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9759
9760         * pedump.c (dump_verify_info): Dump full class name.
9761
9762 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9763
9764         * generic-sharing.c: Removed some old code that didn't do anything.
9765
9766 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
9767         * profiler.c: Added runtime_initialized_event,
9768         mono_profiler_install_runtime_initialized and
9769         mono_profiler_runtime_initialized. This new hook tells the profiler
9770         when the runtime is sufficiently initialized to be able to call
9771         mono_thread_attach on the root appdomain.
9772         * profiler.h, profiler-private.h: Likewise.
9773
9774 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9775
9776         * verify.c (do_cast): Do boxing for generic arguments as well.
9777
9778         * class.c (is_nesting_type): Drop generic instantiations before
9779         checking for nesting.
9780
9781         * class.c (can_access_instantiation): Allow access to generic
9782         arguments.
9783
9784 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9785
9786         * verify.c (verify_class_for_overlapping_reference_fields):
9787         On some cases, the field size might be zero, guard against that.
9788         Fix the explicit layout check to work as expected.
9789
9790 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
9791
9792         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
9793         mono_thread_resume () during shutdown, since the thread we want to abort
9794         might be suspended.
9795
9796 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
9797
9798         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
9799         warning.
9800
9801         * debug-mono-symfile.c: Fix a warning.
9802
9803         * mono-perfcounters.c (get_cpu_times): Fix a warning.
9804
9805         * object.c (mono_class_vtable): Check if exception_type is set, and return
9806         NULL as defined by the function comments.
9807
9808 2008-07-22  Mark Probst  <mark.probst@gmail.com>
9809
9810         * mempool.c: Use malloc for every single mempool allocation if the
9811         configure option is set.  This makes it easier to track mempool
9812         allocations with tools like Valgrind.
9813
9814 2008-07-22  Jb Evain  <jbevain@novell.com>
9815
9816         * reflection.c (create_dynamic_mono_image): emit the same
9817         metadata version that SL2 does when creating a SL2 image.
9818
9819 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
9820
9821         * icall-def.h:
9822         * icall.c: New icall System.Enum:get_hashcode. This function
9823         avoids the overhead of boxing the enum to the underlying type.
9824
9825 2008-07-21  Mark Probst  <mark.probst@gmail.com>
9826
9827         * reflection.c (mono_method_get_object): Don't let static RGCTX
9828         invoke wrappers get into MonoReflectionMethods.
9829
9830 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
9831
9832         * object-internals.h:
9833         * object.c: New mono_runtime_class_init_full function
9834         that makes throwing the exception optinal.
9835
9836         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
9837         for the case where the exception object is supplied.
9838
9839 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
9840
9841         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
9842         old ld versions.
9843
9844         Contributed under MIT/X11 license.
9845
9846 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
9847
9848         * string-icalls.c (ves_icall_System_String_InternalSplit):
9849         Optimize array allocation by caching the MonoClass of the
9850         array type.
9851
9852         * icall.c (ves_icall_Type_GetMethodsByName): Same.
9853
9854         * reflection.c (mono_param_get_objects): Same.
9855
9856 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
9857
9858         * icall-def.h:
9859         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
9860         It inflates the given type using the class context.
9861
9862 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
9863
9864         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
9865         the vtable if it already exists.
9866
9867         * object-internals.h: Add mono_class_try_get_vtable as part of the
9868         internal API.
9869
9870         * reflection.c (mono_type_get_object): Use the MonoObject from the
9871         vtable when possible. Reduces locking contention on reflection heavy
9872         code.
9873
9874 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
9875
9876         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
9877         g_bit_nth_msf () since that macro is not implemented in eglib.
9878
9879 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
9880
9881         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
9882         on platforms which do not support it.
9883
9884 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
9885
9886         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
9887
9888 2008-07-11  Martin Baulig  <martin@ximian.com>
9889
9890         * mono-debug-debugger.h
9891         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
9892
9893         * mono-debug-debugger.c
9894         (_mono_debugger_interruption_request): New global volatile variable.
9895         (mono_debugger_check_interruption): New public function.
9896
9897         * threads.c
9898         (mono_thread_current_check_pending_interrupt): Call
9899         mono_debugger_check_interruption().
9900         (mono_thread_interruption_checkpoint_request): Likewise.
9901
9902 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9903
9904         * verify.c: Add more type checks for loaded types. Verify the result
9905         handle from ldtoken.
9906
9907 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9908
9909         * loader.c (field_from_memberref): Don't crash if the field
9910         wasn't found.
9911
9912 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9913
9914         * verify.c: Verify if type and method instantiations
9915         don't have invalid VAR or MVAR arguments.
9916
9917 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9918
9919         * verify.c: Fix double free of function pointer list.
9920
9921 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9922
9923         * object.c (mono_string_to_utf8): Comment the new code as it
9924         breaks under eglib.
9925
9926 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
9927
9928         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
9929
9930 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
9931
9932         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
9933           is not throw too many times.
9934
9935         Code is contributed under MIT/X11 license.
9936
9937 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
9938
9939         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
9940         debugging is turned off.
9941
9942 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
9943
9944         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
9945
9946 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9947
9948         * class-internals.h, class.c: Added new generic sharing option:
9949         Share only stuff in System.Collections.Generic, which is now the
9950         default.
9951
9952 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9953
9954         * generic-sharing.c, class-internals.h: New function for getting a
9955         generic method in a generic class given the corresponding method
9956         for a different instantiation of the class.  Partly refactored
9957         from mini-trampolines.c.
9958
9959         * class.c: Make sure generic methods have a class_inst if they are
9960         part of a generic class.
9961
9962         * metadata.c (mono_type_stack_size_internal): Handle type
9963         variables.
9964
9965 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9966
9967         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
9968         Signifies whether information on the this/vtable/mrgctx variable
9969         is available.
9970
9971 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9972
9973         * object.c, object-internals.h, icall.c: New function
9974         mono_delegate_ctor_with_method(), which does the same as
9975         mono_delegate_ctor(), but takes an explicit method argument
9976         instead of taking the method from the jit info.
9977
9978         * marshal.c: When creating a delegate with an inflated method take
9979         the "this" argument as the target class for the castclass.
9980
9981 2008-07-03  Mark Probst  <mark.probst@gmail.com>
9982
9983         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
9984         mono_jit_info_table_find() to perform very badly in some cases.
9985
9986 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
9987
9988         * icall.c (type_from_typename): Handle 'string'.
9989
9990         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
9991         wrappers into the wrapper_hash, since the key is not a MonoMethod.
9992
9993 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
9994
9995         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
9996
9997         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
9998         number of available managed allocator types.
9999
10000         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
10001         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
10002
10003 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
10004
10005         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
10006         which is a low level lock protecting just the 'jit_code_hash' hash table.
10007
10008         * domain.c: Initialize+cleanup jit_code_hash_lock.
10009         
10010 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10011
10012         * coree.c (mono_load_coree): Set coree_module_handle global variable only
10013         after initialization.
10014
10015         * coree.h: Make MonoFixupExe internal.
10016
10017         Contributed under MIT/X11 license.
10018
10019 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10020
10021         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
10022         because that is platform independent. Check NumberOfRvaAndSizes in PE32
10023         as well.
10024         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
10025         image being loaded is a CLI image and _CorValidateImage gets called.
10026
10027         * coree.h: Add MonoLoadImage.
10028
10029         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
10030         instead of LoadLibrary.
10031
10032         Contributed under MIT/X11 license.
10033
10034 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
10035
10036         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
10037         for any primitive type.
10038
10039 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
10040
10041         * object.c (mono_array_new_specific): Optimize this and the other allocation
10042         functions a bit.
10043         
10044         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
10045         domains too if mono_dont_free_domains is set.
10046
10047         * domain-internals.h (mono_dont_free_domains): New internal option controlling
10048         whenever to free appdomain data after it has been unloaded.
10049
10050         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
10051         
10052 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
10053
10054         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
10055         (mono_method_get_equivalent_method): Fix a warning.
10056
10057         * object.c (mono_message_init): Avoid looking up array types for each call.
10058
10059 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
10060
10061         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
10062         call.
10063
10064         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
10065         even more.
10066
10067         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
10068         each iteration.
10069
10070         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
10071         fields of an enum.
10072
10073 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
10074
10075         * object.c (mono_value_box): Fix boxing of nullables.
10076
10077 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
10078
10079         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10080         mono_module_handle that is defined by the linker; no initialization required.
10081         * coree.h: Remove mono_module_handle, add __ImageBase, update
10082         mono_image_open_from_module_handle.
10083         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10084         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10085         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10086         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10087         to 4 GB away from image base address. IA64 version is not tested but was very
10088         easy to implement and should work if we ever need it.
10089         * domain.c (mono_init_internal): Avoid system error message boxes.
10090         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10091         with has_entry_point. Handle do_mono_image_load fauilre correctly.
10092         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10093         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10094         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10095
10096         Contributed under MIT/X11 license.
10097
10098 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10099
10100         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10101         as part of the private mono API.
10102         
10103         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10104         Do proper argument checking for methods that belong to generic classes.
10105         Do proper type resolution for GMFH/2.
10106         Fixes #377324.
10107         
10108 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10109
10110         * verify.c (do_switch): Fix a memory corruption bug with
10111         the jump index is out of bound.
10112
10113 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10114
10115         * verify.c: Disable debug code.
10116
10117 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10118
10119         * reflection.c (mono_image_get_methodbuilder_token): Use
10120         mono_image_get_methodspec_token_for_generic_method_definition
10121         instead of mono_image_get_memberref_token. We cache more memberef
10122         entries now.
10123
10124 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10125
10126         * verify.c: Inflate exception clause types.
10127         Fixes #402606.
10128         
10129 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10130
10131         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10132         name.
10133
10134         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10135
10136         * reflection.c (mono_image_create_method_token): Same.
10137
10138 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10139
10140         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10141         It does the same as mono_image_get_methodref_token but works on
10142         MethodBuilder.
10143
10144         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10145         and always generate a methodspec. This follows the old behavior and fixes
10146         the regressions in System.Core. 
10147
10148 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10149
10150         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10151         don't event mono_class_get () succeeds. Fixes #402182.
10152
10153 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10154
10155         * metadata-internals.h: Added MonoDynamicImage::methodspec
10156         hashtable to store methodspec tokens created for MethodBuilders.
10157
10158         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10159         MethodBuilders as open instantiations if a methodspec was requested.
10160
10161         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10162
10163         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10164
10165         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10166
10167         Fixes bug #349190.
10168
10169 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10170
10171         * loader.c (method_from_methodspec): Avoid crashing if the
10172         method lookup fails.
10173
10174 2008-06-20  Dick Porter  <dick@ximian.com>
10175
10176         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10177         classes being in a different assembly.  Fixes bug 399184.
10178
10179 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10180
10181         * loader.c (mono_loader_init): Make this callable multiple times.
10182         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10183         the runtime is initialized. Fixes #401755.
10184
10185 2008-06-19  Dick Porter  <dick@ximian.com>
10186
10187         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10188         Fixes bug 349688.
10189
10190 2008-06-19  Dick Porter  <dick@ximian.com>
10191
10192         * socket-io.c:
10193         * icall-def.h: Implement Socket generic Send() and Receive()
10194         methods.  Fixes bug 395168.
10195
10196 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10197
10198         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10199
10200         Contributed under MIT/X11 license.
10201
10202 2008-06-18  Martin Baulig  <martin@ximian.com>
10203
10204         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10205         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10206         set to 80.0.  The debugger <-> runtime interface is now frozen as
10207         well.   
10208
10209         * mono-debug.c
10210         (mono_debug_debugger_version): Bump to 4.
10211
10212 2008-06-18  Martin Baulig  <martin@ximian.com>
10213
10214         * debug-mono-symfile.c
10215         (load_symfile): Don't check the minor version.
10216
10217         * debug-mono-symfile.h: Bump the version number to 50.0.
10218
10219 2008-06-18  Martin Baulig  <martin@ximian.com>
10220
10221         * debug-mono-symfile.c
10222         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10223         minimum required version.
10224
10225 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10226
10227         * reflection.c (mono_custom_attrs_from_property): Fix support for
10228         retriveving cattrs of dynamic inflated generic types.
10229
10230         * reflection.c (mono_custom_attrs_from_event): Same.
10231
10232         * reflection.c (mono_custom_attrs_from_field): Same;
10233
10234         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10235
10236         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10237         Moved to metadata.c.
10238
10239         * metadata.c: New functions to retrive the equivalent field, event
10240         of property from the generic type definition.
10241
10242         * metadata-internals.h: Added new functions from metadata.c.
10243
10244 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10245
10246         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10247         to cached in a mempool is used.
10248
10249         * metadata.c (free_generic_class): In some situations field generic_info type
10250         is not properly dup'ed and leads to double free'ing.
10251
10252         Fixes #400643.
10253
10254 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10255
10256         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10257         this arguments (will be needed later for generic methods).
10258         Collect stats.
10259
10260 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10261
10262         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10263         Create a static RGCTX invoke wrapper for methods which require it.
10264
10265 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10266
10267         * object.c, class-internals.h: New function for checking whether
10268         an individual field is special static.
10269
10270 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10271
10272         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10273         linear search since the table is sorted.
10274
10275         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10276         Fixes #324180.
10277
10278 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10279
10280         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10281         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10282
10283         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10284
10285         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10286         
10287         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10288         InterlockedCompareExchange to query and modify 
10289         thread->interruption_requested.
10290
10291         * object-internals.h (struct _MonoThread): Change interruption_requested
10292         to a gint32 so it can be modified by atomic operations. Add 
10293         'critical_region_level' from the managed side, change small_id to a guint32,
10294         add new set of 'unused' fields.
10295
10296         * appdomain.c: Bump corlib version.
10297
10298 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10299
10300         * class.c (mono_class_from_name): Search modules as well. Fixes
10301         #322332.
10302
10303 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10304
10305         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10306         templates.  Templates are generalized with an additional type_argc
10307         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10308         have type_argc>0.
10309
10310         * domain-internals.h, domain.c: New hash table for looking up
10311         MRGCTXs.
10312
10313         * metadata.c, metadata-internals.h: Rename hash and equal
10314         functions for MonoGenericInst's and make them public.
10315
10316         * class-internals.h: New data structures for the MRGCTX.  Macros
10317         for distinguishing slots in the RGCTX and the MRGCTX.
10318
10319 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10320
10321         * object.c (mono_method_get_imt_slot): Put the same methods of
10322         different instantiations of the same generic interface in the same
10323         IMT slots, to make generic sharing simpler.
10324
10325 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10326
10327         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10328
10329         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10330         This function works just like mono_metadata_field_info, but
10331         accept a mempool as argument to be used allocating memory.
10332
10333         * marshal.c (mono_marshal_load_type_info): Use new function
10334         to load marshal data into image mempool.
10335
10336 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10337
10338         * class.c (mono_class_inflate_generic_type_with_mempool):
10339         This function allows to inflate a generic type using
10340         a mempool.
10341
10342         * class.c (inflate_generic_type): Take a mempool as argument
10343         and use it to do type dup'ing.
10344
10345         * class.c (mono_class_setup_fields): Field type for generic
10346         generic classes are allocated from the image mempool.
10347
10348         * metadata.c (free_generic_class): Inflated field type is
10349         now allocated in the image mempool.
10350
10351 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10352
10353         * threads.c (thread_cleanup): Free MonoThread::name.
10354
10355 2008-06-12  Marek Habersack  <mhabersack@novell.com>
10356
10357         * appdomain.c (ensure_directory_exists): avoid unnecessary
10358         mkdir(2) calls when the shadow directory already exists.
10359         (mono_make_shadow_copy): copy also satellite assemblies from the
10360         private bin directories.
10361
10362 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10363
10364         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
10365         
10366         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
10367         a page boundary. Fixes #396219.
10368
10369 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10370
10371         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
10372         due to double-checked locking.
10373
10374 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10375
10376         * assembly.c (build_assembly_name): Release memory on failure.
10377
10378         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
10379
10380 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10381
10382         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
10383         memory on failure.
10384
10385 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10386
10387         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
10388         memory on failure.
10389
10390 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10391
10392         * loader.c (field_from_memberref): Check if field signature type is equal
10393         to the non-inflated type of the field. Fixes #398980.
10394
10395 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10396
10397         * assembly.c (mono_assembly_load_from_full): Call 
10398         mono_assembly_load_friends () outside the assemblies lock, since it can
10399         acquire the loader lock. Fixes #323696.
10400
10401         * reflection.c (resolve_object): Inflate the inst with the context for
10402         FieldOnTypeBuilderInst. Fixes #399010.
10403
10404 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10405
10406         * reflection.c (mono_image_get_field_on_inst_token): Don't
10407         inflate the field to encode it's signature. If it's a
10408         VAR or MVAR it should stay that way in the signature.
10409         Fixes #399047.
10410
10411 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10412
10413         * reflection.c (resolve_object): Release memory of inflated types.
10414
10415 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10416
10417         * loader.c (mono_method_get_signature_full): Remove assert about
10418         loading a methodspec to a generic method. We have such methods, such as
10419         System.Threading.Interlocked::CompareExchange<T>.
10420         This assert was removed since it crashes the verifier when it checks
10421         methods calling CompareExchange<T>.
10422
10423 2008-06-10  Marek Safar  <marek.safar@gmail.com>
10424
10425         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
10426         of Type array and not MonoType.
10427
10428 2008-06-10  Marek Habersack  <mhabersack@novell.com>
10429
10430         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
10431         <lupus@ximian.com>
10432
10433 2008-06-10  Martin Baulig  <martin@ximian.com>
10434
10435         * debug-mono-symfile.h
10436         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
10437         changes to the file format, but we were generating incorrect
10438         source file indices in the line number table due to a bug, which
10439         made backtraces report an incorrect source file.
10440
10441 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10442
10443         * mono-debug.c: Moved mono_debug_free_method_jit_info from
10444         mini/debug-mini.c to here.
10445
10446         * mono-debug.c (il_offset_from_address): Free memory from find_method.
10447
10448         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
10449         use it to release structs returned by mono_debug_find_method.
10450
10451 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
10452
10453         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
10454         since it needs to set method->slot for all interface methods.
10455
10456 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10457
10458         * class-internals.h: Forgot to add.
10459
10460 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10461
10462         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
10463
10464         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
10465         Lookup the custom attributes from property_hash.
10466
10467         * reflection.c (mono_save_custom_attrs): Save the custom attributes
10468         in property_hash. Allocate all data using the image mempool.
10469
10470         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
10471         for dynamic_custom_attrs to checks if the image is dynamic.
10472
10473 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10474
10475         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
10476         assemblies array.
10477         
10478         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
10479         runtime functions while holding the domain assemblies lock.
10480
10481 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10482
10483         * verify.c: Reapplied the last bit of the reverted changes.
10484
10485 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10486
10487         * verify.c: Reapplied more of the reverted changes.
10488
10489 2008-06-09  Martin Baulig  <martin@ximian.com>
10490
10491         * debug-mono-symfile.c (load_symfile): Check the major version
10492         first; if it's wrong, don't print the minor version in the error message.
10493
10494 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10495
10496         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
10497         lock instead of the domain lock to avoid deadlocks, since the thread might
10498         already hold the loader lock.
10499
10500         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
10501         (mono_thread_attach): Ditto.
10502
10503         * monitor.c: Use a TLS variable for holding the current thread id instead
10504         of calling pthread_self ().
10505         (mono_monitor_init_tls): New internal function to initialize the TLS
10506         variable.
10507         (mono_monitor_try_enter_internal): Put the owner == id check after the
10508         owner == 0 check.
10509
10510         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
10511         missed optimizations when using gcc-4.3.
10512
10513 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
10514
10515         * reflection.c (mono_dynamic_image_free): Free the memory
10516         used by MonoGenericParam in MonoDynamicImage::gen_param.
10517
10518         * reflection.c (mono_reflection_setup_generic_class): Allocate
10519         container from mempool.
10520
10521         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
10522         container from mempool.
10523
10524 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10525
10526         * threads.c (mono_set_pending_exception): New internal function to set the
10527         pending exception of the current thread.
10528         (mono_thread_get_and_clear_pending_exception): Check for 
10529         thread->pending_exception as well.
10530
10531         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
10532
10533         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
10534         it can trigger a collection.
10535
10536 2008-06-06  Martin Baulig  <martin@ximian.com>
10537
10538         Merged the `debugger-kahalo' branch.
10539
10540         * mono-debug.h
10541         (MONO_DEBUGGER_VERSION): Bumped to 72.
10542
10543         * debug-mono-symfile.h
10544         (MonoSymbolFileMethodIndexEntry): Removed.
10545         (MonoSymbolFileMethodEntry): New public typedef.
10546         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
10547         (MonoSymbolFileSourceEntry): Remove everything except `index' and
10548         `data_offset'.
10549         (MonoSymbolFileMethodEntry): Removed.
10550         (MonoSymbolFileLexicalBlockEntry): Removed.
10551         (MonoSymbolFileLineNumberEntry): Removed.
10552         (MonoDebugLexicalBlockEntry): Removed.
10553         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
10554         removed `num_il_offsets' and `il_offsets'.
10555         (MonoSymbolFile): Replace `version' with `major_version' and
10556         `minor_version'.
10557         (MONO_SYMBOL_FILE_VERSION): Replace with
10558         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
10559         `MONO_SYMBOL_FILE_MINOR_VERSION'.
10560
10561         * debug-mono-symfile.c
10562         (mono_debug_symfile_lookup_location): Add support for the new line
10563         number table format.
10564
10565 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10566
10567         * metadata.c (free_generic_class): Release the inflated
10568         MonoClass of dynamic generic classes if it's not a generic
10569         type definition.
10570
10571 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10572
10573         * verify.c: Reapplied more of the reverted changes.
10574
10575 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10576
10577         * reflection.c (lookup_custom_attr): Clean the cached flag or
10578         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
10579         for SRE types.
10580
10581 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10582
10583         * verify.c: Reapplied a small part of the reverted changes.
10584
10585 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10586
10587         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10588
10589         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
10590         previously in managed code.
10591         (mono_monitor_exit): Ditto.
10592         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
10593
10594         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
10595         the managed definition.
10596
10597 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10598
10599         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
10600
10601 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10602
10603         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
10604         
10605         * monitor.c: Add some micro optimizations.
10606
10607         * icall.c (type_from_typename): Handle 'bool'.
10608
10609 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10610
10611         * verify.c: Implement constructor verification per P III 1.8.1.4.
10612         Fixes #396716.
10613
10614 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10615
10616         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
10617         holding the assemblies lock here too.
10618
10619 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10620
10621         * verify.c: Kill stack_top function.
10622
10623 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10624
10625         * verify.c: Kill stack_get function.
10626
10627 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10628
10629         * verify.c (mono_method_verify): Last change broke the build. Fixed.
10630
10631 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10632
10633         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
10634         more reliable.
10635
10636         * verify.c (mono_method_verify): Inflate params and locals to avoid
10637         mismatch when checking for compatibility.
10638
10639 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
10640
10641         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
10642         Length prefix should be size in bytes. Fix bug #339530.
10643         
10644         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
10645         Length prefix should be size in bytes. Fix bug #339530.
10646
10647         Code is contributed under MIT/X11 license.
10648
10649 2008-06-05  Bill Holmes <billholmes54@gmail.com>
10650
10651         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
10652
10653         Contributed under MIT/X11 license.
10654
10655 2008-06-05  Martin Baulig  <martin@ximian.com>
10656
10657         * mono-debug-debugger.c
10658         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
10659
10660 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
10661
10662         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
10663         while holding the assemblies lock to prevent deadlocks. Handle the case
10664         where the search hook returns NULL but the assembly was still loaded.
10665         Fixes #323696.
10666
10667         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
10668         modify domain state.
10669
10670 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
10671
10672         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
10673         * Makefile.am (pedump_LDADD): Post-process object files and
10674         add dtrace-generated object file, if necessary.
10675
10676         Code is contributed under MIT/X11 license.
10677
10678 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10679
10680         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
10681
10682 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10683
10684         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
10685
10686 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10687
10688         * threads.c: Try to free everything from the delayed free table
10689         when shutting down threads, and set the variable to NULL after the
10690         table is freed so that calling
10691         mono_thread_hazardous_try_free_all() when shutting down the root
10692         domain doesn't crash.
10693
10694 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10695
10696         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
10697         the caller if resulting type was inflated.
10698
10699         * class.c (mono_class_create_from_typespec): Free the MonoType if it
10700         was inflated.
10701
10702         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
10703
10704
10705 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
10706
10707         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
10708         class library tests.
10709
10710         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
10711         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
10712         #396989.
10713
10714 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10715
10716         * domain.c, domain-internals.h: The JIT infos are now freed by the
10717         JIT info table code.  They are freed immediately if there only a
10718         single JIT info table in circulation.  If there is more, the free
10719         is delayed via a queue.
10720
10721         * threads.c, threads-types.h: New hazard pointer function for
10722         freeing all freeable delayed items in one sitting.
10723
10724 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10725
10726         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
10727
10728         * reflection.c (typebuilder_setup_properties): Same.
10729
10730         * reflection.c (typebuilder_setup_events): Same.
10731
10732 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10733
10734         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
10735         and use it for allocating memory.
10736
10737         * reflection.c (mono_marshal_spec_from_builder): Same.
10738
10739         * reflection.c: Change code to use new signatures.
10740
10741         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
10742
10743 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10744
10745         * decimal.c (rescale128): Put back one line which was accidently commented
10746         out.
10747         
10748         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
10749         to cause crashes.
10750
10751 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10752
10753         * reflection.c (mono_reflection_generic_class_initialize): Name must
10754         be always malloc'ed so we can free it later on. Do this for field, property
10755         and event.
10756
10757         * metadata.c (free_generic_class): Free field, property and event names.
10758
10759 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10760
10761         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
10762         instead of g_memdup.
10763
10764         * reflection.c (typebuilder_setup_fields): Same.
10765
10766 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10767
10768         * decimal.c (rescale128): Optimize this function a bit more.
10769
10770 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10771
10772         * metadata.c (free_generic_class): Release some memory from
10773         SRE generic classes.
10774
10775 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10776
10777         * reflection.c (mono_image_get_generic_field_token): No reference
10778         to name is kept, free it.
10779
10780         * reflection.c (mono_reflection_generic_class_initialize): Free
10781         more memory of the inflated field.
10782
10783 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10784
10785         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
10786         code.
10787
10788 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10789
10790         * reflection.c (mono_dynamic_image_free): Release memory used by
10791         MonoDynamicImage::array_methods elements.
10792
10793         * reflection.c (assembly_add_win32_resources): Release memory after
10794         encoding.
10795
10796 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10797
10798         * decimal.c (log2_32): Use an optimized version for this function too.
10799         
10800         * decimal.c (log2_64): Fix this on 32 bit machines.
10801
10802 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10803
10804         * class.c (mono_dup_array_type): Implement allocation using a mempool.
10805
10806         * class.c (mono_metadata_signature_deep_dup): Same.
10807
10808         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
10809         a mempool.
10810
10811         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
10812
10813         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
10814
10815         * metadata-internals.h: Added mono_metadata_signature_dup_full.
10816
10817         * class-internals.h: Update signatures to take a MonoMemPool.
10818
10819 2008-06-02  Dick Porter  <dick@ximian.com>
10820
10821         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
10822         * icall-def.h: Add
10823         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
10824         FormatMessage API to get the error text.  Fixes bug 321827.
10825
10826 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10827
10828         * decimal.c: Add some micro optimizations to make decimal operations faster.
10829
10830 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
10831
10832         * reflection.c (method_encode_clauses): Take a mempool
10833         as parameter and use it to allocate the clause array.
10834
10835         * reflection.c (mono_image_get_field_on_inst_token): Free
10836         the inflated type after encoding it.
10837
10838         * reflection.c (mono_dynamic_image_free): Free each element
10839         of MonoDynamicImage::gen_params.
10840
10841         * reflection.c (reflection_methodbuilder_to_mono_method):
10842         Allocate the generic param array from the mempool.
10843         Allocate signature params from the mempool.
10844
10845         * reflection.c (mono_reflection_generic_class_initialize):
10846         Free inflated fields after been used.
10847
10848 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
10849
10850         * icall.c: Reapply the memory leak fixes as they no
10851         longer make mono crash.
10852
10853 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
10854
10855         * reflection.c (mono_type_get_object): Don't store the suplied
10856         MonoType with type_hash. A caller which pass a type that
10857         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
10858         might end with a pointer to freed memory.
10859         The solution is to use byval_arg or this_arg from the associated
10860         MonoClass of the supplied type.
10861
10862 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
10863
10864         * icall.c: Revert the rest of the last change as it breaks the build too.
10865
10866 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10867
10868         * icall.c: Revert a leak fix as it's breaking the build.
10869
10870 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10871
10872         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
10873
10874 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10875
10876         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
10877
10878 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10879
10880         * icall.c: Fix some memory leaks.
10881
10882 2008-05-29  Dick Porter  <dick@ximian.com>
10883
10884         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
10885         async socket operations from the pending list when a socket
10886         closes.  Leaving it until the threadpool services the event
10887         exposes a race condition when a socket descriptor is reused.
10888         Fixes bug 377589.
10889
10890 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10891
10892         * object.c: Fix negative index check for array alocation.
10893
10894 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10895
10896         * icall.c, marshal.c: Delegate wrappers should skip visibility.
10897         This check is performed by the verifier for IL created delegates
10898         and by Delegate::CreateDelegate for programatically created ones.
10899         Fixes #372406.
10900
10901 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10902
10903         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
10904         Fix code to use mono_array_size_t instead of int.
10905
10906         Based on patch by Luis F. Ortiz.
10907         Contributed under X11 license.
10908         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10909
10910 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10911
10912         * icall.c: Added ves_icall_System_Array_GetLongLength and
10913         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
10914         arrays.
10915
10916         * icall.h: Export both new functions.
10917
10918         Based on patch by Luis F. Ortiz.
10919         Contributed under X11 license.
10920         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10921
10922 2008-05-28  Martin Baulig  <martin@ximian.com>
10923
10924         The debugger now requires exactly r103463.
10925
10926         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
10927         This version is not supported by the debugger, wait for 72.
10928
10929 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10930
10931         * object.h: Changed array related functions to use
10932         mono_array_size_t instead of guint32. Forgot to commit this file.
10933
10934         Patch by Luis F. Ortiz.
10935         Contributed under X11 license.
10936         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10937
10938
10939 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10940
10941         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
10942         don't define it. Use the number literal instead.
10943
10944 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10945
10946         * icall.c: Changed array related functions to use
10947         mono_array_size_t instead of guint32.
10948
10949         * icall.c (ves_icall_System_Array_GetLength): Check for length
10950         overflow under MONO_BIG_ARRAYS.
10951
10952         Based on patch by Luis F. Ortiz.
10953         Contributed under X11 license.
10954         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10955
10956 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10957
10958         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
10959
10960         Based on patch by Luis F. Ortiz.
10961         Contributed under X11 license.
10962         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10963
10964 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10965
10966         * object.c, object.h: Changed array related functions to use
10967         mono_array_size_t instead of guint32.
10968
10969         Patch by Luis F. Ortiz.
10970         Contributed under X11 license.
10971         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10972
10973 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10974
10975         * object.h: Introduced mono_array_size_t typedef. This must be used
10976         in all places an array length is expected. This is 64bits wide if
10977         MONO_BIG_ARRAYS is enabled.
10978
10979         Patch by Luis F. Ortiz.
10980         Contributed under X11 license.
10981         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10982
10983 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
10984
10985         * security-manager.c class.c: Set the class exception info by calling
10986         mono_class_set_failure ().
10987
10988         * class.c (mono_class_get_exception_data): New accessor function.
10989         (mono_class_set_failure): Store exception_data in the property hash.
10990
10991         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
10992         the struct as a property.
10993
10994         * loader.c (mono_get_method_full): Store the lookup result for method
10995         tokens in method_cache, the others in methodref_cache to decrease the memory
10996         usage of hash tables.
10997
10998         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
10999         (mono_image_init): method_cache is lazy inited now.
11000
11001         * metadata-internals.h (struct _MonoImage): Change method_cache to
11002         a MonoValueHashTable, add a separate methodref_cache.
11003
11004 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
11005
11006         * number-formatter.h: Fix tables to avoid arithemtic overflow in
11007           Double.ToString as exposed by Bug #383531.
11008
11009 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
11010
11011         * number-formatter.h: Make some tables static.
11012
11013         * class.c (mono_method_set_generic_container): New accessor function.
11014         (mono_method_get_generic_container): Ditto.
11015
11016         * class-internals.h (struct _MonoMethod): Remove rarely used 
11017         'generic_container' field, store it in the property hash instead. Add 
11018         'is_generic' boolean field instead.
11019
11020         * image.c (mono_image_init): Initialize property_hash.
11021         (mono_image_close): Destroy property_hash.
11022
11023         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
11024         hold rarely used fields of runtime structures belonging to this image.
11025
11026         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
11027         to get/set method->generic_container.
11028
11029         * loader.c (mono_get_method_from_token): Avoid loading the method header for
11030         generic methods.
11031
11032 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
11033
11034         * class.c (mono_class_inflate_generic_method_full): Don't increase
11035         mono_stats.inflated_method_count for methods found in the cache.
11036
11037         * threads.c (mono_thread_request_interruption): Add a comment about 
11038         QueueUserAPC ().
11039
11040 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
11041
11042         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
11043         interface_offsets_packed table.
11044         
11045         * class.c (mono_class_init): Remove some dead code.
11046
11047         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
11048         mono_class_setup_vtable () when CAS is active to detect security problems.
11049
11050 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
11051
11052         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
11053
11054         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
11055         parameters as it's irrelevant for delegate checking.
11056
11057 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
11058
11059         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
11060
11061         * class.c (mono_class_init): Control the creation of a generic vtable using
11062         a global which is true by default, but set to false by the runtime startup code.
11063         
11064         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
11065         Disabled for now since it breaks the embedding API.
11066         Move the setup of class->methods for arrays to mono_class_setup_methods ().
11067         (mono_class_setup_methods): Add a memory barrier.
11068
11069         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
11070         when mono_class_init () doesn't compute the generic vtable.
11071         
11072 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11073         * profiler.c: Added mono_profiler_install_statistical_call_chain,
11074         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11075         to support call chains (backtrace) in the stat profiler.
11076         * profiler.c, profiler-private.h: Likewise.
11077
11078 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11079
11080         * generic-sharing.c: Init generic class when a method of it is
11081         requested via a runtime generic context.
11082
11083 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11084
11085         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11086
11087         * reflection.c (mono_type_get_object): Add a FIXME.
11088
11089         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11090
11091         * class.c (mono_class_get_method_by_index): New helper function, returning an
11092         entry in the class->methods array.
11093
11094 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11095
11096         * class.c (mono_class_init): Only do the array optimization for szarrays. 
11097         Avoid creating a generic vtable for generic instances as well.
11098         (mono_class_get_method_from_name_flags): Don't search in the metadata for
11099         generic instances.
11100
11101 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
11102
11103         * loader.c (mono_get_method_constrained): Inflate the signature
11104         with class context. Fix #325283.
11105
11106 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11107
11108         * object.c (mono_class_create_runtime_vtable): Add a comment.
11109
11110         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11111         where needed.
11112         (setup_interface_offsets): Handle the case when this is called twice for arrays.
11113         (mono_class_setup_vtable_general): Add an assert.
11114         (mono_class_init): Avoid creating a generic vtable for arrays.
11115
11116         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11117         here, let mono_class_init () do that.
11118
11119         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11120         interfaces in mscorlib.
11121
11122         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11123         interfaces. Add some comments.
11124         (mono_class_init): Call mono_class_setup_methods () here since it is no
11125         longer called by mono_class_setup_vtable ().
11126
11127         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11128         not set in class->vtable.
11129         (mono_class_create_runtime_vtable): Reenable the disabled code.
11130
11131         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11132         now as it causes some test failures.
11133
11134         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11135         if using the vtable trampoline. Also remove some strange code which put the
11136         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11137         stuff as it is no longer needed.
11138
11139 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11140
11141         * pedump.c: Give make --verify all option check code as well.
11142         Using --verify code won't check for metadata now.
11143
11144 2008-05-19  Martin Baulig  <martin@ximian.com>
11145
11146         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11147
11148         * mono-debug.c
11149         (_mono_debug_using_mono_debugger): New global variable; it's set
11150         directly by the debugger, so mono_debug_using_mono_debugger() also
11151         works after attaching.
11152
11153 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11154
11155         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11156         as we do double checked locking on MonoClass::runtime_info and
11157         MonoClassRuntimeInfo::domain_vtables.
11158
11159 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11160
11161         * debug-helpers.c (print_field_value): Fix a warning.
11162
11163 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11164
11165         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11166         set in the AOT case.
11167
11168 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11169
11170         * class.c (mono_class_setup_vtable_general): Use memory barriers
11171         as we do double checked locking on MonoClass::vtable.
11172
11173 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11174
11175         * reflection.c (resolve_object): Inflate only if the generic context
11176         is not null. Fixes #389886.
11177
11178 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11179
11180         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11181         instead of g_free.
11182
11183         Code is contributed under MIT/X11 license.
11184
11185 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11186
11187         * class.c: Revert unrelated change.
11188
11189 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11190
11191         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11192         a generic instantiation, use mono_class_from_mono_type instead of playing
11193         with MonoType directly.
11194
11195 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11196
11197         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11198         checks must ignore generic instantiations, so mono_class_has_parent is not
11199         suitable. Fixes #390128.
11200
11201 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11202
11203         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11204         it to avoid registering tokens during metadata generation. Fixes #390023.
11205
11206 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11207
11208         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11209         consistent.
11210
11211         Contributed under MIT/X11 license.
11212
11213 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11214
11215         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11216         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11217         to fixup the EXE image.
11218         (mono_cleanup): Use mono_close_exe_image.
11219         (mono_close_exe_image): New function.
11220         * image.c: Include "marshal.h".
11221         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11222         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11223         counting when the image is loaded outside of mono_image_open_full. Set status
11224         based on GetLastError.
11225         * coree.c: Include required headers. Add init_from_coree.
11226         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11227         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11228         (_CorExeMain): Set init_from_coree.
11229         (CorExitProcess): Only call ExitProcess for now.
11230         (CorBindToRuntimeEx): New stub implementation.
11231         (CorBindToRuntime): New function.
11232         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11233         (MonoFixupExe): ILONLY executables require no fixups.
11234         (mono_set_act_ctx): New function to set activation context.
11235         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11236         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11237         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11238         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11239         as MONO_INTERNAL.
11240         * domain-internals.h: Add mono_close_exe_image.
11241
11242         Contributed under MIT/X11 license.
11243
11244 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11245
11246         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11247         size for generic param and event tables. Fixes #388977.
11248
11249 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11250
11251         * loader.c (mono_method_signature): Use memory barriers because of the double
11252         checked locking pattern.
11253
11254         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11255         aborting or aborted as well. Fixes #376391.
11256         
11257         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11258         existing runtime state in the Suspend handler during shutdown.
11259
11260 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11261
11262         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11263
11264         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11265         which are starting up or shutting down.
11266
11267         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11268         this function never returns if the runtime is already shutting down.
11269
11270         * icall.c (ves_icall_System_Environment_Exit): Update after 
11271         mono_threads_set_shutting_down () signature change.
11272         
11273 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11274
11275         * class.c: Added can_access_instantiation to verify if the instantiation
11276         is visible. Fix access check for nested types as they returned TRUE
11277         before doing type and generic instantiation visibility checks.
11278
11279 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11280
11281         * reflection.c (mono_reflection_create_generic_class): The created type
11282         must have a different container from its TypeBuilder. Otherwise they
11283         will end sharing generic arguments, which is wrong.
11284
11285         Due to the sharing, making a generic instance of the created type using
11286         the TypeBuider generic arguments resulted in the generic type definition
11287         been returned, which is wrong as well.
11288
11289         As a bonus the code was leaking the type_params array. This memory should
11290         be allocated from the image mempool.
11291
11292         This fixes bug #354047.
11293
11294 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11295
11296         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11297         to here         as they are now used in assembly.c new code.
11298         Added a skipverification flag to MonoAssembly.
11299         New internal function mono_assembly_has_skip_verification.
11300
11301         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11302         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11303         part of #387274.
11304
11305 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11306
11307         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11308         needed. Fixes #387034.
11309
11310         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11311
11312 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11313
11314         * assembly.c (mono_assembly_load_reference): Prevent crash while
11315         disassembling Silverlight 2.0 executables while we still do not
11316         have GACed libraries.
11317
11318 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11319
11320         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11321
11322 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11323
11324         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11325         of the dynamic case. Fixes #387404.
11326
11327 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11328
11329         *verify.c (mono_verifier_is_class_full_trust): If under
11330         verify_all and the verifier mode was not set, only
11331         gac and corlib types are fulltrust. This makes --verify-all
11332         usable to detect unverifiable code, which is the expected
11333         use case.
11334
11335 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11336
11337         * verify.h: Ops, commited the header with debug
11338         enabled.
11339
11340 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11341
11342         * verify.c (merge_stack): Use the new value on unverifiable
11343         stack merges.
11344
11345         * verify.c (verify_type_compatibility_full): Comparison
11346         of nullable types can't use mono_class_is_assignable_from.
11347
11348         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
11349         that makes all verification errors be reported.
11350
11351         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
11352         mono_method_verify.
11353
11354 2008-05-05  Robert Jordan  <robertj@gmx.net>
11355
11356         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
11357         support for value types. See #386415.
11358
11359         * object.c: comments.
11360
11361         Code is contributed under MIT/X11 license.
11362
11363 2008-05-05  Martin Baulig  <martin@ximian.com>
11364
11365         * debug-mono-symfile.h
11366         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
11367         for old pre-terrania symbol files.
11368
11369 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11370
11371         * mono-config.c: Add ppc64 architecture.
11372
11373         Code is contributed under MIT/X11 license.
11374
11375 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11376
11377         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
11378           PPC64 uses function descriptors as well.
11379
11380         Code is contributed under MIT/X11 license.
11381
11382 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
11383
11384         * object.c (compute_class_bitmap): Ignore literal static fields.
11385
11386         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
11387         var has an invalid format.
11388         (describe_ptr): Add some sanity checks for the vtable.
11389         (add_nursery_frag): Clear unused nursery fragments.
11390         (major_collection): Clear all remaining nursery fragments.
11391
11392 2008-05-03  Robert Jordan  <robertj@gmx.net>
11393
11394         * image.c, metadata-internals.h: add thunk_invoke_cache.
11395
11396         * marshal.c, marshal.h: implement
11397         mono_marshal_get_thunk_invoke_wrapper ().
11398
11399         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
11400
11401         Code is contributed under MIT/X11 license.
11402
11403 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11404
11405         * verify.c (do_leave): Empty the stack.
11406
11407 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11408
11409         * class.c (mono_class_is_assignable_from): Variance
11410         doesn't work between reference and value types. For example,
11411         given type C<T+>, C<int32> is not assignable to C<object>.
11412         Break the argument checking loop on first error. 
11413
11414 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
11415
11416         * icall.c : base64_to_byte_array() needs some more strict
11417           check for sequence of '=' characters. Patch by Santa
11418           Marta (http://deee.g.hatena.ne.jp/santamarta).
11419
11420           Contributed under MIT/X11 license.
11421           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
11422
11423 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
11424
11425         * domain.c: Disable LoadLibrary support to fix Win32 build.
11426
11427         Code is contributed under MIT/X11 license.
11428
11429 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
11430
11431         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
11432         to help with cache behaviour.
11433
11434 2008-05-01  Miguel de Icaza  <miguel@novell.com>
11435
11436         * appdomain.c (mono_domain_from_appdomain): Add new accessor
11437         method. 
11438
11439 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
11440
11441         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
11442
11443 2008-05-01  Dick Porter  <dick@ximian.com>
11444
11445         * process.c (process_get_fileversion): Only pass 16 bits of
11446         language ID to VerLanguageName.  Fixes bug 381204.
11447
11448 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11449
11450         * verify.c (mono_method_verify): Fix the comparison
11451         operator for code bounds check.
11452
11453 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11454
11455         * verify.c (mono_method_verify): Check the bounds of
11456         all access of the code array.
11457
11458 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
11459
11460         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
11461
11462 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
11463
11464         * image.c (mono_image_strong_name_position): Fix return value when the rva is
11465         not valid.
11466
11467 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
11468
11469         * loader.c (mono_get_method_from_token, mono_method_signature): Add
11470         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
11471         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
11472         fixup main EXE images when using mono.exe for mixed-mode assembly support.
11473         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
11474         mono_runtime_load.
11475         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
11476         runtime initialization from metadata.
11477         * assembly.c: Remove obsolete ceGetModuleFileNameA.
11478         (mono_set_rootdir): Use mono_get_module_file_name.
11479         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
11480         handles.
11481         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
11482         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
11483         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
11484         MonoCLIImageInfo. Add support for module handles.
11485         (load_cli_header): Update mono_cli_rva_image_map signature.
11486         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
11487         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
11488         (mono_image_rva_map): Add support for module handles.
11489         (mono_image_ensure_section_idx): Add support for module handles.
11490         (mono_image_close): Add support for module handles.
11491         (do_load_header): Add support for module handles.
11492         (mono_image_open_from_module_handle): New function for internal use.
11493         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
11494         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
11495         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
11496         handles.
11497         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
11498         * image.h: Add mono_image_fixup_vtable.
11499         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
11500         support.
11501         * coree.h: New file.
11502         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
11503         unsupported native code.
11504         (mono_marshal_set_callconv_from_modopt): New function splitted from
11505         mono_marshal_get_managed_wrapper.
11506         (mono_marshal_get_managed_wrapper): Use
11507         mono_marshal_set_callconv_from_modopt.
11508         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
11509         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
11510         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
11511         that results in a deadlock when the runtime is loaded in _CorDllMain.
11512         * Makefile.am: Add coree.c and coree.h.
11513
11514         Contributed under MIT/X11 license.
11515
11516 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11517
11518         * generic-sharing.c: Search for type arguments in array element
11519         types as well.
11520
11521 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11522
11523         * class-internals.h, generic-sharing.c: New, small runtime generic context.
11524
11525         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
11526
11527         * object.c: Don't setup the RGCTX when the vtable is created,
11528         because we're setting it up lazily now.
11529
11530 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
11531
11532         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
11533         64 bit support.
11534
11535 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11536
11537         * verify.c (verify_class_for_overlapping_reference_fields): 
11538         If class is under fulltrust allow reference types to overllap
11539         if they have the same RVA.
11540
11541 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11542
11543         * pedump.c: Added new flag valid-only, that makes the verifier
11544         behaves just like --security=validil. It won't fail type load
11545         due to unverifiable restrictions.
11546
11547 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11548
11549         * class-internals.h (struct MonoMethod): Added a verification_success
11550         field to cache verifier executions. Reduced MonoMethod:slot size by
11551         one bit.
11552
11553 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
11554
11555         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
11556         instead of a 'vt' argument to save an indirection and to allow these to be used
11557         for valuetypes.
11558         (scan_vtype): New helper function to scan an area using a gc descriptor.
11559         (mono_gc_wbarrier_value_copy): Implement this.
11560         (handle_remset): Add support for REMSET_VTYPE.
11561         (find_in_remset_loc): Ditto.
11562         (mono_gc_base_init): Allow some debugging options to be controlled through the
11563         use of the MONO_GC_DEBUG env variable.
11564         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
11565         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
11566
11567 2008-04-23  Martin Baulig  <martin@ximian.com>
11568
11569         * domain.c (mono_domain_create): Move the call to
11570         mono_debug_domain_create() down, after allocating the domain id.
11571
11572 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11573
11574         verify.c (verify_class_for_overlapping_reference_fields): Skip
11575         static fields while verifying for overlapping fields as they
11576         don't matter at all.
11577
11578 2008-04-23  Marek Habersack  <mhabersack@novell.com>
11579
11580         * domain-internals.h: added a declaration of
11581         mono_make_shadow_copy.
11582
11583         * assembly.c (mono_assembly_open_full): shadow copying of
11584         assemblies moved to here, so that all the assemblies within the
11585         application domain's private binary directories can be
11586         processed. Fixes bug #380546
11587
11588         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
11589         mono_make_shadow_copy and made non-static. The decision whether
11590         to shadow-copy an assembly is made based on its location - it's
11591         copied if it's in one of the private application domain binary
11592         directories and its different to the target file in the shadow
11593         directory. Fixes bug #380546
11594
11595 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
11596
11597         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
11598
11599         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
11600         types.
11601
11602         * reflection.c (mono_image_create_token): Handle 
11603         Method/ConstructorOnTypeBuilderInst.
11604         (resolve_object): Ditto.
11605         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
11606         so it can be called from resolve_object. Also handle the case when the inflated
11607         class already has its methods setup.
11608
11609 2008-04-21  Martin Baulig  <martin@ximian.com>
11610
11611         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
11612
11613 2008-04-20  Geoff Norton  <gnorton@novell.com>
11614
11615         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
11616         pointer dereference.
11617
11618 2008-04-15  Marek Habersack  <mhabersack@novell.com>
11619
11620         * appdomain.c (try_load_from): if IOMAP is in effect, call the
11621         portability API to look up the assembly file. Fixes behavior in
11622         situations when the application has a bin/ directory, but the
11623         assembly search patch refers to Bin/ (and thus the requested file
11624         name is Bin/SomeLibrary.dll). Fixes bug #379888
11625
11626 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
11627
11628         verify.c (mono_type_is_generic_argument): Extracted this check
11629         from a dozen places to here.
11630
11631         verify.c: Fixed all issues related to boxing generic arguments
11632         and their constraints.
11633
11634 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
11635
11636         verify.c (mono_class_interface_implements_interface): Fix win32 build.
11637
11638 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
11639
11640         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
11641         isn't finished yet. Fixes #363447.
11642
11643 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
11644
11645         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
11646         Fixes #346419.
11647
11648 2008-04-13  Jb Evain  <jbevain@novell.com>
11649
11650         * domain.c: update the 2.1 profile versions.
11651         Merged from the Moonlight 2 branch.
11652
11653 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
11654
11655         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
11656         mscorlibs for the non-refonly case as well.
11657
11658         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
11659         in mono_assembly_load_from_full (). Fixes #378924.
11660
11661 2008-04-11  Geoff Norton  <gnorton@novell.com>
11662
11663         * icall.c: The global extern environ doesn't exist on Mac.  We
11664         need to call NSGetEnviron instead.
11665
11666 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11667
11668         verify.c: Add generic method constraint verification.
11669
11670 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11671
11672         class.c (mono_class_inflate_generic_method_full): Add a long
11673         explanation to the is_mb_open hack. Remove the FIXME.
11674
11675 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11676
11677         * verify.c (mono_method_verify): Mark all unknown opcodes
11678         as invalid. Mark jmp as unverifiable.
11679
11680 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11681
11682         * verify.c: Add code to do type constraint verification on class instances.
11683
11684         * verify.c (mono_verifier_verify_class): Use the type constraint 
11685         verification code.
11686
11687 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11688
11689         * class.c (mono_class_get_field_default_value): Don't pass cindex
11690         as hint to mono_metadata_get_constant_index. The local is not initialized
11691         and should contain garbage most of the time. This could only work
11692         with a lot of luck.
11693
11694 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11695
11696         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
11697
11698 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11699
11700         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
11701
11702         * class.c (mono_class_from_generic_parameter): Save the token of the
11703         generic param in MonoClass::sizes.generic_param_token.
11704
11705         * reflection.c (mono_custom_attrs_from_class): If the class type is
11706         VAR or MVAR retrieve the attributes of the generic param.
11707
11708 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11709
11710         * class.c (mono_class_init): Do class verification if the verifier
11711         is enabled.
11712
11713 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11714
11715         * verify-internal.h: Added mono_verifier_verify_class.
11716
11717         * verify.c: Added mono_verifier_verify_class. It checks for
11718         classes with explicit layout that have overlapping reference fields.
11719
11720         * pedump.c: Init the verifier state prior to verification. Fixed
11721         command line arguments.
11722
11723 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11724
11725         * Makefile.am: Added verify-internals.h, hopefully fix the build.
11726
11727 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
11728
11729         * verify-internals.h: Fix a warning.
11730
11731 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11732
11733         * verify-internals.h: New header with the verifier configuration
11734         extracted from mini.c.
11735
11736         * verify.c: Implemented the new functions exported by verify-internals.h.
11737
11738 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11739
11740         * verify.c: Add proper verification of ckfinite.
11741
11742 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11743
11744         * verify.c (do_conversion): Improved error message to something
11745         more meanfull.
11746
11747         * verify.c (check_is_valid_type_for_field_ops): Fix to work
11748         with primitive types.
11749
11750 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11751
11752         * verify.c: Added tail prefix checking. Marked icall
11753         as unverifible.
11754
11755 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11756
11757         * verify.c: Fix the detection of branches to the middle
11758         of an instruction.
11759
11760 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
11761
11762         * verify.c: Implemented verification of volatile. and
11763         unaligned. prefix. Check if a type is valid after retrieving it.
11764
11765 2008-04-01  Dick Porter  <dick@ximian.com>
11766
11767         * process.c (process_get_fileversion): If there's no string block,
11768         set the file language to en_US.  Fixes the other new part of bug
11769         374600.
11770
11771 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
11772
11773         * class.c: New functions mono_method_can_access_field_full and
11774         mono_method_can_access_method_full. They perform type visibility
11775         and type site check.
11776
11777         * class-internal.h: Added exported functions.
11778
11779         * verify.c: Use new functions to implement proper visibility checks.
11780
11781 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
11782
11783         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
11784
11785 2008-03-28  Dick Porter  <dick@ximian.com>
11786
11787         * process.c (process_get_fileversion): Use the first language ID
11788         we see, rather than insisting on an invariant language.  Fixes bug
11789         374600.
11790
11791 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
11792
11793         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
11794         the streams to fix reading of invalid memory later.
11795
11796         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
11797         to ease debugging.
11798
11799 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
11800
11801         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
11802         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
11803
11804 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
11805         * threads.h: Added MonoThreadManageCallback type and
11806         mono_thread_set_manage_callback prototype
11807         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
11808         (used to store the mono_thread_manage callback).
11809         * threads.c: Added mono_thread_set_manage_callback, and handle
11810         "MonoThread->manage_callback" in build_wait_tids.
11811
11812 2008-03-26  Dick Porter  <dick@ximian.com>
11813
11814         * process.c (process_get_fileversion): Set FileVersionInfo strings
11815         to Empty when the resource doesn't have the particular info.
11816         Fixes bug 355717.
11817
11818 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
11819
11820         * verify.c (mono_method_verify): Proper prefix validation.
11821
11822 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
11823
11824         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
11825         itself in a separate argument instead of throwing them. Fixes #373448.
11826
11827         * appdomain.c: Bump corlib version.
11828
11829 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
11830
11831         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
11832
11833 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
11834
11835         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
11836         version macros.
11837
11838 2008-03-20  Mark Probst  <mark.probst@gmail.com>
11839
11840         * generic-sharing.c, class-internals.h: Code for putting
11841         reflection types into the runtime generic context.
11842
11843 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
11844
11845         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
11846         Fixes #340662. 
11847
11848
11849 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
11850
11851         * verify.c (VerifyContext): Added instruction prefix data to the struct.
11852
11853         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
11854
11855         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
11856
11857         * verify.c (do_cast): Let the result value keep the boxed status.
11858
11859         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
11860
11861 2008-03-17  Jb Evain  <jbevain@novell.com>
11862
11863         * reflection.c: when running on a 2.0 runtime, emit
11864         unconditionally the #~ header version as 2.0, and the
11865         CLI header version as 2.5, for symmetry's sake with csc.
11866
11867 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
11868
11869         * class.c: Remove the unused cache_interface_offsets stuff.
11870
11871         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
11872         profiler.c: Fix warnings.
11873
11874 2008-03-16  Mark Probst  <mark.probst@gmail.com>
11875
11876         * generic-sharing.c, class-internals.h: Support for putting
11877         methods into the runtime generic context.
11878
11879 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
11880
11881         * class.c (mono_class_setup_fields): Ignore calls made to this function for
11882         classes which are generic instances of not-yet finished typebuilders. Fixes
11883         #351172.
11884
11885         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
11886
11887 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
11888
11889         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
11890
11891         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
11892         field, replace it with a hash table in MonoDynamicImage.
11893
11894         * reflection.c (inflate_mono_method): Access the generic definition object from
11895         image->generic_def_objects instead of imethod->reflection_info.
11896
11897         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
11898
11899         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
11900         
11901         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
11902         function in reflection.c so it is easier to keep in sync with the dynamic image
11903         creation code.
11904
11905         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
11906         mono_image_close ().
11907
11908 2008-03-15  Mark Probst  <mark.probst@gmail.com>
11909
11910         * class.c (mono_class_generic_sharing_enabled): Disable generic
11911         sharing for all architectures except AMD64 and x86 to fix build.
11912
11913 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
11914
11915         * verify.c: Use the generic definition MonoGenericContext when available.
11916         Remove code for checking generics instance compatibility in favor of
11917         mono_class_is_assignable_from.
11918
11919 2008-03-14  Mark Probst  <mark.probst@gmail.com>
11920
11921         * marshal.c, marshal.h, metadata-internals.h, image.c,
11922         wrapper-types.h: New wrapper for invoking a shared static method
11923         without having to pass the runtime generic context argument.
11924
11925 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
11926
11927         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
11928
11929 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
11930
11931         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
11932         
11933         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
11934         create a token from a FieldOnTypeBuilderInst.
11935         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
11936         (resolve_object): Ditto.
11937
11938         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
11939         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
11940
11941 2008-03-14  Martin Baulig  <martin@ximian.com>
11942
11943         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
11944
11945         * debug-mono-symfile.h
11946         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
11947         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
11948
11949 2008-03-10  Martin Baulig  <martin@ximian.com>
11950
11951         * debug-mono-symfile.h
11952         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
11953         `lexical_block_table_offset'.
11954         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
11955         `lexical_blocks'.
11956         (MonoSymbolFile): Added `version'.
11957
11958         * mono-debug.h
11959         (MonoDebugLexicalBlockEntry): Removed.
11960         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
11961         `lexical_blocks'.
11962
11963         * mono-debug.c (mono_debug_add_method): Don't compute lexical
11964         blocks here; the debugger now does this internally.
11965
11966 2008-02-27  Martin Baulig  <martin@ximian.com>
11967
11968         * object.c (mono_runtime_exec_main): Call
11969         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
11970         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
11971
11972 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
11973
11974         * verify.c (verify_type_compatibility_full): Allow native int to be converted
11975         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
11976
11977 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
11978
11979         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
11980         ldftn with a virtual method.
11981
11982 2008-03-13  Geoff Norton  <gnorton@novell.com>
11983
11984         * decimal.c:  Only include memory.h if the platform has it.
11985
11986 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
11987
11988         * assembly.c, class.c, metadata-internals.h: make sure public key
11989         tokesns are compared in a case-insensitive way. Also, all
11990         the lookups in the GAC use a lowercase public key token
11991         (gaacutil already does the lowercasing on install). Fixes
11992         bug #369541.
11993
11994 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
11995
11996         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
11997         and return value.
11998
11999 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
12000
12001         * image.c: when someone loads a mscorlib from a file, return the
12002         currently loaded mscorlib (fixes bug #369253).
12003
12004 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12005
12006         * class.c: handle types with no parents by forcing them to have
12007         System.Object as a parent and marking them as broken (this currently
12008         allows the first part of bug #369173 to work as well, likely because
12009         we don't check for typeload exceptions everywhere yet).
12010
12011 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
12012
12013         * class.c: more complete check that types belong to corlib
12014         (fixes second part of bug #369173).
12015
12016 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
12017
12018         * generic-sharing.c:  Including glib.h for the MSVC builds to define
12019           "inline" to "__inline" before including mono-membar.h.
12020           
12021         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
12022           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
12023           MSVC builds.
12024
12025         Contributed under MIT/X11 license.
12026
12027 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12028
12029         * verify.c (do_invoke_method): Remove return type validation.
12030
12031         * verify.c (do_ret): Do return type validation at return site instead of
12032         call site.
12033
12034 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12035
12036         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
12037
12038         * verify.c: Some todos cleaned and improved a few error messages.
12039
12040 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
12041
12042         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
12043
12044 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12045
12046         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
12047         system types correctly.
12048
12049         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
12050         function.
12051
12052 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12053
12054         * assembly.c (build_assembly_name): Fix a warning.
12055
12056 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
12057
12058         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
12059         the called function takes an object type argument. Fixes storing or
12060         valuetypes across remoting as well as reducing memory usage.
12061         * image.c, metadata-internals.h: remove now unused ldfld_remote and
12062         stfld_remote wrapper caches.
12063
12064 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12065
12066         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
12067         is not found.
12068
12069         * reflection.c (mono_image_register_token): New helper function to save
12070         a token->object mapping.        
12071
12072         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12073         managed code.
12074
12075         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12076         one dimension arrays. Fixes #367670.
12077         (mono_reflection_get_type_internal): Ditto.
12078
12079 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12080
12081         * marshal.c: mono_load_remote_field_new() always returns object.
12082         so use the proper signature (fixes bug #366445).
12083
12084 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12085         
12086         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
12087         add an 'inline_failure' flag instead.
12088
12089 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12090
12091         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12092         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
12093         contains the location of "this", used for exception handling.
12094
12095 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12096
12097         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12098         their size on all platforms for perf reasons.
12099
12100 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12101
12102         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12103         object-internal.h
12104
12105         * object-internal.h: Same.
12106
12107 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12108
12109         * reflection.h: Fix the build I just broke.
12110
12111 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12112
12113         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12114         Test if a token is valid, this remove explicit usage of 
12115         MonoDynamicImage::tokens from the verifier code.
12116
12117         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12118
12119         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12120         instead of direct access to MonoDynamicImage::tokens.
12121
12122 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12123
12124         * verify.c (token_bounds_check): Fix the build I just broke.
12125
12126 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12127
12128         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12129
12130         * verify.c (verifier_load_method): Fixed the errors message.
12131
12132         * verify.c (mono_method_verify): Fixed a debug message.
12133
12134 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12135
12136         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12137         mono-perfcounters.h, class-internals.h: support for predefined
12138         writable counters, query of categories and counters, bugfixes.
12139
12140 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12141
12142         * verify.c (do_refanytype): Verify the refanytype opcode.
12143
12144         * verify.c (mono_method_verify): Use do_refanytype.
12145
12146 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12147
12148         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12149
12150         * verify.c (mono_method_verify): Use do_mkrefany.
12151
12152 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12153
12154         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12155         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12156         implementation.
12157
12158 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12159
12160         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12161         the type load exception.
12162
12163 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12164
12165         * verify.c: Added a few FIXME for method signatures
12166
12167         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12168         of mono_method_get_signature and get vararg call working. Removed unused
12169         checks for return value.
12170
12171         * verify.c (do_refanyval): Verify the refanyval opcode.
12172
12173         * verify.c (mono_method_verify): Implemented verification of arglist and
12174         use do_refanyval.
12175
12176 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12177
12178         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12179         vtypes to marshal.c.
12180
12181         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12182         it works for AOT as well.
12183
12184 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12185
12186         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12187         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12188         the system time is adjusted.
12189
12190 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12191
12192         * icall.c, icall-def.h: use the new time functions (fixes the
12193         non-monotonic behaviour of TickCount).
12194
12195 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12196
12197         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12198         it breaks the build.
12199         
12200         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12201         cattr is not finished yet.
12202
12203 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12204
12205         * verify.c: Proper token validation for field, method and type.
12206
12207 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12208
12209         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12210
12211         * loader.c (method_from_memberref): Generate type load error instead of method missing
12212         if the type is not found.
12213
12214 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12215
12216         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12217         some of the conversions caused the generation of a marshal directive exception.
12218
12219 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12220
12221         verify.c: Report which exception should be thrown by the JIT.
12222         Added a lot of FIXME notes.
12223
12224 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12225
12226         * generic-sharing.c: Runtime generic context slots are not
12227         instantiated on init anymore.  Instead, provide function to do the
12228         instantiating on demand.
12229
12230         * class-internals.h: Added vtable to runtime generic context.
12231         Macros for encoding direct and indirect slot offsets in one
12232         guint32.
12233
12234 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12235
12236         * object.c, generic-sharing.c: Moved some generic sharing code
12237         from object.c to generic-sharing.c.
12238
12239         * generic-sharing.c: Added support for extensible runtime generic
12240         context.
12241
12242         * metadata-internals.h: Two new hash tables in MonoImage for
12243         extensible runtime generic context support.
12244
12245         * domain.c: Unregister generic vtables upon domain unloading.
12246
12247         * image.c: Destroy new hash tables upon image unloading.
12248
12249         * metadata.c: Unregister generic subclasses upon image unloading.
12250
12251         * class-internals.h: New data structure for runtime generic
12252         context template.  New fields in the runtime generic context for
12253         extensible part.
12254
12255         * Makefile.am: Added generic-sharing.c.
12256
12257 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12258
12259         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12260         there is a pending loader exception, raise it.
12261
12262         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12263         same.
12264
12265         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12266         same.
12267
12268         Fixes #363450.
12269
12270 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12271
12272         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12273
12274         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12275         
12276         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12277         ref-only requests for compatibility with MS.
12278
12279 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12280
12281         * reflection.c (mono_custom_attrs_from_method): Don't silently
12282         return an empty list for generic method instances.
12283         (mono_custom_attrs_from_param): Likewise.
12284
12285 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12286             Raja R Harinath  <harinath@hurrynot.org>
12287
12288         Fix #354757
12289         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12290         * class.c (mono_class_inflate_generic_method_full): Initialize it
12291         when a fully-open method is instantiated.
12292         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12293         to new field.
12294         * reflection.c (inflate_mono_method): Don't create a temporary context.
12295
12296 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12297
12298         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12299         Compute correct value, to prepare for imethod->reflection_info going away.
12300
12301 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12302
12303         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12304
12305 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12306
12307         * verify.c: Implement skip visibility flag.
12308
12309 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12310
12311         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12312         which contains an extra field to tell the kind of exception that should be thrown.
12313
12314         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12315
12316 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12317
12318         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12319         'method' is updated.
12320
12321 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12322
12323         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12324         explicit layout as well. Fixes #360375.
12325
12326 2008-02-11  Geoff Norton  <gnorton@novell.com>
12327
12328         * loader.c: Guard and dereference against inflated generic methods
12329
12330 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12331
12332         * class.c: Include Retargetable spec in assembly name.
12333         * assembly.c: Always include PublicKeyToken spec in assembly name
12334         (with value "null" if assembly is not signed), and include
12335         Retargetable spec.
12336         * icall-def.h: Added icall for Assembly.get_fullname.
12337         * icall.c: Added icall returning the fullname of an assembly.
12338
12339 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12340
12341         * class.c (mono_class_setup_vtable_general): Add a missing call to
12342         mono_class_setup_methods () which is needed in the AOT case.
12343
12344 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
12345
12346         * verify.c (mono_type_get_stack_name): Added. Return the name for the
12347         stack type of the given MonoType.
12348
12349         * verify.c (verify_type_compatibility_full): Handle the void type.
12350
12351         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
12352         way stack merging works.
12353
12354         * verify.c (store_local): Improved verification message.
12355
12356         * verify.c (do_branch_op): If the merging is invalid, the method
12357         is unverifiable and not invalid. Improved error message.
12358
12359         * verify.c (merge_stacks): Properly merge a boxed valuetype and
12360         a reference type diferent than System.Object. Improved error
12361         message.
12362
12363 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
12364
12365         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
12366
12367         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
12368         type of an enum even if the argument is byref.
12369
12370         * verify.c: Replace all explicit uses of enumtype and enum_basetype
12371         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
12372
12373         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
12374
12375         *verify.c (verify_type_compatibility_full): Make enum types
12376         compatible with their base types.
12377
12378         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
12379         types are compatible for the special case of a boxed valuetype and
12380         System.Object.
12381
12382         * verify.c (verify_stack_type_compatibility): The function
12383         is_compatible_boxed_valuetype was extracted from here.
12384
12385         * verify.c (push_arg): Only set ctx->has_this_store if the method
12386         is not static.
12387
12388         * verify.c (do_ldelem): Fixed a typo in an error message and added
12389         strict check for mixing int32 and native int as the array type
12390         and ldelem type.
12391
12392         * verify.c (merge_stacks): Consider boxed valuetypes in the
12393         compatibility checks.
12394
12395 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
12396         * profiler.h: (MonoGCEvent): Added start-stop the world events.
12397
12398 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12399         *class.c: use_new_interface_vtable_code: renamed the env var to have
12400         a "MONO_" prefix, and fix the logic to enable it by default.
12401
12402 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12403         *class.c:
12404         mono_class_setup_vtable_general: rewrote the way in which interface
12405         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
12406         makes the code more maintainable.
12407         For now the old code is still there, and can be activated setting
12408         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
12409
12410 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
12411
12412         * verify.c: guarded some debug functions around and #ifdef.
12413
12414         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
12415
12416 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12417
12418         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
12419         changes for now since they seem to break too many things.
12420
12421 2008-02-05  Mark Probst  <mark.probst@gmail.com>
12422
12423         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
12424         mono_marshal_find_nonzero_bit_offset): Added macro and function
12425         for finding the byte- and bit-offset of a bitfield within a
12426         struct.
12427
12428 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
12429
12430         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
12431         (mono_marshal_get_struct_to_ptr): Ditto.
12432
12433         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
12434         cctor_signature.
12435
12436 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
12437
12438         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
12439         between methods for non-corlib types.
12440
12441 2008-02-02  Geoff Norton  <gnorton@novell.com>
12442
12443         * loader.c (mono_method_get_param_names): Populate the parameter name for 
12444         generic parameters as well. (Fixes #342536)
12445
12446 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
12447
12448         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
12449
12450         * verify.c (do_invoke_method): Fix for calling with byref structs.
12451
12452         * verify.c (do_cast): push a boxed value type based on the type token and not
12453         the type of stack.
12454
12455 2008-01-31  William Holmes  <billholmes54@gmail.com>
12456
12457         * process.c (process_module_string_read): Check the size returned form 
12458           VerQueryValue to avoid out of memory exception. 
12459
12460 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
12461
12462         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12463         Handle properly modules which are not in the moduleref table. Fixes
12464         #356938.
12465
12466 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
12467
12468         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
12469         the dynamic case which is now in managed code.
12470         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
12471
12472         * marshal.c (mono_string_to_bstr): Fix a warning.
12473         (init_com_provider_ms): Ditto.
12474
12475         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
12476
12477         * exception.c (mono_get_exception_out_of_memory): New helper function.
12478
12479 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
12480
12481         * marshal.c: Add support for BSTR marshalling
12482         using other COM systems.
12483
12484         Code is contributed under MIT/X11 license.
12485
12486 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12487
12488         * object.c (mono_runtime_invoke_array): reverted previous
12489         commit as it breaks the build.
12490
12491 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12492
12493         * object.c (mono_runtime_invoke_array): Verify arguments for
12494         invalid types. Fixes #348522.
12495
12496 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12497
12498         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
12499         non-final virtual calls using call. 
12500
12501         * verify.c (do_invoke): fixed some TODOs.
12502
12503         * verify.c (push_arg): set has_this_store for "ldarga 0".
12504
12505 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
12506
12507         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
12508         which belong to an inflated class. Fixes #356531.
12509
12510 2008-01-26  Robert Jordan  <robertj@gmx.net>
12511
12512         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
12513         which resort to FindFirstFile when a certain error condition
12514         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
12515         Code is contributed under MIT/X11 license.
12516
12517 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
12518
12519         * marshal.c (emit_marshal_string): Fix out string marshalling
12520         to use specified encoding. Fixes #323900.
12521
12522         Code is contributed under MIT/X11 license.
12523
12524 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
12525
12526         * class.c (mono_class_inflate_generic_method_full): Don't modify
12527         iresult->context after cache check.
12528
12529 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
12530
12531         * class.c (mono_class_inflate_generic_method_full): Change the
12532         struct assignments to memcpy for better visibility and add some comments.
12533
12534 2008-01-23  Dick Porter  <dick@ximian.com>
12535
12536         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
12537         procedure, and make it work on windows.
12538
12539 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
12540
12541         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
12542         a MonoReflectionTypeBuilder since it is always of that type.
12543
12544         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
12545
12546         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
12547
12548         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
12549         
12550         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
12551
12552         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
12553
12554         * reflection.c (mono_reflection_create_runtime_class): Remove already created
12555         instantiations from the type cache.
12556
12557 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12558
12559         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
12560
12561         * verify.c (do_unbox_value): push a controled mutability managed pointer.
12562
12563 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12564
12565         * verify.c (do_ldstr): added, verifies if the #US token is valid.
12566
12567         * verify.c (mono_method_verify): removed old TODO
12568
12569 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12570
12571         * verify.c (do_newobj): add visibility check.
12572
12573 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12574
12575         * verify.c (do_load_function_ptr): add visibility check.
12576
12577 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
12578         *class.c:
12579         mono_generic_class_get_class: hook profiler events.
12580         mono_field_get_offset: added to support heap-shot in the new profiler.
12581         *class.h: exported mono_field_get_offset.
12582         * reflection.c:
12583         mono_reflection_setup_internal_class: hook profiler events.
12584
12585 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
12586
12587         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
12588         argument here too and use it to avoid checking for pending exceptions if 
12589         possible.
12590
12591 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
12592
12593         * assembly.c (build_assembly_name): add arg for passing the assembly
12594         flags. Do not consider a PublicKey with value "null" valid.
12595         (mono_assembly_name_parse_full): added boolean argument that will be
12596         set if the assembly name contains a PublicKeyToken spec. Added support
12597         for the Retargetable spec for which only Yes or No are allowed as valid
12598         value. Consider assembly name invalid if Retargetable spec is set, but
12599         either version, culture or public key (token) are not specified.
12600         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
12601         with implementation in assembly.c.
12602         * icall.c (fill_reflection_assembly_name): also copy assembly flags
12603         from MonoAssemblyName.
12604         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
12605         introduced argument for mono_assembly_name_parse_full to know if the
12606         assembly name has a PublicKeyToken spec, and if it has instruct
12607         fill_reflection_assembly_name to use default value for keyToken (if
12608         PublicKeyToken is null).
12609
12610 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12611
12612         * verify.c (mono_method_verify): fixed ovf ops with
12613         float values. They are unverifiable now.
12614
12615 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12616
12617         * class.c (set_failure_from_loader_error): add BadImageException to the
12618         list of exceptions that can cause a type to fail to load.
12619
12620         * class.c (mono_class_get_exception_for_failure): same.
12621
12622 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
12623
12624         * verify.c (in_any_exception_block): added, check if offset
12625         is part of any exception handling clause.
12626
12627         * verify.c (get_stack_type): added VAR and MVAR types.
12628
12629         * verify.c (do_stobj): better error messages.
12630
12631         * verify.c (do_cpobj): added, check cpobj.
12632
12633         * verify.c (do_initobj): added, check initobj.
12634
12635         * verify.c (do_sizeof): added, check sizeof.
12636
12637         * verify.c (do_localloc): added, check localloc.
12638
12639         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
12640
12641 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
12642
12643         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
12644         save_lmf/restore_lmf opcodes.
12645
12646         * threads.c (mono_threads_install_notify_pending_exc): New function to
12647         install a callback notifying the JIT there is a pending exception on a thread.
12648         (mono_thread_request_interruption): Call the new callback.
12649         (mono_thread_get_and_clear_pending_exception): New function to return the
12650         exception pending on a thread.
12651
12652         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
12653         to turn off checking for pending exceptions.
12654         (mono_marshal_get_native_wrapper): Ditto.
12655
12656 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12657
12658         * threads-types.h: Get rid of the unnecessary extern declarations.
12659
12660 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
12661
12662         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
12663         return field from parent class if not private.
12664         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
12665         returns fields from parent class if they are not private.
12666         (method_nonpublic): added function to determine if a given method
12667         should be considered non-public. Returns false for private methods
12668         on parent class, and internal methods from parent on the 1.0 profile.
12669         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
12670         use method_nonpublic function to determine whether method should be
12671         returned.
12672         (property_accessor_public): use newly introduced method_nonpublic
12673         function to determine whether accessor is non-public. 
12674         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
12675         event from parent class if not private. Only return static event if
12676         Static flag is set, and only return static event from parent class if
12677         FlattenHierarchy flag is set.
12678         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
12679         include non-private events from parent class.
12680
12681 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12682
12683         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
12684         warning.
12685
12686 2008-01-16  Wade Berrier <wberrier@novell.com>
12687
12688         * security.c: Add assembly.h header to appease some warnings
12689
12690 2008-01-16  Dick Porter  <dick@ximian.com>
12691
12692         * process.c (process_module_string_read): Remove trailing null
12693         when saving string.
12694
12695 2008-01-16  Mark Probst  <mark.probst@gmail.com>
12696
12697         * class-internals.h: A new data structure describing the layout of
12698         a runtime generic context (MonoRuntimeGenericContextTemplate).
12699
12700         * metadata-internals.h: Added a hash table to MonoDomain that maps
12701         from open generic classes to their runtime generic context
12702         templates.
12703
12704         * object.c: Building of the runtime generic context, including
12705         proper handling of generic type arguments of superclasses.
12706         Building of the runtime generic context according to the template.
12707
12708 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
12709
12710         * class.c (mono_class_setup_fields): Set field.count for generic instances.
12711         Fixes #350856.
12712
12713         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
12714         mono_portability_find_file (). Fixes #325466.
12715         (mono_image_get_public_key): Fix a warning.
12716
12717 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
12718
12719         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
12720         Fixes #353550.
12721         (mono_class_from_name_case): Ditto.
12722
12723 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
12724
12725         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
12726           common storage for the tables used in the System/NumberFormatter class.
12727
12728 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
12729
12730         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
12731
12732 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
12733
12734         * verify.c (get_boxable_mono_type): check if the token is valid.
12735
12736         * verify.c (set_stack_value): changed to add an error if an
12737         invalid type is set on stack. Changed all callers due to signature change.
12738
12739         * verify.c (do_stobj): implement stobj validation.
12740
12741 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
12742
12743         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
12744         set container->is_method, it was set earlier.
12745
12746         * metadata.c (type_in_image): Handle MVARs which belong to not finished
12747         generic methods.
12748
12749         * reflection.c (mono_reflection_initialize_generic_parameter): Set
12750         is_method of the generic container to TRUE for methods.
12751
12752 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12753
12754         * metadata.c (type_in_image): Handle type parameters properly.
12755
12756         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
12757         memory ownership of this structure.
12758
12759 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
12760
12761         * verify.c (get_boxable_mono_type): make typedref types been just
12762         unverifiable. check for void type.
12763
12764         * verify.c (do_unbox_any): added, verify opcode unbox.any.
12765
12766         * verify.c (do_load_function_ptr): accept method spec tokens.
12767
12768 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12769
12770         * marshal.c (mono_class_native_size): Always set *align even if this is called
12771         recursively.
12772
12773 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
12774
12775         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
12776         out-of-date.
12777
12778 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
12779
12780         * verify.c: removed some old unused tables. A huge bunch of small fixes
12781         to things found while testing the verifier with mono basic.
12782
12783         * verify.c (dump_stack_value): dump null literal flag to.
12784
12785         * verify.c (verify_type_compatibility_full): fix comparison
12786         for types that have a generic super type.
12787
12788         * verify.c (verify_stack_type_compatibility): fix compatibility
12789         between null literals and reference types. fix compatibility between
12790         boxed valuetypes and object. fix corner case test for enums.
12791
12792         * verify.c (do_cmp_op): proper verification of cgt.un in case
12793         of reference types.
12794
12795         * verify.c (do_invoke_method): fix error message.
12796
12797         * verify.c (do_store_indirect
12798
12799         * verify.c (check_is_valid_type_for_field_ops): proper verification
12800         of managed pointers to valuetypes and boxed valuetypes. proper verification
12801         of null literals.
12802
12803         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
12804         allow token to be a reference type.
12805
12806         * verify.c (do_cast): proper handling of boxes valuetypes.
12807
12808         * verify.c (do_stelem): proper handling of storing a boxed valuetype
12809         in object[].
12810
12811         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
12812         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
12813         fixed the decoding of unbox_any
12814
12815 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
12816
12817         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
12818
12819 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
12820
12821         * verify.c (do_newobj): do delegate verification.
12822
12823         * verify.c (verify_delegate_compatibility): perform delegate
12824         verification.
12825
12826         * verify.c (verify_ldftn_delegate): perform tests related to
12827         ldftn delegates.
12828
12829         * verify.c (mono_delegate_signature_equal): perform the
12830         slightly diferent signature comparison required by delegates.
12831
12832         * metadata.c (mono_metadata_type_equal_full): added and exported
12833         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
12834         allows signature only comparison.
12835
12836         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
12837         as MONO_INTERNAL.
12838
12839 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
12840
12841         * verify.c: added a bunch of stack_slot_* functions to
12842         make access to stack slot type easier. This is required to
12843         allow optional flags, like null literal, boxed value and
12844         this pointer.
12845         All access paths to IlStackDesc::stype have been changed 
12846         to use these new funcions.
12847         Removed a bunch of unused functions and cleared all warnings.
12848         This patch introduces the usage of the this pointer and 
12849         boxed value flags.
12850
12851 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
12852
12853         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
12854
12855 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
12856
12857         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
12858         match managed version.
12859
12860         * appdomain.c: Bump corlib version.
12861         
12862         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
12863         argument.
12864
12865 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
12866
12867         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
12868         Set public key token to zero-length byte array if assembly is not
12869         strongnamed.
12870
12871 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
12872
12873         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
12874         writing a vtype array elem.
12875
12876 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
12877
12878         * assembly.c (build_assembly_name): return FALSE if length of token is
12879         not 16 (if not "null").
12880         (mono_assembly_name_parse_full): return FALSE if value of version,
12881         culture, token or key is 0.
12882         * icall.c (fill_reflection_assembly_name): add boolean arguments to
12883         specify whether public key and public key token must be set to default
12884         value (zero-length byte array) if not available. Set versioncompat to
12885         SameMachine. If public key is available or the default is set, then
12886         set PublicKey flag.
12887         (ves_icall_System_Reflection_Assembly_FillName): if no public key
12888         is available, use empty byte array as default value. On the 2.0
12889         profile, use default value for public key token if not set.
12890         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
12891         profile, use default value for public key if not set. On the 2.0
12892         profile, use default value for public key token if not set.
12893         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
12894         default values for public key and public key token.
12895
12896 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
12897
12898         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
12899         field to keep it in synch with the managed object.
12900
12901         * marshal.c (emit_marshal_object): Add support for byref marshalling of
12902         delegates. Fixes #351520.
12903
12904         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
12905         contains defined memory.
12906         
12907         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
12908
12909         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
12910         
12911         * sgen-gc.c (check_consistency): New helper function to do a consistency check
12912         of the GC data structures.
12913
12914         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
12915
12916         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
12917         
12918         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
12919         barrier.
12920         (mono_array_clone_in_domain): Ditto.
12921         (mono_array_clone_in_domain): Ditto.
12922
12923         * threads.c (start_wrapper): Register the thread start argument as a GC root.
12924         (cache_culture): Use a write barrier.
12925
12926         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
12927         (ves_icall_get_property_info): Ditto.
12928
12929         * object.h (MONO_STRUCT_SETREF): New macro.
12930
12931         * class-internals.h (MonoStats): Add some GC statistics.
12932
12933         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
12934
12935 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
12936
12937         * exception.c (mono_exception_from_name_two_strings):
12938         Break from loop after method is found.
12939
12940 2008-01-04  Dick Porter  <dick@ximian.com>
12941
12942         * process.c (process_module_string_read): Rename variable to
12943         reflect correct usage, after fixing bug 345972.
12944
12945 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
12946
12947         * verify.c (mono_type_create_fnptr_from_mono_method): 
12948         created a MonoType function pointer instance to be used during
12949         verification. The verifier releases this memory at end.
12950
12951         * verify.c (mono_method_is_constructor): extracted repeated
12952         checks for constructor into a single class.
12953
12954         * verify.c (do_push_field): use new extracted method
12955         for constructor check.
12956
12957         * verify.c (do_newobj): same.
12958
12959         * verify.c (do_ldftn): renamed to do_load_function_ptr
12960         and make it verify ldvirtftn too.
12961
12962         * verify.c (mono_method_verify: proper verification
12963         of ldvirtftn. release created MonoMethod instances.
12964
12965 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
12966
12967         * verify.c (token_bounds_check): added.
12968
12969         * verify.c (do_ldftn): added.
12970
12971         * verify.c (mono_method_verify): proper verificartion of ldftn.
12972
12973 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
12974
12975         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
12976         than the table row count. It's the resposibility of the caller to
12977         make the bounds check and raise the correct error.
12978
12979         * metadata.c (mono_metadata_decode_row_col): Same.
12980
12981         * loader.c (mono_get_method_from_token): perform bounds check
12982         on token for methoddef table.
12983
12984 2007-12-29  Miguel de Icaza  <miguel@novell.com>
12985
12986         * icall.c
12987         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
12988         assert into a negative result, the managed code already coped with
12989         that.
12990
12991         Some folks on Windows reported this error. 
12992
12993 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
12994
12995         * appdomain.c: Bump corlib version.
12996         * icall.c:
12997         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
12998         CultureInfo.CreateCulture to create CultureInfo for name.
12999         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
13000         create CultureInfo for name. Fixes bug #347174.
13001
13002 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13003
13004         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
13005         flags.
13006
13007         * verify.c (is_valid_branch_instruction): allow branching to the
13008         first instruction of the protected block.
13009
13010         * verify.c (is_valid_cmp_branch_instruction): same.
13011
13012         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
13013         avoid double initialization.
13014
13015         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
13016         detect which cases the eval stack should just be copied.
13017
13018         * verify.c (mono_method_verify): check if the eval stack
13019         is empty when entering a protected block.
13020
13021 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13022
13023         * verify.c: added is_clause_in_range, is_clause_inside_range,
13024         is_clause_nested and verify_clause_relationship. They perform
13025         the verifications stated in P1 12.4.2.7.
13026
13027         * verify.c (mono_method_verify): remove some unused variables,
13028         add the new exception clause checks, add instruction border
13029         checks for protected block start/end, improved some error 
13030         messages and fixed a bug in the way invalid instruction access
13031         is detected.
13032
13033 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13034
13035         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
13036         from GC 7.0 if available.
13037
13038         * object.c: Remove an unused define.
13039         
13040         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
13041
13042         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
13043
13044         * null-gc.c (mono_gc_make_descr_for_array): Implement.
13045
13046         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
13047
13048         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
13049         to take the same arguments as the other make_descr functions.
13050
13051         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
13052
13053         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
13054         directly.
13055
13056         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
13057         mini.c.
13058
13059         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
13060         call to boehm-gc.c.
13061
13062         * boehm-gc.c (mono_gc_register_root): Fix a warning.
13063
13064         * null-gc.c (mono_gc_register_root): Fix a warning.
13065
13066         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
13067
13068         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
13069         (mono_gc_base_init): Call GC_init ().
13070
13071         * null-gc.c: Define mono_gc_register_root () as a no-op.
13072
13073         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13074
13075 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
13076
13077         * verify.c: add prototype for merge_stacks at top
13078
13079         * verify.c (do_switch): added.
13080
13081         * verify.c (merge_stacks): on some cases the stack merging
13082         was not happening properly. Unequal stack sizes at merge
13083         points should be invalid.
13084
13085         * verify.c (mono_method_verify): added more debug info on stack state.
13086         verify switch properly.
13087
13088 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
13089
13090         * method-builder.h: New file, moved the mono_mb_ declarations here from 
13091         marshal.h.
13092
13093         * boehm-gc.c marshal.c: Include method-builder.h.
13094
13095         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13096
13097         * marshal.c: Remove some code which is now in method-builder.c.
13098
13099 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13100
13101         * method-builder.c: New file, extraction of the method builder functionality 
13102         from marshal.c.
13103
13104         * marshal.c: Move the mb functions into method-builder.c.
13105
13106         * marshal.h marshal.c: Export some mono_mb_... functions.
13107
13108         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13109
13110         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13111         the caller.
13112
13113         * class.c (mono_class_get_full): Check the token type in the dynamic case.
13114
13115         * loader.c (mono_field_from_token): Ditto.      
13116
13117         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13118         type as well.
13119         
13120         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13121         Fixes #342565.
13122
13123         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13124         a helper function for setting it.
13125
13126         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13127
13128         
13129         * assembly.c: Significally simplify code now that referenced assemblies are 
13130         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13131
13132         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13133         #349952.
13134
13135 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13136
13137         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13138         instructions that were target of branches or are at protected block boundaries.
13139
13140         * verify.c (in_same_block): handle filter clauses.
13141
13142         * verify.c (is_valid_branch_instruction): added. checks the target of
13143         instructions br or brtrue/false.
13144
13145         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13146         binary branch instructions such as beq and bge.
13147
13148         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13149         and made it pin the instruction as been part of the exception block.
13150
13151         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13152         of in_same_block.
13153
13154         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13155         of in_same_block.
13156
13157         * verify.c (do_ret): ret from a protected block is unverifiable and
13158         not invalid.
13159
13160         * verify.c (do_static_branch): verify br and br.s instructions.
13161
13162         * verify.c (merge_stacks): add extra param to support detection
13163         of branches in the middle of instructions.
13164         
13165         * verify.c (mono_method_verify): verify branches and exception blocks
13166         that target the middle of instructions. Proper verification of br and br.s.
13167
13168 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13169
13170         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13171         skip_visibility field.
13172         (reflection_methodbuilder_from_dynamic_method): Ditto.
13173
13174         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13175         registrations. Fixes #348193.
13176
13177         * threads.h: Move the internal mono_thread_get_pending_exception () to
13178         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13179
13180 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13181
13182         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13183         icall registration. Fixes #348193.
13184
13185         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13186         for corlib classes into object. Fixes #349621.
13187
13188 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13189
13190         * icall.c (property_accessor_nonpublic): new function to determine
13191         whether an accessor allows a property to be considered non-public.
13192         Returns false for private accessor(s) from parent class, and internal
13193         accessor(s) from parent on 2.0 profile (and higher).
13194         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13195         to determine whether property should be included if NonPublic flag
13196         is set. Fixes bug #349078.
13197
13198 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13199
13200         * verify.c (init_stack_with_value): added.
13201
13202         * verify.c (mono_method_verify): extracted common
13203         code for exception initialization into init_stack_with_value.
13204
13205         * verify.c (mono_method_verify): initialize the exception
13206         for handler clauses as well.
13207
13208         * verify.c (mono_method_verify): fix the exception clause
13209         ordering rules, it should use handler end offset and not
13210         start offset.
13211
13212 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13213
13214         * rawbuffer.c: remove useless warning.
13215
13216 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13217
13218         * threads.h, threads-types.h: move functions to the correct header
13219         (fixes bug#349952).
13220
13221 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13222
13223         * verify.c (mono_method_verify): proper verification
13224         of exception handling clauses ranges and fallthru in
13225         and out of protected blocks.
13226
13227 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13228
13229         * verify.c (mono_method_verify): fixed compilation issue.
13230
13231 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13232
13233         * verify.c (mono_method_verify): a printf slipped in, changed
13234         to use verifier debug macro.
13235
13236 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13237
13238         * verify.c (is_correct_leave): check for filter clauses.
13239
13240         * verify.c (do_filter): added.
13241
13242         * verify.c (mono_method_verify): property verification of leave.
13243
13244
13245 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13246
13247         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13248         Win32 build, until we figure out how to do the proper thing on
13249         Win32.
13250
13251 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13252
13253         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13254         by the previous patch.
13255         
13256         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13257         the assembly resolve handler for refonly assemblies.
13258
13259 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13260
13261         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13262         Make sure only one thread is allowed to commence shutdown, and
13263         don't allow new threads to be started once shutdown is in
13264         progress.
13265
13266 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13267
13268         * verify.c (is_correct_endfilter): added.
13269
13270         * verify.c (is_unverifiable_endfilter): added.
13271
13272         * verify.c (do_endfilter): added.
13273
13274         * verify.c (mono_method_verify): property verification of endfilter
13275         and fixed a corner case or endfinally.
13276
13277 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13278
13279         * verify.h: new flags to support fail fast of unverifiable code and
13280         do non-strict verification. Non-strict verification is required to
13281         have MS runtime compatibility. There are a huge amount of unverifiable
13282         code that it accepts as verifiable. The strict mode verifies the code
13283         as the specs says.
13284         Non-strict mode will be required in cases where code needs to be
13285         accepted as verifiable but fails under strict mode.
13286
13287         * pedump.c: added support to fail fast and non-strict verification.
13288
13289         * verify.c: added support for both fail fast and non-strict verification.
13290
13291 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13292
13293         * verify.c (is_correct_endfinally): added.
13294
13295         * verify.c (mono_method_verify): property verification of endfinally.
13296
13297 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13298
13299         * verify.c (in_any_block): check for filter clauses.
13300
13301         * verify.c (is_correct_rethrow): added.
13302
13303         * verify.c (mono_method_verify): property verification of rethrow.
13304
13305         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13306
13307 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13308
13309         * verify.c (do_throw): added.
13310
13311         * verify.c (mono_method_verify): property verification of throw
13312
13313 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13314
13315         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13316         assemblies. Fixes #346425.
13317
13318 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13319
13320         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13321         FieldBuilders.
13322
13323         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13324
13325         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13326         prevent asserts when this is called with a token which might not be valid.
13327
13328         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13329         lookup_dynamic_token_class with valid_token == FALSE.
13330
13331         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13332
13333         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13334
13335         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13336         
13337 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13338
13339         * gc.c: Don't delay threadpool thread finalization unless Mono is
13340         shutting down.
13341
13342 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13343
13344         * threads.c: turn an assert into a non-fatal warning.
13345
13346 2007-12-09  Robert Jordan  <robertj@gmx.net>
13347
13348         * icall.c (GetVirtualMethod): Add missing argument validation.
13349
13350 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13351
13352         * verify.c (do_cast): added.
13353
13354         * verify.c (mono_method_verify): property verification of castclass and isinst.
13355
13356
13357 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13358
13359         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
13360
13361         * verify.c (do_stelem): added.
13362
13363         * verify.c (mono_method_verify): property verification of stelem.X.
13364
13365 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13366
13367         * class.c, class-internals.h: Introduce an environment variable
13368         (MONO_GENERIC_SHARING) through which the extent of generic code
13369         sharing can be controlled (share all classes, share only corlib
13370         classes, or share nothing).
13371
13372         * object.c: Only create runtime generic context for classes for
13373         which sharing is enabled.
13374
13375 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13376
13377         * verify.c (do_ldelem): refactor it to work with ldelem.any.
13378
13379         * verify.c (mono_method_verify): property verification of ldelem.any.
13380
13381 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13382
13383         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
13384         added ldelem.X opcodes.
13385
13386         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
13387
13388         * verify.c: proper verification of ldelem.X 
13389
13390 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13391
13392         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
13393
13394 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13395
13396         * verify.c (mono_method_verify): null literal requires special handling,
13397         the value pushed on stack need to be flagged as so.
13398
13399         * verify.c (do_ldelema): Verify ldelema properly.
13400
13401 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13402
13403         * verify.c: Verify ldlen properly.
13404
13405 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
13406
13407         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
13408         to the target object's type. Fixes #346160.
13409
13410 2007-12-05  Dick Porter  <dick@ximian.com>
13411
13412         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
13413         Solaris needs the same workaround as BSD-derived systems.  Fixes
13414         bug 323524, patch by Burkhard Linke
13415         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
13416
13417 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
13418
13419         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
13420         handle to use when error dialog is shown; otherwise, update mask
13421         to show no error dialog when an error occurs.
13422
13423 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13424
13425         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
13426
13427         * class.c (mono_class_get_field_default_value): New helper function to initialize
13428         field->def_type and field->data.
13429
13430 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13431
13432         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
13433         the general one.
13434
13435         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
13436
13437         * marshal.c: Avoid depending on delegate->method_info being set.
13438
13439         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
13440         
13441         * object.c (mono_delegate_ctor): Set delegate->method.
13442
13443         * object-internals.h (struct _MonoDelegate): Add 'method' field.
13444
13445         * appdomain.c: Bump corlib version.
13446
13447 2007-11-27  Raja R Harinath  <harinath@gmail.com>
13448
13449         * metadata.c (mono_generic_inst_equal_full): Short-circuit
13450         equality check if we're comparing canonicalized MonoGenericInsts.
13451
13452 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13453
13454         * class.c (generic_array_methods): Call mono_class_setup_methods () before
13455         accessing class->methods.
13456
13457 2007-11-22  Dick Porter  <dick@ximian.com>
13458
13459         * threads.c: Ensure that the synch_cs is set before trying to use
13460         it.
13461
13462 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
13463
13464         * profiler.c: r89126 broke the statistial profiler, unbreak.
13465
13466 2007-11-22  Martin Baulig  <martin@ximian.com>
13467
13468         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
13469
13470         * mono-debug.c
13471         (mono_debug_debugger_version): Bump to 3.
13472         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
13473         -> mono_debugger_class_initialized().
13474
13475         * mono-debug-debugger.c
13476         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
13477
13478         * class.c
13479         (mono_debugger_start_class_init_func): Removed.
13480         (mono_debugger_class_loaded_methods_func): Added.
13481         (mono_class_setup_methods): Call it here.
13482
13483 2007-11-22  Martin Baulig  <martin@ximian.com>
13484
13485         * mono-debug.c
13486         (mono_debug_add_delegate_trampoline): New public method.
13487         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
13488
13489         * mono-debug.h
13490         (MonoSymbolTable): Added `global_data_table'.
13491         (MonoDebuggerTypeKind): Removed.
13492
13493 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
13494
13495         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
13496         these methods.
13497
13498         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13499         
13500 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13501
13502         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
13503
13504 2007-11-20  Martin Baulig  <martin@ximian.com>
13505
13506         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
13507
13508         * mono-debug-debugger.c
13509         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
13510         (mono_debugger_remove_breakpoint): Likewise.
13511         (mono_debugger_check_breakpoints): Likewise.
13512         (mono_debugger_register_class_init_callback): New public method.
13513         (mono_debugger_remove_class_init_callback): Likewise.
13514         (mono_debugger_add_type): Likewise.
13515
13516         * mono-debug-debugger.h
13517         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
13518
13519 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
13520
13521         * class.c: more interface implementations needed for the
13522         array enumerator (fixes bug #341112).
13523
13524 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
13525
13526         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
13527         fix ParamName of ArgumentNullExceptions.
13528
13529 2007-11-17  Miguel de Icaza  <miguel@novell.com>
13530
13531         * reflection.c (mono_reflection_encode_sighelper): Generate the
13532         modopts and modreqs.   I have a useless test that crashes monodis,
13533         but that shows the code working.
13534
13535 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
13536
13537         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
13538         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
13539
13540 2007-11-15  Dick Porter  <dick@ximian.com>
13541
13542         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
13543         When joining a thread, it's the thread that's calling Join that
13544         gets WaitSleepJoin state not the target.  Fixes the standalone
13545         test case in bug 334740, and hopefully the whole bug too.
13546
13547 2007-11-15  Dick Porter  <dick@ximian.com>
13548
13549         * process.c: Read file version info from the files pointed at by
13550         process modules, not the current process.  Fixes bug 315969.
13551
13552         Use windows typedef names in some places to fix warnings on the
13553         windows build.
13554
13555 2007-11-15  Mark Probst  <mark.probst@gmail.com>
13556
13557         * image.c, metadata-internals.h: Added a generic_class_cache hash
13558         to MonoImage for looking up generic classes when sharing generics.
13559
13560 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13561
13562         * sgen-gc.c: warning cleanups.
13563
13564 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
13565
13566         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
13567         inherited properties.
13568
13569 2007-11-14  Mark Probst  <mark.probst@gmail.com>
13570
13571         * object.c, class-internals.h: Added more information to the
13572         runtime generic context.
13573
13574 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
13575
13576         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
13577         instead of just the target method. Generalize the abstract method handling to
13578         handle any non-static method.
13579
13580         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13581         mono_marshal_get_delegate_invoke () signature change.
13582
13583 2007-11-13  Mark Probst  <mark.probst@gmail.com>
13584
13585         * class.c, class-internals.h: Made
13586         mono_type_get_basic_type_from_generic () public.  Fixed member
13587         access check for shared generics.
13588
13589         * loader.c: Don't insert field into field cache if it's part of a
13590         non-inflated generic class.
13591
13592         * domain.c, domain-internals.h: The generic sharing context is now
13593         part of the jit info data structure.  Added two accessor
13594         functions.
13595
13596 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
13597
13598         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
13599         the array Get/Set/Address methods, since the JIT inlines them.
13600
13601         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
13602
13603         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
13604         (mono_image_init): Initialize runtime_invoke_direct_cache.      
13605
13606         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13607         mono_marshal_get_delegate_invoke signature change.
13608
13609         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
13610         an additional argument. Add support for invoking abstract methods.
13611
13612         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
13613
13614         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
13615
13616 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13617
13618         * class.c: Do field layout for open generic classes as well.
13619
13620 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13621
13622         * gc.c, gc-internal.h: Don't finalize threadpool threads with
13623         other objects, because the threadpool is still around.  Put them
13624         in a list instead and after finalizing all other objects in the
13625         root domain shut down the thread pool and then finalize the
13626         threads.  Fixes bug #337383.
13627
13628         * threads.c, thread-types.h: New mono_thread_create_internal()
13629         function for marking a thread with the threadpool flag before it
13630         started.  Set synch_cs to NULL after freeing it.
13631
13632         * threadpool.c: Mark threadpool threads before they start.
13633
13634 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13635
13636         * reflection.h, reflection.c: don't export random functions
13637         and lazy load dbnull and missing objects.
13638
13639 2007-11-07  Jonathan Chambers <joncham@gmail.com>
13640
13641         * class.c: Initialize COM types if COM interfaces
13642         are present (not just COM classes).
13643         
13644         Code is contributed under MIT/X11 license.
13645
13646 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13647         * reflection.c:
13648         create_dynamic_mono_image: hook module profiler events (dynamic case).
13649         mono_image_basic_init: hook assembly profiler events (dynamic case).
13650
13651 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13652         * profiler.c:
13653         simple_appdomain_unload: completely terminate the profiler
13654         instead of only processing the statistical samples.
13655         simple_shutdown: make sure this is really called exactly once,
13656         even in multithreaded applications, and always listen to
13657         appdomain events.
13658         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
13659         here, the "[un]load" functions will do it.
13660         Fixes bugs #333791 and #325261.
13661
13662 2007-11-07  Geoff Norton  <gnorton@novell.com>
13663
13664         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
13665         rather than depend on __APPLE__.
13666
13667 2007-11-07  Mark Probst  <mark.probst@gmail.com>
13668
13669         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
13670
13671 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
13672
13673         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
13674         UTF16 MonoString. Fix the crash from bug #335488
13675
13676 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
13677
13678         * marshal.c: Correct (for non-Win32 OS) length != size in 
13679         mono_string_from_bstr. Fix #339530.
13680
13681 2007-11-06  Geoff Norton  <gnorton@novell.com>
13682
13683         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
13684         to succeed
13685
13686 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
13687
13688         * process.c: Added run-time GetProcessId API detection for Windows.
13689
13690 2007-11-04  Miguel de Icaza  <miguel@novell.com>
13691
13692         * reflection.c  (mono_param_get_objects): If a parameter has the
13693         attribute [System.Runtime.InteropServices.Optional] we should
13694         set the DefaultValue of the ParameterInfo to be
13695         System.Reflection.Missing instead of DBNull.
13696
13697         See bug #339013.
13698
13699         (mono_get_reflection_missing_object): New method,
13700         returns the System.Reflection.Missing.Value singleton instance.
13701
13702 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
13703
13704         * culture-info-table.h : regenerated.
13705
13706 2007-11-02  Jonathan Chambers <joncham@gmail.com>
13707
13708         * icall.c: Use GetEnvironmentStrings on windows
13709         so we are using the same environment block as 
13710         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
13711         #333740.
13712         
13713         Code is contributed under MIT/X11 license.
13714
13715 2007-10-31  Martin Baulig  <martin@ximian.com>
13716
13717         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
13718
13719         * mono-debug-debugger.h
13720         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
13721
13722 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
13723
13724         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
13725         classes.
13726
13727 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
13728
13729         * culture-info-table.h : regenerated.
13730
13731 2007-10-30  Robert Jordan  <robertj@gmx.net>
13732
13733         * icall-def.h, icall.c:
13734         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
13735
13736         Code is contributed under MIT/X11 license.
13737
13738 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13739
13740         * class.c (mono_class_setup_vtable): Find the inflated methods in the
13741         inflated class instead of inflating them again.
13742         
13743         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
13744         dynamic case.
13745
13746         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
13747         Call setup_supertypes () after klass->parent is set.
13748         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
13749
13750         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
13751         for inflated instances of not yet created dynamic generic classes.
13752         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
13753         times from inflated_method.
13754         (methodbuilder_to_mono_method): Ditto.
13755
13756 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
13757
13758         * gc.c: code cleanup and removed old untested option of not creating the
13759         finalizer thread.
13760
13761 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13762
13763         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
13764         creating a jump trampoline for dynamic methods.
13765
13766 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
13767
13768         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
13769         generic TypeBuilders when called from another method of the same type (bug #335131).
13770
13771
13772 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
13773
13774         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
13775         doesn't seem to work perfectly.
13776         
13777         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
13778         called multiple times.
13779         (methodbuilder_to_mono_method): Ditto.
13780         (resolve_object): Inflate FieldBuilder's.
13781
13782 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13783
13784         * string-icalls.c, string-icalls.h, appdomain.c: patch from
13785         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
13786         RemoveEmptyEntries in the string.Split implementation (bug #322375).
13787
13788 2007-10-26  Dick Porter  <dick@ximian.com>
13789
13790         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
13791         Thread initialisation changes
13792
13793 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
13794
13795         * verify.c: fix compatibility check between arrays and System.Array
13796
13797 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
13798
13799         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
13800         too. Fixes #336999.
13801
13802 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
13803
13804         * object.c (mono_value_box): Use typed allocation here.
13805
13806 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
13807
13808         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
13809         trampoline instead of compiling the method right away.
13810
13811         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
13812
13813 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
13814
13815         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
13816         related fields for dynamic classes. Fixes #334493.
13817
13818 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
13819
13820         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
13821         
13822         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
13823
13824         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
13825         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
13826
13827         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
13828
13829         * reflection.c (create_generic_typespec): Initialize klass->generic_container
13830         if needed.
13831         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
13832
13833 2007-10-18  Jonathan Chambers <joncham@gmail.com>
13834
13835         * marshal.c: Use correct key when removing item
13836         from ccw_hash.
13837         
13838         Code is contributed under MIT/X11 license.
13839
13840 2007-10-17  William Holmes  <billholmes54@gmail.com>
13841
13842         *marshal.c: Adding a case to marshal booleans to U1
13843
13844         Code is contributed under MIT/X11 license.
13845
13846 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
13847
13848         * class.c (mono_class_from_name): Search the modules compromising dynamic
13849         assemblies. Fixes #331601.
13850
13851 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
13852
13853         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
13854         exception if the type name contains an assembly component. Fixes #334203.
13855
13856         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
13857         modules inside dynamic assemblies. Fixes #334200.
13858         
13859         * reflection.c: Set image->public_key and image->public_key_length;
13860
13861         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
13862         fields.
13863
13864         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
13865         
13866 2007-10-16  Mark Probst  <mark.probst@gmail.com>
13867
13868         * metadata.c: Implemented correct comparing of generic classes.
13869         An inflated generic class can be equal to a non-inflated one if it
13870         is inflated with generic type variables as type arguments.  Fixes
13871         bug #333798.
13872
13873 2007-10-15  Dick Porter  <dick@ximian.com>
13874
13875         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
13876         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
13877         81646.
13878
13879         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
13880         instead of a monitor lock.  This means that monitor_try_enter and
13881         co can set the thread state safely.
13882         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
13883         thread_interrupt_requested, so interrupt actually works.
13884
13885         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
13886         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
13887         state accessor function
13888
13889 2007-10-15  Martin Baulig  <martin@ximian.com>
13890
13891         * mono-debug.h
13892         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
13893         the debugger with the current runtime.
13894
13895 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
13896
13897         * object.c, object-internals.h: added the ability to set a single
13898         trampoline for all the slots in a vtable.
13899
13900 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13901
13902         * marshal.c: deal with a possible race condition during multicast
13903         delegate invocation.
13904
13905 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13906
13907         * class.c: ensure value type methods don't have the synchronized
13908         flag set.
13909
13910 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
13911
13912         * string-icalls.c, string-icalls.h: reverted unapproved patch that
13913         breaks the build.
13914
13915 2007-10-11  Joel Reed  <joelwreed@comcast.com>
13916
13917         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
13918         to take an options parameter so that empty entries can be removed during
13919         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
13920
13921 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13922
13923         * marshal.c: make sure we don't store the signature from a dynamic
13924         method into the runtime invoke cache (bug #327189).
13925
13926 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13927
13928         * marshal.c: make sure the wrapper methods are properly initialized.
13929
13930 2007-10-11  Mark Probst  <mark.probst@gmail.com>
13931
13932         * metadata.c, metadata-internals.h: Generalized
13933         mono_type_stack_size() to mono_type_stack_size_internal() which
13934         takes an additional argument specifying whether it allows open
13935         types.
13936
13937 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
13938
13939         * verify.c (do_invoke_method): handle typedbyref params
13940         correctly and check for unverifiable return values.
13941
13942         * verify.c (do_newobj): fix a warning.
13943
13944 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
13945
13946         * verify.c: don't tread typedbyref as allways unverifable,
13947         so uses, like (ld/st)loc.0 are valid. verify for the cases
13948         that it matters, like boxing related operations.
13949
13950 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
13951
13952         * verify.c: add verification of the newobj opcode. verification
13953         of delegate instantation still missing due ldftn and virldftn not
13954         pushing the function type on stack
13955
13956 2007-10-08  Mark Probst  <mark.probst@gmail.com>
13957
13958         * class-internals.h: Runtime generic context data structure
13959         definition.
13960
13961         * object.c: Initialization of runtime generic context at runtime
13962         vtable creation time.
13963
13964 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
13965         * class.c (mono_class_create_from_typedef,
13966         mono_class_from_generic_parameter, mono_ptr_class_get,
13967         mono_fnptr_class_get, mono_bounded_array_class_get)
13968         * domain.c (mono_domain_create, mono_domain_free)
13969         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
13970         * image.c (do_mono_image_load, mono_image_close):
13971         Hooked up load-unload profiler events.
13972
13973 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
13974
13975         * domain.c: track statistics about the actual amount of native code
13976         allocated.
13977
13978 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13979
13980         * class.c: the valuetype enumerators don't have the additional
13981         supertypes interfaces.
13982
13983 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13984
13985         * class.c: need more interfaces setup for the IEnumerator<T>
13986         object created for arrays (tests/ienumerator-interfaces.2.cs).
13987
13988 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
13989
13990         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
13991
13992 2007-10-05  Alp Toker  <alp@atoker.com>
13993
13994         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
13995         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
13996         #315863.
13997
13998 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
13999
14000         * verify.c (verify_type_compatibility_full): verification of
14001         compatibility improved, validates correctly non-strict checks between
14002         native int and I4 types different than (unsigned)int32.
14003
14004         * verify.c (do_store_indirect): added, do all verification of
14005         ldind.X opcodes. 
14006
14007         * verify.c (get_load_indirect_mono_type): renamed to
14008         get_indirect_op_mono_type, as it now returns the MonoType for 
14009         ldind.X and stind.X opcodes.
14010
14011 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14012
14013         * reflection.c: Fix the encoding of generic type definition for
14014         TypeBuilders.
14015
14016         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
14017         mono_image_typedef_or_ref but allows to specify if typespec lookups should
14018         be made. Typespec check is done prior to typeref cache lookup.
14019
14020         * reflection.c (mono_image_typedef_or_ref): now just delegate to
14021         mono_image_typedef_or_ref_full.
14022
14023         * reflection.c (encode_generic_class): encode the generic class
14024         directly instead of calling encode_type.
14025
14026         * reflection.c (encode_type): encode the generic type definition
14027         MonoClass as a generic instantiation.
14028
14029         * reflection.c (create_typespec): cache typespec tokens in
14030         the assembly->typespec cache. Don't create typespec for a generic
14031         instance MonoClass. Create typespec for the generic type defintion.
14032
14033         * reflection.c (create_generic_typespec): encode the generic
14034         class directly instead of calling encode_type.
14035
14036         * reflection.c (mono_image_create_token): encode the generic
14037         type definition not using a typespec for MonoType instances.
14038
14039
14040 2007-10-04  Raja R Harinath  <rharinath@novell.com>
14041
14042         Fix #328812
14043         * class.c (mono_image_init_name_cache): Don't return nested
14044         'protected internal' classes.
14045         (mono_class_from_name_case): Likewise.
14046
14047 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
14048
14049         * icall-def.h, icall.c : get_bundled_machine_config() is now the
14050           common function used by both DefaultConfig in System.dll and
14051           InternalConfigurationHost in System.Configuration.dll.
14052
14053 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14054
14055         * class.c: automatically add to vectors only a few essential explicit
14056         generic interfaces. The rest of the interfaces that arrays should
14057         provide are currently implicitly added (but still not lazily, see the
14058         design in the discussion of bug#325495 for the details of what is
14059         needed for that). Additionally, implicit interfaces are assigned the
14060         same vtable slot as the explicit interfaces (as they are compatible):
14061         this enables huge memory savings since we don't need to instantiate
14062         as many memthods and as large vtables anymore. Also, Since
14063         GetEnumerator<T> returns an instance of a type that is required to
14064         support a similarly large set of interfaces as arrays, we add
14065         implicit interfaces and interface offset sharing support to those
14066         types, too. This change adds all the required interfaces so that
14067         the anonarray.cs test case in the bug report works (we don't add
14068         all the interfaces to arrays of arrays 3-level deep and more because
14069         of the memory requirements explained in the bug and since they are much
14070         less common: the lazy-loading support will enabled them to work, too).
14071
14072 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14073
14074         * verify.c (merge_stacks): major clean up, all type compatibility
14075         checks are done by verify_type_compatibility. This fix my earlier lack
14076         of understanding of the CLR type system and merge_stacks no longer looks
14077         scary.
14078
14079         * verify.c: fixed some bad spelling.
14080
14081 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14082
14083         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14084         a given stack slock.
14085         
14086         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14087         verify_type_compatibility_full. This removed a near indentical function and fixed
14088         handling of Int32 and IntPtr across all opcodes.
14089
14090 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14091
14092         * class.c: only vectors have the additional generic interfaces.
14093
14094 2007-10-01  Jonathan Chambers <joncham@gmail.com>
14095
14096         * mono-config.c: Use g_strcasecmp instead of
14097         strcasecmp like everywhere else to fix
14098         compilation with MSVC.
14099         
14100         Code is contributed under MIT/X11 license.
14101
14102 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14103
14104         * object.c, object-internals.h: refactored the IMT code to enable
14105         building a single slot at a time and lazily creating the IMT trampolines
14106         and thunks.
14107
14108 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
14109
14110         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14111
14112         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14113         Fixes #328501.
14114         
14115 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14116
14117         * loader.c (method_from_methodspec): Rearrange to avoid
14118         un-necessary exposition.  Don't assert out if the method's
14119         declaring type is a generic type definition.
14120
14121 2007-09-28  Martin Baulig  <martin@ximian.com>
14122
14123         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14124
14125 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14126
14127         * class-internals.h: optimize field layout of MonoClass to
14128         requires less cachelines at runtime and save a few bytes on 64 bit
14129         systems.
14130
14131 2007-09-28  Jb Evain  <jbevain@novell.com>
14132
14133         * reflection.c: when encoding type names in custom attributes,
14134         if the type is a closed generic type, its generic arguments
14135         have to be serialized as AssemblyQualifiedName, so that when
14136         they are deserialized, it's possible to re-create them properly.
14137         Fixes #329450.
14138
14139
14140 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14141
14142         * object.c, class-internals.h: added delegate-creation counter.
14143
14144 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14145
14146         * class.c: cleanup of the code that synthetizes interfaces for
14147         arrays in 2.0: saves quit a bit of corlib mempool memory.
14148         Code to fix bug #325495 ifdeffed out for now until the issues
14149         with memory usage and O(n^2) behaviour are fixed.
14150
14151 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14152
14153         * marshal.c: when possible, do not duplicate the name of the methods
14154         in the method builder and in the generated MonoMethod.
14155
14156 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14157         * verify.c: added support for type checking ldind_* opcodes.
14158
14159 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14160
14161         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14162         which is used to distinguish the fully open instantiation of a TypeBuilder
14163         with the rest. This temporary hack is required to restore the property that
14164         the fully open instantiation is the same type of the generic type definition.
14165
14166         * class-internals.h (mono_generic_class_is_generic_type_definition):
14167         new function as part of the internal API.
14168
14169         * class.c (inflate_generic_type): return NULL when the generic inst is
14170         fully open. The fully open generic type is now the same as the generic type
14171         definition for non TypeBuilder types.
14172
14173         * class.c (mono_generic_class_get_class): removed assert since it is
14174         no longer valid, gklass->cached_class can point to the generic type definition.
14175
14176         * class.c (mono_generic_class_is_generic_type_definition): new.
14177
14178         * metadata.c (mono_generic_class_hash): added is_tb_open field
14179         to the hash calculation.
14180
14181         * metadata.c (free_generic_class): if the generic class is associated
14182         with the generic type definition, its field will come from the mempool and
14183         must not be freed.
14184
14185         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14186         new, this function identifies the corner case of a TypeBuilder fully open
14187         instantiation.
14188
14189         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14190         for lookup. Set gclass->cached_class to be the container class in case of
14191         the fully open instantiation of non TypeBuilder types.
14192
14193         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14194         to compare generic classes.
14195
14196         * reflection.c (method_encode_methodspec): remove assert that
14197         no longer is valid.
14198
14199         * reflection.c (mono_reflection_generic_class_initialize): add
14200         an aditional assert to ensure the proper type is used.
14201
14202 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14203
14204         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14205         to enjoy it.
14206
14207 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14208
14209         * verify.c (push_arg): Fixed support for ldarga
14210         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14211         MonoType used as first arg in case of instance calls.
14212
14213 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14214
14215         * verify.c: Support for verifying VAR and MVAR types, 
14216
14217 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14218
14219         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14220         accessors correctly.
14221
14222 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14223
14224         * threads.c: support OSX and other systems in
14225         mono_thread_get_stack_bounds (bug #328026).
14226
14227 2007-09-25  Martin Baulig  <martin@ximian.com>
14228
14229         * mono-debug.h
14230         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14231
14232 2007-09-24  Martin Baulig  <martin@ximian.com>
14233
14234         * mono-debug.h
14235         (MonoDebugClassEntry): Moved the definition of this struct into
14236         mono-debug.c to make it private.
14237
14238         * mono-debug.c
14239         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14240         type table per symbol file, we don't need to store the symfile id
14241         any longer.
14242
14243 2007-09-24  Martin Baulig  <martin@ximian.com>
14244
14245         Create one type table per symbol file, since a `MonoClass *' gets
14246         invalid when its image is unloaded.
14247
14248         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14249         (MonoDebugHandle): Added `type_table'.
14250
14251 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14252
14253         * mempool.c, mempool.h: added mono_mempool_new_size () API
14254         to be able to specify a smaller initial size for the pool.
14255         Adjusted the code to slowly increase pool size before using
14256         the previous default size.
14257         * image.c: use a small initial size for image mempools.
14258
14259 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14260
14261         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14262         Fixes ##320990.
14263
14264         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14265         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14266
14267 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14268
14269         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14270         free. Fixes #327438.
14271
14272 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14273
14274         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14275         generic instantiations, etc.
14276         <MONO_TYPE_ARRAY>: Likewise.
14277
14278 2007-09-21  Martin Baulig  <martin@ximian.com>
14279
14280         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14281         these structs were never defined.
14282         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14283
14284 2007-09-21  Martin Baulig  <martin@ximian.com>
14285
14286         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14287
14288 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14289
14290         * image.c: removed the guid hash tables: we can get the same info
14291         without the additional memory usage hit (partially fixes also bug #327052).
14292
14293 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14294
14295         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14296         event to handle unloading methods. After the event is called, the
14297         corresponding MonoMethod* must be considered invalid.
14298         * loader.c (mono_free_method): call the new mono_profiler_method_free
14299         event.
14300
14301 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14302
14303         * domain-internals.h: New flag in MonoJitInfo which marks shared
14304         generic methods.  New hash table (shared_generics_hash) in
14305         MonoDomain to keep track of shared generic methods.  Prototypes
14306         for functions to register and lookup shared generic methods.
14307
14308         * domain.c: Support for registering and looking up shared generic
14309         methods via a hash table (shared_generics_hash) in MonoDomain.
14310
14311         * class-internals.h: New exception to signal failure of shared
14312         compilation of a generic method.  New counters for generics
14313         sharing in MonoStats.
14314
14315 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14316
14317         * image.c, metadata-internals.h: don't keep a file descriptor open
14318         for loaded assemblies (bug#325988).
14319
14320 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14321
14322         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14323         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14324         use the corresponding datatypes.
14325         (type_in_image): Update to changes.
14326         (CleanForImageUserData): Simplify.
14327         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14328         Avoid quadratic behaviour in handling the "stolen" list by
14329         separating the filter predicate out, and by prepending the stolen
14330         items rather than appending them.
14331         (steal_ginst_in_image): Likewise.
14332         (mono_metadata_clean_for_image): Update to changes.
14333
14334 2007-09-19  Martin Baulig  <martin@ximian.com>
14335
14336         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14337
14338 2007-09-19  Martin Baulig  <martin@ximian.com>
14339
14340         * mono-debug.c (mono_debug_cleanup): Don't call
14341         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14342
14343 2007-09-19  Raja R Harinath  <harinath@gmail.com>
14344
14345         Fix crash on 'make run-test' in mcs/errors
14346         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
14347         Avoid more potential allocations in mono_class_from_mono_type.
14348         (ginst_in_image): Update to changes.
14349         (gclass_in_image): Rearrange slightly.
14350
14351 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14352
14353         * class.c (mono_class_init): Move the code that sets up class->methods to 
14354         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
14355
14356         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
14357         canonical instance of an inflated generic signature.
14358         (mono_type_create_from_typespec): Remove an invalid free.
14359
14360         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
14361
14362 2007-09-18  Marek Habersack  <mhabersack@novell.com>
14363
14364         * domain-internals.h: added a declaration of the
14365         mono_assembly_load_full_nosearch internal function.
14366
14367         * assembly.c (mono_assembly_load_with_partial_name): use
14368         mono_try_assembly_resolve return value properly.
14369         (mono_assembly_load_full_nosearch): copied the function body from
14370         mono_assembly_load_full, without the code to invoke assembly
14371         search hooks.
14372         (mono_assembly_load_full): calls the above new function and if the
14373         assembly is not resolved, invokes the search hooks.
14374
14375         * appdomain.c (mono_runtime_init): restore the global postload
14376         assembly search handlers.
14377
14378 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14379
14380         * class.c (mono_class_init): Make sure class->methods and class->properties
14381         are never NULL in the generics case.
14382
14383         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
14384
14385 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14386
14387         * metadata.c (free_generic_class): Disable some code to fix the build.
14388
14389         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
14390
14391         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
14392         from the image mempool.
14393
14394         * metadata.c (free_generic_class): Free more data from the inflated class.
14395
14396         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
14397
14398         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
14399         mempool.
14400         (mono_type_create_from_typespec): Ditto.
14401
14402         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
14403         MonoImage to the caller.
14404         (mono_init_internal): Save the opened image in a global variable.
14405         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
14406
14407         * reflection.c (resolve_object): Fix a leak.
14408
14409         * metadata.c: Fix the freeing of data in the generics caches.
14410         
14411         * metadata.c (free_generic_inst): Comment this out to fix the build.
14412         (free_generic_class): Ditto.
14413
14414         * metadata.c: Free cached generic methods, instantinations and classes when
14415         they are removed from the caches.
14416         (mono_metadata_free_type): Free the type itself.
14417
14418         * class.c: Free the result of mono_class_inflate_generic_type () in a few
14419         places.
14420
14421 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14422
14423         * boehm-gc.c: restrict managed allocs to __thread supporting
14424         architectures.
14425
14426 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
14427
14428         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
14429         (mono_generic_class_get_class): Fix a leak.
14430
14431         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
14432         mono_metadata_free_type ().
14433         (mono_metadata_inflate_generic_inst): Fix a leak.
14434
14435 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14436
14437         * mono-debug.c (free_header_data): Fix a leak missed earlier.
14438
14439         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
14440         mempool.
14441
14442         * mono-debug.c (mono_debug_close_image): Fix call to 
14443         g_hash_table_remove ().
14444
14445 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14446
14447         * icall-def.h: redirect all the string ctor to the managed
14448         CreateString () methods.
14449         * string-icalls.c, string-icalls.h: removed dead code for string
14450         ctors and icalls.
14451
14452 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14453
14454         * mono-debug.c: Fix memory leaks.
14455
14456 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14457
14458         * threads-types.h: Implement mono_hazard_pointer_set and 
14459         mono_hazard_pointer_clear macros using do/while(0) to fix
14460         compilation with MSVC.
14461         
14462         Code is contributed under MIT/X11 license.
14463
14464 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14465
14466         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
14467         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
14468
14469 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14470
14471         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
14472         icalls.
14473
14474 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14475
14476         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
14477         managed-code allocated as well.
14478
14479 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14480
14481         * class.c (mono_class_is_assignable_from): Add support for generic variance.
14482
14483 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14484
14485         * boehm-gc.c: fixed the build after the AOT changes.
14486
14487 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14488
14489         * wrapper-types.h: Add an ALLOC wrapper type.
14490
14491         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
14492         reference managed allocator methods.
14493
14494 2007-09-12  Marek Safar  <marek.safar@gmail.com>
14495
14496         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
14497         of Type array and not MonoType, a fix suggested by Hari.
14498         
14499 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14500
14501         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
14502         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
14503         
14504         Code is contributed under MIT/X11 license.
14505
14506 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14507
14508         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
14509
14510 2007-09-12  Marek Habersack  <mhabersack@novell.com>
14511
14512         * image.c (do_mono_image_open): if assembly file fails to open and
14513         MONO_IOMAP is in effect, try to find the path in a
14514         case-insensitive way.
14515
14516         * appdomain.c (mono_runtime_init): do not install postload hooks -
14517         tests show that MS.NET doesn't use anything of that sort to
14518         trigger the AppDomain.AssemblyResolve event.
14519         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
14520         made non-static.
14521         (mono_runtime_init): init portability helpers here.
14522
14523         * assembly.c (mono_assembly_load_with_partial_name): if other   
14524         attempts fail, trigger the AppDomain.AssemblyResolve event handler
14525         to resolve the assembly.
14526
14527         * domain-internals.h: added mono_try_assembly_resolve and marked
14528         it as internal.
14529
14530 2007-09-11  Jb Evain  <jbevain@novell.com>
14531
14532         * object-internals.h (MonoReflectionDynamicMethod): add
14533         a `MonoReflectionType *owner` field. The owner is used
14534         * reflection.c:
14535         (mono_reflection_create_dynamic_method): use the owner of the dynamic
14536         method as the class declaring the dynamic method.
14537         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
14538         dynamic method to the declaring type of the methodbuilder.
14539
14540 2007-09-11  Mark Probst  <mark.probst@gmail.com>
14541
14542         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
14543         rules for calling methods via reflection.
14544
14545 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
14546
14547         * reflection.c (resolve_object): Add support for MonoGenericClass. 
14548         Inflate MonoType's.
14549
14550 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
14551
14552         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
14553         provide a managed method that does fast allocations without needing
14554         a managed->unmanaged transition. Boehm GC implementation currently
14555         enabled for ptrfree objects on sane architectures.
14556
14557 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14558
14559         * marshal.c, marshal.h: exported a couple of useful functions and
14560         added mono_mb_get_label () to easily handle backward branches.
14561
14562 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
14563
14564         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
14565
14566 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14567
14568         * loader.c (find_method): Fixed the regression introduced while
14569         fixing bug #81466.
14570
14571 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
14572
14573         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
14574         well.
14575         
14576         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
14577         icall.c reflection.c: Pass a MonoGenericContext argument to 
14578         mono_lookup_dynamic_token ().
14579
14580         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
14581         #82744.
14582         
14583 2007-09-09  Robert Jordan  <robertj@gmx.net>
14584
14585         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
14586         for generic methods.
14587
14588         * object.c (mono_object_get_virtual_method): Handle generic methods.
14589         Fixes bug #78882.
14590
14591         Code is contributed under MIT/X11 license.
14592
14593 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14594
14595         * image.c: fix locking in mono_image_load_file_for_image ().
14596
14597 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
14598
14599         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
14600         used only as a cache: added an icall to fill it.
14601
14602 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
14603
14604         * reflection.h: exposed mono_reflection_free_type_info
14605         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
14606         since mono_reflection_bind_generic_parameters makes a copy of it.
14607         * reflection.c (free_type_info): subinfos should be freed.
14608         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
14609         made non static.
14610         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
14611         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
14612         this fixes #82695 and #81726.
14613    
14614
14615 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
14616
14617         * process.h, process.c:  added support for user profile/info in
14618           ProcessStartInfo. For now only Windows works.
14619
14620 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14621
14622         * metadata.c: consider the generic arguments when comparing
14623         signatures (bug #82614).
14624
14625 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14626
14627         * cil-coff.h, image.c: updated assembly loader to cope with the
14628         PE32+ 64 bit file format.
14629
14630 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14631
14632         * assembly.c, class.c, domain.c, loader.c: remove useless
14633         inclusion of cil-coff.h.
14634
14635 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
14636
14637         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
14638         if interface is marked with CoClassAttribute. 
14639    
14640         Code is contributed under MIT/X11 license.
14641
14642 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14643
14644         * sgen-gc.c: ensure no object from the to space is copied again or finalized
14645         if it's seen twice in major collections.
14646
14647 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14648
14649         * sgen-gc.c: big objects are not copied to the gray area, but they
14650         need to be considered for scanning, too, if they are brought alive
14651         by an object ready for finalizations or a survived one.
14652
14653 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14654
14655         * sgen-gc.c: properly account the number of disappearing links when
14656         they are nullified.
14657
14658 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14659
14660         * sgen-gc.c: share the code to scan the registered roots between the
14661         different types of collections.
14662
14663 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14664
14665         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
14666
14667 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14668
14669         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
14670         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
14671
14672 2007-08-28  Mark Probst  <mark.probst@gmail.com>
14673
14674         * security-manager.c (mono_security_manager_get_methods):
14675         LinkDemandSecurityException now has 2 arguments instead of 3.
14676
14677 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
14678
14679         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
14680         platforms which need it.
14681
14682 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14683
14684         * sgen-gc.c: unregister thread data structures with a pthread_key_t
14685         dtor.
14686
14687 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14688
14689         * threads.c: free the thread static data on thread exit.
14690
14691 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
14692
14693         * class.c: walk the hierarchy to find the generic definition for
14694         a class (fixes runtime part of bug #82498).
14695
14696 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14697
14698         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
14699         ...
14700
14701         * image.c (mono_image_close): Here. Hopefully fixes #82510.
14702
14703 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14704
14705         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
14706
14707 2007-08-24  Robert Jordan  <robertj@gmx.net>
14708
14709         * appdomain.c: don't perform the ':'->';' substitution on Win32.
14710
14711 2007-08-24  Jb Evain  <jbevain@novell.com>
14712
14713         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
14714         for byref types.
14715
14716 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14717
14718         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
14719         #82286.
14720
14721 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14722
14723         * assembly.c: Fix a warning.
14724         
14725 2007-08-23  Marek Habersack  <mhabersack@novell.com>
14726
14727         * appdomain.c: parse the <runtime> section looking for the probing
14728         element with the 'privatePath' attribute, which sets additional
14729         directories in which the runtime should look for assemblies.
14730
14731 2007-08-23  Robert Jordan  <robertj@gmx.net>
14732
14733         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
14734         Fixes #82499.
14735
14736 2007-08-23  Martin Baulig  <martin@ximian.com>
14737
14738         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
14739         _mono_debug_init_corlib() and remove it from the header file.
14740
14741 2007-08-23  Martin Baulig  <martin@ximian.com>
14742
14743         * mono-debug-debugger.c
14744         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
14745         don't notify the debugger about it.
14746
14747         * mono-debug-debugger.h
14748         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
14749
14750 2007-08-23  Robert Jordan  <robertj@gmx.net>
14751
14752         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
14753         Code is contributed under MIT/X11 license.
14754
14755 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14756
14757         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
14758
14759 2007-08-22  Martin Baulig  <martin@ximian.com>
14760
14761         * mono-debug.c: Store debugging info on a per-domain basis and
14762         free it on domain unload.  Add support for unloading symbol files.
14763
14764         * mono-debug.h
14765         (MonoDebugList): New typedef.
14766         (MonoSymbolTable):
14767         - add `data_tables and `type_table'.
14768         - replace 'symbol_files' and `num_symbol_files' with a
14769           `MonoDebugList *'.
14770         (mono_debug_data_table): Removed.
14771         (mono_debug_list_add): New public function.
14772         (mono_debug_list_remove): New public function.
14773         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
14774         (mono_debug_init_2_memory): Renamed into
14775         mono_debug_open_image_from_memory().
14776         (mono_debug_close_image): New public function.
14777         (mono_debug_domain_create): Likewise.
14778         (mono_debug_domain_unload): Likewise.
14779         (MONO_DEBUGGER_VERSION): Bump to 60.
14780
14781         * mono-debug-debugger.h
14782         (MonoDebuggerEvent):
14783         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
14784         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
14785         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
14786         - rename `THREAD_CREATED' and `THREAD_EXITED' into
14787           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
14788         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
14789           meaning.
14790         (mono_debugger_add_symbol_file): Removed.
14791         (mono_debugger_add_type): Removed.
14792         (mono_debugger_lookup_type): Removed.
14793         (mono_debugger_lookup_assembly): Removed.
14794
14795         * domain.c
14796         (mono_domain_create): Call mono_debug_domain_create().
14797         (mono_init_internal): Call mono_debug_init_corlib().
14798
14799         * assembly.c
14800         (mono_assembly_close): Call mono_debug_close_image().
14801
14802 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
14803
14804         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
14805         mmap call.
14806
14807 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14808
14809         * sgen-gc.c: ensure section->pin_queue_end is initialized
14810         correctly when non pinning objects in the section have been found.
14811
14812 2007-08-22  Marek Habersack  <mhabersack@novell.com>
14813
14814         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
14815         containing a list of directories separated by ':'. MSDN docs say
14816         the directories should be separated with ';'. Part of a bugfix for
14817         bug #81446
14818
14819 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
14820
14821         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
14822         it should MonoType and not MonoClass.
14823
14824 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
14825
14826         * culture-info-table.h : regenerated.
14827
14828 2007-08-20  William Holmes  <billholmes54@gmail.com>
14829
14830         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
14831          to call ReplaceFile Kernel32 on windows or in io-layer.
14832         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
14833         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
14834          as an internal call.
14835
14836         Code is contributed under MIT/X11 license.
14837
14838 2007-08-20  Jb Evain  <jbevain@novell.com>
14839
14840         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
14841         and MONO_EXCEPTION_FIELD_ACCESS.
14842
14843         * debug-helpers.[c|h]: new mono_field_full_name function.
14844
14845 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14846
14847         * class.c: Removed class_security_level() and moved it to
14848         security-core-clr.c.
14849
14850         * security-core-clr.c, security-core-clr.h: class_security_level()
14851         is now public and renamed to mono_security_core_clr_class_level().
14852         It also looks for security attributes in the classes a class is
14853         nested in.
14854
14855 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14856
14857         * security-core-clr.c, security-core-clr.h: CoreCLR security
14858         utility functions.
14859
14860         * Makefile.am: Added security-core-clr.[ch].
14861
14862         * security-manager.c, security-manager.h: Functions and enum for
14863         setting and getting the security mode.
14864
14865         * class.c: CoreCLR security checks.
14866
14867 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14868
14869         * icall-def.h, process.c, process.h: implemented icall to get
14870         user/system processor times.
14871
14872 2007-08-17  Mark Probst  <mark.probst@gmail.com>
14873
14874         * domain.c, threads.c, class-internals.h, domain-internals.h: New
14875         reader-lock-free jit_info_table.
14876
14877 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
14878
14879         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
14880
14881         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
14882
14883         * object-internals.h (MonoException): Add missing _data member.
14884
14885 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
14886
14887         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
14888         checking that only methods with matching qname or fqname are picked
14889         from implemented interfaces.
14890
14891 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14892
14893         * verify.c (do_newarr):added, do type verification of
14894         newarr ops, push the right value on the eval stack.
14895         * verify.c (mono_method_verify): use do_newarr
14896
14897
14898 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14899
14900         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
14901         factored the common code into get_boxable_mono_type, which
14902         is now using mono_type_get_full, this fixed byref related tests.
14903
14904 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14905
14906         * class.c: added mono_type_get_full, this function has the same
14907         behavior of mono_class_get_full but the returned MonoType has
14908         all metadata of the associated token in case of a typespec token.
14909         * class.c: added mono_type_retrieve_from_typespec, used by 
14910         mono_type_get_full to retrieve the token type.
14911         * class.c (mono_class_create_from_typespec): changed to use
14912         mono_type_retrieve_from_typespec.
14913         * class.c (mono_ldtoken): changed to use mono_type_get_full
14914         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
14915         * class-internals.h: exported mono_type_get_full for internal use.
14916
14917 2007-08-16  Jb Evain  <jbevain@novell.com>
14918
14919         * domain.c (supported_runtimes): add entry for
14920         the 'moonlight' runtime version.
14921
14922 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14923
14924         * verify.c (mono_method_verify): small typo sliped in.  
14925
14926 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14927
14928         * verify.c (do_unbox_value): added, do type verification of
14929         unboxing ops
14930         * verify.c (mono_method_verify): use do_unbox_value
14931
14932
14933 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14934
14935         * verify.c (dump_stack_value): fixed typo, was printing string
14936         instead of object on stack.
14937         * verify.c (do_box_value): moved the byref check up as it leads
14938         to invalid code and should be done earlier.
14939         * verify.c: improved error messages for and ldobj
14940
14941 2007-08-15  William Holmes  <billholmes54@gmail.com>
14942
14943         * marshal.c (emit_marshal_custom): Omit the call to 
14944           marshal_native_to_managed when calling native to managed 
14945           and the argument is specified as an out argument.
14946
14947         Code is contributed under MIT/X11 license.
14948
14949 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14950
14951         * verify.c: fixed the type checks for generics, function pointers and vectors.
14952         Added type verification for ldobj and ldtoken. The verifier
14953         would segfault if header or signature of a method contained references
14954         to non-existant types.
14955
14956 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
14957
14958         * marshal.c (cominterop_get_ccw): Patch from
14959         Bill Holmes to no walk up interface hierarchy. 
14960         All parent methods should be present in the interface for COM.
14961    
14962         Code is contributed under MIT/X11 license.
14963
14964 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
14965
14966         * marshal.c (emit_marshal_com_interface): Patch from
14967         Bill Holmes to handle COM Interfaces as return values
14968         for native->managed calls.
14969    
14970         Code is contributed under MIT/X11 license.
14971
14972 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
14973
14974         * marshal.c (cominterop_get_idispatch_for_object): Implement
14975         for runtime callable wrappers.
14976    
14977         Code is contributed under MIT/X11 license.
14978
14979 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
14980
14981         * pedump.c (main): changed from mono_init to mono_init_from_assembly
14982         so 2.0 types are accessible
14983
14984
14985 2007-08-13  Miguel de Icaza  <miguel@novell.com>
14986
14987         * domain.c (mono_init_internal): Call mono_assembly_load_friends
14988         once we load mscorlib.   Due to the order in which we initialize,
14989         the mono_assembly_load_full routine that loads mscorlib did not
14990         load friends.   We now load it once we load the
14991         mono_defaults.internals_visible_class class. 
14992
14993         * assembly.c: Expose the mono_load_friend_assemblies method.
14994
14995 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
14996
14997         * verify.c: improved the handling of boxing, better
14998         type checking for unary ops and conversion. Fix bug
14999         regarding managed pointer compatibility checking
15000
15001 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
15002
15003         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
15004
15005         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
15006
15007 2007-08-09  Raja R Harinath  <rharinath@novell.com>
15008
15009         * reflection.c (dup_type): Remove.
15010         * class.c (dup_type): Remove.
15011         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
15012         instead of the dodgy 'dup_type'.
15013         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
15014         handle the case where 'dup_type' needed the second argument.
15015
15016 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
15017
15018         * domain.c: Fix a warning.
15019
15020 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15021
15022         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
15023         checking that methods with the same fqname are not overridden
15024         with a method from an ancestor.
15025
15026 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
15027
15028         * threads.c (free_thread_static_data_helper): Avoid a crash if
15029         thread->static_data is not yet set.
15030
15031 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
15032
15033         * marshal.c: Use correct image when emitting
15034         native wrapper for COM calls.
15035    
15036         Code is contributed under MIT/X11 license.
15037
15038 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
15039
15040         * icall-def.h, security.c, security.h :
15041           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
15042
15043 2007-08-07  Martin Baulig  <martin@ximian.com>
15044
15045         * mono-debug-debugger.h
15046         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
15047
15048         * domain.c (mono_domain_free): Call
15049         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
15050
15051 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
15052
15053         * verify.c (check_underflow, check_overflow): error message now returns IL offset
15054         * verify.c (in_same_block): code should test if either offset is inside the clauses
15055         * verify.c (mono_method_verify): push the exception into the eval stack of exception
15056         and filter blocks
15057
15058 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15059
15060         * image.c (mono_image_close): Fix a leak.
15061
15062         * object.c (mono_runtime_invoke_array): Avoid using alloca.
15063
15064         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
15065
15066 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15067
15068         * domain.c, threads.c, threads-types.h: fix memory retention issue
15069         with thread static variables not being cleared on domain unload.
15070         Reuse thread static slots after domain unload.
15071
15072 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15073
15074         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15075         nullable type.
15076
15077         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15078         now done in mono_runtime_invoke_array.
15079
15080         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
15081         receiver is a nullable type.
15082
15083         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
15084         generic parameter.
15085
15086 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
15087
15088         * marshal.c: Implement COM Objects as return type for 
15089         managed->unmanaged calls. Added Release calls for COM Object
15090         out/return values in managed->unmanaged calls.
15091
15092         Code is contributed under MIT/X11 license.
15093
15094 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15095
15096         * threads.h, threads-type.h: move the hazard pointer declarations
15097         to the private header.
15098
15099 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15100
15101         * file-io.c, appdomain.c: memory leak fixes.
15102
15103 2007-08-02  Dick Porter  <dick@ximian.com>
15104
15105         * socket-io.c
15106         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15107         SO_REUSEADDR setting into io-layer/sockets.c.
15108
15109 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15110
15111         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15112         from Object when called on a generic parameter. Fixes #82211.
15113
15114 2007-08-01  Dick Porter  <dick@ximian.com>
15115
15116         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15117         Fixes bug 79250 yet again.
15118
15119 2007-07-30  Martin Baulig  <martin@ximian.com>
15120
15121         Merged the `debugger-dublin' branch.
15122
15123         * mono-debug.h
15124         (MonoDebugDataTable): New typedef.
15125         (MonoDebugMethodAddressList): New typedef.
15126         (MonoDebugWrapperData): Removed.
15127         (MonoDebugSymbolTable): Removed `current_data_table',
15128         `current_data_table_size', `current_data_table_offset'.
15129         (MonoDebugDataItemType): Moved into mono-debug.c.
15130         (MonoDebugMethodJitInfo): Remove `address'.
15131         (mono_debug_data_table): New global variable.
15132         (mono_debug_lookup_method_addresses): New public function.
15133         (mono_debug_find_method): Take a `MonoMethod *', not a
15134         `MonoDebugMethodInfo *'.
15135
15136         * mono-debug.c: Drop support for the old symbol tables.
15137
15138 2007-06-28  Martin Baulig  <martin@ximian.com>
15139
15140         * mono-debug.c (mono_debug_debugger_version): New public variable.
15141
15142 2007-07-31  William Holmes  <billholmes54@gmail.com>
15143
15144         * metadata.c Changed mono_type_create_from_typespec to not insert
15145           the type into the hash map until after
15146           do_mono_metadata_parse_type has completed.
15147         Fixes Bug #82194
15148         Code is contributed under MIT/X11 license.
15149
15150 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15151
15152         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15153         generic parameter. Fixes #82211.
15154
15155 2007-07-27  Jb Evain  <jbevain@novell.com>
15156
15157         * pedump.c (dump_metadata, dump_metadata_header): dump
15158         versions contained in the metadata header.
15159
15160 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15161
15162         * threads.c: register small_id_table with the GC.
15163
15164 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15165
15166         * threads.c, threads.h, class-internals.h, object-internals.h:
15167         Hazard pointers, to be used by lock-free parallel algorithms.
15168
15169 2007-07-26  Dick Porter  <dick@ximian.com>
15170
15171         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15172         routine on non-windows platforms, as I've not managed to think of
15173         a non-kludgy way of doing this.  Finishes off bug 78739.
15174
15175 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15176
15177         * object.c: properly setup interface_bitmap in proxy vtables.
15178
15179 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15180
15181         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15182         to create unique shadow copy target directories, use the domain's
15183         serial number instead. Each domain gets a unique target directory
15184         that way.
15185
15186         * domain.c (mono_domain_create): added code to increment domain
15187         shadow copy serial number and cache the value in the current
15188         domain structure.
15189
15190         * domain-internals.h (struct _MonoDomain): added a new field -
15191         shadow_serial to hold the serial number used in generation of
15192         shadow-copy directories. This is to make sure that the directory
15193         name is unique for each and every domain created. We avoid a race
15194         condition with overriding assemblies already in use by other app
15195         domains.
15196
15197 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15198
15199         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15200         binding generic parameters.
15201
15202 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15203
15204         * metadata.c (do_mono_metadata_parse_generic_class): Use
15205         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15206         error.
15207
15208 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15209
15210         * loader.c, class-internals.h, reflection.c: removed the per-method
15211         generics hashtable: we use the global one through the call of
15212         mono_class_inflate_generic_method ().
15213
15214 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15215
15216         * class.c, metadata.c, class-internals.h: introduce yet another
15217         generics global cache for inflated methods (fixes 98% of the perf
15218         issue in bug #81806).
15219
15220 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15221
15222         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15223         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15224         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15225         return a MonoGenericInst containing (a copy) of those types.
15226         (mono_metadata_inflate_generic_inst): Update to changes.
15227         (mono_metadata_parse_generic_inst): Likewise.
15228         (mono_get_shared_generic_inst): Likewise.
15229         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15230         (mono_reflection_bind_generic_method_parameters): Likewise.
15231         * metadata-internals.h: Likewise.
15232         * icall.c (free_generic_context): Kill.
15233         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15234
15235         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15236         mono_metadata_type_dup.
15237         * marshal.c (mono_mb_create_method): Likewise.
15238
15239         * metadata.c (mono_metadata_type_dup): Rename from
15240         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15241         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15242         * marshal.c, metadata-internals.h: Update to changes.
15243
15244 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15245
15246         * class.c: fixed a small leak for array classes and removed warning.
15247
15248 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15249
15250         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15251         Return 0x8000000 for return parameters. Fixes #82161.
15252
15253 2007-07-21  Marek Habersack  <grendello@gmail.com>
15254
15255         * appdomain.c (get_shadow_assembly_location): append the current
15256         ticks value to the path. Avoids overwriting the same assemblies by
15257         several threads at the same time.
15258
15259 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15260         and Raja R Harinath  <rharinath@novell.com>
15261
15262         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15263         Simplify slightly.
15264         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15265         property for testing if a method is a generic method definition.
15266
15267 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15268
15269         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15270
15271 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15272
15273         * verify.c: used function from private branch, reverted to the one in class.h 
15274
15275 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15276
15277         * verify.c: a typo slipped in and the code wont compile
15278
15279 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15280
15281         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15282         disabled box instruction as it is doing the wrong thing
15283         improved stack dump messages, now it is easier to debug type related issues
15284
15285
15286 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15287
15288         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15289
15290 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15291
15292         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15293         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15294         grouped with class and valuetype. This change will simply 
15295         the code as it should be handled just like unmanaged pointers.
15296
15297 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15298
15299         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15300
15301 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15302
15303         * verify.c: several stack merge issues fixed, reference comparisons now
15304         check the type size. strict type check now works correctly.
15305         added more uses of IS_MANAGED_POINTER macro.
15306         fixed issues pointed by running the test suite against .net.
15307         
15308
15309 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15310
15311         * class.c, loader.c, class-internals.h: Removed the
15312         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15313         defines.
15314
15315         * icall.c: Better error checking in some internal reflection
15316         methods.
15317
15318 2007-07-18  William Holmes  <billholmes54@gmail.com>
15319
15320         * filewatcher.c : removed unused variable 'filename' in 
15321           ves_icall_System_IO_FSW_SupportsFSW
15322
15323 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15324
15325         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15326         obsolete, removed.
15327
15328 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15329
15330         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15331         
15332         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15333
15334 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15335
15336         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15337         Implement generics support.
15338         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15339
15340         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15341         type_args and method_args arguments.
15342         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15343         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15344         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15345
15346 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
15347
15348         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
15349           It adds a rootimage parameter to mono_reflection_get_type_internal,
15350           adds new function mono_reflection_get_type_with_rootimage and use
15351           the rootimage to resolve the types instead of the current image
15352
15353 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15354
15355         * culture-info-table.h: Forgot to update after r78304.
15356
15357 2007-07-13  Raja R Harinath  <rharinath@novell.com>
15358
15359         * class.c (mono_class_is_open_constructed_type)
15360         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
15361
15362 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
15363
15364         * class.c (mono_bounded_array_class_get):  method fails if used with
15365         an incomplete TypeBuilder enum (no basetype field), fixed it by 
15366         avoiding calculating the size for such array as it cannot be instantiated.
15367         Fix bug #82015
15368
15369 2007-07-12  Raja R Harinath  <rharinath@novell.com>
15370
15371         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
15372         field.
15373         * metadata.c, reflection.c: Update to changes.
15374
15375 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
15376
15377         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
15378         mono_class_is_valid_enum, they are used to valide a enum when loading.
15379         * reflection.c: used new functions to throw TypeLoadException when and
15380         invalid enum is build with TypeBuilder. Fixes #82018
15381   
15382 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15383
15384         * object.c: forgot commit of mono_class_setup_methods () to access
15385         iface->methods.
15386         * object-internals.h: added a few more handy fields to
15387         MonoIMTCheckItem.
15388
15389 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15390
15391         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
15392         iface->methods.
15393
15394 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15395
15396         * class-internals.h, object-internals.h, object.c: IMT-based
15397         interface invocation core from Massimiliano Mantione
15398         (massi@ximian.com) with a reworked arch-specific interface,
15399         bsearch implementation and a few bugfixes and memory savings by me.
15400
15401 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
15402
15403         * class.c (mono_class_create_from_typedef): mono would segfault if 
15404         an enum did not have a __value field. It now throws a TypeLoadException
15405         for such cases. Fix bug #82022
15406
15407 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15408
15409         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
15410
15411 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15412
15413         * class.c (mono_class_init): If a class is already inited but has
15414         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
15415
15416 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15417
15418         * class.c: Properly handle the case of an unimplemented interface
15419         method.  Fixes: 81673.
15420
15421 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15422
15423         * class-internals.h, object.c: cleanup patch from massi: use
15424         MonoVTable->interface_bitmap since the vtable interfaces offset array
15425         is going away.
15426
15427 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15428
15429         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
15430         GetMDStreamVersion icall instead.
15431
15432 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
15433
15434         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
15435         not use mono_dl_build_path() with a full library name: makes
15436         fallbacks to libgaim and libfam work.
15437
15438 2007-07-06  William Holmes  <billholmes54@gmail.com>
15439
15440         * assembly.c: Added a continue statement in probe_for_partial_name when
15441          parse_assembly_directory_name fails.  Fixes : 82002
15442
15443 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
15444
15445         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
15446         and added a verification  for TYPEDBYREF.
15447         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
15448         make native int interchangeable with int32 and some small cleanup and formating.
15449         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
15450         handle byref of byref.
15451         * verify.c (push_local): handle byref of byref.
15452         * verify.c (do_binop): invalid mix of values is unverifiable
15453         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
15454         added visibility checks
15455         * verify.c (field related method): added visibility checks
15456         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
15457
15458 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
15459
15460         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
15461         string.
15462
15463 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15464
15465         * profiler.c (mono_profiler_load): Fix an off-by-one error.
15466
15467         * marshal.c (emit_marshal_string): When returning a string from managed code,
15468         allways make a copy even for unicode strings. Fixes #81990.
15469
15470 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
15471
15472         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
15473         of byref generic inst types (bug #81997).
15474
15475 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
15476
15477         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
15478         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
15479
15480 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
15481
15482         * marshal.c (emit_marshal_string): Add support for unicode strings in
15483         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
15484
15485 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
15486
15487         * verify.c: field load/store are now verified, missing only access checks now
15488
15489 2007-06-28  Martin Baulig  <martin@ximian.com>
15490
15491         * mono-debug.c (mono_debug_debugger_version): New public variable.
15492
15493 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
15494
15495         * locales.c: When constructing DateTimeFormat or NumberFormat for
15496         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
15497         MonoCultureInfo contructed from the current locale is always
15498         read-only and has UseUserOverride set to true. All MonoCultureInfo
15499         instances returned for GetCultures have both IsReadOnly and
15500         UseUserOverride set to true. Fixes part of bug #81930.
15501
15502 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
15503
15504        * icall-def.h: Update System.__ComObject icalls
15505        * marshal.c: Avoid managed transition (and object creation)
15506        when looking up COM interface in RCW.
15507        * marshal.h: Ditto.
15508        
15509        Code is contributed under MIT/X11 license.
15510
15511 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
15512
15513         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
15514         to avoid crashes during assembly unloading.
15515
15516 2007-06-22  Raja R Harinath  <rharinath@novell.com>
15517
15518         Fix MethodInfo.IsGenericMethodDefinition
15519         * reflection.c (mono_reflection_bind_generic_method_parameters):
15520         Rearrange code to ensure we always uses a generic method definition.
15521         * class.c (mono_class_inflate_generic_method_full): Set
15522         'generic_container' field only for generic method definitions.
15523         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15524         Use presense of 'generic_container' field as indication of being a
15525         generic method definition.
15526
15527 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
15528
15529         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15530
15531         * object-internals.h: Reflect changes in the layout of the managed Delegate
15532         class.
15533         
15534         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
15535         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
15536         runtime memory used by the dynamic method. Fixes #77146.
15537
15538 2007-06-21  Dick Porter  <dick@ximian.com>
15539
15540         * file-io.h: 
15541         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
15542         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
15543         81767.
15544
15545 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15546
15547         * reflection.c (method_encode_methodspec): Add a tripwire.
15548         * class.c (inflate_generic_type): The fully open generic type is
15549         not the same as the generic type definition.
15550
15551 2007-06-21  Martin Baulig  <martin@ximian.com>
15552
15553         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
15554
15555         * mono-debug-debugger.h
15556         (MonoDebuggerBreakpointInfo): Removed.
15557         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
15558         (mono_debugger_remove_breakpoint): Likewise.
15559         (mono_debugger_breakpoint_callback): Likewise.
15560         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
15561
15562 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15563
15564         * metadata.c (mono_metadata_lookup_generic_class): The fully open
15565         generic type is not the same as the generic type definition.
15566         * class.c (mono_generic_class_get_class): Likewise.
15567
15568 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
15569
15570         * icall.c: The second argument to 
15571         System.Reflection.MethodBase.GetMethodFromHandleInternalType
15572         is a MonoType not a MonoClass.
15573
15574 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15575
15576         * verify.c: support for function pointers in the verifier
15577
15578 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15579
15580         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
15581
15582 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
15583
15584         * assembly.c: removed Mono.Data.SqliteClient from the list of
15585         forward-compatible assemblies as it breaks the ABI (bug #81899).
15586
15587 2007-06-19  Raja R Harinath  <rharinath@novell.com>
15588
15589         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
15590         lookup/update with the loader lock.
15591         * reflection.c (mono_class_bind_generic_parameters): No need to
15592         protect mono_metadata_lookup_* with the loader lock.
15593         * class.c (inflate_generic_type): Likewise.
15594         
15595         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
15596         on a generic instantiated type.
15597
15598 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
15599
15600         *verify.c: produce meanfull error messages on verification error
15601         *verify.c: fixed some cases of verification errors reported as validation errors
15602         *pedump.c: fixed the error name array, now it shows validation errors properly
15603         *verify.h: fixed the contant that should be used for verification errors
15604
15605 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
15606
15607         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
15608         for bug #77596, 81858 and 80743 (generics data structures on domain
15609         unload).
15610
15611 2007-06-15  Raja R Harinath  <rharinath@novell.com>
15612
15613         Avoid allocating 'MonoGenericContext' on the heap.
15614         * class-internals (_MonoMethodInflated::context): Make field
15615         inline, not a pointer.
15616         * loader.c (method_from_methodspec): Allocate 'new_context' on the
15617         stack.  Use the context embedded within the inflated method as the
15618         hash key, rather than 'new_context'.
15619         * class.c (inflate_generic_context): Simplify.  Return a struct
15620         rather than allocating on the heap.
15621         (mono_class_inflate_generic_method_full): Update to changes.  Now,
15622         doesn't salt away a copy of the context -- simplifying the
15623         lifetime rules of a 'MonoGenericContext *'.
15624         (mono_method_get_context): Return pointer to embedded context.
15625         (setup_generic_array_ifaces): Allocate temporary context on stack.
15626         * reflection.c (inflate_mono_method): Likewise.
15627         (mono_reflection_bind_generic_method_parameters): Likewise.
15628         Use the context embedded within the inflated method as the hash key.
15629
15630         Avoid a source of allocation of 'MonoGenericContext'.
15631         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
15632         and 'cached_context' fields into embedded 'MonoGenericContext' field.
15633         * class.c: Update to changes.
15634         (mono_generic_class_get_context): Simplify drastically.  Now just
15635         returns a pointer to the field.
15636         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
15637         argument as a const pointer.
15638         (mono_metadata_generic_context_equal): Likewise.
15639         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
15640         Update to changes.
15641
15642 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
15643
15644         * verify.c improved the handling of brtrue/brfalse, factored out common code
15645
15646 2007-06-14  Raja R Harinath  <rharinath@novell.com>
15647
15648         Kill MonoGenericMethod.
15649         * class-internals.h (MonoGenericContext::method_inst): Rename from
15650         'gmethod' and convert to a MonoGenericInst.
15651         (MonoGenericMethod): Remove.
15652         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
15653         * loader.c (method_from_methodspec): Update to changes.  Use a
15654         MonoGenericContext as the key to the hashtable.
15655         * metadata.c (mono_metadata_generic_context_equal): Rename from 
15656         'mono_metadata_generic_method_equal' and take MonoGenericContext.
15657         (mono_metadata_generic_context_hash): Likewise from
15658         'mono_metadata_generic_method_hash'.  Change hash function.
15659         (mono_metadata_load_generic_params): Update to changes.
15660         (mono_get_shared_generic_method): Remove.
15661         * metadata-internals.h (mono_get_shared_generic_method): Remove.
15662         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
15663         (inflate_generic_context): Likewise.
15664         (mono_class_inflate_generic_method_full): Likewise.
15665         (setup_generic_array_ifaces): Likewise.
15666         (mono_class_create_from_typespec): Likewise.
15667         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
15668         (method_encode_methodspec): Update callsite.
15669         (reflection_methodbuilder_to_mono_method): Update to changes.
15670         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
15671         MonoGenericContext as the key to the hashtable.
15672         (inflate_mono_method): Update to changes.
15673
15674         * class-internals.h (MonoGenericMethod::container): Remove.
15675         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15676
15677 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
15678
15679         * profiler-private.h, profiler.c, profiler.h: added API to profile
15680         exception events.
15681
15682 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15683
15684         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
15685
15686 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15687
15688         * verify.c: method invocation is now validated, now we verify parameter types on stack.
15689         Fixed overflow and underflow not aborting the verification process.
15690
15691 2007-06-13  Mark Probst  <mark.probst@gmail.com>
15692
15693         * class-internals.h (MonoStats): Added stats entries for dynamic
15694         code allocations.
15695
15696 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
15697
15698         * loader.c (mono_free_method): Free header->locals and header->clauses.
15699
15700         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
15701         dynamic case.
15702
15703         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
15704
15705         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
15706
15707 2007-06-12  Raja R Harinath  <rharinath@novell.com>
15708
15709         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
15710         the tables.
15711
15712 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15713
15714         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
15715
15716 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15717
15718         MonoGenericMethod on a diet
15719         * class-internals.h (_MonoMethodInflated::reflection_info): Move
15720         here ...
15721         (_MonoGenericMethod::reflection_info): ... from here.
15722         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
15723         Update to changes.
15724         * reflection.c (inflate_mono_method): Likewise.
15725         (mono_reflection_bind_generic_method_parameters): Likewise.
15726
15727 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15728
15729         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
15730         *verify.c: factored long ldarg forms to share code with short forms
15731
15732 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15733
15734         *verify.c: fixed code formating factored some duplicate code
15735         into a new function
15736
15737         *verify.h: fixed binary incompatibility introduced earlier
15738
15739         *pedump.c: fixed formating
15740
15741 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15742
15743         Fix assertion when disassembling Mono.C5.dll
15744         * loader.c (method_from_methodspec): Avoid inflating a method
15745         twice with the same context.  If the methodref is inflated, use
15746         the declaring method instead.
15747
15748         * class.c (mono_class_from_generic_parameter): Fix case similar to
15749         bug #81830 handled below, but for method containers.
15750
15751 2007-06-10  Raja R Harinath  <harinath@gmail.com>
15752
15753         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
15754         get_shared_generic_class.  Directly inflate the instance.
15755         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
15756         (inflate_generic_class): Delete.
15757         (get_shared_generic_class): Delete.  Move setting of
15758         'cached_class' and 'cached_context' ...
15759         * metadata.c (mono_metadata_lookup_generic_class): ... here.
15760
15761         * metadata.c (mono_metadata_lookup_generic_class): Change
15762         signature to take the components of a MonoGenericClass rather than
15763         an allocated MonoGenericClass.  Change semantics to be intern-like.
15764         * reflection.c (mono_class_bind_generic_parameters): Update to
15765         changes.  Make locking region tighter.
15766         * class.c (inflate_generic_class): Update to changes.
15767         (get_shared_generic_class): Likewise.
15768         * metadata-internals.h: Likewise.
15769
15770         * reflection.c (mono_class_bind_generic_parameters): Take and
15771         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
15772         (mono_reflection_bind_generic_parameters): Use
15773         'mono_class_bind_generic_parameters' rather than duplicate the code.
15774         * class.c (mono_bounded_array_class_get): Update to changes.
15775         * object-internals.h: Likewise.
15776
15777         * reflection.c (mono_class_bind_generic_parameters): Only support
15778         parameterizing generic type definitions.  Remove support for other
15779         open types.
15780
15781 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
15782
15783         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
15784
15785         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
15786         in the dynamic case.
15787
15788 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
15789
15790         * threads.c: When cleaning up thread, reset the Background bit.
15791         Fixes bug #81720.
15792
15793 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
15794
15795        * metadata.c: Move variable declarations to top of scope.
15796        * verify.c: Move variable declarations to top of scope.
15797
15798        Code is contributed under MIT/X11 license.
15799
15800 2007-06-08  Raja R Harinath  <rharinath@novell.com>
15801
15802         * reflection.c (mono_class_bind_generic_parameters): Replace
15803         open-coded loop with mono_metadata_inflate_generic_inst.
15804
15805         * class.c (get_shared_generic_class): Don't call
15806         mono_get_shared_generic_inst.  Use the container's own
15807         'class_inst'.
15808
15809         * metadata.c (mono_metadata_load_generic_params): Move
15810         initialization of 'context' field here from ...
15811         * class.c (mono_class_create_from_typedef): ... here, and ...
15812         * loader.c (mono_get_method_from_token): ... here.
15813
15814         * class.c (get_shared_generic_class): Rename from
15815         mono_get_shared_generic_class and make static.
15816         (mono_get_shared_generic_inst): Move to metadata.c.
15817         * loader.c (mono_get_shared_generic_method): Likewise.
15818         * class-internals.h, metadata-internals.h: Update to changes.
15819
15820         Fix #81830
15821         * class.c (mono_class_from_generic_parameter): Don't assume a
15822         generic container owner exists.  Generic containers from monodis
15823         don't have any.
15824
15825 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
15826
15827         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
15828         * verify.h: new typedefs to returns the non-verifiable status
15829         * verify.c: initial implementation of generics, stack merging and object compatibility check
15830
15831 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15832
15833         * class.c, image.c, class-internals.h (MonoImage): class_cache is
15834         a MonoInternalHashTable again (fixed bug in internal hash table
15835         code).
15836
15837 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15838
15839         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
15840         MonoInternalHashTable again (fixed bug in internal hash table
15841         code).
15842
15843 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15844
15845         * class.c, image.c, class-internals.h, domain.c,
15846         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
15847         changes.  Have to figure out what makes them break the SWF
15848         regression.
15849
15850 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15851
15852         * class.c, image.c, class-internals.h (MonoImage): class_cache is
15853         a MonoInternalHashTable now.
15854
15855 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15856
15857         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
15858         MonoInternalHashTable now.
15859
15860 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
15861
15862         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
15863         invoke_impl code.
15864
15865         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
15866
15867         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
15868         dependent trampoline.
15869
15870         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15871
15872         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
15873
15874 2007-05-29  Robert Jordan  <robertj@gmx.net>
15875
15876         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
15877
15878 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
15879
15880         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
15881
15882 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
15883
15884        * marshal.c: Fix interface lookup loops for
15885        cominterop_get_com_slot_for_method and 
15886        cominterop_get_method_interface. Only need to lookup
15887        if type is a class, else use interface type method is on.
15888
15889        Code is contributed under MIT/X11 license.
15890
15891 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
15892
15893         * reflection.c: HasSecurity can be present even if no specially 
15894         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
15895         SecurityAttribute). Fix CAS regression tests on buildbot.
15896
15897 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
15898
15899        * appdomain.c: Add configure checks for header files.
15900        * image.c: Add configure checks for header files.
15901        * file-io.c: Add configure checks for header files.
15902        * debug-mono-symfile.c: Add configure checks for header files.
15903        * threadpool.c: Add configure checks for header files.
15904        * console-io.c: Add configure checks for header files.
15905        * profiler.c: Add configure checks for header files.
15906        * rawbuffer.c: Add configure checks for header files.
15907        * icall.c: Add configure checks for header files.
15908        * rand.c: Add configure checks for header files.
15909        * socket-io.c: Add configure checks for header files.
15910
15911        Code is contributed under MIT/X11 license.
15912
15913 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
15914
15915         * reflection.c (mono_custom_attrs_from_builders): Remove the 
15916         assertion as it breaks the build.
15917         
15918         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
15919
15920         * reflection.c (lookup_custom_attr): Make a copy here too.
15921
15922         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
15923         dynamic images.
15924
15925         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
15926         images.
15927
15928         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
15929         info.
15930
15931 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
15932
15933         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
15934         (load_cattr_value): Ditto.
15935
15936 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
15937
15938         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
15939
15940 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
15941
15942         * threads.c: In "start_wrapper", set apartment_state to MTA if
15943         apartment_state is Unknown and we're running on 2.0 profile or
15944         higher.
15945         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
15946         to main method, then set apartment_state to Unknown on 1.0 profile,
15947         and MTA on 2.0 profile.
15948
15949 2007-05-16  Jb Evain  <jb@nurv.fr>
15950
15951         * class-internals.h (MonoDefaults): Add an attribute_class and
15952           customattribute_data_class.
15953         * domain.c (mono_init_internal): Populate them.
15954         * reflection.c: Use them to remove duplicates. Make a vew
15955         MonoClass variables `static'.
15956
15957 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
15958
15959         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
15960         step in implementing IMT, so that all isinst checks now can go
15961         through the bitmap.
15962         This was needed because vtables for TransparentProxy need to look
15963         like the vtable of the "target" class, so they need to point to
15964         its interface bitmap directly.
15965
15966         * object.c: inside "mono_class_create_runtime_vtable" and
15967         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
15968
15969 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15970
15971         * object-internals.h
15972           culture-info.h : added territory field in MonoCulture and
15973           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
15974         * locales.c : fill territory field above too.
15975         * culture-info-table.h : regenerated.
15976
15977 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
15978
15979         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
15980         Fixes #81599.
15981
15982 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
15983
15984         * object.c: Always initialize apartment, even if 
15985         there is no custom attributes on entry point.
15986         
15987         Code is contributed under MIT/X11 license.
15988
15989 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
15990
15991         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
15992         * metadata.c: If no encoding is set, check for unicode
15993         on class.
15994         
15995         Code is contributed under MIT/X11 license.
15996
15997 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
15998
15999         * threads.c: Handle if mono_thread_current returns NULL 
16000         
16001         Code is contributed under MIT/X11 license.
16002
16003 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16004
16005         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
16006         in start_wrapper. Added mono_thread_init_apartment_state and
16007         mono_thread_cleanup_apartment_state.
16008         * object.c: Initialize thread apartment state on main thread
16009         by checking for STAThreadAttribute on entry point.
16010         * object-internals.h: Add apartment_state field to MonoThread.
16011         * threads-types.h: Add unmanaged definition of 
16012         System.Threading.ApartmentState, MonoThreadApartmentState.
16013         
16014         Code is contributed under MIT/X11 license.
16015         
16016 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
16017
16018         * class.c: Fix windows build.
16019         * class-internals.h: Fix windows build.
16020         
16021         Code is contributed under MIT/X11 license.
16022
16023 2007-05-08  Robert Jordan  <robertj@gmx.net>
16024
16025         * process.c (CreateProcess_internal):
16026         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
16027         .CreateNoWindow was specified. Fixes #81496.
16028
16029 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16030
16031         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
16032         step in implementing IMT, replaced it with two compact arrays
16033         (interfaces_packed and interface_offsets_packed) and a bitmap that
16034         is used for isinst checks (interface_bitmap).
16035
16036         * class.c: (compare_interface_ids): compare function to pass to
16037         bsearch when looking for an interface with a given id.
16038         (mono_class_interface_offset): reimplemented using bsearch on
16039         interfaces_packed, getting the offset from interface_offsets_packed.
16040         (print_implemented_interfaces): utility debugging function.
16041         (setup_interface_offsets): reworked to initialize interfaces_packed,
16042         interface_offsets_packed and interface_bitmap.
16043
16044         * object.c: replaced all accesses to "MonoClass.interface_offsets"
16045         with uses of interfaces_packed and interface_offsets_packed.
16046
16047 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16048
16049         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
16050         mono_class_interface_offset prototype to wrap all accesses to
16051         "MonoClass.interface_offsets".
16052
16053         * class.c: Implemented mono_class_interface_offset, and wrapped all
16054         accesses to "MonoClass.interface_offsets".
16055
16056         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
16057         "MonoClass.interface_offsets".
16058
16059 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16060
16061         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
16062         GetMethodFromHandle overloads (bug #78637).
16063
16064 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16065
16066         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
16067         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
16068
16069 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
16070
16071         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
16072         #81498.
16073
16074         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16075         gracefully.
16076         (mono_custom_attrs_from_index): Ditto.
16077
16078         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
16079         Fixes #81501.
16080
16081 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
16082
16083         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16084         is now allocated from a mempool.
16085
16086 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
16087
16088         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16089         caller holds threads_lock, leading to deadlocks. Fixes #81476.
16090
16091 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
16092
16093         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16094         mono_loader_clear_error () too late. Fixes #81463.
16095
16096 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
16097
16098         * culture-info-table.h : regenerated.
16099
16100 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
16101
16102         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16103         is missing.
16104
16105 2007-04-25  Dick Porter  <dick@ximian.com>
16106
16107         * Makefile.am: Put the mingw enforced-optimisation back into the
16108         PLATFORM_WIN32 section.
16109
16110 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
16111
16112         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16113         patch.
16114
16115         * image.c (mono_image_load_module): New API function to load a module reference.
16116
16117         * image.c (load_modules): Load modules lazily. Fixes #80812.
16118
16119         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16120         
16121         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16122
16123         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16124         to mono_image_load_module_dynamic.
16125
16126 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16127
16128         * marshal.c: Fix calling convention for CCW on non-windows
16129         platforms. STDCALL on windows, CDECL everywhere else to work 
16130         with XPCOM and MainWin COM.
16131         
16132         Code is contributed under MIT/X11 license.
16133
16134 2007-04-23  Martin Baulig  <martin@ximian.com>
16135
16136         Fix #80969.
16137
16138         * loader.c
16139         (method_from_memberref): Added `gboolean *used_context' argument.
16140         (mono_get_method_from_token): Likewise.
16141         (mono_get_method_full): Don't insert the method in the cache when
16142         `used_context' is true.
16143
16144 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16145
16146         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16147
16148         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16149         create new MonoTypes for returned types.
16150         * class.c (mono_generic_class_get_class): Export mono-internal.
16151         * class-internals.h: Update to changes.
16152
16153 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16154
16155         * threadpool.c, threadpool.h, icall-def.h: patch from
16156         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16157
16158 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16159
16160         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16161         
16162         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16163
16164         * threads.c (mono_thread_get_stack_bounds): New helper function.
16165
16166         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16167         Correctly compute stack bounds when attaching. Fixes #81394.
16168
16169 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16170
16171         * reflection.c: fix handling of doubles in custom attributes
16172         for the arm-fpa format (bug #81368).
16173
16174 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16175
16176         * reflection.c (assembly_add_win32_resources): Mildly relax an
16177         bounds check to let the end pointer point just past the end of the
16178         allocated buffer.  (may fix #81384)
16179
16180 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16181
16182         * culture-info-table.h : regenerated.
16183
16184 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16185
16186         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16187         the thread is aborted early.
16188
16189 2007-04-05  Dick Porter  <dick@ximian.com>
16190
16191         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16192         FindFirstFile()/FindNextFile() to find entries.  This lets the
16193         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16194         81038.
16195
16196         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16197         the parameters of
16198         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16199
16200 2007-04-04  Martin Baulig  <martin@ximian.com>
16201
16202         * debug-helpers.c
16203         (mono_method_desc_full_match): Add support for nested classes.
16204
16205 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16206
16207         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16208
16209 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16210
16211         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16212         waiting for too many threads.
16213
16214 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16215
16216         * environment.c: Fix return value check on uname so we can get the 
16217         executing version on Solaris operating systems.
16218
16219 2007-03-28  Jb Evain  <jbevain@gmail.com>
16220
16221         * class.c (mono_type_get_name_recurse): Complete the
16222         fix for the creation of assembly qualified names for
16223         pointer types. Fixes #81208.
16224
16225 2007-03-27  Dick Porter  <dick@ximian.com>
16226
16227         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16228         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16229         changed.
16230
16231         * threads.c
16232         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16233         the value of ReleaseMutex().
16234
16235 2007-03-27  Dick Porter  <dick@ximian.com>
16236
16237         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16238         in little-endian order, not network endian, so must be converted
16239         to host endian here.  Fixes bug 80593.
16240
16241 2007-03-22  Jb Evain  <jbevain@gmail.com>
16242
16243         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16244         qualified names for pointer types. Fixes #81208.
16245
16246 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16247
16248         * marshal.c: Add support for PreserveSigAttribute. 
16249         
16250         Code is contributed under MIT/X11 license.
16251
16252 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16253
16254         * process.c: Fix endianness issues. Fixes #81126.
16255
16256         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16257         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16258
16259         * image.c (mono_image_lookup_resource): Make this work on big-endian
16260         machines.Change API contract so the caller needs to free the return value.
16261         
16262         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16263         API change.
16264         
16265 2007-03-14  Martin Baulig  <martin@ximian.com>
16266
16267         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16268         mono_type_get_desc() as well.
16269
16270 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16271
16272         * icall.c:  Fix environ access in VS.  
16273         
16274 2007-03-13  Alp Toker  <alp@atoker.com>
16275
16276         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16277         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16278         #63841.
16279
16280 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16281
16282         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16283         circular references among dynamic methods. Fixes #81091.
16284
16285         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16286
16287 2007-03-09  Martin Baulig  <martin@ximian.com>
16288
16289         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16290
16291 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16292
16293         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16294         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16295         
16296         Code is contributed under MIT/X11 license.
16297         
16298 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16299
16300         * loader.c: Reapply patch for bug #79424.
16301
16302 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16303
16304         * metadata.c (mono_type_to_unmanaged): Only convert object to
16305         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16306
16307 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16308
16309         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16310         (and incorrectly set) is_reference field from MonoGenericInst.
16311
16312 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16313
16314         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16315         a little earlier.
16316
16317         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16318
16319         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16320
16321 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16322
16323         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16324         FileOptions.1 value to mean "temporary", map that to
16325         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16326
16327         Fixes 80688
16328
16329 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16330
16331         * appdomain.c: implement MS .Net style shadow copying. Copies of
16332         the assemblies are made in a subdirectory of the dynamic base
16333         directory, the assembly names are preserved.
16334         Copy .mdb and .config files along with the assemblies being shadowed.
16335
16336 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16337
16338         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16339         (emit_marshal_handleref): Ditto.
16340
16341         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16342         on Visual C++. Fixes #80671.
16343
16344 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16345
16346         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16347         for clone operations.
16348
16349 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16350
16351         * marshal.c: Fix warnings.
16352
16353 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
16354
16355         * loader.c: allow case-insensitive matching of the dll name
16356         in dllmap handling when prefixed with "i:".
16357
16358 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
16359
16360         * threads.c: Fix #ifdef for dummy_apc function for VS.
16361
16362 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16363
16364         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
16365
16366 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
16367         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
16368         giving precedence to the methods with a fully qualified name
16369         (InterfaceName.MethodName) when building the interface sections
16370         of the vtable.
16371
16372 2007-02-16  Dick Porter  <dick@ximian.com>
16373
16374         * threadpool.c (append_job): Fix fast-path array handling, so it's
16375         less likely the array will grow exponentially when the load is
16376         heavy.
16377
16378 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16379
16380         * metadata-internals.h, loader.c: fix dllmap lookup order
16381         for non-function maps, too, and prepare for fallback code.
16382
16383 2007-02-12  Robert Jordan  <robertj@gmx.net>
16384
16385         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
16386         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
16387         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
16388         GlobalFree. Fixes a part of bug #77075.
16389
16390 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
16391
16392         * loader.c: implemented typedef parent in field memberref.
16393
16394 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
16395
16396         * marshal.c: Fix warnings and remember to call Release on
16397         IUnknown of RCW.
16398         
16399         Code is contributed under MIT/X11 license.
16400
16401 2007-02-10  Miguel de Icaza  <miguel@novell.com>
16402
16403         * class-internals.h: Add MonoHandleRef definition, and
16404         handleref_class to mono_defaults. 
16405
16406         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
16407         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
16408
16409         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
16410         (do nothing on this stage)
16411         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
16412         (emit_marshal_handleref): New method, used for argument handling
16413         of HandleRefs. 
16414
16415 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
16416
16417         * class.c (mono_class_setup_parent): Lazily init com types.
16418         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
16419         init com types.
16420         * object.c (mono_remote_class_vtable): Lazily init com types.
16421         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
16422         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
16423         * domain-internals.h: Expose mono_init_com_types.
16424         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
16425         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
16426         Add support for COM Callable Wrapper marshalling.
16427         * marshal.h: Add icall definitions.
16428         * gc.c: Handle freeing of CCWs in finalizer code.
16429         
16430         Code is contributed under MIT/X11 license.
16431
16432 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
16433
16434         * reflection.c: changed all the signature encoding code to use
16435         a variable-sized buffer.
16436
16437 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16438
16439         * marshal.c: locking fixes: never take the loader lock
16440         or other runtime locks when holding the marshal lock
16441         (fixes bug#80664).
16442
16443 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
16444
16445         * marshal.c: make the delegate function pointer mapping
16446         work for the moving GC.
16447
16448 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
16449
16450         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
16451         for bug #80618.
16452
16453 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16454
16455         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
16456         gmodule.
16457
16458 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16459
16460         * threadpool.c: made the code moving-GC safe.
16461
16462 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
16463
16464         * assembly.c, boehm-gc.c, class-internals.h, class.c,
16465         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
16466         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
16467         warning cleanup.
16468         * reflection.c: warning cleanup, some threading and moving GC fixes.
16469
16470 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
16471
16472         * class.c, loader.c: create the needed Set/Get/Address array methods
16473         as well as the .ctors in mono_class_init (), fixes bug #80567.
16474
16475 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
16476
16477         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
16478         we doesn't decrease its alignment. Should fix the sparc build.
16479
16480 2007-01-24  Dick Porter  <dick@ximian.com>
16481
16482         * socket-io.c
16483         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
16484         Create the returned object if we need to ignore an unsupported
16485         socket option.  Fixes a segfault reported by Atsushi.
16486
16487 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
16488
16489         * class.c, object.c: restrict GC-tracked fields to
16490         UIntPtr fields used inside corlib, so we provide better
16491         type info to the GC and also allow broken packing as in
16492         bug #80580.
16493
16494 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
16495
16496         * sgen-gc.c: removed duplicated function.
16497
16498 2007-01-19  Miguel de Icaza  <miguel@novell.com>
16499
16500         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
16501         value that means that the value is not supported, but that we
16502         should not return a failure, but instead report this as a
16503         successful operation.
16504
16505 2007-01-19  Raja R Harinath  <rharinath@novell.com>
16506
16507         Fix tests/bug79956.2.il
16508         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
16509         (mono_generic_class_get_class): If the generic definition in an
16510         enum, copy over other fields related to it.
16511
16512 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
16513
16514         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
16515         genericinst enums (bug #79215).
16516
16517 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
16518         * class.c: Fix bug 80307.
16519
16520 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
16521
16522         * image.c: if the file table is not present, try to load
16523         all the modules, since we don't have info about them
16524         having or not metadata (bug #80517).
16525         * assembly.c: allow mono_assembly_load_references () to
16526         work for netmodules.
16527
16528 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16529
16530         * image.c, metadata-internals.h, object.c: execute module
16531         cctors when running on the 2 runtime if present (bug #80487).
16532
16533 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
16534
16535         * icall.c: optimized InitializeArray() on bigendian.
16536
16537 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
16538
16539         * icall.c: fix for the broken ARM FPA double format.
16540
16541 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16542
16543         * icall.c: handle endian issues for r4 and r8 types, too, in
16544         the InitializeArray() icall.
16545
16546 2007-01-15  Miguel de Icaza  <miguel@novell.com>
16547
16548         * loader.c (mono_loader_error_prepare_exception): Clear the error
16549         once we have extracted the information from it, do this before we
16550         call into the JIT's class loading mechanisms.
16551
16552         * object.c (mono_class_create_runtime_vtable): Do not clear the
16553         loader error before calling mono_class_get_exception_for_failure
16554         as the loader error is needed inside
16555         mono_class_get_exception_for_failure to throw the error (thinko).
16556
16557         Fixes #80521
16558         
16559 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
16560
16561         * reflection.c: align fields rva data so it's faster to load at
16562         runtime.
16563
16564 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16565
16566         Prepare to simplify GenericMethod handling.
16567         * class-internals.h (mono_method_get_context): New accessor function.
16568         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
16569         rather than directly accessing '->context' field.
16570
16571         * class-internals.h (_MonoGenericParam.method): Move ...
16572         (_MonoGenericContainer): ... here.  Add into union with klass field.
16573         * class.c, icall.c, loader.c, metadata.c, reflection.c:
16574         Update to changes.
16575
16576 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
16577
16578         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
16579         the wrapper type enum and reduce relocations.
16580
16581 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16582
16583         * reflection.c (inflate_mono_method): Reuse method instantiation
16584         from the generic method, if available.
16585
16586 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16587
16588         * marshal.c (emit_marshal_variant): Fix conv_arg
16589         type in last commit, based on whether parameter is byref.
16590         
16591 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16592
16593         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
16594         marshalling.
16595         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
16596         MONO_TYPE_OBJECT back for VARIANT support.
16597
16598 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16599
16600         * marshal.c, marshal.h, icall-def.h: Implement 
16601         Marshal.ReAllocCoTaskMem.
16602
16603 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
16604
16605         * marshal.c: memory retention fixes: use the proper
16606         image cache for runtime_invoke method lookups.
16607
16608 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
16609
16610         * mempool.c: added code to help debug mempool allocations.
16611
16612 2007-01-11  Dick Porter  <dick@ximian.com>
16613
16614         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
16615         support (experimenting with faking it with IP_MTU_DISCOVER for
16616         systems that don't have IP_DONTFRAGMENT.)
16617         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
16618         icall.
16619
16620         * icall-def.h: new System.Net.Sockets.Disconnect icall.
16621
16622         * socket-io.h: Add new fields to MonoSocketAsyncResult
16623         corresponding to the new ones in Socket.cs.
16624
16625 2007-01-11  Raja R Harinath  <rharinath@novell.com>
16626
16627         Fix IronPython regression mentioned in #80249
16628         * metadata.c (do_mono_metadata_parse_generic_class): Clear
16629         'cached_context' field, since it may have been initialized as a
16630         side-effect of metadata parsing.
16631
16632         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
16633         (_MonoGenericClass.cached_class): Move here and rename from lone
16634         remaining field of ...
16635         (_MonoInflatedGenericClass): ... this.  Remove.
16636         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
16637         to changes.
16638
16639         Fix mcs/tests/test-128.cs regression.
16640         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
16641         2007-01-10 change below.
16642         [MONO_TYPE_OBJECT]: Recurse into array case.
16643
16644 2007-01-11  Raja R Harinath  <harinath@gmail.com>
16645
16646         * class-internals.h (mono_get_inflated_generic_class): Remove.
16647         * class.c (mono_get_inflated_generic_class): Remove.
16648         (mono_generic_class_get_class): Rename from
16649         mono_class_create_generic.
16650         (mono_class_from_mono_type) [GENERICINST]: Use it.
16651         * reflection.c, metadata.c: Update to changes.  Use
16652         'mono_class_from_mono_type'.
16653
16654 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
16655
16656         * reflection.c: use passed type when encoding an array element
16657         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
16658
16659 2007-01-09  Robert Jordan  <robertj@gmx.net>
16660
16661         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
16662         result arguments (someDelegate.EndInvoke (unrelatedAres)).
16663         Fixes bug #80392.
16664
16665 2007-01-09  Raja R Harinath  <rharinath@novell.com>
16666
16667         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
16668
16669         * object.c (set_value): Avoid aliasing between type->data.klass
16670         and type->data.generic_class.
16671
16672         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
16673
16674 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16675
16676         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
16677         between type->data.klass and type->data.generic_class.
16678
16679 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
16680
16681         * marshal.c: In MS.NET, StringBuilder objects are not copied by
16682         value in out parameters.
16683
16684 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16685
16686         Simplify invariant for MonoGenericClass::klass field.
16687         * class.c (mono_class_create_generic): Verify 'klass' is null.
16688         * metadata.c (do_mono_metadata_parse_generic_class): Don't
16689         initialize 'klass' field.
16690
16691 2007-01-05  Raja R Harinath  <rharinath@novell.com>
16692
16693         Ongoing work to avoid redundant data and simplify invariants.
16694         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
16695         'generic_class', and change type to a GenericInst.
16696         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
16697         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16698
16699 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
16700
16701         * class.c : skip io-layer under PLATFORM_WIN32.
16702
16703 2007-01-03  Tor Lillqvist  <tml@novell.com>
16704
16705         Fix #80305: In a bundled executable, look in the bundled exe
16706         assembly to determine the runtime version. Add the possibility to
16707         bundle also the machine.config file.
16708         
16709         * assembly.c (mono_assembly_open_from_bundle): Make
16710         non-static. Allow being called even if we have no bundled
16711         assemblies, and return NULL right away in that case.
16712
16713         * domain-internals.h: Declare mono_assembly_open_from_bundle()
16714         here.
16715
16716         * domain.c (app_config_parse): Take an assembly exe file name as
16717         parameter instead of a config file name. Check for a bundled
16718         config file for that assembly by calling
16719         mono_config_string_for_assembly_file() (see below) before looking
16720         for one in the file system.
16721         (get_runtimes_from_exe): Corrsponding change to call of
16722         app_config_parse().
16723         (get_runtimes_from_exe): Check for bundled assembly exe file first
16724         by calling mono_assembly_open_from_bundle(). If no bundled
16725         assembly exe file is found, call mono_image_open() as before to
16726         look it up in the file system.
16727
16728         * mono-config.c: Add variable bundled_machinec_onfig.
16729         (mono_config_string_for_assembly_file): New function.
16730         (mono_config_for_assembly): Move code snippet that looks for a
16731         bundled assembly .config file into the above new function. Call
16732         it.
16733         (mono_register_machine_config, mono_get_machine_config): New
16734         functions to set and retrieve
16735
16736         * assembly.h: Declare mono_register_machine_config().
16737
16738         * mono-config.h: Declare mono_get_machine_config() and
16739         mono_config_string_for_assembly_file().
16740
16741         * icall.c: No declaration of environ necessary on Win32. It is
16742         declared (as a macro expanding to a function call) in stdlib.h.
16743         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
16744         New internal mono function. Returns the value of
16745         mono_get_machine_config() as a Mono string.
16746
16747         * icall-def.h: Add get_bundled_machine_config().
16748
16749 2007-01-04  Raja R Harinath  <rharinath@novell.com>
16750
16751         Remove redundant field
16752         * class-internals.h (_MonoGenericContext.container): Remove field.
16753         * loader.c (mono_method_get_signature_full): Don't parse a
16754         "container" for a signature parse when the signature is inflated
16755         immediately.
16756         (method_from_methodspec): Likewise, for a generic_inst.
16757         * class.c, metadata.c, reflection.c: Update to changes.
16758
16759 2006-01-04  Raja R Harinath  <rharinath@novell.com>
16760
16761         * class-internals.h (_MonoGenericClass): Rename 'context' field to
16762         'cached_context', and change semantics -- it starts off NULL, and
16763         is initialized on demand.
16764         * class.c (mono_generic_class_get_context): New accessor to
16765         replace 'context' field accesses.
16766         (mono_class_get_context): New helper.
16767         (*): Update to changes.
16768         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
16769
16770 2007-01-03  Miguel de Icaza  <miguel@novell.com>
16771
16772         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
16773         before the memcpy.   Fixes Marshal2 regression.
16774
16775 2007-01-02  Jb Evain  <jbevain@gmail.com>
16776
16777         * blob.h: add a MONO_TYPE_ENUM definition
16778         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
16779         fix the encoding of arrays of enums in custom attributes.
16780
16781         Fixes #79666.
16782
16783 2007-01-01  Miguel de Icaza  <miguel@novell.com>
16784
16785         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
16786         string is null terminated, but only cut the string short if it
16787         overflows the buffer.   
16788         
16789         (mono_string_to_byvalstr): Also fix this routine.   The code here
16790         was not properly terminating a string (it was only terminated
16791         because of the previous catch-all memset). 
16792
16793         I left the memset, because I do not know if applications expect
16794         the runtime to clear this region. 
16795
16796         Fixes #79944.
16797
16798         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
16799         Clear the error before returning to unmanaged code to prevent the
16800         runtime from being confused later on (fixes  80420).
16801         (ves_icall_type_from_name): Always call mono_loader_clear_error
16802         after parsing a type that could have failed.
16803         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
16804
16805         * loader.c (mono_loader_clear_error): Fix indentation.
16806
16807 2006-12-28  Martin Baulig  <martin@ximian.com>
16808
16809         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
16810
16811 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
16812
16813         * reflection.c: patch from Rolf Bjarne Kvinge to fix
16814         getting a token for an EnumBuilder.
16815
16816 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
16817
16818         * reflection.c: be more careful in case resource generation
16819         fails to create the data array.
16820
16821 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
16822
16823         * sgen-gc.c: write barrier for clone and fix unregister handles.
16824
16825 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
16826
16827         * reflection.c: some fixes needed in the generics code for the moving GC.
16828
16829 2006-12-22  Robert Jordan  <robertj@gmx.net>
16830
16831         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
16832         account. Fixes bug #80299.
16833
16834 2006-12-21  Raja R Harinath  <rharinath@novell.com>
16835
16836         Fix WaitHandle usage in delegates.
16837         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
16838         * object.c (mono_wait_handle_new): Use the property set method to
16839         initialize the handle.
16840         (mono_wait_handle_get_handle): New.
16841         * threadpool.c (mono_async_invoke): Use it.
16842         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
16843         Likewise.
16844         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
16845
16846 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
16847
16848         * marshal.c (emit_marshal): Call emit_marshal_variant and
16849         emit_marshal_com_interface when applicable.
16850         (emit_marshal_variant, emit_marshal_com_interface): Add
16851         methods for this case and remove if's from emit_marshal_object.
16852         
16853 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
16854
16855         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
16856
16857 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
16858
16859         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
16860         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
16861         and GlobalFree on Windows. Remove FIXME.
16862
16863 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
16864
16865         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
16866         implementation for managed objects.
16867
16868 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
16869
16870         * object.c: implemented code to be used for checking
16871         that no reference field overlaps with non-references.
16872
16873 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16874
16875         * threadpool.c: fix queue code to be compatible with the
16876         moving GC.
16877
16878 2006-12-18  Miguel de Icaza  <miguel@novell.com>
16879
16880         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
16881         in structures by throwing ArgumentNullException.
16882
16883         (emit_marshal_safehandle): Also when they are null parameters.
16884
16885         (emit_marshal_safehandle): Add support for ref
16886         SafeHandles parameters
16887
16888 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16889
16890         * profiler.c: updated to use the mono-dl API instead of
16891         gmodule.
16892
16893 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16894
16895         * profiler.c: updated to use the mono-dl dynamic loading
16896         API instead of gmodule.
16897
16898 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
16899
16900         * profiler.c: use readlink, older versions of glib don't have
16901         g_file_read_link ().
16902
16903 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16904
16905         * profiler.c: try to detect the path to mono if libc fails to provide
16906         a useful name (bug #80286).
16907
16908 2006-12-16  Raja R Harinath  <rharinath@novell.com>
16909
16910         Fix #80242
16911         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
16912         instance, use the generic type definition instead.
16913         (ves_icall_Type_GetNestedTypes): Likewise.
16914         * class.c (mono_class_create_generic): Always set the
16915         nested_classes of a generic instance to NULL, even if the generic
16916         type definition has nested types.
16917
16918 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
16919
16920         * marshal.c (mono_string_from_bstr): Revert previous Windows change
16921         and fix on Linux.
16922         
16923 2006-12-15  Miguel de Icaza  <miguel@novell.com>
16924
16925         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
16926         my arguments were in the wrong order.   I also fixed the Windows
16927         version which seems to have had the same issue.
16928
16929         (mono_free_bstr): On Unix, this is g_free.
16930         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
16931         conversions (for the tests in corlib to pass).
16932
16933 2006-12-14  Miguel de Icaza  <miguel@novell.com>
16934
16935         * marshal.c (emit_ptr_to_object_conv): For now, ignore
16936         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
16937         exception if a ref SafeHandle in a struct has changed).
16938         
16939         (emit_struct_conv): Do not perform layout checks for classes
16940         derived from SafeHandle, as those are specially handled. 
16941
16942         (emit_object_to_ptr_conv): Add support for
16943         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
16944
16945         (emit_marshal_safehandle): Implement conversion of return values
16946         of safehandles (MARSHAL_ACTION_CONV_RESULT).
16947         
16948         * threads.c: WaitHandle now is compiled with two different handles
16949         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
16950         for 2.0.
16951         
16952         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
16953         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
16954         these routines to cope with both kinds of fields.
16955
16956 2006-12-12  Miguel de Icaza  <miguel@novell.com>
16957
16958         * metadata.c (mono_type_to_unmanaged): Handle the case where
16959         type->data.klass is a SafeHandle, and in that case, return the
16960         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
16961         MONO_MARSHAL_CONV_SAFEHANDLE. 
16962
16963 2006-12-11  Miguel de Icaza  <miguel@novell.com>
16964
16965         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
16966         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
16967         calling emit_marshal_object.
16968
16969         (emit_marshal_safehandle): Implement marshalling of
16970         SafeHandle parameters (no ref support yet).
16971
16972         (MarshalAction): Document the defines as I implement
16973         them for SafeHandle.
16974
16975         (emit_marshal_object): indentation police.
16976
16977         * class-internals.h: Define MonoSafeHandle.
16978         Add safehandle_class to MonoDefaults type.
16979
16980         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
16981         list of classes to check for fields. 
16982
16983         * domain.c (mono_init_internal): Add SafeHandle to the list of
16984         mono_defaults loaded.
16985
16986 2006-12-15  Raja R Harinath  <rharinath@novell.com>
16987
16988         Fix #80253
16989         * reflection.c (mono_reflection_bind_generic_parameters): If the
16990         generic type definition is a type builder, ensure that it is fully
16991         initialized before instantiating it.  Kill some dead code.
16992
16993 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
16994
16995         * object.c: clear the loader_error () before loading
16996         more metadata stuff (bug #80258).
16997
16998 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
16999
17000         * icall.c, icall-defs.h: type modifiers icalls for
17001         parameters and properties.
17002
17003 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
17004
17005         * object.c, icall.c: fixed warnings.
17006
17007 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17008
17009         * marshal.c: fixed a couple of leaks and coding style in a few places.
17010
17011 2006-12-08  Dick Porter  <dick@ximian.com>
17012
17013         * process.c: Cope with NULL ProcessStartInfo arguments on windows
17014         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
17015         80173.
17016
17017 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17018
17019         * process.c: ProcessStartInfo may have only filename set and
17020         arguments can be NULL.
17021
17022 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17023
17024         * icall.c: fix leak found by Robert Jordan.
17025
17026 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17027
17028         * marshal.c, marshal.h: generate managed method to access an element
17029         of a multi-dimensional array.
17030
17031 2006-11-30  Paolo Molaro (lupus@ximian.com)
17032
17033         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
17034
17035 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17036
17037         * icall.c: back out GetFields () fix until the serialization code is
17038         fixed to not depend on the incorrect behaviour.
17039
17040 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17041
17042         * profiler.c: provide defaults if none are set.
17043
17044 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17045
17046         * Makefile.am, attrdefs.h: new public header file with
17047         constants for attributes for use by embedders.
17048
17049 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17050
17051         * icall.c: GetFields () fix for bug #80064.
17052
17053 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
17054
17055         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
17056         removed long unused icalls.
17057
17058 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
17059   
17060         * marshal.c: 
17061                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
17062                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
17063                 can be generated without a delegate class.
17064                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
17065         
17066         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17067
17068 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17069
17070         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
17071         #80069.
17072
17073 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17074
17075         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17076         icall-def.h: added icalls needed by System.GC.
17077
17078 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17079
17080         * loader.c: ensure the class in catch clauses is handled
17081         correctly for generics methods (fixes bug#79980).
17082
17083 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17084
17085         * monitor.h, monitor.c: added mono_locks_dump () function
17086         to help debug deadlocks involving managed locks.
17087
17088 2006-11-13  Dick Porter  <dick@ximian.com>
17089
17090         * file-io.c (get_file_attributes): If the file is a symlink try
17091         and get the stat data for the target, but also add the
17092         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
17093         the specs for the windows symlink support, but will probably have
17094         to be reworked when I have test data from a vista machine.  Fixes
17095         bug 79887.
17096
17097 2006-11-13  Dick Porter  <dick@ximian.com>
17098
17099         * gc.c (mono_domain_finalize): 
17100         * marshal.c (mono_delegate_begin_invoke): 
17101         * threadpool.c (socket_io_init, mono_thread_pool_init)
17102         (mono_thread_pool_finish): 
17103         * monitor.c (mono_monitor_try_enter_internal): 
17104         * threads.c (mono_thread_resume, mono_thread_init)
17105         (mono_thread_suspend_all_other_threads)
17106         (mono_thread_execute_interruption): 
17107         * appdomain.c (mono_domain_unload): Check for NULL error returns
17108         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
17109         75733.
17110
17111 2006-11-11  Miguel de Icaza  <miguel@novell.com>
17112
17113         * process.c
17114         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17115         Only close the handle if the value of the handle is not
17116         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17117         robust.
17118
17119         Improvement for #75733, so that we do not run into this problem. 
17120
17121         
17122         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17123         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17124         internal variables.  Fixes #79462 
17125         
17126
17127 2006-11-09  Dick Porter  <dick@ximian.com>
17128
17129         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17130         Use poll() not select().  Fixes bug 79397.
17131
17132 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17133
17134         Fix #79872
17135         * assembly.c (mono_assembly_load_from_full): Check that the given
17136         image has an assembly manifest.
17137
17138 2006-11-09  Ankit Jain  <jankit@novell.com>
17139
17140         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17141         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17142         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17143
17144 2006-11-07  Dick Porter  <dick@ximian.com>
17145
17146         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17147         Put the old resolver behaviour back for pre-2.0 profiles.
17148
17149 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17150
17151         * threadpool.c: precise GC and locking fixes.
17152
17153 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17154
17155         * class.c: don't load types that have an explicit unaligned
17156         managed reference. Provide better info in the TypeLoad exception.
17157         Part of the fix for bug #79744.
17158         * object.c: use the correct check for class type load issues.
17159
17160 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17161
17162         * class.c: enforce alignment of fields with managed references
17163         even when Pack=1 is forced by the user (bug #77788).
17164
17165 2006-11-03  Dick Porter  <dick@ximian.com>
17166
17167         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17168         If the address reverse lookup fails, return it as the hostname
17169         anyway.  Fixes bug 79721.
17170
17171 2006-11-03  Dick Porter  <dick@ximian.com>
17172
17173         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17174         Fix build on Windows.
17175
17176 2006-11-02  Dick Porter  <dick@ximian.com>
17177
17178         * icall-def.h: 
17179         * object-internals.h: 
17180         * exception.c (mono_get_exception_thread_interrupted): 
17181         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17182         Fixes bug 74525.
17183
17184         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17185         Check for pending Thread.Interrupt.
17186
17187 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17188         * loader.c: Fixed bug 79684.
17189
17190 2006-10-27  Dick Porter  <dick@ximian.com>
17191
17192         * file-io.c (get_file_attributes): Force symlinks to directories
17193         to be returned as a regular file.  Fixes bug 79733.
17194 2006-10-26  Dick Porter  <dick@ximian.com>
17195
17196         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17197         CreateFile to open a directory then we need to set the
17198         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17199
17200 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17201
17202         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17203         friends.
17204
17205 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17206
17207         * sgengc.c: small cleanup of timer code.
17208
17209 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17210
17211         * sgen-gc.c: fix some warnings and start adding support for
17212         complete object removal on domain unload.
17213
17214 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17215
17216         * assembly.c: build_assembly_name should not consider a version
17217         number without build or revision number invalid. Fixes bug #79715.
17218
17219 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17220
17221         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17222         call kernel32 function OutputDebugString directly.
17223         
17224         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17225         
17226 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17227
17228         * reflection.c: small cleanup, using a function to insert a MonoString
17229         in the string heap.
17230
17231 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17232
17233         * reflection.c: moving GC fixes.
17234
17235 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17236
17237         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17238         all the objects with finalizers belonging to an unloading appdomain.
17239
17240 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17241
17242         * sgen-gc.c: added ability to allocate even when the nursery is fully
17243         pinned and fixed a couple of bugs.
17244
17245 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17246
17247         * threads.h: Revert the last change for now.
17248
17249         * threads.h (mono_thread_get_pending_exception): Rename this to
17250         mono_thread_get_undeniable_exception ().
17251
17252 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17253
17254         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17255         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17256         when fname does not refer to valid assembly. This result in a more
17257         meaningful error message.
17258         * exception.c: added mono_get_exception_bad_image_format2 which 
17259         constructs a BadImageFormatException using the ctor taking a custom
17260         message and the file name. Passing in a NULL msg results in a default
17261         message.
17262         * exception.h: define mono_get_exception_bad_image_format2 function.
17263         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17264         when file name pointed to an invalid IL image. Use 
17265         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17266         as this results in a more meaningful error message.
17267
17268 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17269
17270         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17271         #79465.
17272
17273 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17274
17275         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17276         consistency with the other _size functions.
17277         (mono_type_stack_size): Ditto.
17278
17279         * class.c object.c icall.c: Fix warnings caused by the above change.
17280
17281         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17282
17283         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17284
17285         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17286
17287 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17288
17289         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17290         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17291         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17292         threadpool.h, threads-types.h: mark more internal functions.
17293
17294 2006-10-11  Dick Porter  <dick@ximian.com>
17295
17296         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17297         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17298         reproduce the bug even before applying the fix.)
17299
17300 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17301
17302         * reflection.c: allow retrieving attributes for arguments in generic
17303         methods (bug #79241).
17304
17305 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17306
17307         * debug-mono-symfile.c: properly check fopen () result (found by
17308         coverity).
17309
17310 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17311
17312         * reflection.c: make error message clearer and fixed two
17313         issuelets found by Coverity.
17314
17315 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17316
17317         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17318
17319 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17320
17321         * object-internals.h, gc-internal.h, profiler-private.h:
17322         mark internal functions.
17323
17324 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17325
17326         * reflection.c: put data in the text section.
17327         * icall.c: recognize more types in type_from_typename ().
17328         * process.c, marshal.c: added some GC FIXMEs.
17329
17330 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17331
17332         * loader.c: check for NULL before initializing.
17333
17334 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17335
17336         * gc.c (finalizer_thread): Use a non-alertable wait here.
17337
17338         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17339         until the correct solution is found.
17340
17341 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17342
17343         * reflection.c (mono_module_get_object): Avoid an assert when operating on
17344         modules with no metadata. Fixes #79596.
17345
17346         * image.c (load_metadata_ptrs): Put back the error message when
17347         the #- heap is encountered since the support is not complete yet.
17348
17349 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17350
17351         * gc.c: do not allow the user to SuppressFinalize () a
17352         delegate because it would leak the trampoline if present.
17353
17354 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17355
17356         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
17357         PropertyPtr table.
17358
17359 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
17360
17361         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
17362
17363         * metadata.c (mono_metadata_get_param_attrs): Ditto.
17364
17365         * row-indexes.h: Add definitions for *Ptr tables.
17366
17367         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
17368
17369         * metadata.c (mono_metadata_translate_token_index): New helper function to
17370         translate table indexes used in uncompressed metadata.
17371         (mono_metadata_decode_table_row): Ditto.
17372         (mono_metadata_decode_table_row_col): Ditto.
17373
17374         * metadata.c: Add table schema for *Ptr tables.
17375
17376         * class.c loader.c: Use the new helper function to access the affected metadata
17377         tables.
17378         
17379         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
17380         #38532.
17381         
17382 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
17383
17384         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
17385         sequences which can be unbounded in size. Fixes #79583.
17386
17387 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
17388
17389         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
17390         static initialization.
17391
17392         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
17393
17394         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
17395
17396         * domain.c (mono_domain_free): Free up type_init_exception_hash.
17397
17398         * object.c (mono_runtime_class_init): Implement correct semantics when a static
17399         ctor fails, i.e. throw the same exception on subsequent accesses.
17400         
17401 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
17402
17403         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
17404         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
17405         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
17406         Handle marshalling of interfaces and VARIANTs contained in structs.
17407         
17408         Code is contributed under MIT/X11 license.
17409         
17410 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
17411
17412         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
17413         
17414         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
17415         mempool.
17416
17417 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17418
17419         * console-io.c: ignore previous SIGINT handler.
17420
17421 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
17422
17423         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
17424         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
17425         #79460, #79461, #79485.
17426
17427         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
17428
17429         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
17430         #79217.
17431
17432 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
17433
17434         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
17435         could be generated from it.
17436
17437 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
17438
17439         * rand.c: fix read loop to correctly handle EINTR.
17440
17441 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17442
17443         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
17444         internal calls are defined to keep methods closer to the declaring
17445         type and allow a significant reduction in runtime relocations and
17446         memory usage.
17447
17448 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
17449
17450         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
17451         exception message to have FileNotFoundException use the default
17452         assembly load error message. Fixes bug #79426.
17453         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
17454
17455 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17456
17457         * threadpool.c: (start_thread_or_queue) use the root domain when
17458         creating the thread instead of the async object one.
17459
17460 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
17461
17462         * class.c, object.c, class-internals.h, reflection.c:
17463         for arrays, store element_size inside MonoClass (speedup
17464         for array object creation).
17465
17466 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
17467
17468         * icall.c: fixed CodeBase to use the file name and not the module
17469         name (bug #79365).
17470
17471 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17472
17473         * mono-debug.c, mono-debug.h: export find_method as
17474         mono_debug_find_method ().
17475
17476 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17477
17478         * debug-helpers.c, class-internals.h: added a few functions useful
17479         when debugging under gdb.
17480
17481 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17482
17483         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
17484         characters that need special handling.
17485
17486 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
17487
17488         * mono-config.c: make the os/cpu specification more flexible,
17489         allowing lists and negation.
17490
17491 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
17492
17493         * marshal.c: COM Interop fixes. Handle case where method->klass.
17494         is interface. Handle BSTR/MonoString when null. Use CDECL as 
17495         calling convention on non-windows platforms. This is for
17496         compatibility with XPCOM and MainWin COM.
17497         
17498         Code is contributed under MIT/X11 license.
17499         
17500
17501 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
17502
17503         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
17504         correctly. Fixes #79217.
17505
17506         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
17507
17508 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
17509
17510         * mono-config.c: allow both an os and cpu attribute for dllmap
17511         and dllentry elemnets to enable a single config file to be used
17512         for multiple architectures.
17513
17514 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
17515
17516         * loader.c: MonoLoaderError was cleared too soon on load failure.
17517         Fixes bug #79424.
17518
17519 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
17520
17521         * icall.c: use the defining class vtable when accessing a
17522         static field, not a pobblibly derived class.
17523
17524 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
17525
17526         * icall.c string-icalls.c: Remove references to unicode.h.
17527
17528         * unicode.h unicode.c Makefile.am: Remove these unused source files.
17529
17530         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
17531
17532         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
17533         indicating the image where custom marshaller types should be looked up.
17534         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
17535         custom marshallers, instead of corlib. Fixes #79425.
17536
17537 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
17538
17539         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
17540
17541 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
17542
17543         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
17544         Implement Environment.ProcessorCount.
17545         
17546         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
17547         Implement Environment.ProcessorCount.
17548         
17549         * icall.c: 
17550         Add Environment.ProcessorCount icall.
17551         
17552         Patch by Jason McFall.
17553
17554 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17555
17556         * assembly.c: don't append .exe/.dll when the filename already contains
17557         one of those extensions.
17558
17559 2006-09-12  Martin Baulig  <martin@ximian.com>
17560
17561         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
17562         to array interfaces.
17563
17564 2006-09-11  Martin Baulig  <martin@ximian.com>
17565
17566         * reflection.c (mono_image_build_metadata): Create the
17567         MethodImpl's after emitting all types and methods, so we don't
17568         need another fixup pass for them.
17569
17570 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
17571
17572         * class.c (mono_class_from_name_case): Fix regression introduced by the last
17573         change.
17574
17575 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
17576
17577         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
17578         unload.
17579
17580 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
17581
17582         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
17583         args is not set. Fixes #78926.
17584
17585 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
17586
17587         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
17588
17589         * image.c (load_class_names): Move this to class.c, and rename it to 
17590         'mono_image_init_name_cache'.
17591         (load_modules): Fix a warning.
17592
17593         * class.c icall.c image.c: Initialize image->name_cache lazily.
17594
17595         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
17596         on its name using information in the AOT file.
17597
17598         * class.c (mono_class_from_name): Use the new hook function.
17599
17600 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
17601
17602         * reflection.c (mono_param_get_objects): Handle enum default parameter values
17603         correctly.
17604
17605         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
17606         Fixes #79289.
17607         
17608 2006-09-06  Martin Baulig  <martin@ximian.com>
17609
17610         * icall.c (mono_lookup_internal_call): Small fix.
17611
17612 2006-09-05  Raja R Harinath  <rharinath@novell.com>
17613
17614         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
17615         double g_free.
17616
17617 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
17618
17619         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
17620         when --debug is specified.
17621
17622 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
17623
17624         * class.c (setup_generic_array_ifaces): Fix a warning.
17625
17626 2006-09-04  Miguel de Icaza  <miguel@novell.com>
17627
17628         * Temporarily remove the patch to assemly.c that checks the
17629         assembly versions as it breaks our gacutil.
17630
17631 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
17632
17633         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
17634
17635         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
17636         a net 1.0 runtime.
17637
17638         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
17639         created using the default ctor. Fixes #79152.
17640         (mono_string_builder_to_utf16): Ditto.
17641
17642 2006-09-01  Martin Baulig  <martin@ximian.com>
17643
17644         Fix handling of the generic array interfaces.
17645
17646         * class-internals.h
17647         (MonoDefaults): Removed `generic_array_class' and added
17648         `generic_ilist' class.
17649
17650         * class.c
17651         (mono_bounded_array_class_get): Add the new generic array interfaces.
17652         (setup_generic_array_ifaces): New static method; create vtable
17653         entries for each method in the generic array interfaces.
17654
17655         * metadata.c
17656         (select_container): Allow "parent-less" generic methods.
17657
17658         * marshal.c
17659         (mono_marshal_get_generic_array_helper): New public method.
17660
17661         * icall.c
17662         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
17663         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
17664         moved the interncall into System.Array.
17665
17666 2006-09-01  Raja R Harinath  <rharinath@novell.com>
17667
17668         A few more cases of avoiding work on types with ->byref set.
17669         Has the real fix for #79238
17670         * icall.c (is_generic_parameter): New helper.
17671         (ves_icall_Type_GetGenericParameterPosition): Use it.
17672         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
17673         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
17674         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17675         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
17676         reference types.
17677         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
17678         reference types.
17679         (ves_icall_Type_get_IsGenericInstance): Likewise.
17680         (ves_icall_Type_get_IsGenericType): Likewise.
17681
17682 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
17683
17684         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
17685         class if possible.
17686
17687         * mempool.h (mono_mempool_get_allocated): New helper function.
17688
17689         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
17690         change.
17691
17692         * mempool.c: Fix warnings and the calculation of stats.
17693
17694         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
17695
17696         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
17697
17698         * loader.c (mono_get_method_from_token): Update method_count stat.
17699
17700         * class-internals.h (MonoStats): Add some stats.
17701
17702 2006-08-31 Robert Jordan  <robertj@gmx.net>
17703
17704         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
17705         with managed variants.
17706         All code is contributed under the MIT/X11 license.
17707         
17708 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
17709
17710         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
17711         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
17712
17713         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
17714
17715         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
17716         with cycles in classes.
17717
17718         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
17719
17720         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
17721         missing a [MarshalAs] directive. Fixes #79203.
17722
17723         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
17724         klass->marshal_info. Fixes #79217.
17725
17726 2006-08-30  Martin Baulig  <martin@ximian.com>
17727
17728         Committing a patch from Joachim Ante <joe@otee.dk>:
17729         Add support for binary data symbol stores.
17730
17731         * debug-mono-symfile.c
17732         (mono_debug_open_mono_symbol_file): Renamed into
17733         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
17734         arguments.
17735
17736         * mono-debug.c
17737         (mono_debug_open_image): Added `raw_contents' and `size' args.
17738         (mono_debug_init_2_memory): New public function.
17739
17740 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
17741
17742         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
17743
17744 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17745
17746         * appdomain.c: implement support for ShadowCopyFiles.
17747
17748 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
17749
17750         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
17751         when value is NULL (and should remove CID #51).
17752
17753 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17754
17755         * image.c: moved 2 functions to ../utils.
17756
17757 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
17758
17759         * gc.c: cope with the target object of a GC handle being NULL
17760         (bug #78877).
17761
17762 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
17763
17764         * class.c: recursively check parent's explicit implementations
17765         of interface methods (fixes bug #79125).
17766
17767 2006-08-19  Miguel de Icaza  <miguel@novell.com>
17768
17769         * filewatcher.c: Avoid warnings when building, do not redefine
17770         constants that are defined.
17771
17772         Remove warnings.
17773
17774 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17775
17776         * image.c: don't fail when the link points to an absolute path.
17777
17778 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
17779
17780         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
17781         Fix CID #3.
17782
17783 2006-08-17  Miguel de Icaza  <miguel@novell.com>
17784
17785         * image.c (full_path): A new method used to obtain the actual path
17786         of an assembly even in the presence of symbolic links.  
17787
17788         This is necessary for the case where we are running a binary that
17789         has been GACed, but we are using the "published" path name
17790         ($prefix/mono/1.0/blah.exe) which happens to point to the real
17791         file in the GAC.
17792
17793         This was the source of the failure for the `xsp' command with the
17794         recent AppDomain changes, as far as the runtime was concerned,
17795         there were two different assemblies: $prefix/mono/1.0/blah.exe and
17796         $prefix/mono/gac/blah/version/blah.exe.
17797
17798         (do_mono_image_open): use full path
17799
17800 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17801
17802         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
17803
17804 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
17805
17806         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
17807         domain_id is supplied. Fix CID #241 and corlib's unit tests.
17808
17809 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17810
17811         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
17812         small structures. Fixes #78990.
17813
17814 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17815
17816         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
17817
17818         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
17819
17820 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17821
17822         * appdomain.c:
17823         * marshal.c: don't load all the assemblies from a domain into newly
17824         created ones. The new domains might have different rules and load
17825         assemblies from different locations. Fixes bug #76757.
17826
17827         Patch by Lluis. Conflicts resolved by Brian Crowell.
17828
17829 2006-08-16  Alp Toker  <alp@atoker.com>
17830
17831         * socket-io.c: First half of the fix for #79084.
17832         Set sa_size to the length of the content, not that of the struct.
17833         Don't add NULL suffix to the content, this should be done in
17834         managed code if needed.
17835
17836 2006-08-14  Raja R Harinath  <rharinath@novell.com>
17837
17838         Fix part of #79012
17839         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
17840         mono_metadata_parse_type returns NULL.
17841
17842 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
17843
17844         * normalization-tables.h : new file for string normalization data.
17845         * locales.c, locales.h, icall.c :
17846           added load_normalization_resource() for string normalization,
17847           and icall as well.
17848         * Makefile.am : added normalization-tables.h to the sources.
17849
17850 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
17851
17852         * marshal.c: Add more helper functions to reduce code duplication and use them
17853         everywhere.
17854
17855 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
17856
17857         * marshal.c: Fix non-x86 stdcall warnings.
17858         
17859         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
17860         them everywhere.
17861
17862 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
17863
17864         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
17865         type check on multi-dimensional arrays. Fixes #79000.
17866
17867 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
17868
17869         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
17870         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
17871         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
17872         * class-internals.h: add is_com_object to class structure.
17873         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
17874         null checks to COM object marshalling. Fix .ctor call on RCW.
17875         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
17876         
17877         All code is contributed under the MIT/X11 license.
17878
17879 2006-08-09  Dick Porter  <dick@ximian.com>
17880
17881         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
17882         racing mono_monitor_allocator_lock() somewhere, so don't delete
17883         the critical section for now.  Found by running and exiting
17884         monodevelop.
17885
17886 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
17887
17888         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
17889         (ves_icall_System_ComObject_FindInterface): Ditto.
17890         (ves_icall_System_ComObject_CacheInterface): Ditto.
17891
17892         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
17893         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
17894
17895 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17896
17897         * threadpool.c: treat pipes from process asynchronous reads as sockets
17898         when reading from them, so we get select/poll or epoll to wait for
17899         data.
17900
17901 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
17902
17903         * loader.c: Fix a typo (CID #233) in the null check.
17904
17905 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
17906
17907         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
17908         Hopefully fixes #78949.
17909         
17910         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
17911         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
17912         bytes. Fixes #78972.
17913
17914 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17915
17916         * filewatcher.c: we need to set errno here.
17917
17918 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17919
17920         * filewatcher.c: let Win32Exception get the error value.
17921
17922 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17923
17924         * filewatcher.c: translate errno into win32 errors for Win32Exception
17925         to know what happened.
17926
17927 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
17928
17929         * threadpool.c: Fix more warnings.
17930
17931         * assembly.c (search_loaded): Fix warnings.
17932
17933         * threadpool.c (mono_thread_pool_finish): Fix warnings.
17934         (mono_async_invoke): Ditto.
17935
17936 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
17937
17938         * object.c (mono_remote_class_vtable): Need to create proxy vtable
17939         entries for __ComObject type in addition to ComImport types.
17940         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
17941         about hash table.
17942         
17943         All code is contributed under the MIT/X11 license.
17944
17945 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17946
17947         * image.c: avoid tentative loading of modulerefs that contain
17948         no metadata (P/Invoke library names).
17949
17950 2006-07-28  Dick Porter  <dick@ximian.com>
17951
17952         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
17953         mono_loader_lock() somewhere, so don't delete the critical section
17954         for now.  Found by running and exiting monodevelop.
17955
17956 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17957
17958         * filewatcher.c: define the inotify syscalls when we're building on
17959         linux and have sys/syscall.h. The build system might not have support
17960         for inotify but the target system might have it.
17961
17962 2006-07-26  Miguel de Icaza  <miguel@novell.com>
17963
17964         * domain.c: Documentation updates.
17965
17966         * loader.c (mono_free_method): Do not release the method
17967         information if we are being profiled, as profilers will use this
17968         information at shut down to present some data to the user.
17969
17970         This is needed so that the profiler does not crash, as the
17971         profiler tends to keep MonoMethods around, and they might become
17972         invalid if we free these.
17973
17974         (mono_get_method_constrained): Return the original CIL stream
17975         method as well, so verification can be performed against it.
17976
17977 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17978
17979         * filewatcher.[ch]: support for inotify file system watcher.
17980         * icall.c: add new internal calls for the inotify file system watcher.
17981
17982 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17983
17984         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
17985         #78888.
17986
17987 2006-07-20  Dick Porter  <dick@ximian.com>
17988
17989         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
17990         warning.
17991
17992 2006-07-20  Dick Porter  <dick@ximian.com>
17993
17994         * threads.c (start_wrapper): Do the thread cleanup while we still
17995         hold a reference to its object.  Fixes bug 78123.
17996
17997 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
17998
17999         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
18000         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
18001           "managed-to-managed".
18002         * icall.c: Redirect string constructors that take sbyte* to
18003           ves_icall_System_String_ctor_RedirectToCreateString.
18004         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
18005           to CreateString () methods with matching signature.
18006         * reflection.c: Use original security informations for
18007           MONO_WRAPPER_MANAGED_TO_MANAGED.
18008         * security-manager.c: Use original security informations for
18009           MONO_WRAPPER_MANAGED_TO_MANAGED.
18010         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
18011           that is a placeholder and only its address should be used.
18012         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
18013           that is a placeholder and only its address should be used.
18014
18015 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
18016
18017         Begin implementing COM Interop.
18018         * appdomain.c: Increment corlib version.
18019         * class.c: Set ComImport classes' parent to __ComObject.
18020         * loader.c: Mark cominterop methods as such.
18021         * domain.c: Add __ComObject class to MonoDefaults structure.
18022         * image.c: Add 2 hashtables to the image for COM Interop related methods
18023         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
18024         using the mempool allocator
18025         
18026         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
18027         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
18028         declaration for mono_metadata_type_dup_mp.
18029         
18030         * debug-helpers.c: Added strings for two additional wrapper types
18031         * object.c: Create proxy objects for ComImport classes
18032         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
18033         and added __ComObject class to MonoDefaults structure.
18034         
18035         * object-internals.h: Finish MonoRealProxy definition, and add definition of
18036         MonoComInteropProxy and MonoComObject.
18037         
18038         * marshal.c: Added support for COM Interop
18039         (signature_cominterop): Converts managed signature to corresponding
18040         unmanaged COM signature.
18041         (cominterop_get_function_pointer): gets unmanaged function pointer via
18042         COM object vtable
18043         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
18044         (cominterop_get_method_interface): returns interface type that method is defined on
18045         (mono_mb_emit_cominterop_call): emits native call to function pointer
18046         gotten from vtable
18047         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
18048         that matches signature of unmanaged function.
18049         (cominterop_get_native_wrapper): wrapper around adjusted method call.
18050         (cominterop_get_invoke): forwards call from proxy to __ComObject
18051         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
18052         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
18053         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
18054         
18055         * marshal.h: Added Marshal icall declarations.
18056         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
18057         so we can access them in finalizer
18058         
18059 2006-07-14  Dick Porter  <dick@ximian.com>
18060
18061         * object.c (mono_type_initialization_cleanup): Fix a race
18062         condition by temporarily commenting out the critical section
18063         deletion.
18064
18065 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
18066
18067         * reflection.c (create_custom_attr): Fix some warnings.
18068         (create_custom_attr_data): Ditto.
18069         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
18070         types. Fixes #78855.
18071
18072 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
18073
18074         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18075
18076         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18077
18078 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
18079
18080         * reflection.c (resolve_object): Add support for DynamicMethod.
18081
18082         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18083         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18084
18085 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
18086
18087         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
18088         don't leak GPtrArray's pdata has we have no use (nor free) for it.
18089
18090 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
18091
18092         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18093         Fixes #77888.
18094
18095 2006-06-30  Raja R Harinath  <rharinath@novell.com>
18096
18097         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18098         slightly: remove a shadow local variable.
18099
18100 2006-06-29  Raja R Harinath  <rharinath@novell.com>
18101
18102         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18103         definition that introduces the virtual function slot.
18104         Also fix Coverity #105.
18105
18106 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
18107
18108         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18109         for dynamic assemblies. Fixes #78724.
18110
18111 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
18112
18113         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18114         Fixes #78722.
18115
18116 2006-06-21  Martin Baulig  <martin@ximian.com>
18117
18118         * reflection.c
18119         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18120         fixes #76484.
18121
18122 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18123
18124         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18125
18126 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18127
18128         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18129         nor TYPEREFs.
18130         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18131         Inflate result if necessary.
18132         (mono_class_get_full): Remove old version.  Rename from
18133         'mono_class_get' and add 'context' argument.  Pass it to
18134         ..._create_from_typespec.
18135         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18136         (mono_ldtoken): Revert change below.
18137
18138 2006-06-20  Martin Baulig  <martin@ximian.com>
18139
18140         * class.c (mono_ldtoken): Don't pass the generic context to
18141         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18142
18143 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18144
18145         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18146         and later freeing it. Fixes #78638.
18147
18148 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18149
18150         * icall.c (mono_class_get_throw): Revert over-zealous error
18151         throwing, the caller for mono_class_get_throw will cope with
18152         errors when classes are not properly initialized already.
18153
18154         The code still copes with loader exceptions though.
18155
18156         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18157         
18158 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18159
18160         Fixes the `make run1' version of RuntimeAbort (to be commited,
18161         source is in Bugzilla).
18162         
18163         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18164         FALSE on class loading failure instead of returning true.
18165
18166         * class.c (mono_class_create_from_typedef): It is possible for
18167         mono_metadata_interfaces_from_typedef_full to fail if a class is
18168         not found, cope with this.
18169         
18170
18171 2006-06-14  Dick Porter  <dick@ximian.com>
18172
18173         * socket-io.c: 
18174         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18175         4.1.1
18176
18177 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18178
18179         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18180
18181 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18182
18183         * icall.c: Another fix for building mono in Visual Studio.
18184
18185 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18186
18187         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18188         
18189 2006-06-09  Martin Baulig  <martin@ximian.com>
18190
18191         * debug-mono-symfile.c: Put this back and really fix it this
18192         time. Sorry for all the trouble.
18193
18194 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18195
18196         * icall.c (mono_class_get_throw): Fix a warning.
18197         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18198         ReflectionTypeLoadException if needed. Fixes #78606.
18199
18200         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18201         (mono_class_init): Ditto.
18202
18203         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18204         ref_only exceptions.
18205         (mono_loader_clear_error): Make this work even if there is no error.
18206
18207 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18208
18209         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18210         Marshal.GetComSlotForMethodInfo using internal call.
18211
18212 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18213
18214         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18215         a function for signalling it.
18216
18217         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18218         a referenced assembly is not found.
18219
18220         * loader.c (mono_loader_error_prepare_exception): Add support for 
18221         LOADER_ERROR_ASSEMBLY. Fix formatting.
18222
18223 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18224
18225         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18226         for VARIANT marshalling on windows and increment corlib version
18227         since Variant struct was added.
18228
18229 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18230
18231         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18232         stack trace line information:
18233
18234         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18235         (Martin) when looking up B which is between A and C, return A not C.
18236
18237         Bug is #78573.
18238
18239         Thanks to Alexander Olk for tracking this down.
18240
18241 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18242
18243         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18244         
18245         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18246         avoid clobbering its value.
18247         (mono_string_to_lpstr): Fix a warning on windows.
18248
18249 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18250
18251         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18252
18253         * reflection.c loader.c: Removed references to 'dummy' flag.
18254
18255         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18256
18257         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18258         it gets GC tracking.
18259
18260         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18261         GC tracking.
18262         
18263         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18264
18265         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18266
18267         * appdomain.c: Bump corlib version.
18268
18269 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18270
18271         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18272         CEE_STIND_REF when working with object references.
18273
18274 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18275
18276         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18277         Fixes #78539.
18278
18279 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18280
18281         * loader.c (method_from_memberref): Fix argument value for
18282         mono_loader_set_error_method_load (I was passing the MonoClass
18283         instead of the class name char *).
18284
18285 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18286
18287         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18288         CEE_STIND_REF when working with object references.
18289
18290 2006-05-30  Martin Baulig  <martin@ximian.com>
18291
18292         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18293         mono_method_full_name() change and replace the ':' with a '.'
18294         here.
18295
18296 2006-05-30  Martin Baulig  <martin@ximian.com>
18297
18298         * debug-mono-symfile.c
18299         (mono_debug_symfile_lookup_location): Fix the algorithm:
18300         when looking up B which is between A and C, return A not C.
18301
18302 2006-05-29  Martin Baulig  <martin@ximian.com>
18303
18304         * mono-debug.h
18305         (MonoDebugMethodInfo): Make the typedef public.
18306         (MonoDebugSourceLocation): New public struct.
18307
18308         * mono-debug.c
18309         (mono_debug_source_location_from_address): Removed.
18310         (mono_debug_source_location_from_il_offset): Removed.
18311         (mono_debug_il_offset_from_address): Removed.
18312         (mono_debug_address_from_il_offset): Removed.
18313         (mono_debug_lookup_method): New public function.
18314         (mono_debug_lookup_source_location): New public function; replaces
18315         the old mono_debug_source_location_from_*() functions; see the
18316         inline documentation.
18317         (mono_debug_free_source_location): New public function.
18318         (mono_debug_print_stack_frame): New public function; see the
18319         inline documentation.
18320
18321         * debug-mono-symfile.c
18322         (mono_debug_find_source_location): Renamed into
18323         mono_debug_symfile_lookup_location(); only take a
18324         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18325         documentation.
18326         (mono_debug_find_method): Renamed into
18327         mono_debug_symfile_lookup_method().
18328
18329 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18330
18331         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18332         returned by mono_image_open_full ().
18333
18334         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18335         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18336         #78517.
18337
18338         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18339         #78518.
18340
18341 2006-05-27  Miguel de Icaza  <miguel@novell.com>
18342
18343         * class.c (mono_class_from_typeref): handle missing images
18344         earlier, deals with bug #78418.   Refactor code; 
18345
18346         Fix a warning introduced in my previous commit (some stale code
18347         from before I revisited my patch).
18348
18349         * class.c (mono_class_create_from_typedef): On failure, remove the
18350         class from the MonoImage->class_cache as the class is not
18351         initialized;   Fixes the leak pointed out by Paolo.
18352
18353 2006-05-25  Dick Porter  <dick@ximian.com>
18354
18355         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
18356         DeleteCriticalSections until I figure out which one may still be
18357         sometimes locked when mono_thread_cleanup is called.
18358
18359 2006-05-24  Dick Porter  <dick@ximian.com>
18360
18361         * threads.c (mono_thread_cleanup): Move the threading cleanup out
18362         of mono_thread_manage and back into its own function, so it can be
18363         called after the finalizer thread has finished.
18364
18365         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
18366
18367 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
18368
18369         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
18370         Fixes #78495.
18371
18372         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
18373         with non-blittable elements.
18374         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
18375
18376 2006-05-24  Martin Baulig  <martin@ximian.com>
18377
18378         * mono-debug-debugger.h (MonoDebuggerEvent): Added
18379         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
18380
18381         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
18382         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
18383         `mono_debugger_event_handler' to NULL.
18384
18385 2006-05-24  Martin Baulig  <martin@ximian.com>
18386
18387         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
18388
18389 2006-05-24  Martin Baulig  <martin@ximian.com>
18390
18391         * mono-debug-debugger.h
18392         (mono_debugger_create_notification_function): Added
18393         `MonoCodeManager *' argument.
18394
18395 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
18396
18397         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
18398
18399 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
18400
18401         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
18402         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
18403         implementation.
18404
18405 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
18406
18407         * icall.c: precise GC support: objects can't be stored in unmanaged
18408         memory anymore, even if they are kept alive by other references: since
18409         they can move the GC needs to be able to always find them.
18410
18411 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18412
18413         * object.c: precise GC support for static fields. Support
18414         for moving GCs: write barriers and pinned allocation for interned
18415         strings.
18416
18417 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18418
18419         * domain.c, domain-internals.h: precise GC support for the MonoDomain
18420         structure.
18421
18422 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18423
18424         * class.c, gc.c: sgen and precise GC updates.
18425
18426 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
18427
18428         * marshal.h, marshal.c: added write barrier wrapper and precise type
18429         fixes.
18430
18431 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
18432
18433         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
18434         support.
18435
18436 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
18437
18438         * reflection.c: precise and sgen GC updates.
18439
18440 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
18441
18442         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
18443
18444 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
18445
18446         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
18447
18448 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
18449
18450         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
18451         MONO_TYPE_OBJECT. Fixes #78462.
18452
18453 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
18454
18455         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
18456         and blittable types.
18457
18458 2006-05-17  Miguel de Icaza  <miguel@novell.com>
18459
18460         * class.c (mono_class_get_exception_for_failure): Implement parts
18461         of a TODO: if the loader error is set (instead of the class
18462         error), we return a Loader exception that can be properly thrown
18463         elsewhere.
18464
18465         This was exposed by some Winforms 2.0 code that I tried to run
18466         (Atsushi pointed me to it).
18467
18468 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
18469
18470         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
18471         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
18472         
18473         * marshal.c (emit_marshal_vtype): Add limited support for 
18474         UnmanagedType.LPStruct. Fixes #78427.
18475
18476         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
18477         Applied a patch from kangaroo to fix #77523.
18478
18479 2006-05-17  Martin Baulig  <martin@ximian.com>
18480
18481         * threads.c
18482         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
18483         (debugger_thread_created): Removed.
18484         (debugger_thread_exited): Removed.
18485
18486 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
18487
18488         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18489
18490         * object-internals.h (MonoReflectionResource): Sync with managed version.
18491
18492 2006-05-12  Wade Berrier <wberrier@novell.com>
18493
18494         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
18495
18496 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
18497
18498         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
18499         functions try to allocate from the image mempool.
18500
18501 2006-05-12  Dick Porter  <dick@ximian.com>
18502
18503         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
18504
18505 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
18506
18507         * object.c: The FieldGetter and FieldSetter methods require the full
18508         name of the class, not only the name. Fixes bug #78277.
18509
18510 2006-05-11  Miguel de Icaza  <miguel@novell.com>
18511
18512         * loader.c (method_from_memberref): Do not pass the NULL klass to
18513         mono_loader_set_error_() methods.  Pass the non-NULL value
18514         (class). 
18515
18516 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
18517
18518         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
18519         (mono_assembly_close): Null out assembly->image->references after freeing it.
18520
18521         * image.c (mono_image_close): Free image->references.
18522         
18523         * reflection.c (mono_image_basic_init): Fix a small memory leak.
18524
18525 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18526
18527         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
18528         before checking if it's NULL (g_assert).
18529
18530 2006-05-10  Martin Baulig  <martin@ximian.com>
18531
18532         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
18533         I thought I already killed that two months ago, but now it somehow reappeared.
18534
18535 2006-05-10  Martin Baulig  <martin@ximian.com>
18536
18537         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
18538
18539 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
18540
18541         * reflection.c: Allocate memory for dynamically created methods in the image
18542         mempools.
18543
18544 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18545
18546         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
18547         don't use the ad pointer before checking if it's NULL (g_assert).
18548
18549 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
18550
18551         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
18552         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
18553
18554         * marshal.c: Allocate all signatures from mempools.
18555
18556         * marshal.c: Allocate some more signatures from mempools.
18557
18558 2006-05-09  Miguel de Icaza  <miguel@novell.com>
18559
18560         * object.c (mono_load_remote_field): The code used to provide a
18561         temporary variable for returning results if the user did not
18562         provide a result pointer.  But our temporary variable was allocted
18563         on the satck.
18564
18565         Fix calling code to always pass a result area.   Coverity ID 103.
18566
18567 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
18568
18569         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
18570         value, not the old. Fixes #78312.
18571         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
18572
18573         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
18574         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
18575         per-image cache.
18576
18577         * assembly.c (mono_assembly_close): Free image->references.
18578
18579         * assembly.c (mono_assembly_names_equal): Fix a warning.
18580         (mono_assemblies_cleanup): Cleanup more global data.
18581
18582         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
18583
18584         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
18585         ptr_cache and image->modules.
18586
18587         * image.c (mono_image_init): Allocate array_cache lazily.
18588         
18589 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18590
18591         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
18592         behavior was changed recently and has bad side effects.
18593
18594 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
18595
18596         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
18597         
18598         * assembly.c (mono_assembly_close): Remove a debug printf.
18599
18600         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
18601
18602         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
18603         to also allow for temporary references between mono_image_open ()/close ().
18604
18605         * domain.c (get_runtimes_from_exe): Add a FIXME.        
18606
18607 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
18608
18609         * marshal.c: Fix support for dynamic methods.
18610
18611         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
18612
18613         * marshal.c (mono_marshal_cleanup): New cleanup function.
18614
18615         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
18616         image mempools.
18617
18618         * class.c (mono_class_init): Fix leaking class->nested_classes.
18619
18620         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
18621
18622         * image.c (mono_image_init): Initialize the new cashes.
18623
18624         * image.c (mono_image_close): Destroy the new cashes.
18625
18626         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
18627
18628         * mempool.c (mono_mempool_strdup): New helper function.
18629
18630         * class-internals.h: Add prototype for mono_loader_unlock ().
18631
18632         * domain.c (mono_jit_info_table_find): Fix a warning.
18633         (mono_debugger_check_runtime_version): Ditto.
18634
18635         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
18636         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
18637         functions to these modules.
18638
18639         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
18640         metadata modules.
18641         
18642         * marshal.c (mono_free_bstr): Fix a warning.
18643
18644         * assembly.c (mono_assembly_open_full): Fix another small leak.
18645
18646         * object.c: Fix some unload leaks in the remoting code.
18647
18648         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
18649         function.
18650
18651         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
18652
18653         * reflection.c: Fix some unload leaks in dynamic assemblies.
18654
18655 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
18656
18657         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
18658         * marshal.h: Add BSTR support on Win32
18659         * icall.c: Add BSTR icalls
18660         * metadata.h: Add BSTR enums
18661
18662 2006-04-28  Miguel de Icaza  <miguel@novell.com>
18663
18664         Work to catch the crash from #76795 and turn it into an
18665         exception.   As I stubbed out pieces of the VisualBasic support,
18666         I found a number of places where the code was failing and I added
18667         checks to those places. 
18668         
18669         * metadata.c (do_mono_metadata_parse_generic_class): Make this
18670         function return a status code.  If we fail to parse the signature
18671         from mono_metadata_parse_generic_inst, return FALSE.
18672
18673         * loader.c (mono_get_method_from_token): If we fail to load the
18674         method (mono_class_get) return NULL.   
18675
18676         * (method_from_memberref): Return NULL if we are unable to parse
18677         the method signature
18678
18679         (mono_loader_error_prepare_exception): Since we now use the
18680         loader_error flag internally to stop processing, and obtaining
18681         exceptions that might be thrown will walk this code path the
18682         proper way of going from a MonoLoaderError into a
18683         MonoException was convoluted.   This new routine encapsulates the
18684         process of turning the error into an exception and *clearing* the
18685         error afterwards.
18686         
18687 2006-04-27  Miguel de Icaza  <miguel@novell.com>
18688
18689         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
18690         with missing assemblies), and to cope with:
18691
18692                 * Missing fieldref from a non-existing assembly.
18693                 * Missing methodref from a non-existing assembly.
18694
18695         The first batch of work to address *some* of the issues from 76661.
18696         
18697         * object.c (mono_class_create_runtime_vtable): If we fail to
18698         initialize the class raise the exception here. 
18699
18700         * metadata.c (mono_class_get_overrides_full): If any methods fail
18701         to load return the failure to the caller.
18702
18703         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
18704         flagging assemblies that failed to load.   
18705
18706         Do not crash if we are unable to load the assembly.
18707
18708         (mono_assembly_close): Do nothing with REFERENCE_MISSING
18709         assemblies. 
18710
18711         * loader.c (mono_loader_set_error_type_load): Change the
18712         convention to always pass unallocated strings, so we make our own
18713         copies (I know our own code had duplicated strings before, but
18714         this keeps the normal conventions).
18715         (method_from_memberref): Call mono_loader_set_error_method_load
18716         for all possible failures of loading the class. 
18717         Remove assert, turn into a loader error.
18718
18719         (mono_loader_error_to_exception): Move this routine from mini
18720         (mini_loader_error_to_exception) there was no need to have that in
18721         mini. 
18722
18723         * class.c (mono_class_from_typeref): If we were not able to load
18724         the assembly with mono_assembly_load_reference, call the
18725         mono_loader_set_error_type_load to register the problem.
18726
18727         (mono_class_setup_fields): If we fail to load the type from
18728         mono_metadata_parse_type_full, call mono_class_set_failure and
18729         break from the loop.
18730
18731         If class->exception_type is set, we do not layout the fields as
18732         that might crash the runtime, and instead return (from breaking
18733         from the previous loop).
18734
18735         (mono_class_setup_vtable): This now returns a boolean indicating
18736         whether the table was properly setup.   The decision is driven by
18737         mono_class_get_overrides_full which might run into non-existing
18738         methods. 
18739         
18740         (mono_class_init): Returns TRUE on success or FALSE if there was a
18741         problem in loading the type (incorrect assemblies, missing
18742         assemblies, methods, etc).
18743
18744         When we call mono_class_setup_fields we also check for a potential
18745         error inside this call (either a class exception or a general
18746         loader exception).
18747
18748         (mono_class_create_from_typedef): If the parent fails to load
18749         (calling mono_class_get_full) return NULL.
18750         
18751         ** Important **
18752
18753         calls to mono_metadata_parse_type_full should be checked
18754         everywhere and set the mono_class_set_failure
18755         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
18756
18757         The current patch checks the places where my manually constructed
18758         tests show the errors are showing up, but we should do it
18759         everywhere. 
18760
18761         ** Important2 **
18762
18763         mono_class_init return values should be tested everywhere, like
18764         the previous case this is something that we should audit
18765         everywhere and not only on the cases exposed by the tests I
18766         created. 
18767
18768 2006-04-26  Miguel de Icaza  <miguel@novell.com>
18769
18770         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
18771         boolean parameter and instead pass the information on `options'
18772         parameter (FileOptions).
18773
18774         * icall.c: Register the new signature for MonoIO.Open.
18775
18776         * debug-helpers.c (dis_one): Trying to understand how coverity
18777         works.  Fix Run 5, item 78.
18778
18779 2006-04-26  Dick Porter  <dick@ximian.com>
18780
18781         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
18782         dereference.
18783
18784 2006-04-25  Martin Baulig  <martin@ximian.com>
18785
18786         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
18787
18788         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
18789         debugger_thread_created().
18790         (debugger_gc_push_all_stacks): Don't handle the main thread in any
18791         special way.
18792         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
18793         (mono_debugger_finalize_threads): New function; undo the effects
18794         of mono_debugger_init_threads().
18795         (mono_debugger_create_all_threads): Removed.
18796
18797 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
18798
18799         * image.c (mono_image_close): Tidy up trace messages.
18800
18801         * assembly.c (mono_assembly_close): Ditto.
18802
18803         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
18804         no longer references an already freed assembly. Fixes #78168.
18805
18806 2006-04-21  Dick Porter  <dick@ximian.com>
18807
18808         * threads.c (mono_thread_detach): Fix reference counting when
18809         detaching threads.
18810
18811 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
18812
18813         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
18814         #78155.
18815
18816 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
18817
18818         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
18819         (mono_type_to_stind): Ditto.
18820
18821         * marshal.c: Use the new helper functions to simplify code.
18822
18823         * image.c (mono_image_close): Add some code for help debug assembly unloading
18824         problems.
18825
18826         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
18827         image mempool.
18828
18829         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
18830         assembly was already loaded in another appdomain. Fixes #78083.
18831
18832 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
18833
18834         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
18835         referenced assemblies.
18836         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
18837
18838         * domain.c (mono_domain_free): Add a trace message.
18839
18840         * appdomain.c (add_assemblies_to_domain): Ditto.        
18841
18842         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
18843         field.  
18844
18845 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
18846
18847         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
18848
18849 2006-04-12  Martin Baulig  <martin@ximian.com>
18850
18851         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
18852         `USE_INCLUDED_LIBGC'.   
18853
18854 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
18855
18856         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
18857         the patch contains ../ and a small directory name later. Hopefully fixes
18858         #78035.
18859
18860 2006-04-10  Martin Baulig  <martin@ximian.com>
18861
18862         Clean up the debugger's thread-handling code.
18863
18864         The debugger's thread-handling code has been moved from
18865         ../mini/debug-debugger.c to threads.c.  We now iterate directly
18866         over the `threads' hash, keep track of exiting threads and also
18867         use proper locking.
18868
18869         We can now debug XSP and XSP based applications with the debugger.
18870
18871         * object-internals.h (MonoThread): Added `gpointer end_stack'.
18872
18873         * threads.h
18874         (MonoThreadCallbacks): Removed; this was only used by the debugger.
18875         (mono_install_thread_callbacks): Likewise.      
18876
18877         * threads.c (mono_thread_callbacks): Removed.
18878         (debugger_thread_created, debugger_thread_exited): New static functions.
18879         (start_wrapper): Call debugger_thread_created().
18880         (thread_cleanup): Call debugger_thread_exited().
18881         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
18882         (mono_debugger_init_threads): New public function.
18883         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
18884         iterate directly over the `threads' hash and also use proper locking.
18885
18886         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
18887
18888         * mono-debug-debugger.h
18889         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
18890
18891 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
18892
18893         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
18894         argument type=array. Fixes #78057.
18895
18896 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
18897
18898         * culture-info-table.h : regenerated. Fixed bug #69652.
18899
18900 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
18901
18902         * loader.c metadata.c: Reapply a variant r59116.
18903         
18904         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
18905
18906         * class.c (mono_class_setup_interface_offsets): New internal function.
18907
18908         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
18909         interfaces too. Fixes #77398.
18910
18911         * reflection.c (encode_cattr_value): Add support for 
18912         parameter type=object, argument type=array.
18913         (load_cattr_value): Ditto. Fixes #77916.
18914
18915         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
18916         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
18917
18918         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
18919         a byval char array and CharSet is Ansi.
18920
18921         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
18922
18923 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
18924
18925         * metadata.c: Add some locking comments.
18926         
18927         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
18928         mempool.
18929         (mono_metadata_free_method_signature): Don't free the signature itself.
18930
18931         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
18932
18933         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
18934         reference the same MonoImage.
18935         (mono_assembly_load_from_full): Add an assert.
18936
18937 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
18938
18939         * image.c (mono_image_close): Don't put the image we are about to free into the
18940         loaded_images_guid_hash.
18941
18942         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
18943         to reduce code duplication.
18944
18945         * marshal.c: Register the native functions called by this module as icalls, to
18946         somewhat centralize the creation of MonoMethodSignature's.
18947
18948         * loader.c (mono_method_signature): Add a cache for method signatures.
18949
18950         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
18951         the parameter attributes of a method.
18952         (mono_metadata_parse_method_signature_full): Refactored the computation of
18953         parameter attributes into a separate function. Also avoid one allocation in
18954         most cases.
18955
18956         * assembly.c (mono_assembly_close): Ditto.
18957
18958         * image.c (mono_image_close): Log trace messages with INFO level.
18959
18960         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
18961
18962         * image.c reflection.c: Correct reference counting of image modules.
18963         
18964         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
18965         of this function from the image mempool.
18966         
18967         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
18968         to allow more cached types to be used.
18969
18970         * mono-debug.c (mono_debug_add_method): Appled patch from
18971         David S. Miller  <davem@sunset.davemloft.net>: Access 
18972         minfo->lexical_blocks[] entry elements using read32().
18973
18974 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
18975
18976         * loader.c (mono_free_method): No longer free the method header for non-dynamic
18977         methods as it is allocated from the mempool.
18978
18979         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
18980         image mempool.
18981
18982         * metadata-internals.h: Add comments describing the reference counting scheme
18983         used for MonoImage and MonoAssembly.
18984
18985         * image.c assembly.c reflection.c: Rework reference counting of images and 
18986         assemblies so they are freed when the runtime is shut down. Free some 
18987         additional memory structures when an image is unloaded.
18988         
18989 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
18990
18991         * class.c loader.c reflection.c: Allocate more data structures in
18992         the image mempool.
18993
18994 2006-03-31  Miguel de Icaza  <miguel@novell.com>
18995
18996         * icall.c
18997         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
18998         build on pre glib 2.4 systems.
18999
19000 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
19001
19002         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
19003
19004         * icall.c: Fix some warnings.
19005
19006 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
19007
19008         * culture-info-table.h : regenerated.
19009
19010 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
19011
19012         * threads.c, object-internals.h, verify.c: changed the culture caching
19013         code to use a normal MonoArray for storage so the GC can keep track of
19014         them easily. Fixed bits of the cache logic, too and simplified the
19015         code.
19016
19017 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
19018
19019         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
19020         thread for non-Boehm GCs.
19021
19022 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
19023
19024         * domain.c, object.c, domain-internals.h: reduce the amount of memory
19025         needed to keep track of the data for static fields.
19026
19027 2006-03-29  Raja R Harinath  <rharinath@novell.com>
19028
19029         Fix #75172
19030         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
19031         for interface classes.  Use 'num_methods' instead.
19032         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
19033         before using '->vtable_size' field.
19034
19035 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
19036
19037         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
19038         doesn't contain managed pointers, so use a normal hashtable.
19039
19040 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
19041
19042         * reflection.c, class-internals.h, domain.c: fixed handling of types
19043         used as values for objects in custom attributes (bug #77915):
19044
19045 2006-03-24  Martin Baulig  <martin@ximian.com>
19046
19047         * class.c (mono_class_setup_fields): Added support for generic
19048         instances; fixes #77580.
19049
19050 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19051
19052         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
19053
19054 2006-03-24  Dick Porter  <dick@ximian.com>
19055
19056         * file-io.c (get_file_attributes): More stat macro breakage.
19057         Fixes bug 77759.
19058
19059 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
19060
19061         * profiler.c: added the file=filename option in the default profiler
19062         to output the profile data to filename.
19063
19064 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19065
19066         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
19067         bug #77877.
19068
19069 2006-03-22  Martin Baulig  <martin@ximian.com>
19070
19071         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
19072         allocated `MonoClassField *' in `fb->handle'.
19073
19074 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19075
19076         * class.c, image.c, metadata-internals.h: implemented new mechanism to
19077         allocate interface ID to save memory and allow better ID reuse on
19078         appdomain unload. setup_generic_vtable () removal from Martin.
19079
19080 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19081
19082         * object.h, appdomain.c, domain.c, exception.c, icall.c,
19083         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19084         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19085         write barriers for reference stores with managed objects accessed with
19086         C structures in the runtime and in embedding programs.
19087
19088 2006-03-20  Raja R Harinath  <rharinath@novell.com>
19089
19090         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19091         'interface_id' and 'max_interface_id' fields of MonoClasses
19092         representing open generic types.
19093
19094 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19095
19096         * object.h, object.c, icall.c: added functions to deal with
19097         storing valuetypes that contain references in managed objects.
19098         * reflection.c, string-icalls.c, threads.c, marshal.c: small
19099         fixes and comments around uses of mono_array_addr ().
19100
19101 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19102
19103         * object.h, icall.c, monitor.c: object.GetHashCode ()
19104         implementation that supports the moving garbage collector.
19105
19106 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19107
19108         * icall.c, threads-types.h, threads.c: implemented finalizer for
19109         LocalDataStoreSlot.
19110
19111 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
19112
19113         * metadata.c (mono_type_size): Add a fixme.
19114         (mono_type_stack_size): Ditto.
19115
19116         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19117         'type_forwarders' field.
19118
19119         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19120         attribute from net 2.0.
19121
19122         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19123         from class.c.
19124
19125         * class.c (mono_class_setup_fields): Fix a warning.
19126         
19127         * class.c (mono_class_from_name): Add support for assemblyref entries
19128         in the EXPORTEDTYPE table.
19129
19130         * reflection.c: Add support for handling type forwarders under net 2.0.
19131
19132         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19133         
19134 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19135
19136         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19137         overwriting entries in ModuleBuild->types, also clean up the code
19138         a little. Fixes #77774.
19139
19140 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19141
19142         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19143         load friend assembly info when present.
19144
19145 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19146
19147         Fix crasher on gtest-158.cs.
19148         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19149         the return value if the MonoClass we want is yet in an
19150         inconsistent state.
19151         * class.c (mono_class_create_from_typedef): Add an comment
19152         explaining an order dependency between mono_class_setup_parent and
19153         mono_class_setup_mono_type.
19154
19155 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19156
19157         * class.c: documentation updates and events bug fix.
19158
19159 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19160
19161         * class.c: some cleanup, locking fixes.
19162
19163 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19164
19165         * class.c: fix the generics code to setup nested
19166         type info to the instantiated type (bug #77770).
19167
19168 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19169
19170         * marshal.c: fixed a few type correctness issues.
19171
19172 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19173
19174         * loader.c: the Set/Get/Addrtess array methods should be public.
19175
19176 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19177
19178         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19179         
19180         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19181         info->wrapper.
19182
19183 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19184
19185         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19186
19187         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19188
19189         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19190         (mono_mempool_alloc0): Ditto.
19191
19192 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19193
19194         * socket-io.c:
19195         (create_object_from_sockaddr): it was allocating 4 extra bytes
19196         for the AF_UNIX data. Fixes bug #77747.
19197
19198 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19199
19200         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19201
19202 2006-03-09  Dick Porter  <dick@ximian.com>
19203
19204         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19205         Fixes bug 76966 again.
19206
19207 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19208
19209         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19210         names from r57532
19211         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19212
19213 2006-03-07  Martin Baulig  <martin@ximian.com>
19214
19215         * object.c
19216         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19217
19218 2006-03-07  Martin Baulig  <martin@ximian.com>
19219
19220         * class.c
19221         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19222         regression introduced in r56970; see gtest-252.cs.
19223
19224         * loader.c (mono_get_method_constrained): Correctly handle generic
19225         methods; see gtest-253.cs.
19226
19227 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19228
19229         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19230
19231 2006-03-04  Martin Baulig  <martin@ximian.com>
19232
19233         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19234         compute the parent type at runtime, just like we're already doing
19235         it for interfaces.
19236
19237         * reflection.c
19238         (mono_reflection_bind_generic_parameters): Don't compute the
19239         parent type anymore.
19240
19241         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19242
19243 2006-03-04  Martin Baulig  <martin@ximian.com>
19244
19245         * mono-debug-debugger.h
19246         (mono_debugger_create_notification_function): Allocate memory at
19247         runtime and return a pointer to it.
19248
19249 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19250
19251         * assembly.c: Fix windows build.
19252         
19253         * assembly.c: Fix build.
19254
19255         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19256
19257         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19258         
19259 2006-03-03  Dick Porter  <dick@ximian.com>
19260
19261         * process.c
19262         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19263         Check parameters before dereferencing them.  Fixes Aaron's part of
19264         bug 77393.
19265
19266 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19267
19268         Fix performance regression.
19269         * loader.c (find_method_in_class): Add 'from_class' argument.
19270         Rename 'klass' argument to 'in_class'.  The signature is compared
19271         against the method in 'in_class', and the corresponding method is
19272         returned from 'from_class'.
19273         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19274         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19275         type definition and generic instantiation in parallel.
19276         (mono_get_method_constrained): Update to changes.
19277
19278 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19279
19280         * threads.c: make sure the domain is correct, too when doing
19281         mono_thread_attach ().
19282
19283 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19284
19285         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19286         windows. Fixes #77683.
19287
19288 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19289
19290         * object.h, *: introduced specific way to set elements of an array
19291         of references to be used as write barrier. Still need to audit the
19292         uses of mono_array_addr.
19293
19294 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19295
19296         * object-internals.h: New field to cache the assmebly name, patch
19297         from Tambet Ingo (tambet@ximian.com)
19298
19299 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19300
19301         * decimal.h, class-internals.h, metadata-internals.h,
19302         file-io.h: mark a few function declarations as internal, to
19303         reduce the number of PLT entries.
19304
19305 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19306
19307         * file-io.c: fix typo in warning message.
19308
19309 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19310
19311         * loader.c: on unix, lookup the "*A" version of a function
19312         if charset is auto as a second option before failing.
19313
19314 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19315
19316         * class.h (mono_class_inflate_generic_method): Revert to two
19317         argument version.
19318         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19319         (mono_class_inflate_generic_method_full): Add.
19320         * class.c (mono_class_inflate_generic_method_full): Rename from
19321         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19322         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19323         * loader.c, reflection.c: Update to changes.
19324
19325 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19326
19327         * icall.c: const fixes and small improvements.
19328
19329 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19330
19331         * threadpool.c: for asynchronous connect(), enable the same workaround
19332         for BSD 6 as for the Mac. Fixes bug #77637.
19333
19334 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19335
19336         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19337         formatted classes. Fixes #77524.
19338
19339 2006-02-24  Raja R Harinath  <rharinath@novell.com>
19340
19341         * class.c (inflate_generic_type): Add a couple more
19342         micro-optimizations.
19343         (inflate_generic_context): Don't use the 'gmethod' from
19344         'inflate_with'.
19345         (mono_class_inflate_generic_method): If the method has generic
19346         parameters, but the passed-in context doesn't have a 'gmethod',
19347         create one.  Use the possibly simplified generic instantiation
19348         from the declaring class instead of the one passed in.
19349
19350 2006-02-24  Raja R Harinath  <harinath@gmail.com>
19351
19352         Make generic method signature and method header handling lazy.
19353         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
19354         (inflate_generic_header): Likewise.
19355         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
19356         parameter to avoid inflating types.
19357         (mono_get_inflated_method): Empty out.
19358         * class.h (mono_class_inflate_generic_method): Update to changes.
19359         * loader.c (mono_get_method_from_token): Don't parse signature for
19360         generic methods, nor methods of generic classes.
19361         (mono_method_signature): Rename from 'mono_method_signature'.
19362         Inflate signature on demand.
19363         (mono_method_get_header): Inflate method header on demand.
19364         * reflection.c: Update to changes.
19365
19366 2006-02-23  Raja R Harinath  <rharinath@novell.com>
19367
19368         * metadata.c (mono_metadata_inflate_generic_inst): If the
19369         instantiation is closed, don't bother expanding it in the new
19370         context.
19371         * class.c (inflate_generic_class): If the generic instantiation
19372         doesn't change after inflation, return the argument itself.
19373         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
19374         Add bounds checks.
19375         (inflate_generic_context): If neither the generic class nor the
19376         generic method instantiations change, return the original context.
19377         * reflection.c (mono_method_get_object): Do
19378         'mono_get_inflated_method' before accessing the ->klass field.
19379         (inflate_mono_method): Don't create a MonoGenericMethod unless
19380         necessary.
19381         (inflate_method): Don't pass a constructed type as the declaring
19382         type of a methodbuilder.
19383
19384 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
19385
19386         * object.c: fix memory overwrite.
19387
19388 2006-02-22  Dick Porter  <dick@ximian.com>
19389
19390         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
19391         it doesn't work any more.
19392         (mono_threads_request_thread_dump): Fix unused variable warnings.
19393
19394 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19395
19396         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
19397         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
19398         the public header file.
19399
19400 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
19401
19402         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
19403
19404 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
19405
19406         * class-internals.h, object.c: reduce the size of MonoVTable
19407         and store the interface_offsets array at negative offsets.
19408
19409 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
19410
19411         * metadata.c: tweak table descriptors data structures to reduce
19412         size and runtime relocations.
19413
19414 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19415
19416         * marshal.c: fix some types and opcodes to be type-safe
19417         in marshaling wrappers.
19418
19419 2006-02-21  Ankit Jain  <jankit@novell.com>
19420
19421         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
19422
19423 2006-02-21  Raja R Harinath  <rharinath@novell.com>
19424
19425         * metadata.c (get_constraints): Relax debugging checks for monodis.
19426
19427 2006-02-21  Ankit Jain  <jankit@novell.com>
19428
19429         * metadata.c (mono_metadata_load_generic_params): Move the code
19430         checking for ambiguous generic params from here to mono/dis/get.c
19431         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
19432
19433 2006-02-21  Raja R Harinath  <harinath@gmail.com>
19434
19435         Fix assertion triggered when compiling nemerle.
19436         * class.c (mono_get_shared_generic_inst): Rename from
19437         get_shared_inst and make non-static.
19438         * loader.c (mono_get_shared_generic_method): New.  Used to create
19439         the MonoGenericContext-equivalent of a MonoGenericContainer.
19440         (mono_get_method_from_token): Initialize the 'context' field of
19441         the created MonoGenericContainer.
19442         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
19443         * metadata.c (get_constraints): Add sanity check.
19444         * class-internals.h: Add new internal methods.
19445
19446         * reflection.c (verify_safe_for_managed_space): New sanity check.
19447         Currently checks that owner-less generic parameters aren't allowed
19448         in managed space.
19449         (mono_type_get_object): Use it.
19450         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
19451         that are now in mono_type_get_object.
19452         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
19453
19454 2006-02-19  Raja R Harinath  <harinath@gmail.com>
19455
19456         * metadata.c (mono_type_create_from_typespec): Rename from
19457         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
19458         argument and caching of types in the generic container.
19459         (unwrap_arrays, find_generic_param): Remove.
19460         * metadata-internals.h: Update.
19461         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
19462
19463 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
19464
19465         * class.c (mono_class_get_exception_for_failure): Fix a warning.
19466
19467         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
19468         return values. Fixes #77581.
19469
19470         * class.c (mono_fnptr_class_get): Switch name and name_space.
19471
19472         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
19473         classes and add support for [In, Out] attributes.
19474         (mono_marshal_free_asany): Ditto. Fixes #77524.
19475
19476 2006-02-18  Raja R Harinath  <harinath@gmail.com>
19477
19478         * class.c (mono_class_from_generic_parameter): Make more robust to
19479         incomplete MonoGenericContainers from monodis.
19480
19481 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19482
19483         * class-internals.h: added some more exception types.
19484         * class.c, metadata.c: added a few checks to handle missing
19485         types.
19486
19487 2006-02-17  Raja R Harinath  <rharinath@novell.com>
19488
19489         Use owner-less generic-params some more.
19490         * class.c (my_mono_class_from_generic_parameter): Remove.
19491         (mono_class_from_generic_parameter): Handle null image,
19492         param->name and param->owner.
19493         (mono_class_from_mono_type): Update.
19494         (mono_class_create_from_typespec): Remove 'container' parameter.
19495         If that parameter is non-null, the result is always inflated by
19496         'mono_class_get_full' anyway.
19497         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
19498         parameter.
19499         (mono_class_get_full): Update.
19500
19501         * class.c (inflate_generic_type) [GENERICINST]: If the generic
19502         instance is not open, don't bother inflating.
19503         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
19504         parse metadata for inflated classes.
19505         (_mono_class_get): Change GenericContext* parameter to
19506         GenericContainer*.
19507         (mono_class_create_from_typespec): Likewise.  Simplify, and
19508         implement trivially.  All the cases are handled in
19509         mono_class_from_mono_type.  Don't inflate returned class.
19510         (mono_class_get_full): Delegate GENERICINST optimization to
19511         inflate_generic_type.
19512         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
19513
19514 2006-02-16  Dick Porter  <dick@ximian.com>
19515
19516         * socket-io.c (create_object_from_sockaddr): Fix typo.
19517         (create_sockaddr_from_object): Check array lengths before
19518         potentially accessing items off the end.
19519         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
19520         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
19521         (ves_icall_System_Net_Sockets_Socket_Send_internal)
19522         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
19523         length checks to avoid wraparound overflows.
19524         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
19525         contents of the array of sockets
19526         (hostent_to_IPHostEntry2)
19527         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
19528         Check return value of inet_ntop ().
19529         (addrinfo_to_IPHostEntry): Fix typo
19530
19531 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19532
19533         Type metadata parsing doesn't use generic-instantiation information.
19534         * metadata.c (mono_metadata_parse_array_full): Change
19535         MonoGenericContext* parameter to MonoGenericContainer*.
19536         (mono_metadata_parse_type_full): Likewise.
19537         (mono_type_create_from_typespec_full): Likewise.
19538         (mono_metadata_parse_mh_full): Likewise.
19539         (mono_metadata_parse_generic_inst): Likewise.
19540         (do_mono_metadata_parse_generic_class): Likewise.
19541         (do_mono_metadata_parse_type): Likewise.
19542         * metadata-internals.h: Update to changes.
19543         * class.c (mono_class_find_enum_basetype): Likewise.
19544         (mono_class_setup_fields): Likewise.
19545         (mono_class_create_from_typespec): Likewise.
19546         * loader.c (method_from_methodspec): Likewise.
19547         (mono_get_method_from_token): Likewise.
19548         (mono_method_get_header): Likewise.
19549
19550 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19551
19552         * marshal.c: handle additional GENERICINST case (patch from
19553         Thong Nguyen <tum@veridicus.com>).
19554         Fix a few cases where LDIND_I/STIND_I was used for references.
19555
19556 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19557
19558         * reflection.c (mono_reflection_get_token): Remove unused variable.
19559
19560 2006-02-16  Martin Baulig  <martin@ximian.com>
19561
19562         * reflection.c (mono_reflection_get_token): Add support for fields
19563         in instantiated generic types.
19564
19565         * icall.c
19566         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
19567
19568 2006-02-15  Martin Baulig  <martin@ximian.com>
19569
19570         * icall.c
19571         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
19572         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
19573         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
19574         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
19575
19576 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
19577
19578         * class.c, metadata.c, metadata.h, object.c, icall.c,
19579         marshal.c: changed mono_type_get_underlying_type () to do
19580         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
19581         Fixed handling of instantiated generic valuetypes (bug #75479).
19582
19583 2006-02-15  Raja R Harinath  <rharinath@novell.com>
19584
19585         * metadata.c (mono_metadata_decode_signed_value): Simplify.
19586         Delegate to mono_metadata_decode_value, and work on the returned value.
19587
19588         * icall.c (ves_icall_MonoType_GetGenericArguments):
19589         Add consistency check here too.
19590         
19591 2006-02-15  Ankit Jain  <jankit@novell.com>
19592
19593         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
19594         char/short etc.
19595
19596 2006-02-15  Ankit Jain  <jankit@novell.com>
19597
19598         * metadata.c (mono_metadata_decode_signed_value): New function to decode
19599         signed values, used only for representing lower bounds of arrays.
19600         (mono_metadata_parse_array_full): Use new
19601         mono_metadata_decode_signed_value to decode lower bounds.
19602
19603 2006-02-14  Martin Baulig  <martin@ximian.com>
19604
19605         * reflection.c
19606         (mono_reflection_get_token): Support "MonoGenericMethod" and
19607         "MonoGenericCMethod" and allow generic instances / methods.
19608
19609 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
19610
19611         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
19612         to obtain the terminal size using an ioctl.
19613
19614         * object.c (mono_nullable_init): Revert this as nullable reference
19615         types are not valid.
19616         (mono_nullable_box): Ditto.
19617
19618 2006-02-09  Dick Porter  <dick@ximian.com>
19619
19620         * threads.c (mono_thread_detach): Drop a reference to the thread
19621         we're detaching.
19622
19623 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
19624
19625         * object.c (mono_nullable_init): Handle nullable reference types.
19626         (mono_nullable_box): Ditto. Fixes #77446.
19627
19628 2006-02-07  Martin Baulig  <martin@ximian.com>
19629
19630         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
19631
19632 2006-02-07  Ankit Jain  <jankit@novell.com>
19633
19634         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
19635         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
19636         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
19637         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
19638         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
19639         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
19640
19641 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
19642
19643         * class.c (mono_class_create_generic): Set type_token as well.
19644
19645         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
19646         compatible with MS.
19647
19648 2006-02-02  Martin Baulig  <martin@ximian.com>
19649
19650         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
19651         has never been used so far.
19652
19653 2006-02-02  Martin Baulig  <martin@ximian.com>
19654
19655         * mono-debug-debugger.h: Changed comment at the top of this file;
19656         the header is not installed, but it's safe to #include it from
19657         within the JIT.
19658
19659         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
19660         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
19661
19662 2006-02-02  Martin Baulig  <martin@ximian.com>
19663
19664         * mono-debug.h
19665         (MonoSymbolTable): Removed the `metadata_info' field.
19666
19667         * mono-debug.c
19668         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
19669
19670         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19671         (mono_debugger_add_builtin_types): Removed.
19672         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
19673         (mono_debugger_create_notification_function): We now operate on a
19674         pre-allocated area; take a `gpointer' and return `void'.
19675
19676         * mono-debug-debugger.c
19677         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
19678         (mono_debugger_add_builtin_types): Removed.
19679
19680 2006-02-02  Martin Baulig  <martin@ximian.com>
19681
19682         * threads.c (mono_debugger_create_all_threads): New public method.
19683
19684 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19685
19686         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
19687         breaks on several platforms.
19688
19689 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
19690
19691         * assembly.c: the VS.NET build doesn't supply default values for
19692         MONO_ASSEMBLIES and MONO_CFG_DIR.
19693
19694 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
19695
19696         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
19697         helper function.
19698
19699         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
19700
19701         * loader.c (method_from_memberref): Fix a warning.
19702
19703         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
19704
19705         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
19706         with explicit layout. Fixes #77433.
19707
19708 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
19709
19710         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
19711         max_interface_id is initialized before using it. Fixes #77398.
19712         (ves_icall_Type_GetInterfaces): Ditto.
19713
19714 2006-01-30  Raja R Harinath  <rharinath@novell.com>
19715
19716         * metadata.c (mono_metadata_parse_method_signature_full): Don't
19717         allocate memory for parameter attributes when parsing memberref
19718         signatures.
19719         * loader.c (mono_loader_set_error_method_load): Don't warn.
19720         (method_from_memberref): Ensure MissingMethodException gets thrown
19721         if method is not found.  Make warning more informative.
19722
19723 2006-01-29  Raja R Harinath  <harinath@gmail.com>
19724
19725         Fix #77397
19726         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
19727         return true if is byref.
19728         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
19729         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
19730         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
19731
19732 2006-01-27  Raja R Harinath  <rharinath@novell.com>
19733
19734         Fix tests/find-method.2.il
19735         * loader.c (find_method, find_method_in_class): Remove is_inflated
19736         argument.  Revert 2006-01-18 change.
19737         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
19738         is generic, search for method in its generic definition.
19739         * class.c (mono_class_setup_vtable_general): Print generic
19740         arguments of generic types in debugging printf.
19741
19742 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
19743
19744         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
19745
19746         * threads.c (mono_threads_request_thread_dump): New helper function.
19747
19748 2006-01-25  Raja R Harinath  <rharinath@novell.com>
19749
19750         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
19751
19752 2006-01-25  Ankit Jain  <jankit@novell.com>
19753
19754         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
19755         move definition to ..
19756         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
19757         
19758 2006-01-25  Ankit Jain  <jankit@novell.com>
19759             Raja R Harinath  <rharinath@novell.com>
19760
19761         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
19762         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
19763         as necessary.
19764
19765 2006-01-25  Martin Baulig  <martin@ximian.com>
19766
19767         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
19768         `MonoDebuggerThread' into debug-debugger.c.
19769
19770 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
19771
19772         * profiler.c: fix printing of data.
19773
19774 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
19775
19776         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
19777           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
19778
19779 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
19780
19781         * object.c: fix deadlock related to string interning.
19782
19783 2006-01-23  Martin Baulig  <martin@ximian.com>
19784
19785         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19786
19787         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
19788
19789 2006-01-23  Martin Baulig  <martin@ximian.com>
19790
19791         * mono-debug.h: Moved the prototypes of some functions which are
19792         used by the JIT here from mono-debug-debugger.h.
19793
19794 2006-01-21  Martin Baulig  <martin@ximian.com>
19795
19796         * Makefile.am: Don't install mono-debug-debugger.h.
19797
19798 2006-01-21  Martin Baulig  <martin@ximian.com>
19799
19800         * mono-debug-debugger.h: Enforce the private status of this header
19801         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
19802         Moved some stuff from mono-debugger-jit-wrapper.h here.
19803
19804 2006-01-20  Raja R Harinath  <rharinath@novell.com>
19805
19806         * class.c (mono_class_from_typeref): Add a sanity test to help
19807         catch lack of assembly load/search hooks.
19808
19809 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
19810
19811         * marshal.c (emit_struct_conv): Relax the fields with same offset
19812         check even more. Fixes #77230.
19813
19814 2006-01-18  Martin Baulig  <martin@ximian.com>
19815
19816         * loader.c (find_method_in_class): Added `gboolean is_inflated'
19817         argument; if false, we compare the uninstantiated signatures.
19818         (method_from_memberref): Compare the uninstantiated signatures;
19819         fixes #76417.
19820
19821 2006-01-18  Robert Jordan  <robertj@gmx.net>
19822
19823         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
19824         Clear the weak link. Fixes bug #77170.
19825
19826         * gc.c (mono_gchandle_free):
19827         Reflect *-gc.c changes (tiny optimization).
19828
19829 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
19830
19831         * metadata.c (mono_metadata_signature_dup): Applied patch from
19832         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
19833         Fixes #77288.
19834
19835 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
19836
19837         * marshal.c (emit_struct_conv): Allow fields with the same offset when
19838         marshalling from native to managed code. Fixes #77230.
19839
19840 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19841
19842         * threadpool.c: fix problem (Mac only) when more than one asynchronous
19843         connect. Fixes bug #77020.
19844
19845 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
19846
19847         * class.c: fixed id assignement for nested interfaces (bug #77275).
19848         Added also better info for --print-vtable debugging.
19849
19850 2006-01-12  Martin Baulig  <martin@ximian.com>
19851
19852         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
19853         interfaces on-the-fly; fixes #76625.
19854
19855         * class-internals.h
19856         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
19857         don't need that anymore.
19858
19859 2006-01-12  Miguel de Icaza  <miguel@novell.com>
19860
19861         * socket-io.c
19862         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
19863         To avoid initing the nested_classes when not needed I turned the
19864         PeerCredData as a toplevel internal class, as it has to be shared
19865         anyways. 
19866
19867         Fixes the CASA issue.
19868
19869 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
19870
19871         * domain.c: Accessors for MonoJitInfo
19872
19873         * profiler-private.h: Add jitinfo to the end jit hook
19874
19875         * profiler.[ch]: Define new hooks, called after jitting which give
19876         the MonoJitInfo that was compiled
19877
19878 2006-01-10  Martin Baulig  <martin@ximian.com>
19879
19880         * class.c (mono_class_setup_events): Add support for generic
19881         classes; fixes #76440.
19882
19883 2006-01-06  Raja R Harinath  <rharinath@novell.com>
19884
19885         Fix #77160.
19886         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
19887         on passed-in method.
19888
19889 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
19890
19891         * object.c (mono_runtime_invoke_array): Add Nullable support.
19892
19893         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
19894
19895 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
19896
19897         * file-io.c: Don't consider sockets as directory and avoid an endless
19898         loop. Fix bug #76966.
19899
19900 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
19901
19902         * object.c (mono_nullable_init): New helper function.
19903         (mono_nullable_box): Ditto.
19904
19905         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
19906
19907         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
19908
19909         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
19910         
19911 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
19912
19913         * class.c (mono_class_is_assignable_from): Make T assignable to 
19914         Nullable<T>.
19915
19916 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
19917
19918         * appdomain.c: Bump corlib version to 46.
19919         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
19920         serialization purpose) and changed ves_icall_System_Reflection_
19921         Assembly_get_code_base signature to accept a boolean (to escape, or 
19922         not, the assembly code base).
19923
19924 2005-12-23  Dick Porter  <dick@ximian.com>
19925
19926         * icall.c: 
19927         * threads-types.h: 
19928         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
19929         CreateEvent icall now returns "created" boolean parameter.
19930
19931 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
19932
19933         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
19934         #76967.
19935
19936         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
19937         when attr_klass is an interface. Fixes #77045.
19938
19939 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
19940
19941         * marshal.c (emit_struct_conv): Fix previous patch.
19942         
19943         * marshal.c (emit_struct_conv): Add a check for fields with the same
19944         offset.
19945
19946 2005-12-20  Raja R Harinath  <rharinath@novell.com>
19947
19948         Fix regression in Mono.C5.
19949         * class.c (mono_class_create_generic): If 'klass' is an interface
19950         set up the interface offsets.
19951         (mono_class_is_assignable_from): Don't throw away generic arguments.
19952
19953 2005-12-19  Raja R Harinath  <rharinath@novell.com>
19954
19955         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
19956         type parameters.
19957
19958 2005-12-15  Raja R Harinath  <rharinath@novell.com>
19959
19960         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
19961         dead store.
19962         (do_mono_metadata_parse_generic_class): Don't pass the current
19963         generic context when parsing the type being instantiated: it
19964         cannot use it, anyway.
19965
19966         * loader.c (method_from_memberref): Don't inflate a signature if
19967         it doesn't contain any type parameters.
19968
19969 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
19970
19971         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
19972
19973 2005-12-14  Martin Baulig  <martin@ximian.com>
19974
19975         * class.c
19976         (mono_type_get_name_recurse): Don't return null for type
19977         parameters and open generic classes.
19978         (mono_class_setup_methods): Don't exclude generic instances.
19979         (mono_get_unique_iid): Use different IDs for different
19980         instantiations of the same generic type.
19981         (mono_class_setup_vtable): Only use setup_generic_vtable() for
19982         open generic instances; create a normal vtable for closed generic
19983         instances.
19984         (mono_class_setup_vtable_general): We're now also called for
19985         closed generic instances.
19986
19987         * reflection.c
19988         (mono_reflection_bind_generic_parameters): Correctly use
19989         mono_metadata_lookup_generic_inst() everywhere.
19990
19991 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
19992
19993         * object.c (mono_class_create_runtime_vtable): Call 
19994         mono_class_setup_vtable ().
19995
19996         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
19997         function.
19998         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
19999         #76959.
20000
20001         * loader.c (mono_loader_set_error_type_load): Print the type load
20002         warnings to the console so they are more visible to the user.
20003         (mono_loader_set_error_method_load): Ditto.
20004
20005         * reflection.c (ensure_runtime_vtable): Revert the last change as it
20006         is still broken.
20007         
20008         * reflection.c (ensure_runtime_vtable): Fix build.
20009
20010         * reflection.c (ensure_runtime_vtable): Disable an optimization which
20011         doesn't work in all cases.
20012
20013 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
20014
20015         * object.c (mono_array_new_full): Treat a single dimensional array
20016         with 0 lower bounds as an szarray. Fixes #76973.
20017
20018         * reflection.c (custom_attr_visible): Really fix this.
20019
20020 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
20021
20022         * reflection.c (custom_attr_visible): Allow nested public attributes
20023         as well.
20024
20025         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
20026         interface check.
20027
20028 2005-12-12  Raja R Harinath  <harinath@gmail.com>
20029
20030         * class.c (set_generic_param_owner): Delete.
20031         (mono_class_create_from_typedef): Don't set ->owner field of
20032         generic parameters to "param containers" of enclosing classes.
20033         * reflection.c (mono_reflection_initialize_generic_parameter):
20034         Likewise.
20035
20036 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
20037
20038         * reflection.c (custom_attr_visible): Fix build.
20039
20040 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
20041
20042         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
20043         private attributes.
20044         
20045         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
20046         handling of null parameter defaults.
20047
20048 2005-12-09  Raja R Harinath  <rharinath@novell.com>
20049
20050         * class.c (mono_class_from_generic_parameter): Don't set
20051         klass->generic_container.
20052         (my_mono_class_from_generic_parameter): Likewise.
20053
20054 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
20055
20056         * reflection.c (load_public_key): Fix a warning.
20057         (method_encode_code): Fix unaligned accesses.
20058
20059 2005-12-07  Martin Baulig  <martin@ximian.com>
20060
20061         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
20062
20063         * reflection.c
20064         (write_generic_param_entry): Encode our custom attrs.
20065
20066         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
20067
20068 2005-12-07  Martin Baulig  <martin@ximian.com>
20069
20070         * reflection.c (encode_new_constraint): Removed; we don't use the
20071         `NewConstraintAttribute' anymore.
20072
20073 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
20074
20075         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20076         not fire a TypeResolve event when Assembly.GetType () is called.
20077
20078 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
20079
20080         Beginning of support for nullable types in the runtime. Parts of
20081         this patch are from Martin.
20082
20083         * appdomain.c (MONO_CORLIB_VERSION): Bump
20084
20085         * domain.c (mono_init_internal): get the nullable type
20086
20087         * class.c (mono_class_is_nullable): New method
20088         (mono_class_get_nullable_param): New mehod
20089         (mono_class_create_generic): In types T? set cast_class to T
20090
20091         * class-internals.h (MonoDefaults): new nullable default class
20092         (mono_class_get_nullable_param, mono_class_get_nullable_param):
20093         new methods.
20094
20095 2005-12-05  Raja R Harinath  <rharinath@novell.com>
20096
20097         * metadata.c (select_container): New.  Refactor code to select the
20098         appropriate GenericContainer given the type of generic parameter
20099         we are looking for.
20100         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20101         not a MonoGenericContext.  Use select_container.  Update parameters.
20102         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20103         and MONO_TYPE_MVAR.
20104         (unwrap_arrays): Remove duplicate tests.
20105         (find_generic_param): Rename from 'has_same_context'.  Now walks a
20106         generic instantiated class to find any arguments that are generic
20107         parameters.
20108         (mono_type_create_from_typespec_full): Use find_generic_param to
20109         avoid evicting some generic instantiations from the typespec
20110         cache.
20111
20112 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20113
20114         * reflection.c: fixed writing of doubles on ARM FPA.
20115
20116 2005-12-02  Robert Jordan  <robertj@gmx.net>
20117
20118         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20119
20120 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20121
20122         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20123         least on SUSE 10 they are not the same (on debian, they are just the
20124         same thing).
20125
20126 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20127
20128         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20129         DeclaringType for VARs and MVARs.
20130         * class.c (set_generic_param_owner): Fix initialization of owner
20131         fields.
20132
20133 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20134
20135         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20136
20137 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20138
20139         * threadpool.c: workaround for a bug that shows up on the Mac:
20140         select()+connect() on a blocking socket is not like it should
20141         be, so we proceed to connect() in that case, wasting the I/O
20142         threadpool thread until connect succeedes. Fixes bug #75436.
20143
20144 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20145
20146         * threadpool.c: fix typo when setting file descriptor states.
20147
20148 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20149
20150         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20151         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20152         create a temporary signature container.
20153         (mono_metadata_parse_generic_param): Update to changes.
20154         (mono_type_create_from_typespec_full): Update to changes.
20155         * loader.c (method_from_memberref): Don't use a
20156         MonoGenericContainer while parsing a memberref signature.
20157         (method_from_methodspec): Remove dead-store of the 'container'
20158         variable.  It's overwritten before use.
20159
20160         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20161         checks tighter.
20162         (mono_metadata_parse_generic_param): Likewise.
20163         * loader.c (find_method_in_class): Does not need a
20164         MonoGenericContainer.  Use 'mono_method_signature' rather than
20165         'mono_method_signature_full'.
20166         (find_method, mono_get_method_constrained, method_from_memberref):
20167         Update to changes.
20168
20169         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20170         owner-less generic-parameters are never evicted from the typespec
20171         cache.
20172
20173         * loader.c (method_from_memberref): Don't use the current context
20174         when parsing signatures.
20175         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20176
20177         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20178         side-effects in g_assert.
20179         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20180         that we don't potentially lose information.
20181
20182 2005-11-26  Dick Porter  <dick@ximian.com>
20183
20184         * icall.c:
20185         * threads.c: icalls to implement basic (ie, not named)
20186         System.Threading.Semaphore.
20187
20188 2005-11-24  Dick Porter  <dick@ximian.com>
20189
20190         * process.c
20191         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20192         Use GetProcessId() if it's available.
20193
20194 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20195
20196         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20197
20198 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20199             Ankit Jain  <jankit@novell.com>
20200
20201         * loader.c (mono_get_method_from_token): Initialize 'method' field
20202         of all generic parameters before parsing the signature.  Remove
20203         code that "fixed"-up MVAR references.
20204
20205 2005-11-23  Ankit Jain  <jankit@novell.com>
20206
20207         * metadata.c (mono_metadata_has_generic_params):
20208         (mono_metadata_load_generic_param_constraints):
20209         (mono_metadata_load_generic_params): Move duplicate code ...
20210         (mono_metadata_get_generic_param_row): ... here. Returns the
20211         first row-id in GenericParam table for a given owner (token).
20212         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20213         prototype.
20214
20215 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20216             Ankit Jain  <jankit@novell.com>
20217
20218         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20219         comparing VARs too.
20220         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20221         type->data.generic_param only if the type is an MVAR.
20222         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20223         leak owner-less VARs and MVARs into managed space.
20224
20225 2005-11-21  Martin Baulig  <martin@ximian.com>
20226
20227         * class-internals.h
20228         (MonoMethod): Moved the `generic_container' here from
20229         `MonoMethodNormal' since we now also need it for
20230         `MonoMethodPInvoke';
20231         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20232         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20233         an union containing both `MonoMethodNormal' and
20234         `MonoMethodPInvoke'.
20235
20236         * loader.c
20237         (mono_get_method_from_token): Allow implementing generic methods
20238         as interncalls.
20239
20240         * threads.c
20241         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20242         icall.
20243
20244 2005-11-17  Dick Porter  <dick@ximian.com>
20245
20246         * icall.c: 
20247         * process.h: 
20248         * process.c: Split the Process Start_internal icall into
20249         ShellExecuteEx_internal and CreateProcess_internal, which are
20250         called depending on whether UseShellExecute is true.  Fixes bug
20251         76670.
20252
20253         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20254
20255 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20256
20257         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20258         'msize' parameters, use the information in 'mspec' instead.
20259         (emit_object_to_ptr_conv): Ditto.
20260
20261         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20262         fields out of order. Fixes #76733.
20263
20264 2005-11-17  Ankit Jain  <jankit@novell.com>
20265
20266         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20267
20268 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20269
20270         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20271           bug #76575.
20272
20273 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20274
20275         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20276         for types with non-auto layout. Fixes #76717.
20277
20278 2005-11-16  Ankit Jain  <jankit@novell.com>
20279
20280         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20281         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20282         if generic_context is null.
20283           (mono_metadata_generic_param_equal): param->owner can be null.
20284           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20285         null.
20286
20287 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20288
20289         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20290         the correct value.
20291
20292 2005-11-15  Martin Baulig  <martin@ximian.com>
20293
20294         * object.c (set_value): Use mono_class_from_mono_type() instead of
20295         the hack for generic instances; fixes #76136.
20296
20297 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20298
20299         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20300         fields.
20301
20302         * image.c (load_metadata_ptrs): Initialize the new fields.
20303
20304         * reflection.c (create_dynamic_mono_image): Ditto.
20305
20306         * reflection.c (build_compressed_metadata): Use the new fields.
20307
20308         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20309         icall.
20310
20311         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20312         icall.
20313         
20314 2005-11-15  Ankit Jain  <jankit@novell.com>
20315             Raja R Harinath  <harinath@gmail.com>
20316
20317         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20318         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20319         new per-generic_container cache if the cached MonoType's context matches
20320         the current context.
20321           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20322         to the expected context.
20323           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20324
20325 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20326
20327         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20328         we changed the signature of an icall.
20329         * icall.c: Modify to mono_double_ParseImpl return true/false 
20330         depending on the success, instead of throwing the exception. This will
20331         help us in Double.TryParse methods.
20332         
20333 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20334
20335         * marshal.c (emit_marshal_object): Throw an exception when
20336         marshalling 'object' instead of crashing. Fixes #76696.
20337
20338 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20339
20340         * class-internals.h: Add prototype for mono_type_get_full_name ().
20341
20342 2005-11-11  Dick Porter  <dick@ximian.com>
20343
20344         * threads.c (mono_thread_manage): Make sure the main thread has
20345         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
20346
20347 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20348
20349         * loader.c (mono_loader_set_error_type_load): Log a warning to the
20350         console about the missing type.
20351         (mono_loader_set_error_method_load): Ditto.
20352
20353 2005-11-09  Miguel de Icaza  <miguel@novell.com>
20354
20355         * mono-config.c (mono_get_config_dir): Set the system defaults if
20356         none is specified.
20357
20358         * assembly.c (mono_set_dirs): New API entry point to set the
20359         assembly and the config directory in one call
20360
20361 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
20362
20363         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
20364         the ftnptr was created from a delegate in a domain other than the
20365         current domain. Fixes #75377.
20366
20367         * exception.h exception.c: Add mono_get_exception_not_supported ().
20368
20369 2005-11-08  Martin Baulig  <martin@ximian.com>
20370
20371         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
20372
20373 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
20374
20375         * security-manager.h: Added definitions to deal with strongname key 
20376         pairs bigger (and smaller) than 1024 bits.
20377         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
20378         adjust wrt the public key length being used.
20379
20380 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
20381
20382         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
20383           Windows build (r51396-51397).
20384
20385 2005-11-03  Martin Baulig  <martin@ximian.com>
20386
20387         * class.c (mono_class_setup_vtable_general): Also add generic
20388         methods to the vtable; fixes #76581.
20389
20390 2005-11-01  Miguel de Icaza  <miguel@novell.com>
20391
20392         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
20393         sure that we lookup GetString method from the System.Text.Encoding
20394         class, not the derived class or we get an empty method.
20395
20396         Fixed class #76612.
20397
20398 2005-10-25  Miguel de Icaza  <miguel@novell.com>
20399
20400         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
20401         if it has been previously set (embedders). 
20402
20403         Make mono_set_rootdir available also on Unix.
20404
20405 005-10-24  Robert Jordan  <robertj@gmx.net>
20406
20407         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
20408
20409 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
20410
20411         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
20412         only calls which are made to native code use this flag.
20413
20414         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
20415
20416 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
20417
20418         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
20419         Add support for FieldBuilders.
20420
20421 2005-10-29  Martin Baulig  <martin@ximian.com>
20422
20423         * mono-debug.c
20424         (mono_debug_using_mono_debugger): New public method; returns
20425         whether we're running inside the debugger.
20426
20427 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
20428
20429         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
20430         for Method/Constructor/FieldBuilders.
20431
20432 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
20433
20434         * reflection.c (module_add_cattrs): Save custom attributes for global methods
20435         and fields as well.
20436
20437 2005-10-26  Martin Baulig  <martin@ximian.com>
20438
20439         * mono-debug-debugger.c
20440         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
20441
20442 2005-10-24  Raja R Harinath  <harinath@gmail.com>
20443
20444         * icall.c (base64_to_byte_array): Don't pass an out-of-range
20445         integer to isspace.
20446
20447 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
20448
20449         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
20450         when passing valuetypes byref. Fixes #76502.
20451
20452 2005-10-19  Jackson Harper  <jackson@ximian.com>
20453
20454         * profiler.c: Don't put a . in front of types that are not in a
20455         namespace.
20456
20457 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
20458
20459         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
20460
20461 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
20462
20463         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
20464         #76436.
20465         (mono_marshal_get_ldflda_wrapper): Fix a warning.
20466
20467 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20468
20469         * assembly.c metadata-internals.h icall.c: Define an additional
20470         parameter for mono_assembly_name_parse_full, so we can avoid creating
20471         S.R.AssemblyName.Version when no version info wasn't passed.
20472         
20473 2005-10-09  Miguel de Icaza  <miguel@novell.com>
20474
20475         * class.c (mono_type_get_full_name): Reimplement method that was
20476         removed. 
20477
20478         * image.c: Some docs
20479
20480 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
20481
20482         * profiler.c (output_newobj_profile): Fix printing of Total memory
20483         on x86.
20484
20485 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20486
20487         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
20488
20489 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
20490
20491         * threads.c: remove debug output.
20492
20493 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20494
20495         * threads.c (mono_thread_manage): Fix crashes if more than 64
20496         threads need to be aborted. Hopefully fixes #75899.
20497
20498         * assembly.c (mono_stringify_assembly_name): New helper function.
20499
20500         * class.c: Use mono_stringify_assembly_name instead of the similar
20501         static function.
20502
20503         * assembly.h assembly.c: Add support for calling a postload search 
20504         hook if an assembly cannot be loaded.
20505
20506         * appdomain.c: Register new search hooks which call the AssemblyResolve
20507         events in AppDomain. Fixes #75231
20508
20509 2005-10-07  Martin Baulig  <martin@ximian.com>
20510
20511         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
20512         methods without debug info.
20513
20514 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
20515
20516         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
20517         wrappers.
20518
20519 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20520
20521         * file-io.c: now that we return symlinks, use lstat and, when the file
20522         is a symbolic link, stat, to get the file attributes. Also avoid the
20523         conversion to/from utf16/external.
20524
20525 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
20526
20527         * class.c (mono_class_layout_fields): Compute klass->has_references
20528         correctly if an embedded valuetype is not yet initialized. Fixes
20529         #76331.
20530
20531 2005-10-04  Martin Baulig  <martin@ximian.com>
20532
20533         * metadata.c
20534         (mono_metadata_load_generic_param_constraints): New public
20535         function; splitted the constraints loading out from
20536         mono_metadata_load_generic_params().
20537
20538         * class.c (mono_class_create_from_typedef): Call
20539         mono_metadata_load_generic_param_constraints() after setting up
20540         the type and creating our parent; fixes #75329.
20541
20542 2005-10-04  Martin Baulig  <martin@ximian.com>
20543
20544         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
20545         non-dynamic parent classes.
20546
20547 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
20548
20549         * file-io.c : win32 build fix (ETXTBSY seems not found).
20550
20551 2005-10-04  Martin Baulig  <martin@ximian.com>
20552
20553         * reflection.c
20554         (mono_image_get_methodspec_token): Make the cache actually work;
20555         fixes #75974.
20556
20557 2005-10-04  Martin Baulig  <martin@ximian.com>
20558
20559         * class.c (mono_class_name_from_token): Removed the unneccessary
20560         `MonoGenericContext *' argument.
20561
20562 2005-10-04  Martin Baulig  <martin@ximian.com>
20563
20564         * loader.c
20565         (method_from_methodspec): Make the caching work again; fixes the
20566         performance regression from #76262.
20567
20568 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20569
20570         * file-io.c:
20571         * file-io.h:
20572         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
20573         GetFileSystemEntries that performs the same work but without going
20574         into io-layer, locking, etc.
20575
20576 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
20577
20578         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
20579         ThreadState_Stopped as well. Fixes #76047.
20580
20581 2005-09-29  Martin Baulig  <martin@ximian.com>
20582
20583         * class.c
20584         (inflate_generic_context): If the new context has a `gmethod', set
20585         its `container' that that gmethod's `container'.
20586
20587         * metadata.c
20588         (mono_metadata_parse_generic_param): Simplify things;
20589         `generic_container = generic_context->container;' is just fine.
20590
20591         * loader.c (method_from_methodspec): Code cleanups.
20592
20593 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
20594
20595         * decimal.c: fix warning (and let gcc generate correct
20596         code on ARM with optimizations).
20597
20598 2005-09-28  Martin Baulig  <martin@ximian.com>
20599
20600         * loader.c
20601         (method_from_memberref): Added `MonoGenericContext *class_context'
20602         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
20603         (method_from_methodspec): If we're a memberref, use the enclosing
20604         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
20605
20606 2005-09-28  Martin Baulig  <martin@ximian.com>
20607
20608         * object.c (mono_runtime_invoke_array): Added support for
20609         MONO_TYPE_GENERICINST; fixes #75917.
20610
20611 2005-09-27  Martin Baulig  <martin@ximian.com>
20612
20613         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
20614         `k->byval_arg.type' to determine the actual type.
20615
20616         * loader.c (method_from_methodspec): Removed some hacks.
20617
20618 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
20619
20620         * class-internals.h (mono_field_is_deleted): Do the test for
20621         rtspecialname before we check the actual name of the field. This
20622         prevents us from dereferencing a pointer into the string table,
20623         saving us from accessing a few pages
20624
20625         * *.c: Replace the use of {Enter,Leave}CriticalSection with
20626         macros. This will allow a deadlock debugger to easily be plugged
20627         in.
20628
20629 2005-09-27  Martin Baulig  <martin@ximian.com>
20630
20631         * loader.c (method_from_methodspec): Create a "signature"
20632         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
20633
20634 2005-09-27  Martin Baulig  <martin@ximian.com>
20635
20636         * class.c
20637         (inflate_generic_class): Correctly set the new context's
20638         container.
20639
20640         * loader.c
20641         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
20642         instead of a `MonoGenericContext *'.
20643         (mono_method_signature_full): Take a `MonoGenericContainer *'
20644         instead of a `MonoGenericContext *'.
20645
20646         * metadata.c
20647         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
20648         instead of a `MonoGenericContext *'.
20649         (mono_metadata_parse_method_signature_full): Likewise.
20650
20651 2005-09-26  Martin Baulig  <martin@ximian.com>
20652
20653         * class.c
20654         (mono_class_from_generic_parameter): Set `klass->generic_container'
20655         (mono_class_from_generic_parameter): Likewise.
20656         (mono_bounded_array_class_get): We inherit the generic container
20657         from the element class.
20658
20659         * loader.c
20660         (find_method, find_method_in_class): Take a `MonoGenericContext *'
20661         argument rather than computing it here.
20662         (method_from_memberref): Correctly set the generic context before
20663         parsing the signature.  Fixes #75681.
20664
20665 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
20666
20667         * object.c (mono_class_has_special_static_fields): Fix warnings.
20668
20669 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20670
20671         * assembly.c: Add parse_public_key function, to
20672         par the public keys. Also added mono_assembly_name_parse_full,
20673         to define it the parsed key should be freed or not.
20674         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
20675         to parse a long format assembly name.
20676         * metadata-internals.h: Keep mono_assembly_name_parse_full as
20677         private, since calling it to preserve the key requires
20678         freeing it manually.
20679         
20680 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
20681
20682         * locales.c : removed HAVE_ICU part.
20683
20684 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
20685
20686         * object.c (mono_class_create_runtime_vtable): Avoid calling 
20687         field_is_special_static if the klass has no special static fields.
20688
20689         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
20690         (MonoCachedClassInfo): Likewise.
20691
20692         * object.c (mono_class_has_special_static_fields): New helper function.
20693
20694 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20695
20696         * class.c (mono_class_create_from_typedef): Don't call 
20697         interfaces_from_typedef_full for enums.
20698         (mono_class_create_from_typedef): Compute the base types of enums directly
20699         without calling mono_class_setup_fields ().
20700         (mono_class_find_enum_basetype): New helper function.
20701
20702         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
20703         one place inside the string heap.
20704         
20705 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
20706
20707         * class.c: locking fixes, code cleanups, some docs added.
20708         Allocate some data structures in the image mempool.
20709
20710 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20711
20712         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20713         the example code.
20714         
20715 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
20716
20717         * class-internals.h, class.c, reflection.c: reduce memory taken by
20718         MonoClass.
20719
20720 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
20721
20722         * metadata.c, metadata.h, loader.h: documentation updates, code and
20723         API cleanups.
20724
20725 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20726
20727         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20728         the example code.
20729
20730         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
20731         page faults caused by the runtime while reading metadata.
20732
20733 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20734
20735         * socket-io.c: the field names were changed 3 months ago and no one
20736         realized until bug #76077 got filed!
20737
20738 2005-09-20  Martin Baulig  <martin@ximian.com>
20739
20740         * icall.c (assembly_icalls): Removed some unused debugger icalls.
20741
20742 2005-09-20  Martin Baulig  <martin@ximian.com>
20743
20744         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
20745         write the rank into the class entry.
20746
20747 2005-09-20  Martin Baulig  <martin@ximian.com>
20748
20749         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
20750
20751 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
20752
20753         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20754
20755         * icall.c (custom_attrs_defined_internal): New icall.
20756
20757         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
20758         function.
20759         (mono_custom_attrs_construct_by_type): New helper function.
20760
20761 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
20762
20763         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
20764         terminate the resulting string. Fixes #76123.
20765
20766 2005-09-16  Martin Baulig  <martin@ximian.com>
20767
20768         * mono-debug.c
20769         (mono_debug_add_method): Ignore inflated methods for the moment.
20770
20771 2005-09-14  Martin Baulig  <martin@ximian.com>
20772
20773         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
20774
20775 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
20776
20777         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
20778         return a success/failure indication.
20779         (mono_metadata_interfaces_from_typedef_full): Ditto.
20780         (get_constraints): Ditto.
20781
20782 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
20783
20784         * marshal.c (emit_marshal_array): Fix handling of null arrays.
20785         
20786         * marshal.c (emit_marshal_array): Add support for returning string
20787         arrays from delegates. Fixes #76063.
20788
20789         * marshal.c: Use the emit_ldloc/stloc macros where possible.
20790
20791 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
20792
20793         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
20794         icall.
20795
20796 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
20797
20798         * reflection.c icall.c: Fix after mono_get_exception_type_load
20799         signature change.
20800
20801         * assembly.c (mono_assembly_get_assemblyref): New helper function.
20802         (mono_assembly_load_reference): Use the new helper.
20803
20804         * class-internals.h (MonoLoaderError): New structure containing 
20805         information about type loading errors.
20806
20807         * class-internals.h loader.c: Add APIs to store per-thread loader
20808         error information.
20809
20810         * loader.c class.c: Set the loader error if needed.
20811
20812         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
20813
20814 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
20815
20816         * decimal.c: fixed to handle the broken ARM fp format.
20817
20818 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
20819
20820         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
20821         broken.
20822
20823 2005-09-06  Martin Baulig  <martin@ximian.com>
20824
20825         * domain.c (supported_runtimes): Added v2.0.50727.
20826
20827 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
20828
20829         * culture-info.h: reduce the size of some structures.
20830
20831 2005-09-05  Martin Baulig  <martin@ximian.com>
20832
20833         Reflect latest API changes in the August CTP.
20834
20835         * icall.c
20836         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
20837         ("MonoType.HasGenericArguments"): Removed.
20838         ("MonoMethod.BindGenericParameters"): Renamed to
20839         "MakeGenericMethod".
20840         ("MethodBuilder.BindGenericParameters"): Renamed to
20841         "MakeGenericMethod".    
20842
20843 2005-09-05  Martin Baulig  <martin@ximian.com>
20844
20845         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
20846
20847 2005-09-05  Martin Baulig  <martin@ximian.com>
20848
20849         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20850
20851         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
20852         generic_container is non-NULL.
20853
20854 2005-09-05  Martin Baulig  <martin@ximian.com>
20855
20856         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20857
20858         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
20859
20860 2005-08-29  Michal Moskal  <malekith@nemerle.org>
20861
20862         * reflection.c (encode_locals,
20863         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
20864         for large generic types.
20865
20866 2005-09-05  Martin Baulig  <martin@ximian.com>
20867
20868         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20869
20870         * class.c (mono_dup_array_type): New public method.
20871         (mono_metadata_signature_deep_dup): New public method.
20872         (dup_type): Correctly duplicate array and function types.
20873
20874 2005-09-05  Martin Baulig  <martin@ximian.com>
20875
20876         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20877
20878         * reflection.c (get_default_param_value_blobs): Handle generic types
20879         and generic methods.
20880
20881 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
20882
20883         * class.c: Fixed error reporting (method/class were inversed) for 
20884         inheritance demands.
20885         * security-manager.c|h: Added the AppDomain when calling the managed
20886         System.Security.SecurityManager.InheritanceDemand method.
20887
20888 2005-09-01  Raja R Harinath  <rharinath@novell.com>
20889
20890         * reflection.c (encode_marshal_blob): 'marshaltype' and
20891         'marshaltyperef' are alternate sources for the custom marshaler
20892         name.
20893
20894 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
20895
20896         * class.c: fix creation of array classes with rank == 1
20897         (patch by Ankit Jain <jankit@novell.com>).
20898
20899 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
20900
20901         * object.c: fix check for creating the bound data for arrays vs
20902         szarrays.
20903
20904 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20905
20906         * object.c: configuration file name is now based on the executable name,
20907         not the image name. Fixes bug #75931.
20908
20909 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
20910
20911         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
20912         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
20913
20914 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
20915
20916         * rand.c: Use wincrypt.h instead of WinCrypt.h.
20917
20918 2005-08-24  Ankit Jain  <jankit@novell.com>
20919             Raja R Harinath  <rharinath@novell.com>
20920
20921         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
20922           called by it recursively.
20923           (mono_class_init): Remove special case in pending_init handling, since it's
20924           superseded by the fix to mono_class_from_typeref.
20925
20926 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
20927
20928         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
20929         BROKEN_THREAD_START stuff.
20930
20931 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
20932
20933         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
20934         trampoline.
20935
20936         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
20937         
20938         * object.c (mono_delegate_ctor): Replace the original function address with
20939         a delegate trampoline.
20940
20941 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
20942
20943         * icall.c: add boolean argument to base64_to_byte_array and 
20944         InternalFromBase64String to control whether a whitespace-only string
20945         is allowed (or should casue a FormatException to be thrown). We need
20946         this as the behavior has changed between MS.NET 1.x and 2.0, and we
20947         to match the MS behaviour in both profiles.
20948         * appdomain.c: Bump corlib version.
20949
20950 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20951
20952         This patch implements a big portion of publisher policy
20953         support, used to bind assembly versions and redirect
20954         one assembly from version A to version B.
20955
20956         * assembly.c:
20957         New GSList loaded_assembly_bindings, for storing the cached
20958         assembly bindings.
20959         (assembly_binding_maps_name): New static function for checking if a 
20960         assembly binding information maps an assembly name.
20961         (mono_assembly_binding_info_free): New function for freeing
20962         assembly binding information resources.
20963         (get_publisher_policy_info): New static function for retrieving 
20964         assembly binding information from a MonoImage.
20965         (compare_versions): New static function for comparing an assembly
20966         binding information data and the version of an assembly name.
20967         (check_policy_versions): New static function for checking if an
20968         assembly binding info mapping an assembly name is valid for it.
20969         (mono_assembly_load_publisher_policy): New static function for
20970         loading the 'policy.major.minor.MyAssembly' image for an assembly
20971         with an assembly name 'aname'.
20972         (mono_assembly_bind_version): New static function for updating
20973         assembly redirection.
20974         (mono_assembly_apply_binding): New static function for applying
20975         assembly binding.
20976         (search_binding_loaded): New static function for searching 
20977         loaded assembly binding infos in the cache domain.
20978         (mono_assembly_load_full): Don't apply assembly binding for
20979         reflection only assemblies.
20980
20981         * metadata-internals.h: Add MonoAssemblyBindingInfo,
20982         which contains information about assembly binding. Also
20983         declare signature for mono_config_parse_publisher_policy ()
20984         function, used to retrieve pub policy info.
20985         
20986         * mono-config.c:
20987         (publisher_policy_start): New static function used to parse publisher 
20988         policy config files.
20989         (publisher_policy_parser): New static MonoParseHandler containing 
20990         the functions used when parsing config files.
20991         (mono_config_parse_publisher_policy): New function for parsing
20992         publisher policy files.
20993         
20994 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
20995
20996         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
20997
20998         * marshal.c (mono_delegate_free_ftnptr): Ditto.
20999
21000         * object.c (mono_get_addr_from_ftnptr): New helper function.
21001
21002         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
21003
21004         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21005
21006 2005-08-19  Dick Porter  <dick@ximian.com>
21007
21008         * threads.c, threads.h, appdomain.c, appdomain.h,
21009         profiler-private.h, monitor.c, object.c, object-internals.h,
21010         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
21011         store the thread ID, so it can hold a 64 bit value if needed.
21012
21013 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
21014
21015         * reflection.c (mono_reflection_create_dynamic_method): Store the
21016         handle class into the method references as well so ldtoken works in
21017         dynamic methods.
21018
21019         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
21020         types.
21021
21022 2005-08-19  Ankit Jain <jankit@novell.com>
21023
21024         Fix #75847.
21025         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
21026           here rather than using the method signature of a arbitrary function
21027           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
21028           two arguments.
21029           Hack done with Harinath.
21030
21031 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21032
21033         * threadpool.c: disable printing stack traces when we get a exception
21034         in a threadpool thread. I need to do more testing to figure out which
21035         cases actually print this. Fixes bug #75828.
21036
21037 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21038
21039         * icall.c: there might be ignored whitespace after the last '='. This
21040         fixes length computation and bug #75840.
21041
21042 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
21043
21044         * assembly.c (mono_assembly_load_full): Consider .exe extension as
21045         well. Fixes #75809.
21046
21047         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
21048         #75784.
21049         
21050         * reflection.c (create_custom_attr_data): Ditto.
21051
21052 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
21053
21054         * locales.c, culture-info.h : removed RegionLCIDMap.
21055         * culture-info-tables.h : regenerated.
21056
21057 2005-08-16  Martin Baulig  <martin@ximian.com>
21058
21059         * class.c (mono_type_get_name_recurse): Small fix.
21060
21061 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
21062
21063         * locales.c : indentation fixie.
21064
21065 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
21066
21067         * object-internals.h,
21068           locales.h,
21069           locales.c,
21070           culture-info.h,
21071           icall.c : added RegionInfo table support.
21072         * culture-info-table.h : regenerated for region support.
21073
21074 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
21075
21076         * reflection.c (resolve_object): handle all kinds of MonoMethod
21077         including generic ones
21078
21079 2005-08-12  Ankit Jain <jankit@novell.com>
21080
21081         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21082           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
21083
21084 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
21085
21086         * process.c: Don't close a thread handle when it's NULL. This is a
21087         workaround for bug #75733.
21088
21089 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
21090
21091         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21092
21093 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
21094
21095         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21096
21097 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21098
21099         * threadpool.c: if a work item in the thread pool has a callback that
21100         catches a exception, don't propagate it after invoking the callback.
21101         Fixes bug #75336.
21102
21103 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
21104
21105         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21106
21107         * class-internals.h (MonoCachedClassInfo): Add some new fields.
21108
21109         * class.c (mono_class_init): Load field info lazily in the AOT case.    
21110
21111         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21112
21113 2005-08-03  Ankit Jain  <jankit@novell.com>
21114
21115         Fix #75683.
21116         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21117           PInvoke calling convention is 0.
21118
21119 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21120
21121         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21122         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21123
21124 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21125
21126         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21127         to handle threads not started by the GC (patch by Michael Meeks
21128         <michael.meeks@novell.com>).
21129
21130 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21131
21132         * reflection.c: Make buffer used in emitting types larger for some
21133         big generic types (patch by Michal Moskal).
21134
21135 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21136
21137         * mono-debug.c: Fix some (not all) alignment problems.
21138
21139 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21140
21141         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21142         Invoke mono_image_load_from_data_full passing the refonly
21143         parameter.
21144
21145         * assembly.c
21146         (mono_assembly_open_from_bundle): Add the refonly argument, 
21147         in order to pass it to other methods it calls to.
21148         (do_mono_assembly_open): Add the refonly argument, in order 
21149         to pass it to other methods it calls to.
21150         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21151         the refonly parameter to it.
21152
21153         * image.c: Add loaded_images_refonly_hash and
21154         loaded_images_refonly_guid_hash to cache the reflection
21155         only loaded images.
21156         (mono_images_init): Initialize the hash tables used for
21157         caching the reflection only images.
21158         (load_modules): Invoke mono_image_open_full passing the refonly
21159         parameter to load the modules the correct way.
21160         (build_guid_table): Add the refonly argument, to re-build the 
21161         correct hash table.
21162         (do_mono_image_open): Added the refonly argument, in order to
21163         define it for the loaded image.
21164         (mono_image_loaded_full): New function, which receives an
21165         additional parameter to look for the image in the refonly or
21166         non-refonly section.
21167         (mono_image_loaded): Updated, using mono_image_loaded_full.
21168         (mono_image_loaded_by_guid_full): The same case that happens
21169         with mono_image_loaded_full.
21170         (mono_image_loaded_by_guid): Likewise.
21171         (register_image): Use the ref_only variable inside MonoImage
21172         to decide in which hash table store the current image.
21173         (mono_image_open_from_data_full): Rename
21174         mono_image_open_from_data to mono_image_open_from_data_full,
21175         adding the refonly argument, to define the ref_only variable 
21176         inside MonoImage.
21177         (mono_image_open_from_data): Return 
21178         mono_image_open_from_data_full.
21179         (mono_image_open_full): Rename mono_image_open to
21180         mono_image_open_full, receiving the new refonly argument,
21181         to pass it to inner methods.
21182         (mono_pe_file_open): Update this function, to open
21183         a MonoImage as a non-refonly image.
21184         (mono_image_close): Use the refonly variable inside
21185         MonoImage to remove the image from the correct caches.
21186
21187         * image.h: Add the signatures of mono_image_open_full,
21188         mono_image_open_from_data_full, mono_image_loaded_full,
21189         mono_image_loaded_by_guid_full.
21190
21191         * metadata-internals.h: Add the ref_only field to 
21192         MonoImage.
21193         
21194 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21195
21196         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21197         Fix the last behavior, which used to load the assemblies and
21198         extract MonoReflectionAssemblyName information, instead of
21199         extract it from the metadata tables. Needed for Reflection
21200         Only assemblies.
21201         
21202 2005-07-29  Martin Baulig  <martin@ximian.com>
21203
21204         * mono-debug-debugger.c
21205         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21206         not initialized.
21207
21208         * mono-debug.c
21209         (mono_debug_address_from_il_offset): Check whether we have
21210         debugging support before attempting to take the lock.
21211         (mono_debug_source_location_from_address): Likewise.
21212         (mono_debug_source_location_from_il_offset): Likewise.
21213         (mono_debug_il_offset_from_address): Likewise.
21214         (mono_debug_address_from_il_offset): Likewise.
21215
21216 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21217
21218         * class.c (mono_class_from_name_case): Add support for dynamic images.
21219         Fixes #75650.
21220
21221         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21222         for #75479.
21223
21224 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21225         
21226         * reflection.c (mono_method_get_object): Fix warning.
21227
21228 2005-07-28  Martin Baulig  <martin@ximian.com>
21229
21230         * mono-debug.c
21231         (mono_debug_add_wrapper): Also write the wrapper type.
21232
21233 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21234
21235         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21236         
21237         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21238         data indicates the class has none.
21239
21240 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21241
21242         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21243         loader lock with the debugger lock. Prevents deadlocks for beagle.
21244
21245         Beagle can now run on an smp box for a weekend without any
21246         issues. Woohoo!
21247
21248 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21249
21250         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21251         in a module. Fixes #75629.
21252
21253 2005-07-26  Martin Baulig  <martin@ximian.com>
21254
21255         * mono-debug.c (mono_debug_add_wrapper): New static method.
21256         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21257         interncall or a wrapper.
21258
21259         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21260         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21261         (MONO_DEBUGGER_VERSION): Bump to 51.
21262
21263         * mono-debug-debugger.c
21264         (mono_debugger_add_type): Removed this empty function.
21265         (mono_debugger_add_method): Likewise.
21266
21267 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21268
21269         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21270         before accessing method->slot.
21271
21272 2005-07-21  Jb Evain  <jbevain@gmail.com>
21273
21274         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21275         Fixes #75010.
21276
21277 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21278
21279         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21280         #75587.
21281
21282 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21283
21284         * image.h image.c: Add mono_image_get_guid () API function.
21285
21286 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21287
21288         There were issues when multiple threads tried to load
21289         assemblies. A deadlock was created between assemblies_mutex and
21290         mono_domain_assemblies_lock. This fixes the issue by making the
21291         assembly ref counting be lock free. See bug 75586.
21292         
21293         * image.c (mono_image_close): The add ref function here was using
21294         Interlocked operations while the unref was using a mutex and a
21295         --. I don't think this was ever a bug that would be exposed in a
21296         non-pendantic way (ie, by an embedder doing a ref on one thread
21297         and an unref on another), but for the sake of correctness, this is
21298         now Interlocked.
21299
21300         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21301         (mono_assembly_load_reference): Call mono_assembly_addref rather
21302         than touching the refcount ourselves.
21303         (mono_assembly_close): Use InterlockedDecrement to unref the
21304         assembly. Don't acquire the lock unless it is actually needed.
21305
21306 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21307
21308         * class.c (mono_class_layout_fields): Fix calculation of has_references
21309         for generic types.
21310
21311 2005-07-12  Martin Baulig  <martin@ximian.com>
21312
21313         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21314
21315         * metadata.c
21316         (mono_type_hash): Provide better hashing for generic instances.
21317         (mono_generic_inst_hash): Improve hashing.
21318         (mono_generic_class_hash): Likewise.
21319
21320         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21321         generic instances.
21322
21323 2005-07-12  Martin Baulig  <martin@ximian.com>
21324
21325         * reflection.c (mono_reflection_create_runtime_class): Remove the
21326         hack for generic type definitions and non-`Run' assemblies.
21327         (mono_reflection_bind_generic_parameters): Also use
21328         `klass->wastypebuilder' to check for TypeBuilders.
21329
21330 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21331
21332         * class.c (mono_class_layout_fields): Fix calculation of has_references
21333         for generic types.
21334
21335         * class.c (inflate_generic_class): Fix a leak.
21336         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21337         for generic types.
21338
21339 2005-07-11  Martin Baulig  <martin@ximian.com>
21340
21341         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21342         on error.
21343
21344 2005-07-11  Martin Baulig  <martin@ximian.com>
21345
21346         * loader.c (find_method): Also lookup in
21347         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
21348
21349 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21350
21351         * appdomain.c (mono_domain_unload): Don't free the error message
21352         before passing it to mono_get_exception_...
21353
21354         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
21355         
21356 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
21357
21358         * threads.c: try to better guess an available RT signal (bug #75387).
21359
21360 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21361
21362         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
21363         and CACHE_OBJECT.
21364
21365 2005-07-07  Martin Baulig  <martin@ximian.com>
21366
21367         * class.c (mono_type_get_name_full): Return NULL for
21368         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
21369         fixes #75408.
21370
21371 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21372
21373         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
21374         exit the appdomain as well being aborted.
21375
21376         * threadpool.c: Create all threadpool threads inside the root appdomain, and
21377         change back to the root domain after calling managed code. This enables
21378         appdomains using threadpools to be unloaded.
21379
21380 2005-07-07  Martin Baulig  <martin@ximian.com>
21381
21382         * class-internals.h
21383         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
21384         into `MonoDynamicGenericClass' since we only need it for dynamic
21385         types.
21386
21387         * reflection.c (mono_class_bind_generic_parameters): We don't need
21388         to compute the `parent' here.
21389
21390 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
21391
21392         * culture-info-table.h : regenerated.
21393
21394 2005-07-06  Martin Baulig  <martin@ximian.com>
21395
21396         * icall.c
21397         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
21398
21399         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
21400
21401 2005-07-06  Martin Baulig  <martin@ximian.com>
21402
21403         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
21404         we're doing a signature-only comparision; fixes #74945.
21405
21406 2005-07-06  Martin Baulig  <martin@ximian.com>
21407
21408         * class-internals.h (MonoGenericClass): Moved some things out into
21409         a new `MonoInflatedGenericClass' type.  
21410         (MonoInflatedGenericClass): New type; the `klass' of a
21411         `MonoGenericClass' is now computed lazyly in
21412         mono_get_inflated_generic_class().      
21413
21414         * class.c (mono_get_inflated_generic_class): New public function.
21415         (mono_class_inflate_generic_method): Removed the unused
21416         `MonoClass *' argument.
21417         (setup_generic_vtable): Don't call mono_get_inflated_method() on
21418         all the methods.
21419         (mono_class_create_generic): Make this static and merge it with
21420         mono_class_create_generic_2(); we're now called automatically from
21421         mono_get_inflated_generic_class().
21422
21423         * loader.c (mono_method_signature): Call
21424         mono_get_inflated_method() here.
21425
21426 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
21427
21428         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
21429         type of fields with RVA.
21430
21431         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
21432         for this pseudo class.
21433         (my_mono_class_from_generic_parameter): Likewise.
21434         (mono_class_init): Allow interfaces to have cctors.
21435
21436 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21437
21438         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
21439         lazily for AOT methods.
21440
21441 2005-07-05  Martin Baulig  <martin@ximian.com>
21442
21443         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
21444         returns FALSE for a successful match, not TRUE.
21445
21446 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21447
21448         * loader.c (mono_method_get_index): Optimize this a bit.
21449
21450 2005-07-04  Martin Baulig  <martin@ximian.com>
21451
21452         * class.c
21453         (class_compute_field_layout): Move the check for generic type
21454         definitions into mono_class_layout_fields().  Fixes #74684.
21455         (mono_class_from_generic_parameter): Correctly compute
21456         `klass->parent'; fixes #75457.
21457
21458         * reflection.c (register_assembly, register_module): Make sure
21459         `domain->rejobject_hash' is already created.
21460
21461 2005-07-02  Martin Baulig  <martin@ximian.com>
21462
21463         * class-internals.h
21464         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
21465         `MonoDynamicGenericClass'.      
21466
21467 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
21468
21469         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
21470         returned by a field getter is null, since null is a valid value.
21471
21472 2005-07-01  Martin Baulig  <martin@ximian.com>
21473
21474         * reflection.c (mono_reflection_generic_class_initialize): Update
21475         the `dgclass->fields [i].parent' to the correct class.
21476         (mono_image_get_fieldref_token): Use the declaring type, not the
21477         reflected type.
21478
21479 2005-07-01  Martin Baulig  <martin@ximian.com>
21480
21481         * loader.c (find_method): Also look in the interfaces; fixes #75429.
21482
21483 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
21484
21485         * threads.c (thread_cleanup): assert that thread != NULL
21486         (wait_for_tids_or_state_change): We were using the wrong variable
21487         when accessing wait->threads. `i' was always out of the bounds of
21488         the array.
21489
21490 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21491
21492         * loader.c: map user32 and kernel32 to libMonoSupportW
21493
21494 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
21495
21496         * appdomain.c (unload_thread_main): Mark this as WINAPI.
21497
21498 2005-06-28  Martin Baulig  <martin@ximian.com>
21499
21500         * loader.c (method_from_methodspec): Fix #75334.
21501
21502 2005-06-28  Martin Baulig  <martin@ximian.com>
21503
21504         Fix #74953 - Arrays now implement the generic IList<T> interface
21505         on the 2.0 platform.
21506
21507         * class-internals.h (MonoDefaults): Added `generic_array_class'.
21508
21509         * reflection.c (mono_class_bind_generic_parameters): New public
21510         function; similar to mono_reflection_bind_generic_parameters(),
21511         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
21512
21513         * domain.c (mono_init_internal): Try to initialize.
21514         `mono_defaults.generic_array_class' here; this'll only succeed if
21515         we're using the 2.0 corlib.
21516
21517         * icall.c
21518         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
21519         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
21520         (mono_lookup_internal_call): Added support for nested classes.
21521
21522         * loader.c
21523         (mono_get_method_from_token): Set `result->signature->pinvoke' if
21524         we're an interncall and have generic arguments.
21525
21526         * class.c
21527         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
21528         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
21529         instance of System.Array.InternalArray<T> for arrays, so they
21530         implement the generic IList<T> interface.
21531
21532 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
21533
21534         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
21535         (chastamar@yahoo.com). Fixes #75374.    
21536
21537 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
21538
21539         * culture-info-table.h: regenerated.
21540
21541 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21542
21543         * icall.c: handle spaces correctly for base64 strings.
21544
21545 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
21546
21547         * *.c: Kill some warnings.
21548
21549 2005-06-23  Duncan Mak  <duncan@novell.com>
21550
21551         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
21552         that this builds on Solaris 10 (x86).
21553
21554 2005-06-23  Martin Baulig  <martin@ximian.com>
21555
21556         * class.c
21557         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
21558         generic type definitions.
21559
21560 2005-06-23  Martin Baulig  <martin@ximian.com>
21561
21562         Fix #75331.
21563
21564         * metadata.c (mono_class_get_overrides): Renamed to
21565         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
21566         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
21567         pass it to mono_get_method_full().
21568
21569 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
21570
21571         * reflection.c (mono_reflection_create_runtime_class): take the
21572         mono_domain_lock in this method. Prevents deadlocks
21573
21574 2005-06-22  Martin Baulig  <martin@ximian.com>
21575
21576         * loader.c (method_from_methodspec): Fix #75330.
21577
21578 2005-06-22  Martin Baulig  <martin@ximian.com>
21579
21580         * reflection.c (type_get_qualified_name): Use
21581         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
21582         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
21583         argument; use it if we don't have an assembly name.
21584
21585 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
21586
21587         * object.c: In mono_message_init, set "copy out" flag for in
21588         parameters with the [Out] flag.
21589
21590 2005-06-21  Martin Baulig  <martin@ximian.com>
21591
21592         * class.c
21593         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
21594         and MONO_TYPE_PTR.
21595
21596 2005-06-21  Martin Baulig  <martin@ximian.com>
21597
21598         * class.c (mono_class_init): Don't initialize `class->fields' for
21599         generic instances since they're initialized again in
21600         compute_field_layout(). 
21601         (compute_field_layout): Set the field's `generic_info' here; fix
21602         #75320. 
21603
21604 2005-06-21  Martin Baulig  <martin@ximian.com>
21605
21606         * class-internals.h
21607         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
21608
21609         * metadata.c (mono_metadata_generic_method_equal): Also
21610         distinguish the `generic_class'; fixes #75334.
21611
21612 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21613
21614         * domain.c:
21615         * appdomain.c:
21616         * domain-internals.h:
21617         * reflection.c: 'domain_assemblies' field is now protected by its own
21618         lock. Don't call into managed code to run the AssemblyLoad event if we
21619         now there are no registered delegates for it.
21620
21621 2005-06-20  Martin Baulig  <martin@ximian.com>
21622
21623         * class.c (mono_class_is_assignable_from): Use a custom version of
21624         mono_class_has_parent() to make things work for generic instances;
21625         fix #75300.
21626
21627 2005-06-20  Martin Baulig  <martin@ximian.com>
21628
21629         * loader.c (method_from_methodspec): Apply a patch from
21630         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
21631
21632 2005-06-20  Martin Baulig  <martin@ximian.com>
21633
21634         * class.c (mono_class_init): Reverted Zoltan's last change; it
21635         breaks generics.
21636
21637 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
21638
21639         * threads.c (wait_for_tids_or_state_change): Add missing locking.
21640
21641 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21642
21643         * socket-io.c: fix the index in the socket array for writable/error
21644         sockets. Fixes bug #75306.
21645
21646 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
21647
21648         * class.c (mono_class_init): Allow interfaces to have static ctors.
21649
21650 2005-06-17  Martin Baulig  <martin@ximian.com>
21651
21652         * loader.c (method_from_methodspec): Use `context->container' when
21653         parsing the `gmethod->inst'.
21654
21655 2005-06-17  Martin Baulig  <martin@ximian.com>
21656
21657         * class.c (mono_type_get_name_recurse): Don't add the assembly
21658         name for type arguments.
21659
21660 2005-06-15  Martin Baulig  <martin@ximian.com>
21661
21662         * reflection.c (mono_image_get_inflated_method_token): Encode
21663         correct klass; fixes #75260.
21664
21665 2005-06-13 Michal Moskal <malekith@nemerle.org>
21666
21667         * icall.c: Make GetCorrespondingMethod/Constructor take
21668         MonoReflectionMethod method not MonoMethod. Removed
21669         MonoType.GetCorrespondingField, and make
21670         MonoGenericType.GetCorrespondingField take name not
21671         MonoClassField.
21672
21673 2005-06-13  Michal Moskal <malekith@nemerle.org>
21674
21675         * reflection.c (field_encode_signature, encode_locals):
21676          Make sizes of buffers for types larger (for big generic types).
21677          (create_generic_typespec,
21678          mono_reflection_sighelper_get_signature_local,
21679          mono_reflection_sighelper_get_signature_field):
21680          Add asserts for too small buffers.
21681
21682 2005-06-15  Martin Baulig  <martin@ximian.com>
21683
21684         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
21685         if our parent is not a dynamic type.
21686
21687 2005-06-15  Martin Baulig  <martin@ximian.com>
21688
21689         * class-internals.h (MonoTypeNameFormat): New enum.
21690
21691         * class.c
21692         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
21693         (mono_type_get_full_name): Removed.
21694         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
21695         argument instead of the boolean's.
21696
21697         * icall.c (ves_icall_System_MonoType_getFullName):
21698         Added `gboolean assembly_qualified'.    
21699
21700         * reflection.h
21701         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
21702
21703         * reflection.c (mono_reflection_parse_type): Parse the new type
21704         name format.
21705
21706 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21707
21708         * icall.c: no need to convert from utf16 to utf8 and then back again
21709         after the call to GetLogicalDrives.
21710
21711 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21712
21713         * icall.c: frombase64. Fix problems exposed by new tests.
21714
21715 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21716
21717         * icall.c: added internal calls for converting char [] and strings in
21718         base64 into byte [].
21719
21720 2005-06-10  Martin Baulig  <martin@ximian.com>
21721
21722         * class.c (mono_class_create_generic_2): Read the nested classes
21723         from the metadata rather than from `gklass->nested_classes' since
21724         `gklass' might not be initialized yet.
21725
21726 2005-06-09  Duncan Mak  <duncan@novell.com>
21727
21728         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
21729         all public headers. Fixes #74919.
21730
21731 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
21732
21733         * domain.c: The key for proxy_vtable_hash is now a pointer
21734         array. Added new GHashFunc and GCompareFunc functions for this.
21735
21736         * class.h: The list of interfaces in MonoRemoteClass is known in
21737         advance and can't grow (we create a new MonoRemoteClass if needed),
21738         so now the interface array can be allocated together with
21739         MonoRemoteClass.
21740         
21741         * object.c: Added a new method create_remote_class_key.
21742         Fixed mono_remote_class so it does not depend on
21743         mono_upgrade_remote_class.
21744         Removed extend_interface_array.
21745         Added new method clone_remote_class(), which makes a copy of a remote
21746         class and adds a new interface or class to it.
21747         mono_upgrade_remote_class() now creates a new remote class (or gets
21748         it from the cache) if an vtable upgrade is needed. In this way
21749         we make sure that other objects sharing the same remote class
21750         don't get the new vtable with unwanted interfaces.
21751         
21752         * object-internals.h:
21753         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
21754         
21755         * marshal.c: Track changes in mono_upgrade_remote_class().
21756
21757 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
21758         * icall.c: Add runtime methods for obtaining members of inflated
21759         class, which were created from supplied non-inflated members. It
21760         is used in internal Get{Method,Constructor,Field} methods in
21761         System.Type
21762
21763 2005-06-09  Martin Baulig  <martin@ximian.com>
21764
21765         * reflection.c
21766         (mono_reflection_bind_generic_method_parameters): Fix #75169.
21767
21768 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21769         * reflection.c (mono_image_basic_init): Define
21770         Version in MonoDynamicAssembly. 
21771         
21772 2005-06-08  Martin Baulig  <martin@ximian.com>
21773
21774         Fix #75136.
21775
21776         * loader.c
21777         (mono_method_signature_full): New public method; takes a
21778         `MonoGenericContext *'.
21779         (find_method): Use mono_method_signature_full() and pass the
21780         klass'es context to it.
21781
21782         * class.c (mono_class_is_inflated_method): Use
21783         mono_method_signature_full() and pass the context to it.
21784
21785 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
21786
21787         * object.c: add proper locking in mono_remote_class_vtable(),
21788         fixes possible memory corruption.
21789
21790 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
21791
21792         * marshal.c (mono_remoting_marshal_init): set
21793         initialized after initialization.
21794
21795 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21796
21797         * locales.c : hush.
21798
21799 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
21800
21801         * object.c (extend_interface_array): fix really silly
21802         memory corrupting / comparison bug.
21803
21804 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21805
21806         * reflection.c: Functions added to support the creation
21807         of CustomAttributeData, which includes Attribute data
21808         used by ReflectionOnly methods.
21809
21810         * reflection.h:  mono_reflection_get_custom_attrs_data and
21811          mono_custom_attrs_data_construct added (functions exposed).
21812
21813          * icall.c: Added mono_reflection_get_custom_attrs_data
21814          as icall.
21815         
21816 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
21817
21818         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
21819         lupus's request.
21820
21821 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
21822
21823         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
21824
21825         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
21826         dynamic DllImportAttribute.
21827
21828         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
21829         dynamic DllImportAttribute.
21830
21831         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
21832         Fixes #75162.
21833
21834 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21835
21836         * threads.c: avoid segfault when an unstarted thread is aborted.
21837
21838 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
21839
21840         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
21841         Returns the name and version of the runtime for reporting.
21842
21843 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21844
21845         * appdomain.c: bump corlib version.
21846         * object-internals.h: new field in MonoReflectionAssembly.
21847
21848 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21849
21850         * object-internals.h: Carlos forgot to add this field.
21851
21852 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21853
21854         * icall.c: Added create_version to create instances
21855         of Version of MonoReflectionAssemblyName. This change helps
21856         the AssemblyName tests to keep running fine.
21857         
21858 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
21859   
21860         * object.c (mono_method_return_message_restore): A somehow less
21861         intrusive fix for #75138.
21862
21863 2005-06-03  Raja R Harinath  <rharinath@novell.com>
21864
21865         * object.c (mono_method_return_message_restore): Fix computation
21866         of expected number of out args.
21867
21868 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
21869
21870         * reflection.c (mono_image_get_method_info): Fix the case when the
21871         charset is empty.
21872
21873 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
21874
21875         * object.c: Added missing null check in
21876           mono_method_return_message_restore.
21877
21878 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
21879
21880         * reflection.c (mono_image_get_method_info): Handle the case when
21881         dllentry is empty.
21882
21883 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
21884
21885         * object.c: When creating the vtable for a proxy, take into account
21886         all inherited interfaces, not only the ones registered in
21887         iclass->interfaces. This fixs bug #74996.
21888         Also, in mono_method_return_message_restore, verify that the array
21889         of out args has the expected lengh.
21890
21891 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21892
21893         * socket-io.c: update the timeout in Poll when the call is interrupte.
21894
21895 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21896
21897         * socket-io.c: support abort/suspend in Select_internal after last
21898         change.
21899
21900 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21901
21902         * threadpool.c: remove warning.
21903
21904 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21905
21906         * icall.c:
21907         * socket-io.[ch]: Select_internal uses poll() now when available, thus
21908         removing the 1024 limit from select(). Runtime part of the fix for
21909         bug #71203.
21910
21911 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21912
21913         * socket-io.c: when resolving the addresses for the same
21914         host returned by gethostname(), get the local IPs from the interface
21915         list. Loopback addresses are discarded if the are interfaces up with
21916         non-loopback ones. Fixes bug #63265.
21917
21918 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
21919
21920         * appdomain.c, verify.c, object-internals.h, reflection.c:
21921         bumped corlib number to 36, and added new extra_flags field
21922         to ReflectionMethodBuilder and friends.  Fixes #75060.
21923
21924 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
21925
21926         * gc.c: register a new weak link only if the object is non-null
21927         (fixes bug#75047).
21928
21929 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21930
21931         * culture-info.h : short time pattern too.
21932
21933 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21934
21935         * culture-info.h : expand long time pattern string length.
21936
21937 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21938
21939         * culture-info-table.h : update (more French date format; #72788).
21940
21941 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
21942
21943         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
21944         the method is static. Fixes #75029.
21945
21946 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
21947
21948         * reflection.c: Update the table_idx field of method builders after
21949         saving the module, since it can change. This is a workaround for
21950         bug #74914. 
21951
21952 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21953
21954         * culture-info-table.h : update (additional French date format).
21955
21956 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
21957
21958         * icall.c (ves_icall_type_Equals): Revert last change.
21959         
21960         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
21961
21962         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
21963
21964 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
21965
21966         * class-internals.h: Added executioncontext_class field to 
21967         MonoDefaults structure.
21968         * domain.c: Cache System.Threading.ExecutionContext class in 
21969         mono_defaults.
21970         * object.c: Capture the ExecutionContext for asynchroneous calls in
21971          mono_async_result_new.
21972         * object-internals.h: Added execution_context and original_context 
21973         fields to MonoAsyncResult. Added execution_context to MonoThread.
21974         * security-manager.c|.h: Added mono_get_context_capture_method to 
21975         return the capture method (if required by the security manager or by
21976         the framework version used).
21977         * threadpool.c: Apply capture (if present) ExecutionContext in 
21978         mono_async_invoke and revert to original context after it completes.
21979
21980 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
21981
21982         * culture-info-table.h : updated (real hacky solution for zh-CHT).
21983
21984 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
21985
21986         * culture-info-table.h : zh-CHT related workaround.
21987
21988 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
21989
21990         * marshal.c (emit_marshal_custom): Add some error checking and call the
21991         methods in the ICustomMarshaler interface. Fixes #74875.
21992         
21993         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
21994         native->managed wrappers.
21995
21996 2005-05-12  Martin Baulig  <martin@ximian.com>
21997
21998         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
21999         here and use the loader lock.
22000
22001         * mono-debug.c: Properly lock when the debugger is not attached.
22002         (mono_debug_init): Release the initial lock if we're not running
22003         in the debugger.
22004
22005 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22006
22007         * marshal.c (emit_marshal_custom): Pass through NULL values without
22008         calling the custom marshalling routines.
22009
22010         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
22011         conversion in structures. Fixes #74882.
22012
22013 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
22014
22015         * culture-info-table.h : zh-* cultures were missing.
22016
22017 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
22018
22019         * threads.c: Added a new event background_change_event which is signaled
22020         when a thread changes its background mode.
22021         Moved here several checks previously done in managed code. The checks
22022         require the thread lock, and using the thread lock in managed code
22023         can result in deadlocks.
22024         Merged Start_internal and Thread_internal into a single method. Now 
22025         Thread_internal does all work of creating and starting a thread.
22026         Added icalls for setting and getting the state of the object. Moved from
22027         managed code to avoid locking there.
22028         Added wait_for_tids_or_state_change() which is called instad of
22029         wait_for_tids when waiting for non-backround threads to end. This method
22030         will return if one of the threads ends or the background_change_event
22031         is signaled.
22032         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
22033         the background mode. This method signals the background_change_event
22034         event.
22035         * icall.c:
22036         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
22037         removed Start_internal.
22038         
22039 2005-05-11  Martin Baulig  <martin@ximian.com>
22040
22041         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
22042         to order of some fields to get proper alignment on 64-bit machines.
22043
22044 2005-05-11  Martin Baulig  <martin@ximian.com>
22045
22046         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
22047         changes as they're broken and completely fuck up the debugger.
22048
22049         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
22050
22051 2005-05-10  Martin Baulig  <martin@ximian.com>
22052
22053         * reflection.c (mono_reflection_generic_class_initialize): Don't
22054         call mono_class_setup_parent() here.
22055
22056 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22057
22058         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
22059         send/receive timeout use an integer in milliseconds. We were using a
22060         struct timeval.
22061
22062 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22063
22064         * locales.c:
22065         (internal_get_cultures): reserve the first slot of the array for the
22066         InvariantCulture, which will be filled in managed code.
22067
22068 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
22069
22070         * reflection.c (mono_image_fill_module_table): Initialize the
22071         GENERATION field as well.
22072
22073 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22074
22075         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22076         Monitor.Enter on the object.
22077
22078 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
22079
22080         * threads.c: Enable the wait for running threads when exiting.
22081         * icall.c: Suspend all threads before exiting.
22082
22083 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
22084
22085         * assembly.c (mono_assembly_load_reference): Fix warning.
22086
22087 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22088
22089         * threadpool.c: changed the default number of threads per cpu. From now
22090         on, the default will be 20 + (5 * number of cpus) instead of 50.
22091
22092 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
22093
22094         * loader.c (mono_method_get_signature_full): Add locking here.
22095
22096 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
22097
22098         * appdomain.c: Moved methods for parsing and freeing assembly
22099         names to assembly.c.
22100         * assembly.c, domain-internals.h: Created public methods for parsing
22101         assembly names. Fixed mono_assembly_load_with_partial_name:
22102         it now finds the best match, taking into account the version,
22103         token and culture specified in the partial name. Also return
22104         the latest version if no version information is specified.
22105
22106 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22107
22108         * threadpool.c: replace check for SocketAsyncCall class.
22109
22110 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22111
22112         * threadpool-internals.h:
22113         * Makefile.am: added threadpool-internals.h
22114
22115         * threadpool.c: call mono_unhandled_exception on exceptions not handled
22116         that happen in threadpool threads (tested on MS).
22117         (mono_thread_pool_remove_socket): new function that dispatch any pending
22118         AIO call on a socket that is closing. By now only epoll really needs it,
22119         as select/poll wake up when the socket closes.
22120
22121
22122         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22123
22124 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22125
22126         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22127
22128 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22129
22130         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22131
22132 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22133
22134         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22135         has an abort request, convert it into a suspend request.
22136
22137 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22138
22139         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22140         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22141         is not supported yet.
22142
22143 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22144
22145         * image.c: register assemblies loaded from data (bundles) in the loaded
22146         assemblies hash. Fixes bug #74772.
22147
22148 2005-04-29  Martin Baulig  <martin@ximian.com>
22149
22150         * class.c (mono_type_get_name_recurse): Update to the new naming
22151         schema from the latest .NET 2.x beta2.
22152         (mono_class_setup_vtable_general): If we're a generic instance,
22153         copy the vtable from our generic type definition and inflate all
22154         the methods in it.
22155
22156         * loader.c (find_method): Update to the new naming schema from the
22157         latest .NET 2.x beta2.
22158
22159 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22160
22161         * class.c (mono_class_init): Add a mono_loader_unlock to the
22162         #74734 fix.
22163
22164 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22165
22166         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22167         suspend_all_other_threads () call for the time being, since it can hang.
22168
22169         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22170         the background threads to exit, since it can also hang.
22171
22172         * class.c (mono_class_init): Applied patch from Ankit Jain 
22173         (radical@gmail.com). Avoid pending init errors when a field refers
22174         to a nested class using a typeref. Fixes #74734.
22175
22176         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22177         this for dynamic modules.
22178
22179 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22180
22181         * threads.c: don't wait for threads that are in the process of aborting
22182         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22183         and waiting for background threads to finish. This makes xsp and
22184         mod-mono-server exit without random length delays and/or hangs.
22185
22186 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22187
22188         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22189
22190 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22191
22192         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22193         dynamic types to prevent infinite loops. Fixes #74727.
22194
22195         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22196         ..._is_assignable_to.
22197
22198 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22199
22200         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22201
22202 2005-04-25  Martin Baulig  <martin@ximian.com>
22203
22204         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22205
22206         * domain.c
22207         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22208
22209         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22210
22211         * reflection.c (build_compressed_metadata): Set metadata header
22212         version to 2.0.
22213
22214 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22215
22216         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22217         number into an integral and a decimal part. Fixes #70473.
22218
22219         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22220
22221 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22222
22223         * culture-info-table.h : reflected the latest locale-builder output.
22224
22225 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22226
22227         * threadpool.c: check for SuspendRequested too when deciding if
22228         mono_thread_interruption_checkpoint should be called.
22229
22230 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22231
22232         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22233         * threads.c: remove interruption_mutex and use Interlocked instead. When
22234         suspending all the threads, wait for all the suspended events at once.
22235         If we're shutting down and get an APC that is going to be queued,
22236         call mono_thread_execute_interruption immediately, as the thread might
22237         be sleeping on a pthread condition or mutex.
22238
22239         * icall.c: call mono_runtime_set_shutting_down before suspending the
22240         threads.
22241
22242         Fixes bug #74693. And now xsp is happier when exiting.
22243
22244 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22245
22246         * loader.c (mono_stack_walk): Fix #74690.
22247
22248 2005-04-22  Martin Baulig  <martin@ximian.com>
22249
22250         * mono-debug.h (MonoDebugMethodJitInfo): Added
22251         `MonoDebugMethodJitInfo *jit'.
22252
22253         * mono-debug.c (mono_debug_read_method): Cache the
22254         MonoDebugMethodJitInfo in `address->jit'.
22255         (mono_debug_free_method_jit_info): New public method.
22256
22257 2005-04-22  Martin Baulig  <martin@ximian.com>
22258
22259         * class.c (mono_class_is_assignable_from): Disallow
22260         type parameter -> interface.
22261
22262 2005-04-21  Dick Porter  <dick@ximian.com>
22263
22264         * threads.c (mono_thread_create): Turn an assertion into an error.
22265
22266 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22267
22268         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22269         
22270         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22271         Fix some gcc 4.0 warnings.
22272
22273 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22274
22275         * file-io.c: fix alt dir separator char on unix systems
22276         and cleanup (fixes bug #71214).
22277
22278 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22279
22280         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22281         a call to a remote domain, since the method may be an
22282         interface method in the client domain. This fixes bug #74192.
22283
22284 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22285
22286         * threadpool.c: recv/send are now performed before going back to managed
22287         code to save one transition.
22288
22289 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22290
22291         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22292
22293         * metadata/threadpool.c: removed hack to workaround the bug above.
22294
22295         Fixes bug #74618.
22296
22297 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22298
22299         * reflection.c reflection.h: Fix handling of parameter defaults in
22300         dynamic methods. Also fixes handling of parameter attributes.
22301         Fixes #74609.
22302
22303         * mono-debug.c (mono_debug_close_image): Fix warning.
22304
22305 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22306
22307         * socket-io.h: replaced old unused field with new 'blocking'.
22308         * threadpool.c: restore socket blocking state on windows(tm).
22309
22310 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22311
22312         * icall.c: don't return the codebase in the AssemblyName[] returned by
22313         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22314         * object-internals.h: Removed FIXME (fields were presents) and fixed
22315         versioncompat declaration.
22316
22317 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22318
22319         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22320         not closed, so don't cleanup when it happens.
22321
22322 2005-04-13  Chris Toshok  <toshok@ximian.com>
22323
22324         * mono-debug-debugger.h: change prototype for
22325         mono_debugger_lookup_type.
22326
22327         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22328         this function, although it should probably be named
22329         mono_debugger_init_type.
22330
22331 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22332
22333         * threadpool.c: fix non-AIO case.
22334
22335 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22336
22337         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22338         the built-in profiler to measure just JIT compilation times.
22339
22340 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22341
22342         * threadpool.c: the epollfd might be closed by another thread at
22343         any time, so ignore EBADF at treat it as a "we're closing" sign.
22344
22345 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22346
22347         * threadpool.c: release the semaphores with a count equals to the number
22348         of working threads in both IO and regular pools. Fixed typo that messed
22349         up the count of IO pool threads. Don't initialize the pipe handles if
22350         we're using epoll.
22351
22352 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22353
22354         * threadpool.c: some systems don't like a NULL when deleting the socket
22355         from epoll.
22356
22357 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22358
22359         * threadpool.c: fix semaphore allocation.
22360
22361 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22362
22363         * threadpool.c: added epoll() based implementation for asynchronous IO
22364         that is used instead of the default poll() when available.
22365         It can be disabled by setting MONO_DISABLE_AIO.
22366
22367 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22368
22369         * threadpool.c: windows needs 'closesocket' and instead of returning
22370         0 when the stream is closed while in select, it returns -1. Fixes bug
22371         #74573.
22372
22373 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
22374
22375         * class.c (class_compute_field_layout): Fix the regression caused by
22376         the previous try.
22377
22378 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22379
22380         * threadpool.c: separate pool for socket async. IO.
22381         * threadpool.h: mono_max_worker_threads is not a global any more.
22382
22383 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
22384
22385         * class.c (class_compute_field_layout): Fix #74549.
22386
22387 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22388
22389         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
22390         use 2 connected sockets instead.
22391
22392 2005-04-08  Miguel de Icaza  <miguel@novell.com>
22393
22394         * mono-config.c: Add new entry point for mkbundle
22395         mono_config_parse_memory. 
22396
22397 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22398
22399         * threadpool.c: removed another unused function.
22400
22401 2005-04-08  Ankit Jain  <radical@corewars.org>
22402
22403         * reflection.c (get_default_param_value_blobs): Add 'types'
22404         parameter to get the types encoded in the constant table.
22405         (mono_param_get_objects): Use the type from the constant table,
22406         not the type of the parameter, when creating default values.
22407         Handle null default values correctly.
22408
22409 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22410
22411         * file-io.c:
22412         * file-io.h:
22413         * threadpool.c:
22414         * threadpool.h:
22415         * icall.c:
22416         * socket-io.c: removed dead code for async IO.
22417
22418 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22419
22420         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
22421
22422         * threadpool.c: intercept socket async. calls and pass them to a thread
22423         that is polling and dispatching the job items to the threadpool as
22424         socket become ready. Fixes bugs #71217, #71933.
22425
22426         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
22427         between char and short/ushort arrays.
22428
22429         * socket-io.c: remove dead code.
22430
22431 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22432
22433         * locales.c,
22434           icall.c : removed InternalToUpper_Comp() and
22435           InternalToLower_Comp().
22436
22437 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22438
22439         * char-conversions.h : The tables were incorrectly generated. Should
22440           be generated against invariant culture.
22441
22442 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
22443
22444         * object.c (mono_runtime_invoke_array): Fix return value when 
22445         passing pre-created valuetype objects to ctors.
22446
22447         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
22448         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
22449         Fixes #74338.
22450
22451 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
22452
22453         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
22454         only used with --security and hides the wrong corlib version error.
22455
22456 2005-03-30  Joshua Tauberer  <tauberer@for.net>
22457
22458         * class.c: Changed mono_class_name_from_token so that types
22459         outside of a namespace don't have an initial period.  Improved
22460         the g_warning message used in _mono_class_get when loading
22461         fails.
22462         * assembly.c: In mono_assembly_load_reference, when an assembly
22463         can't be found, "No such file or directory" is misleading and
22464         unhelpful because a few paths were checked for the presence of
22465         the assembly.  When that happens (ENOENT), display a nicer
22466         message indicating the directories that were searched.  In all
22467         cases, the warning is made easier to read for non-hackers.
22468
22469 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
22470
22471         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
22472         project/solution.
22473         * appdomain.h|domain.c: Removed inline from functions.
22474         * appdomain.c: Reduced warnings when compiling on windows.
22475         * icall.c: Fixed output_debug declaration to gunichar2*.
22476         * mono-config.c: Reduced warnings when compiling on windows.
22477         * rand.c: Added missing "windows.h". Added missing return value.
22478         * rawbuffer.c: Added missing winsock2.h for windows.
22479         * sysmath.h: Added mono-compiler.h header to allow/ease 
22480         compilation with non-GCC compilers.
22481         * threads.c: Fixed declarations to compile with VS.NET C compiler.
22482         Removed cast warnings.
22483
22484         Adapted from the work of J Lothian (for VC6).
22485
22486 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
22487
22488         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
22489         from default_path.
22490
22491 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
22492
22493         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
22494         the 2.0 profile.
22495
22496 2005-03-27  Raja R Harinath  <harinath@gmail.com>
22497
22498         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
22499         has to be in $(exec_prefix).  $(prefix) is for arch-independent
22500         stuff, and it would probably use $(prefix)/share rather than
22501         $(prefix)/lib.
22502
22503 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22504
22505         * console-io.c: added 2 includes that might be missing.
22506
22507 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
22508
22509         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
22510         profile.
22511
22512         * reflection.c (create_custom_attr): Allocate the params array using
22513         alloca so it gets GC tracking.
22514
22515 2005-03-23  Chris Toshok  <toshok@ximian.com>
22516
22517         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
22518         out some spew.
22519
22520 2005-03-24  Raja R Harinath  <rharinath@novell.com>
22521
22522         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
22523         changes to pick up any changes in prefix, etc.
22524
22525 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22526
22527         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
22528         
22529         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
22530         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
22531
22532 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22533
22534         * class-internals.h object-internals.h class.c reflection.c: Extend the
22535         mono_lookup_dynamic_token () function to return the class of the
22536         token as well. 
22537
22538         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
22539         well. Fixes #73848.
22540
22541 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
22542
22543         * security-manager.c: Skip inheritance checks for intra-corlib
22544         class inheritance and method overrides. This skips a lot of checks
22545         and (anyway) permissions cannot work until corlib is loaded.
22546
22547 2005-03-23  Martin Baulig  <martin@ximian.com>
22548
22549         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
22550         MONO_TYPE_GENERICINST.  
22551
22552 2005-03-23  Martin Baulig  <martin@ximian.com>
22553
22554         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
22555
22556 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22557
22558         * class.c: added locking comments to some functions.
22559         Cache the interface offsets arrays (saves about 20 KB
22560         of runtime memory in a typical app).
22561         Reduce the time overhead in mono_class_setup_supertypes ().
22562
22563 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
22564
22565         * icall.c: speedup and fix leaks in GetMethodsByName and
22566         GetPropertiesByName.
22567
22568 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22569
22570         * reflection.c: some locking fixes.
22571
22572 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22573
22574         * metadata.c: added missing break in case statement.
22575
22576 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
22577
22578         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22579         typedbyref return values. Fixes #73941.
22580
22581 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
22582
22583         * security-manager.c|h: Added demandunmanaged method and 
22584         suppressunmanagedcodesecurity class to MonoSecurityManager.
22585         Renamed aptc class to allowpartiallytrustedcallers.
22586
22587 2005-03-17  Martin Baulig  <martin@ximian.com>
22588
22589         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
22590
22591 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22592
22593         * file-io.c: disabled file async. IO using aio_*. It uses the
22594         threadpool now. Workaround for bug #73718.
22595
22596 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22597
22598         * assembly.h, mono-config.c: added code to deal with bundled configs
22599         for bundled assemblies.
22600
22601 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
22602
22603         * *.c, private.h: cleanup, removing old private.h header file.
22604
22605 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
22606
22607         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
22608         and throw_on_unmappable_char attributes.
22609
22610 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
22611
22612         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
22613         _ProcessName_internal.
22614
22615 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
22616
22617         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
22618         #73631.
22619
22620         * icall.c threads.c threads-types.h: Remove slothash icalls as they
22621         are no longer used.
22622
22623 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
22624
22625         * object.c (compute_class_bitmap): Add support for generics. Fixes
22626         #73527.
22627
22628 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22629
22630         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
22631
22632 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22633
22634         * filewatcher.c: commented out the code for windows watcher, as we don't
22635         use it (we use the managed implementation instead).
22636
22637 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22638
22639         * object-internals.h (MonoThread): Remove 'unused1' field.
22640
22641         * appdomain.c: Bump corlib version.
22642
22643         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
22644
22645         * reflection.c (mono_reflection_create_runtime_class): Remove the
22646         AssemblyBuilder.Save optimization since it causes too many problems.
22647
22648 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
22649
22650         * exception.c|h: Added mono_get_exception_reflection_type_load to
22651         create a ReflectionTypeLoadException object.
22652         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
22653         to return NULL is a InheritanceDemand fails during reflection. Updated
22654         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
22655         ReflectionTypeLoadException if an InheritanceDemand fails during 
22656         reflection. Added icall mapping for GetLinkDemandSecurity.
22657         * security-manager.c|h: Added ves_icall_System_Security_
22658         SecurityManager_GetLinkDemandSecurity internal call to return the
22659         class and methods permissions set for a LinkDemand. Removed unused
22660         fields in MonoSecurityManager.
22661
22662 2005-03-10  Martin Baulig  <martin@ximian.com>
22663
22664         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
22665         it's a generic instance.
22666
22667 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
22668
22669         * reflection.c (mono_get_object_from_blob): Applied patch from
22670         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
22671
22672         * class.c (mono_class_is_assignable_from): Another try at fixing 
22673         #73469 without breaking anything.
22674
22675 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
22676
22677         * class.c: (mono_class_is_assignable_from): Revert the last changes
22678         since they don't work with generics.
22679         
22680         * class.c (mono_class_is_assignable_from): Fix build bustage.
22681
22682         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
22683         the managed IsAssignableFrom method. Fixes #73469.
22684
22685         * reflection.c (mono_reflection_call_is_assignable_from): New helper
22686         function.
22687
22688 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
22689
22690         * object.c (mono_load_remote_field_new): Fix returning uninitialized
22691         memory when the remoting callback does not sets the out arguments.
22692         Fixes #73007.
22693
22694         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
22695         by mistake.
22696
22697         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
22698
22699         * object-internals.h (MonoStackFrame): Sync with managed object layout.
22700
22701         * appdomain.c: Bump corlib version.
22702
22703 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
22704
22705         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
22706         function.
22707
22708         * threads.c (mono_thread_attach): Detect threads which are not started
22709         by the GC pthread wrappers.
22710
22711 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
22712
22713         * icall.c: Added new icall for RNG.
22714         * rand.c|h: Added new icall to open the RNG. This allows to share a 
22715         single handle on Linux to access /dev/urandom and fix #73183.
22716
22717 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
22718
22719         * object.c: setting the new vtable in a transparent proxy object must
22720         not change the GC descriptor.
22721
22722 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22723
22724         * object.c: fixed compilation without GCJ support.
22725         * reflection.c: for runtime-created types ensure klass->has_references
22726         is correct (bug #73215).
22727
22728 2005-03-02  Martin Baulig  <martin@ximian.com>
22729
22730         * class.c (mono_class_is_assignable_from): Make this work if
22731         `oklass' is a generic instance; fixes #72831.
22732
22733 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22734
22735         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
22736         with hasthis set.
22737         
22738         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
22739
22740         * marshal.c: Reorganize native->managed marshalling code to also use
22741         the emit_marshal_... functions.
22742
22743 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22744
22745         * object.c: typed allocs have issues with bitmap sizes > 30,
22746         so check for max_set >= 30.
22747
22748 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22749
22750         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
22751         managed code. Fixes #73012.
22752
22753         * metadata.h (MonoMarshalSpec): Add elem_mult field.
22754
22755         * metadata.c reflection.c: Load/Emit elem_mult as well.
22756         
22757         * metadata.h (MonoMarshalSpec): Add comment.
22758
22759         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
22760
22761         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
22762         num_elem to -1 if not given.
22763
22764         * object-internals.h (MonoReflectionMarshal): Add has_size field.
22765
22766         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
22767         given values.
22768
22769 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
22770
22771         * null-gc.c (mono_gc_free_fixed): Was not compilable.
22772
22773 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
22774
22775         * reflection.c (encode_marshal_blob): Encode param_num field as well.
22776
22777         * object-internals.h (MonoReflectionMarshal): Add param_num field.
22778
22779 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22780
22781         * object.c: generalized the reference bitmap creation
22782         and added hooks for the new GC.
22783         * class-internals.c: removed the gc_bitmap field from MonoClass.
22784
22785 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22786
22787         * domain.c: help the compiler to produce better code
22788         in mono_jit_info_table_find ().
22789
22790 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22791
22792         * object.c: make all allocations look typed.
22793
22794 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22795
22796         * socket-io.c: load Mono.Posix if it's not loaded already
22797         (fixes bug#73033).
22798
22799 2005-02-24  Martin Baulig  <martin@ximian.com>
22800
22801         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
22802         * reflection.c (dup_type): Likewise.
22803
22804 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
22805
22806         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
22807         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
22808
22809 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22810
22811         * domain.c, threads.c, object-internals.h: make the critical thread
22812         local vars use the fast access mode (even when we're compiled in
22813         a lib). Provide accessors to be used by the jit during codegen.
22814
22815 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22816
22817         * appdomain.c: Changed hook functios behavior to include
22818         support for the reflection only assemblies. Some icalls were changed
22819         to support the mentioned assemblies too. Signatures of static methods
22820         try_assembly_resolve and real_load now have an additional parameter:
22821         refonly.
22822
22823         * assembly.c: General changes to mono_assembly_ methods to support
22824         reflection only api. Functions mono_assembly_open, mono_assembly_load,
22825         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
22826         suffix, to support an additional gbool parameter to specify whether
22827         the assembli is reflection only or not. Created some new hook functions 
22828         to add support for reflection only assemblies. Signatures of static 
22829         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
22830         have now an additional parameter: refonly.
22831
22832         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
22833         indicating whether the assembly is reflection only or not.
22834
22835         * exception.c: Add mono_get_exception_invalid_operation.
22836
22837         * icall.c: Throw an InvalidOperationException when trying to invoke
22838         a property/method/event, or trying to set/get the value of a field.
22839         Also add an icall to retrieve the ref_only flag to the
22840         MonoReflectionAssembly.
22841
22842 2005-02-23  Chris Toshok  <toshok@ximian.com>
22843
22844         Part of fix for #72827.
22845         * mono-debug.c (mono_debug_add_method): add lexical block data to
22846         the info we write.  Kind of a hack at the moment - we copy the
22847         lexical block info from the MonoDebugMethodInfo to the
22848         MonoDebugMethodJitInfo here, before writing it.
22849         (mono_debug_read_method): read the lexical block info.
22850
22851         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
22852
22853         * debug-mono-symfile.h: add lexical block support.
22854
22855         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
22856         support.
22857
22858 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
22859
22860         * loader.c (mono_lookup_pinvoke_call): Fix warning.
22861
22862         * object.c (mono_runtime_free_method): Call mono_free_method () and
22863         put the TODOs there.
22864
22865         * loader.c (mono_free_method): Free up most memory allocated for 
22866         dynamic methods.
22867
22868 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
22869
22870         * reflection.c: properly flag a Type argument to a
22871         named custom attr value (bug #72248).
22872
22873 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22874
22875         * reflection.c: reduce code duplication in named custom
22876         attribute encoding.
22877
22878 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
22879
22880         * reflection.c: properly encode custom attrs of type object
22881         (bug #72649).
22882
22883 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
22884
22885         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
22886
22887 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
22888
22889         * socket-io.c: load System.dll if it's not loaded already
22890         (bug #72850 and #70477).
22891
22892 2005-02-21  Martin Baulig  <martin@ximian.com>
22893
22894         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22895         generic instances.
22896
22897 2005-02-21  Martin Baulig  <martin@ximian.com>
22898
22899         * reflection.c (mono_image_build_metadata): We also need to
22900         "fixup" the MethodImpl table after we computed the final method
22901         indices.  Call fixup_methodimpl() to do that.
22902         (fixup_methodimpl): New private method.
22903
22904 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22905
22906         * assembly.c: special case mscorlib.dll (bug#72536),
22907         patch from Carlos Alberto Cortez.
22908
22909 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
22910
22911         * threads-types.h threads.c: Fix build bustage.
22912
22913         * threads.c: Use a union for long<->double conversions.
22914
22915         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
22916         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
22917
22918         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
22919         containing the checkpoint call with NOT_TAKEN.
22920         
22921         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
22922         checkpoint before pushing the arguments, so they won't have to be
22923         spilled to stack.
22924
22925 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22926
22927         * domain.c, assembly.c, domain-internals.h: make some data
22928         const and relocation-free.
22929
22930 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
22931
22932         * object.c, appdomain.c, class-internals.h: introduce the
22933         MonoClassRuntimeInfo structure to hold the info needed to
22934         use a class at runtime. Made mono_class_vtable() lock-free
22935         for all the appdomains.
22936
22937 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
22938
22939         * metadata-internals.h, image.c: introduce a per-image mempool to
22940         be used for memory that has the same lifetime as the image.
22941
22942 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
22943
22944         * domain.c: In mono_init_internal(), instead of selecting the first
22945         runtime version supported by an executable, get a list of all
22946         supported versions and select the one for which an mscorlib exists
22947         (since even if the runtime supports a given version, it doesn't mean
22948         that the framework for that version is installed).
22949         Modified get_runtimes_from_exe to support this behavior.
22950         In supported_runtimes, added information about additional system
22951         assembly versions.
22952         
22953         * assembly.c: Added support for more than one system assembly version
22954         per runtime version. Updated the assembly list.
22955         In mono_assembly_remap_version, removed the initial version check,
22956         since we don't know to which version we need to compare until we
22957         get the version set on which the assembly is based.
22958         Moved the code for loading corlib into the new method
22959         mono_assembly_load_corlib(), so it can be used by the initialization
22960         code.
22961         
22962         * domain-internals.h: Updated data structures and added declaration
22963         for mono_assembly_load_corlib.
22964
22965 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22966
22967         * reflection.c (resolve_object): Fix the creation of the signature in 
22968         the SignatureHelper case.
22969
22970         * assembly.c (mono_assembly_remap_version): Fix binary search.
22971         
22972 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
22973  
22974         * class.c: Added inheritance check when a method is overloaded (from a
22975         virtual method or when implementing an interface) and when a class is
22976         inherited. Added functions to set a failure for a class and to 
22977         retreive the exception from a failure.
22978         * class-internals.h: Added fields to MonoClass to keep the exception
22979         information status for inheritance (or other exceptions) to be thrown
22980         later (i.e. not at load time).
22981         * object.c: Throw the inheritance SecurityException when a type is to 
22982         be created with either class or method inheritance violations.
22983         * reflection.c|h: Fix when getting declsec from a class. Removed 
22984         unrequired code for class. Improved sanity in parameter naming.
22985         * security-manager.c|h: Added functions to check for class and method
22986         inheritance.
22987
22988 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22989
22990         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
22991         and has_finalize in dynamic types as well.
22992
22993 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
22994
22995         * culture-info-table.h : fixed currency format for en-GB (and so on).
22996
22997 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
22998
22999         * gc.c: ensure the GC handles never have 0 as a value.
23000
23001 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23002
23003         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
23004         a pointer to a struct to unmanaged code. Fixes #72625.
23005
23006 2005-02-16  Martin Baulig  <martin@ximian.com>
23007
23008         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
23009
23010 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23011
23012         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
23013
23014 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23015
23016         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
23017
23018         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
23019         UnmanagedFunctionPointerAttribute, use it for determining calling convention
23020         etc. Fixes #71471.
23021
23022         * reflection.c (mono_custom_attrs_get_attr): New helper function.
23023
23024         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
23025
23026 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
23027
23028         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
23029         changes to make the current context a field in MonoThread.
23030
23031 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23032
23033         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
23034         the last change.
23035         
23036         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
23037         extracted from mono_marshal_get_native_wrapper.
23038
23039         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
23040         to create wrappers around native functions.
23041
23042         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
23043         delegates for arbitrary function pointers. Fixes #71472.
23044
23045 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23046
23047         * threads.c: cleaned up the code a little.
23048
23049 2005-02-15  Martin Baulig  <martin@ximian.com>
23050
23051         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
23052         the data table.
23053
23054         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
23055         allocate larger chunks if needed.
23056
23057 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23058
23059         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
23060         in by mistake.
23061
23062 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
23063
23064         * domain.c: keep the domains in an array and ensure the domain ids
23065         are kept small, so they can be used as indexes to domain-specific data
23066         with a small memory overhead.
23067
23068 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23069
23070         * icall.c: Handle byref types in Type icalls. Fixes #72544.
23071
23072 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23073
23074         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23075
23076 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
23077
23078         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23079
23080         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23081         values.
23082
23083         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23084         
23085 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
23086
23087         * domain-internals.h: add the hashtable here.
23088
23089         * class-internals.h: Remove `info' from MonoMethod
23090
23091         * domain.c: Add a new hashtable, jit_trampoline_hash
23092
23093 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23094
23095         * object.c: don't set the value of static fields
23096         (fixes bug#72494).
23097
23098 2005-02-11  Martin Baulig  <martin@ximian.com>
23099
23100         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23101         (mono_debug_add_method): Silently ignore the method if it's too big.
23102         (mono_debug_add_type): Likewise.
23103
23104 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23105
23106         * threads.c, appdomain.c: remove #ifdefs from the code.
23107
23108 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
23109
23110         * metadata-internals.h: Added flags to MonoAssembly to cache the most
23111         common security informations. This allows us to stay in unmanaged code
23112         when doing LinkDemand and it's special cases (except for the first 
23113         time for initialization). The flags a very much used with --security.
23114         * reflection.c|h: Added code to get declarative security attributes 
23115         for LinkDemand and InheritanceDemand. This required to refactor the
23116         existing code for Demand.
23117         * security-manager.c|h: Added new method fields for the special cases
23118         of LinkDemand.
23119
23120 2005-02-10  Martin Baulig  <martin@ximian.com>
23121
23122         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23123         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23124
23125 2005-02-10  Martin Baulig  <martin@ximian.com>
23126
23127         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23128         debugging code; this is almost a complete rewrite.
23129
23130         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23131
23132 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23133
23134         * domain.c, object.h: expose mono_string_equal () and 
23135         mono_string_hash ().
23136         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23137         it's implemented in managed code.
23138
23139 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23140
23141         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23142         lo leak objects between appdomains.
23143
23144 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23145
23146         * assembly.c: old compilers compilation fix from 
23147         robertj@gmx.net (Robert Jordan).
23148
23149 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23150
23151         * class-internals.h: Little reminder for the future.
23152
23153         * debug-helpers.c: Fix up wrapper_type_names
23154
23155 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23156
23157         * image.c, metadata-internals.h: when loading an image from a file,
23158         mmap all of it and use the same codepaths as when using a
23159         in-memory image: the code is simpler and we use less memory
23160         (both writable and readonly).
23161
23162 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23163
23164         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23165         API to alloc runtime data structures that need to be tracked by the
23166         GC and contain pointers.
23167         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23168         make the code more readable and eventually use a different GC.
23169
23170 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23171
23172         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23173         for out arguments.
23174         
23175 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23176
23177         * object.c: In release_type_locks(), don't release the cctor lock
23178         if it has already been released. This fixes a crash in the
23179         thread5 test.
23180
23181 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23182
23183         * gc.c, marshal.c, icall.c: register a delegate for finalization
23184         only when the native function pointer has been allocated for it.
23185
23186 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23187
23188         * object.c: cleaned up some code, allocate objects that are
23189         pointer free with the atomic malloc variant. Allocate memory
23190         for static data from the mempool if it's pointer-free.
23191         Allocate the bounds array at the end of the array data, when needed.
23192         * object-internals.h, object.h: move a private function in a private
23193         header.
23194         * class.c: handle missing case in tracking references in fields.
23195
23196 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23197
23198         * class.c, class-internals.h: keep track if a type has
23199         reference fields in either the instance or static fields.
23200
23201 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23202
23203         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23204         and renamed to MonoRuntimeInfo. Added fields to store the expected
23205         framework assembly version. Changed mono_get_framework_version and
23206         mono_get_runtime_version for a single mono_get_runtime_info method.
23207         
23208         * assembly.c: Added method to remap system assembly versions to the
23209         current executing runtime version. Removed old mapping code.
23210         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23211         
23212         * icall.c, reflection.c: Track api changes.
23213
23214 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23215
23216         * loader.c (method_from_memberref): Improve error reporting,
23217         produce the class name instead of the typeref/typedef index. 
23218
23219 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23220
23221         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23222
23223 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23224
23225         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23226         stdcall and charset name mangling.  Reorganize the code and add
23227         some tracing stuff.
23228
23229 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23230
23231         * monodiet.c: More iters!
23232
23233         * marshal.c: Iter usage.
23234
23235         * icall.c: Iter usage.
23236
23237         * object.c: Use iters.
23238
23239         * debug-helpers.c: More iters
23240
23241 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23242
23243         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23244         under win32.
23245
23246 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23247
23248         * mono-debug-debugger.c: use iters
23249
23250         * class.c, class-internals.h: mono_class_setup_events is static
23251         now
23252
23253         * All callers: use iters
23254
23255 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23256
23257         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23258         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23259
23260 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23261
23262         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23263
23264         * marshal.h: Add prototypes for ldfld/stfld_remote.
23265
23266         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23267         this is called during startup.
23268         
23269 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23270
23271         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23272         MonoThreadsSync struct private in monitor.c. Changed the way
23273         MonoThreadsSync is allocated so it's faster and there is no
23274         need to keep track of it with a finalizer and it uses less memory.
23275         This also finally allows us to allocate mono objects as ptrfree when
23276         there are no reference fields.
23277
23278 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23279
23280         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23281         disappearing link to the GC interface and use them to simplify
23282         the gchandles code.
23283
23284 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23285
23286         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23287         stfld_remote which call mono_load/store_field_new. This allows methods
23288         calling ldfld/stfld wrappers to be AOTed.
23289
23290         * console-io.c: Include sys/filio.h under solaris.
23291         
23292         * console-io.c: Include curses.h if needed correctly.
23293
23294 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23295         
23296         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23297         method->klass as well.
23298
23299         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23300
23301         * class.c (mono_class_init): Switch on lazy initialization of 
23302         methods.
23303
23304         * class.c (mono_class_get_finalizer): Handle the case when the 
23305         finalizer is inherited.
23306
23307 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23308
23309         * console-io.c: <curses.h> is needed by term.h on solaris.
23310
23311 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23312
23313         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23314         mono_class_setup_properties where possible. Remove this ftn from
23315         the header file, and make it static.
23316
23317 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23318
23319         * loader.c: Add missing setup_... call.
23320
23321         * class.c: Add missing setup_... calls.
23322
23323         * class.c (mono_class_init): Switch on lazy initialization of 
23324         the generic vtable.
23325         
23326         * class.c (mono_class_init): Fix generics broken by the recent changes.
23327
23328         * monodiet.c (handle_type): Add missing setup_... calls.
23329
23330         * class.c: Back out garbage in previous patch.
23331         
23332         * class.c: Add missing setup_... calls.
23333
23334         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23335         mono_class_setup_methods () if possible.
23336
23337         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23338
23339         * class-internals.h (MonoCachedClassInfo): New structure.
23340
23341         * class.c: Initialize properties and events fields of MonoClass lazily.
23342
23343         * class.c: Add infrastructure for lazily initializing the methods and
23344         vtable fields of MonoClass. Not yet used.
23345
23346         * class.c (mono_class_get_finalizer): New helper function.
23347
23348         * class.c: Add infrastructure for loading some class related data from
23349         an AOT file.
23350
23351         * object.c: Add infrastructure for initializing the vtable from data
23352         in the AOT file.
23353
23354         * gc.c (run_finalize): Use mono_class_get_finalizer ().
23355
23356         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
23357         appropriate initialization function before accessing parts of the
23358         MonoClass structure.
23359
23360         * marshal.c: Fix warnings.
23361         
23362         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
23363
23364         * mono-debug-debugger.c (get_exception_message): Use 
23365         mono_class_get_method_from_name_flags ().
23366
23367 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
23368
23369         * reflection.c, appdomain.c: Replace a few manual searches that
23370         Zoltan missed. (Paolo approved this part of my initial patch).
23371
23372 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
23373
23374         * profiler.c: disable recording statistical events at report time.
23375
23376 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23377
23378         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
23379         to byteswap arrays of enum values, too (bug #72080).
23380
23381 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
23382
23383         * appdomain.c (set_domain_search_path): Allow this to be called if
23384         domain->setup is not yet set.
23385
23386         * loader.c (mono_method_get_index): New helper function.
23387
23388         * loader.c reflection.c: Use mono_method_get_index ().
23389
23390         * class.c (mono_class_get_method_from_name_flags): New helper method.
23391
23392         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
23393         this.
23394
23395         * class.c (mono_class_get_cctor): New helper method.
23396
23397         * string-icalls.c object.c class.c marshal.c reflection.c: Use
23398         mono_class_get_method () to look up methods.
23399
23400 2005-02-01  Miguel de Icaza  <miguel@novell.com>
23401
23402         * console-io.c: Fix the build, this should work on Windows.
23403
23404 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
23405
23406         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
23407         be set to null to keep things valid
23408
23409 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23410
23411         * icall.c: added Console 2.0 icalls.
23412         * Makefile.am: added console-io.[ch]
23413         * console-io.[ch]: internal calls for Console 2.0 API.
23414
23415 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23416
23417         * class.c: make sure we consider all the interfaces
23418         when calculating max_interface_id (bug found by
23419         Jeroen Frijters running ikvm).
23420
23421 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
23422
23423         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
23424         valuetype fields to null.
23425
23426         * object.c (set_value): Ditto. Fixes #71669.    
23427
23428 2005-01-31  Martin Baulig  <martin@ximian.com>
23429
23430         * metadata.c (mono_metadata_has_generic_params): New public
23431         function; checks whether something is a generic method.
23432
23433 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
23434
23435         * appdomain.c: fix infinite recursion when adding assemblies.
23436
23437 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
23438
23439         * object.c: Fix small typo to return all items for Environment.
23440         GetCommandLineArgs.
23441
23442 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23443
23444         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
23445         reflection.c: more domain and assembly-unload related fixes
23446         and memory leaks plugs.
23447
23448 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
23449
23450         * 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.
23451
23452 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
23453
23454         * loader.c (mono_method_signature): Make this method lazy
23455         (mono_get_method_from_token): Don't computate the signature here.
23456
23457         Doing this saves quite a bit of memory. I got 90 kb on starting up
23458         monodoc. It should also save some disk reads on startup.
23459
23460         * *: MonoMethod->signature might be NULL now. You *MUST* use
23461         mono_method_signature.
23462
23463 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
23464
23465         * object.c (mono_runtime_get_main_args): Return an array from the
23466         current domain here. Fixes #71938.
23467
23468 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
23469
23470         * monitor.c: formatting changes to comply with the
23471         mono coding style and remove #ifdefs from the code.
23472
23473 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23474
23475         * metadata.c, private.h: remove some unneeded data
23476         and use a more compact representation for table schemas.
23477
23478 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
23479
23480         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
23481         to get a better distribution in hash tables.
23482         * *.c: use mono_aligned_addr_hash() where appropriate.
23483         * assembly.c: make var static.
23484
23485 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
23486
23487         * domain-internals.h: Put MonoJitInfo on a diet.
23488
23489         * domain.c: Fix a warning.
23490
23491 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23492
23493         * gc.c: rework the gc handles code to reuse handles
23494         when freed.
23495
23496 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23497
23498         * domain.c: fixed long standing bug in mono_string_equal() which
23499         was brought to light with the ldstr changes.
23500
23501 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
23502
23503         * reflection.c: Remove warning by adding missing include for marshal.h
23504
23505 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23506
23507         * domain.c, object.c: change the ldstr_table to hold
23508         MonoString* as keys: makes the runtime isinterned lookup
23509         faster and simplifies memory management.
23510
23511 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
23512  
23513         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
23514         possible to add imperative security checks before calling the icall.
23515         * reflection.c: Return security attributes on the original MonoMethod
23516         (and not the wrapped one). This fix permissions on icalls.
23517
23518 2005-01-25  Dick Porter  <dick@ximian.com>
23519
23520         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
23521         the check for mktime() support actually test the mktime() return
23522         value.  "Fixes" bug 71682, though the output is still different to
23523         MS.
23524
23525 2005-01-25  Martin Baulig  <martin@ximian.com>
23526
23527         * class.c (mono_class_is_assignable_from): Make this work for
23528         generic instances.
23529
23530 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
23531
23532         * marshal.c (mono_string_utf8_to_builder)
23533         (mono_string_builder_to_utf16): We might not have ownership of the
23534         string. In thise case, we need to create a new buffer.
23535
23536         * object-internals.h (mono_stringbuilder_capacity): sb->str might
23537         be null, in which case, use the default capacity.
23538
23539 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23540
23541         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
23542         GC events to the profiler.
23543
23544 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23545
23546         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
23547         if you don't want the GC to run.
23548
23549 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
23550
23551         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
23552         start providing a GC API and keeping different implementations in
23553         their own file.
23554         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
23555
23556 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
23557
23558         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
23559         mmap rather than allocating a huge buffer.
23560         (mono_debug_close_mono_symbol_file): Free the buffer allocated
23561         above.
23562
23563 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
23564
23565         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
23566         and CheckExecutionRights.
23567         * reflection.c|h: Keep the index of the declarative security to be 
23568         used, instead of the pointer, when AOT compiler is used. Also add 
23569         class initialization when requesting demands.
23570         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
23571         CheckExecutionRights. Both properties are now FALSE by default, and
23572         unmodifiable, unless the --security option is used.
23573
23574 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23575
23576         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
23577         reflection.c: properly refcount images and assemblies, many leaks fixed.
23578
23579 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23580
23581         * threadpool.c: increase the timeout for threads in the thread pool to
23582         10s.  Fixes bug #67159.
23583
23584 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23585
23586         * class-internals.h: Sun's compiler insists on explicit
23587         signed on bit fields to handle then correctly.
23588
23589 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
23590
23591         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
23592         Make the size of the array fit only the number of invalid path
23593         chars that we have.
23594
23595         * class.c (_mono_class_get): Improve the error reporting when a
23596         class referenced is not found, to assist debugging. 
23597
23598 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
23599
23600         * threads.c: fix off-by-one error.
23601         * domain.c: free data allocated in the domain.
23602
23603 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23604
23605         * reflection.c (mono_method_body_get_object): Fill out exception info
23606         as well.
23607
23608         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
23609         structure.
23610         
23611 2005-01-19  Martin Baulig  <martin@ximian.com>
23612
23613         * loader.c (mono_get_method_constrained): Make this work again.
23614
23615 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23616
23617         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
23618         guint16 to match the managed side.
23619
23620         * reflection.c (mono_reflection_body_get_object): Fill out local
23621         variables array.
23622
23623         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
23624         as well.
23625
23626         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
23627         'local_var_sig_token'.
23628
23629 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
23630
23631         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
23632         System.Drawing.
23633
23634         * reflection.c (mono_method_body_get_object): Handle abstract and
23635         runtime methods.
23636
23637 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
23638
23639         * marshal.c, loader.c, class-internals.h, reflection.c:
23640         store the emthod data for a wrapper in an array instead of a list.
23641
23642 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
23643
23644         * marshal.c: change the code to allocate memory more
23645         conservatively for method wrappers.
23646
23647 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
23648
23649         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
23650         fields from MonoClass to the marshal info structure where they belong.
23651
23652 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23653
23654         * class.c, object.c, class-internals.h, marshal.c: rearrange
23655         some fields and tweak some types to lower memory usage.
23656
23657 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
23658
23659         * threads.c (signal_thread_state_change): Handle the case when the
23660         target thread is the current thread.
23661
23662         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
23663
23664         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
23665         emit_ptr_to_object_conv. 
23666
23667         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
23668         marshalling. Fixes #71352.
23669
23670 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23671
23672         * metadata.h, blob.h: move table enum to blob.h so it can be included
23673         in any header.
23674         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
23675         cut the size of MonoImage/MonoDynamicImage.
23676
23677 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
23678
23679         * profiler.c (mono_profiler_install_simple): Fix default arguments.
23680
23681 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
23682
23683         * reflection.c, reflection.h, icall.c: add a function to check
23684         if an attribute type is defined for a metadata object.
23685
23686 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
23687
23688         * object-internals.h: Added some needed fields from StringBuilder class.
23689         * marshal.c: Set the maxCapacity when creating a StringBuilder.
23690
23691 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
23692
23693         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
23694         threads before shutting down the runtime.
23695
23696         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
23697
23698 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23699
23700         * object-internal.h, threads.c: implement stacksize and 
23701         parameterized thread start functionality (requires
23702         matching corlib). Marked broken code for later removal.
23703
23704 2005-01-12  Martin Baulig  <martin@ximian.com>
23705
23706         * class-internals.h (MonoGenericClass): Moved the `initialized'
23707         flag to MonoDynamicGenericClass, removed `init_pending'.
23708         (MonoGenericInst): Added `is_reference' flag.
23709
23710 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
23711
23712         * reflection.c (mono_image_create_pefile): Only set the pe_offset
23713         inside the MSDOS header. Fixes #71201.
23714
23715         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
23716         gc thread.
23717         (mono_domain_finalize): Ditto.
23718
23719 2005-01-12  Martin Baulig  <martin@ximian.com>
23720
23721         * class.c (mono_get_shared_generic_class): Use the cache for
23722         non-dynamic generic classes.
23723
23724         * class-internals.h (mono_class_create_generic_2): Removed
23725         function prototype, this function is now static inside class.c.
23726
23727         * class.c (mono_class_create_generic_2): Made this static, only
23728         call it from mono_class_init() and mono_class_setup_parent().
23729         (collect_implemented_interfaces_aux): Call mono_class_init() on
23730         the interfaces we collect.
23731         (mono_class_setup_vtable): Call mono_class_init (class->parent).
23732
23733 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23734
23735         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
23736         it a real thread handle.
23737
23738         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
23739         MonoJitExceptionInfo, since each catch clause needs its own variable.
23740         
23741 2005-01-11  Dick Porter  <dick@ximian.com>
23742
23743         * image.c (mono_pe_file_open): New variant on mono_image_open()
23744         that does not set up the CLI metadata; used for FileVersionInfo so
23745         it can get the data for windows binaries too.
23746         
23747         * process.c (process_read_string_block): Don't read off the end of
23748         the StringTable block.
23749
23750         These both fix bug 70766.
23751
23752 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
23753
23754         * gc.c: set some fields to NULL at GC cleanup time.
23755         * threads.c: if we quit the main thread, call exit ().
23756
23757 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23758
23759         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
23760
23761 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
23762
23763         * threads.h, threads.c, object.c: added accessor and settor for
23764         main_thread. Handle it specially when exiting from it: wait
23765         for other foreground threads to exit.
23766
23767 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
23768
23769         * process.c, verify.c: remove some bloat.
23770
23771 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
23772
23773         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
23774         the calling convention to cdecl under win32.
23775
23776 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
23777
23778         * object.c (mono_object_get_size): New function to get the size of
23779         an object instance.
23780
23781         * profiler.c (simple_allocation): Use above.
23782
23783 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
23784
23785         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
23786         ves_icall_System_AppDomain_getRootDomain (as it's not required to
23787         get an appdomain by it's id and we can't assume the root's id is 0).
23788         * domain-internals.h: Change the function prototype to match.
23789         * icall.c: Change the icall table for AppDomain.
23790
23791 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
23792
23793         * locales.c (string_invariant_compare_char): Only compute
23794         GUnicodeTypes in the case where we need them.  Test for ordinality
23795         first and return if so.
23796
23797         From the commit:
23798
23799                 /*
23800                  * FIXME: here we must use the information from c1type and c2type
23801                  * to find out the proper collation, even on the InvariantCulture, the
23802                  * sorting is not done by computing the unicode values, but their
23803                  * actual sort order.
23804                  */
23805
23806 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23807
23808         * loader.c: for P/Invoke methods, allow the "Internal" shared
23809         library name to refer to the calling process symbol namespace.
23810
23811 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
23812
23813         * Makefile.am: Add the security manager to the build.
23814         * security-manager.c|h: New. Initialization of the security manager.
23815
23816 2005-01-07  Dick Porter  <dick@ximian.com>
23817
23818         * threads.c: 
23819         * monitor.c: Update thread state during Monitor and WaitHandle
23820         waits.  Fixes bug 71031.
23821
23822 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
23823
23824         * reflection.c (property_encode_signature): Correctly handle when the
23825         property has no methods.
23826
23827 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
23828
23829         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
23830         
23831         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
23832         fields from mb, not rmb. Fixes #71017.
23833
23834         * marshal.c (emit_ptr_to_str_conv): Add support for 
23835         ByValTStr -> string conversion. Fixes #71015.
23836
23837         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
23838
23839         * mempool.c (mono_mempool_contains_addr): New helper function.
23840
23841 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
23842
23843         * metadata.c (mono_metadata_compute_size): Fix size calculation of
23844         HasSematics encoded fields.
23845         
23846         * metadata.c (mono_type_to_unmanaged): Improve error message for 
23847         invalid string marshalling.
23848
23849         * metadata.c: Fix warnings.
23850         
23851 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23852
23853         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
23854         profiler support.
23855
23856 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
23857
23858         * domain.c object.c domain-internals.h: Revert part of r38077 since the
23859         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
23860         tests.
23861
23862 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
23863
23864         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
23865         so methods containing these can be AOTed.
23866
23867 2005-01-03  Martin Baulig  <martin@ximian.com>
23868
23869         * loader.c (find_method): Removed the hack for generic instances.
23870         (method_from_memberref): If our parent is a generic instance, pass
23871         its generic type definition to find_method() and then inflate the
23872         method.
23873         (mono_get_method_constrained): Pass the generic type definition to
23874         find_method() and inflate the method later.
23875
23876         * class-internals.h (MonoStats): Added `generic_class_count'.
23877
23878         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
23879         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
23880
23881         * reflection.c (mono_custom_attrs_from_params): Don't ignore
23882         generic type definitions.
23883
23884 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
23885
23886         * loader.c icall.c: Fix warnings.
23887
23888 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
23889
23890         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
23891         blittable types. Fixes #70864.
23892
23893 2004-12-29  Martin Baulig  <martin@ximian.com>
23894
23895         * icall.c
23896         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
23897
23898         * reflection.c (mono_method_get_object): Create a
23899         "System.Reflection.MonoGenericMethod" for inflated methods; don't
23900         call mono_get_inflated_method().
23901
23902         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
23903
23904 2004-12-27  Martin Baulig  <martin@ximian.com>
23905
23906         * class-internals.h (MonoMethod): Added `is_inflated' flag.
23907         (MonoMethodInflated): Added `inflated' field.
23908
23909         * class.c (mono_class_inflate_generic_method): Don't really
23910         inflate the method here; just set the `is_inflated' flag in the
23911         MonoMethod.
23912         (mono_class_get_inflated_method): Actually inflate the method here
23913         if it's not already inflated; we use the MonoMethodInflated's new
23914         `inflated' field as a cache.
23915
23916 2004-12-26  Martin Baulig  <martin@ximian.com>
23917
23918         * class.c
23919         (inflate_generic_class): Moved some code out of inflate_generic_type().
23920         (mono_class_inflate_generic_method): If we're already inflated,
23921         inflate the context and use the declaring method; ie. make sure
23922         the declaring method of an inflated method is always the generic
23923         method definition.
23924         (mono_class_create_from_typedef): Create
23925         `class->generic_container->context->gclass'.
23926
23927 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
23928
23929         * metadata-internals.h, marshal.c, reflection.c: More
23930         MonoGHashTable->GHashTable.
23931
23932         * domain-internals.h, class.c: Change MonoGHashTable's into
23933         GHashTables for some cases where no gc stuff is used
23934
23935         All users: update apis
23936
23937 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
23938
23939         * metadata.c (builtin_types): Make this `const'. Makes this get
23940         put into the shareable section.
23941         (mono_metadata_init): Casts to make gcc happy.
23942
23943 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
23944
23945         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
23946
23947 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
23948
23949         * icall.c: Added an internal call to retrieve the position and length
23950         of assembly-level declarative security attributes (RequestMinimum, 
23951         RequestOptional and RequestRefuse). This is used by the Assembly class
23952         to re-create the corresponding permission sets.
23953
23954 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
23955
23956         * marshal.c: fix the stelemref wrapper to be type correct
23957         (and faster).
23958
23959 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
23960
23961         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
23962         to do key & 0x7fffffff. Hashtable already does this. It just
23963         results in longer code.
23964
23965 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
23966
23967         * appdomain.c: Bump corlib version.
23968         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
23969         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
23970         * reflection.c|h: Add functions to get declarative security infos
23971         (blob position and length) for assemblies, classes and methods.
23972
23973 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
23974
23975         * reflection.c: sort the constant table (bug #70693).
23976
23977 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
23978
23979         * object-internals.h, threads.c, domain.c: add accessors for
23980         the MonoThread and MonoDomain tls keys.
23981
23982 2004-12-18  Martin Baulig  <martin@ximian.com>
23983
23984         * class.c (inflate_generic_type): If we're inflating a generic
23985         instance, set `ngclass->context->container = context->container';
23986         ie. the container we inflated into.
23987
23988         * metadata.c (mono_metadata_parse_generic_param): Reflect above
23989         inflate_generic_type() changes.
23990
23991 2004-12-17  Martin Baulig  <martin@ximian.com>
23992
23993         * class-internals.h
23994         (MonoGenericClass): Replaced `MonoType *generic_type' with
23995         `MonoClass *generic_class'.  Removed `dynamic_info'; if
23996         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
23997         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
23998
23999 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
24000
24001         * exception.c (mono_exception_from_token): New helper function.
24002
24003 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
24004
24005         * assembly.c (mono_assembly_load_with_partial_name): Call 
24006         mono_assembly_loaded before invoking the preload hooks. Fixes
24007         #70564.
24008
24009         * object-internals.h (MonoThread): Change culture_info and 
24010         ui_culture_info into an array.
24011
24012         * threads.c: Cache culture info objects from more than one appdomain.
24013
24014         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
24015         current UI culture.
24016
24017 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
24018
24019         * threads.h threads.c appdomain.c: Clear the culture_info field of
24020         all threads during unloading if they point to an object in the dying
24021         appdomain.
24022
24023 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
24024
24025         * culture-info.h (TextInfoEntry): New struct
24026         * object-internals.h: sync with managed
24027         * locales.c: fill the `text_info_data' field
24028         * culture-info-tables.h: update
24029
24030 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24031
24032         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
24033         collector.
24034
24035 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
24036
24037         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
24038         (ves_icall_ModuleBuilder_getMethodToken): Ditto
24039
24040 2004-12-12  Martin Baulig  <martin@ximian.com>
24041
24042         * mono-debug-debugger.c (write_type): If we're an enum and the
24043         builtin types have already been initialized, call mono_class_init().
24044
24045 2004-12-11  Martin Baulig  <martin@ximian.com>
24046
24047         * metadata.c (mono_metadata_load_generic_params): Added
24048         `MonoGenericContainer *parent_container' argument; automatically
24049         compute `container->is_method'; pass the correct owner to
24050         get_constraints().      
24051
24052         * reflection.c (compare_genericparam): Sort the GenericParam table
24053         according to increasing owners. 
24054
24055 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
24056
24057         * profiler.c: allow disabling the default profiler.
24058
24059 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
24060
24061         * decimal.c, icall.c: allow disabling System.Decimal support.
24062
24063 2004-12-09  Marek Safar <marek.safar@seznam.cz>
24064
24065         * reflection.c: Add support for null attribute arguments.
24066
24067 2004-12-09  Martin Baulig  <martin@ximian.com>
24068
24069         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
24070         names to get rid of compiler warnings.
24071
24072 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24073
24074         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
24075         mono_marshal_load_type_info (). Fixes #69625.
24076         (mono_marshal_get_ptr_to_struct): Likewise.
24077
24078 2004-12-08  Martin Baulig  <martin@ximian.com>
24079
24080         * mono-debug.h: Bumped version number to 47.
24081
24082         * mono-debug-debugger.c
24083         (mono_debugger_event_handler, mono_debugger_event): Take two
24084         guint64 arguments insteed of a gpointer and a guint32.  
24085
24086 2004-12-08  Martin Baulig  <martin@ximian.com>
24087
24088         * debug-mono-symfile.h
24089         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24090         `address' to `native_offset'.
24091
24092 2004-12-08  Martin Baulig  <martin@ximian.com>
24093
24094         * class.c (mono_class_create_from_typespec): Only inflate if we
24095         either have `context->gclass' or `context->gmethod'.
24096
24097 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24098
24099         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24100
24101         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24102
24103         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24104
24105         * reflection.c (mono_assembly_get_object): Remove the workaround put
24106         in for the release.
24107         
24108         * appdomain.c: Use the corlib_internal field from MonoAssembly.
24109
24110         * appdomain.c: Bump corlib version.
24111
24112         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24113         be visible in other appdomains.
24114
24115 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24116
24117         * threads.c: Interlocked inc and dec for longs were messed up,
24118         use a KISS based impl for this. Fixes 70234
24119
24120 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24121
24122         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24123
24124 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24125
24126         * icall.c: fix to follow policy not to allow struct
24127         arguments in icalls.
24128
24129 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24130
24131         * process.c: make the patch that handles spaces in file paths work
24132         on mono/windows too.
24133
24134 2004-12-06  Martin Baulig  <martin@ximian.com>
24135
24136         * class.c (mono_class_create_generic): Call
24137         mono_class_setup_supertypes() if we're dynamic.
24138         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24139
24140 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24141
24142         * object-internals.h: Add new fields to MonoThread.
24143
24144         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24145
24146         * icall.c threads-types.h threads.c: Add new icalls.
24147
24148         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24149
24150         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24151         managed side.
24152
24153         * appdomain.c: Bump corlib version.
24154
24155         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24156         internal assemblies. Fixes #69181.
24157
24158 2004-12-05  Martin Baulig  <martin@ximian.com>
24159
24160         * class.c (mono_class_inflate_generic_signature): Make this a
24161         no-op if `context' is NULL or we don't have any type parameters;
24162         also copy `sentinelpos'.        
24163
24164 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24165
24166         * image.c: Add unbox_wrapper_cache.
24167
24168         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24169
24170         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24171         function generator.
24172         
24173         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24174         Fixes #70173.
24175
24176         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24177         
24178 2004-12-04  Martin Baulig  <martin@ximian.com>
24179
24180         * loader.c (mono_method_get_signature_full): New public function;
24181         like mono_method_get_signature(), but with an additional
24182         `MonoGenericContext *' argument.
24183
24184         * class.c (mono_class_inflate_generic_signature): Formerly known
24185         as inflate_generic_signature(); make this public.
24186
24187 2004-12-04  Martin Baulig  <martin@ximian.com>
24188
24189         * metadata.c
24190         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24191         instead of a `MonoGenericContainer *'.  
24192         (mono_metadata_parse_array_full): Likewise.
24193         (mono_metadata_parse_signature_full): Likewise.
24194         (mono_metadata_parse_method_signature_full): Likewise.
24195         (mono_metadata_parse_generic_inst): Likewise.
24196         (mono_metadata_parse_generic_param): Likewise.
24197         (mono_metadata_parse_mh_full): Likewise.
24198         (mono_type_create_from_typespec_full): Likewise.
24199
24200 2004-12-03  Martin Baulig  <martin@ximian.com>
24201
24202         * class-internals.h (MonoGenericContainer): Replaced the
24203         `MonoGenericContext * pointer with a `MonoGenericContext'
24204         structure and made it the first element.
24205
24206 2004-12-03  Martin Baulig  <martin@ximian.com>
24207
24208         * class.c
24209         (inflate_generic_type): Set the `context->container' when creating
24210         a new MonoGenericContext.
24211         (mono_class_inflate_generic_method): Likewise.
24212         (mono_class_create_from_typespec): Just use `context->container'
24213         to get the container.
24214
24215         * loader.c (method_from_methodspec): Set `context->parent' from
24216         `context->container' - and if that's a method container, use its
24217         parent.  Also set the `context->container' when creating a new
24218         MonoGenericContext.
24219         (mono_get_method_from_token): Use just `context->container' to get
24220         the container.
24221
24222         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24223         `gclass->context->container'.
24224
24225         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24226         the `context->container' when creating a new MonoGenericContext.
24227
24228 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24229
24230         * reflection.c (compare_genericparam): Sort params with identical
24231         owner by their number. Fixes gen-111 on sparc.
24232
24233 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24234
24235         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24236         around the domain changes.
24237
24238         * appdomain.c (mono_domain_unload): Handle the case when the thread
24239         calling Unload is itself being aborted during unloading. Fixes #70022.
24240
24241         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24242
24243         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24244         checkpoint_func as an icall so it gets a wrapper.
24245         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24246         in the cross-appdomain wrappers too.
24247
24248         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24249
24250         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24251
24252         * reflection.c: Fix some memory leaks.
24253         
24254 2004-12-02  Martin Baulig  <martin@ximian.com>
24255
24256         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24257
24258         * metadata.c (generic_class_cache): New static hashtable.
24259         (mono_metadata_lookup_generic_class): New public method.
24260
24261 2004-12-02  Martin Baulig  <martin@ximian.com>
24262
24263         * class.c (mono_class_create_from_typedef): Call
24264         mono_class_setup_parent() and mono_class_create_mono_type() before
24265         parsing the interfaces.
24266
24267 2004-12-02  Martin Baulig  <martin@ximian.com>
24268
24269         * metadata.c (generic_inst_cache): New static hashtable.
24270         (mono_metadata_lookup_generic_inst): New public function.
24271         (mono_metadata_inflate_generic_inst): New public function.
24272         (mono_metadata_parse_generic_inst): New public function.
24273         (do_mono_metadata_parse_generic_class): Use the new
24274         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24275         since this'll also use the cache.
24276
24277         * reflection.c (mono_reflection_bind_generic_method_parameters):
24278         Use mono_metadata_lookup_generic_inst() to use the new cache.
24279
24280         * class.c (inflate_mono_type): Use
24281         mono_metadata_inflate_generic_inst() to inflate a generic
24282         instance; this'll also use the new cache.
24283
24284         * loader.c (method_from_methodspec): Use
24285         mono_metadata_parse_generic_inst() and
24286         mono_metadata_inflate_generic_inst() rather than parsing it
24287         manually, so we can use the new cache.
24288
24289 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24290
24291         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24292         the wait times out.
24293
24294 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24295
24296         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24297         iter->args based on whether parameters are passed in registers (i.e.
24298         MONO_ARCH_REGPARMS is defined)
24299
24300 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24301
24302         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24303         the exception message. Fixes #70070.
24304         (method_from_methodspec): Fix warnings.
24305
24306 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24307
24308         * process.c: (complete_path) return the path quoted
24309
24310 2004-12-01  Martin Baulig  <martin@ximian.com>
24311
24312         * class-internals.h (MonoGenericInst): New structure.
24313         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24314         `is_open' with `MonoGenericInst *inst'.
24315         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24316         `is_open' with `MonoGenericInst *inst'.
24317
24318 2004-11-30  Martin Baulig  <martin@ximian.com>
24319
24320         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24321
24322         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24323         to `generic_class_cache'.
24324
24325         * metadata.c
24326         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24327         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24328         (mono_generic_inst_is_valuetype): Renamed to
24329         mono_generic_class_is_valuetype().
24330
24331         * class-internals.h
24332         (MonoGenericInst): Renamed to MonoGenericClass.
24333         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24334         (MonoClass): Renamed `generic_inst' to `generic_class'.
24335         (MonoGenericContext): Renamed `ginst' to `gclass'.
24336
24337         * object-internals.h
24338         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24339
24340         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24341         mono_reflection_generic_class_initialize().
24342
24343         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24344         now known as "System.Reflection.MonoGenericClass".
24345         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24346
24347 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
24348
24349         * class-internals.h: Added a flag field to MonoClass to cache the
24350         declarative security attributes actions associated with the class.
24351         * domain-internals.h: Added booleans to MonoJitInfo to cache the
24352         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
24353         applicable to the JITted method.
24354         * reflection.c|h: Added functions to extract (as flags) which security
24355         actions are available (declaratively) for a method, class or assembly.
24356         * metadata.c|h: Added functions to search the declarative security
24357         table in the metadata.
24358         
24359 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
24360
24361         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
24362         EXPORTEDTYPES are already in the class name cache, so there is no
24363         need to add extra code here to look at them. Just removes a bit of
24364         cruft.
24365
24366         (ves_icall_System_Environment_get_TickCount): No need for #if
24367         WINDOWS. We already have the code in io-layer.
24368
24369 2004-11-28  Martin Baulig  <martin@ximian.com>
24370
24371         * loader.c
24372         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
24373         Fixes gen-112.cs.
24374
24375 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
24376
24377         * assembly.c (do_mono_assembly_open): Instead of having a
24378         conditional WITH_BUNDLE, incorporate support for bundles here, by
24379         having a global `bundles' variable holding a pointer to the actual
24380         bundles. 
24381
24382         (mono_register_bundled_assemblies): New API call used by the
24383         bundle code. 
24384
24385         See mkbundle.1 for details.
24386         
24387 2004-11-27  Martin Baulig  <martin@ximian.com>
24388
24389         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
24390         the vtable for generic methods.
24391
24392 2004-11-26  Martin Baulig  <martin@ximian.com>
24393
24394         * metadata.c
24395         (mono_metadata_generic_method_hash): New public function.
24396         (mono_metadata_generic_method_equal): Likewise.
24397
24398         * class-internals.h
24399         (MonoGenericContainer): Added `GHashTable *method_hash'.
24400
24401         * reflection.c (ReflectionMethodBuilder): Added
24402         `MonoGenericContainer *generic_container'.
24403         (reflection_methodbuilder_to_mono_method): Don't create a new
24404         MonoGenericContainer each time we're called.
24405         (mono_reflection_bind_generic_method_parameters): Use
24406         `container->method_hash' to cache the results so we don't create a
24407         different method if we're called several times with the same
24408         arguments.
24409
24410         * loader.c (method_from_methodspec): Use the new
24411         `container->method_hash' here, too.
24412
24413 2004-11-26  Martin Baulig  <martin@ximian.com>
24414
24415         * class.c (inflate_generic_signature): Correctly compute
24416         `res->has_type_parameters'.
24417         (mono_class_vtable): Use the `has_type_parameters' flag to
24418         determine whether we're a generic method.
24419
24420         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
24421
24422 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
24423
24424         * object.c (mono_runtime_run_main): Fix a small memory leak.
24425
24426 2004-11-25  Martin Baulig  <martin@ximian.com>
24427
24428         * class.c (set_generic_param_owner): Fixed the loop.
24429
24430 2004-11-25  Martin Baulig  <martin@ximian.com>
24431
24432         * object.c (mono_class_vtable): Don't create any JIT wrappers for
24433         generic methods.
24434
24435 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
24436
24437         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
24438         names. Fixes #69787.
24439
24440 2004-11-24  Martin Baulig  <martin@ximian.com>
24441
24442         * class.c (mono_class_create_generic_2): If we don't have a
24443         `ginst->parent', inflate `gklass->parent' to get our parent.
24444
24445 2004-11-24  Martin Baulig  <martin@ximian.com>
24446
24447         * reflection.c (compare_genericparam): Correctly sort the
24448         GenericParam table; fixes #69779.
24449
24450 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
24451
24452         * reflection.c: When writing a PE file, don't create a huge
24453         buffer in memory. Just write the arrays we have to the file.
24454         This reduces memory usage.
24455
24456         * metadata-internals.h: MonoDynamicStream pefile is no longer used
24457         globally.
24458
24459 2004-11-17  Martin Baulig  <martin@ximian.com>
24460
24461         * class.c (mono_class_init): Don't setup `class->parent' for
24462         dynamic instances; moved this to mono_class_generic_2().
24463         (mono_class_create_generic): Also set `klass->inited' for dynamic
24464         generic instances.
24465         (mono_class_create_generic_2): Don't do anything for dynamic
24466         generic instances.  Set `klass->parent' here and also call
24467         mono_class_setup_parent() here. 
24468
24469         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
24470         `MonoType *parent' argument; set `ginst->parent' before calling
24471         mono_class_create_generic_2(), so we set the correct parent.
24472
24473 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
24474
24475         * reflection.c: allow getting attributes from ModuleBuilder
24476         (used by ikvm).
24477
24478 2004-11-17  Martin Baulig  <martin@ximian.com>
24479
24480         * class.c (mono_class_create_from_typedef): If a type parameter is
24481         inherited from an outer class, set its owner to that class.
24482
24483 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
24484
24485         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
24486           for (int*) written size. This fixes bug #69592.
24487
24488 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
24489
24490         * icall.c: Added IsAuthenticodePresnet internal call.
24491         * image.c|h: New function that check a MonoImage for an Authenticode
24492         signature in the certificate PE data directory.
24493         * security.c|h: New internal call to ask the runtime if an 
24494         Authenticode signature seems referenced in the PE header.
24495
24496 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
24497
24498         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
24499
24500         * reflection.c (mono_image_create_pefile): Free the assembly streams
24501         after writing out the assembly file.
24502
24503         * object.c (mono_runtime_run_main): Fix small memory leak.
24504
24505         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
24506         property access modifiers. Fixes #69389.
24507
24508 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
24509
24510         * domain.c, object.c, object-internals.h, domain-internals.h,
24511         object.h, marshal.c: keep dynamic code info per domain.
24512
24513 2004-11-15  Martin Baulig  <martin@ximian.com>
24514
24515         * class.c (mono_type_get_name_recurse): Put type arguments in
24516         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
24517         see bug #68387.
24518
24519 2004-11-15  Martin Baulig  <martin@ximian.com>
24520
24521         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
24522         (mono_class_setup_vtable): When computing `the_cname' for a
24523         generic instance, don't include the namespace since we'd otherwise
24524         add it twice.
24525
24526 2004-11-15  Martin Baulig  <martin@ximian.com>
24527
24528         * class.c (mono_class_create_generic): Changed return type to void.
24529         (mono_class_create_generic_2): New public function; setup
24530         `class->method', `class->field' and `class->interfaces' here
24531         instead of in mono_class_init().
24532
24533         * class.h (mono_class_create_generic): Moved to class-internals.h.
24534
24535 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
24536
24537         * reflection.c (mono_image_create_pefile): take a file HANDLE.
24538         rather than writing to memory, write to this file. Right now,
24539         we are just writting into a buffer, and copying that. However
24540         we can avoid the buffer later.
24541
24542         (mono_dynamic_stream_reset): new function
24543
24544         * icall.c, object-internals.h: update for the above.
24545
24546 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
24547
24548         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
24549         have been using gc'd memory. First it is slower, unlikely
24550         the comment in the source code said, secondly, it increases
24551         our footprint to do it in the gc.
24552
24553         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
24554         the method so that it does not have to copy to managed code.
24555
24556 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
24557
24558         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
24559
24560 2004-11-12  Martin Baulig  <martin@localhost>
24561
24562         * reflection.c (mono_image_create_token): Allow generic method
24563         definitions here, since they may appear in an `.override'; see
24564         gen-98/gen-99 for an example.
24565
24566 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
24567
24568         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
24569         #69365.
24570
24571         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
24572         descriptive.
24573
24574 2004-11-11  Martin Baulig  <martin@ximian.com>
24575
24576         * class.c (mono_class_setup_vtable): In an explicit interface
24577         implementation, the method name now includes the arity.
24578
24579 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
24580
24581         * object.c (mono_array_full_copy): Fix warning.
24582
24583 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
24584
24585         * appdomain.c: Removed look_for_method_by_name(). Use the new method
24586         mono_class_get_method_from_name() instead.
24587         
24588         * class-internals.h: Added two new types of wrappers. 
24589         Added MonoRemotingTarget enum. Added new trampoline function type, which
24590         takes an additional MonoRemotingTarget value as parameter, so it is
24591         possible to request a trampoline for a specific target.
24592         
24593         * class.c: Added new mono_class_get_method_from_name() method.
24594         
24595         * class.h: In MonoRemoteClass, we can have now to vtables, one for
24596         general remoting sinks and one specific for cross domain calls.
24597         
24598         * debug-helpers.c: Added new wrapper names.
24599         
24600         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
24601         of a remote class.
24602         
24603         * image.c: Porperly delete value objects form the remoting invoke hashtable.
24604         
24605         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
24606         with several other methods (mono_marshal_get_xappdomain_dispatch,
24607         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
24608         and others) can generate a fast remoting wrapper for cross domain calls.
24609         More information can be found in docs/remoting.
24610         Other changes: Removed mono_find_method_by_name, and used
24611         mono_class_get_method_from_name instead.
24612         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
24613         is stored in the remoting invoke hashtable.
24614         
24615         * marshal.h: published the new method for getting the xdomain wrapper,
24616         and also added a method for getting the adequate wrapper for a given
24617         method and target.
24618         
24619         * object-internals.h, object.c: Added a couple of methods for capying and
24620         cloning arrays.
24621         Modified mono_install_remoting_trampoline, which takes the new remoting
24622         trampoline that has a remoting target as parameter.
24623         mono_class_proxy_vtable now also takes a remoting target as parameter, and
24624         will return the most suitable vtable for the target.
24625         Added mono_remote_class_vtable, which returns the vtable of a remote class
24626         (which can be the normal remoting vtable or the xdomain vtable).
24627         
24628         * threads.c: the xdomain invoke and dispatch wrappers must also be
24629         protected against interruptions.
24630
24631 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24632
24633         * icall.c: use memmove in BlockCopyInternal when the source and
24634         destination arrays are the same.
24635
24636 2004-11-09  Martin Baulig  <martin@ximian.com>
24637
24638         * class-internals.h (MonoGenericContainer): Removed `method' and
24639         `signature', replaced them with `is_method' and `is_signature'
24640         flags.  Added `context'.
24641
24642         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
24643         instead of a `MonoGenericContainer *'.
24644
24645         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
24646         for dynamic type parameters.
24647         (mono_metadata_load_generic_params): Setup `container->context'.
24648
24649         * reflection.c (mono_reflection_setup_generic_class): Setup
24650         `tb->generic_container->context'.
24651         (do_mono_reflection_bind_generic_parameters): Use
24652         mono_class_inflate_generic_type() to correctly inflate types,
24653         rather than using our own hack just for MONO_TYPE_VAR.
24654
24655 2004-11-09  Martin Baulig  <martin@ximian.com>
24656
24657         * class.c (mono_class_inflate_generic_method): Small fix; don't
24658         crash here.
24659
24660         * icall.c
24661         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
24662         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
24663         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
24664         (ves_icall_Type_BindGenericParameters): Likewise.
24665         (ves_icall_Type_get_IsGenericInstance): Likewise.
24666         (ves_icall_Type_GetGenericParameterPosition): Likewise.
24667         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
24668         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
24669         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
24670
24671 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
24672
24673         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
24674         assembly versions and public key tokens. Fixes #69113.
24675
24676 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
24677
24678         * metadata.c: fix bug introduced with the type cache changes
24679         on 2004-11-06.
24680
24681 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
24682
24683         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
24684         the MonoClass pointer instead of the token in exception clauses.
24685         * reflection.c: updates for the above and make the code not depend
24686         on the structure of MonoExceptionClause.
24687
24688 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
24689
24690         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24691         Add support for dynamic assemblies. Fixes #69114.
24692
24693         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
24694
24695 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
24696
24697         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
24698         since most only those methods use it. the code member of
24699         MonoMethodPInvoke was dead, so that can be removed too. Also,
24700         remove inline_count (again, not used), and move slot so that it
24701         can share bits with some other flags. This saves 8 bytes in the
24702         structure and gives us about 50 kb back for mcs helloworld.cs
24703
24704         * *.[ch]: Do naming changes for the above.
24705
24706         * loader.c (mono_method_get_header): Lazily init the header
24707         on first access.
24708         (mono_get_method_from_token): don't init the header here
24709         (mono_free_method): the header may never be allocated
24710
24711         Overall, this saves 150 kb of unmanaged allocations
24712         for mcs helloworld.cs. That accounts for 10% of the unmanaged
24713         memory at runtime.
24714         
24715         * loader.c, loader.h (mono_method_get_header): new accessor.
24716
24717         * *.[ch]: use the above method. Prepares us to lazily load
24718         the header.
24719
24720         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
24721         three warnings, which are actual bugs (see 69206).
24722
24723         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
24724         unused. Saves a cool 4 bytes / method.
24725
24726 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
24727
24728         * metadata.c (builtin_types): Add types for System.Object here.
24729         (mono_metadata_parse_type_full): Cache MonoType*'s that are
24730         for a class or valuetype from klass->this_arg or klass->byval_arg.
24731
24732         On mcs for a hello world, this gets us down from 21836 MonoType's
24733         to 14560.
24734
24735         (mono_metadata_free_type): Account for the above change.
24736
24737 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
24738
24739         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
24740         exception instead of asserting if name is null.
24741         (ves_icall_System_AppDomain_GetData): Ditto.
24742
24743 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
24744
24745         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
24746         EnumBuilder.
24747
24748         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
24749         Return NULL when the domain does not have entry_assembly set.
24750
24751         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
24752         Add a 'resource_modules' argument.
24753         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
24754
24755         * reflection.c (mono_reflection_create_runtime_class): Move setting
24756         of wastypebuilder here, so mono_get_type_object () returns a MonoType
24757         for enums too.
24758
24759         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
24760         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
24761         Throw an ArgumentNullException if 'ptr' is null.
24762
24763         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
24764         assemblies here. Fixes #69020.
24765
24766 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
24767
24768         * reflection.c (build_compressed_metadata): Fix the previous patch for
24769         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
24770         the stack.
24771
24772 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
24773
24774         * assembly.c (mono_assembly_names_equal): Allow a match if one of
24775         the cultures is false. Fixes #69090.
24776
24777         * reflection.c (build_compressed_metadata): Fix invalid memory read 
24778         detected by valgrind.
24779         
24780         * reflection.c (mono_reflection_get_type): Avoid triggering a 
24781         TypeResolve multiple times for the same type. Fixes #65577.
24782
24783 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
24784
24785         * marshal.c: Avoid using ldftn to call managed functions. It is
24786         much slower than just a call.
24787
24788         * reflection.c (mono_module_get_object): free the basename we
24789         allocate here from glib.
24790         
24791         * reflection.c (ensure_runtime_vtable): make sure to free
24792         overrides.  Also, we were allocating an array of MonoMethod not an
24793         array of MonoMethod*.
24794
24795         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
24796
24797         * image.c (mono_image_close): free image->guid here.
24798
24799 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
24800
24801         * reflection.c: Fix some spec conformance issues with the PE file
24802         structures so mcs compiled apps run on the Net 2.0 beta.
24803
24804 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
24805
24806         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
24807         Implement this. Fixes #67264.
24808
24809         * debug-helpers.h debug-helpers.c marshal.c: Move 
24810         mono_find_method_by_name to debug-helpers.c.
24811
24812 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
24813
24814         * object.c (mono_release_type_locks): type_initialization_hash is
24815         a GHashTable.
24816
24817         * reflection.c object.c object-internals.h: Fix warnings.
24818
24819         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
24820         without accessors. Fixes #61561.
24821
24822         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
24823         application base from the root domain if not set. Fixes #65641.
24824         (mono_runtime_init): Fix warning.
24825
24826 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24827
24828         * appdomain.c: call mono_thread_pool_init.
24829         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
24830         of worker threads based on the number of CPUs and the environment
24831         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
24832         for non-windows (windows) systems.
24833
24834 2004-10-27  Chris Toshok  <toshok@ximian.com>
24835
24836         * mono-debug-debugger.c (write_class): don't call mono_class_init
24837         here, as even with the check for (!klass->init_pending), we get
24838         into a situation where we're hitting cycles in class
24839         initialization.  Fixes #68816.
24840
24841 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
24842
24843         * image.c: Avoid overwriting values in the loaded_images_hash when an
24844         assembly is loaded multiple times. Fixes #61152.
24845
24846         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
24847         so multiple satellite assemblies for the same name can be loaded.
24848         Fixes #68259.
24849
24850         * mono_domain_assembly_preload: Actually return the loaded assembly, 
24851         not NULL.
24852
24853         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
24854         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
24855
24856         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
24857         pending finalizers are not invoked after the appdomain has been 
24858         unloaded. Fixes #67862.
24859
24860 2004-10-22  Martin Baulig  <martin@ximian.com>
24861
24862         * mono-debug-debugger.c
24863         (mono_debugger_runtime_invoke): Don't box valuetypes.
24864
24865 2004-10-22  Chris Toshok  <toshok@ximian.com>
24866
24867         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
24868         don't hide private methods.
24869
24870 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
24871
24872         * icall.c: Allows the runtime to "share" (when known) the public key
24873         token of an assembly. This avoid the need to recalculate the token 
24874         (from the public key) in managed code.
24875
24876 2004-10-21  Chris Toshok  <toshok@ximian.com>
24877
24878         * debug-helpers.c (append_class_name): argh, revert last patch.
24879         
24880 2004-10-21  Chris Toshok  <toshok@ximian.com>
24881
24882         * debug-helpers.c (append_class_name): use '+' as the delimiter,
24883         not '/', so that it matches what the debugger uses to look up
24884         methods.
24885
24886 2004-10-21  Martin Baulig  <martin@ximian.com>
24887
24888         * mono-debug-debugger.c (mono_debugger_throw_exception): New
24889         public method; this is called each time an exception is thrown and
24890         allows the debugger to use exception catch points.
24891
24892 2004-10-21  Martin Baulig  <martin@ximian.com>
24893
24894         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
24895         the stack pointer and the exception object in some struct and pass
24896         that to the debugger.
24897
24898 2004-10-21  Chris Toshok  <toshok@ximian.com>
24899
24900         * mono-debug-debugger.c (do_write_class): add instance/static
24901         event support.  We don't expose "raise" or "other" yet.
24902         (event_is_static): new method.
24903
24904 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
24905
24906         * mono-debug-debugger.c
24907         (mono_debugger_handle_exception): Remove
24908         bogus return value for fussy compilers.
24909
24910 2004-10-20  Martin Baulig  <martin@ximian.com>
24911
24912         * mono-debug-debugger.c
24913         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
24914         (mono_debugger_handled_exception): Likewise.
24915
24916 2004-10-20  Martin Baulig  <martin@ximian.com>
24917
24918         * mono-debug-debugger.h (MonoDebuggerEvent): Added
24919         MONO_DEBUGGER_EVENT_EXCEPTION.
24920
24921         * mono-debug-debugger.c (mono_debugger_handle_exception): New
24922         public function to send the debugger a notification for an
24923         exception and inform it about a catch/finally clause.
24924
24925 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
24926
24927         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
24928         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
24929         fix 2.95 build. 
24930
24931         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
24932
24933 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
24934
24935         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
24936         marshalled as [In,Out]. Fixes #58325.
24937
24938 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
24939
24940         * reflection.c (mono_method_body_get_object): Implement some fields.
24941
24942 2004-10-12  Martin Baulig  <martin@ximian.com>
24943
24944         * reflection.c (mono_reflection_bind_generic_parameters): Small
24945         fix, correctly retrieve our parent from a generic instance.
24946
24947 2004-10-12  Martin Baulig  <martin@ximian.com>
24948
24949         * metadata.c (mono_metadata_generic_param_equal): We always have
24950         an owner.
24951
24952         * class.c
24953         (mono_class_from_generic_parameter): We need to have an owner.
24954         (my_mono_class_from_generic_parameter): Likewise.
24955
24956         * reflection.c (mono_reflection_setup_generic_class): Renamed to
24957         mono_reflection_create_generic_class() and added a new
24958         mono_reflection_setup_generic_class().  
24959         (mono_reflection_initialize_generic_param): If we're a nested
24960         generic type and inherited from the containing class, set our
24961         owner to the outer class.
24962
24963 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
24964
24965         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
24966
24967         * reflection.c (mono_method_body_get_object): New function to create
24968         a MethodBody object.
24969
24970         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
24971
24972 2004-10-11  Martin Baulig  <martin@ximian.com>
24973
24974         * metadata.c (_mono_metadata_type_equal): Renamed to
24975         do_mono_metadata_type_equal() and made static.
24976
24977 2004-10-11  Martin Baulig  <martin@ximian.com>
24978
24979         * appdomain.c: Bump corlib version number to 28.
24980
24981 2004-10-10  Martin Baulig  <martin@ximian.com>
24982
24983         * class-internals.h
24984         (MonoGenericInst): Added `MonoGenericContainer *container'.
24985         (MonoGenericMethod): Likewise.
24986         (MonoGenericContext): Likewise.
24987         (MonoGenericParam): Added `MonoGenericContainer *owner'.
24988
24989         * metadata.c
24990         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
24991         (do_mono_metadata_parse_generic_inst): Likewise.
24992         (mono_metadata_parse_type_full): New public method.  This is the actual
24993         mono_metadata_parse_type() implementation - with an additional
24994         `MonoGenericContainer *' argument.
24995         (mono_metadata_parse_array_full): Likewise.
24996         (mono_metadata_parse_signature_full): Likewise.
24997         (mono_metadata_parse_method_signature_full): Likewise.
24998         (mono_metadata_parse_mh_full): Likewise.
24999         (mono_type_create_from_typespec): Likewise.
25000         (mono_metadata_interfaces_from_typedef_full): New public method;
25001         this is similar to the other _full() methods, but we take a
25002         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
25003         (mono_metadata_parse_generic_param): Take an additional
25004         `MonoGenericContainer *' argument and lookup the MonoGenericParam
25005         from that container.
25006         (mono_metadata_generic_param_equal): New static method to compare
25007         two type parameters.
25008         (_mono_metadata_type_equal): New static method; takes an
25009         additional `gboolean signature_only' argument - if true, we don't
25010         compare the owners of generic parameters.
25011         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
25012         with a TRUE argument - do a signature-only comparision.
25013
25014         * loader.c: Use the new _full() methods and pass the
25015         MonoGenericContainer to them.
25016
25017         * object-internals.h (MonoReflectionTypeBuilder): Added
25018         `MonoGenericContainer *generic_container' field.
25019         (MonoReflectionMethodBuilder): Likewise.
25020
25021 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
25022
25023         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
25024         case initial images of dynamic assemblies.
25025
25026         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
25027
25028         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
25029
25030         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
25031         length of event->other array.
25032         (typebuilder_setup_events): Ditto.
25033
25034         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
25035         'assembly_by_name' and add an 'assemblies' list.
25036
25037         * assembly.h assembly.c: Add a new search hook for determining whenever
25038         an assembly is already loaded. Use this instead of searching in the
25039         loaded_assemblies list.
25040
25041         * domain.c appdomain.c: Implement the new search hook so loaded 
25042         assemblies are now scoped by appdomain. Fixes #67727.
25043
25044 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
25045
25046         * threads.c (mono_thread_attach): Initialize synch_lock field so
25047         mono_thread_detach works again.
25048
25049         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
25050         'lib' too. Fixes #63130.
25051
25052 2004-10-06  Jackson Harper  <jackson@ximian.com>
25053
25054         * culture-info-tables.h: regenerated.
25055
25056 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
25057
25058         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
25059         implemented by other interfaces in the result. Fixes #65764.
25060         
25061         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25062         Handle unloadable modules without crashing.
25063
25064         * image.c (load_modules): Revert the previous patch since modules must
25065         have a fixed index inside the array.
25066         
25067         * image.c (load_modules): Don't include native modules in the modules
25068         array.
25069
25070 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
25071
25072         * reflection.h: Add param_defaults field.
25073
25074         * reflection.c: Add support for parameter defaults in dynamic methods.
25075         Fixes #64595.
25076
25077         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25078         an empty string when a type has no namespace. Fixes #64230.
25079
25080 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
25081
25082         * tabledefs.h: Added "internal" security actions to support non-CAS
25083         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
25084         Note: they do not seems to be used anymore in 2.0 (new metadata format)
25085
25086 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
25087
25088         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25089         constructor of abstract class. Fixes #61689.
25090
25091 2004-10-04  Martin Baulig  <martin@ximian.com>
25092
25093         * class-internals.h (MonoGenericContainer): New type.
25094         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25095         `MonoGenericContainer *generic_container'.
25096         (MonoClass): Replaced `gen_params' and `num_gen_params' with
25097         `MonoGenericContainer *generic_container'.
25098
25099         * metadata.c (mono_metadata_load_generic_params): Return a
25100         `MonoGenericContainer *' instead of a `MonoGenericParam *';
25101         removed the `num' argument.
25102
25103 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
25104
25105         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25106         for dynamic images.
25107
25108         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25109         machine fields.
25110
25111         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25112
25113         * reflection.c: Save pe_kind and machine values into the generated
25114         image file.
25115
25116         * appdomain.c: Bump corlib version number.
25117
25118         * object-internals.h: Reorganize layout of LocalBuilder.
25119
25120         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25121         New helper function.
25122
25123         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25124         created MonoType for dynamic types. Fixes #66180.
25125
25126 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25127
25128         * threadpool.c: the ares hashtable needs a critical section around it.
25129         this prevents some nasty segfaults
25130
25131 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25132
25133         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25134         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25135         bug 67324).
25136         
25137 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25138
25139         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25140         
25141 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25142
25143         * image.c: Always canonicalize image file names, to avoid loading
25144         the same assembly twice when referenced using a relative path.
25145
25146 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25147
25148         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25149
25150         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25151
25152         * marshal.c: Fix warnings.
25153
25154 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25155
25156         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25157         attempting to marshal the delegate_trampoline as the method_addr.
25158         This patch has a static hashtable of marshalled delegates so that 
25159         we can map delegate_trampoline addresses back to delegates.  This
25160         allows a delegate passed to managed code to be passed back into native
25161         code.  Fixes #67039
25162
25163 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25164
25165         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25166
25167         * reflection.c (method_encode_code): Align method headers properly.
25168         Fixes #66025.
25169
25170 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25171
25172         * marshal.c: In the runtime invoke wrapper, reset the abort
25173         exception if it is cached. This avoids the automatic rethrowal of 
25174         the exception after the catch of the wrapper. Also check for pending
25175         interruptions before calling the managed method. This is done using
25176         the new method emit_thread_force_interrupt_checkpoint, since the
25177         normal checkpoint method is ignored when running the invoke wrapper.
25178         * object.c: If the abort exception is rethrown, set the abort_exc
25179         field of the thread, so it will be rethrown aftere every catch.
25180         * threadpool.c: Only run an interruption checkpoint if what has been
25181         requested is a stop of the thread (aborts will be ignored).
25182         * threads.c: By default, a thread will now never be interrumped while
25183         running the runtime invoke wrapper (this ensures that runtime_invoke
25184         will always return to the caller if an exception pointer is provided).
25185         There is a new special method mono_thread_force_interruption_checkpoint()
25186         to force an interruption checkpoint even if running a protected
25187         wrapper, which is used by the same runtime invoke wrapper to do a check
25188         at a safe point.
25189
25190 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25191
25192         * object.c, object-internals.h: Implemented mono_release_type_locks,
25193         which releases the cctor locks held by a thread.
25194         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25195         by a thread. Added mono_thread_exit() method to be used to safely stop
25196         a thread.
25197
25198 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25199
25200         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25201         Move null check before dereference.  Avoid indexing beyond the end
25202         of the 'modules' array.
25203
25204 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25205
25206         * metadata-internals.h (MonoImage): Add module_count field.
25207         * image.c (load_modules): Set image->module_count.
25208         (mono_image_load_file_for_image): Use image->module_count.
25209         * reflection.c (mono_image_load_module): Append to image->modules array 
25210         of dynamic assembly.
25211         (mono_module_get_object): Fix loop to actually increment index.
25212         Use image->module_count.
25213         * assembly.c (mono_assembly_load_references): Use image->module_count.
25214         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25215         Likewise.
25216
25217 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25218
25219         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25220         Avoid assert on generic types.
25221
25222 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25223
25224         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25225
25226         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25227
25228         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25229         function to convert a MarshalSpec structure to its managed counterpart.
25230
25231         * reflection.c: Fix warnings.
25232         
25233         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25234         field.
25235
25236         * icall.c (mono_create_icall_signature): Fix build.
25237
25238 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25239
25240         * icall.c: Add MakePointType icall.
25241
25242         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25243         warnings.
25244
25245 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25246
25247         * threadpool.c: reuse allocated slots in the queue.
25248
25249 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25250
25251         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25252
25253         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25254
25255         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25256         previous change.
25257
25258         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25259         ThrowOnUnmappableChar.
25260
25261         * icall.c (ves_icall_Type_GetPacking): New icall.
25262
25263 2004-09-24  Martin Baulig  <martin@ximian.com>
25264
25265         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25266
25267 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25268
25269         * appdomain.c:
25270         (mono_domain_set): allow setting a domain that is being unloaded.
25271         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25272         being unloaded.
25273
25274 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25275
25276         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25277         the GetCustomAttributes icall.
25278
25279 2004-09-23  Martin Baulig  <martin@ximian.com>
25280
25281         * object-internals.h (MonoReflectionGenericParam): Replaced
25282         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25283         with `guint32 attrs'.
25284
25285 2004-09-23  Martin Baulig  <martin@ximian.com>
25286
25287         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25288
25289 2004-09-23  Martin Baulig  <martin@ximian.com>
25290
25291         * object-internals.h (GenericParameterAttributes): New enum.
25292
25293 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25294
25295         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25296         
25297         * class.c (init_events): Fill out event->other field.
25298
25299         * class.c: Fix warnings.
25300
25301         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25302
25303 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25304
25305         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25306         walk which doesn't supply the IL offset.
25307
25308 2004-09-22  Martin Baulig  <martin@ximian.com>
25309
25310         * reflection.c (mono_reflection_setup_internal_class): If we're
25311         System.ValueType, System.Object or System.Enum, set
25312         `klass->instance_size' and create the vtable.
25313         (mono_reflection_create_internal_class): If we're an enum type,
25314         get the base class from our current corlib.
25315
25316 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25317
25318         * reflection.h (MonoResolveTokenError): New type.
25319
25320         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25321         icall.
25322
25323         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25324
25325 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25326
25327         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25328         Support also calling constructors, but only for already allocated objects.
25329
25330 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25331
25332         * reflection.c (type_get_qualified_name): If the klass is null
25333         return the typename to avoid a NullRefEx.
25334         (encode_cattr_value): Get the qualified name of the boxed type,
25335         not the underlying enumtype.  Fixes #62984.
25336
25337 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25338
25339         * marshal.c: Fix problems with previous checkin.
25340
25341 2004-09-21    <vargaz@freemail.hu>
25342
25343         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25344         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25345
25346         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25347
25348 2004-09-21  Geoff Norton <gnorton@customerdna.com>
25349
25350         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
25351         should only return a type for pointers, arrays, and passbyref types.
25352         Fixes bug #63841.
25353
25354 2004-09-21  Martin Baulig  <martin@ximian.com>
25355
25356         * domain.c (mono_debugger_check_runtime_version): New public
25357         function.
25358
25359         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
25360
25361 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
25362
25363         * reflection.c: Added missing sort to the declarative security 
25364         attributes table. MS implementation stops seeing the attributes if the
25365         token number regress in the table (as shown by ildasm and permview).
25366
25367 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
25368
25369         * object-internals.h (MonoReflectionModule): Add 'token' field.
25370         
25371         * reflection.c (mono_reflection_get_token): Add support for Module
25372         and Assembly.
25373         (mono_module_get_object): Set 'token' field.
25374         (mono_module_file_get_object): Set 'token' field.
25375
25376         * icall.c: Add new Assembly and Module icalls.
25377
25378         * appdomain.c: Bump corlib version.
25379
25380 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
25381
25382         * loader.h loader.c class.h class.c: Add helper functions for obtaining
25383         tokens of metadata objects.
25384
25385         * reflection.h reflection.c (mono_reflection_get_token): New function
25386         to obtain the token of a metadata object.
25387
25388         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
25389
25390 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
25391
25392         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
25393         
25394         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
25395
25396 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
25397
25398         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
25399         * object-internals.h: Added 3 MonoArray* members to MonoReflection
25400         AssemblyBuilder to access the permissions set in the class lib.
25401         * reflection.c: Added security attributes encoding step in 
25402         mono_image_build_metadata.
25403         * tabledefs.h: Added new security actions defined in 2.0:
25404         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
25405
25406 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25407
25408         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
25409         macro parameter.
25410
25411 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25412  
25413         * locales.c: nullify the ICU_collator member of CompareInfo when it is
25414           finalized. There where random SIGSEVs at program termination, when
25415           an object being finalized was trying to do a string comparison and
25416           the current culture was already finalized.
25417  
25418 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25419
25420         * threads.c: call thread_cleanup before finishing the thread if we get
25421         there.
25422
25423 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
25424
25425         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
25426         assemblies from the parent. Fixes #65665.
25427
25428 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
25429
25430         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
25431         modifiers.
25432
25433 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
25434
25435         * reflection.h: add prototype for mono_get_dbnull_object
25436         * reflection.c: add prototypes for get_default_param_value_blobs 
25437         and mono_get_object_from_blob for fussier compilers
25438
25439 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
25440  
25441         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
25442         false deadlock checks in class initialization.
25443  
25444 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
25445
25446         * image.c (mono_image_addref): Fix comment.
25447
25448         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
25449         possible.
25450
25451 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
25452
25453         * reflection.c (mono_param_get_objects): Modified to return
25454         ParameterInfo.DefaultValue object.
25455
25456         (get_default_param_value_blobs):
25457         (mono_get_object_from_blob):
25458         (mono_get_dbnull_object): New helper routines. 
25459
25460         * object.c (mono_get_constant_value_from_blob): New helper routine
25461         carved out from get_default_field_value ()
25462
25463         * object-internals.h (mono_get_constant_value_from_blob): Added
25464         function declaration.
25465
25466 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
25467
25468         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
25469         referenced assemblies. Fixes #62135.
25470
25471         * exception.h exception.c (mono_get_exception_file_not_found2): New
25472         helper function.
25473
25474 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
25475
25476         * class.h class.c: Add mono_type_get_underlying_type ().
25477
25478 2004-09-09  Geoff Norton <gnorton@customerndna.com>
25479
25480         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
25481         Fix GetTypes() to support dynamically created assemblies.
25482
25483 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
25484
25485         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
25486         
25487         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
25488         previous patch.
25489
25490         * reflection.h reflection.c loader.c: Allow dynamic construction of
25491         pinvoke methods. Fixes #65571.
25492         
25493         * reflection.c (mono_reflection_get_type): Revert previous change since
25494         it causes regressions.
25495
25496 2004-09-08  Martin Baulig  <martin@ximian.com>
25497
25498         * class.c (class_compute_field_layout): Don't call
25499         mono_class_layout_fields() for open generic instances.
25500
25501 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
25502         * threads.c appdomain.c: fix typo in GC macro
25503
25504 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25505
25506         * threads.c: don't call mono_thread_detach() in start_wrapper(),
25507         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
25508
25509 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
25510
25511         * image.c (mono_image_close): Applied patch from 
25512         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
25513         assembly is loaded multiple times from data.
25514         
25515         * image.c (mono_image_open): Fix warning.
25516
25517 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25518
25519         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
25520         once. Fixes #58334.
25521         
25522         * reflection.c (mono_reflection_create_runtime_class): Initialize
25523         klass->nested_classes. Fixes #61224.
25524
25525 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25526
25527         * threads.c: sched_yield() on exit, to allow threads to quit.
25528
25529 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25530
25531         * object.c (mono_unhandled_exception): Remove leftover debug code.
25532
25533 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
25534
25535         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
25536
25537 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25538
25539         * marshal.c (emit_marshal_array): Really null terminate string arrays.
25540         
25541         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
25542
25543 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25544
25545         * marshal.c (emit_marshal_array): Null terminate string arrays.
25546         
25547         * marshal.c (raise_auto_layout_exception): Fix warning.
25548
25549         * reflection.c (mono_param_get_objects): Initialize the default value
25550         with DBNull.Value, not null. Fixes #62123.
25551
25552 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
25553
25554         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
25555         throw an exception with a cute explanation.
25556
25557 2004-09-06  Dick Porter  <dick@ximian.com>
25558
25559         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
25560         Close the new process's thread handle, as we don't use it.  The
25561         handle stays around forever otherwise.
25562
25563 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25564
25565         * object.c (arith_overflow): Fix warning.
25566
25567         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
25568         calling conventions in method refs. Fixes #65352.
25569
25570         * reflection.c: Fix warnings.
25571
25572 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25573
25574         * icall.c: Add a new icall for Array.Clear
25575
25576 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25577
25578         * object.c: When allocating an array, we have to throw
25579         an overflow exception if any of the lengths are < 0.
25580
25581 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25582
25583         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
25584         properly. Also move implementation of string array marshalling to 
25585         managed code. Fixes #42316.
25586
25587 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25588
25589         * assembly.c: provide more information when loading an assembly fails.
25590
25591 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25592
25593         * filewatcher.c: don't expect the development fam package to be
25594         installed.
25595
25596 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
25597
25598         * marshal.c: Make a copy of the signature cookie since it will be
25599         freed by the caller.
25600         
25601         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
25602
25603         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
25604
25605         * metadata.c (mono_metadata_free_marshal_spec): New function to free
25606         marshal specs.
25607
25608         * marshal.c: More refactoring.
25609         
25610         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
25611         smaller functions.
25612
25613 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
25614
25615         * object.c: In mono_message_invoke, fill the output parameter array after
25616           calling the managed method (it was done before the call). This fixes
25617           bug #59299.
25618
25619 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25620
25621         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
25622         as well.
25623
25624 2004-09-02  Martin Baulig  <martin@ximian.com>
25625
25626         * class.c (mono_class_instance_size): Don't allow generic type
25627         definitions or open generic instances.
25628         (mono_class_array_element_size): If we're a value type, call
25629         mono_class_instance_size() on the original class.
25630
25631         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
25632         handle generic instances.
25633
25634         * mono-debug-debugger.c (write_type): Handle generic instances
25635         like classes.
25636
25637 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25638
25639         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
25640         the allocation request fails. Fixes #65089.
25641
25642         * object.c (mono_runtime_free_method): Do not call mono_free_method.
25643         
25644         * object.c (mono_runtime_free_method): New function to free a dynamic
25645         method.
25646
25647         * marshal.c (mono_delegate_free_ftnptr): New function to free the
25648         delegate trampoline.
25649
25650         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
25651         with hasthis as dynamic,
25652
25653         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
25654
25655         * domain.c (mono_jit_info_table_remove): New function to remove an
25656         entry from the jit info table.
25657
25658         * class-internals.h (MonoMethod): Add 'dynamic' field.
25659
25660         * loader.c: Fix warnings.
25661
25662 2004-09-01  Martin Baulig  <martin@ximian.com>
25663
25664         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
25665         instead of mono_debugger_lock() because the latter one is a no-op
25666         unless running in the debugger.
25667
25668 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25669
25670         * class.c (class_compute_field_layout): Classes with auto-layout or
25671         reference fields are not blittable.
25672         
25673 2004-09-01  Dick Porter  <dick@ximian.com>
25674
25675         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
25676         mono_image_get_filename() to get the assembly location.
25677
25678         * icall.c:
25679         * metadata.h: Fix compile warnings
25680
25681 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25682
25683         * class.c (class_compute_field_layout): System.Object is blittable.
25684
25685         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
25686         as in/out. Fixes #59909.
25687
25688 2004-09-01  Martin Baulig  <martin@ximian.com>
25689
25690         * metadata.h (MONO_TYPE_ISREFERENCE): Call
25691         mono_metadata_generic_inst_is_valuetype() if we're a generic
25692         instance to check whether our underlying type is a reference type.
25693
25694 2004-09-01  Martin Baulig  <martin@ximian.com>
25695
25696         * metadata.c (mono_type_size): If we're a generic instance, call
25697         mono_class_value_size() for value types.
25698
25699 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
25700
25701         * marshal.c: Implement more custom marshalling functionality. Fixes
25702         #64915.
25703
25704 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25705
25706         * mono-debug.c, debug-mono-symfile.c: add some locking love.
25707
25708 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
25709
25710         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
25711
25712         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
25713
25714         * icall.c: Fix some warnings.
25715
25716         * threads.c (abort_appdomain_thread): Fix unref errors.
25717         (mono_thread_current): Fix THREAD_DEBUG define.
25718
25719 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
25720
25721         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
25722
25723         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
25724
25725 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
25726
25727         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
25728         string arrays.
25729
25730 2004-08-28  Martin Baulig  <martin@ximian.com>
25731
25732         * metadata.c
25733         (mono_metadata_generic_inst_is_valuetype): New public function.
25734
25735         * metadata.h (MONO_TYPE_ISSTRUCT): Call
25736         mono_metadata_generic_inst_is_valuetype() if we're a generic
25737         instance to check whether our underlying type is a valuetype.
25738
25739 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
25740
25741         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
25742         #63768.
25743
25744 2004-08-25  Martin Baulig  <martin@ximian.com>
25745
25746         * loader.c (mono_get_method_from_token): Abstract methods can also
25747         be generic and thus have type parameters.
25748
25749         * metadata-internals.h
25750         (MonoDynamicImage): Added `GPtrArray *gen_params'.
25751
25752         * reflection.c (mono_image_get_generic_param_info): Don't create a
25753         metadata row, just add an entry to the `gen_params' array.
25754         (build_compressed_metadata): Sort the `gen_params' array and then
25755         actually create the metadata.
25756
25757 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25758
25759         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
25760
25761 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
25762
25763         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
25764
25765 2004-08-24  Martin Baulig  <martin@ximian.com>
25766
25767         * class.cs (mono_class_is_subclass_of): Like an interface, a
25768         generic instance also derives from System.Object.
25769
25770 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
25771
25772         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
25773         custom modifiers to be in any order. Fixes #61990.
25774
25775 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
25776
25777         * object.c: Register mono_object_new_fast icall.
25778         
25779         * object.c (mono_class_get_allocation_ftn): Return to calling
25780         mono_object_new_fast, since it seems faster to compute the object 
25781         size in unmanaged code than passing it as a parameter.
25782
25783         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
25784
25785         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
25786         this function with Boehm as the oom handler, so we don't have to check
25787         the result of GC_malloc.
25788
25789         * object.c: Remove checks for oom.
25790
25791         * object.h object.c (mono_class_get_allocation_ftn): New function to
25792         return the icall which can be used to allocate an instance of a given
25793         class. 
25794
25795         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
25796
25797         * class-internals.h: Add 'enabled' field.
25798
25799 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
25800
25801         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
25802
25803 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
25804         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
25805         value 0x0010.
25806
25807 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
25808
25809         * appdomain.c: use the Tls function for appdomain too,
25810         at Zoltan's request. Actually return in mono_context_get
25811
25812         * appdomain.c, profiler.c, threads.c: use __thread
25813
25814 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
25815
25816         * appdomain.c threads.c: Call GC_CreateThread on windows.
25817
25818         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
25819         multiple libraries since this don't work on windows.
25820
25821 2004-08-18  Martin Baulig  <martin@ximian.com>
25822
25823         * class-internals.h
25824         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
25825         MonoMethodHeader.
25826
25827         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
25828         MonoMethodNormal since we also need it for abstract and interface
25829         methods.
25830
25831         * reflection.c
25832         (build_compressed_metadata): Sort the GenericParam table.
25833         (mono_image_create_token): Added `gboolean create_methodspec'
25834         argument; this is false when generating a MethodImpl token.
25835         (reflection_methodbuilder_to_mono_method): Abstract and interface
25836         methods may also have generic parameters.
25837
25838 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
25839
25840         * appdomain.c: thread local alloc
25841
25842 2004-08-17  Martin Baulig  <martin@ximian.com>
25843
25844         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
25845
25846         * icall.c
25847         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
25848         argument.
25849
25850         * class.c (mono_type_get_full_name): New public function.
25851         (mono_type_get_name): Don't include the type arguments.
25852
25853 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
25854
25855         * Makefile.am: Build static versions of libmetadata and libmonoruntime
25856         for inclusion into the mono executable.
25857
25858 2004-08-16  Martin Baulig  <martin@ximian.com>
25859
25860         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
25861         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
25862
25863 2004-08-14  Martin Baulig  <martin@ximian.com>
25864
25865         * class.c (dup_type): Also copy the `byref' field.
25866
25867 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
25868
25869         * reflection.c (create_dynamic_mono_image): Revert the last change 
25870         since it breaks bootstrap.
25871
25872 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
25873
25874         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
25875
25876         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
25877         not free them with g_free.
25878
25879 2004-08-11  Martin Baulig  <martin@ximian.com>
25880
25881         * reflection.c (mono_reflection_setup_internal_class): Also call
25882         mono_class_setup_mono_type() if we already have a `tb->type.type'.
25883
25884 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
25885
25886         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
25887         called during default (first) AppDomain creation. Keep track of
25888         Evidence when loading assemblies.
25889
25890 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
25891
25892         * opcodes.c, opcodes.h: reduce runtime relocations.
25893
25894 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
25895
25896         * culture-info.h, locales.c: fixes and chages to sue the new
25897         optimized format of the locale data.
25898         * culture-info-tables.h: regenerated.
25899
25900 2004-08-06  Geoff Norton <gnorton@customerdna.com>
25901         
25902         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
25903
25904 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
25905
25906         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
25907         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
25908         * domain-internals.h: icall declaration.
25909         * icall.c: icall registration.
25910         * object-internals.h: New fields in MonoAssembly for CAS.
25911
25912 2004-08-05  Duncan Mak  <duncan@ximian.com>
25913
25914         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
25915         CEE_LDELEM_ANY.
25916
25917 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
25918
25919         * reflection.c: fix to deal with object[] arrays in custom ctors
25920         (bug #62550).
25921
25922 2004-08-05  Martin Baulig  <martin@ximian.com>
25923
25924         * class.c (mono_class_array_element_size): Added support for
25925         generic instances and correctly handle "recursive" types.
25926
25927 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
25928
25929         * assembly.c: Fix warnings.
25930
25931 2004-08-04  Martin Baulig  <martin@ximian.com>
25932
25933         * class.c
25934         (mono_type_get_name_recurse): Added `gboolean include_arity'
25935         argument specifying whether or not we should include the generic
25936         arity in the type name.
25937         (_mono_type_get_name): New static function.
25938         (mono_class_setup_vtable): If we're a generic instance, don't
25939         include the generic arity in the names of explicit method
25940         implementations.        
25941
25942 2004-08-03  Martin Baulig  <martin@ximian.com>
25943
25944         * class.c (mono_type_get_name_recurse): Enclose the generic type
25945         arguments in `<', '>'.
25946
25947 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25948
25949         * gc.c: make GC warning messages use the trace API, they are just
25950         noise to most of the users.
25951
25952 2004-08-03  Martin Baulig  <martin@ximian.com>
25953
25954         * debug-mono-symfile.c (read_string): Correctly read the string.
25955
25956 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
25957
25958         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
25959         
25960         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
25961         icalls.
25962         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
25963
25964 2004-07-30  Martin Baulig  <martin@ximian.com>
25965
25966         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
25967         Reflect latest symbol writer changes.   
25968
25969 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
25970
25971         * object.c: always create an object if null is passed
25972         to Invoke() where a valuetype is expected.
25973
25974 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
25975
25976         * marshal.c (mono_marshal_init): make managed
25977         signatures match native ones better for 64bits.
25978
25979 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25980
25981         * appdomain.c: hack to build correctly the private bin path on windows.
25982         Fixes bug #61991.
25983
25984 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
25985
25986         * assembly.c: Load mscorlib from the correct framework directory
25987           (mono/<version>/mscorlib.dll).
25988         * appdomain.h: Added prototypes for new functions.
25989         * internals.h: Added some prototypes.
25990         * domain.c: When initializing the runtime, get from the executable and
25991           the configuration files the runtime version that the app supports.
25992           Added support methods for reading app.exe.config. Added list of versions
25993           supported by the JIT. Added two new methods: mono_init_from_assembly,
25994           which initializes the runtime and determines the required version from
25995           the provided exe file, and mono_init_version, which initializes
25996           the runtime using the provided version.
25997         * icall.c: Get machine.config from version-specific directory.
25998         * reflection.c: When generating an image, embed the version number
25999           of the current runtime.
26000
26001 2004-07-28  Dick Porter  <dick@ximian.com>
26002
26003         * socket-io.c
26004         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
26005         returned sockaddr size before creating the remote address object.
26006         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
26007         61608.
26008
26009 2004-07-28  Dick Porter  <dick@ximian.com>
26010
26011         * locales.c (string_invariant_compare_char): Fix invariant char
26012         compares between upper and lower cases.  Fixes bug 61458.
26013
26014 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
26015         
26016         * marshal.c: actually cache stelem.ref wrappers.
26017         
26018 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
26019
26020         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
26021         sections and remove the mono_cli_rva_map () function.
26022
26023 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26024
26025         * debug-mono-symfile.c: fix one more endianess issue, from a patch
26026         by Geoff Norton (<gnorton@customerdna.com>).
26027
26028 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26029
26030         * class.c: fix class loads for pointer types (typeof(int) !=
26031         typeof(int*)).
26032
26033 2004-07-27  Martin Baulig  <martin@ximian.com>
26034
26035         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
26036         reading the debugging information from an external ".mdb" file.
26037
26038 2004-07-24  Martin Baulig  <martin@ximian.com>
26039
26040         * reflection.c (mono_image_get_type_info): Only write a class
26041         layout entry if we actually have a size or a packing size.
26042
26043 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26044
26045         * reflection.c (type_get_fully_qualified_name): 
26046         insert cast to get type checking of ?: with non-gcc compilers
26047
26048 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26049
26050         * rand.c: use g_getenv for both lookups of
26051         MONO_EGD_SOCKET
26052
26053 2004-07-17  Martin Baulig  <martin@ximian.com>
26054
26055         * reflection.c (mono_reflection_bind_generic_method_parameters):
26056         Set `gmethod->reflection_info'.
26057
26058 2004-07-17  Martin Baulig  <martin@ximian.com>
26059
26060         * class.c (mono_class_create_from_typedef): Insert the newly
26061         created class into the hash table before computing the interfaces
26062         since we could be called recursively.
26063
26064 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
26065
26066         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
26067         function to implement stelem.ref in managed code
26068         * class-internals.h, debug-helpers.c: a new wrapper type
26069         for the above.
26070
26071 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26072
26073         * gc.c: allow GC handles to work even when no GC is compiled in.
26074         Fix part of bug #61134 (GetAddrOfPinnedObject).
26075
26076 2004-07-13  Peter Williams  <peter@newton.cx>
26077  
26078         * process.c (complete_path): Make sure we don't attempt to execute
26079         directories.
26080  
26081 2004-07-12  Geoff Norton <gnorton@customerdna.com>
26082
26083         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
26084           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
26085           and will add/subtract the hour if needed
26086
26087 2004-07-12  Martin Baulig  <martin@ximian.com>
26088
26089         * reflection.c (mono_field_get_object): If we have
26090         `field->generic_info', take the attributes from
26091         `field->generic_info->generic_type'.    
26092
26093 2004-07-12  Martin Baulig  <martin@ximian.com>
26094
26095         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26096         This function must be called before initializing the runtime.
26097         (mono_debug_init_1): New function; call this after initializing
26098         the runtime, but before loading the assembly.  It tells the
26099         debugger to load corlib and the builtin types.
26100
26101         * mono-debug-debugger.c: Did some larger changes in the debugging
26102         code; support recursive class declarations, make sure we actually
26103         add all classes.
26104
26105 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26106
26107         * debug-helpers.c: undo my previous patch and fixed the real issue in
26108         ../mini/exceptions-x86.c
26109
26110 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26111
26112         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26113         when no HOME env. variable was set and a NullRef was thrown in a .cctor
26114         called from other .cctors.
26115
26116 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26117
26118         * loader.c: Removed the mono_loader_wine_init hack now that we are
26119         doing a managed version of Windows.Forms.
26120
26121 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26122
26123         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26124         threadpool.c, threads.c: remove static data from rootset.
26125
26126 2004-07-09  Dick Porter  <dick@ximian.com>
26127
26128         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26129         Don't do any more processing if the matched length was 0.  It was
26130         increasing the size of the string before.  Fixes bug 61167.
26131
26132 2004-07-09  Dick Porter  <dick@ximian.com>
26133
26134         * socket-io.h:
26135         * socket-io.c
26136         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26137         Add support for SO_PEERCRED if its available.
26138
26139 2004-07-09  Peter Bartok <pbartok@novell.com>
26140         * loader.c: winelib.exe.so error message is now only displayed if
26141         MONO_DEBUG is set. To help us avoid questions when people are trying
26142         out the new Managed.Windows.Forms.
26143
26144 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26145
26146         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26147         for isinst and castclass wrappers.
26148
26149         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26150         to libmetadata from the JIT, so they could be used by the marshalling
26151         code and the interpreter.
26152
26153         * marshal.c: Register marshalling related JIT icalls here instead of
26154         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26155         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26156
26157         * metadata.h: Remove unneeded marshalling conversions.
26158
26159         * opcodes.c: Update for new opcodes.
26160         
26161 2004-07-08  Martin Baulig  <martin@ximian.com>
26162
26163         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26164         (mono_debug_get_domain_data): Make this function static.
26165
26166 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26167
26168         * gc.c, object.h: add nice GC handle API for embedders.
26169
26170 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26171
26172         * reflection.c: more changes for the new api
26173
26174         * object.c: When we reflect on a field w/ a constant value, it
26175         will not have a memory location, so we must access metadata. Also,
26176         allow easier reading of strings so that we can read them from
26177         the constant data.
26178
26179         * class.c (mono_class_layout_fields): no need for literal fields here.
26180
26181         * class-internals.h: api changes for const fields
26182
26183         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26184
26185 2004-07-06  Martin Baulig  <martin@ximian.com>
26186
26187         * mono-debug.h: Increment version number to 44.
26188
26189         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26190         now a gpointer, rewrote this whole method.
26191
26192         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26193         function.  Add information about the wrapper in a new "misc table".
26194
26195         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26196         for the new misc table.
26197
26198 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26199
26200         * metadata-internals.h image.c: Add a cache for helper signatures.
26201
26202         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26203
26204 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26205
26206         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26207         delegates from a delegate. Fixes #61033.
26208         
26209         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26210         marshalling of stringbuilder arrays. Fixes #59900.
26211
26212 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26213
26214         * icall.c: Add EnumBuilder:setup_enum_type icall.
26215
26216 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26217
26218         * icall.c: Added a new icall for the property version of
26219         OffsetOfStringData.
26220
26221 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26222
26223         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26224         it has a constant size across platforms.
26225
26226         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26227         stack trace.
26228
26229 2004-06-29  Martin Baulig  <martin@ximian.com>
26230
26231         * mono-debug.c (mono_debug_add_method): Protect the whole function
26232         in mono_debugger_lock(), not just parts of it.
26233
26234 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26235
26236         * reflection.c: make sure padding bytes in heaps are zeroed.
26237
26238 2004-06-24  David Waite  <mass@akuma.org>
26239
26240         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26241         image.c, loader.c, locales.c, marshal.c, metadata.c,
26242         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26243         string-icalls.c, threads.c: change to C90-style comments from C99 /
26244         C++ -style
26245
26246 2004-06-24  Dick Porter  <dick@ximian.com>
26247
26248         * threads.c
26249         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26250         return createdNew.  Fixes bug 60412.
26251
26252         * threads-types.h: 
26253         * icall.c: Add createdNew parameter to CreateMutex icall
26254
26255 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26256
26257         * reflection.c, object-internals.h: save default value in params.
26258
26259 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26260
26261         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26262         no need to build a new path combining that with the application base.
26263         Fixes bug #60442.
26264
26265 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26266
26267         * reflection.c: fixed minor standard compliance issues.
26268
26269 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26270
26271         * reflection.c: fixed issue with encoding some custom attributes
26272         (arrays in properties and fields, bug #60411).
26273
26274 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26275
26276         * reflection.c: fix start address when copying the public key token.
26277
26278 2004-06-23  Martin Baulig  <martin@ximian.com>
26279
26280         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26281         the `exc' object in a static object to put it into the GC's root set.
26282
26283 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26284
26285         * reflection.c: make mono_reflection_setup_internal_class ()
26286         callable a second time to setup a new parent class.
26287
26288 2004-06-23  Dick Porter  <dick@ximian.com>
26289
26290         * threads.c: Check for WAIT_IO_COMPLETION return values.
26291
26292 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26293
26294         * appdomain.c: Removed the g_free on the public key token. Now copy 
26295         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26296         * assembly.c: Added public key token string value when loading 
26297         assemblies. Fix bug #60439.
26298         * icall.c: Added missing informations (like public key) in 
26299         GetReferencedAssemblies. Fix #60519.
26300         * image.h: Changed definition for public key token from const char*
26301         public_tok_value to guchar public_key_token [17];
26302         * reflection.c: Updated for changes to public key token.
26303
26304 2004-06-22  Lluis Sanchez Gual
26305
26306         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26307         for the field in base classes.
26308
26309 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26310
26311         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26312         mark headers as not supported, they are installed only for use by the
26313         debugger.
26314
26315 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26316
26317         * *.c, *.h: avoid namespace pollution in public headers.
26318
26319 2004-06-21  Martin Baulig  <martin@ximian.com>
26320
26321         * exception.c (mono_get_exception_security): It's in
26322         "System.Security", not in "System".
26323
26324         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26325         the exception classes.
26326
26327 2004-06-21  Martin Baulig  <martin@ximian.com>
26328
26329         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26330         Protect the exception object from being finalized.
26331
26332 2004-06-21  Martin Baulig  <martin@ximian.com>
26333
26334         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26335         public function.
26336
26337 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26338
26339         * reflection.c: Load the assembly in mono_reflection_type_from_name,
26340         if it was not loaded before. Fix parts of #60439.
26341
26342 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26343
26344         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26345         code that was broken since Ben's change: wrappers are now
26346         dependent on the method signature only again.
26347
26348 2004-06-21  Martin Baulig  <martin@ximian.com>
26349
26350         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
26351         added interface support.
26352
26353 2004-06-21  Martin Baulig  <martin@ximian.com>
26354
26355         * class.c (mono_vtable_get_static_field_data): New public method.
26356
26357 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
26358
26359         * filewatcher.c : Windows build fix to be compliant with API changes.
26360
26361 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26362
26363         * class.h, class.c: more accessors.
26364         * metadata.h, metadata.c: prepare for hiding MonoType and
26365         MonoMethodSignature: people should use the accessors from now on
26366         outside of the tree.
26367
26368 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26369
26370         * *.c, *.h: more API cleanups.
26371
26372 2004-06-18  Jackson Harper  <jackson@ximian.com>
26373
26374         * assembly.c: Trace loading assemblies.
26375         * loader.c: Trace loading native libraries.
26376         * mono-config.c: Trace loading config files.
26377         
26378 2004-06-18  Dick Porter  <dick@ximian.com>
26379
26380         * locales.c: Tell ICU the lengths of strings, it can cope with
26381         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
26382
26383 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
26384
26385         * image.c: swapped name/filename;
26386
26387 2004-06-18  Martin Baulig  <martin@ximian.com>
26388
26389         * mono-debug-debugger.c (write_class): Write the parent class at
26390         the end of the header.
26391
26392 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26393
26394         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
26395
26396 2004-06-17  Raja R Harinath  <rharinath@novell.com>
26397
26398         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
26399         (bundle_obj): New conditional define.
26400         (BUILT_SOURCES): Remove.
26401         ($(bundle_srcs)): Make parallel-make safe.
26402         (libmonoruntime_la_LIBADD): Make unconditional.
26403         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
26404         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
26405
26406 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
26407
26408         * culture-info-tables.h: It was inconsistent with the latest
26409           supp info files.
26410
26411 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
26412
26413         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
26414         be loaded.
26415
26416         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
26417         with gcc 2.95.
26418
26419 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26420
26421         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
26422         cleaned up public header threads.h.
26423
26424 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26425
26426         * Makefile.am, *.c, *.h: more API cleanups.
26427
26428 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
26429
26430         * Makefile.am: removed monosn from compilation.
26431         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
26432         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
26433         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
26434         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
26435         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
26436         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
26437
26438 2004-06-15  Jackson Harper  <jackson@ximian.com>
26439
26440         * assembly.c: Make locales lower case when searching the GAC for
26441         assemblies. gacutil will always make locales lowercase when
26442         installing so this effectively makes them case insensitive.
26443         
26444 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
26445
26446         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
26447         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
26448           parameter which allows to choose whether the wait can be interrupted or 
26449           not. Also added the method mono_monitor_enter(), which locks the monitor
26450           using an infinite wait and without allowing interruption.
26451           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
26452           interrupted.
26453         * object.h: Added new fields in MonoThread. suspend_event holds the event
26454           used to susped/resume the thread. synch_lock is the lock object to use for
26455           modifying the thread state.
26456         * threads.c: Use the new synch_lock object for locking, instead of "this",
26457           which can generate deadlocks.
26458           Moved thread state change in Thread.Sleep and Thread.Join from managed
26459           to unmanaged code. This avoids a deadlock when the thread was suspended
26460           just after acquiring the thread lock.
26461           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
26462           Implemented Thread.Suspend using an event instead of ThreadSuspend,
26463           which is not fully implemented in the io-layer.
26464         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
26465
26466 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
26467
26468         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
26469         threads-types.h: more API cleanups.
26470
26471 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26472
26473         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
26474         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
26475         threadpool.c, threads.c: first pass at the exported API cleanup.
26476
26477 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
26478
26479         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
26480
26481 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26482
26483         * icall.c: added internalGetHome.
26484
26485 2004-06-14  Dick Porter  <dick@ximian.com>
26486
26487         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
26488         possible to return successfully when '.' or '..' were the only
26489         entries in a directory, but were skipped.  The MonoIOStat was not
26490         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
26491         Fixes bug 59574.
26492
26493 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26494
26495         * reflection.c: make binaries run on .Net 1.1 by default.
26496
26497 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26498
26499         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
26500
26501 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
26502
26503         * marshal.c: keep track of struct size with explicit layout
26504         (bug #59979).
26505
26506 2004-06-12  Martin Baulig  <martin@ximian.com>
26507
26508         * mono-debug-debugger.c: Comment out a debugging g_message().
26509
26510 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26511
26512         * reflection.c, reflection.h: do not free custom attrs that are cached.
26513         * icall.c: use braces to make code clearer.
26514
26515 2004-06-11  Martin Baulig  <martin@ximian.com>
26516
26517         * class.h (MonoInflatedField): New type.
26518         (MonoClassField): Replaced `MonoType *generic_type' with
26519         `MonoInflatedField *generic_info'.
26520
26521         * icall.c
26522         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
26523
26524 2004-06-11  Martin Baulig  <martin@ximian.com>
26525
26526         * reflection.c (mono_image_create_method_token): Correctly encode
26527         varargs methods.
26528
26529 2004-06-11  Martin Baulig  <martin@ximian.com>
26530
26531         * metadata.c (mono_metadata_parse_method_signature): When parsing
26532         a MethodDef which has VarArgs, also set sentinelpos if we don't
26533         have any parameters.
26534
26535 2004-06-11  Martin Baulig  <martin@ximian.com>
26536
26537         * verify.c (mono_method_verify): In CEE_CALL, use
26538         mono_method_get_signature() to get the method's signature, unless
26539         we're a PInvoke method.
26540
26541 2004-06-10  Jackson Harper  <jackson@ximian.com>
26542
26543         * assembly.c: Use <path>/lib/mono/gac for the extra paths
26544         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
26545         logical name as the supplied path is just a prefix to the gac not
26546         the direct path to it.
26547         
26548 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
26549
26550         * reflection.c: make the token for a created method match
26551         the token of the MethodBuilder it was created from
26552         (IKVM requires this behaviour now).
26553
26554 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
26555
26556         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
26557         reflection.c, socket-io.c: leak fixes.
26558
26559 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
26560
26561         * icall.c: handle sentinel pos in vararg methods in position different
26562         from 0.
26563
26564 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26565
26566         * culture-info-tables.h: freshly generated.
26567
26568 2004-06-09  Martin Baulig  <martin@ximian.com>
26569
26570         * loader.c (mono_get_method_constrained): Call `mono_class_init
26571         (constrained_class)'.   
26572
26573 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
26574
26575         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
26576         any methods. Fixes #59629.
26577
26578 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26579
26580         * culture-info-tables.h: reflecting locale-builder updates.
26581
26582 2004-06-08  Dick Porter  <dick@ximian.com>
26583
26584         * object.h:
26585         * locales.c: Fixed compile warnings, including a real bug in
26586         CompareInfo_internal_compare.
26587         
26588 2004-06-08  Dick Porter  <dick@ximian.com>
26589
26590         * locales.c
26591         (ves_icall_System_Globalization_CompareInfo_internal_index):
26592         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26593         Double-check the resuls of usearches, because ICU currently
26594         ignores most of the collator settings here.  Fixes bug 59720.
26595         
26596 2004-06-08  Dick Porter  <dick@ximian.com>
26597
26598         * locales.c
26599         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26600         Fix memory leak and segfault-causing typo.  No idea how this one
26601         lasted so long without being noticed.
26602
26603 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
26604
26605         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
26606         any methods. Fixes #59629.
26607
26608 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26609
26610         * assembly.c:
26611         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
26612         own the critical section before). Removed dead code (that's done
26613         in the preload hook).
26614
26615         (mono_assembly_load_with_partial_name): call the preload hook.
26616
26617 2004-06-08  Martin Baulig  <martin@ximian.com>
26618
26619         * metadata.c (mono_metadata_signature_alloc): Default
26620         `sentinelpos' to -1.
26621
26622         * reflection.c (mono_image_get_array_token): Likewise.
26623
26624 2004-06-08  Martin Baulig  <martin@ximian.com>
26625
26626         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
26627
26628         * metadata.c (mono_metadata_parse_method_signature): When parsing
26629         a MethodDef which has VarArgs, set sentinelpos.
26630
26631         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
26632         `gint16' since we're using -1 for non-varargs methods.
26633
26634         * reflection.c
26635         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
26636         (method_encode_signature): Added varargs support.
26637         (method_builder_encode_signature): Likewise.
26638         (mono_image_get_varargs_method_token): New static method.
26639         (mono_image_create_method_token): New public method; this is
26640         called via an icall instead of mono_image_create_token() when
26641         calling a varargs method.       
26642
26643 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
26644
26645         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
26646
26647 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26648
26649         * culture-info-tables.h : Reflecting the latest locale-builder that
26650           fixed empty array representation ({} to {0}).
26651
26652 2004-06-07  Jackson Harper  <jackson@ximian.com>
26653
26654         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
26655         looking up extra gac paths. This allows MONO_GAC_PATH to act
26656         exactly like a prefix.
26657         
26658 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26659
26660         * reflection.c (mono_reflection_type_from_name): Make a copy of the
26661         type name before modifying it. Fixes #59405.
26662
26663 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26664
26665         * culture-info.h: added fields for "all datetime patterns".
26666         * locales.c: (  ves_icall_System_Globalization_CultureInfo
26667           _construct_datetime_format ()): fill xxx_patterns fields.
26668         * object.h: added fields for "all datetime patterns" to
26669           MonoDateTimeFormatInfo.
26670         * culture-info-tables.h: reflecting locale-builder updates.
26671
26672 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26673
26674         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
26675         the event has no add and remove methods. Fixes #59629.
26676
26677 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
26678
26679         * object.c: Fixed possible integer overflow when allocating large
26680         strings.
26681
26682 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26683
26684         * culture-info-tables.h: reflecting locale-builder updates.
26685
26686 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26687
26688         * culture-info-tables.h: reflecting locale-builder updates.
26689
26690 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
26691
26692         * culture-info-tables.h: reflecting locale-builder updates.
26693
26694 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
26695
26696         * threads.c: Made Thread.Sleep abortable.
26697
26698 2004-06-02  Martin Baulig  <martin@ximian.com>
26699
26700         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
26701
26702         * debug-mono-symfile.h: Bumped symbol file version number to 37.
26703
26704 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
26705
26706         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
26707
26708 2004-05-30  Jackson Harper  <jackson@ximian.com>
26709
26710         * reflection.c: Do not hardcode assembly versions or public key
26711         tokens anymore. All of this except the corlib section was dead
26712         code anyways.
26713         
26714 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
26715
26716         * object.c (mono_runtime_invoke_array): Automatically create boxed
26717         objects for byref valuetypes if needed. Fixes #59300.
26718         
26719         * object.c (mono_method_return_message_restore): Handle 
26720         MONO_TYPE_OBJECT as well.
26721
26722 2004-05-28  Jackson Harper  <jackson@ximian.com>
26723
26724         * reflection.c: The modified type encoding was causing build
26725         problems. Reverted for now.
26726         
26727 2004-05-28  Jackson Harper  <jackson@ximian.com>
26728
26729         * reflection.c/h: Take an assembly ref so that we dont create
26730         fully qualified names when encoding types in the same assembly as
26731         the custom attribute being emitted.
26732         * appdomain.c: Increment version number.
26733         
26734 2004-05-26  Duncan Mak  <duncan@ximian.com>
26735
26736         * icall.c
26737         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
26738         Set the full version number (major, minor, build, revision).
26739
26740 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
26741
26742         * marshal.c (emit_struct_conv): increment src/dst after blit
26743         (mono_marshal_get_managed_wrapper,
26744         mono_marshal_get_native_wrapper): make sure we have marshalling
26745         info before marshalling params (info computation affects
26746         blittable)
26747
26748         * class.c (class_compute_field_layout): correctly deal with
26749         blittable
26750         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
26751         value types (as per what windows dows by default)
26752         (mono_class_setup_mono_type): System.ValueType is blittable
26753         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
26754         blittable
26755
26756         * marshal.c (mono_marshal_load_type_info): flag types  as
26757         non-blittable if the native layout doesn't match the managed
26758         layout
26759
26760 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26761
26762         * appdomain.c: don't add stuff in the private search path that is
26763         above the application base. If application base is not set, there's
26764         no private search path.
26765
26766 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
26767
26768         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
26769         byref struct arguments in native->managed marshalling.
26770
26771 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
26772
26773         * marshal.c (mono_marshal_get_runtime_invoke): correctly
26774         cache methods using signature (special case for methods
26775         that are value type or string class)
26776         
26777         * image.c (mono_image_close): clean up allocated GSList's
26778         in runtime_invoke_cache.
26779
26780 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26781
26782         * mono-config.c: set the correct path for mono_cfg_dir on windows when
26783         there's no MONO_CFG_DIR environment variable defined.
26784
26785 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26786
26787         * threads.c: windows version must be >= 0x0500 to include OpenThread.
26788
26789 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
26790
26791         * threadpool.c: Really wait for 500ms after the async call, even if the wait
26792           is interrumped.
26793         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
26794           before waiting for it, and call CloseHandle after the wait to unref it.
26795           This will make sure that handles are not disposed too early.
26796
26797 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26798
26799         * appdomain.c:
26800         * appdomain.h:
26801         * icall.c: removed
26802         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
26803         needed now.
26804
26805         * object.c: se the application_base only for the domain that runs
26806         Main. Fixes bug #59216,
26807
26808 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26809
26810         * appdomain.c:
26811         * object.c: only the domain in which Main is run have
26812         SetupInformation.ConfigurationFile set, so moved a few lines from
26813         appdomain.c to object.c.
26814
26815 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26816
26817         * appdomain.c: we tried to load [name].(dll|exe), but according
26818         to bug #57710, we must also try [culture]/[name].(dll|exe) and
26819         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
26820         There's a test case attached to bug #58922.
26821
26822 2004-05-27  Dick Porter  <dick@ximian.com>
26823
26824         * icall.c:
26825         * file-io.c: Implemented icalls for locking and unlocking regions
26826         in a file.
26827         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
26828         FALSE on error (fixes both compiler warning and real bug.)
26829
26830 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
26831
26832         * culture-info-tables.h: reflecting locale-builder updates.
26833
26834           (Added missing ChangeLog entry for 05/26)
26835
26836 2004-05-27  Jackson Harper  <jackson@ximian.com>
26837
26838         * locales.c: Fix some cut and paste errors.
26839         
26840 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26841
26842         * mono-config.c: set the correct path for config. directory on windows.
26843
26844 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
26845
26846         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
26847           on win32.
26848
26849 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
26850
26851         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
26852         from pinvoke functions.
26853         
26854         * marshal.c (mono_ftnptr_to_delegate): Implement this.
26855
26856 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
26857
26858         * culture-info-tables.h: reflecting locale-builder updates.
26859
26860 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
26861
26862         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
26863         #59086.
26864
26865 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
26866
26867         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
26868         * icall.c: Modified icalls for RNG.
26869         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
26870         Windows (CryptoAPI).
26871
26872 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
26873
26874         * locales.c: Fix build.
26875
26876 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
26877
26878         * culture-info-tables.h: reflecting locale-builder updates.
26879
26880 2004-05-25  Jackson Harper  <jackson@ximian.com>
26881
26882         * locales.c: When creating the current culture use the $LANGs
26883         specific culture. So DateTimeFormat and NumberFormat entries are created.
26884         
26885 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
26886
26887         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
26888         a char array as parameter.
26889
26890 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
26891
26892         * image.c: In mono_image_open(), always use an absolute path name to
26893           look for already loaded images.
26894
26895 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
26896
26897         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
26898         missing in the windows build (like older cygwin include files).
26899
26900 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
26901
26902         * icall.c: Fixed check for possible integer overflow in Buffer_
26903         BlockCopy icall. Replaced comments style // by /* */.
26904
26905 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
26906
26907         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
26908         
26909         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
26910         check after MONO_VTADDR. Fixes pinvoke2.exe.
26911
26912         * marshal.h marshal.c metadata.h: Add beginnings of support for
26913         ftnptr -> delegate marshalling.
26914
26915 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
26916
26917         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
26918         * threads.c: Fix warnings.
26919
26920 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
26921
26922         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
26923         * icall.c: Registered icalls for Suspend and Resume.
26924         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
26925           Thread.Abort.
26926         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
26927         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
26928         * process.c: Use WaitForSingleObjectEx.
26929         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
26930           checkpoints.
26931         * threads.c, threads.h: Make use of new Ex wait methods. Improved
26932           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
26933           for Suspend and Resume. Added new mono_thread_stop, used for stoping
26934           background threads. Added basic support for Abort in Windows.
26935           Start new threads using a managed delegate invoke wrapper. This wrapper
26936           has an interruption checkpoint that is needed since an interruption
26937           can be requested before the thread leaves the unmanaged code that starts 
26938           the thread.
26939         * marshal.c: Added interruption checkpoint after every native call, and
26940           also before managed calls for wrappers called from unmanaged code to
26941           go into managed code.
26942         * object.h: Added new field in MonoThread to keep track of interruption
26943           requests.
26944
26945 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
26946
26947         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
26948         calls.
26949
26950 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26951
26952         * appdomain.c:
26953         * assembly.c:
26954         * gc.c:
26955         * locales.c:
26956         * mono-config.c:
26957         * rand.c: getenv -> g_getenv (windows!)
26958
26959         * process.c: complete_path is also used on non-windows platforms.
26960
26961 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26962
26963         * icall.c: new signature for Process_Start.
26964
26965         * process.[ch]: new signature for Process_Start. If we're on windows
26966         and UseShellExecute is false, we have to search for the program by
26967         ourselves if we don't get a full path.
26968
26969 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
26970
26971         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
26972         marshalling and call CleanUpNativeData if needed. Fixes #58646.
26973
26974 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26975
26976         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
26977         Fixes bug #58373.
26978
26979 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26980
26981         * process.c: use double quotes to quote program name and arguments on
26982         windows. Fixes bug #58575.
26983
26984 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26985
26986         * file-io.c: don't return "." and ".." when using windows Find*File.
26987
26988 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
26989
26990         * marshal.c: Don't pass wrappers to message init because method 
26991         addressed used to lookup metadata. part of remoting[2|3] fix.
26992
26993 2004-05-15  Jackson Harper  <jackson@ximian.com>
26994
26995         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
26996         path is essentially the same as MONO_PATH except that it points to
26997         GACs instead of lib directories.
26998         * loader.h: The user gac is gone so we dont need function to
26999         enable/disable it.
27000         * mono-config.c: user gac option is now gone.
27001         
27002 2004-05-15  Jackson Harper  <jackson@ximian.com>
27003
27004         * culture-info.h: Make defines more consistent, add calendar data
27005         to the culture info table.
27006         * culture-info-tables.h: Add basic calendar data. Basically
27007         everyone gets default gregorian until all the data is
27008         updated.
27009         * locales.c: Use the new consistent defines. Set calendar data for
27010         culture info objects.
27011         * object.h: add a field for calendar data to CultureInfo
27012         
27013 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
27014
27015         * image.c: image->runtime_invoke_cache is keyed on signatures now.
27016         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
27017         a signature.
27018         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
27019         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
27020         an extra param that is the pointer of the method to invoke. The IL for
27021         the invoke method is no longer specific to the method, but to the
27022         signature of the method. Thus, we can share the same code for multiple
27023         methods. This reduces the number of methods that have to be compiled.
27024
27025 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
27026
27027         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
27028
27029         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27030
27031         * icall.c: Optimize Buffer.BlockCopy.
27032
27033 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27034
27035         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
27036         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
27037         quote). Changed them to "MMMM yyyy".
27038
27039 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
27040
27041         * rand.c
27042         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
27043
27044 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
27045
27046         * reflection.h: Updated after changes to managed structures.
27047
27048         * appdomain.c: Bump corlib version.
27049
27050 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27051
27052         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
27053         windows.
27054
27055 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27056
27057         * Makefile.am: link to ../os/libmonoos.la on windows.
27058
27059         * assembly.c:
27060                 -If MONO_DEBUG, warn about non-existing directories in
27061                 MONO_PATH.
27062                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
27063                 compile time variable.
27064                 -Removed init_default_path and call mono_set_rootdir from
27065                 libmonoos.a instead (windows only).
27066
27067         * assembly.h: declare mono_assembly_getrootdir().
27068
27069         * domain.c:
27070         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
27071
27072         * loader.c: s/getenv/g_getenv/
27073
27074 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
27075
27076         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27077
27078         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27079
27080         * metadata.h: Add new marshalling conversions.
27081
27082         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27083         function.
27084
27085         * reflection.c (mono_reflection_get_type): Lookup the type in all
27086         modules of a multi-module assembly. Fixes #58291.
27087
27088 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
27089
27090         * threads.c: Before aborting a background, set the StopRequested
27091         state.  This avoids throwing the Abort exception.
27092         In mono_thread_manage, don't continue with the shutdown until all
27093         aborted threads have actually stopped.
27094
27095 2004-05-10  Jackson Harper  <jackson@ximian.com>
27096
27097         * locales.c: Remove the modifier from culture names.
27098         
27099 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27100
27101         * Makefile.am: monosn is not installed any more. It has been deprecated
27102         in favor of sn.
27103
27104 2004-05-07  Jackson Harper  <jackson@ximian.com>
27105
27106         * locales.c
27107         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27108         Fix array construction, add bailout if the length is 0.
27109
27110 2004-05-07  Dick Porter  <dick@ximian.com>
27111
27112         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27113         machine doesn't have a DNS entry.  Patch by Urs Muff
27114         (umuff@quark.com), fixes bug 57928.
27115
27116 2004-05-06  Jackson Harper  <jackson@ximian.com>
27117
27118         * reflection.c: Handle null PublicTokens properly. alloc mem for
27119         assembly names culture so we dont crash when freeing it.
27120         
27121 2004-05-06  Jackson Harper  <jackson@ximian.com>
27122
27123         * assembly.c: Check the usergac when loading with partial names.
27124         
27125 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27126
27127         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27128         does nothing for now (not required for Linux/Windows) but the class
27129         library can call it (and a newer or modified runtime could need it).
27130         * icall.c: Registred icall.
27131
27132 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27133
27134         * loader.c: prints a message on module loading error we set MONO_DEBUG
27135         environment variable.
27136
27137 2004-05-05  Jackson Harper  <jackson@ximian.com>
27138
27139         * appdomain.c: Handle PublicKeyToken=null properly.
27140         
27141 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27142
27143         * environment.c|h: Added icall ves_icall_System_Environment_
27144         GetOSVersionString to get the current OS version as a string.
27145         * icall.c: Registred icall.
27146
27147 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27148
27149         * object.c: in mono_object_get_virtual_method(), take into account that
27150         non-virtual methods don't have a slot in the vtable. Check needed when
27151         the object is a proxy.
27152
27153 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27154
27155         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27156         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27157
27158         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27159
27160         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27161         passed when a valuetype is expected.
27162
27163         * object.c (mono_unhandled_exception): Only set the exit code if the
27164         exception happens in the main thread. Fixes thread5.exe.
27165
27166         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27167         invalid names. Fixes #58047.
27168
27169 2004-05-03  Jackson Harper  <jackson@ximian.com>
27170
27171         * assembly.c: This line was committed accidently and is unneeded.
27172         
27173 2004-05-03  Jackson Harper  <jackson@ximian.com>
27174
27175         * icall.c: Add new icall for Assembly::LoadWithPartialName
27176         * assembly.c/.h: new function that probes the GAC to load partial
27177         assembly names by Paolo Molaro.
27178         
27179 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27180
27181         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27182         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27183         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27184         full type name.
27185
27186 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27187
27188         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27189         * reflection.c: fix bug when parsing a full type name and Version is not
27190         the last thing in the string.
27191
27192 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27193
27194         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27195         crashes when it is freed.
27196
27197 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27198
27199         * assembly.c: print the compat warning to stderr.
27200
27201 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27202
27203         * assembly.c (mono_assembly_load_references): Add a compatibility
27204         hack to run old applications that might be still referencing the
27205         3300-based assemblies, only do this for System.xxx.
27206
27207 2004-05-01  Jackson Harper  <jackson@ximian.com>
27208
27209         * appdomain.c: If the culture is neutral we set it to "".
27210         
27211 2004-04-29  Jackson Harper  <jackson@ximian.com>
27212
27213         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27214
27215 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27216  
27217         * string-icalls.c: added low overhead function for copying chars
27218         * icall.c: added needed icall for the above function
27219  
27220 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27221
27222         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27223         Environment.GetLogicalDrives.
27224
27225 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27226
27227         * rand.c: try and talk to egd or prngd
27228         for random bytes if opening devices fail.
27229
27230 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27231
27232         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27233         alignment for the type using the native alignment of its members 
27234         instead of using klass->min_align.
27235
27236         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27237
27238 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27239
27240         * file-io.c:
27241         * socket-io.c: added check for sys/aio.h.
27242
27243 2004-04-28  Dick Porter  <dick@ximian.com>
27244
27245         * threads.c: Don't abort a thread thats already aborting, when
27246         terminating everything.
27247
27248 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27249
27250         * icall.c: added 2 new async calls for Socket.
27251
27252         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27253         IO on *nix systems.
27254
27255         * threadpool.c: removed unused variable.
27256
27257 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27258
27259         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27260
27261 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27262
27263         * locales.c: put back string_invariant_tolower () and
27264         string_invariant_toupper ().
27265
27266 2004-04-26 David Waite <mass@akuma.org>
27267
27268         * file-io.h:
27269         * socket-io.h:
27270         * threads.h:
27271         * unicode.h: remove comma from end of enumeration declarations
27272
27273 2004-04-26 David Waite <mass@akuma.org>
27274
27275         * debug-mono-symfile.h:
27276         * decimal.c:
27277         * mono_debug.h:
27278         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27279
27280
27281 2004-04-26  Jackson Harper  <jackson@ximian.com>
27282
27283         * appdomain.c: Increment version number.
27284         
27285 2004-04-26  Jackson Harper  <jackson@ximian.com>
27286
27287         * appdomain.c: Set assembly references public token value when
27288         PublicKeyToken is specified, not the hash_value. Free public token
27289         values when free assembly name data. Previously the public key
27290         token was hex decoded, however we are using hex encoded public key
27291         tokens, so this is not neccasary.
27292         * assembly.c: Lookup assemblies in the gac if their public token
27293         value is set. Add function to allow enabling user gac
27294         lookups. Specify whether or not the assembly was loaded from the
27295         GAC. Compare full assembly names when checking the cache for
27296         assemblies (Temporarily disabled see comment in code). Remove
27297         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27298         specifies trace-loader they get extra info to stdout on the
27299         loading of assemblies.
27300         * image.h: Add a field for an assembly references public token
27301         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27302         whether an assembly has been loaded from the GAC.
27303         * image.c: Remove a corlib -> mscorlib name mapping.
27304         * loader.h: Add function to enable/disable the user gac.
27305         * mono-config.c: Check if the usergac is enabled in the config
27306         file.
27307         * icall.c: New icall to determine whether or not an assembly has
27308         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27309         * tabldefs.h: Add constant for assemblyref flag that specifies a
27310         full public key is used instead of a public token.
27311         * reflection.c: Remove mscorlib -> corlib mappings. Set
27312         PublicTokenValue instead of hash value. This value is a hex
27313         string so it does not need to be expanded.
27314
27315 2004-04-26  Martin Baulig  <martin@ximian.com>
27316
27317         * mono-debug-debugger.c (mono_debugger_initialize): Set
27318         `mono_debugger_initialized' before calling mono_debug_lock().
27319
27320 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27321
27322         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27323           InternalToUpper/InternalToLower.
27324         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27325           removed invariant culture shortcut.  This is now done in managed code.
27326         * locales.c: (string_invariant_toupper/tolower) removed.
27327
27328 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27329
27330         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27331         Added Poll internal call.
27332
27333         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27334         call for Poll. Select was too heavy for polling a single socket.
27335
27336         * threadpool.[ch]: added mono_threadpool_cleanup.
27337         * threads.c: use it. Don't use Thread_Abort on windows.
27338
27339 2004-04-23  Martin Baulig  <martin@ximian.com>
27340
27341         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27342
27343 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
27344
27345         * icall.c: Registred new icalls for key pair protection and added an
27346         icall for Environment.GetFolderPath on Windows.
27347         * security.c|h: Added new icalls for key pair protection.
27348
27349 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27350
27351         * socket-io.c: don't display the non-supported family warning for known
27352         families. Now this is not displayed on windows when checking support
27353         for IPv4/IPv6.
27354
27355 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27356
27357         * class.c: don't display the layout warning for static fields.
27358
27359 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
27360
27361         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
27362         * locales.c, locales.h: Added new icalls for culture-specific
27363         Char.ToLower and Char.ToUpper.
27364
27365 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27366
27367         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
27368         by David Waite.
27369
27370 2004-04-20  Martin Baulig  <martin@ximian.com>
27371
27372         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
27373         of the type name before passing it to mono_reflection_type_from_name().
27374
27375 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
27376
27377         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
27378         encodings here. Fixes #56965.
27379
27380 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
27381
27382         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27383         fix test on strstr result not that I can see anything that
27384         relies on the result.
27385
27386 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
27387
27388         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
27389         Fixes #57081.
27390
27391         * marshal.c (mono_marshal_get_string_encoding): New helper function.
27392
27393         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
27394         function to determine which marshalling to use for strings. Fixes
27395         #56965.
27396
27397         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
27398
27399         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
27400
27401 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
27402
27403         * icall.c: #include mono-config.h
27404
27405 2004-04-15  Jackson Harper  <jackson@ximian.com>
27406
27407         * culture-info-tables.h: Fix date formats for en-US culture.
27408         
27409 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
27410
27411         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
27412         ThreadPool.SetMinThreads.
27413         * threadpool.c: Implemented ThreadPool.GetMinThreads and
27414         ThreadPool.SetMinThreads.
27415
27416 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27417
27418         * mono-config.c: also load the .config file in the directory
27419         where the assembly was found.
27420
27421 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
27422
27423         * assembly.c: load per-assembly config files.
27424         * icall.c: decrapified code to get the config dir and moved to
27425         mono-config.c.
27426         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
27427         per-assembly config files. When doing a dll map lookup give precedence
27428         to the per-assembly data.
27429
27430 2004-04-14  Martin Baulig  <martin@ximian.com>
27431
27432         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
27433         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
27434         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
27435
27436         * mono-debugger-debugger.c: While the debugger is locked, remember
27437         whether the symbol tables have changes and send one single
27438         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
27439
27440 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
27441
27442         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
27443
27444         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
27445         function.
27446
27447         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
27448         account when marshalling string arrays. Fixes #56965.
27449
27450 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
27451
27452         * icall.c: Add new icalls mapping for security.
27453         * security.c|h: Add internal calls for WindowsIdentity,
27454         WindowsImpersonationContext and WindowsPrincipal.
27455
27456 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
27457
27458         * class.c: Added comment to ensure the System.MonoDummy class
27459         is removed when no longer necessary
27460
27461 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
27462
27463         * appdomain.c: Pass arguments to the bootstraping exceptions to
27464         minimize JITed methods at boot
27465
27466         * metadata.c (mono_exception_from_name_two_strings): Allow for the
27467         second string to be null.
27468
27469         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27470         Change the protocol to minimize the JIT methods at startup.  Now
27471         it Returns the internal codepage, if the value of "int_code_page"
27472         is 1 at entry, and we can not compute a suitable code page
27473         number, returns the code page as a string.
27474
27475 2004-04-13  Jackson Harper  <jackson@ximian.com>
27476
27477         * culture-info-tables.h: Fix number of decimal digits for all
27478         english locales.
27479
27480 2004-04-13  Jackson Harper  <jackson@ximian.com>
27481
27482         * icall.c: Clairfy out of sync error message. It is not always
27483         your corlib that is out of sync.
27484
27485 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
27486
27487         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
27488         properties when only the set accessor is overriden. Fixes #55874.
27489
27490 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
27491
27492         * assembly.c (mono_assembly_load_references): Make this thread safe.
27493         Fixes #56327.
27494
27495 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
27496
27497         * monosn.c: Add missing initialization calls.
27498
27499 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
27500
27501         * locales.c:
27502         ves_icall_System_Globalization_CultureInfo_construct_number_format
27503         Fix g_assert so it compiles on fussier compilers re int/ptr
27504         mismatch
27505
27506 2004-04-08  Dick Porter  <dick@ximian.com>
27507
27508         * socket-io.h:
27509         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
27510         53992.  Also rearrange the code so that the internal calls return
27511         an error value and exceptions are thrown from managed code.
27512
27513         * icall.c: Add type info to the socket icalls.
27514
27515 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27516
27517         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
27518         owes me a beer.
27519
27520 2004-04-07  Martin Baulig  <martin@ximian.com>
27521
27522         * class.c (mono_class_from_generic_parameter): Don't default
27523         `klass->parent' to `mono_defaults.object_type'.
27524
27525 2004-04-07  Martin Baulig  <martin@ximian.com>
27526
27527         * reflection.c (mono_reflection_initialize_generic_parameter): Set
27528         `param->pklass->reflection_info'.       
27529
27530 2004-04-07  Jackson Harper  <jackson@ximian.com>
27531
27532         * culture-info-tables.h: Fix date separator symbol.
27533         
27534 2004-04-07  Martin Baulig  <martin@ximian.com>
27535
27536         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
27537         from System.Type to System.MonoType.
27538
27539 2004-04-07  Martin Baulig  <martin@ximian.com>
27540
27541         * reflection.h
27542         (MonoReflectionGenericParam): Added `has_reference_type' and
27543         `has_value_type' fields.
27544
27545         * reflection.c (mono_image_get_generic_param_info): Encode the
27546         correct flags if we have the `class' or `struct' constraint.
27547
27548 2004-04-07  Martin Baulig  <martin@ximian.com>
27549
27550         * reflection.h
27551         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
27552
27553 2004-04-07  Jackson Harper  <jackson@ximian.com>
27554
27555         * appdomain.c: Revert extra patches, just wanted to bump the
27556         version number.
27557         
27558 2004-04-07  Jackson Harper  <jackson@ximian.com>
27559
27560         * Makefile.am: Add culture-info private headers.
27561         * icall.c: Add new icalls for contructing locales.
27562         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
27563         * locales.h: Declare new culture info construction methods.
27564         * object.h: Add new fields used to avoid the CultureMap to
27565         MonoCultureInfo.
27566         * culture-info.h: Definition of structs used in the culture info
27567         tables.
27568         * culture-info-tables.h: Autogenerated tables that contain culture
27569         info data. This file was generated with the locale-builder tool.
27570         * appdomain.c: Incement corlib version number.
27571         
27572 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
27573
27574         * appdomain.c: (mono_runtime_init) move mono_thread_init
27575         to before mono_object_new calls so critical sections
27576         are initialized before use.
27577
27578 2004-04-07  Martin Baulig  <martin@ximian.com>
27579
27580         * icall.c
27581         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
27582         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
27583         (ves_icall_MonoGenericParam_initialize): Removed.
27584         (monogenericparam_icalls): Removed.
27585         (generictypeparambuilder_icalls): Added new table for
27586         System.Reflection.Emit.GenericTypeParameterBuilder.
27587
27588         * reflection.c
27589         (mono_reflection_define_generic_parameter): Removed.
27590         (mono_reflection_initialize_generic_parameter): This is now called
27591         from GenericTypeParameterBuilder's .ctor.
27592
27593 2004-04-06  Martin Baulig  <martin@ximian.com>
27594
27595         * class.c (mono_class_init): Don't inflate nested classes in a
27596         generic instance.
27597         (mono_type_get_name_recurse): Include the generic arguments for
27598         generic instances and generic type declarations.
27599         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
27600         (_mono_class_get_instantiation_name): Removed.
27601         (mono_class_create_generic): Always use `gklass->name' as our name.
27602
27603         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
27604
27605         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
27606         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
27607         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
27608         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
27609         closed generic methods here.
27610
27611         * reflection.c
27612         (mono_reflection_generic_inst_get_nested_types): Removed.
27613         (inflate_mono_method): Copy the generic parameters from the
27614         MonoMethodHeader into out MonoGenericMethod.
27615
27616 2004-04-06  Martin Baulig  <martin@ximian.com>
27617
27618         * row-indexes.h
27619         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
27620
27621         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
27622
27623         * reflection.c (build_compressed_metadata): If we have any entries
27624         in the GenericParam, MethodSpec or GenericParamConstraint tables,
27625         set the header version to 1.1.
27626
27627 2004-04-06  Martin Baulig  <martin@ximian.com>
27628
27629         * class.c (mono_class_init): If we're a generic instance,
27630         initialize our nested classes, too.
27631         (_mono_class_get_instantiation_name): Deal with the new `!%d'
27632         suffix. 
27633
27634 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27635
27636         * process.c: quote the argument passed to the shell on windows.
27637
27638 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
27639
27640         * threads.c (mono_alloc_special_static_data): Allow this to be
27641         called during startup.
27642
27643 2004-04-02  Martin Baulig  <martin@ximian.com>
27644
27645         * icall.c
27646         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
27647
27648 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
27649
27650         * icall.c: Fix build.
27651
27652 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
27653
27654         * Makefile.am: Added security.c|h.
27655         * icall.c: Added icall for get_UserName;
27656         * security.c: New file for security related icalls. Added function
27657         get_UserName for System.Environment (fix #56144).
27658         * security.h: New. Header file for security.c
27659
27660 2004-04-02  Dick Porter  <dick@ximian.com>
27661
27662         * icall.c: Deleted the icalls that were obsoleted some time ago
27663         by the ICU string code, and which were mixed into the icall
27664         rearranging.  Fixes bug 55969.
27665
27666         * string-icalls.h: 
27667         * string-icalls.c: Deleted the code that those icalls reference.
27668
27669 2004-04-01  Martin Baulig  <martin@ximian.com>
27670
27671         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
27672
27673         * class.c (mono_class_from_generic_parameter): Don't set 
27674         TYPE_ATTRIBUTE_INTERFACE.
27675         (my_mono_class_from_generic_parameter): Likewise.
27676
27677 2004-04-01  Martin Baulig  <martin@ximian.com>
27678
27679         * loader.c (find_method): Added an optional `MonoClass *ic'
27680         argument to search in a specific interface.
27681         (mono_get_method_constrained): New public function.
27682
27683 2004-04-01  Martin Baulig  <martin@ximian.com>
27684
27685         * reflection.c (mono_image_get_generic_field_token): Use the
27686         `handleref' cache here.
27687
27688 2004-04-01  Martin Baulig  <martin@ximian.com>
27689
27690         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
27691
27692         * reflection.c (create_generic_typespec): Use the `typespec' hash
27693         here, not the `typeref' one.    
27694
27695 2004-04-01  Martin Baulig  <martin@ximian.com>
27696
27697         * class.c (mono_class_inflate_generic_type): Moved the
27698         functionality into a new static inflate_generic_type() which
27699         returns NULL if it didn't do anything.  Only increment the
27700         `mono_stats.inflated_type_count' if we actually inflated
27701         something.
27702         (mono_class_get_full): Check the classes type to see whether we
27703         need to inflate it; also inflate MONO_TYPE_(M)VAR.
27704
27705 2004-04-01  Jackson Harper  <jackson@ximian.com>
27706
27707         * reflection.c: Set culture for assembly references.
27708         
27709 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
27710
27711         * reflection.[ch], icall.[ch], Fix support for pinning variables.
27712
27713 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27714
27715         * assembly.c:
27716         (do_mono_assembly_open): the critical section also covers
27717         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
27718
27719 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27720
27721         * threads.c:
27722         (mono_manage_threads): abort the background threads when finishing.
27723         Fixes bug #47232.
27724
27725 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27726
27727         * gc.c: only close the done_event handle if there was no timeout.
27728         C-ified comments.
27729
27730 2004-03-30  Martin Baulig  <martin@ximian.com>
27731
27732         * icall.c (icall_entries): It's called "System.Activator", not
27733         "System.Activation".    
27734
27735 2004-03-30  Martin Baulig  <martin@ximian.com>
27736
27737         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
27738         (mono_class_create_from_typespec): Likewise.
27739
27740 2004-03-30  Martin Baulig  <martin@ximian.com>
27741
27742         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
27743         `has_ctor_constraint' and `initialized'.
27744
27745 2004-03-30  Martin Baulig  <martin@ximian.com>
27746
27747         * reflection.c (encode_new_constraint): New static function to add
27748         the constructor constraint attribute to a type parameter.
27749         (encode_constraints): Call encode_new_constraint() if necessary.
27750
27751         * reflection.h
27752         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
27753
27754         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
27755         
27756 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
27757
27758         * reflection.c, icall.c: add support for pinning variables. 
27759
27760 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
27761
27762         * marshal.c (mono_marshal_get_managed_wrapper):
27763         init bool local with zero rather than null.
27764
27765 2004-03-29  Martin Baulig  <martin@ximian.com>
27766
27767         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
27768         the "official" behavior here.
27769         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
27770
27771 2004-03-29  Martin Baulig  <martin@ximian.com>
27772
27773         * icall.c: Reflect latest API changes.
27774
27775 2004-03-29  Martin Baulig  <martin@ximian.com>
27776
27777         * loader.c (mono_get_method_from_token): Also call
27778         mono_metadata_load_generic_params () for abstract and interface
27779         methods; replace the type arguments in the method signature with
27780         the ones which are loaded from the metadata.
27781
27782 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
27783
27784         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
27785         of the lock is not the current thread. MS.NET don't do it, in spite of
27786         what the documentation says. See bug #56157.
27787
27788 2004-03-28  Martin Baulig  <martin@ximian.com>
27789
27790         * class.c (mono_class_init): Don't call init_properties() and
27791         init_events() for generic instances; set `prop->parent' when
27792         inflating properties.
27793
27794         * reflection.c (mono_generic_inst_get_object): Call
27795         `mono_class_init (ginst->klass)'.
27796         (mono_type_get_object): Only create a MonoGenericInst if your
27797         generic type is a TypeBuilder.
27798         (do_mono_reflection_bind_generic_parameters): Only set
27799         `ginst->is_dynamic' if our generic type is a TypeBuilder.
27800
27801 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
27802
27803         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
27804         Fixes #56091.
27805
27806 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27807
27808         * icall.c: added Kill_internal icall.
27809         * process.[ch]: added Kill_internal icall.
27810
27811 2004-03-25  Martin Baulig  <martin@ximian.com>
27812
27813         * class.h (MonoStats): Added `generic_instance_count',
27814         `inflated_method_count', `inflated_type_count' and
27815         `generics_metadata_size'.       
27816
27817 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27818
27819         * reflection.c: no warnings now.
27820
27821 2004-03-25  Martin Baulig  <martin@ximian.com>
27822
27823         * class.c (mono_class_get_full): New public function; does a
27824         mono_class_get(), but also takes a `MonoGenericContext *'.
27825
27826         * loader.c (mono_field_from_memberref): Renamed to
27827         `field_from_memberref', made static and added `MonoGenericContext *'
27828         argument.
27829         (mono_field_from_token): Added `MonoGenericInst *' argument.
27830         (method_from_memberef): Likewise.
27831         (mono_get_method_from_token): Likewise.
27832         (mono_get_method_full): New public function; does a
27833         mono_get_method(), but also takes a `MonoGenericContext *'.
27834
27835         * verify.c (mono_method_verify): Get the method's generic context
27836         and pass it to mono_field_from_token(), mono_get_method_full() and
27837         mono_class_get_full().
27838
27839 2004-03-25  Martin Baulig  <martin@ximian.com>
27840
27841         * class.c (mono_class_inflate_generic_type): Take a
27842         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
27843         `MonoGenericMethod *'.
27844
27845 2004-03-25  Martin Baulig  <martin@ximian.com>
27846
27847         * loader.h (MonoMethodInflated): Store the MonoGenericContext
27848         instead of the MonoGenericMethod here.
27849
27850 2004-03-25  Martin Baulig  <martin@ximian.com>
27851
27852         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
27853         each time we create a new MonoGenericInst, we also create a new
27854         context which points back to us.
27855
27856         * class.c (inflate_method): Use `ginst->context' instead of
27857         creating a new context.
27858
27859         * loader.c (method_from_memberref): Use
27860         `klass->generic_inst->context' instead of creating a new context.
27861
27862 2004-03-25  Martin Baulig  <martin@ximian.com>
27863
27864         * class.h (MonoGenericContext): New struct.
27865         (MonoGenericMethod): Removed `generic_inst'.
27866
27867         * class.c (mono_class_inflate_generic_method): Take a
27868         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
27869
27870 2004-03-25  Martin Baulig  <martin@ximian.com>
27871
27872         * loader.h (MonoMethodInflated): New typedef.
27873
27874         * metadata.h (MonoMethodSignature): Removed `gen_method', make
27875         `generic_param_count' consume just 30 bits, added `is_inflated'
27876         and `has_type_parameters' flags (one bit each).
27877
27878         * class.c (mono_class_inflate_generic_method): Create a
27879         MonoMethodInflated instead of a MonoMethodNormal and set
27880         `is_inflated' in the method signature.
27881
27882         * class.h (MonoGenericMethod): Removed `generic_method'.
27883
27884 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
27885
27886         * image.c: Make sure the name of a MonoImage is always an absolute path.
27887           This fixes bug #54415.
27888
27889 2004-03-24  Martin Baulig  <martin@ximian.com>
27890
27891         * class.c (mono_class_setup_vtable): If we're a generic instance,
27892         use our generic type's vtable size.
27893
27894 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
27895
27896         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
27897         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
27898         problems.
27899
27900 2004-03-23  Martin Baulig  <martin@ximian.com>
27901
27902         * class.h (MonoDynamicGenericInst): Added `int count_events' and
27903         `MonoEvent *events'.
27904
27905         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
27906         (typebuilder_icalls): Added "get_event_info"; calls
27907         mono_reflection_event_builder_get_event_info(). 
27908
27909         * reflection.c (mono_reflection_generic_inst_initialize): Added
27910         `MonoArray *events'.
27911         (mono_reflection_event_builder_get_event_info): New function.
27912
27913 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
27914
27915         * object.h: add mono_type_initialization_init
27916
27917         * object.c (mono_runtime_class_init): 
27918         implement class constructor synchronization rules
27919         to cope with threading issues.  
27920         add mono_type_initialization_init
27921
27922         * appdomain.c (mono_runtime_init): call 
27923         mono_type_initialization_init
27924
27925         * class.h: removing initializing field from MonoVTable
27926
27927 2004-03-23  Martin Baulig  <martin@ximian.com>
27928
27929         * class.c (my_mono_class_from_generic_parameter): Use
27930         `param->name' if it's not NULL. 
27931
27932 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
27933
27934         * class.c: do not insert non-virtual methods in the vtable.
27935         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
27936         that means the method is non-virtual. This never would have
27937         happened before.
27938
27939 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
27940
27941         * profiler.c: Added lock for accessing coverage_hash.
27942
27943 2004-03-22  Martin Baulig  <martin@ximian.com>
27944
27945         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
27946         `method->method->signature->generic_param_count != 0' to make it
27947         work for interface methods.
27948
27949 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27950
27951         * process.c: quote the string passed to the shell using g_shell_quote.
27952
27953 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27954
27955         * threads.c:
27956         (mono_threads_manage): don't remove the finalizer thread and self
27957         from the threads hash table so that mono_thread_manage can be called
27958         more than once.
27959
27960 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27961
27962         * process.c: quote the arguments when UseShellExecute is true. Fixes
27963         bug #55790.
27964
27965 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27966
27967         * threads.c: set mono_thread_detach as a cleanup routine for every
27968         thread. This way it's always executed upon thread termination, either
27969         aborted or finished normally. No more xsp hangs!
27970
27971 2004-03-17  Martin Baulig  <martin@ximian.com>
27972
27973         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
27974         `int count_nested' and a `MonoType **nested'.
27975
27976         * reflection.c (mono_reflection_bind_generic_parameters): Moved
27977         most of the functionality into a new static
27978         do_mono_reflection_bind_generic_parameters() and don't take a
27979         `MonoType *nested_in' argument any more.  Don't compute nested
27980         types here.
27981         (mono_reflection_generic_inst_get_nested_types): New public method
27982         to get nested types.
27983
27984         * class.c (mono_class_create_generic): Set `klass->nested_in' if
27985         we're a nested class.
27986
27987         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
27988         mono_reflection_generic_inst_get_nested_types() to compute the
27989         nested types.
27990
27991 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
27992
27993         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
27994         descriptive error message under windows.
27995         
27996 2004-03-17  Martin Baulig  <martin@ximian.com>
27997
27998         * class.c (dup_type): Added `const MonoType *original' argument;
27999         copy the attrs from the original type.
28000
28001 2004-03-17  Martin Baulig  <martin@ximian.com>
28002
28003         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
28004         `m->generic_inst_cache' here.
28005
28006 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28007
28008         * exception.h exception.c: Add stack_overflow_exception.
28009
28010 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28011
28012         * threadpool.c:
28013         (overlapped_callback): call SetEvent *after* invoking the callback.
28014         No need to call CloseHandle.
28015
28016 2004-03-16  Martin Baulig  <martin@ximian.com>
28017
28018         * reflection.c (mono_image_get_fieldref_token): Take a
28019         `MonoReflectionField *' instead of a `MonoClassField *' and a
28020         `MonoClass *'; store the `MonoReflectionField *' in the hash.
28021
28022 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28023
28024         * appdomain.c: don't add the culture to the filename we're looking for
28025         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
28026
28027 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28028
28029         * locales.c: don't ignore symbols when doing case insensitive compares.
28030         Thanks Dick! Fixes bug #54046.
28031
28032         * threads.c: surround 'threads' usage with enter/leave in
28033         mono_thread_manage.
28034
28035 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
28036
28037         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
28038         implicitly marshalled as [Out]. Fixes #55450.
28039
28040         (mono_marshal_get_runtime_invoke): Zero out the result if there is
28041         an exception.
28042
28043 2004-03-16  Martin Baulig  <martin@ximian.com>
28044
28045         * class.c (mono_class_from_generic_parameter): Use the actual
28046         parameter name. 
28047
28048 2004-03-16  Martin Baulig  <martin@ximian.com>
28049
28050         * reflection.c (type_get_signature_size): New static function.
28051         Compues the size of the type in a method signature.
28052         (method_get_signature_size): New static function; calls
28053         type_get_signature_size() to compute the actual size of the
28054         method's signature.
28055         (method_encode_signature): Use method_get_signature_size() to get
28056         the signature's size rather than using `nparams * 10'.
28057
28058 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28059
28060         * file-io.h: define here WapiOverlapped on windows. I don't want the
28061         regular OVERLAPPED one.
28062
28063         * file-io.c:
28064         * threadpool.c: somehow, BindIoCompletionCallback is not found.
28065         Disabling AIO on windows.
28066
28067 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28068
28069         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
28070         bug #55385.
28071
28072 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28073
28074         * appdomain.c: upgraded corlib version.
28075
28076         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28077         and BeginWrite. Allow opening files for asynchrnous operations.
28078
28079         * file-io.h: new struct that maps FileStreamAsyncResult.
28080         * icall.c: added new icalls.
28081         * process.[ch]: support setting child process environment variables
28082         and use the SHELL or COMSPEC when UseShellExecute is true.
28083
28084         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28085         callback for async. IO is here and also BindHandle.
28086
28087         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28088         from here.
28089
28090 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
28091
28092         * reflection.c (create_custom_attr): Allow len == 0.
28093
28094         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28095         computation on big-endian machines.
28096
28097 2004-03-13  Martin Baulig  <martin@ximian.com>
28098
28099         * class.h (MonoGenericInst): Added `int count_ifaces'.
28100
28101         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28102         `ginst->count_ifaces' instead `klass->interface_count' since we
28103         may get called before the vtable is created.
28104
28105         * loader.c (mono_method_get_param_names): If we're a generic
28106         instance, return and don't initialize the class.
28107
28108         * reflection.c (mono_reflection_setup_generic_class): Don't call
28109         ensure_runtime_vtable().
28110         (mono_reflection_bind_generic_parameters): Set
28111         `ginst->count_ifaces'.
28112
28113 2004-03-11  Jackson Harper <jackson@ximian.com>
28114
28115         * icall.c:
28116         * unicode.c:
28117         * unicode.h: Remove unused System.Char icalls.
28118         
28119 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28120
28121         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28122         code when we P/Invoke the first library in Windows.Forms, instead
28123         of when we first open the assembly.
28124
28125         * assembly.c: Drop the lookup from here.
28126
28127 2004-03-10  Martin Baulig  <martin@ximian.com>
28128
28129         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28130         class for properties, fields and events.  Finally fixes #54945.
28131
28132 2004-03-10  Martin Baulig  <martin@ximian.com>
28133
28134         * metadata.c (mono_metadata_class_equal): New static function;
28135         checks whether two generic instances or two generic parameters are
28136         equal.
28137         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28138         compare classes.        
28139
28140 2004-03-10  Martin Baulig  <martin@ximian.com>
28141
28142         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28143
28144         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28145         argument and write it into the `reflection_info' field.
28146
28147         * icall.c
28148         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28149         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28150
28151 2004-03-09  Jackson Harper  <jackson@ximian.com>
28152
28153         * char-conversions.h: use 8 bits for numeric data its all we need
28154         * icall.c: numeric data is only 8 bits now.
28155
28156 2004-03-09  Martin Baulig  <martin@ximian.com>
28157
28158         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28159
28160         * class.c (init_properties, init_events): Initialize the new
28161         `parent' field.
28162
28163         * reflection.c (typebuilder_setup_properties): Likewise.
28164         (typebuilder_setup_events): Likewise.
28165
28166         * reflection.h (MonoEventInfo): Replaced `parent with
28167         `declaring_type' and `reflected_type'.
28168
28169         * icall.c (ves_icall_get_property_info): Distinguish between
28170         declaring and reflected type.
28171         (ves_icall_get_event_info): Likewise.
28172
28173 2004-03-09  Martin Baulig  <martin@ximian.com>
28174
28175         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28176         (ves_icall_Type_GetField): Correctly set field->klass.
28177
28178 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28179
28180         * loader.h: Fix warning.
28181
28182 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28183
28184         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28185         library routine if present.  Notice that it will still continue
28186         executing even if its missing, for those working on the Gtk#
28187         edition of Windows.Forms.
28188
28189         * assembly.c (do_mono_assembly_open): If loading the
28190         System.Windows.Forms call mono_loader_wini_init.
28191
28192 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28193
28194         * class.h: Added MonoRemoteClass struct.
28195         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28196         function for MonoStrings.
28197         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28198         Added internal call for getting the proxy type.
28199         * marshal.c: Get the type of transparent proxies from its remote_class.
28200         Added methods that generate the IL for type checks and casts:
28201         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28202         mono_marshal_get_proxy_cancast.
28203         * marshal.h: Declaration of the previous new methods.
28204         * object.c: Added new moethods for creating and updating MonoRemoteClass
28205         instances: mono_remote_class, mono_upgrade_remote_class, 
28206         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28207         * verify.c: FIx transparent_proxy_fields layout.
28208         * appdomain.c: Bump corlib version.
28209
28210 2004-03-04  Jackson Harper  <jackson@ximian.com>
28211
28212         * icall.c: Add icall to access char conversion tables.
28213         * char-conversions.h: Character conversion tables.
28214         * Makefile.am: Add char-conversions.h private header file.
28215         
28216 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28217
28218         * appdomain.c (unload_thread_main): Increase unloading timeout to
28219         10 sec as a temporary workaround for Nant problems.
28220
28221 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28222
28223         * gc.c: Add checks for GC_enable and GC_disable.
28224
28225         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28226         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28227         (bug #54988).
28228         
28229 2004-02-27  Martin Baulig  <martin@ximian.com>
28230
28231         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28232         `MonoReflectionType *' instead of a `MonoType *'.
28233
28234 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28235
28236         * gc.c (run_finalize): Avoid finalizing the object representing the
28237         finalizer thread.
28238         (finalizer_thread): Fix warning.
28239
28240 2004-02-25  Martin Baulig  <martin@ximian.com>
28241
28242         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28243         argument for nested types.
28244         (mono_class_create_generic): Added support for nested generictypes.
28245
28246         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28247         `GList *nested'.
28248
28249         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28250
28251         * reflection.c (method_encode_signature): Increase the minimum
28252         value of `size' from 10 to 11.
28253         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28254         and `MonoType **types' arguments instead of the `MonoArray
28255         *types'; added `MonoType *nested_in'.  Recursively instantiate
28256         nested classes. 
28257
28258 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28259
28260         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28261         stack_overflow_ex members which are used by exception handling.
28262
28263         * appdomain.c (mono_runtime_init): Initialize the new members.
28264
28265         * gc.c (mono_gc_enable): New helper function.
28266         * gc.c (mono_gc_disable): New helper function.
28267
28268 2004-02-23  Martin Baulig  <martin@ximian.com>
28269
28270         * icall.c: I must have been really stupid - make it actually work
28271         this time ;-)
28272
28273 2004-02-23  Martin Baulig  <martin@ximian.com>
28274
28275         * loader.c (method_from_memberref): Only inflate the method if
28276         it's in another klass.
28277
28278 2004-02-23  Martin Baulig  <martin@ximian.com>
28279
28280         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28281         (mono_class_init): If we're a generic instance and an interface,
28282         compute `class->interface_id'; also create `class->interfaces'
28283         here and inflate them.
28284
28285         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28286         `ginst->is_open'.
28287         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28288
28289         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28290
28291 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28292
28293         * reflection.c (method_encode_code): Improved the error message
28294         generated by the exception.
28295
28296 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28297
28298         * icall.c: Martin did not do what he said in the ChangeLog for
28299         2004-02-18, but put back the changes for properties and events.
28300         Commenting those changes out again and adding comment to bug #54518.
28301         
28302         * process.c: removed warning.
28303
28304 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28305
28306         * marshal.c (emit_struct_conv): Print an error message instead of
28307         asserting when a type does not have the StructLayout attribute.
28308
28309 2004-02-20  Martin Baulig  <martin@ximian.com>
28310
28311         * reflection.c (mono_type_get_object): Also use the cache for
28312         generic instances.
28313         (mono_reflection_bind_generic_parameters): Always compute
28314         `ginst->ifaces'.        
28315
28316 2004-02-20  Martin Baulig  <martin@ximian.com>
28317
28318         * class.h (MonoGenericMethod): Removed `klass'.
28319
28320         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28321         *klass' argument.
28322
28323 2004-02-20  Martin Baulig  <martin@ximian.com>
28324
28325         * reflection.c (method_encode_methodspec): Actually use the
28326         uninflated signature for the memberref.
28327
28328 2004-02-20  Martin Baulig  <martin@ximian.com>
28329
28330         * class.h (MonoGenericMethod): Removed `declaring'.
28331
28332         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28333         is NULL, compute it here.
28334
28335 2004-02-20  Martin Baulig  <martin@ximian.com>
28336
28337         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28338
28339         * metadata.c (mono_metadata_generic_inst_hash): New method.
28340         (mono_metadata_generic_inst_equal): New method.
28341
28342         * reflection.c (mono_reflection_bind_generic_parameters): Use the
28343         `klass->image->generic_inst_cache' cache to avoid creating
28344         duplicate MonoGenericInst's.
28345
28346         * class.c (mono_class_inflate_generic_type): Use the cache.
28347
28348 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
28349
28350         * object.c: fixed gc descriptor calculation for embedded valuetypes.
28351
28352 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28353
28354         * icall.c: added Socket.WSAIoctl icall.
28355
28356         * socket-io.[ch]: implemented
28357         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
28358
28359 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
28360
28361         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
28362
28363 2004-02-18  Urs C Muff  <umuff@quark.com>
28364
28365         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
28366         this work on PPC and other big-endian architectures.
28367
28368         * debug-mono-symfile.h: Prepended the names of all the `guint32'
28369         fields with an underscore to make sure they're only accessed by
28370         the read32() macro.
28371
28372 2004-02-18  Martin Baulig  <martin@ximian.com>
28373
28374         * icall.c: Put the klass->refclass changes back for methods and
28375         fields, but not for properties and events.  We're currently not
28376         distinguishing between DeclaringType and ReflectedType for
28377         properties and events, that's what caused the regressions.
28378
28379 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28380
28381         * object.c:
28382         (mono_async_result_new): the handle can be NULL.
28383
28384         * threadpool.c: Use an event instead of a semaphore, don't initialize
28385         it until needed. This saves quite a few semaphores from being created
28386         when using the threadpool.
28387
28388 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
28389
28390         * object.c (mono_string_is_interned_lookup): Fix interning of long
28391         strings. Fixes #54473.
28392
28393         * domain.c (ldstr_equal): Optimize if the two strings are equal.
28394
28395         * icall.c: Revert the klass->refclass changes since they introduce
28396         regressions (bug #54518).
28397
28398 2004-02-18  Martin Baulig  <martin@ximian.com>
28399
28400         * class.c (mono_class_init): If we're a generic instance and don't
28401         come from a TypeBuilder, inflate our members here.
28402         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
28403         (mono_class_create_generic): New public method.
28404         (mono_class_initialize_generic): Removed.
28405         (get_instantiation_name): Renamed to
28406         _mono_class_get_instantiation_name() and made it public.
28407
28408 2004-02-18  Martin Baulig  <martin@ximian.com>
28409
28410         * class.c (mono_class_inflate_generic_type): Clear the new
28411         instance's `nginst->klass' when inflating a generic instance.
28412         (mono_class_is_subclass_of): Added (basic) support for generic
28413         instances.
28414
28415 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
28416
28417         * appdomain.h, domain.c: use a MonoCodeManager instead of a
28418         MonoMempool to hold compiled native code.
28419
28420 2004-02-17  Martin Baulig  <martin@ximian.com>
28421
28422         * class.h (MonoDynamicGenericInst): Added `count_properties' and
28423         `properties'.
28424
28425         * reflection.c (mono_reflection_generic_inst_initialize): Added
28426         `MonoArray *properties' argument.
28427
28428         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
28429
28430 2004-02-17  Martin Baulig  <martin@ximian.com>
28431
28432         * icall.c (ves_icall_Type_GetFields): Renamed to
28433         ves_icall_Type_GetFields_internal() and added a
28434         `MonoReflectionType *rtype' argument; pass it to
28435         mono_field_get_object() to set the field's "reflected" type.
28436         (ves_icall_Type_GetConstructors): Likewise.
28437         (ves_icall_Type_GetEvents): Likewise.
28438         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
28439         argument; pass it to mono_method_get_object() to set the method's
28440         "reflected" type.       
28441
28442 2004-02-17  Martin Baulig  <martin@ximian.com>
28443
28444         * class.h (MonoDynamicGenericInst): New type.
28445         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
28446
28447         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
28448         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
28449         (ves_icall_MonoGenericInst_GetFields): New interncall.
28450
28451         * class.c (mono_class_from_generic): Don't call
28452         mono_class_initialize_generic() if this is a dynamic instance;
28453         ie. it's being created from a TypeBuilder.
28454         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
28455         `class->byval_arg.type'.
28456
28457         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
28458         to `inflate_method' and made static.
28459         (mono_reflection_inflate_field): Removed.
28460         (mono_reflection_generic_inst_initialize): New public method.
28461
28462         * reflection.h (MonoReflectionGenericInst): Removed `methods',
28463         `ctors' and `fields'; added `initialized'.
28464
28465 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
28466
28467         * debug-helpers.c (mono_method_full_name): Fix output for empty
28468         namespaces.
28469
28470 2004-02-12  Martin Baulig  <martin@ximian.com>
28471
28472         * class.h (MonoClassField): Added `MonoType *generic_type'.
28473
28474         * reflection.c (mono_image_get_fieldref_token): Added support for
28475         instantiated generic types.
28476         (field_encode_inflated_field): Removed.
28477         (mono_image_get_inflated_field_token): Removed.
28478         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
28479
28480         * reflection.h (MonoReflectionInflatedField): Removed.
28481
28482 2004-02-12  Martin Baulig  <martin@ximian.com>
28483
28484         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
28485         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
28486
28487         * reflection.c (mono_image_get_methodspec_token): Take a
28488         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
28489         (mono_image_create_token): Check whether we have a
28490         `method->signature->gen_method' and call
28491         mono_image_get_methodspec_token() if appropriate.
28492         (inflated_method_get_object): Removed.
28493         (mono_reflection_bind_generic_method_parameters): Return a
28494         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
28495         (mono_reflection_inflate_method_or_ctor): Likewise.
28496
28497         * reflection.h (MonoReflectionInflatedMethod): Removed.
28498
28499 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
28500
28501         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
28502         for custom valuetype marshalling.
28503
28504         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
28505
28506 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28507
28508         * icall.c: fixed WSAGetLastError_internal name.
28509
28510 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
28511
28512         * threads.c (mono_thread_attach): Allow this to be called multiple
28513         times for a thread.
28514         
28515         * threads.c (build_wait_tids): Do not wait for ourselves.
28516
28517         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
28518         appdomain list is empty.
28519
28520         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
28521         memory returned by mono_string_builder_to_utf16, since it points into
28522         managed memory. Thanks to Bernie Solomon for noticing this.
28523
28524         * icall.c: Add AppDomainSetup icalls.
28525
28526         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
28527
28528         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
28529         types.
28530
28531         * reflection.c (reflection_methodbuilder_to_mono_method): Save
28532         custom attributes to the method_aux struct. Also fix array indexes etc.
28533
28534         * loader.c (mono_method_get_param_names): Make dynamic case work again.
28535         
28536 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
28537
28538         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
28539         (both static and runtime) and reduce startup time.
28540
28541 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
28542
28543         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
28544         AsAny marshalling conversion instead of crashing.
28545
28546         * marshal.c: Fix warnings.
28547
28548 2004-02-09  Martin Baulig  <martin@ximian.com>
28549
28550         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
28551
28552         * reflection.h (MonoReflectionInflatedMethod): Removed the
28553         `declaring' field, it's now in the unmanaged MonoGenericMethod.
28554
28555         * reflection.c (method_encode_methodspec): Removed the `method'
28556         argument; we get it from `gmethod->declaring'.
28557         (inflated_method_get_object): Removed the `declaring' argument.
28558
28559 2004-02-09  Martin Baulig  <martin@ximian.com>
28560
28561         * class.h (MonoGenericMethod): New type.
28562         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
28563         `generic_method'.
28564
28565         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
28566         a `MonoGenericMethod *gen_method' one.
28567
28568         * class.c (mono_class_inflate_generic_type): Take an additional
28569         `MonoGenericMethod * argument.  This is only non-NULL if we're
28570         inflating types for a generic method.   
28571         (mono_class_inflate_generic_signature): Renamed to
28572         inflate_generic_signature() and made static; take a
28573         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28574         (inflate_generic_header): Take a `MonoGenericMethod *' argument
28575         instead of a `MonoGenericInst *' one.
28576         (mono_class_inflate_generic_method): Likewise.
28577
28578         * reflection.c (encode_generic_method_sig): Take a
28579         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28580         (method_encode_methodspec): Likewise.
28581         (inflated_method_get_object): Likewise. 
28582
28583         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
28584         field with a `MonoGenericMethod *gmethod' one.  
28585
28586 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
28587
28588         * class.h (mono_class_has_parent): add parens to expansion
28589         so you can ! this.
28590
28591 2004-02-08  Martin Baulig  <martin@ximian.com>
28592
28593         * image.h (MonoImage): Removed `generics_cache'.
28594
28595         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
28596         instead of a `MonoType *' argument; removed the `inflate_methods'
28597         argument.  Don't inflate methods here.
28598
28599         * loader.c (find_method): If it's a generic instance, call
28600         mono_class_init() on the `sclass->generic_inst->generic_type'.
28601
28602         * metadata.c (mono_type_size): Make this work on uninitialized
28603         generic instances; call it on the `ginst->generic_type's class.
28604
28605         * reflection.c (mono_reflection_bind_generic_parameters): Call
28606         mono_class_from_generic() to create the `ginst->klass'.
28607
28608 2004-02-08  Martin Baulig  <martin@ximian.com>
28609
28610         * class.h (MonoClass): Changed type of `generic_inst' from
28611         `MonoType *' to `MonoGenericInst *'.
28612
28613 2004-02-08  Martin Baulig  <martin@ximian.com>
28614
28615         * icall.c (ves_icall_Type_BindGenericParameters): Just call
28616         mono_type_get_object(), this is now creating a `MonoGenericInst'
28617         for MONO_TYPE_GENERICINST.
28618         (ves_icall_MonoGenericInst_GetParentType): Likewise.
28619         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
28620
28621         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
28622         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
28623         (inflated_method_get_object): Added `MonoClass *refclass' argument.
28624         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
28625         and reflected type.
28626
28627         * reflection.h (MonoReflectionInflatedMethod): Removed
28628         `declaring_type' and `reflected_type'.
28629
28630 2004-02-08  Martin Baulig  <martin@ximian.com>
28631
28632         * class.h (MonoGenericInst): Added `MonoType *parent' and
28633         `MonoType **ifaces'.
28634
28635         * reflection.h (MonoReflectionGenericInst): Removed `klass',
28636         `parent' and `interfaces'.
28637
28638         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28639         `MonoType *' argument and return a `MonoType *'.
28640
28641         * icall.c
28642         (ves_icall_MonoGenericInst_GetParentType): New interncall.
28643         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
28644
28645 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28646
28647         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
28648         valuetype marshalling.
28649
28650 2004-02-06  Martin Baulig  <martin@ximian.com>
28651
28652         * class.c
28653         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
28654         (my_mono_class_from_generic_parameter): Likewise.
28655
28656 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28657
28658         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
28659         contents of the symbol files lazily.
28660
28661         * object.h (MonoThread): Add 'name' and 'name_len' fields.
28662
28663         * threads.h threads.c icall.c: New icalls for getting and setting the
28664         threads name.
28665
28666 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
28667
28668         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
28669         Raise an exception when the domain is not found.
28670
28671 2004-02-03  Martin Baulig  <martin@ximian.com>
28672
28673         * reflection.c (mono_image_get_methodspec_token): Use the
28674         uninflated signature; fixes gen-33.
28675
28676 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
28677
28678         * gc.c threads.c: Make the finalizer thread a normal managed thread so
28679         the finalizer code can use thread functionality.
28680
28681         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
28682         the finalizer thread.
28683
28684         * threads.c: Make some functions more robust.
28685
28686         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
28687
28688         * metadata.h: Add new marshalling conventions.
28689
28690         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
28691         stringbuilder marshalling. Fixes #53700.
28692
28693         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
28694
28695         * reflection.c (mono_image_get_type_info): Save declarative security
28696         info.
28697
28698         * reflection.c (mono_image_get_field_info): Handle uninitialized 
28699         unmanaged fields as well.
28700
28701         * appdomain.c: Bump corlib version.
28702
28703 2004-02-01  Martin Baulig  <martin@ximian.com>
28704
28705         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
28706         method type arguments.  
28707
28708 2004-01-30  Duncan Mak  <duncan@ximian.com>
28709
28710         * marshal.h: Add prototype for
28711         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
28712         and
28713         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
28714         fix the build.
28715
28716 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
28717
28718         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
28719         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
28720
28721 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28722
28723         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28724         custom marshalling of valuetypes.
28725
28726         * marshal.c: Fix some warnings.
28727
28728 2004-01-29  Martin Baulig  <martin@ximian.com>
28729
28730         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
28731         for generic method parameters.
28732
28733         * reflection.c (method_encode_methodspec): Write the uninflated
28734         signature into the methodspec table.
28735         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
28736         is always the uninflated method.
28737         (reflection_methodbuilder_to_mono_method): Copy the generic
28738         parameters from the MethodBuilder into `header->gen_params'.
28739
28740 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28741
28742         * class.c (mono_class_from_generic_parameter): Fix warning.
28743
28744 2004-01-27  Martin Baulig  <martin@ximian.com>
28745
28746         * class.c (mono_class_from_generic_parameter): Don't create
28747         `klass->methods' here.  
28748
28749 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
28750
28751         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
28752         extension since it does not work with libraries named lib<FOO>.dll.so.
28753
28754 2004-01-25  Martin Baulig  <martin@ximian.com>
28755
28756         * class.c (mono_class_inflate_generic_type): Added support for
28757         MONO_TYPE_GENERICINST.
28758
28759         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
28760         inflate methods on open constructed types.      
28761
28762 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28763
28764         * object.c: fire ProcessExit event in the root AppDomain after running
28765         Main. Fixes bug #53299.
28766
28767 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
28768
28769         * socket-io.c: include the new socket-wrappers.h header.
28770         Use the wrappers instead of the unix socket functions to make the code
28771         more clear.
28772
28773 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
28774
28775         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
28776
28777         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28778         Fixes #22532.
28779
28780 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
28781
28782         * reflection.c (mono_image_create_pefile): Handle the case when the
28783         entry point is not a MethodBuilder.
28784
28785         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28786         field to ReflectionMethod since it is not allways a builder.
28787
28788         * reflection.c (type_get_fully_qualified_name): New helper function to
28789         return the fully qualified name of a type.
28790
28791         * reflection.c (encode_marshal_blob): Always emit the fully qualified
28792         type name for custom marshallers.
28793
28794         * reflection.c (mono_marshal_spec_from_builder): Ditto.
28795
28796         * class.c (mono_class_setup_vtable): If a parent class already 
28797         implements an interface, use the implementing methods from that class.
28798         Fixes #53148.
28799
28800 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28801
28802         * threadpool.c: just return instead of ExitThread to allow for thread
28803         clean up earlier.
28804
28805 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
28806
28807         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
28808         when closing resource modules.
28809
28810         * reflection.c (mono_image_create_pefile): Handle the case when the
28811         entry point is not a MethodBuilder.
28812
28813         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28814         field to ReflectionMethod since it is not allways a builder.
28815
28816 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
28817
28818         * marshal.c (mono_marshal_get_managed_wrapper): 
28819         mono_marshal_alloc takes native int so CONV_I
28820         the arg for 64bits.
28821
28822 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
28823
28824         * reflection.c (fixup_cattrs): New function to fixup the methoddef
28825         tokens in the cattr table. Fixes #53108.
28826
28827 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28828
28829         * loader.c: don't trim ".dll" before looking up in the config file.
28830         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
28831
28832 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
28833
28834         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
28835         Return the module which contains the resource as well.
28836         (ves_icall_System_Reflection_Module_Close): New icall.
28837
28838         * appdomain.c: Bump corlib version number.
28839
28840         * image.c (mono_image_addref): New public function.
28841
28842         * assembly.c: Call mono_image_addref.
28843
28844         * reflection.c (mono_module_get_object): Increase reference count of 
28845         the image.
28846
28847         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28848         Fixes #22532.
28849
28850         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
28851         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
28852         proper exceptions on DllImport problems.
28853
28854 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
28855
28856         * class.c, metadata.c: eliminate CSIZE macro.
28857
28858 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
28859
28860         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
28861         * object.h: Added async_callback field in MonoAsyncResult.
28862         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
28863         * verify.c: Added async_callback in MonoAsyncResult layout.
28864
28865 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
28866
28867         * reflection.c (mono_reflection_get_custom_attrs): Add support
28868         for Modules.
28869
28870 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
28871
28872         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
28873         marshalling.
28874         (mono_marshal_method_from_wrapper): Add null pointer check.
28875
28876 2004-01-16  Martin Baulig  <martin@ximian.com>
28877
28878         * debug-mono-symfile.h: Set version number to 36 and reflect
28879         latest symbol writer changes.
28880
28881 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
28882
28883         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
28884         multi-dimensional arrays.
28885         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
28886         (mono_class_from_mono_type): Use bounded_array_class_get.
28887         
28888         * class.c (mono_bounded_array_class_get): New function which takes
28889         a 'bounded' bool argument to distinguish vectors from one dimensional
28890         arrays.
28891
28892         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
28893         bounded_array_class_get if the array has bounds.
28894
28895         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28896         Search modules loaded using AssemblyBuilder:AddModule as well.
28897
28898 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28899
28900         * appdomain.c: increased corlib version.
28901         * filewatcher.c: removed g_print.
28902         * icall.c:
28903         (get_property_info): only allocate what is actually requested.
28904         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
28905
28906 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28907
28908         * Makefile.am: added filewatcher.[ch]
28909         * filewatcher.[ch]: FileSystemWatcher runtime support.
28910         * icall.c: added new FSW icalls.
28911
28912 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
28913
28914         * string-icalls.c: fix stringbuilder regression as suggested by
28915         Iain McCoy <iain@mccoy.id.au>.
28916
28917 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
28918
28919         * process.c (process_read_stringtable_block): Recognize '007f' as
28920         a language neutral stringtable block.
28921
28922 2004-01-12  Patrik Torstensson
28923
28924         * object.h (MonoStringBuilder) : Changed layout to support our
28925         new stringbuilder class.
28926         * marshal.c: Change marshalling to support the new layout of 
28927         string builder.
28928         * appdomain.c: increased version number because new layout of
28929         string builder.
28930
28931 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
28932
28933         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
28934         assembly name as an string instead of an AssemblyName, since it is
28935         easier to extract info from it.
28936
28937         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
28938         the culture subdirectories too. Fixes #52231.
28939
28940 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28941
28942         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
28943         It takes 2 new parameters with an optional name for the method to look
28944         for and case ignoring info.
28945
28946         * threadpool.c: removed unused variable.
28947
28948 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28949
28950         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
28951         It takes 2 new parameters with an optional name for the property to look
28952         for and case ignoring info.
28953         Fixes bug #52753.
28954
28955 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
28956
28957         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
28958         Fix #52451.
28959
28960 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28961
28962         * appdomain.c:
28963         * assembly.c: escape the uri before passing it to g_filename_from_uri.
28964         Fixes bug #52630.
28965
28966 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
28967
28968         * reflection.c: Add support for more than one unmanaged resource.
28969
28970         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
28971         in field->def_value, as done in all other cases.
28972
28973         * reflection.c (mono_reflection_get_custom_attrs): Add support for
28974         TypeBuilders.
28975
28976         * reflection.c (mono_reflection_create_runtime_class): Remove 
28977         errorneous assignment to klass->element_class, since it is already
28978         done in mono_reflection_setup_internal_class.
28979
28980 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28981
28982         * gc.c: added missing LeaveCriticalSection.
28983         * icall.c: indented a couple of lines.
28984         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
28985         if we call EndInvoke inside a callback. Fixes bug #52601.
28986
28987 2004-01-07  Martin Baulig  <martin@ximian.com>
28988
28989         * mono-debug-debugger.h
28990         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
28991
28992 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
28993
28994         * appdomain.c: Use messages in NotImplementedException.
28995
28996         * exception.c (mono_get_exception_not_implemented): Now this takes
28997         a message argument.
28998
28999         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
29000         exception instead of g_asserting an aborting when something is not
29001         implemented.
29002
29003         Add some inline docs.
29004
29005 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
29006
29007         * reflection.h: Update after changes to object layout.
29008
29009         * reflection.c: Implement saving of unmanaged aka win32 resources.
29010
29011         * appdomain.c: Bump version number.
29012
29013         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
29014         Handle missing domains gracefully.
29015
29016 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
29017
29018         * file-io.c : On Windows, there are much more invalid_path_chars.
29019
29020 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
29021
29022         * class.h, object.c: prepare for GetType () speedup.
29023
29024 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
29025
29026         * profiler.c: workaround for --profile null reference exception on
29027           cygwin. Patch by Patrik Torstensson.
29028
29029 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
29030
29031         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
29032         make work for unaligned access.
29033
29034 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
29035
29036         * class.c: small cleanup (class->fields [i] -> field).
29037         * image.c: check address of metadata is valid.
29038
29039 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
29040
29041         * assembly.h assembly.c (mono_assembly_loaded): New public function to
29042         search the list of loaded assemblies.
29043
29044         * reflection.c (mono_reflection_type_from_name): Use 
29045         mono_assembly_loaded instead of mono_image_loaded.
29046
29047         * reflection.c: Fix warnings.
29048
29049 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
29050
29051         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
29052         is dynamic. This is needed since an assembly can contain both dynamic and
29053         non-dynamic images.
29054
29055         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
29056         assembly->dynamic.
29057
29058         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
29059
29060         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
29061         to store modules loaded using AddModule.
29062
29063         * reflection.c (mono_image_fill_file_table): Generalize this so it works
29064         on Modules.
29065
29066         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
29067
29068         * reflection.c (mono_image_fill_export_table_from_module): New function to
29069         fill out the EXPORTEDTYPES table from a module.
29070
29071         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
29072         into a separate function. Also handle loaded non-dynamic modules.
29073
29074         * reflection.c (mono_image_basic_init): Fix memory allocation.
29075
29076         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29077
29078         * assembly.c (mono_assembly_load_references): Make this public.
29079
29080 2003-12-19  Martin Baulig  <martin@ximian.com>
29081
29082         * class.c (mono_class_initialize_generic): Made this static, take
29083         a `MonoGenericInst *' instead of a `MonoClass *'.
29084         (mono_class_from_generic): Call mono_class_initialize_generic()
29085         unless we're already initialized or being called from
29086         do_mono_metadata_parse_generic_inst().
29087
29088         * class.h (MonoGenericInst): Added `initialized' and
29089         `init_pending' flags.
29090
29091         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29092         `mono_class_init (gklass)' or mono_class_initialize_generic()
29093         here; set `generic_inst->init_pending' while parsing the
29094         `type_argv'.
29095
29096 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
29097
29098         * locales.c: include string.h for memxxx prototypes
29099
29100 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
29101
29102         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29103         constructor when accessing literal fields.
29104
29105 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
29106
29107         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29108
29109         * reflection.c (assembly_add_resource_manifest): New function to fill
29110         the MANIFESTRESOURCE table.
29111
29112         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29113
29114         * reflection.h: Update to changes in class layout.
29115
29116         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29117         Reenable call to mono_runtime_is_shutting_down ().
29118
29119         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29120         determine if the runtime is shutting down.
29121
29122 2003-12-16  Jackson Harper <jackson@ximian.com>
29123
29124         * icall.c: comment out call to mono_runtime_is_shutting_down to
29125         fix build.
29126         
29127 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29128
29129         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29130         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29131
29132 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29133
29134         * reflection.c: move definition of swap_with_size
29135         to before its first call
29136
29137 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29138
29139         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29140
29141         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29142         icall.
29143
29144         * object.c: Fix warnings.
29145
29146         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29147         members if FlattenHierarchy is set.
29148
29149         * reflection.c (mono_image_add_decl_security): New function to emit
29150         declarative security.
29151
29152         * reflection.h reflection.c: Add support for declarative security.
29153
29154         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29155         
29156 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29157
29158         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29159         
29160         * appdomain.c verify.c: Moved corlib version checking into its own
29161         function in appdomain.c since it needs to create vtables etc.
29162
29163 2003-12-13  Patrik Torstensson <p@rxc.se>
29164
29165         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29166         instead of unwrapped server.
29167
29168 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29169
29170         * verify.c (check_corlib): Fix field index.
29171
29172 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29173
29174         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29175         GetGacPath icall.
29176
29177 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29178
29179         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29180         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29181         cope with sizeof(size_t) != sizeof(guint32).
29182
29183 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29184
29185         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29186         in case of failure.
29187
29188 2003-12-10  Mark Crichton <crichton@gimp.org>
29189
29190         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29191         in managed code.
29192
29193         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29194
29195 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29196
29197         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29198         marked as deleted.
29199
29200 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29201
29202         * verify.c (check_corlib): Handle the case when the version field is 
29203         initialized by a static constructor.
29204
29205 2003-12-08  Patrik Torstensson  <p@rxc.se>
29206
29207     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29208
29209 2003-12-08  Martin Baulig  <martin@ximian.com>
29210
29211         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29212         a MonoReflectionGenericParameter, also take the parameter index
29213         and name as arguments.
29214         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29215         (ves_icall_MonoGenericParam_initialize): New interncall.
29216         (ves_icall_Type_make_byref_type): New interncall.
29217
29218         * reflection.h (MonoReflectionGenericParam): Derive from
29219         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29220         `index' fields.
29221
29222         * reflection.c (mono_reflection_define_generic_parameter): Create
29223         and return a new MonoReflectionGenericParam; don't initialize the
29224         constraints here.
29225         (mono_reflection_initialize_generic_parameter): New public method;
29226         initializes the constraints and creates the `param->pklass'.
29227
29228 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29229
29230         * reflection.h reflection.c: Use the new fields 'num_types', 
29231         'num_fields' and 'num_methods' to track the number of types etc.
29232
29233         * verify.c (check_corlib): Check corlib version number.
29234
29235 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29236
29237         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29238         function works on all methods.
29239
29240 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29241
29242         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29243         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29244         the custom_type_info flag of the transparent proxy.
29245         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29246         objects that supports IRemotingTypeInfo.
29247         * object.h: Added custom_type_info field in transparent proxy.
29248
29249 2003-12-06  Martin Baulig  <martin@ximian.com>
29250
29251         * class.c (mono_class_create_from_generic): Removed.
29252         (mono_class_from_generic): Check `ginst->klass' before doing
29253         anything else.  This is important to fully support "recursive"
29254         generic types.
29255
29256         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29257         empty `generic_inst->klass' before doing anything else.
29258
29259 2003-12-06  Dick Porter  <dick@ximian.com>
29260
29261         * verify.c: 
29262         * object.h:
29263         * icall.c:
29264         * locales.c: Use C structs to access class fields.  Don't do a
29265         conversion between MonoString and UChar because both are
29266         platform-endian UTF-16.  Compare now takes startindex and count
29267         parameters.  Add a char overload for IndexOf.  Speed up the
29268         invariant string IndexOf.
29269
29270 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29271
29272         * Makefile.am (monosn_LDADD): Fix parallel build.
29273
29274 2003-12-04  Martin Baulig  <martin@ximian.com>
29275
29276         * icall.c
29277         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29278         (ves_icall_Type_make_array_type): New interncall.       
29279
29280 2003-12-04  Martin Baulig  <martin@ximian.com>
29281
29282         * locales.c: also change it in the !HAVE_ICU case.
29283
29284 2003-12-04  Dick Porter  <dick@ximian.com>
29285
29286         * icall.c:
29287         * locales.c: construct_compareinfo is now in CompareInfo, not
29288         CultureInfo.
29289
29290 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29291
29292         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29293         image->files array.
29294
29295         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29296         table as well.
29297
29298         * assembly.c (mono_assembly_load_references): Only load references
29299         once.
29300
29301         * class.c (mono_class_from_name): Avoid linear search of the 
29302         EXPORTEDTYPE table.
29303
29304         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29305
29306 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29307
29308         * image.h (MonoImage): Add 'field_cache' field.
29309
29310         * loader.c (mono_field_from_token): Cache field lookups.
29311         
29312         * reflection.c (mono_module_get_object): Fix name property.
29313
29314         * icall.c (ves_icall_get_enum_info): Update after changes to 
29315         mono_metadata_get_constant_index ().
29316
29317         * icall.c: Get rid of get_type_info icall, use a separate icall for
29318         each type property to avoid needless memory allocations. Fixes #51514.
29319
29320         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29321         to avoid needless binary searches.
29322
29323         * class.c (class_compute_field_layout): Move the initialization of
29324         field->def_value to mono_class_vtable ().
29325
29326         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29327         non-corlib types.
29328
29329         * object.c (mono_object_allocate): Make it inline.
29330
29331         * object.c (mono_object_allocate_spec): Make it inline.
29332         
29333 2003-12-02  Dick Porter  <dick@ximian.com>
29334
29335         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29336         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29337
29338 2003-12-01  Dick Porter  <dick@ximian.com>
29339
29340         * threads.c: Fix signature and call in CreateMutex and
29341         CreateEvent.
29342
29343 2003-12-01  Dick Porter  <dick@ximian.com>
29344
29345         * icall.c: 
29346         * locales.c: Implement string compares and searching
29347
29348         * object.h: Add extra Thread field
29349
29350 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
29351
29352         * reflection.c (fixup_method): Add support for MonoCMethod.
29353
29354 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
29355
29356         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
29357
29358         * reflection.c (assembly_name_to_aname): Allow extra characters in
29359         assembly names. Fixes #51468.
29360
29361 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
29362
29363         * exception.c (mono_exception_from_name_domain): New helper function.
29364
29365         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
29366         exception object in the correct domain.
29367
29368         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
29369         formatting + make a copy a the input data.
29370
29371         * loader.c (mono_get_method_from_token): Methods which contain
29372         native code do not have entries in the ImplMap.
29373
29374         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
29375         Thanks to Gonzalo for spotting this.
29376         
29377         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
29378         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
29379
29380         * assembly.h (mono_assembly_load_from): Split the second part of 
29381         assembly loading into a new public function.
29382
29383         * exception.h (mono_get_exception_bad_image_format): New function.
29384
29385 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
29386
29387         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29388         Enumerate all modules inside a dynamic assembly. Fixes #51293.
29389         
29390         * icall.c: Add new icall for creating dynamic methods.
29391
29392         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
29393
29394         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
29395
29396         * reflection.c (mono_reflection_create_dynamic_method): New icall to
29397         create a dynamic method.
29398
29399         * reflection.c (resolve_object): New helper function.
29400
29401         * reflection.c: Generalize ReflectionMethodBuilder and the functions
29402         which manipulate it so they can also work on dynamic methods.
29403
29404         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
29405         creating the MonoReflectionMethodAux structure if it is not needed.
29406         
29407         * reflection.h verify.c: Update after changes to object layout.
29408
29409         * reflection.c (method_builder_encode_signature): Fix compilation on
29410         gcc 2.95.x.
29411
29412 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
29413
29414         * appdomain.h: Added support for context static fields. Added static_data
29415           field to MonoAppContext and renamed thread_static_fields to a more
29416           generic special_static_fields in MonoAppDomain, since it can now contain
29417           context static fields.
29418         * domain.c: Updated hashtable name.
29419         * object.c: Replaced field_is_thread_static() for a more generic
29420           field_is_special_static() which also checks for context static attribute.
29421           In mono_class_vtable(), added support for static context fields.
29422         * threads.c: Changed methods that manage thread static fields to more
29423           generic methods so they can be reused both for thread and context static
29424           data.
29425         * threads.h: Declared some new methods.
29426
29427 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
29428
29429         * reflection.h: Update after changes to the managed types.
29430
29431         * reflection.c (encode_custom_modifiers): New helper function.
29432
29433         * reflection.c (method_encode_signature): Emit custom modifiers.
29434
29435         * reflection.c (field_encode_signature): Emit custom modifiers.
29436
29437 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
29438
29439         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
29440
29441         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
29442         implementation.
29443
29444         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
29445         icall.
29446
29447         * object.c (mono_field_get_value_object): New function.
29448
29449         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
29450         specific.
29451
29452 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
29453
29454         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
29455         return a preallocated out-of-memory exception instance.
29456
29457         * object.c (out_of_memory): Use the new function.
29458
29459         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
29460         flag is before the custom modifiers. Fixes #49802.
29461
29462 2003-11-16  Martin Baulig  <martin@ximian.com>
29463
29464         * class.c (mono_class_is_open_constructed_type): Implemented the
29465         MONO_TYPE_GENERICINST case.
29466
29467 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
29468
29469         * assembly.c (mono_assembly_fill_assembly_name): New function to
29470         fill out the MonoAssemblyName structure.
29471         (mono_assembly_open): Use the new function.
29472
29473         * icall.c (fill_reflection_assembly_name): New helper function.
29474
29475         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
29476         new function.
29477
29478         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
29479
29480 2003-11-15  Martin Baulig  <martin@ximian.com>
29481
29482         * class.c (mono_class_is_open_constructed_type): New public
29483         function; checks whether a type is an open constructed type,
29484         ie. whether it still contains type parameters.
29485         (mono_class_inflate_generic_type): If we're a type parameter and
29486         the inflated type is also a MONO_TYPE_(M)VAR, return the original
29487         type.
29488
29489         * class.h (MonoGenericInst): Added `guint32 is_open'.
29490
29491         * loader.c (method_from_methodspec): Check whether we're an open
29492         or closed constructed type and set `ginst->is_open'.
29493
29494         * reflection.c (mono_reflection_bind_generic_parameters): Check
29495         whether we're an open or closed constructed type and set
29496         `ginst->is_open'.
29497         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
29498         from open constructed types.
29499
29500 2003-11-15  Martin Baulig  <martin@ximian.com>
29501
29502         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29503         a generic instance (instead of a generic type declaration) with
29504         unbound generic parameters, bind them to our actual types.
29505
29506 2003-11-14  Martin Baulig  <martin@ximian.com>
29507
29508         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
29509
29510         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29511         an interface type, populate `res->interfaces' with instantiated
29512         versions of all the interfaces we inherit.
29513
29514 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
29515
29516         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
29517         when MONO_PATH is set but doesn't contain the install dir.
29518
29519 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29520
29521         * icall.c:
29522         (ves_icall_Type_GetInterfaces): don't return an interface twice when
29523         it's also implemented in base classes. Fixes bug #50927.
29524
29525 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
29526
29527         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
29528         if this method is called from a finalizer. Fixes #50913.
29529
29530 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
29531
29532         * threads.c: Implement VolatileRead/VolatileWrite
29533
29534         * icall.c: Add new icalls for VolatileRead/VolatileWrite
29535
29536 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29537
29538         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
29539         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
29540         2.95.3.
29541
29542         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
29543         from Peter Ross (pro@missioncriticalit.com).
29544         
29545 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
29546
29547         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
29548
29549 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29550
29551         * assembly.c (mono_assembly_load_references): Disable check because it
29552         triggers on older corlibs which lots of people have.
29553
29554 2003-11-12  Jackson Harper  <jackson@ximian.com>
29555
29556         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
29557         load corlib.dll if mscorlib.dll is not found.
29558         * assembly.h: Remove corlib name define.
29559         * class.c:
29560         * domain.c:
29561         * image.c: Change corlib name to mscorlib.
29562         
29563 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29564
29565         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
29566
29567 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
29568
29569         * appdomain.h: Added loader_optimization here to sync with the C#
29570         code, and add disallow_binding_redirects field.
29571
29572 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29573
29574         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
29575
29576         * reflection.c (mono_image_build_metadata): Fix crash on modules
29577         with no types.
29578
29579         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
29580
29581         * icall.c (ves_icall_get_method_info): Return callingConvention as
29582         well.
29583
29584         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
29585         namespaces from the EXPORTEDTYPE table as well.
29586
29587         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
29588         from all modules inside the assembly.
29589         
29590 2003-11-11  Martin Baulig  <martin@ximian.com>
29591
29592         * reflection.c (mono_reflection_bind_generic_parameters): Make
29593         this work for interfaces.
29594
29595 2003-11-11  Martin Baulig  <martin@ximian.com>
29596
29597         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
29598
29599 2003-11-11  Martin Baulig  <martin@ximian.com>
29600
29601         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
29602         "MonoInflatedMethod" and "MonoInflatedCtor".
29603
29604 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29605
29606         * reflection.c (resolution_scope_from_image): Use the assembly table
29607         from the manifest module, since other modules don't have it.
29608
29609         * debug-helpers.c (mono_type_full_name): New helper function.
29610
29611         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
29612
29613         * image.c (mono_image_load_file_for_image): New public function which
29614         is a replacement for the load_file_for_image in class.c.
29615
29616         * assembly.c (mono_assembly_load_module): A wrapper for the function
29617         above which does assembly association and reference loading too.
29618
29619         * class.c (mono_class_from_name): Call mono_assembly_load_module.
29620
29621 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29622
29623         * appdomain.c: not all of the attributes for the full assembly name
29624         are required and the order doesn't matter. Fixes bug #50787.
29625
29626 2003-11-10  Dick Porter  <dick@ximian.com>
29627
29628         * locales.c: Use platform-endian UTF16
29629
29630 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29631
29632         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29633         
29634 2003-11-10  Martin Baulig  <martin@ximian.com>
29635
29636         * metadata.c
29637         (mono_metadata_load_generic_params): Make this actually work.
29638
29639         * reflection.c (mono_reflection_bind_generic_parameters): If our
29640         parent is a generic instance, pass all the `types' to it, no
29641         matter whether it has the same number of type parameters or not.
29642
29643 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29644
29645         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29646
29647         * assembly.c (mono_assembly_load_references): Move the image<->assembly
29648         assignment code to this function so it gets called recursively for all
29649         modules.
29650
29651         * image.c (load_modules): Remove the assembly assignment since it is
29652         now done by mono_assembly_load_references.
29653         
29654         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29655         Add 'module' argument.
29656         (mono_module_get_types): New helper function.
29657         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
29658
29659 2003-11-08  Martin Baulig  <martin@ximian.com>
29660
29661         * class.c (mono_class_inflate_generic_method): Interface method
29662         don't have a header.
29663
29664         * reflection.c (mono_image_get_methodspec_token): Take an
29665         additional `MonoGenericInst *' argument instead of reading it from
29666         the header; this is necessary to support interfaces.
29667         (mono_image_create_token): Pass the `MonoGenericInst *' from the
29668         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
29669         (inflated_method_get_object): Take an additional `MonoGenericInst *'
29670         argument.
29671
29672         * reflection.h (MonoReflectionInflatedMethod): Added
29673         `MonoGenericInst *ginst'.
29674
29675 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
29676
29677         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
29678
29679 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
29680
29681         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
29682
29683 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
29684
29685         * reflection.c 
29686         (reflection_methodbuilder_from_method_builder):
29687         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
29688         initialize a ReflectionMethodBuilder structure.
29689         (mono_image_get_methodbuilder_token):
29690         (mono_image_get_ctorbuilder_token): New functions to emit memberref
29691         tokens which point to types in another module inside the same assembly.
29692
29693         * reflection.c: Use the new helper functions.
29694         
29695         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
29696
29697         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
29698         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
29699
29700         * reflection.c (resolution_scope_from_image): Emit a moduleref if
29701         neccesary.
29702
29703         * reflection.c (mono_image_build_metadata): Emit metadata only for the
29704         current module. Emit the manifest only for the main module.
29705
29706         * reflection.c (mono_image_create_token): Add assertion when a 
29707         memberref needs to be created.
29708
29709         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
29710
29711         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
29712         larger buffer for the custom attribute blob. Fixes #50637.
29713         
29714 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29715
29716         * threadpool.c: notify listener on async processing handles after
29717         invoking the async callback. Thanks to Zoltan.
29718
29719 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29720
29721         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
29722         avoid code duplication.
29723
29724         * reflection.h (MonoDynamicImage): New type which is currently unused,
29725         but will be used through the ref.emit code in place of 
29726         MonoDynamicAssembly.
29727
29728         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29729         object layout.
29730
29731         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
29732         a MonoDynamicImage instead of just a MonoImage.
29733         
29734         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
29735         icalls to ModuleBuilder but keep their semantics, so they will work
29736         with moduleb->assemblyb. This will change later.
29737         
29738 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29739
29740         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29741         object layout.
29742
29743         * reflection.c (mono_image_build_metadata): Avoid creation of a default
29744         main module, since it is now done by the managed code.
29745
29746 2003-11-03  Martin Baulig  <martin@ximian.com>
29747
29748         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
29749         `ginst->klass' here.
29750         (method_encode_methodspec): Don't use the `ginst->generic_method's
29751         klass if it's a generic instance, use `ginst->klass' in this case.
29752
29753 2003-11-03  Martin Baulig  <martin@ximian.com>
29754
29755         * reflection.c (mono_image_get_generic_method_param_info):
29756         Removed, use mono_image_get_generic_param_info() instead.
29757         (mono_image_get_type_info): Write the GenericParam table before
29758         the Method table.  This is neccessary because in the GenericParam
29759         table, type parameters of the class (ie. '!0' etc.) must come
29760         before the ones from its generic methods (ie. '!!0' etc).
29761
29762 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29763
29764         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
29765
29766 2003-11-02  Martin Baulig  <martin@ximian.com>
29767
29768         * reflection.c (create_generic_typespec): Take a
29769         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
29770         the generic parameters from it.
29771
29772 2003-11-02  Martin Baulig  <martin@ximian.com>
29773
29774         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
29775         instead of a `MonoClassField *' since we just need the type.
29776         (create_generic_typespec): New static function.  Creates a
29777         TypeSpec token for a generic type declaration.
29778         (mono_image_get_generic_field_token): New static function.
29779         (mono_image_create_token): If we're a FieldBuilder in a generic
29780         type declaration, call mono_image_get_generic_field_token() to get
29781         the token.
29782
29783 2003-11-02  Martin Baulig  <martin@ximian.com>
29784
29785         * reflection.h
29786         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
29787         `MonoReflectionGenericInst *declaring_type' and
29788         `MonoReflectionGenericInst *reflected_type' fields.
29789
29790         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
29791         `MonoReflectionGenericInst *declaring_type' and a
29792         `MonoReflectionGenericInst *reflected_type' argument instead of a
29793         single `MonoReflectionGenericInst *type' one.  Set
29794         `res->declaring_type' and `res->reflected_type' from them.
29795         (mono_reflection_inflate_field): Likewise.      
29796
29797 2003-11-02  Martin Baulig  <martin@ximian.com>
29798
29799         * class.c (mono_class_setup_vtable): Don't store generic methods
29800         in the vtable.  
29801
29802 2003-11-02  Martin Baulig  <martin@ximian.com>
29803
29804         * reflection.h (MonoReflectionGenericInst): Added
29805         `MonoReflectionType *declaring_type'.
29806
29807         * reflection.c (mono_reflection_bind_generic_parameters): Use
29808         `if (tb->parent)' instead of `klass->parent'.
29809
29810 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
29811
29812         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
29813         with an empty ASSEMBLY table.
29814
29815         * reflection.c (mono_image_build_metadata): Avoid using the same loop
29816         variable in the inner and outer loops.
29817
29818 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
29819
29820         * metadata.h (mono_metadata_make_token): Put parentheses around macro
29821         argument.
29822
29823         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
29824         
29825         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
29826         icalls. Instead, do everything in managed code. This is needed since
29827         it is hard to restore the original domain etc. in unmanaged code in the
29828         presence of undeniable exceptions.
29829
29830         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
29831         New icalls to push and pop appdomain refs.
29832
29833 2003-10-31  Martin Baulig  <martin@ximian.com>
29834
29835         * class.c (inflate_generic_type): Renamed to
29836         mono_class_inflate_generic_type() and made it public.
29837
29838         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
29839         New interncall.
29840
29841         * loader.c (mono_field_from_memberref): Also set the retklass for
29842         typespecs.
29843
29844         * fielder.c (mono_image_get_inflated_field_token): New static
29845         method; creates a metadata token for an inflated field.
29846         (mono_image_create_token, fixup_method): Added support for
29847         "MonoInflatedField".
29848         (fieldbuilder_to_mono_class_field): New static function.
29849         (mono_reflection_inflate_field): New public function.
29850
29851         * reflection.h
29852         (MonoReflectionGenericInst): Added `MonoArray *fields'.
29853         (MonoReflectionInflatedField): New typedef.     
29854
29855 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
29856
29857         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
29858         for Solaris and other platforms without s6_addr16
29859
29860 2003-10-30  Martin Baulig  <martin@ximian.com>
29861
29862         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
29863         argument instead of two.
29864         (mono_class_inflate_generic_signature): Likewise.
29865         (inflate_generic_header): Likewise.
29866         (mono_class_inflate_generic_method): Likewise.  In addition, if
29867         `ginst->klass' is set, it becomes the new `method->klass'.
29868
29869         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
29870         field.
29871
29872         * reflection.c (encode_generic_method_sig): Write a 0xa as the
29873         first byte. [FIXME]
29874         (method_encode_methodspec): If we have generic parameters, create
29875         a MethodSpec instead of a MethodRef.
29876         (fixup_method): Added support for "MonoInflatedMethod" and
29877         "MonoInflatedCtor".
29878         (mono_image_create_token): Added support for "MonoInflatedMethod"
29879         and "MonoInflatedCtor".
29880         (inflated_method_get_object): New static function; returns a
29881         managed "System.Reflection.MonoInflatedMethod" object.
29882         (mono_reflection_bind_generic_method_parameters): Return a
29883         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
29884         (mono_reflection_inflate_method_or_ctor): Likewise.
29885         (mono_image_get_generic_method_param_info): Initialize unused
29886         fields to zero.
29887         (mono_image_get_generic_param_info): Likewise.
29888
29889         * reflection.h (MonoReflectionInflatedMethod): New public
29890         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
29891         "S.R.MonoInflatedCtor" classes.
29892
29893         * loader.c (method_from_memberref): If we're a TypeSpec and it
29894         resolves to a generic instance, inflate the method.
29895
29896 2003-10-28  Dick Porter  <dick@ximian.com>
29897
29898         * object.c (mono_runtime_run_main): Convert command-line arguments
29899         into utf8, falling back to the user's locale encoding to do so.
29900
29901 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
29902
29903         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
29904         at this time.
29905
29906         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
29907
29908         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
29909         up icalls at method definition time. Partially fixes #33569.
29910
29911 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
29912
29913         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
29914         marshalling of arrays. Fixes #50116.
29915
29916         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
29917
29918         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
29919         points to a vtable in the dying appdomain.
29920
29921         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
29922         listeners into unmanaged code inside the lock.
29923
29924         * object.c (mono_class_vtable): Turn off typed allocation in non-root
29925         domains and add some comments.
29926
29927 2003-10-25  Martin Baulig  <martin@ximian.com>
29928
29929         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
29930
29931         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
29932
29933         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
29934         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
29935         currently parsing.  Create the generic class and store it in
29936         `generic_inst->klass' before parsing the type arguments.  This is
29937         required to support "recursive" definitions; see mcs/tests/gen-23.cs
29938         for an example.
29939         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
29940         to support recursive typespec entries.
29941
29942         * class.c (mono_class_setup_parent): If our parent is a generic
29943         instance, we may get called before it has its name set.
29944         (mono_class_from_generic): Splitted into
29945         mono_class_create_from_generic() and mono_class_initialize_generic().
29946
29947 2003-10-25  Martin Baulig  <martin@ximian.com>
29948
29949         * icall.c (ves_icall_Type_BindGenericParameters): Return a
29950         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
29951         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
29952         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
29953
29954         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
29955         (create_typespec): Likewise.
29956         (mono_reflection_bind_generic_parameters): Return a
29957         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
29958         (mono_reflection_inflate_method_or_ctor): New public function.
29959
29960         * reflection.h (MonoReflectionGenericInst): New typedef.        
29961
29962 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
29963
29964         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
29965         inside the domain lock. Fixes #49993.
29966         
29967         * object.c (mono_class_vtable): When typed allocation is used, 
29968         allocate vtables in the GC heap instead of in the mempool, since the
29969         vtables contain GC descriptors which are used by the collector even
29970         after the domain owning the mempool is unloaded.
29971
29972         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
29973
29974         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
29975         reflect what it does. Also invalidate mempools instead of freeing
29976         them if a define is set.
29977
29978         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
29979         of the appdomain.
29980         
29981         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
29982         hold the finalizable objects in this domain.
29983
29984         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
29985         appdomain.
29986
29987         * appdomain.c (mono_domain_set): New function to set the current
29988         appdomain, but only if it is not being unloaded.
29989
29990         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
29991         appdomain which is being unloaded.
29992         
29993         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
29994         unloading of the root appdomain.
29995
29996         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
29997         icall to execute a method in another appdomain. Intended as a 
29998         replacement for InternalSetDomain, which can confuse the code 
29999         generation in the JIT.
30000
30001         * appdomain.c (mono_domain_is_unloading): New function to determine
30002         whenever an appdomain is unloading.
30003
30004         * appdomain.c (mono_domain_unload): New function to correctly unload
30005         an appdomain.
30006
30007         * assembly.c (mono_assembly_load_references): Check that an assembly
30008         does not references itself.
30009
30010         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
30011         domain manually, it asks the finalizer thread to do it, then waits for
30012         the result. Also added a timeout.
30013
30014         * icall.c: Register the new icalls.
30015
30016         * threads.h threads.c: Export the mono_gc_stop_world and 
30017         mono_gc_start_world functions.
30018         
30019         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
30020         function to fill out the mempool with 0x2a.
30021
30022 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
30023
30024         * reflection.h (MonoReflectionMethodAux): New structure to store
30025         information which is rarely used, thus is not in the MonoMethod
30026         structure.
30027
30028         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
30029         store the aux info.
30030
30031         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
30032         and marshalling info into the aux structure.
30033
30034         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
30035         from the aux structure.
30036
30037         * loader.c (mono_method_get_param_names): Retrieve the param names from
30038         the aux structure.
30039         
30040 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
30041
30042         * exception.h exception.c: Add AppDomainUnloadedException && fix 
30043         warning.
30044
30045 2003-10-21  Dick Porter  <dick@ximian.com>
30046
30047         * socket-io.c
30048         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
30049         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
30050
30051 2003-10-21  Martin Baulig  <martin@ximian.com>
30052
30053         * reflection.c (mono_reflection_bind_generic_parameters):
30054         `klass->parent' is NULL for interfaces.
30055
30056 2003-10-21  Martin Baulig  <martin@ximian.com>
30057
30058         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30059
30060 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
30061
30062         * exception.c (mono_exception_from_name_msg): New helper function for
30063         creating exceptions and initializing their message field.
30064
30065         * exception.c: Simplify functions using the new helper.
30066
30067         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
30068         New function.
30069
30070         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
30071         mono_raise_exception, since otherwise gcc doesn't generate the function
30072         epilog for raise_exception, confusing the stack unwinding in the JIT.
30073         Fixes #45043.
30074
30075         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30076         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30077         Fixes #49499.
30078
30079 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30080
30081         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30082         utf8.
30083
30084 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
30085
30086         * icall.c: Removed GetUninitializedObject method because
30087           AllocateUninitializedClassInstance does the same.
30088
30089 2003-10-18  Martin Baulig  <martin@ximian.com>
30090
30091         * class.c (inflate_generic_signature): Renamed to
30092         mono_class_inflate_generic_signature() and made it public.
30093         (my_mono_class_from_generic_parameter): New static function; if we
30094         don't already have the generic parameter's MonoClass, create a
30095         very simple one which is just used internally in the runtime and
30096         not passed back to managed code.
30097
30098         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30099
30100         * metadata.h (MonoMethodSignature): Moved the
30101         `MonoGenericParam *gen_params' to the MonoMethodHeader.
30102         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30103
30104         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30105         ves_icall_MonoMethod_GetGenericArguments(); this is now an
30106         interncall on the MonoMethod class, not on MethodInfo.
30107         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30108         calling mono_reflection_bind_generic_method_parameters() directly.
30109
30110         * loader.c (mono_method_get_signature): If this is a MethodSpec;
30111         return the already computed `method->signature'.
30112         (method_from_methodspec): New static function to load a method
30113         from a MethodSpec entry.
30114         (mono_get_method_from_token): Call the new method_from_methodspec()
30115         for MethodSpec tokens.  
30116         (mono_get_method_from_token): If we're a generic method, load the
30117         type parameters.
30118
30119         * reflection.c (mono_image_get_memberref_token): Allow
30120         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30121         table.
30122         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30123         (mono_image_create_token): First check whether it's a generic
30124         method (so we'd need to create a MethodSpec), then do the other
30125         two alternatives.
30126         (mono_reflection_bind_generic_method_parameters): Return a
30127         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30128         called directly from the interncall.
30129
30130 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30131
30132         * reflection.c (load_public_key): Move loading of the public key
30133         into managed code.
30134
30135         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30136
30137         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30138         fields.
30139
30140         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30141         culture, hash_alg and public_key. Fixes #49555.
30142
30143 2003-10-17  Martin Baulig  <martin@ximian.com>
30144
30145         * class.h (MonoGenericInst): Moved this declaration here and added
30146         `MonoMethod *generic_method'.
30147
30148         * icall.c
30149         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30150         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30151
30152         * metadata.c (mono_metadata_type_equal): Two types of
30153         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30154         index; ie. don't compare the address of the `MonoGenericParam'
30155         structure.
30156         (mono_metadata_load_generic_params): Removed the `MonoMethod
30157         *method' argument.
30158
30159         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30160         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30161
30162         * reflection.c (method_encode_signature): Encode the number of
30163         generic parameters.
30164         (encode_generic_method_sig): New static function.
30165         (method_encode_methodspec): New static function; creates an entry
30166         in the MethodSpec table for a generic method.
30167         (mono_image_get_methodspec_token): New static function.
30168         (mono_image_create_token): Call mono_image_get_methodspec_token()
30169         for generic methods.
30170         (mono_reflection_bind_generic_method_parameters): New public
30171         function.  Instantiates a generic method.
30172
30173 2003-10-16  Martin Baulig  <martin@ximian.com>
30174
30175         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30176         *gen_params' here from MonoMethodHeader.
30177
30178         * metadata.c (mono_metadata_parse_method_signature): If we have
30179         generic parameters, initialize `method->gen_params' and then set
30180         the correct `type->data.generic_param' in all the parameters.
30181
30182 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30183
30184         * threads.c (mono_threads_get_default_stacksize): New function to 
30185         return the default stacksize.
30186
30187         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30188         termination of the finalizer thread, since the previous method had
30189         race conditions. Fixes #49628.
30190
30191         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30192         as for the other managed threads.
30193
30194 2003-10-16  Martin Baulig  <martin@ximian.com>
30195
30196         * class.c (inflate_generic_signature): Copy `generic_param_count'
30197         and `gen_params'.
30198
30199         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30200         New interncall.
30201
30202         * metadata.c (mono_metadata_parse_method_signature): Actually set
30203         the `method->generic_param_count' here.
30204         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30205
30206 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30207
30208         * object.h: Add a new field to TypedRef to simplify the implementation
30209         of the REFANY opcodes in the JIT.
30210
30211         * icall.c: Make use of the new field.
30212
30213         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30214         dynamically.
30215
30216 2003-10-15  Martin Baulig  <martin@ximian.com>
30217
30218         * class.c (mono_class_from_gen_param): Renamed to
30219         mono_class_from_generic_parameter() and moved most of the
30220         functionality from mono_reflection_define_generic_parameter()
30221         here; ie. we create a "real" class here.
30222         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30223         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30224         previously been called.
30225
30226         * class.h (MonoGenericParam): Moved the declaration of this struct
30227         here from metadata.h and added `MonoMethod *method'.
30228
30229         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30230         interncall.
30231
30232         * loader.c (mono_get_method_from_token): If we have any generic
30233         parameters, call mono_metadata_load_generic_params() to read them
30234         from the MONO_TABLE_GENERICPAR.
30235
30236         * metadata.c (mono_metadata_load_generic_params): Added
30237         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30238
30239         * metadata.h (MonoMethodSignature): Replaced
30240         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30241         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30242
30243         * reflection.c (mono_reflection_define_generic_parameter): Moved
30244         most of the functionality into the new
30245         mono_class_from_generic_parameter(); set the `method' field if
30246         we're a method parameter.       
30247
30248 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30249
30250         * marshal.c (emit_struct_conv): if native size is 0
30251         emit no code.
30252
30253 2003-10-14  Martin Baulig  <martin@ximian.com>
30254
30255         * icall.c: The generics API has changed in the spec since it was
30256         added to System.Type; these modifications make it match the spec
30257         again.
30258         (ves_icall_Type_GetGenericParameters): Renamed to
30259         `ves_icall_Type_GetGenericArguments'.
30260         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30261         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30262         `ves_icall_MonoType_get_HasGenericArguments'.
30263         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30264         `ves_icall_MonoType_get_IsGenericParameter'.
30265         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30266         this is no interncall anymore.
30267         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30268         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30269
30270 2003-10-14  Martin Baulig  <martin@ximian.com>
30271
30272         * reflection.c (mono_reflection_bind_generic_parameters): Also
30273         inflate generic methods if we're reading the class from IL.
30274
30275 2003-10-13  Martin Baulig  <martin@ximian.com>
30276
30277         * reflection.c (mono_reflection_define_generic_parameter): This
30278         method isn't called directly from the icall anymore; take a
30279         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30280         method generic parameters.
30281         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30282         (method_builder_encode_signature): Encode generic parameters.
30283         (mono_image_get_method_info): Write generic params to the
30284         MONO_TABLE_GENERICPARAM table.
30285
30286         * reflection.h (MonoReflectionMethodBuilder): Added
30287         `MonoArray *generic_params'.
30288
30289         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30290
30291         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30292         wrapper for mono_reflection_define_generic_parameter().
30293         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30294
30295 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30296
30297         * marshal.h: Add missing function to fix build.
30298
30299         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30300         the SetLastError pinvoke attribute.
30301
30302         * marshal.c (mono_marshal_set_last_error): New helper function called
30303         by the generated code.
30304         
30305         * marshal.c (mono_mb_emit_branch): New helper function.
30306
30307         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30308
30309         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30310         classes as parameters and return values of delegates. Fixes #29256. 
30311
30312 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30313
30314         * locales.c: use gint32 in non HAVE_ICU case
30315
30316 2003-10-11  Martin Baulig  <martin@ximian.com>
30317
30318         * mono-debug.c (mono_debug_add_method): Added a workaround for
30319         bug #48591.
30320
30321 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30322
30323         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30324         delegates passed to native code must use the STDCALL calling 
30325         convention. Fixes #35987.
30326
30327 2003-10-10  Martin Baulig  <martin@ximian.com>
30328
30329         * class.c (inflate_generic_type): If we're inflating for a generic
30330         type instance (and not for a generic method), return
30331         MONO_TYPE_MVAR unchanged.
30332
30333 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30334
30335         * string-icalls.c: Join ignores null strings in the source array.
30336         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30337         * threads.c: GetAvailableTheads is slightly more accurate.
30338
30339 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
30340
30341         * threads.h threads.c : add mono_threads_set_default_stacksize
30342         and pass default to CreateThread calls.
30343
30344 2003-10-09  Dick Porter  <dick@ximian.com>
30345
30346         * icall.c:
30347         * locales.h:
30348         * locales.c: Internal calls for constructing CultureInfo and
30349         related objects from libicu (if its available.)
30350
30351 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
30352
30353         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
30354
30355 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30356
30357         * threadpool.c: added an argument to async_invoke_thread that is the
30358         item to process, pass the MonoAsyncResult to the thread start function
30359         when creating a new thread. This way we don't need to acquire any lock
30360         when we're creating a new thread. Readded a semaphore for faster
30361         response times (instead of that Sleep i added).
30362
30363 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
30364
30365         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30366         get daylight change dates better on Windows, fix handling
30367         of platforms without tm_gmtoff.
30368
30369 2003-10-06  Martin Baulig  <martin@ximian.com>
30370
30371         * class.c (inflate_generic_method): Renamed to
30372         mono_class_inflate_generic_method() and made public.
30373         (mono_class_init): Don't inflate the generic methods here.
30374         (mono_class_from_generic): Added `gboolean inflate_methods'
30375         argument.  Inflate the methods here.
30376
30377         * loader.c (mono_method_get_param_names): Ignore instances of
30378         generic types for the moment.
30379
30380         * reflection.c (fixup_method): Added support for inflated methods.
30381         (mono_image_create_token): Use mono_image_get_methodref_token()
30382         for inflated methods.
30383         (mono_custom_attrs_from_param): Ignore instances of generic types
30384         for the moment.
30385         (mono_reflection_bind_generic_parameters): New public function.
30386         Moved all the functionality from
30387         ves_icall_Type_BindGenericParameters() here and added support for
30388         dynamic types.
30389         (mono_reflection_define_generic_parameter): Initialize
30390         `klass->methods' here.
30391
30392         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
30393         functionality into mono_reflection_define_generic_parameter().
30394         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
30395         TypeBuilder, return that TypeBuilder.
30396
30397 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30398
30399         * appdomain.c: removed mono_delegate_semaphore.
30400
30401         * threadpool.c:
30402         (mono_thread_pool_add): moved hash table creation inside and the thread 
30403         creation outside of the critical region.
30404         (mono_thread_pool_finish): removed obsolete code.
30405         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
30406         continue or exit the thread depending on the queue.
30407
30408 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
30409
30410         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
30411         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
30412         handle more bool marshalling options
30413
30414 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
30415
30416         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
30417         arrays of structs. Also add a more descriptive error message when
30418         a structure member is marshalled as LPArray.
30419
30420 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
30421
30422         * marshal.c (mono_marshal_get_native_wrapper): Add support for
30423         marshalling arrays of complex types. Fixes #29098. Also remove an
30424         usused and incomplete function.
30425
30426 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30427
30428         * gc.c: report heap_size - free_bytes as total memory allocated
30429         (bug#49362).
30430
30431 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
30432
30433         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
30434         fix timezone handling problems on Windows.
30435         
30436         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
30437         asserts when the year is outside the range handled by ms the functions.
30438
30439         * class.c (setup_interface_offsets): If the class is an interface,
30440         fill out its interface_offsets slot.
30441
30442 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30443
30444         * threadpool.c: mark threadpool threads as background.
30445
30446 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
30447
30448         * decimal.c - define DECINLINE to nothing if not using GCC
30449
30450 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
30451
30452         * assembly.c: More refcount fixes.
30453
30454 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30455
30456         * string-icalls.c: if we're not trimming, return the same string.
30457         When not splitting, don't create a new string.
30458
30459 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30460
30461         * image.c:
30462         (mono_image_open): increment the ref_count inside the critical section.
30463
30464 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
30465
30466         * image.c (mono_image_open): Fix reference counting bug.
30467
30468 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
30469
30470         * marshal.c (mono_marshal_type_size) struct alignment changed for 
30471         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
30472         64bits. Avoid leak in mono_marshal_get_native_wrapper when
30473         mono_lookup_pinvoke_call throws.        
30474
30475 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
30476
30477         * reflection.c (mono_reflection_parse_type): Fix #49114.
30478
30479         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
30480         temporary workaround for cygwin header problem.
30481
30482         * object.c (mono_object_isinst): Synchronize this with the code
30483         generated by the JIT for casts.
30484
30485 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
30486
30487         * reflection.c (encode_type): Fix #38332.
30488
30489 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
30490
30491         * marshal.c (mono_marshal_method_from_wrapper): New function to return
30492         the original method from the wrapper method.
30493
30494 2003-09-25  Martin Baulig  <martin@ximian.com>
30495
30496         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
30497         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
30498         (ves_icall_Type_get_IsGenericInstance): New interncall.
30499
30500 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
30501
30502         * object.c: fix cast warning in big endian code.
30503
30504 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
30505
30506         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
30507         
30508 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30509
30510         * assembly.c: don't call check_env from mono_assembly_load. It's
30511         already done once in mono_assemblies_init and may cause headaches when
30512         multiple threads are loading assemblies.
30513
30514 2003-09-19  Martin Baulig  <martin@ximian.com>
30515
30516         * reflection.c (mono_reflection_define_generic_parameter): Don't
30517         allocate `klass->methods', set `klass->flags' to
30518         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
30519
30520 2003-09-18  Martin Baulig  <martin@ximian.com>
30521
30522         * class.c (mono_class_init): Don't create `class->methods' if it's
30523         already initialized.
30524
30525         * metadata.c (mono_metadata_load_generic_params): Make this
30526         actually work.
30527
30528         * reflection.c (mono_reflection_define_generic_parameter): Set
30529         parent class and interfaces from the constraints.
30530
30531         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
30532         to keep this struct in sync with the declaration in TypeBuilder.cs.
30533
30534 2003-09-17  Martin Baulig  <martin@ximian.com>
30535
30536         * metadata.h (MonoType): Replaced the data's `int type_param'
30537         field with `MonoGenericParam *generic_param'.
30538         (MonoGenericParam): Added `MonoClass *klass'.
30539
30540         * class.c (mono_class_from_gen_param): Removed the
30541         `MonoImage *image' and `int type_num' arguments.
30542
30543         * metadata.c (mono_metadata_parse_generic_param): New static
30544         method; creates a MonoGenericParam which just contains the index.
30545         (do_mono_metadata_parse_type): Call
30546         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
30547         MONO_TYPE_MVAR.
30548
30549         * reflection.c (mono_image_typedef_or_ref): Generic type
30550         parameters may be in the same assembly, but never use a typedef
30551         for them.
30552         (mono_reflection_define_generic_parameter): We're now creating a
30553         "real" class for the type parameter; it's now safe to call
30554         mono_class_from_mono_type() on the class'es type, it'll do the
30555         right thing.
30556
30557 2003-09-16  Martin Baulig  <martin@ximian.com>
30558
30559         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
30560         `symfile->range_entry_size' and `symfile->class_entry_size' here;
30561         the `symfile' data structure must be fully initialized before it
30562         gets added to the table.
30563
30564 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
30565
30566         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
30567
30568         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
30569         class init trampolines.
30570
30571 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
30572
30573         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
30574         to the built-in profiler to turn off time and allocation profiling
30575         respectively.
30576
30577 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
30578
30579         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
30580         g_direct_equal.
30581
30582         * debug-helpers.c (mono_method_full_name): Print the wrapper type
30583         in human readable form.
30584
30585 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
30586
30587         * reflection.c icall.c: Fixed warnings.
30588
30589         * image.c (load_class_names): Use a temporary hash table to hold the
30590         namespaces in order to avoid doing many string comparisons.
30591
30592         * image.h: Fix typo.
30593
30594         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
30595         Pass NULL instead of g_direct_equal to the GHashTable constructor 
30596         since the NULL case is short-circuited inside g_hash_table_lookup, 
30597         leading to better performance.  
30598
30599         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
30600         obtain the first custom attribute for a given index. Depends on the
30601         CustomAttribute table being sorted by the parent field.
30602
30603         * reflection.c (mono_custom_attrs_from_index): Use the new function 
30604         for better performance.
30605
30606 2003-09-07  Martin Baulig  <martin@ximian.com>
30607
30608         * class.c (mono_class_init): If we're a generic instance, inflate
30609         all our methods instead of loading them from the image.
30610         (mono_class_from_generic): Set `class->methods = gklass->methods'.
30611
30612 2003-09-07  Martin Baulig  <martin@ximian.com>
30613
30614         * mono-debug-debugger.c: Added support for constructors.
30615
30616 2003-09-06  Martin Baulig  <martin@ximian.com>
30617
30618         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
30619         New interncall.
30620
30621         * reflection.c (mono_reflection_setup_generic_class): Call
30622         ensure_runtime_vtable() to create the vtable.
30623
30624 2003-09-05  Martin Baulig  <martin@ximian.com>
30625
30626         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
30627         MONO_TYPE_MVAR.
30628
30629 2003-09-04  Martin Baulig  <martin@ximian.com>
30630
30631         * reflection.c (mono_reflection_define_generic_parameter): Generic
30632         parameters start with zero.
30633
30634 2003-09-04  Martin Baulig  <martin@ximian.com>
30635
30636         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30637
30638         * reflection.h (MonoReflectionGenericParam): New typedef.
30639         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
30640         the generic parameters from the managed TypeBuilder.
30641
30642         * reflection.c (mono_reflection_define_generic_parameter): New function.
30643         (mono_reflection_create_runtime_class): Encode generic parameters.
30644         (mono_reflection_setup_generic_class): New function; this is
30645         called after adding adding all generic params to the TypeBuilder.
30646         (encode_type): Added MONO_TYPE_VAR.
30647
30648 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
30649
30650         * class.h class.c (mono_class_needs_cctor_run): Moved this method
30651         here from the JIT.
30652
30653         * assembly.h assembly.c: Moved the AOT loading code into an assembly
30654         load hook.
30655
30656 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
30657
30658         * reflection.h reflection.c class.h class.c: Delete duplicate 
30659         definition of mono_type_get_name () from reflection.c and export the
30660         one in class.c.
30661
30662         * class.c: Class loading fixes from Bernie Solomon 
30663         (bernard@ugsolutions.com).
30664
30665         * reflection.c: Endianness fixes from Bernie Solomon 
30666         (bernard@ugsolutions.com).
30667         
30668 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
30669
30670         * assembly.h assembly.c: Define a file format version for AOT
30671         libraries.
30672         
30673         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
30674
30675         * appdomain.h (MonoJitInfo): New field to determine whenever the
30676         code is domain neutral.
30677         
30678 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
30679
30680         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
30681
30682 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
30683
30684         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
30685         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
30686         Avoid caching the result since strings must be domain specific. Fixes
30687         #48050.
30688
30689 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
30690
30691         * marshal.c (mono_marshal_init): Make this callable multiple times
30692         since it is hard to find a correct place to call it.
30693
30694         * object.c (mono_runtime_class_init): Execute static constructors in
30695         the correct appdomain.
30696
30697         * image.c (build_guid_table): Handle the case when multiple images have
30698         the same GUID.
30699
30700 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30701
30702         * icall.c: added a couple of icalls for System.Web.
30703
30704 2003-08-28  Martin Baulig  <martin@ximian.com>
30705
30706         * icall.c (ves_icall_Type_BindGenericParameters): Use
30707         `klass->generic_inst' instead of `&klass->byval_arg' in the
30708         mono_type_get_object() call.  The returned type must be
30709         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
30710
30711 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
30712
30713         * NOTES: New file.
30714
30715         * object.c (mono_class_proxy_vtable): Make it thread safe.
30716
30717         * pedump.c: Fix warning.
30718
30719         * object.c appdomain.h: Get rid of metadata_section. 
30720         It is no longer needed and it was causing deadlocks with domain->lock.
30721
30722         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
30723
30724 2003-08-26  Martin Baulig  <martin@ximian.com>
30725
30726         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
30727
30728 2003-08-26  Martin Baulig  <martin@ximian.com>
30729
30730         * pedump.c (main): Call mono_metadata_init(),
30731         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
30732         and mono_loader_init().
30733
30734 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
30735
30736         * loader.h: Add missing include to fix build.
30737
30738         * image.h: mono_image_load_references is no more.
30739
30740         * assembly.c: Reworked assembly loading to make it really thread safe.
30741         After these changes, the assembly returned by mono_assembly_open is
30742         fully initialized, i.e. all its references assemblies are loaded.
30743
30744         * assembly.c (mono_image_load_references): Renamed to 
30745         mono_assembly_load_references, and made private, since clients no
30746         longer need to call it.
30747
30748         * class.c: Removed calls to mono_assembly_load_references, since it was
30749         a source of deadlocks.
30750
30751         * loader.h loader.c class.h class.c: Protect data structures using a 
30752         new lock, the loader lock.
30753
30754         * class.c (mono_class_setup_vtable): Create temporary hash tables and
30755         GPtrArrays only when needed.
30756
30757         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
30758         into empty structures by mcs. Fixes pinvoke7.cs.
30759         
30760         * domain.c (mono_init): Call a new initialization function.
30761
30762         * appdomain.c (mono_runtime_init): Call the new initializer function
30763         of the marshal module.
30764
30765         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
30766         inserted into empty structures by mcs. Fixes pinvoke7.cs.
30767
30768         * marshal.h marshal.c: Added locks around the wrapper caches to make
30769         this module thread safe.
30770
30771         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
30772         this argument. Fixes pinvoke1.exe.
30773
30774 2003-08-25  Lluis Sanchez <lluis@ximian.com>
30775
30776         * object.h: Added call_type field to MonoMethodMessage and the corresponding
30777         enumeration of values. Removed fields to store remote call output values in
30778         MonoAsyncResult. Not needed any more.
30779         * object.c: Initialize call_type and async_result fields in mono_message_init.
30780         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
30781         dispatching the message.
30782         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
30783         async call to finish. To do it use a message with EndInvoke call type.
30784
30785 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
30786
30787         * loader.h loader.c (mono_method_hash_marhal_info): New function which
30788         determines whenever a method has marshalling info.
30789
30790 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30791
30792         * assembly.c: fix the build on windows.
30793
30794 2003-08-22 Lluis Sanchez <lluis@ximian.com>
30795
30796         * object.cs: Fixed bug #47785.
30797
30798 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
30799
30800         * string-icalls.c (StringReplace): If their are no occurances of
30801         the old string found return a reference to the supplied
30802         string. This saves some memory and matches MS behavoir.
30803         
30804 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30805
30806         * socket-io.c: fixed compilation for systems that define AF_INET6
30807         and don't define SOL_IP/SOL_IPV6.
30808
30809 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
30810
30811         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
30812         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
30813
30814         * rawbuffer.c rawbuffer.h: Make this module thread safe.
30815
30816         * domain.c: Make this module thread safe.
30817
30818         * domain.c (mono_init): Call new initialization function.
30819
30820         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
30821         reference types too. Fixes #38812.
30822
30823         * image.c (mono_image_init): Fixed warnings.
30824
30825         * class.c (mono_class_from_typeref): Handle assembly load failure
30826         correctly.
30827
30828         * appdomain.c (add_assemblies_to_domain): Handle the case when
30829         the references of an assembly are not yet loaded.
30830
30831         * metadata.c image.c assembly.c: Moved initialization of global
30832         variables to a separate function called at startup since lazy 
30833         initialization of these variables is not thread safe.
30834         
30835         * image.c assembly.c: Made this module thread safe by adding locks in 
30836         the appropriate places.
30837
30838         * domain.c (mono_init): Call the new initialization functions of the
30839         three modules.
30840
30841 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
30842
30843         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
30844           make a direct call. It is proxy's work to make the call asynchronous.
30845           mono_delegate_end_invoke(): If the targe is a proxy, just collect
30846           the return values.
30847         * object.cs: mono_method_call_message_new(): read AsyncResult and
30848           state object from parameters list, if this info is requested.
30849         * object.h: Added fields to store remote call output values in
30850           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
30851
30852 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30853
30854         * object.h: add needed fields to MonoThread.
30855         * threads.c, threads.h: allow registering a function to cleanup data
30856         allocated per thread by the JIT.
30857
30858 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30859
30860         * loader.h: portability fix by Bernie Solomon
30861         * <bernard@ugsolutions.com>.
30862
30863 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
30864
30865         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
30866         return a MonoArray. This simplifies the code and also ensures that
30867         the cache allways contains an object reference as a value.
30868
30869         * icall.c (ves_icall_get_parameter_info): Simplified using the new
30870         function.
30871
30872 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30873
30874         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
30875         fixes a problem with byte ordering when getting the address family for
30876         a socket.
30877
30878 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
30879
30880         * .cvsignore: Added monosn.
30881
30882         * reflection.h reflection.c loader.c: Added support for parameter
30883         marshalling to dynamically created types. Fixes #47295.
30884
30885 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
30886
30887         * rand.c: remove useless warnings.
30888
30889 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
30890
30891         * class.c: implemented ldtoken for methods and fieldrefs.
30892
30893 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30894
30895         * threadpool.c: when mono_async_invoke was called, no one took care of
30896         monitoring the queue. So if the method invoked took some time and we
30897         got new async invoke requests after 500 ms (the thread created waited
30898         that long in WaitForSingleObject), the new async invoke was not called
30899         until the previous one finished.
30900
30901         This is fixed now. Thanks to Totte for helping with it.
30902
30903 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30904
30905         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
30906
30907 2003-08-11  Martin Baulig  <martin@ximian.com>
30908
30909         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
30910
30911 2003-08-06  Martin Baulig  <martin@ximian.com>
30912
30913         * mono-debug-debugger.c: Added support for static fields,
30914         properties and methods.
30915
30916 2003-08-06  Martin Baulig  <martin@ximian.com>
30917
30918         * mono-debug-debugger.c: Don't store the MonoString's vtable to
30919         make this work for applications with multiple application domains.
30920
30921 2003-08-04  Martin Baulig  <martin@ximian.com>
30922
30923         * mono-debug-debugger.c: Completely reworked the type support; the
30924         most important thing is that we're now just using one single
30925         `MonoType' instance per type.
30926
30927 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
30928
30929         * mono-endian.h, mono-endian.c, icall.c: Added icall
30930         ves_icall_System_Double_AssertEndianity to assert double word endianity
30931         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
30932
30933 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30934
30935         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
30936         support, icalls and fixes.
30937
30938 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
30939
30940         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
30941         classes that are a punctuation character in .NET is not the same a
30942         g_unichar_ispunct.
30943
30944 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30945
30946         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
30947
30948 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
30949
30950         * icall.c: Add new MemCopy internalcall.
30951         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
30952         Simplified code; It is not necessary to handle all the cases here,
30953         as the C# code takes care of it.  Only handle the case of the name
30954         resource embedded into the assembly.
30955
30956         Changed signature to return the data pointer and the size of the
30957         data. 
30958
30959 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
30960
30961         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
30962         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
30963
30964 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
30965
30966         * socket-io.c: ignore EINTR error in select.
30967
30968 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
30969
30970         * class.h, class.c: removed unused subclasses field in MonoClass.
30971
30972 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
30973
30974         * icall.c: improve fix of get_base_definition(). If the parent class
30975           doesn't have the mehod, look at the parent of the parent.
30976         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
30977           to check if a parameter is an in or out parameter
30978           (PARAM_ATTRIBUTE_IN is not set by default).
30979           mono_method_return_message_restore(): Use mono_class_value_size to
30980           get the size of a value type. mono_type_stack_size (parameterType)
30981           does not return the correct value if parameterType is byRef.
30982           mono_load_remote_field(), mono_load_remote_field_new(),
30983           mono_store_remote_field(), mono_store_remote_field_new():
30984           raise exception if the remote call returns an exception.
30985
30986 2003-07-28  Martin Baulig  <martin@ximian.com>
30987
30988         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
30989         method.  This is a wrapper around mono_runtime_invoke() which
30990         boxes the instance object if neccessary.
30991
30992 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30993
30994         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
30995         metadata.h, row-indexes.h, verify.c: first cut of generics support.
30996
30997 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
30998
30999         * icall.c: disable mcs bug workaround.
31000
31001 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
31002
31003         * object.c (mono_runtime_class_init): Take the metadata_section
31004         mutex before obtaining the domain mutex.
31005
31006         * appdomain.h: Added definition of metadata_section mutex here. 
31007
31008         * object.c: define metadata_mutex here.
31009
31010 2003-07-24  Ravi Pratap  <ravi@ximian.com>
31011
31012         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
31013         fixed.
31014
31015 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
31016
31017         * reflection.c: Fix bug #46669
31018
31019 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31020
31021         * exception.c:
31022         * exception.h:
31023         * icall.c:
31024         * object.h: fill in the type name for TypeLoadException.
31025
31026 2003-07-23  Ravi Pratap  <ravi@ximian.com>
31027
31028         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
31029         relationship between TypeBuilders while compiling corlib) and bug
31030         45993 (Array types returned from the runtime while compiling
31031         corlib were from the loaded corlib).
31032
31033 2003-07-22  Martin Baulig  <martin@ximian.com>
31034
31035         * mono-debug-debugger.c: Reworked the type support a bit more;
31036         distinguish between types and classes.
31037
31038 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
31039
31040         * icall.c: add IsArrayImpl icall.
31041
31042 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
31043
31044         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
31045         initializing real_size only once. Also fix bug #46602.
31046
31047 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
31048
31049         * object.c: Renamed mono_metadata_section to metadata_section.
31050
31051 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
31052
31053         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
31054           empty array if the type is an array. Fixed.
31055           ves_icall_MonoMethod_get_base_definition: if the base method
31056           is abstract, get the MethodInfo from the list of methods of
31057           the class.
31058         * reflection.c: ParameterInfo.PositionImpl should be zero-based
31059           and it was 1-based. Fixed in mono_param_get_objects.
31060
31061 2003-07-20  Martin Baulig  <martin@ximian.com>
31062
31063         * mono-debug.h: Set version number to 31.
31064         (mono_debug_init): Added `MonoDomain *' argument.
31065
31066         * mono-debug-debugger.c: Reworked the type support; explicitly
31067         tell the debugger about builtin types; pass the `klass' address to
31068         the debugger.
31069
31070 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
31071
31072         * image.c: Allow new metadata tables to be loaded without a
31073         warning. Also update the warning message to give the new constant value.
31074                 
31075 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31076
31077         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31078         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
31079         array type representation changes.
31080
31081 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31082
31083         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31084         on Environment.Exit () call.
31085
31086 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31087
31088         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31089         requires a matching corlib.
31090
31091 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31092
31093         * Changelog: My editor decided to add a CR to each line. Sorry about that.
31094           Committed again without the CRs.
31095         
31096 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31097
31098         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31099           getting it from the "this" socket instance. Did not work
31100           if the socket is a subclass of Socket.
31101           Also fixed bug #35371.
31102
31103 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31104
31105         * metadata.c: fixed size for TypedByRef.
31106         * loader.c: when searching for a method, consider the vararg amrker.
31107         * unicode.c, decimal.c: constify some arrays.
31108
31109 2003-07-15  Dick Porter  <dick@ximian.com>
31110
31111         * socket-io.c: Fixed compilation for gcc < 3.2.
31112
31113         Fixed compilation for machines that don't have AF_INET6 (thanks to
31114         Bernie Solomon <bernard@ugsolutions.com> for that part.)
31115
31116         Fixed compile warnings.
31117         
31118         Fixed formatting and line endings.
31119
31120 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31121
31122         * socket-io.h:
31123         * socket-io.c: Added IPv6 support.
31124
31125 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31126
31127         * class.c (mono_class_is_assignable_from): New function to implement
31128         the is_assignable_from logic. Used by mono_object_isinst, 
31129         Type::IsAssignableFrom () and the interpreter.
31130
31131         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31132         Object, even interfaces.
31133         
31134         * object.c (mono_object_isinst): Implement in terms of 
31135         is_assignable_from.
31136
31137         * icall.c (ves_icall_type_is_assignable_from): New icall.
31138
31139 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31140
31141         * domain.c (foreach_domain): fix compiler warning.
31142
31143 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31144
31145         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31146         not available on all plattforms
31147
31148 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31149
31150         * image.h image.c: Store the metadata version string in MonoImage.
31151         * icall.c: New icall to retrieve the image version.
31152         * reflection.c (create_dynamic_image): Fill in the image version field
31153         * reflection.c (build_compressed_metadata): Use the image version
31154         from the image structure.
31155
31156 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31157
31158         * appdomain.c: modified comment.
31159         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31160         That will be its last iteration when mono_gc_cleanup is called from
31161         mono_runtime_cleanup and before the domain is unloaded.
31162
31163         Fixes bug #45962.
31164
31165 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31166
31167         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31168         attributes.
31169
31170 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31171
31172         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31173         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31174         Bernie Solomon <bernard@ugsolutions.com>.
31175
31176 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31177
31178         * object.c, object.h: provide mono_object_new_fast() for faster
31179         allocation in some special cases.
31180
31181 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31182
31183         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31184         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31185
31186 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31187
31188         * threadpool.c: fix leaks.
31189
31190 2003-07-01  Dick Porter  <dick@ximian.com>
31191
31192         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31193         using MonoGHashTables.  Fixes threadpool bug posted to list.
31194
31195 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31196
31197         * image.h, image.c: added support to load an assembly from a byte array.
31198         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31199         assembly bundle support.
31200
31201 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31202
31203         * threadpool.c (mono_thread_pool_add): keep a reference to the
31204         AsyncResult to prevent GC
31205
31206 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31207
31208         * class.c: leak fix.
31209
31210 2003-06-25  Dick Porter  <dick@ximian.com>
31211
31212         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31213         for the async object, the WaitHandle object will close the handle.
31214         Fixes bug 45321.
31215
31216 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31217
31218         * class.c: in mono_array_class_get (), lookup from the hash with the
31219         same type we insert: this works around a bug in
31220         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31221         lluis. The real fix will have to wait for after the release.
31222
31223 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31224
31225         * icall.c: fix memory leak when getting type members.
31226
31227 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31228
31229         * reflection.c: added more pubtoken special cases.
31230
31231 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31232
31233         * class.c: handle field offset correctly when class size
31234         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31235
31236 2003-06-20  Martin Baulig  <martin@ximian.com>
31237
31238         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31239         *image' field.
31240
31241 2003-06-20  Martin Baulig  <martin@ximian.com>
31242
31243         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31244
31245 2003-06-20  Martin Baulig  <martin@ximian.com>
31246
31247         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31248         just distinguish between variables in registers and variables at
31249         an offset relative to a register.
31250
31251 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31252
31253         * icall.c: #ifdef out latest changes until mcs is fixed.
31254
31255 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31256
31257         * icall.c: return members in metadata order.
31258
31259 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31260
31261         * icall.c: avoid infinite loop in GetTimeZoneData.
31262
31263 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31264
31265         * icall.c: added Marshal.Prelink/All icalls.
31266
31267 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31268
31269         * object.c, object.h: fix warnings and do some overflow checking
31270         when creating arrays.
31271
31272 2003-06-17  Dick Porter  <dick@ximian.com>
31273
31274         * file-io.h:
31275         * file-io.c: File attributes need to be tweaked slightly when
31276         passed from the managed to the w32 world.
31277
31278 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31279         * profiler.h profiler-private.h profiler.c: Rework last patch
31280         based on suggestion by Paolo.
31281         
31282 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31283
31284         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31285         instruction level coverage data collection.
31286         * profiler.h profiler.c (: Added new callback function which can be
31287         used by the profiler to limit which functions should have coverage
31288         instrumentation.
31289         * profiler.c (mono_profiler_load): Call g_module_build_path to
31290         generate the file name of the profiler library.
31291
31292 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31293
31294         * profiler.c, profiler.h, profiler-private.h: added basic block 
31295         coverage profiling API.
31296
31297 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31298
31299         * reflection.c (mono_reflection_create_runtime_class): Add support
31300         for events in dynamically generated code.
31301
31302         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31303         not allocated.
31304
31305 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31306
31307         * icall.c: when getting timezone info, return reasonable values if we
31308         can't get the actual data.
31309
31310 2003-06-14  Dick Porter  <dick@ximian.com>
31311
31312         * threads.c (start_wrapper): Remove the reference to the thread
31313         object in the TLS data, so the thread object can be finalized.
31314         This won't be reached if the thread threw an uncaught exception,
31315         so those thread handles will stay referenced :-( (This is due to
31316         missing support for scanning thread-specific data in the Boehm GC
31317         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31318
31319 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31320
31321         * reflection.c: ensure streams and tables are first allocated with
31322         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31323
31324 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31325
31326         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31327
31328 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31329
31330         * reflection.c (mono_reflection_create_runtime_class): Add support for
31331         properties to dynamically created classes.
31332         * reflection.c: Fix a few places where non-MonoObjects were inserted
31333         into the tokens hashtable.
31334
31335 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31336
31337         * object.c: some support to handle out of memory exceptions.
31338
31339 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
31340
31341         * marshal.c (mono_marshal_get_native_wrapper): support reference
31342         return types
31343
31344 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31345
31346         * object.h, object.c: more portability stuff from Bernie Solomon.
31347         Unexport mono_object_allocate(). Added mono_object_unbox ().
31348         Set exitcode when an unhandled exception is thrown.
31349
31350 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
31351
31352         * marshal.c (mono_marshal_get_native_wrapper): use custom
31353         marshaler for return types.
31354
31355 2003-06-10  Dick Porter  <dick@ximian.com>
31356
31357         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
31358         ip_mreq is available
31359
31360 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
31361
31362         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
31363         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
31364         by Bernie Solomon <bernard@ugsolutions.com>.
31365
31366 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
31367
31368         * gc.c (mono_gc_init): Avoid error message on shutdown when
31369         GC_DONT_GC=1 is used.
31370
31371         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
31372         New icall to return the GUID of a module.
31373
31374 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31375
31376         * class.c: ensure instance size always includes the parent's size
31377         even whem class size is set explicitly (fixes bug#44294).
31378
31379 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31380
31381         * profiler.h, profiler.c: made the simple profiler thread-safe,
31382         get more accurate timing info. Allow the loading of an
31383         externally-developed profiler module.
31384
31385 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
31386
31387         * marshal.c (mono_marshal_get_native_wrapper): improved
31388         class/byref arguments.
31389         (mono_marshal_get_native_wrapper): better string marshaling support.
31390
31391 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
31392
31393         * class.c: ensure .pack and .size are handled correctly and
31394         simplified layout of static fields.
31395
31396 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
31397
31398         * appdomain.c
31399         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
31400
31401         * loader.c (mono_lookup_pinvoke_call): look for modules in the
31402         current directory (fix bug 44008)
31403
31404 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
31405
31406         * marshal.c (mono_marshal_get_native_wrapper): started support for
31407         custom marshalers.
31408         (mono_delegate_to_ftnptr): consider marshalling specifications
31409
31410 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
31411
31412         * reflection.c, reflection.h: emit custom marshal info.
31413
31414 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31415
31416         * object.c: free the GError.
31417         * icall.c: added CloseEvent_internal.
31418         * threads.[ch]:
31419         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
31420         call.
31421
31422 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
31423
31424         * loader.c (mono_method_get_signature): Add support for dynamic
31425         assemblies.
31426
31427 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
31428
31429         * reflection.c: fixed bug #43905.
31430
31431 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31432
31433         * class.c, domain.c, icall.c, metadata.h, object.h: support for
31434         handling TypedReference and ArgIterator.
31435         * loader.c, loader.h: added function to get signature at call site.
31436
31437 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31438
31439         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
31440         data readonly. Buglets and warning fixes. Some MethodSpec support.
31441
31442 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31443
31444         * class.h, class.c, object.c: remove relative numbering support.
31445
31446 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
31447
31448         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
31449         free the string, until we get a chance to fix Gtk#
31450
31451 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31452
31453         * marshal.c: revert last patch.
31454
31455 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
31456
31457         * icall.c: updates for new mono_class_vtable() not calling
31458         the type constructor anymore.
31459
31460 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31461
31462         * object.h, object.c: separate vtable creation from type
31463         initialization. Make running the .cctor thread safe.
31464
31465 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
31466
31467         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
31468
31469 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
31470
31471         * loader.c (mono_get_method): consider calling convention
31472
31473 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
31474
31475         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
31476         to return the invisible global type for a module.
31477
31478         * reflection.c (mono_image_build_metadata): Emit global fields too.
31479
31480 2003-05-20  Peter Williams  <peterw@ximian.com>
31481
31482         * loader.c (mono_lookup_internal_call): Add a few newlines.
31483
31484 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
31485
31486         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
31487         literal strings.
31488
31489         * appdomain.c (set_domain_search_path): Recalculate search path when
31490         AppDomainSetup.PrivateBinPath changes.
31491
31492         * object.c (mono_class_compute_gc_descriptor): It turns out some
31493         parts of the class libs (like System.Thread) holds pointers to
31494         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
31495         to treat native int a pointer type here.
31496         
31497 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
31498
31499         * appdomain.h, domain.c: add hashtable for jump target resolution.
31500
31501 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
31502
31503         * reflection.h reflection.c icall.c: Added new icalls 
31504         GetManifestResourceInfoInternal, GetModulesInternal and support
31505         infrastructure.
31506
31507 2003-05-16  Dick Porter  <dick@ximian.com>
31508
31509         * icall.c:
31510         * file-io.h:
31511         * file-io.c: Implement System.IO.MonoIO::GetTempPath
31512
31513 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
31514
31515         * object.c: mono_store_remote_field: little fix to previous patch.
31516
31517 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31518
31519         * class.c: add constructors to array classes.
31520         * icall.c: special case array construction for InternalInvoke (),
31521
31522 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
31523
31524         * class.h class.c reflection.c object.c: Added support for field
31525         defaults in dynamically generated classes.
31526
31527 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
31528
31529         * reflection.c: properly encode charset for ddlimport.
31530
31531 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
31532
31533         * threads.c: allow compiling without GC.
31534
31535 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31536
31537         * appdomain.h, object.c, object.h, threads.c, threads.h: added
31538         handling of thread static data.
31539
31540 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31541
31542         * reflection.h, reflection.c: added mono_custom_attrs_free ().
31543
31544 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
31545
31546         * class.c (mono_array_class_get): always set the serializable flags
31547         (mono_array_class_get): always set the SEALED attribute for array types
31548
31549 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
31550
31551         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
31552         attributes (fix for bug 42021).
31553
31554 2003-05-12  Dick Porter  <dick@ximian.com>
31555
31556         * gc.c: Don't run finalizers when the finalizer thread is
31557         finishing up, because the default domain has already been
31558         destroyed.
31559
31560 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
31561
31562         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
31563         value is null, we should throw an exception.   This is slightly
31564         different than the other conventions used for the constructor.
31565
31566 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31567
31568         * socket-io.c: fixed windows build.
31569
31570 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31571
31572         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
31573
31574 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
31575
31576         * object.c (mono_string_new_wrapper): Compatibility fix for MS
31577         compilers.
31578
31579 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
31580
31581         * class.c (mono_class_layout_fields): Add experimental GC aware
31582         auto layout facility. Requires class library changes to work correctly.
31583
31584         (mono_class_setup_vtable): Avoid overriding explicit interface
31585         method implementations. Fixes iface3.exe test.
31586
31587         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
31588         object reference.
31589         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
31590         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
31591
31592         * metadata.h: Add new type classification macro which determines
31593         whenever the type holds an object reference.
31594
31595 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
31596
31597         * marshal.c (mono_marshal_get_native_wrapper): cleanups
31598
31599 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
31600
31601         * gc.c (finalizer_thread): Work around a GC bug.
31602
31603 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
31604
31605         * marshal.c (emit_struct_conv): allow unions
31606
31607         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
31608
31609 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
31610
31611         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
31612
31613 2003-05-06  Martin Baulig  <martin@ximian.com>
31614
31615         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
31616
31617 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31618
31619         * socket-io.c:
31620         (Select_internal): allow NULLs, don't create arrays if not needed.
31621         Coupled with Socket.cs changes.
31622
31623         * threadpool.c:
31624         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
31625         register a finalizer for it that will close the semaphore handle. This
31626         fixes the leak and make Lupus' test run with > 4080 loops.
31627
31628 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
31629
31630         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
31631         Jerome Laban (bug #42287)
31632
31633 2003-05-02  Martin Baulig  <martin@ximian.com>
31634
31635         * debug-mono-symfile.h
31636         (MonoSymbolFile): Moved declaration into mono-debug.h.
31637         (MonoDebugMethodJitInfo): Likewise.
31638         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
31639         argument.
31640         (_mono_debug_address_from_il_offset): Take a
31641         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
31642
31643         * mono-debug.h
31644         (MonoDebugDomainData): New struct.
31645         (mono_debug_get_domain_data): New function.
31646         (mono_debug_add_method): Take an additional `MonoDomain *'
31647         argument.
31648         (mono_debug_source_location_from_address): Likewise.
31649         (mono_debug_il_offset_from_address): Likewise.
31650         (mono_debug_address_from_il_offset): Likewise.
31651
31652 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
31653
31654         * reflection.c: one more check for null type in custom attrs.
31655
31656 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31657
31658         * reflection.c: avoid warning (comparison is always false due to limited
31659         range of data type).
31660
31661 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31662
31663         * icall.c: throw an exception in Type.GetField if the argument 'name'
31664         is NULL.
31665
31666 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
31667
31668         * reflection.c: fixed handling of enums in named arguments to custom
31669         attributes (bug #42123).
31670
31671 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
31672
31673         * reflection.c: use the right array element type and handle
31674         a null for a Type argument, too.
31675
31676 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
31677
31678         * reflection.c: handle arrays as arguments to custom attributes.
31679
31680 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31681
31682         * reflection.c: handle a string value in a custom attr
31683         ctor that takes an object.
31684
31685 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
31686
31687         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
31688         (fix bug #42063)
31689
31690 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
31691
31692         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
31693
31694 2003-04-27  Martin Baulig  <martin@ximian.com>
31695
31696         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
31697         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
31698         MONO_DEBUGGER_EVENT_BREAKPOINT.
31699         (mono_breakpoint_trampoline_code): Removed.
31700         (mono_debugger_event_handler): The last argument is now a
31701         `guint32'.
31702         (mono_debugger_insert_breakpoint_full): Removed the
31703         `use_trampoline' argument.
31704         (mono_debugger_method_has_breakpoint): Likewise.
31705         (mono_debugger_trampoline_breakpoint_callback): Renamed to
31706         mono_debugger_breakpoint_callback(); take the method and
31707         breakpoint number as arguments.
31708
31709 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
31710
31711         * metadata.c: fix off by one when loading parameters attributes.
31712
31713 2003-04-24  Martin Baulig  <martin@ximian.com>
31714
31715         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
31716
31717 2003-04-24  Martin Baulig  <martin@ximian.com>
31718
31719         * mono-debug-debugger.c: Moved all code which interacts with the
31720         Mono Debugger here.
31721
31722         * debug-mono-symfile.c: This code now just deals with the symbol
31723         file itself, the debugger code is now in mono-debug-debugger.c.
31724
31725 2003-04-23  Martin Baulig  <martin@ximian.com>
31726
31727         * mono-debug.c (mono_debug_source_location_from_il_offset):
31728         New method; like mono_debug_source_location_from_address(), but
31729         takes an IL offset instead of a machine address.
31730
31731 2003-04-23  Martin Baulig  <martin@ximian.com>
31732
31733         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
31734         `line' field; this is now computed by the debugger.
31735
31736 2003-04-23  Martin Baulig  <martin@ximian.com>
31737
31738         * mono-debug.[ch]: New files.  This is the new debugging interface.
31739
31740         * mono-debug-debugger.[ch]: New files.  Moved all code which
31741         interacts with the Mono Debugger here.
31742
31743 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
31744
31745         * domain.c (mono_init): initialize mono_defaults.monitor_class
31746
31747 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
31748
31749         * reflection.c (method_encode_code): Add a spicy exception to help
31750         future compiler authors.
31751
31752 2003-04-21  Martin Baulig  <martin@ximian.com>
31753
31754         * icall.c
31755         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
31756         Make this work with relative pathnames; g_filename_to_uri() needs
31757         an absolute filename.
31758
31759 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
31760
31761         * icall.c: Track name changes in Object and ValueType.
31762
31763 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
31764
31765         * metadata.c (mono_type_stack_size): size should be a multiple of
31766         sizeof (gpointer)
31767
31768 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31769
31770         * gc.c:
31771         (internal_domain_finalize): moved into mono_domain_finalize. No need
31772         to create another thread because the finalizers will be run in the
31773         finalizer thread.
31774         
31775         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
31776         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
31777         to be run (MS does this too).
31778
31779 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
31780
31781         * object.c (mono_class_compute_gc_descriptor): Update comment.
31782
31783         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
31784
31785         * image.h: Add synchronized wrapper cache.
31786
31787         * image.c (do_mono_image_open): Initialize cache.
31788
31789         * reflection.c (create_dynamic_mono_image): Initialize cache.
31790
31791 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31792
31793         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
31794         ves_icall_System_Buffer_ByteLengthInternal.
31795
31796 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31797
31798         * reflection.c: setup klass->nested_in earlier. Allow
31799         a dash in the assembly name.
31800
31801 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
31802
31803         * metadata.c (mono_type_to_unmanaged): dont access
31804         type->data.klass for MONO_TYPE_OBJECT
31805         (mono_type_to_unmanaged): consider System.Delegate class
31806
31807 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
31808
31809         * class.c: just setup supertypes in the proper place instead of
31810         initializing the full element class for arrays.
31811
31812 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31813
31814         * class.c: ensure the element class of arrays is initialized.
31815         Setup the supertype info for array classes, too.
31816
31817 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
31818
31819         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
31820
31821 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31822
31823         * Makefile.am: re-added -m option when running cygpath. This way,
31824         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
31825         separator.
31826         * mono-config.c: same codepath for locating mono config file for WIN32
31827         and the rest.
31828         * assembly.c: if mono_assembly_setrootdir is called, don't override
31829         the value set.
31830
31831 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31832
31833         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
31834         MONO_ASSEMBLIES variable.
31835
31836 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
31837
31838         * icall.c: added Assembly::GetNamespaces() icall.
31839
31840 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31841
31842         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
31843
31844 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
31845
31846         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
31847         * object.c: fixed bug in the construction of vtable for proxies
31848
31849 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
31850
31851         * object.c (mono_array_new): Mark mono_array_new as an icall.
31852
31853 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31854
31855         * class.c: fixed test for public method when overriding interfaces.
31856         Closes bug #40970.
31857
31858 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31859
31860         * appdomain.h, domain.c: added mono_domain_foreach() to
31861         be able to access the currently loaded appdomains.
31862         * object.c: make string interning work across sppdomains.
31863         Mark some functions for use as icalls.
31864
31865 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
31866
31867         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
31868
31869         * reflection.h reflection.c: Allocate long living data using 
31870         GC_MALLOC_ATOMIC so the collector does not need to scan it.
31871
31872         * reflection.c: Double the allocation size in streams instead of
31873         increasing it, to prevent unneccesary copying on large assemblies.
31874         
31875         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
31876         creation if the assembly does not have the Run flag set.
31877
31878 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
31879
31880         * class.h: avoid the C++ keywords in header files (Jerome Laban
31881         spotted and fixed this).
31882
31883 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31884
31885         * object.c:
31886         (mono_unhandled_exception): fill in the arguments for the
31887         UnhandledException event. Only trigger that event for the default
31888         domain (as MS does).
31889
31890 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
31891
31892         * object.c: Improve typed allocation stuff based on suggestions from
31893         Paolo. Also turn it on if the GC library supports it.
31894
31895 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
31896
31897         * object.c object.h class.h: Added experimental typed allocation
31898         facility using the interfaces in gc_gcj.h.
31899
31900         * os/gc_wrapper.h: Added new include files.
31901         
31902 2003-04-03  Martin Baulig  <martin@ximian.com>
31903
31904         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
31905         which is not yet enabled by default.
31906
31907         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
31908         functions.
31909         (mono_gc_lock, mono_gc_unlock): New static functions.
31910
31911         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
31912         functions; stop/start the world for the garbage collector.  This
31913         is using the windows API; we need to complete the SuspendThread()/
31914         ResumeThread() implementation in the io-layer to make this work on Unix.
31915         (mono_gc_push_all_stacks): New public function; tells the garbage
31916         collector about the stack pointers from all managed threads.
31917
31918 2003-04-03  Martin Baulig  <martin@ximian.com>
31919
31920         * object.h (MonoThread): Added `gpointer stack_ptr'.
31921
31922         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
31923
31924 2003-04-03  Martin Baulig  <martin@ximian.com>
31925
31926         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
31927
31928 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
31929
31930         * reflection.c (typebuilder_setup_fields): Initialize field.first and
31931         field.last.
31932
31933 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
31934
31935         * loader.c (mono_lookup_internal_call): Report the corlib that is
31936         out of sync.
31937
31938 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
31939
31940         * icall.c (ves_icall_type_GetTypeCode): fixed check for
31941         System.DBNull (it's class not valuetype).
31942
31943 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31944
31945         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
31946         if the array method was already assigned a token (fixes bug#40646).
31947
31948 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
31949
31950         * reflection.c (mono_reflection_get_type): Attempt type resolve even
31951         if no assembly is given.
31952
31953 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
31954
31955         * metadata.h: Added the new tables.
31956
31957         * row-indexes.h: Added definitions for new tables.
31958
31959         * metadata.c: Add schemas for new tables, and add support for
31960         computing the sizes of them.
31961
31962         * class.c: Update for handling the new type cases.
31963
31964 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
31965
31966         * metadata.h (MONO_TYPE_IS_VOID): new macro
31967
31968 2003-03-31  Martin Baulig  <martin@ximian.com>
31969
31970         * threads.h (MonoThreadCallbacks): Added `thread_created'.
31971
31972         * threads.c (mono_thread_new_init): Call `thread_created' in the
31973         mono_thread_callbacks.
31974
31975 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
31976
31977         * loader.h: added marshalbyrefobject_class to mono_defaults
31978         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
31979         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
31980           generation of output parameters.
31981           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
31982         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
31983           contextbound and the target object belongs to the context of the caller.
31984         * object.h: added context and unwrapped_server variables in MonoRealProxy.
31985         * object.c: Implemented support for interfaces and abstract classes
31986           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
31987           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
31988
31989 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
31990
31991         * class.h class.c (mono_class_is_subclass_of): New function.
31992         
31993         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
31994         routines for most common case (calls from ArrayList::ToArray).
31995
31996         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
31997         routine so programs which call Environment::Exit() can be profiled.
31998
31999         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
32000         Added MONO_ARCH_SAVE_REGS.
32001
32002         * icall.c (ves_icall_type_is_subtype_of): Use new function.
32003
32004 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
32005
32006         * blob.h: Add a couple of new MonoType types definitions.
32007
32008         * tabledefs.h: Add a couple of new call convs.
32009
32010 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
32011
32012         * reflection.h (MonoReflectionDynamicAssembly): track changes in
32013         the layout of the class.
32014
32015         * reflection.c (alloc_table): double the size on overflow to avoid
32016         unnecessary copying.
32017
32018         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
32019         avoid filling out metadata tables and blobs. Also set mb->ilgen to
32020         null so it can be garbage collected.
32021         
32022 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
32023
32024         * reflection.c (mono_reflection_get_type): Return the resolved type
32025         only if it is in the assembly we searched.
32026
32027         * reflection.c (ensure_runtime_vtable): Initialize method slots.
32028
32029         * class.c (mono_class_setup_vtable): Set the slot of the overriding
32030         method.
32031
32032 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32033
32034         * appdomain.c:
32035         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
32036         the right one is 'file:///blah', but MS allows it.
32037         * assembly.c:
32038         (mono_assembly_open): allow 'file://blah'
32039
32040         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
32041
32042 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
32043
32044         * socket-io.c: fixes bug #40310.
32045
32046 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
32047
32048         * reflection.c (mono_reflection_parse_type): handle deeply nested
32049         types correctly.
32050
32051         * reflection.c (mono_image_create_token): Use unique token values
32052         since they will be put into a hash table.
32053
32054         * class.c (mono_class_setup_vtable): If a method occurs in more than
32055         one place in the vtable, and it gets overriden, then change the
32056         other occurances too.
32057
32058         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
32059         object as return type.
32060
32061 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32062
32063         * icall.c: Deleted "ToString" implementation for double and float
32064         because they are full implemented in managed code.
32065
32066 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32067
32068         * reflection.c, reflection.h: implemented and exported functions
32069         to retrieve info about custom attributes.
32070
32071 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32072
32073         * appdomain.c: moved Uri handling to assembly.c
32074         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32075         work when using a file Uri in *nix and windows.
32076
32077         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32078         GetReferencedAssemblies.
32079
32080 2003-03-18  Dick Porter  <dick@ximian.com>
32081
32082         * icall.c: Rename a couple of internal calls
32083
32084         * threads.c: Set the thread state to Stopped when a thread exits.
32085         Fixes bug 39377.
32086
32087 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
32088
32089         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32090         New icall.
32091
32092         * object.c (mono_class_vtable): fix warning.
32093
32094 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
32095
32096         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32097
32098         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32099         memory.
32100         (method_encode_clauses): Create exception info structures in the right
32101         order.
32102         (mono_reflection_setup_internal_class): Initialize supertypes field.
32103
32104         * class.c object.c: Handle interfaces which implement other interfaces 
32105         correctly.
32106
32107         * class.h class.c: Move the supertypes array initialization code into 
32108         a separate function so it can be used for dynamic types too. Also call
32109         it earlier, in mono_class_init(), since it can be used before the
32110         type is initialized.
32111
32112 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32113
32114         * Makefile.am:
32115         * assembly.c:
32116         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32117
32118         * appdomain.c:
32119         * appdomain.h:
32120         * marshal.c:
32121         * object.c: remove warnings.
32122
32123 2003-03-13  Martin Baulig  <martin@ximian.com>
32124
32125         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32126         (MonoDebugLexicalBlockEntry): New types.
32127
32128         * debug-mono-symfile.c
32129         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32130
32131 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32132
32133         * process.c: ret can be any non-zero value accroding to MS doc.
32134
32135 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32136
32137         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32138         fixing a warning for a miss-used prototype, would have cause
32139         random memory corruption.
32140
32141 2003-03-07  Martin Baulig  <martin@ximian.com>
32142
32143         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32144         getting really annoying ....
32145
32146 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32147
32148         * reflection.c (fixup_method): added support for array methods.
32149
32150 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32151
32152         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32153         (pointed out by Michael Adams).
32154
32155 2003-03-04  Dick Porter  <dick@ximian.com>
32156
32157         * icall.c: Temporarily reverted the Double and Single ToString()
32158         change, because it broke nunit.
32159
32160 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32161
32162         * object.h, threads.h: make include files compatible with C++
32163         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32164
32165 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32166
32167         * icall.c: Erased ToString helper functions for Double and Single.
32168         Now, that implementations ar all in managed code (Double and Single
32169         Formatters).
32170
32171 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32172
32173         * appdomain.c: Added method for initializing the default context of
32174         a domain. Added internal call for getting the default context.
32175         * appdomain.h: Added context variable in MonoDomain struct.
32176         * domain.c: mono_domain_set also sets the default context of the domain
32177         * icall.c: Mapped internal method InternalGetDefaultContext.
32178         * object.c: mono_object_get_virtual_method returns always a remoting
32179         wrapper if the object is a transparent proxy.
32180         mono_runtime_invoke_array: when creating an object by calling the
32181         constructor, if the created object is a proxy, then the constructor should
32182         be called using the a remoting wrapper.
32183
32184 2003-03-03  Dick Porter  <dick@ximian.com>
32185
32186         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32187         variable so it compiles on solaris.  Problem spotted by
32188         Christopher Taylor <ct@cs.clemson.edu>
32189
32190 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32191
32192         * appdomain.c:
32193         (get_info_from_assembly_name): don't leak value.
32194
32195         * icall.c:
32196         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32197         result.
32198
32199 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32200
32201         * assembly.c: export mono_image_load_references ().
32202         * class.c: handle function pointers. mono_class_from_name() now
32203         supports nested type names directly.
32204
32205 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32206
32207         * reflection.h reflection.c: Encode already created dynamic methods 
32208         and fields correctly as a DEF instead of a REF.
32209
32210         * reflection.c: Get rid of the force_ref argument to 
32211         mono_image_typedef_or_ref since it was wrong in the first place.
32212
32213         * string-icalls.c: add error checking to string constructors according
32214         to the MSDN docs.
32215
32216         * reflection.c: Emit types in the order their TypeBuilders were 
32217         created. Previously, a new table index was assigned to each type before
32218         the tables were emitted. This was wrong because the signature blob
32219         might already refer to a type by its original table index.
32220
32221 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32222
32223         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32224         change.
32225         
32226 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32227
32228         * Makefile.am: make assemblies dir have \ instead of / on windows.
32229
32230 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32231
32232         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32233         iterate over the NESTEDCLASS table using a linear search since the
32234         table is not guaranteed to be sorted by the secondary key.
32235
32236         * class.c (mono_class_create_from_typedef): fixed up call to
32237         mono_metadata_nesting_typedef.
32238         
32239 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32240
32241         * marshal.c (mono_string_to_byvalstr): clear the memory as
32242         suggested by Jerome Laban <jlaban@wanadoo.fr>
32243
32244 2003-02-26  Dick Porter  <dick@ximian.com>
32245
32246         * process.c: Cope with padding in .rsrc blocks
32247
32248 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32249
32250         * metadata.h: reverted the filter_len change, it breaks reflection
32251         
32252 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32253
32254         * metadata.h: added a new field to store the filter_len
32255         
32256
32257 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32258
32259         * reflection.c: handle custom attributes for types and members
32260         created with Reflection.Emit (bug#38422).
32261
32262 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32263
32264         * reflection.c: define RTSpecialName automatically for constructors for
32265         compatibility with MS.NET.
32266
32267         * reflection.c (mono_reflection_create_runtime_class): initialize
32268         nested_in field of dynamically created classes.
32269
32270 2003-02-22  Martin Baulig  <martin@ximian.com>
32271
32272         * debug-mono-symfile.h: Incremented version number.
32273
32274 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32275
32276         * object.h icall.c process.c: fix warnings.
32277
32278 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32279
32280         * appdomain.h appdomain.c:
32281         (mono_domain_try_type_resolve): split the 
32282         name_or_tb argument into a name and a tb argument.
32283         (mono_domain_has_type_resolve): new function to check whenever the
32284         application has registered a TypeResolve event handler.
32285         
32286         * icall.c reflection.h reflection.c: move the type resolve logic into
32287         mono_reflection_get_type () so it will be invoked when 
32288         Assembly::GetType () is called.
32289
32290         * reflection.c:
32291         (mono_reflection_get_type): renamed to get_type_internal.
32292         (mono_reflection_get_type): fixed type name generation so it works 
32293         for nested types too.
32294         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32295         costly type name generation if there is no resolve event handler.
32296
32297 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32298
32299         * class.c, image.c: load exported types from file references.
32300
32301 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32302
32303         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32304           used to cache the managed methods used to create proxies and make 
32305           remote invocation of methods.
32306         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32307           to be remotely created.
32308         * object.c: Modified the method mono_class_vtable(). It now initializes 
32309           the remote flag of the vtable. Modified mono_object_new_specific(), 
32310           so now it checks the remote flag.
32311         * icall.c: Added a couple of internal methods, one for enabling instance 
32312           creation interception for a type, and one for creating objects bypassing
32313           the remote check.
32314
32315 2003-02-18  Martin Baulig  <martin@ximian.com>
32316
32317         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32318         New interncall to get a method's metadata token.
32319
32320         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32321         New interncall for the debugger.
32322
32323 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32324
32325         * class.c (mono_class_setup_vtable): allocate supertype array
32326
32327 2003-02-18  Martin Baulig  <martin@ximian.com>
32328
32329         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32330
32331 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32332
32333         * reflection.c:
32334         (assembly_name_to_aname): jump over unknown properties (i've found
32335         something like: 'type, assembly, version=xxx, custom=null, public...',
32336         so now will ignore custom=null and still get the rest of the values).
32337
32338 2003-02-17  Dick Porter  <dick@ximian.com>
32339
32340         * threads.c: Have Thread.Start() wait for a semaphore to signal
32341         that the thread has set up all its local data.  This fixes bug
32342         34323, where Abort() raced the new thread's TLS data.
32343
32344         Also removes the handle_store() call from start_wrapper, because
32345         threads are now always created suspended and there is no longer a
32346         race between the parent and child threads to store the info.
32347
32348 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
32349
32350         * image.c: explain the #- heap issue in a message, hopefully
32351         avoiding FAQs on mono-list.
32352
32353 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32354
32355         * icall.c:
32356         (GetEntryAssembly): if the domain has not invoked
32357         AppDomain.ExecuteAssembly yet, return the assembly of the default
32358         AppDomain.
32359
32360 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
32361
32362         * class.c (mono_ldtoken): make it work in dynamic assemblies.
32363
32364 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
32365
32366         * metadata.c, reflection.c: simple speedup to type hash
32367         and equals code.
32368
32369 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
32370
32371         * image.c, image.h, class.c, assembly.c: move module loading
32372         to MonoImage. When loading metadata, consider alignemnet from
32373         the start of metadata, not from the metadata address in memory.
32374
32375 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
32376
32377         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
32378         AssemblyBuilder objects. Factored out custom attribute creation into
32379         a separate function.
32380         (create_custom_attr): new function to create custom attributes.
32381
32382 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
32383
32384         * Makefile.am: Got tired of typing the full pathname to pedump.
32385         Until there is another option, am installing this.
32386
32387 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
32388
32389         * class.c (class_compute_field_layout): always set field->parent 
32390         (mono_ldtoken): use mono_defaults.fieldhandle_class;
32391
32392 2003-02-11  Dick Porter  <dick@ximian.com>
32393
32394         * threads-types.h:
32395         * monitor.c: Rewrote Monitor, making lock much faster and
32396         Pulse/Wait work as specified.  Also uses much fewer handles, and only
32397         creates them as needed.
32398
32399         * exception.c: Added SynchronizationLockException
32400
32401         * threads.c: Deleted old Monitor implementation.  The new one is
32402         in a new file.
32403
32404 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
32405
32406         * class.c: handled TypedReference type code. Set the correct size for
32407         class data. Setup interface_offsets for interface classes, too.
32408
32409 2003-02-09  Martin Baulig  <martin@ximian.com>
32410
32411         * debug-mono-symfile.h: Reflect latest symbol writer changes.
32412
32413 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
32414
32415         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
32416         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
32417         * object.c: fixed mono_object_get_virtual_method () for interfaces.
32418         * verify.c: check for code that runs after the end of the method.
32419
32420 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32421
32422         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
32423         "System.Math::Round2".
32424         * sysmath.h: Added Floor, Round and Round2 definitions.
32425         * sysmath.c: Modified certain functions that were not 100% compliant
32426         with MS.NET (math precision) and added the implementation of Floor,
32427         Round and Round2.
32428
32429 2003-02-07  Martin Baulig  <martin@ximian.com>
32430
32431         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
32432
32433 2003-02-07  Martin Baulig  <martin@ximian.com>
32434
32435         * debug-mono-symfile.c: Reflected latest symwriter changes.
32436         (mono_debug_create_mono_symbol_file): Removed.
32437         (mono_debug_open_mono_symbol_file): Take an argument which
32438         specifies whether to create a dynamic symbol file.
32439
32440 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
32441
32442         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
32443
32444 2003-02-05  Martin Baulig  <martin@ximian.com>
32445
32446         * reflection.c (mono_image_build_metadata): Make this public,
32447         protect it against being called multiple times, don't create
32448         resources and don't build the compressed metadata here.
32449         (mono_image_create_pefile): Do this here.
32450
32451         * icall.c
32452         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
32453
32454 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32455
32456         * socket-io.c: fixed bug #36322.
32457
32458 2003-02-06  Piers Haken <piersh@friskit.com>
32459
32460         * appdomain.[ch]:
32461         * class.h:
32462         * debug-mono-symfile.c:
32463         * icall.c:
32464         * loader.c:
32465         * mono-config.c:
32466         * monosn.c:
32467         * reflection.c:
32468         * socket-io.c: warning cleanups
32469
32470 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
32471
32472         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
32473         function. works like remoting invoke, but does a check for the Proxy first.
32474
32475 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
32476
32477         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
32478
32479 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
32480
32481         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
32482         array of pointers.
32483         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
32484         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
32485
32486         * object.c (mono_store_remote_field_new): used by the new jit
32487         instead of mono_store_remote_field
32488         (mono_load_remote_field_new): used by the new jit
32489         instead of mono_load_remote_field
32490
32491 2003-02-05  Patrik Torstensson
32492
32493         * appdomain.c: changed unload to take the domain id instead
32494         of domain
32495         
32496         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
32497
32498
32499 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32500
32501         * appdomain.c: don't look for assemblies in ApplicationBase if
32502         PrivateBinPathProbe is set.
32503
32504 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32505
32506         * object.c: make the first argument in main_args contain the absolute
32507         path to the assembly. Fixes bug #37511.
32508
32509 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32510
32511         * icall.c: get correct UTC offset for countries not using daylight
32512         time saving. Fixes bug #30030.
32513
32514 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32515
32516         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
32517         and 1 are the family).
32518
32519 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
32520
32521         * icall.c (ves_icall_InternalExecute): removed wrong assertion
32522
32523         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
32524
32525 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
32526
32527         * reflection.c: added support for SignatureHelper tokens, which is
32528         needed by the Calli opcode.
32529
32530         * reflection.h: track changes to SignatureHelper class.
32531
32532         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
32533
32534 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32535
32536         * appdomain.c: fixed loading assemblies from PrivateBinPath.
32537
32538 2003-02-03  Patrik Torstensson
32539         * appdomain.[c|h], domain.c : 
32540          - Added support for getting a domain via domain id
32541          - Support for setting and getting domain from System.AppDomain 
32542            (used in cross appdomain channel)
32543          - Added support for get/set for a MonoAppContext on a thread 
32544            (Context class in System.Runtime.Remoting.Contexts),
32545          - Removed hack in Get/SetData and ExecuteAssembly.
32546         
32547         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
32548         the managed world to get control when a proxy is created.
32549
32550         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
32551         
32552 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
32553
32554         * icall.c
32555         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32556         Populate the codebase field as well.
32557
32558 2003-02-02  Martin Baulig  <martin@ximian.com>
32559
32560         * debug-mono-symfile.c
32561         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
32562         (mono_debug_symfile_add_method): Allow interncalls.
32563
32564 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32565
32566         * icall.c: throw parse exception if strtod fails or the string is empty.
32567
32568 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
32569
32570         * marshal.c: handle object type separately from defined
32571         class types.
32572
32573 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
32574
32575         * marshal.c: handle NATIVE_LPSTR for strings when it's
32576         explicitly specified.
32577
32578 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
32579
32580         * reflection.c, reflection.h, icall.c: setup the reflection
32581         handle cache for ModuleBuilders and AssemblyBuilders.
32582
32583 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
32584
32585         * reflection.c (reflection_methodbuilder_to_mono_method): set
32586         pinvoke flag
32587
32588 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32589
32590         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
32591
32592 2003-01-29  Dick Porter  <dick@ximian.com>
32593
32594         * threads.c: No need for the fake_thread kludge now that Thread
32595         doesn't run a class constructor
32596         
32597 2003-01-29  Dick Porter  <dick@ximian.com>
32598
32599         * threads.c: Use g_direct_hash instead of the rather bogus
32600         g_int_hash
32601
32602 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
32603
32604         * marshal.c (mono_marshal_get_native_wrapper): add check for null
32605         (fix pinvoke12.exe)
32606         (mono_marshal_get_struct_to_ptr): generate valid IL code
32607         (mono_marshal_get_ptr_to_struct): generate valid IL code
32608         (*): correctly set sig->pinvoke, we need to memdup the signature
32609         to do that
32610
32611 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32612
32613         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
32614         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
32615
32616 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32617
32618         * profiler.c: provide more callers information.
32619
32620 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
32621
32622         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
32623
32624         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
32625
32626         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
32627
32628 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32629
32630         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
32631         exception instead of going into an infinite loop on dates which it 
32632         can't yet handle.
32633
32634         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
32635         out-of-range exception if needed.
32636
32637         * class.c (mono_class_setup_vtable): allow a virtual method to provide
32638         an implementation for an interface method and to override an inherited
32639         method at the same time. 
32640         Imagine a scenario when a virtual method is used to override a
32641         virtual abstract method in a parent class, and this same method 
32642         provides an implementation for an method inherited from an interface. 
32643         In this case, the interface resolution code will set im->slot, which 
32644         means that the virtual method override pass will skip this method 
32645         which means a pointer to the abstract method inherited from the parent
32646         will remain in the vtable of this non-abstract class.
32647
32648         * class.c: (mono_class_setup_vtable): continue search for a real 
32649         method if only an abstract method is found.     
32650
32651 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32652
32653         * reflection.c: add size to encoding for ByValStr and ByValArray
32654         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
32655
32656 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32657
32658         * class.c (mono_class_setup_vtable): pass the override info as an
32659         argument.
32660
32661         * class.c (mono_class_setup_vtable): set the slot of overriding methods
32662         correctly.
32663         
32664         * reflection.c (ensure_runtime_vtable); add support for method 
32665         overrides.
32666         
32667 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32668
32669         * reflection.c (resolution_scope_from_image): Hack to work to work with
32670         dynamic assemblies.
32671
32672         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
32673         added a 'force_ref' argument to force this function to allways return 
32674         a TypeRef. This is needed by mono_image_get_memberref_token ().
32675         
32676 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32677
32678         * reflection.c (mono_image_get_type_info): interfaces really don't have
32679         a parent.
32680
32681         * reflection.c (mono_image_basic_init): fill out missing fields of
32682         image structure.
32683
32684         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
32685         dynamic assemblies. This is required so dynamic assemblies show up in
32686         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
32687         Type::GetType() etc. This is consistent with MS behaviour.
32688
32689         * image.c image.h reflection.c: add newly created classes to the name 
32690         cache so mono_class_get () will find them.      
32691
32692 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32693
32694         First part of changes to get IKVM.NET running under mono.
32695         
32696         * appdomain.h, appdomain.c: added new function 
32697         mono_domain_try_type_resolve() which will emit TypeResolve events. 
32698         This function will call AppDomain::DoTypeResolve to do the actual work.
32699
32700         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
32701         moved existing code dealing with dynamic tokens to a new function 
32702         called mono_reflection_lookup_dynamic_token (). This function will 
32703         raise TypeResolve events when appropriate. Since reflection.c is not 
32704         part of libmetadata, a new hook function called 
32705         mono_lookup_dynamic_token() is added to class.c which will call this.
32706
32707         * assembly.h assembly.c: make the invoke_load_hook function public,
32708         so it can be called for dynamic assemblies.
32709
32710         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
32711
32712         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
32713         type isn't found.
32714
32715         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
32716         MonoGHashTable, since it contains pointers to objects which the GC 
32717         needs to track.
32718
32719         * assembly.c (search_loaded): remove unused variable.
32720         
32721 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
32722
32723         * object.c: fixed issue exposed by gcc-generated IL programs
32724         that use RVA data for pointers.
32725
32726 2003-01-25  Martin Baulig  <martin@ximian.com>
32727
32728         * threads.c (start_wrapper): Moved the initialization of
32729         `start_func' above the mono_new_thread_init() call to which we
32730         pass it as argument.
32731
32732 2003-01-24  Martin Baulig  <martin@ximian.com>
32733
32734         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
32735         the MonoThread pointer.
32736
32737 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
32738
32739         * icall.c: Rename `PowImpl' to Pow.
32740
32741 2003-01-23  Dick Porter  <dick@ximian.com>
32742
32743         * threads.c (start_wrapper): Create a Thread object if needed, so
32744         the Main() thread can do the class initialisation in a subthread
32745         that has been set up to allow managed code execution.
32746
32747         Pass the thread ID instead of the MonoThread pointer to the thread
32748         start and attach callbacks.  This change is required, because the
32749         jit thread start callback must be called _before_ the Thread
32750         object can be created.
32751         
32752         (mono_thread_init): Removed much object creation code that is no
32753         longer needed.  No managed code is called from here now.
32754
32755         * object.c (mono_runtime_exec_managed_code): Create a subthread
32756         for Main, and call back to the runtime to use it.
32757         Set the exit code when Main exits.
32758
32759         * gc.c: Make sure domain finalisation happens in a subthread.
32760         Re-enable threaded GC, fixing bug 31333 (again).
32761
32762         * environment.c: System.Environment internall calls (so far just
32763         ExitCode is here, the others are still in icall.c)
32764
32765         * appdomain.c (mono_runtime_cleanup): All threads running managed
32766         code should have finished before mono_runtime_cleanup() is
32767         reached, so no need to clean up threads.
32768
32769 2003-01-22  Martin Baulig  <martin@ximian.com>
32770
32771         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
32772         `gpointer func' arguments.      
32773         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
32774         but added `MonoThread *thread' argument.
32775         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
32776
32777         * threads.c (mono_new_thread_init): Added `gpointer func' argument
32778         and pass it to the mono_thread_start_cb callback.
32779         (mono_install_thread_callbacks): New public function to install a
32780         set of callbacks which are set by the debugger.
32781         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
32782
32783 2003-01-22  Martin Baulig  <martin@ximian.com>
32784
32785         * Makefile.am: Install debug-mono-symfile.h.
32786
32787 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
32788
32789         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
32790
32791 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
32792
32793         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
32794         * class.c (mono_ptr_class_get): correctly set access levels of pointers
32795         (mono_array_class_get): correctly set access levels of arrays
32796
32797 2003-01-20      Patrik Torstensson
32798         * image.h (MonoAssemblyName): changed major, minor, build, revision
32799         from signed to unsigned.
32800
32801 2003-01-20  sean kasun <skasun@azstarnet.com>
32802
32803         * reflection.c (load_cattr_value): Now this handles
32804         MONO_TYPE_SZARRAY.  Fixes bug #35629
32805
32806 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
32807
32808         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
32809         integer value
32810
32811 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32812
32813         * decimal.c: fixed bug #26056.
32814
32815 2003-01-17  Martin Baulig  <martin@ximian.com>
32816
32817         * gc.c: Raise an ExecutionEngineException instead of using g_error().
32818
32819 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32820
32821         * exception.[ch]:
32822         (mono_get_exception_type_initialization): new function.
32823
32824         * object.c: throw a TypeInitializationException when an exception is
32825         thrown invoking the class constructor.
32826
32827 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32828
32829         * reflection.c: fixed attribute reading.
32830
32831 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32832
32833         * icall.c:
32834         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
32835         provided, look for the type in the calling assembly and then in
32836         mscorlib; if the assembly name is provided, only try that one.
32837
32838 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
32839
32840         * object.c: register the vtable before there is a chance it's
32841         queried again recursively.
32842
32843 2003-01-13  Duncan Mak  <duncan@ximian.com>
32844
32845         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
32846         gc-internal.h. 
32847         
32848 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
32849
32850         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
32851
32852 2003-01-11  Martin Baulig  <martin@ximian.com>
32853
32854         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
32855         this to 20 for the release.
32856
32857 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
32858
32859         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
32860
32861         * loader.c (mono_method_get_marshal_info): bug fix
32862
32863         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
32864         structures with explicit layout
32865
32866 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
32867
32868         * profiler.c: made the output more readable (and sorted). 
32869         Added caller information for the allocation profiler.
32870
32871 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
32872
32873         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
32874
32875 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32876
32877         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
32878         to get value types.
32879         
32880 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
32881
32882         * object.c, profiler.h, profiler.c, profiler-private.h:
32883         Added object allocation profiler.
32884
32885 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
32886
32887         * reflection.h, reflection.c: handle global methods.
32888         Compress blob entries.
32889
32890 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
32891
32892         * marshal.c: fix compilation.
32893
32894 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
32895
32896         * loader.c (mono_method_get_marshal_info): impl.
32897
32898         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
32899
32900 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32901
32902         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
32903         for reference types.
32904
32905 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
32906
32907         * loader.c: fixed off by one error in loaded parameter names.
32908
32909 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
32910
32911         * marshal.c (mono_marshal_get_icall_wrapper): like
32912         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
32913         instead of a MonoMethod.
32914
32915 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32916
32917         * decimal.c: fixed bug #36537.
32918
32919 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
32920
32921         * marshal.c: throw a missing method exception if a
32922         P/Invoke method is not found.
32923
32924 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
32925
32926         * icall.c: allow a null this for constructors.
32927
32928 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
32929
32930         * icall.c: raise the proper exceptions if the arguments to the
32931         internal Invoke are incorrect.
32932
32933 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
32934
32935         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
32936
32937 2003-01-03  Martin Baulig  <martin@ximian.com>
32938
32939         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
32940
32941 2002-12-31  Martin Baulig  <martin@ximian.com>
32942
32943         * debug-mono-symfile.c: Completely rewrote the type section.
32944         Instead of using individual malloc()ed fields, we use one big
32945         continuous memory area and offsets into this area.
32946         See the comments in the source code for details.
32947
32948 2002-12-30  Martin Baulig  <martin@ximian.com>
32949
32950         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
32951
32952 2002-12-30  Martin Baulig  <martin@ximian.com>
32953
32954         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
32955         line number table in this data blob instead of using an external
32956         pointer.
32957
32958 2002-12-28  Martin Baulig  <martin@ximian.com>
32959
32960         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
32961
32962 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
32963
32964         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
32965         as a boxed return type.
32966
32967 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
32968
32969         * appdomain.c
32970         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
32971         g_build_filename to properly get separators on the filename created.
32972
32973         * object.h: Small change, introduce MonoMarshalByRefObject to
32974         track the layout of that structure in the C# universe as we make
32975         changes there.
32976
32977 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
32978
32979         * object.c: removed assert to allow static fields on interfaces.
32980         * loader.c: a TypeSpec may be used for any type, not just arrays.
32981
32982 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
32983
32984         * class.c, class.h: added mono_class_array_element_size ().
32985         Ignore static methods in interfaces.
32986
32987 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32988
32989         * threads.c: fixed the build under cygwin.
32990
32991 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
32992
32993         * reflection.c: handle nullref constants. Allocate keys for
32994         reflection handles with the GC.
32995
32996 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32997
32998         * threads.c, threads.h: added mono_thread_get_abort_signal()
32999         to get a suitable signal for thread abort.
33000
33001 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33002
33003         * metadata.c: fix handling of ExportedType table.
33004
33005 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33006
33007         * icall.c: added WriteWindowsDebugString internal call.
33008
33009 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33010
33011         * reflection.h: added fields to match C# implementation.
33012
33013 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33014
33015         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
33016
33017 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
33018
33019         * gc.h, gc-internal.h: Rename header for GC internal calls to
33020         gc-internal.h from gc.h as to not clash with Boehm GC having its
33021         header installed as <gc.h> in outside include paths.
33022         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
33023         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
33024
33025 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33026
33027         * icall.c: assign minor, build and revision in FillName.
33028
33029 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
33030
33031         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
33032         Added support for running code generated by Reflection.Emit.
33033
33034 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33035
33036         * appdomain.c: check for NULL argument in LoadFrom.
33037
33038 2002-12-10  Dick Porter  <dick@ximian.com>
33039
33040         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
33041
33042 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33043
33044         * appdomain.c: fix buglet when building exe file name.  Handle full
33045         assembly name (needed after latest changes to AssemblyName).
33046         * image.c:
33047         (mono_image_close): free some hashtables.
33048
33049 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
33050
33051         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
33052         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
33053         on some systems (redhat 7.3) 
33054
33055 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
33056
33057         * threads.c: delete the critical section of a sync block,
33058         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
33059
33060 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
33061
33062         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
33063
33064 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33065
33066         * appdomain.[ch]: handle the assembly preload event to try loading the
33067         assemblies using the paths we have in the current domain.
33068
33069         * assembly.[ch]: created an assembly preload hook that is called to try
33070         loading the assembly by other means that the ones provided here.
33071
33072         * domain.c: initialize the domain search path.
33073
33074         From now on, assemblies (TODO: except corlib and System) are loaded
33075         according to these rules when using mono_assembly_load ():
33076
33077                 1. It tries to load the assembly from the ApplicationBase
33078                 of the current domain appending .dll and .exe (TODO: have to
33079                 try loading from name/name.dll and name/name.exe).
33080
33081                 2. It tries the search path specified in PrivateBinPath for the
33082                 current domain (if any).
33083
33084                 3. Previous behavior.
33085
33086 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33087
33088         * icall.c: implemented GetInterfaceMap() related icall.
33089         * domain.c, loader.h: load MethodInfo in mono_defaults.
33090
33091 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33092
33093         * gc.c: disable the finalizer thread for now, untill all the issues
33094         with it are resolved.
33095
33096 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33097
33098         * string-icalls.c: handle embedded nulls in string ctor when the
33099         length is specified.
33100
33101 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33102
33103         * class.c: look for explicit interface implementation in parent
33104         classes, too.
33105
33106 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
33107
33108         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
33109
33110 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33111
33112         * gc.c: protect handles with a critical section.
33113
33114 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33115
33116         * icall.c:
33117         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33118         parameters. If no assembly specified, try getting the type from all
33119         the assemblies in the current domain, else, load the assembly and get
33120         the type from it.
33121
33122 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33123
33124         * marshal.c: applied patch from Aleksey Demakov that fixes
33125         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33126
33127 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33128
33129         * icall.c: fixed get_location.
33130
33131 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33132
33133         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33134         declarations to make it work with older gcc. 
33135
33136         * loader.c (mono_get_method): set signature->pinvoke for native calls
33137
33138 2002-11-20  Dick Porter  <dick@ximian.com>
33139
33140         * threads.c (mono_thread_init): Set the main thread's handle
33141
33142 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33143
33144         * gc.c: allow compilation without GC support. Changed to match the
33145         mono coding style.
33146
33147 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33148
33149         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33150
33151 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33152
33153         * reflection.c: set a public key token on the core assemblies.
33154
33155 2002-11-18  Dick Porter  <dick@ximian.com>
33156
33157         * threads.c: Split out some thread initialisation so that other
33158         files can set the start callback function.
33159
33160         * gc.c: Run finalisers in a separate thread, to avoid stack
33161         overflow.  Fixes bug 31333.
33162
33163         * appdomain.c: Set up GC finalisation thread.
33164
33165         * reflection.c: 
33166         * object.c: 
33167         * domain.c: Use gc.h macros for GC_malloc
33168         
33169 2002-11-15  Dick Porter  <dick@ximian.com>
33170
33171         * threadpool.c: 
33172         * threads.c:
33173         * appdomain.c: Removed mono_runtime_init_with_attach(),
33174         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33175         merging the extra parameter with the existing function.  Removed
33176         unneeded code in mono_thread_attach().
33177
33178 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33179
33180         * image.c (mono_image_loaded_by_guid): a method to get loaded
33181         images by guid. 
33182         (load_metadata_ptrs): we store the guid as string.
33183
33184 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33185
33186         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33187
33188         * metadata.c (mono_guid_to_string): imported method form Zoltan
33189         Varga (slightly modified)
33190
33191         * assembly.c (mono_assembly_open): load precompiled code
33192
33193         * loader.h (MonoMethod): we store the method token for use in the
33194         aot compiler. 
33195
33196 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33197
33198         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33199         the hook function called when an assembly is loaded.
33200         
33201         * domain.c: Modified file.
33202         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33203
33204         Fixes bug #33196.
33205
33206 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33207
33208         * reflection.c: Map PEFileKind to the value expected by the WinNT
33209         image loader. 
33210
33211 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33212
33213         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33214         Read until the buffer is filled completely.
33215
33216 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33217
33218         * icall.c: implemented MonoType.InternalGetEvent ().
33219
33220 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33221
33222         * appdomain.c: implemented InitAppDomainSetup. Delayed
33223         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33224         the entry_assembly.
33225
33226         * assembly.c: base_dir is now an absolute path ending with
33227         G_DIR_SEPARATOR.
33228
33229         * icall.c: modified get_location according to the above changes.
33230
33231         * object.c: init AppDomain.SetupInformation for the default domain after
33232         we have the entry assembly.
33233
33234         * domain.c: when unloading a domain, setup = NULL.
33235
33236 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33237
33238         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33239
33240 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33241
33242         * object.h, object.c: introduced mono_object_get_virtual_method ()
33243         to lookup the method invoked on an object when a callvirt is done on
33244         a method.
33245         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33246
33247 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33248
33249         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33250         current domain when loaded an assembly and failed to load it.
33251
33252         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33253
33254 2002-10-31  Dick Porter  <dick@ximian.com>
33255
33256         * icall.c: 
33257         * file-io.h: 
33258         * file-io.c: Return the error status in a parameter, as the
33259         GetLastError() value has long since been blown away if we try and
33260         look it up in a subsequent internal call invocation.  Delete the
33261         GetLastError() internal call, because it's useless.
33262
33263 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33264
33265         * class.[ch]: added cast_class to fix bug 29517
33266
33267 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33268
33269         * marshal.c: create valid IL code in the filter clause:
33270         the new JIT is less forgiving:-)
33271
33272 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33273
33274         * icall.c: removed get_property internal call.
33275
33276 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33277
33278         * appdomain.h domain.c: Added an ID to appdomains.
33279         
33280         * threads.c threads.h icall.c: Implement icall
33281         Thread:GetDomainID(), and remove unused icall 
33282         CurrentThreadDomain_internal.
33283
33284 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33285
33286         * icall.c: Don't recurse through the base types in GetConstructor.
33287         Fixes bug #32063. 
33288
33289 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33290
33291         * mempool.h, mempool.c: added mono_mempool_empty() and
33292         mono_mempool_stats().
33293
33294 2002-10-23  Dick Porter  <dick@ximian.com>
33295
33296         * file-io.c: 
33297         * file-io.h: 
33298         * icall.c: Added MonoIO.GetFileType internal call
33299
33300 2002-10-17  Dick Porter  <dick@ximian.com>
33301
33302         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33303         delegate semaphore before waiting for all threads to finish,
33304         because new threads can also call async delegates.  Fixes bug
33305         32004.
33306
33307         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33308         of 3 seconds, in case another async job is queued.  (This part is
33309         needed because the bug fix reintroduced the 3s exit lag.)  This
33310         makes the mono_runtime_shutdown flag superfluous.
33311
33312 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33313
33314         * reflection.c: include ehader size in method section headers.
33315         Really check for suplicated modules entries.
33316
33317 2002-10-17  Martin Baulig  <martin@gnome.org>
33318
33319         * debug-mono-symfile.c: Added back support for locals.
33320
33321 2002-10-14  Martin Baulig  <martin@gnome.org>
33322
33323         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33324         MONO_TYPE_VOID.
33325
33326 2002-10-14  Martin Baulig  <martin@gnome.org>
33327
33328         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33329         mono_class_get() instead of looking in the class cache. 
33330
33331 2002-10-13  Martin Baulig  <martin@gnome.org>
33332
33333         * debug-mono-symfile.c: Set version number to 28, include the
33334         signature in method names.
33335
33336 2002-10-13  Martin Baulig  <martin@gnome.org>
33337
33338         * debug-mono-symfile.h: Set version number to 27.
33339
33340 2002-10-11  Martin Baulig  <martin@gnome.org>
33341
33342         * gc.c: Don't register/unregister NULL pointers as disappearing links.
33343
33344 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33345
33346         * metadata.c, metadata.h: added helper function to allocate signatures.
33347
33348 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33349
33350         * icall.c: added internal call to get the location of machine.config.
33351
33352 2002-10-08  Martin Baulig  <martin@gnome.org>
33353
33354         * debug-mono-symfile.c: Ignore classes with a pending init for the
33355         moment.
33356
33357 2002-10-03  Dick Porter  <dick@ximian.com>
33358
33359         * threads.c: Freebsd pthread_t is a pointer
33360
33361 2002-10-03  Dick Porter  <dick@ximian.com>
33362
33363         * socket-io.c: Implemented GetHostName_internal
33364
33365 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33366
33367         * mono-config.c:
33368         (mono_config_parse_file): don't leak the text.
33369
33370 2002-10-02  Martin Baulig  <martin@gnome.org>
33371
33372         * debug-mono-symfile.c: Added support for methods.
33373
33374 2002-10-01  Martin Baulig  <martin@gnome.org>
33375
33376         * debug-mono-symfile.c: Don't emit methods and line numbers for
33377         the dynamic symbol file, just write the type table.  We can easily
33378         have an external helper program which creates a symbol file for an
33379         IL file.        
33380
33381 2002-10-01  Dick Porter  <dick@ximian.com>
33382
33383         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
33384         Only add the handle to the cleanup array when we're about to
33385         launch the thread.  Bug 31425 deadlocked when the test was run on
33386         mono under w32.
33387
33388 2002-10-01  Martin Baulig  <martin@gnome.org>
33389
33390         * debug-mono-symfile.c: Added support for properties.
33391
33392 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33393
33394         * reflection.c: unaligned store fix from Mark Crichton
33395         <crichton@gimp.org>.
33396
33397 2002-09-27  Martin Baulig  <martin@gnome.org>
33398
33399         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
33400         New interncall.
33401
33402 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33403
33404         * assembly.h, assembly.c: use a sane API to hook into the assembly
33405         loading process instead of a useless special-purpouse hack
33406         (ngen needs a hook, too, for example).
33407
33408 2002-09-27  Dick Porter  <dick@ximian.com>
33409
33410         * threads.c (mono_thread_init): Call GetCurrentProcess() so
33411         io-layer can set up some process handle info.  Not needed on w32,
33412         but doesn't hurt either.
33413
33414         * process.c: Pass the program name in the second parameter to
33415         CreateProcess, so the path is searched.  Include the working
33416         directory. Implemented process name, process enumeration, and some
33417         process detail internal calls.
33418         
33419         * icall.c: Added internal calls for process lookup, and some
33420         process details
33421
33422 2002-09-26  Martin Baulig  <martin@gnome.org>
33423
33424         * assembly.c (mono_install_open_assembly_hook): New global
33425         function to install a function to be invoked each time a new
33426         assembly is loaded.
33427         (mono_assembly_open): Run this callback function if set.
33428
33429         * debug-mono-symfile.c: Put back line numbers for the dynamic
33430         symbol file and also record the .il file as source file.  This
33431         allows us to install the temporary symbol file as `file.dbg' just
33432         like a compiler-generated one.
33433
33434 2002-09-26  Nick Zigarovich <nick@chemlab.org>
33435
33436         * Corrected typo in gc.c (BOHEM vs BOEHM).
33437
33438 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33439
33440         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
33441         GetProperties. Also avoid calling g_slist_length in GetProperties and
33442         GetMethods.
33443
33444 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33445
33446         * reflection.c: avoid unaligned stores (bug spotted by
33447         Mark Crichton  <crichton@gimp.org>).
33448
33449 2002-09-25  Martin Baulig  <martin@gnome.org>
33450
33451         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
33452         instead of guint64 for addresses and added prologue/epilogue info.
33453
33454 2002-09-25  Martin Baulig  <martin@gnome.org>
33455
33456         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
33457         store line number info.  For the dynamic symbol file, we only need
33458         to provide the JIT generated dynamic line number info for the dynamic
33459         symbol file.
33460
33461 2002-09-25  Martin Baulig  <martin@gnome.org>
33462
33463         * debug-mono-symfile.h: Incremented version number.
33464
33465 2002-09-24  Martin Baulig  <martin@gnome.org>
33466
33467         * class.c (mono_debugger_class_init_func): New global function
33468         pointer variable.
33469         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
33470         call it.
33471
33472         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
33473         function.  This is called via the mono_debugger_class_init_func
33474         hook to add all types to the dynamic type table.
33475         (ves_icall_MonoDebugger_GetType): New interncall to get a class
33476         from its metadata token.
33477
33478         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
33479         New interncall for the debugger.
33480
33481 2002-09-24  Nick Drochak <ndrochak@gol.com>
33482
33483         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
33484         before using it in case it is null.
33485         
33486 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33487
33488         * metadata.c: allow custom modifiers in local var signatures
33489         (bug spotted by Zoltan Varga).
33490
33491 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33492
33493         * class.c: deal with the <Module> class that may have a NULL vtable.
33494         Eliminate warnings.
33495
33496 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33497
33498         * image.c, image.h: more strong name helpers.
33499         * monosn.c: more work: convert pem keys to cryptoapi format.
33500
33501 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33502
33503         * string-icalls.c: speedup IndexOf.
33504
33505 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33506
33507         * icall.c: updates from Zoltan.2.Varga@nokia.com.
33508
33509 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33510
33511         * icall.c: cleanup: use mono_object_domain ().
33512
33513 2002-09-23  Martin Baulig  <martin@gnome.org>
33514
33515         * debug-mono-symfile.c: Improved type support.
33516
33517 2002-09-22  Martin Baulig  <martin@gnome.org>
33518
33519         * debug-mono-symfile.c: Added support for reference types and strings.
33520
33521 2002-09-22  Martin Baulig  <martin@gnome.org>
33522
33523         * debug-mono-symfile.c: Started to work on the type table.
33524
33525 2002-09-21  Martin Baulig  <martin@gnome.org>
33526
33527         * debug-mono-symfile.c: Largely reworked the symbol table format.
33528         The symbol table is now incrementally updated each time a new
33529         method is added.  We're now also using our own magic and version
33530         so that you don't need to recompile all your classes if the
33531         dynamic table changes.
33532         (mono_debug_update_mono_symbol_file): Removed.
33533         (mono_debug_symfile_add_method): New function to add a method.
33534
33535 2002-09-21  Martin Baulig  <martin@gnome.org>
33536
33537         * icall.c
33538         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
33539         New interncall.
33540
33541         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
33542         New interncall to get a method from its metadata token.
33543
33544 2002-09-21  Martin Baulig  <martin@gnome.org>
33545
33546         * debug-mono-symfile.c: Create type table.
33547
33548 2002-09-20  Martin Baulig  <martin@gnome.org>
33549
33550         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
33551
33552 2002-09-20  Martin Baulig  <martin@gnome.org>
33553
33554         * debug-mono-symfile.c: Provide information about params and locals.
33555
33556 2002-09-20  Martin Baulig  <martin@gnome.org>
33557
33558         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
33559         New interncall.
33560
33561         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
33562         interncall to get a method from its metadata token.
33563
33564 2002-09-20  Martin Baulig  <martin@gnome.org>
33565
33566         * debug-mono-symfile.c: Added a few checks for method->header
33567         being non-NULL.  This should never happen, but for the moment
33568         let's use a g_warning() rather than a g_assert().
33569
33570 2002-09-19  Mark Crichton  <crichton@gimp.org>
33571
33572         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
33573         even if support for it isn't present.  Added an #ifdef to fix this.
33574
33575         * socket-io.c: Added checks back for Solaris support.
33576
33577 2002-09-19  Martin Baulig  <martin@gnome.org>
33578
33579         * debug-mono-symfile.c (read_string, write_string): Reflect latest
33580         changes in the symbol file format.
33581
33582 2002-09-18  Martin Baulig  <martin@gnome.org>
33583
33584         * debug-mono-symfile.c: Set version number to 21.
33585
33586 2002-09-18  Dick Porter  <dick@ximian.com>
33587
33588         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
33589         on netbsd.  Fixes bug 30051.
33590
33591 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33592
33593         * reflection.c:
33594         (set_version_from_string): little fix.
33595
33596 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33597
33598         * monosn.c, Makefile.am: added strong name utility.
33599         * reflection.h, reflection.c: implemented delayed signing,
33600         locale, version and hash id assembly attributes.
33601
33602 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33603
33604         * loader.c, metadata.c: load param attributes in signatures.
33605
33606 2002-09-16  Martin Baulig  <martin@gnome.org>
33607
33608         * debug-mono-symfile.c: Added string table with all method names.
33609
33610 2002-09-14  Martin Baulig  <martin@gnome.org>
33611
33612         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
33613         fast method lookup.
33614
33615 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33616
33617         * reflection.c: record the public key token of referenced assemblies.
33618
33619 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33620
33621         * image.c, image.h: added functions to get the strong name and the
33622         public key of an assembly.
33623         * pedump.c: use them.
33624
33625 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
33626
33627         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
33628
33629 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
33630
33631         * marshal.c (mono_marshal_get_managed_wrapper): Added
33632         MONO_TYPE_BOOLEAN 
33633
33634 2002-09-11  Martin Baulig  <martin@gnome.org>
33635
33636         * gc.c: Call GC_unregister_disappearing_link() on all links when
33637         finalizing them, this is necessary to aviod a crash in boehm's
33638         finalize handler.
33639
33640 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33641
33642         * gc.c: handle GetTarget for finalized objects spotted and fixed by
33643         nick@chemlab.org.
33644
33645 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33646
33647         * icall.c: implemented MonoType::Module.
33648         * reflection.c, reflection.h: mono_module_get_object () from
33649         Tomi Pakarinen <tomi.pakarinen@welho.com>.
33650
33651 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33652
33653         * icall.c: ignore overridden methods in GetMethods ().
33654         Fix for FieldInfo::SetValue().
33655         * object.c: handle float/double in runtime invoke.
33656
33657 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33658
33659         * object.c: allow a constructor to be called again on an object.
33660
33661 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33662
33663         * class.h, class.c: move field layout code to it's own function and
33664         export it. Get an interface id earlier. Move fields in MonoClass
33665         so they are more cache friendly and align the bitfields.
33666         * loader.c: temporary handle get_param_names() for a runtime method.
33667         * reflection.c, reflection.h: more code to handle runtime creation of
33668         types.
33669
33670 2002-09-09  Martin Baulig  <martin@gnome.org>
33671
33672         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
33673         signature with the pinvoke field being set for the actual call.
33674
33675 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33676
33677         * icall.c: removed some unused icalls. Start of map of glib charsets
33678         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
33679
33680 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33681
33682         * debug-helpers.c: break infinite loop (found and fixed by
33683         Holger Arnold <harnold@gmx.de>).
33684
33685 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33686
33687         * icall.c: target may be null in create_delegate.
33688
33689 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33690
33691         * marshal.c: handle a boolean return type.
33692
33693 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33694
33695         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
33696
33697 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33698
33699         * gc.c: fix weakreferences.
33700
33701 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33702
33703         * icall.c: added icall to get default codepage.
33704
33705 2002-09-03  Dick Porter  <dick@ximian.com>
33706
33707         * threads.h: 
33708         * threads.c: Use MonoThread instead of MonoObject where
33709         apropriate.
33710
33711         Store running thread objects in a hash table, so that we have all
33712         the info to hand when waiting for them to finish
33713         (means we don't need OpenThread() any more, so mingw builds should
33714         be fully functional again.)
33715
33716         * verify.c:
33717         * object.h: Added thread ID to MonoThread
33718
33719 2002-09-03  Martin Baulig  <martin@gnome.org>
33720
33721         * icall.c (System.Reflection.Assembly::get_location): New interncall.
33722
33723 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33724
33725         * icall.c: fixed leak in get_temp_path. Thanks lupus.
33726
33727 2002-09-03  Martin Baulig  <martin@gnome.org>
33728
33729         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
33730         argument to store the end address of the disassembled instruction.
33731
33732         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
33733         here from debug-symfile.h.
33734         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
33735         JIT into this struct.
33736         (MonoSymbolFile): Added `char *image_file' field.
33737         (MonoDebugGetMethodFunc): Removed.
33738         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
33739         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
33740         (mono_debug_find_method): New method.
33741
33742         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
33743         create a full symbol file.
33744         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
33745         and static symbol files.
33746         (mono_debug_find_method): The symbol file keeps an internal method hash,
33747         call this to get a MonoDebugMethodInfo from a MonoMethod.
33748
33749         * debug-symfile.[ch]: Removed.
33750
33751 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
33752
33753         * image.c (do_mono_image_open): Remove linker version check.
33754
33755 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
33756
33757         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
33758         wrappers for instance methods.
33759         
33760 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33761
33762         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
33763
33764 2002-08-28  Dick Porter  <dick@ximian.com>
33765
33766         * Makefile.am: Export HOST_CC for w32 builds
33767
33768 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33769
33770         * file-io.c process.c: MonoString are null terminated, no
33771         need for mono_string_to_utf16() anymore.
33772
33773 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33774
33775         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
33776
33777 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
33778
33779         * icall.c, reflection.h: speedup System.MonoType.
33780
33781 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33782
33783         * reflection.c: allow null as the value of a string argument in
33784         custom attributes constructors.
33785
33786 2002-08-27  Martin Baulig  <martin@gnome.org>
33787
33788         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
33789         `trampoline_address' field.
33790
33791 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
33792
33793         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
33794         check (fixes bug #29486) 
33795
33796 2002-08-27  Martin Baulig  <martin@gnome.org>
33797
33798         * debug-mono-symfile.c: Changed the file format in a way that allows us
33799         open it read-only and to use a specially malloced area for all the
33800         dynamic data.  We can now also generate a symbol file on-the-fly if we're
33801         debugging IL code and there is no MCS generated symbol file for it.
33802
33803 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33804
33805         * object.c: added a define for a good string and array
33806         creation speedup (not enabled by default because we need to deal with
33807         the synch stuff).
33808
33809 2002-08-26  Martin Baulig  <martin@gnome.org>
33810
33811         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
33812         function to create a dynamic symbol file.  This is used by the
33813         debugger to create a symbol file for IL code on-the-fly.
33814
33815 2002-08-26  Martin Baulig  <martin@gnome.org>
33816
33817         * loader.c (mono_lookup_pinvoke_call): Include the error message
33818         from g_module_error() in the error message.
33819
33820 2002-08-24  Martin Baulig  <martin@gnome.org>
33821
33822         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
33823         function to update the symbol file.  The symbol file is mmap()ed
33824         writable, but private.  This allows us to install the symbol file
33825         together with the assembly.
33826
33827 2002-08-24  Martin Baulig  <martin@gnome.org>
33828
33829         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
33830         but they can read the new symbol file format which mcs is now creating.
33831
33832         * debug-symfile.c (mono_debug_find_source_location): Moved to
33833         debug-mono-symfile.c; this is now operating on the new symbol file.
33834
33835 2002-08-23  Martin Baulig  <martin@gnome.org>
33836
33837         * debug-helpers.c (mono_method_desc_from_method): New function to get
33838         a MonoMethodDesc from a MonoMethod.
33839
33840 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33841
33842         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
33843         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
33844
33845 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
33846
33847         * string-icalls.[ch]: make helper methods static.
33848
33849 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33850
33851         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
33852         types to it and to SetValueInternal.
33853
33854         * object.c: Moved handle_enum label to its proper place. This was the
33855         f... bug! ;-)
33856
33857         This time i compiled mcs and gtk-sharp and they both work.
33858
33859 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33860
33861         * icall.c: reverted partially my previous patch until 
33862         object.c:set_value handles enums correcly.
33863
33864 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33865
33866         * icall.c:
33867         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
33868         (ves_icall_System_Environment_get_MachineName): removed warning when
33869         compiling under cygwin.
33870
33871 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33872
33873         * object.c: fixed field_get_value() for reference types.
33874
33875 2002-08-22  Dick Porter  <dick@ximian.com>
33876
33877         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
33878         Don't free a buffer while it's still needed.  Patch from Jonathan
33879         Liger <Jonathan.liger@wanadoo.fr>
33880
33881 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
33882
33883         * icall.c (ves_icall_System_Environment_get_Platform): Add new
33884         internal call.
33885
33886 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
33887
33888         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
33889         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
33890
33891         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
33892         we call unmanaged code which throws exceptions.
33893
33894 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33895
33896         * appdomain.h: added per-domain entry_assembly.
33897         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
33898         arguments.
33899         * icall.c: Assembly::GetEntryAssembly icall.
33900         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
33901         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
33902
33903 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33904
33905         * appdomain.h, gc.c: added mono_domain_finalize ().
33906
33907 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33908
33909         * object.c:
33910         (mono_print_unhandled_exception): changed g_warning by g_printerr
33911         because g_log has a 1024 characters limit (yeah, i got a big stack
33912         trace). Don't print exception name, that should be in ToString 
33913         returned string.
33914
33915 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33916
33917         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
33918         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
33919
33920 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33921
33922         * object.c:
33923         (mono_print_unhandled_exception): after previous commit, i realized
33924         that MS calls ToString on the exception. I changed this function to
33925         do that. This way we get stack_trace for free.
33926
33927 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33928
33929         * object.c:
33930         (mono_print_unhandled_exception): invoke Message property instead of
33931         getting 'message' field from Exception. Don't allocate memory for
33932         'trace' and 'message' if not needed.
33933
33934 2002-08-18  Dick Porter  <dick@ximian.com>
33935
33936         * unicode.c: Fix asserts to match Encoder.cs checks
33937
33938 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33939
33940         * marshal.c: fix unaligned store issue and a few wrong
33941         opcode argument types.
33942
33943 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33944
33945         * icall.c: added GetUninitializedObjectInternal internal call.
33946
33947 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
33948
33949         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
33950         to the right domain.
33951
33952 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
33953
33954         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
33955
33956         * class.c (class_compute_field_layout): set blittable to false for Strings
33957
33958         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
33959
33960 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33961
33962         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
33963         first chunk of code to create types at runtime. Code to
33964         handle ReflectedType/DeclaringType. Make reflection handles
33965         domain specific.
33966
33967 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33968
33969         * class.c: set correct name in arrays.
33970
33971 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
33972
33973         * appdomain.c (mono_domain_transfer_object): make it work with
33974         valuetypes. bug fixes.
33975
33976 2002-08-12  Dick Porter  <dick@ximian.com>
33977
33978         * object.h: Rename some parameters to avoid c++ keywords (Patch
33979         from Joseph Wenninger <kde@jowenn.at>)
33980
33981 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
33982
33983         * icall.c: added icall to implement Assembly.GetFile*.
33984
33985 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33986
33987         * reflection.h, reflection.c: code to embed managed resources.
33988
33989 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33990
33991         * class.c: move all the type size stuff into
33992         class_compute_field_layout().
33993
33994 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33995
33996         * class.c: ensure enums have always the correct instance size.
33997         * unicode.c: remove wrong assert.
33998
33999 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34000
34001         * assembly.c: fix mem corruption issue.
34002         * image.h, image.c: added mono_image_get_resource () to access
34003         managed resources.
34004         * icall.c: implemented Assembly.EntryPoint property and some
34005         Managed Resources related internalcalls.
34006
34007
34008 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34009
34010         * image.c, image.h: impemented mono_image_get_entry_point ().
34011         * appdomain.c: use mono_image_get_entry_point.
34012
34013 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34014
34015         * reflection.c: support the object type argument when loading
34016         custom attributes.
34017
34018 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
34019
34020         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
34021         String as return type.
34022
34023 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
34024
34025         * reflection.c: fix encoding of named args for custom attrs to match
34026         the ms implementation. Read them back when instantiating custom
34027         attributes.
34028
34029 2002-08-02  Radek Doulik  <rodo@ximian.com>
34030
34031         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
34032         by Dietmar as quick fix
34033         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
34034         16 as stack size, used on more places as quick fix before Dietmar
34035         will fix it properly
34036
34037 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34038
34039         * object.h, object.c: added accessors for fields and properties.
34040
34041 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34042
34043         * class.c, class.h: made mono_class_get_field_from_name ()
34044         loop on parent types.
34045         Added mono_class_get_property_from_name ().
34046
34047 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34048
34049         * class.c, class.h: move the code to setup the type vtable in its own
34050         function so that it can be reused also for types created at runtime.
34051         Eliminate the "class" identifier from the header file.
34052         * reflection.c: setup the vtable for enums so that we can create
34053         objects for use in SetConstant ().
34054
34055 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
34056
34057         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
34058         instead of the delegate itself as this pointer (bug #28383)
34059
34060 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
34061
34062         * marshal.c (mono_marshal_get_managed_wrapper): added return type
34063         conversions.
34064
34065 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34066
34067         * loader.c: don't set the pinvoke bit on icalls.
34068
34069 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
34070
34071         * debug-helpers.c (mono_method_full_name): only print a number to
34072         indicate wrapper type (so that the output is more readable in traces).
34073
34074 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
34075
34076         * class.c (mono_class_init): include method override patch from Paolo
34077
34078 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34079
34080         * icall.c: fixed GetTypeCode().
34081
34082 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
34083
34084         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34085         use real delegate invoke function to make it work with multicast
34086         delegates (fix bug# 28291).
34087
34088 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34089
34090         * object.c: load constant strings.
34091
34092 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34093
34094         * reflection.c: no magic numbers.
34095         * tabledefs.h: security action enum.
34096
34097 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34098
34099         * assembly.c: fix possible memory corruption.
34100
34101 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34102
34103         * reflection.h, reflection.c: added support for linking resources.
34104         * verify.c: check we have an updated corlib.
34105
34106 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
34107
34108         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34109         string arrays.
34110         (mono_marshal_string_array): null terminate unmanaged string arrays.
34111         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34112
34113 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34114
34115         * icall.c: Type.GetType () can now return also types from the
34116         calling assembly.
34117
34118 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34119
34120         * loader.h, loader.c: stack walking support.
34121         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34122         GetCallingAssembly.
34123
34124 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34125
34126         * marshal.c: added optimisations for blittable types 
34127
34128         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34129         (mono_class_setup_mono_type): set blittable attribute for single
34130         and double.
34131
34132         * marshal.c (mono_string_utf8_to_builder): impl.
34133         (mono_string_builder_to_utf8): impl.
34134         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34135
34136 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34137
34138         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34139         (mono_marshal_get_managed_wrapper): impl. byref types
34140
34141 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34142
34143         * icall.c:
34144         (search_method): don't display debug message. 
34145
34146 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34147
34148         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34149
34150 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34151
34152         * appdomain.c: set the missing filename when throwing exception.
34153
34154 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34155
34156         * metadata.c (mono_type_size): code cleanup
34157         (mono_type_stack_size): removed some test code
34158
34159 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34160
34161         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34162         mono_get_exception_file_not_found now.
34163
34164         * exception.c (mono_exception_from_name_two_strings): New version
34165         that will call a constructor with two string arguments. 
34166         (mono_get_exception_file_not_found): New helper routine, used to
34167         report file-not-found errors.
34168
34169 2002-07-20  Dick Porter  <dick@ximian.com>
34170
34171         * process.h:
34172         * process.c: Pass file handles to CreateProcess
34173         
34174         * icall.c:
34175         * file-io.h:
34176         * file-io.c: Implemented CreatePipe
34177
34178 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34179
34180         * metadata.c (mono_get_param_info): set alignment for value types
34181
34182 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34183
34184         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34185         Constify mono_domain_assembly_open().
34186         * loader.c: handle null namespace in icalls.
34187
34188 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34189
34190         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34191         (emit_str_to_ptr_conv): marshal object as structs
34192
34193         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34194
34195         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34196
34197 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34198
34199         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34200         (mono_marshal_get_native_wrapper): we an now return value types
34201
34202 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34203
34204         * verify.c: more checks implemented.
34205
34206 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34207
34208         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34209         (fix bug #27695)
34210         (mono_marshal_get_native_wrapper): allow byref arguments
34211         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34212         impl. PtrToStringXXX methods
34213         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34214         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34215         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34216         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34217         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34218
34219 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34220
34221         * reflection.c: fix buglet in parsing an assembly name.
34222
34223 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34224
34225         * marshal.c (emit_ptr_to_str_conv): first impl.
34226
34227 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34228
34229         * object.c, class.h: cache the vtable in the class as suggested by
34230         vargaz@freemail.hu (Zoltan Varga).
34231
34232 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34233
34234         * class.h, loader.c: added mono_field_from_token().
34235         * verify.c: first cut of type checking code.
34236
34237 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34238
34239         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34240
34241 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34242
34243         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34244         (fix bug #27782)
34245         (mono_marshal_get_remoting_invoke): impl.
34246         (mono_delegate_begin_invoke): impl.
34247         (mono_mb_emit_save_args): impl.
34248         (mono_delegate_end_invoke): impl.
34249         (mono_marshal_get_delegate_begin_invoke):
34250         (mono_marshal_get_delegate_end_invoke):
34251         (mono_marshal_get_delegate_invoke): generate a special name for
34252         those methods (including the signature) and associate them whith
34253         the delegate class. 
34254
34255 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34256
34257         * reflection.[ch]: 
34258         (mono_reflection_type_from_name): now it has a MonoImage parameter
34259         which is used as the default image to search the type in. If the image
34260         is NULL or getting the type from it fails, it defaults to corlib.
34261
34262         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34263         new parameter.
34264
34265 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34266
34267         * reflection.c: update the parameter table index.
34268
34269 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34270
34271         * domain.c: don't include the mark byte in the string hash.
34272
34273 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34274
34275         * icall.cs: icall for Type.GetTypeCode ().
34276         * verify: a couple of fixes and disabled local initialization checks.
34277
34278 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34279
34280         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34281
34282         * debug-helpers.c (mono_method_full_name): print the type of the
34283         runtime wrapper
34284
34285         * metadata.c (mono_signature_hash): a hash function for signatures
34286         (mono_signature_hash): better hash algorithm
34287
34288         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34289
34290         * debug-helpers.c (mono_method_full_name): this can now generate
34291         method names with signatures
34292
34293         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34294         method dont have this pointers.
34295
34296 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34297
34298         * reflection.c: fixup typebuilder tokens.
34299         * image.c: fix buglet.
34300         * marshal.h: remove whitespace.
34301         * metadata.h, metadata.c: reinstate code that was removed.
34302         * verify.c: handle catch directives and fix another couple of bugs.
34303
34304 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34305
34306         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34307         (mono_marshal_get_native_wrapper): make it comp. with the old code
34308         (mono_marshal_get_native_wrapper): support boolean
34309         (mono_marshal_get_managed_wrapper): support more types
34310
34311 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34312
34313         * class.c (class_compute_field_layout): compute class->blittable attribute.
34314
34315 2002-07-09  Dick Porter  <dick@ximian.com>
34316
34317         * threads.c: Make the thread cleaning up cope with threads that
34318         call ExitThread()
34319
34320 2002-07-08  Radek Doulik  <rodo@ximian.com>
34321
34322         * reflection.c (method_encode_code): use non-translated values to
34323         compute finally_start, this fixes exception handling on ppc, yay!
34324
34325         * decimal.h (struct signscale): fix endianess
34326
34327 2002-07-07  Radek Doulik  <rodo@ximian.com>
34328
34329         * reflection.c: swap box_val and not val
34330
34331 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34332
34333         * reflection.c, reflection.h: handle full assembly info in type name.
34334         Handle Type arguments when loading custom attributes.
34335         * icall.c: updated to use new mono_reflection_type_from_name () method.
34336
34337 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34338
34339         * loader.c:
34340         (method_from_memberref): also print assembly name when method not found.
34341
34342 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34343
34344         * icall.c:
34345         (ves_icall_TypeGetProperties): fixed bug #27473. 
34346
34347 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34348
34349         * reflection.c: display image name and token when cannot find the
34350         .ctor for an attribute.
34351
34352 2002-07-05  Martin Baulig  <martin@gnome.org>
34353
34354         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34355
34356 2002-07-04  Dick Porter  <dick@ximian.com>
34357
34358         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
34359         compile on mingw.  This will cause mingw builds to not wait for
34360         subthreads to terminate after the main thread does.  I've lodged a
34361         bug with the mingw developers for them to wrap OpenThread().
34362
34363 2002-07-03  Dick Porter  <dick@ximian.com>
34364
34365         * threads.c: Store thread IDs instead of handles, because
34366         GetCurrentThread() returns a pseudohandle and therefore stores
34367         useless values.  mono_thread_cleanup() continues checking the
34368         array of threads until it is empty, to cope with subthreads
34369         spawning new threads after the main thread has finished.
34370
34371         * profiler.h:
34372         * profiler.c:
34373         * profiler-private.h: Pass the thread ID to thread profiler
34374         functions, instead of a handle
34375
34376 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34377
34378         * verify.c: fixes to make it more usable.
34379         * pedump.c: added --verify code to verify IL code in an assembly.
34380
34381 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34382
34383         * reflection.c: turn errors into warnings to allow compiling corlib.
34384
34385 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34386
34387         * reflection.c: add special cases to compile corlib.
34388
34389 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34390
34391         * reflection.c: handle properties with only a set method.
34392
34393 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34394
34395         * opcodes.h: add enum with opcodes in opval order.
34396
34397 2002-07-01  Dick Porter  <dick@ximian.com>
34398         
34399         * object.h:
34400         * object.c (mono_runtime_run_main): Removed unneeded argument
34401
34402 2002-06-28  Martin Baulig  <martin@gnome.org>
34403
34404         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34405
34406 2002-06-27  Dick Porter  <dick@ximian.com>
34407
34408         * threads.c: Store the handle in both the parent thread and in the
34409         subthread, to minimise the time between starting a new thread and
34410         storing its ID.
34411
34412 2002-06-26  Dick Porter  <dick@ximian.com>
34413
34414         * appdomain.c (mono_runtime_cleanup): Close the socket library
34415         after all the threads have finished, not before
34416
34417 2002-06-26  Martin Baulig  <martin@gnome.org>
34418
34419         * debug-symfile.c (mono_debug_find_source_location): Added
34420         `guint32 *line_number' argument.  If it's not NULL, store the line number
34421         there and return the file name without the line number.
34422
34423 2002-06-25  Dick Porter  <dick@ximian.com>
34424
34425         * icall.c:
34426         * process.h:
34427         * process.c: Process forking and other support functions
34428
34429 2002-06-25  Dick Porter  <dick@ximian.com>
34430
34431         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
34432         things dont happen when the image is closed.
34433         (mono_image_lookup_resource): Walk the resource section looking
34434         for a particular entry
34435
34436         * cil-coff.h: PE resource section decoding
34437
34438 2002-06-25  Dick Porter  <dick@ximian.com>
34439         
34440         * assembly.h:
34441         * assembly.c: 
34442         (mono_assembly_foreach): Accessor functions to walk the list of
34443         loaded assemblies
34444         (mono_assembly_set_main):
34445         (mono_assembly_get_main): Process methods need to know which
34446         assembly is the "main" one
34447
34448         * object.c (mono_runtime_run_main): Record the main assembly
34449
34450         * debug-helpers.c: Fix typo
34451
34452 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
34453
34454         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
34455         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
34456
34457 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34458
34459         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
34460
34461 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
34462
34463         * image.c (do_mono_image_open): Initialize reference count,
34464         otherwise we leak the MonoImage.
34465
34466 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34467
34468         * reflection.c: small tweak to handle self-hosting.
34469
34470 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34471
34472         * reflection.c: fix type name parse code.
34473
34474 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34475
34476         * reflection.c: break out of the loop.
34477         * image.c: special case corlib.
34478
34479 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34480
34481         * reflection.c: add all the custom attrs at the end to ensure the
34482         ctors have been properly initialized when the attributes are defined
34483         in the current assembly.
34484
34485 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34486
34487         * reflection.c: handle correctly multiple-nested types.
34488
34489 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34490
34491         * row-indexes.h: fix typos.
34492         * reflection.c: adjust for typos and fix method_def_or_ref
34493         encoding in MethodImpl table.
34494
34495 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34496
34497         * reflection.c: fix entry point patching (thanks Serge!).
34498
34499 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
34500
34501         * verify.c: add check for System.Exception
34502
34503 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34504
34505         * image.c, class.c: minifix for code just c&p'ed.
34506         * reflection.c: warning fix.
34507         * object.h, loader.h, domain.c: load also StringBuilder.
34508
34509 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34510
34511         * marshal.h, marshal.c: some support code to handle complex marshaling.
34512
34513 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34514
34515         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
34516         Better signatures with vtable error dump.
34517
34518 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
34519
34520         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
34521
34522 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
34523
34524         * icall.c (ves_icall_Type_GetField): impl.
34525
34526 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34527
34528         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
34529         to retrieve a marshal description blob for a field or param.
34530
34531 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34532
34533         * reflection.h, reflection.c: change order of nested type emission
34534         to avoid table corruption. The NestedTypes table is sorted.
34535         * icall.c: change order of GetConstructor results to workaround mcs bug.
34536
34537 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34538
34539         * reflection.h, reflection.c: handle field and param marshal
34540         information.
34541
34542 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34543
34544         * icall.c, marshal.c marshal.h: more Marshal class implementation.
34545
34546 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34547
34548         * reflection.c: fix call convention.
34549
34550 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34551
34552         * reflection.h, reflection.c: mono_image_get_memberref_token()
34553         takes a type instead of a class, now. Added
34554         mono_image_get_array_token() to create tokens for the special
34555         multi-dim array methods.
34556
34557 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34558
34559         * assembly.c: handle modules (no assembly table). Split
34560         loading references in its own function.
34561         * class.c: handle moduleref resolution scope.
34562         * image.c, image.h: cache module name in image.
34563
34564 2002-06-07  Martin Baulig  <martin@gnome.org>
34565
34566         * reflection.c (mono_image_get_type_info): Only add a class layout entry
34567         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
34568
34569 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34570
34571         * icall.c: more signature fixes that used uint instead of int.
34572
34573 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34574
34575         * reflection.c: fixed signature of field refs.
34576
34577 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34578
34579         * class.c, reflection.c: handle typerefs of nested types
34580         (both on read and when writing files).
34581
34582 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34583
34584         * icall.c: fix method signatures that tried to workaround the previous
34585         typo, d'oh!
34586
34587 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34588
34589         * debug-helpers.c: fix typo.
34590
34591 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34592
34593         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
34594         rewrote the PE/COFF writing code (our programs are understood by the
34595         ms runtime, now).
34596
34597 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34598
34599         * gc.c, gc.h, icall.c: weakreference support.
34600
34601 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34602
34603         * Makefile.am, mono-config.c: use $(sysconfdir).
34604
34605 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34606
34607         * icall.c: changed default precision of Double.ToString() to 15.
34608         Fixed memory leak. Unified with Single.ToString.
34609
34610 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34611
34612         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
34613
34614 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34615
34616         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
34617         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
34618         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
34619         and myself.
34620
34621 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34622
34623         * debug-symfile.c, sysmath.c: yet more compilation fixes.
34624
34625 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34626
34627         * reflection.c, socket-io.c: more compilation fixes.
34628
34629 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34630
34631         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
34632         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
34633         unicode.c: warning and compiler compatibility fixes.
34634
34635 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34636
34637         * class.h, metadata.c: fixed warnings/compilation errors.
34638
34639 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34640
34641         * Makefile.am, mono-config.c, mono-config.h: configuration file
34642         support routines.
34643         * loader.c, loader.h: make Dll mapping configurable at runtime in the
34644         config file. Export methods to insert and lookup mappings.
34645
34646 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34647
34648         * reflection.c: handle types and boxed objects in custom attr
34649         constructors.
34650
34651 2002-05-30  Martin Baulig  <martin@gnome.org>
34652
34653         * debug-symfile.c
34654         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
34655
34656 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
34657
34658         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
34659         to lookup the implmap row for a P/Invoke method.
34660         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
34661         P/Invoke method from the runtime on an as needed basis.
34662
34663 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
34664
34665         * metadata.c (mono_metadata_parse_signature): impl.
34666
34667 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34668
34669         * class.c: handle .pack directive.
34670
34671 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34672
34673         * object.c: initialize static fields with RVA data.
34674
34675 2002-05-25  Martin Baulig  <martin@gnome.org>
34676
34677         * debug-symfile.c
34678         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
34679
34680 2002-05-24  Martin Baulig  <martin@gnome.org>
34681
34682         * debug-symfile.c
34683         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
34684         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
34685         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
34686
34687 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34688
34689         * object.c: special case string ctros in invoke.
34690         * gc.c: silly whitespace changes.
34691
34692 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
34693
34694         * threadpool.[ch]: impl. a threadpool that can
34695         be used by mint and mono.
34696
34697 2002-05-22  Martin Baulig  <martin@gnome.org>
34698
34699         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
34700         The first argument is now a `MonoReflectionModuleBuilder *', the return
34701         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
34702         `methods' field to get the method builder.  The `token' argument is the
34703         unfixed token.
34704
34705         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
34706         invalid characters instead of g_assert_not_reached()ing.  This seems
34707         to be the behaviour of mscorlib.
34708
34709 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
34710
34711         * object.c (mono_runtime_invoke_array): applied patch from Rachel
34712         Hestilow to fix bug #25104
34713
34714 2002-05-21  Martin Baulig  <martin@gnome.org>
34715
34716         * debug-symfile.c (mono_debug_find_source_location): New function.
34717         Looks up an IL offset in the line number table and returns the source
34718         location as a string.
34719
34720 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34721
34722         * icall.c:
34723         (mono_double_ToStringImpl): changed %f by %g until we have something
34724         better.
34725
34726 2002-05-21  Nick Drochak  <ndrochak@gol.com>
34727
34728         * icall.c : Use different name for Math.Pow's icall.  Needed to check
34729         parameters first in C#.
34730
34731 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34732
34733         * icall.c, reflection.h: added icall to get info about an event.
34734
34735 2002-05-20  Radek Doulik  <rodo@ximian.com>
34736
34737         * object.c (mono_value_box): don't use memcpy for boxing on BIG
34738         endian
34739         (mono_value_box): don't use memcpy for small sizes on
34740         architectures with unaligned access
34741
34742 2002-05-20  Martin Baulig  <martin@gnome.org>
34743
34744         * reflection.c (mono_reflection_setup_internal_class): Don't crash
34745         if `tb->parent == NULL'.
34746         (mono_reflection_create_internal_class): New function.  This is
34747         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
34748         for enum types.
34749
34750         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
34751         New interncall.
34752
34753 2002-05-19  Martin Baulig  <martin@gnome.org>
34754
34755         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
34756         argument to get the length, don't default to the array length.
34757
34758 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
34759
34760         * assembly.c (mono_assembly_setrootdir): New function used to
34761         override the MONO_ASSEMBLIES directory.
34762
34763 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34764
34765         * icall.c: ValueType_GetHashCode() initialize local var.
34766
34767 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34768
34769         * reflection.c: sort custom attributes table.
34770
34771 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34772
34773         * reflection.c: support named args in custom attributes (write support).
34774
34775 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34776
34777         * reflection.c: fix finally position calculation.
34778
34779 2002-05-15  Radek Doulik  <rodo@ximian.com>
34780
34781         * reflection.c: fixed endianess at many places
34782
34783         * icall.c (ves_icall_InitializeArray): comment out debug msg
34784
34785 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
34786
34787         * object.c (mono_unhandled_exception): new function to handle
34788         unhandled exceptions.
34789         (mono_unhandled_exception): call the UnhandledException event.
34790         (mono_runtime_delegate_invoke): impl.
34791
34792 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
34793
34794         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
34795         returns the RVA, not the direct pointer to the data. Handle the case
34796         when the class size is fixed.
34797
34798 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34799
34800         * reflection.c: fix some endianess issues.
34801
34802 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
34803
34804         * object.c (mono_runtime_invoke): is now able to catch exceptions.
34805
34806         * threads.c (mono_thread_init): added a callback which is invoked
34807         at thread start.
34808
34809 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34810         
34811         * icall.c: make GetHashCode return non-negative values.
34812
34813 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34814
34815         * object.c, icall.c, gc.c: revert to address-based hashcode.
34816
34817 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
34818
34819         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
34820
34821 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34822
34823         * icall.c, class.c: special case <Module>.
34824
34825 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
34826
34827         * icall.c: fix bug in GetNow().
34828
34829 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
34830
34831         * object.c (mono_runtime_class_init): make sure that we call all
34832         static class constructors.
34833
34834 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34835
34836         * reflection.c: sort methodsemantics table.
34837
34838 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34839
34840         * reflection.h, reflection.c: honour init locals setting.
34841
34842 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
34843
34844         * icall.c: copied Double ToStringImpl for Single ToStringImpl
34845
34846 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34847
34848         * reflection.c: support ContructorBuilders in attribute blob creation.
34849
34850 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34851
34852         * reflection.c: some changes to build a binary that can be run
34853         directly in windows.
34854
34855 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
34856
34857         * loader.c: print a big message when an icall can't be found.
34858
34859 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34860
34861         * string-icalls.c: fix bug 24248.
34862
34863 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34864
34865         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
34866         icall.c, reflection.h: separate assembly loading by pathname and by
34867         assembly name. Use the MONO_PATH env var to search for assemblies.
34868
34869 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34870
34871         * assembly.c, image.h: add some support for assemblies
34872         with multiple modules.
34873         * class.c, class.h: export mono_class_from_typeref().
34874         * loader.c: remove duplicated code and use mono_class_from_typeref(),
34875         instead.
34876
34877 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34878
34879         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
34880         documentation says (the ECMA one is correct).
34881
34882 2002-05-02  Dick Porter  <dick@ximian.com>
34883
34884         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
34885         Don't name the synchronisation mutex.
34886
34887 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
34888
34889         * rand.c
34890         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
34891         Make the prototypes match.
34892         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
34893         Same.
34894
34895         * icall.c
34896         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
34897         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
34898         all systems have tm.tm_zone, so use strftime() with %Z to print
34899         the timezone abreviation into a temp string.
34900
34901         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
34902         rather than mono_array_addr() on a MonoString on Big Endian
34903         machines.
34904
34905 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
34906
34907         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
34908         fix bug 24041
34909
34910 2002-04-30  Dick Porter  <dick@ximian.com>
34911
34912         * socket-io.c: Cope with SOCKET being an integer rather than a
34913         pointer now.
34914
34915         * threads.c: Added Thread_free_internal, to deal with thread
34916         handle cleanup.  Moved calls to handle_store() and handle_remove()
34917         to start_wrapper(), so each can only be called once.  Allocate
34918         synchronisation blocks with GC_malloc(), and use GC finalisation
34919         to close the handles.
34920
34921         * icall.c: added System.Threading.Thread::Thread_free_internal
34922
34923 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34924
34925         * icall.c: support Environment.Exit, CommandLineArgs().
34926
34927 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34928
34929         * object.c, object.h: added mono_runtime_run_main () and
34930         mono_runtime_get_main_args () for use in System.Environment.
34931
34932 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34933
34934         * gc.c: fix thinko, enable actual finalization since the jit is now
34935         fixed.
34936
34937 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34938
34939         * gc.c, object.c: take into account that an object may be offset wrt the address
34940         returned by GC_malloc().
34941
34942 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
34943
34944         * image.c: handle files without entries in the assembly table (modules).
34945
34946 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
34947
34948         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
34949         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
34950         allowed to be null when it's System.Object class setup.
34951
34952 2002-04-27  Martin Baulig  <martin@gnome.org>
34953
34954         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
34955         if `tb->parent == NULL' rather than crashing.
34956
34957 2002-04-28  Nick Drochak  <ndrochak@gol.com>
34958
34959         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
34960         calling acos() where asin() should have been called.
34961
34962 2002-04-26  Martin Baulig  <martin@gnome.org>
34963
34964         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
34965         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
34966         there's a subdirectory called `System', but we don't want to read that
34967         subdirectory as an assembly.
34968
34969 2002-04-25  Martin Baulig  <martin@gnome.org>
34970
34971         * debug-symfile.c: Reflect latest MonoString changes.
34972
34973 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34974
34975         * rand.c, rand.h: instance method icalls need to have an explicit
34976         this pointer as first argument in the C implementation.
34977
34978 2002-04-25  Nick Drochak <ndrochak@gol.com>
34979
34980         * icall.c: Fix typo in map for GetNonZeroBytes
34981
34982 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34983
34984         * string-icalls.c : String does now passes unit tests without any 
34985         errors, the following changes has been made:
34986         
34987         Implemented replace methods.
34988         Renaming of methods to (try) follow the standard.
34989         Fixed compare ordinal
34990         Made all memory allocated directly to function instead of via icall function.
34991         Small performance fix in is_in_array function
34992                         
34993  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
34994
34995         c (mono_string_Internal_ctor_charp_int_int):
34996         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
34997         sindex < 0, throw ArgumentOutOfRangeException instead of
34998         ArgumentNullException.
34999
35000         Added new check for length == 0, however
35001         I need to make it return String.Empty from the C code.
35002         
35003         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
35004         that calculate the length for us here.
35005         
35006         (mono_string_Internal_ctor_sbytep_int_int): Replaced
35007         mono_string_new_utf16 with mono_string_new, since value is utf8.
35008
35009 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35010
35011         * object.c: register the object for finalization if needed.
35012         Allocate one more char in the string for the terminating 0 char.
35013
35014 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35015
35016         * class.c, class.h, image.c: check if a type implemenst a destructor.
35017         Use the proper key for array class lookups.
35018         * icall.c: register the icalls in the System.GC class.
35019         * gc.c, gc.h: GC-related functions and icalls.
35020
35021 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35022
35023         * icall.c:
35024         * socket-io.c:
35025         * unicode.c: free some strings gotten from mono_string_to_utf8 and
35026         changed a couple of free () by g_free ().
35027
35028         * decimal.c: one-liner in the comments for decimal2string ().
35029
35030 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35031
35032         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
35033
35034 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35035
35036         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
35037         * object.c (mono_runtime_invoke_array) : handle null in params
35038
35039 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35040
35041         * string-icalls.c: fixed bug in split (one off bug)
35042
35043 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35044
35045         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
35046         * icalls.c: added String::Equals as internal method
35047
35048 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35049
35050         * threads.c: fixed bug in the double interlocked functions
35051
35052 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
35053
35054         * threads.c: implemented all of the new interlocked icalls.
35055         * string-icalls.c: fix a bug in insert.
35056         * icalls.c: added the icalls for interlocked, removed old string functions.
35057         
35058 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35059
35060         * loader.c: fix off-by-one error when reading argument names.
35061
35062 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35063
35064         * profiler.c: win32 counter implementation (untested).
35065         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
35066         (the latter needs testing and more complete impl. from win32 folks).
35067
35068 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
35069
35070         * object.c: mono_array_new_full workaround mono_array_class_get
35071         problem.
35072
35073 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35074
35075         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35076         * object.h (mono_string_chars): Changed casting type.
35077
35078 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35079
35080         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35081                            method signatures to use gunichar2 instead of gint16.
35082
35083 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
35084
35085         * object.h, object.c: domain-specific versions of mono_object_new and
35086         mono_array_new.
35087
35088 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
35089
35090         * object.c: changed String layout
35091
35092         * string-icalls.c (mono_string_Internal_ctor_chara): added
35093         internal string constructors.
35094
35095 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35096
35097         * threads.c: pass 'this' to the thread start routine.
35098
35099 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35100
35101         * string-icalls.c: fix IndexOf and LastIndexOf. Now
35102         InternalCompareStr don't call twice mono_string_cmp_char for the last
35103         character. Improved performance in mono_string_cmp_char.
35104
35105 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35106
35107         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35108         code into its own library: libmonoruntime.
35109
35110 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
35111
35112         * object.h, object.c: changed array format so that szarrays do not
35113         require a bounds structure.
35114         * icall.c, appdomain.c: support for new szarray format.
35115
35116 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35117
35118         * metadata.c: compare also the retuns type when comparing signatures:
35119         we didn't do this as an optimization since really overloaded methods
35120         must differ also in the arguments, but this doesn't work with
35121         low-level IL code (or when using explicit conversion operators: see
35122         bug#23498 for an example).
35123
35124 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35125
35126         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35127
35128 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35129
35130         * icall.c: make MonoType::GetElementType its own icall.
35131
35132 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35133
35134         * icall.c: remove MonoMethod_get_Name().
35135         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35136         object.
35137
35138 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35139
35140         * string-icalls.c: optimized a few methods.
35141
35142 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35143
35144         * icall.c: added all new string internal calls
35145         * string-icalls.c: added, new string internal call implementation.
35146         * object.c: added mono_string_new_size for allocating a string a size
35147
35148 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35149
35150         * object.c (mono_object_isinst): use the same code as in the
35151         optimized x86 version.
35152
35153 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35154
35155         * profiler.c: TSC-based timer code (faster and more accurate).
35156         Not hooked up in configure, yet (set USE_X86TSC to 1).
35157
35158 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35159
35160         * profiler.c, profiler.h: track time spent compiling methods.
35161         * threads.c: track thread creation/destruction.
35162
35163 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35164
35165         * profiler.c, profiler.h, profiler-private.h: profiling interface
35166         and sample implementation. Moved here so that it can be used also by
35167         the jit.
35168
35169 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35170
35171         * reflection.c, reflection.h: keep types and other handles separate in
35172         the hash tables for referred tokens. Add guid for modules.
35173
35174 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35175
35176         * assembly.c: fix bugs found with valgrind.
35177         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35178
35179 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35180
35181         * threads: added icall support for getting current domain for
35182                    the thread.
35183  
35184 2002-04-13  Martin Baulig  <martin@gnome.org>
35185
35186         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35187         (MonoDebugVarInfo): Added `index' field for register based addresses.
35188         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35189         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35190         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35191         `MonoDebugVarInfo *this_var'.
35192
35193         * debug-symfile.c (relocate_variable): New static function to write
35194         a location description for a local variable or method parameter.
35195
35196 2002-04-12  Martin Baulig  <martin@gnome.org>
35197
35198         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35199         stack offset and begin/end scope address of a local variable.
35200         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35201         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35202         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35203
35204         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35205         Added new relocation types for start/end scope of a local variable.
35206
35207 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35208
35209         * object.h: add mono_object_domain() macro.
35210         * reflection.c: handle typespecs.
35211         * icall.c: MonoMethod::get_Name() implementation.
35212
35213 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35214
35215         * icall.c: String::GetHashCode() icall implementation.
35216
35217 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35218
35219         * icall.c: String::IndexOfAny icall.
35220         * object.c, object.h: make array->max_length more useful.
35221         Intrduced mono_object_class() and mono_string_length() macros.
35222
35223 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35224
35225         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35226         instead of g_unichar_isdigit.
35227
35228 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35229
35230         * icall.c: Implement a simple Double.ToString().
35231
35232 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35233
35234         * appdomain.h: only io-layer.h is supposed to be included.
35235         * icall.c: explicitly import environ. Fix warning.
35236
35237 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35238
35239         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35240                 return true even if it's not Daylight Savings time.
35241                 Only return false for the case where the function isn't
35242                 implemented for a plaform (read Windows).
35243
35244 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35245
35246         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35247         data with a mutex.
35248
35249 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35250
35251         * mempool.c (mono_mempool_alloc): only use g_malloc when
35252         absolutely necessary.
35253
35254 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35255
35256         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35257
35258         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35259         (mono_class_proxy_vtable): use domain mempool
35260
35261 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35262
35263         * appdomain.h, appdomain.c: split initialization that requires the
35264         execution engine support into mono_runtime_init().
35265
35266 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35267
35268         * class.c (mono_class_init): don't include vtable inside MonoClass
35269         to save some memory, gather some statistics.
35270         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35271
35272 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35273
35274         * icall.c: internalcall implementation for ValueType.Equals().
35275
35276 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35277
35278         * object.c (mono_message_init): moved 
35279         (mono_runtime_exec_main): new arch. independent impl.
35280         (mono_runtime_invoke_array): new method - like
35281         mono_runtime_invoke, but you can pass an array of objects.
35282         (mono_remoting_invoke): new arch. independent impl.
35283         (mono_message_invoke): new arch. independent impl.
35284         (mono_runtime_class_init): new arch. independent impl.
35285         (mono_runtime_object_init): new arch. independent impl.
35286
35287 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35288
35289         * metadata.c, object.c, reflection.c: documented the exported
35290         functions.
35291
35292 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35293
35294         * icall.c: simpler code to pass the assembly builder data to corlib.
35295         Implement GetNestedTypes() internalcall.
35296
35297 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35298
35299         * class.c: warn if a type can't be loaded.
35300
35301 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35302
35303         * image.h: typedef MonoImageOpenStatus
35304         * types.h: removed unused file
35305         
35306 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35307
35308         * icall.c: Enum_ToObject accepts enum value arguments.
35309
35310 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35311
35312         * class.c: move initialization of properties, events and nested
35313         classes, so that they happen for interfaces, too.
35314
35315 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35316
35317         * icall.c: cleanup some ugly casts in Array_SetValue*.
35318
35319 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35320
35321         * icall.c: the values array fro enums is of the correct type, now.
35322         Implement (correctly) getFullName instead of assQualifiedName for
35323         MonoType.
35324         * reflection.h, reflection.c: added mono_type_get_name ().
35325
35326 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35327
35328         * assembly.c, image.h: for each MonoImage, record from wich assembly
35329         it was loaded.
35330         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35331         Make Type.Assembly work.
35332
35333 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35334
35335         * debug-symfile.h: use char* instead of gpointer to avoid
35336         unnecessary casts.
35337
35338         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35339
35340         * icall.c (ves_icall_InternalExecute): impl. FielSetter
35341         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35342
35343 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
35344
35345         * icall.c (mono_message_init): impl. (code cleanup)
35346         (ves_icall_InternalExecute): impl. FieldGetter
35347
35348         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
35349         defined we call all (non-static)methods through the vtable. 
35350
35351 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
35352
35353         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
35354         finalizer even though the memory is still referenced (and the chunk of
35355         memory is not freed).
35356
35357 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35358
35359         * assembly.c: fix brokeness.
35360
35361 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
35362
35363         * class.c: kill some warnings. Check explicit interface method
35364         implementation also without considering the namespace.
35365         Load also literal strings in static class data.
35366
35367 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
35368
35369         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
35370         (default_assembly_name_resolver): Make the resolver take the
35371         "base" directory where the assembly was originally defined, so we
35372         can load DLLs that are in the same directory as the assembly that
35373         is being referenced.
35374
35375 2002-03-28  Dick Porter  <dick@ximian.com>
35376
35377         * file-io.h: 
35378         * file-io.c:
35379         * socket-io.c: 
35380         * unicode.h: 
35381         * unicode.c: Warning cleanups
35382
35383 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
35384
35385         * object.h, reflection.h: use the correct type instead of MonoObject.
35386
35387 2002-03-28  Martin Baulig  <martin@gnome.org>
35388
35389         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
35390         (mono_debug_update_symbol_file): Initialize classes if necessary.
35391
35392 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35393
35394         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
35395         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
35396
35397 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
35398
35399         * assembly.h: fix function prototype.
35400         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
35401         * mono-endian.h: use const cast.
35402
35403 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35404
35405         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
35406
35407 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35408
35409         * loader.c: don't assert when a typeref can't be loaded, give
35410         a chance to the runtime to trow an exception instead.
35411         * loader.h: fix warning.
35412
35413 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35414
35415         * class.c (mono_class_proxy_vtable): added proxy support
35416
35417 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
35418
35419         * icall.c: removed last of PAL calls, added System.Environment
35420         * file-io.h, file-io.c: MonoIO implementation
35421         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
35422
35423 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35424
35425         * appdomain.c: do not use the byte marker in ldstr table lookup.
35426         * debug-helpers.c: allow two ':' to separate class and method name.
35427         * object.c: allocate arrays bounds with the GC, too.
35428         * verify: add a few more checks.
35429
35430 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
35431
35432         * reflection.c: output also literal strings. Allocate parameter data
35433         with GC_malloc() (thanks, Martin, for catching this!).
35434
35435 2002-03-26  Martin Baulig  <martin@gnome.org>
35436
35437         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
35438         include the `this' offset in the `param_offsets'.
35439
35440 2002-03-25  Martin Baulig  <martin@gnome.org>
35441
35442         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
35443         mono_debug_get_class() function to get the classes. Added new
35444         relocation types for arrays and strings.
35445         (mono_debug_get_class): New static function to search in all
35446         referenced assemblies for a metadata token.
35447
35448         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
35449
35450 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
35451
35452         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
35453         hold gc-allocated objects. Make the string heap a stream like the
35454         others. Removed duplicated code when writing stream info.
35455         Added asserts to catch possible buffer overflows. Set the sorted map
35456         for tables that need sorting. Added some documentation.
35457
35458 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
35459
35460         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
35461         for interned strings and vtables.
35462
35463 2002-03-24  Martin Baulig  <martin@gnome.org>
35464
35465         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
35466         it in the array since it was created with g_slist_prepend().
35467
35468 2002-03-24  Martin Baulig  <martin@gnome.org>
35469
35470         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
35471         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
35472         (mono_debug_method_from_token): Renamed to
35473         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
35474         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
35475
35476         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
35477         relocation types.
35478
35479         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
35480
35481 2002-03-24  Martin Baulig  <martin@gnome.org>
35482
35483         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
35484         (mono_debug_method_from_token): New func.
35485
35486         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
35487         New interncall, calls mono_debug_local_type_from_signature().
35488         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
35489         calls mono_debug_method_from_token().
35490
35491 2002-03-23  Martin Baulig  <martin@gnome.org>
35492
35493         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
35494         specifies the number of bytes to be converted, not the array size.
35495         Return the number of chars, not the number of bytes.
35496         (ves_icall_iconv_get_chars): The `byteCount' argument
35497         specifies the number of bytes to be converted, not the array size.
35498
35499 2002-03-23  Martin Baulig  <martin@gnome.org>
35500
35501         * reflection.h (MonoReflectionSigHelper): New type.
35502
35503         * reflection.c (mono_reflection_sighelper_get_signature_local),
35504         (mono_reflection_sighelper_get_signature_local): New functions.
35505
35506         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
35507         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
35508         interncalls.
35509
35510 2002-03-23  Martin Baulig  <martin@gnome.org>
35511
35512         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
35513         is_writeable is set.
35514         (mono_raw_buffer_update): New function to write the modified map
35515         back to disk.
35516
35517         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
35518
35519         * debug-symfile.c (mono_debug_update_symbol_file): Call
35520         mono_raw_buffer_update() when done writing.
35521
35522 2002-03-23  Martin Baulig  <martin@gnome.org>
35523
35524         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
35525
35526         * debug-symfile.c: Added support for arguments and local variables.
35527
35528 2002-03-23  Dick Porter  <dick@ximian.com>
35529
35530         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
35531         protected by ifdefs, hence breaking the w32 build.
35532
35533 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35534
35535         * object.c: implement is_interned() the right way.
35536
35537 2002-03-21  Martin Baulig  <martin@gnome.org>
35538
35539         * debug-symfile.[ch]: New files to handle debugging information
35540         files. There's also support to dynamically update these symbol
35541         files to include machine dependent information.
35542
35543 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
35544
35545         * threads.c (mono_thread_create): new function to create thread
35546         from C
35547
35548 2002-03-20  Martin Baulig  <martin@gnome.org>
35549
35550         * icall.c (ves_icall_InternalInvoke): Create a new object if the
35551         method is a constructor.
35552         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
35553         points to ves_icall_InternalInvoke().
35554
35555 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
35556
35557         * file-io.c: Flush shouldn't throw exceptions.
35558
35559 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
35560
35561         * file-io.c: FileStream flush support; FileSetLength now
35562         restores file pointer.
35563
35564 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35565
35566         * class.c: set image for pointer classes.
35567
35568 2002/03/19  Nick Drochak <ndrochak@gol.com>
35569
35570         * sysmath.c: Forgot one.
35571
35572 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
35573
35574         * sysmath.c: Avoid redefining existing names.
35575
35576 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
35577
35578         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
35579         handled by runtime as icall rather than dllimport from libm.so
35580         * file-io.c, file-io.h: fixed handle argument type.
35581
35582 2002-03-18  Dick Porter  <dick@ximian.com>
35583
35584         * reflection.c (mono_image_get_type_info): rename interface to
35585         iface, because of "#define interface struct" on windows.
35586
35587 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
35588
35589         * class.c, class.h: rename and export mono_ptr_class_get().
35590         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
35591         * reflection.c, reflection.h, icall.c: better/saner type name
35592         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
35593         method signatures.
35594
35595 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
35596
35597         * class.c (mono_class_init): removed hardcoded GHC_SLOT
35598
35599         * icall.c (ves_icall_InternalInvoke): impl.
35600
35601 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35602
35603         * reflection.c: output the interface map table, too.
35604
35605 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35606
35607         * class.c (class_compute_field_layout): separate computation of 
35608         static field layout
35609
35610 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
35611
35612         * icall.c: added System.Buffer support.
35613         * file-io.c: moved file icalls from PAL to FileStream.
35614
35615 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35616
35617         * icall.c (ves_icall_System_Object_GetHashCode): impl.
35618
35619 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
35620
35621         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
35622
35623 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35624
35625         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
35626
35627 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35628
35629         * debug-helpers.{c,h}: moved here from monograph some useful functions
35630         to locate a method by name/signature in a class or image. Included
35631         also a small and flexible IL disassembler.
35632
35633 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35634
35635         * reflection.c: fixup tokens in methods with small header size, too.
35636
35637 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
35638
35639         * object.c (mono_string_to_utf8): remove assert(!error), instead
35640         print a warning. 
35641
35642 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
35643
35644         * icall.c: update to the new mono_Array_class_get interface.
35645
35646 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35647
35648         * appdomain.c, object.c: Boehm-GC enable.
35649         * icall.c: make get_data_chunk() support split data requests.
35650         Ensure a class is initialized in more cases. Return only the first
35651         property found in GetProperties() or the compiler gets confused. 
35652         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
35653         * reflection.h, reflection.c: add fixup mechanism for field and method
35654         tokens. Initialize assembly->typeref in a single place. Output
35655         properties after events. Support custom attributes for events, too.
35656         Typo fix for paramter custom attrs.
35657
35658 2002-03-07  Martin Baulig  <martin@gnome.org>
35659
35660         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
35661
35662 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
35663
35664         * class.c (mono_array_class_get): fix. for multi. dim. arrays
35665
35666 2002-03-06  Martin Baulig  <martin@gnome.org>
35667
35668         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
35669         non-zero lower bounds. See testcases #F10-#F13.
35670
35671 2002-03-05  Martin Baulig  <martin@gnome.org>
35672
35673         * exception.c (mono_get_exception_argument_out_of_range): New exception.
35674
35675         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
35676         ves_icall_System_Array_GetValue(), only calculate the absolute array position
35677         here.
35678         (ves_icall_System_Array_SetValue): Likewise.
35679         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
35680         as argument and does the actual work. This function is used when copying a
35681         multi-dimensional array.
35682         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
35683         now do all the widening conversions of value types.
35684         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
35685
35686 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35687
35688         * class.c: remove some magic numbers and use the smbolic names,
35689         instead. Added init_events() to load event info at class init time.
35690         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
35691         and mono_metadata_methods_from_event().
35692         * reflection.h, reflection.c: added support for writing out the evnets
35693         related information.
35694
35695 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35696
35697         * reflection.h, icall.c: use a different method (GetInterfaces)
35698         to gather interface info and add isbyref, isprimitive and
35699         ispointer to the ves_icall_get_type_info() return value.
35700
35701 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35702
35703         * class.h: stared adding support for events.
35704         * icall.c: split find_members implementation. Added debug icall to get
35705         the address of an object.
35706         * reflection.c: handle TypeBuilders in mono_type_get_object().
35707
35708 2002-03-01  Martin Baulig  <martin@gnome.org>
35709
35710         * icall.c (ves_icall_System_Array_GetLength): This must throw an
35711         ArgumentOutOfRangeException(), not an ArgumentException().
35712         (ves_icall_System_Array_GetLowerBound): Likewise.
35713         (ves_icall_System_Array_GetValue): Improved argument checking.
35714         (ves_icall_System_Array_SetValue): Improved argument checking.
35715
35716 2002-03-01  Martin Baulig  <martin@gnome.org>
35717
35718         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
35719         called with invalid arguments rather than just dying with g_assert().
35720         (ves_icall_System_Array_SetValue): Likewise.
35721         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
35722         raise a NotImplementedException instead.
35723         (ves_icall_System_Array_GetLength): Added argument checking.
35724         (ves_icall_System_Array_GetLowerBound): Added argument checking.
35725
35726 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
35727
35728         * object.h (mono_assert): new macros mono_assert and
35729         mono_assert_not_reached
35730
35731 2002-02-28  Martin Baulig  <martin@gnome.org>
35732
35733         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
35734         and "System::String::IsInterned" to "System::String::_IsInterned".
35735
35736 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
35737
35738         * icall.c: remove hacks for typebuilder. Added icall to create a
35739         modified type from a tybebuilder.
35740         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
35741         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
35742         to create a backing MonoClass for a TypeBuilder.
35743
35744 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35745
35746         * class.c, class.h: more refactoring of class init.
35747         Export mono_class_setup_mono_type() and mono_class_setup_parent().
35748
35749 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
35750
35751         * marshal.c, marshal.h: start of marshaling interface.
35752
35753 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
35754
35755         * icall.c: fix order in assembly qualified name icall.
35756
35757 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
35758
35759         * class.c: do not free str, since we store it in the hash table.
35760         * reflection.h: add label field to MonoILExceptionInfo.
35761         * reflection.c: handle references to more than one assembly. Handle
35762         case when there isn't a module created in the assembly.
35763
35764 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35765
35766         * class.c: Fix typo. Start refactoring of class init code.
35767
35768 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35769
35770         * appdomain.c: exit with 1 on error.
35771         * class.c: we already have the name in MonoClassField.
35772         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
35773         MonoStreamHeader instead of an offset of image->raw_metadata.
35774
35775 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
35776
35777         * appdomain.c (mono_init): Be even more descriptive about the error.
35778
35779 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
35780
35781         * appdomain.c: give the user an informative message when corlib can't
35782         be loaded.
35783
35784 2002-02-26  Martin Baulig  <martin@gnome.org>
35785
35786         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
35787         New icall to get the time zone data.
35788
35789 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35790
35791         * reflection.c: set virtual and raw size of section correctly.
35792         * threads.c: transfer domain information to newly created threads.
35793
35794 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
35795
35796         * class.c: when instancing a class in a domain, load the default
35797         vaules for static fields from the constant table. Fix System.Enum to
35798         not be an enum.
35799         * icall.c: implement Object::GetType() internalcall. Implemented
35800         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
35801         Fixed checking of binding flags in find_members().
35802         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
35803         * reflection.c: handle enumerations when writing to the constant
35804         table. Use a different object cache for types.
35805
35806
35807 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
35808
35809         * object.c (mono_object_isinst): fix for arrays
35810
35811         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
35812
35813 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
35814
35815         * object.c: don't use mprotect ()  and fix intern pool hash table
35816         lookup for big endian systems.
35817
35818 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35819
35820         * icall.c: change type_is_subtype_of () signature.
35821
35822 2002-02-21  Mark Crichton  <crichton@gimp.org>
35823
35824         * rand.c, rand.h: Added random number generator for
35825         System.Security.Cryptography classes.
35826
35827         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
35828
35829         * icall.c: Added System.Security.Cryptography calls.
35830
35831 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
35832
35833         * class.c, icall.c, metadata.c: better support for pointer types.
35834         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
35835         * reflection.c: Add support for getting custom attrs for properties
35836         and simplify some code.
35837
35838 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35839
35840         * icall.c: change getToken () and add custom attribute GetBlob()helper
35841         method.
35842         * reflection.h: add custom attrs array to the reflection builder structures.
35843         * reflection.c: encode and emit custom attributes for all the relevant
35844         reflection objects. Cache fieldref and methodref tokens. Change
35845         mono_image_create_token() interface to take a MonoDynamicAssembly.
35846         More complete custom attributes decoder. Load custom attributes for
35847         Assembly, Field, Method and Constructor objects, too. Make the
35848         returned array an Attribute[] one, not object[]. Added
35849         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
35850         custom attribute constructor.
35851
35852 2002-02-20  Dick Porter  <dick@ximian.com>
35853
35854         * icall.c:
35855         * rawbuffer.c:
35856         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
35857         problem code out for now).
35858
35859 2002-02-19  Radek Doulik  <rodo@ximian.com>
35860
35861         * object.c (mono_ldstr): use hash table to avoid multiple swapping
35862
35863 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
35864
35865         * icall.c: register the GetCustomAttributes method.
35866         * object.c, object.h: add mono_string_new_len ().
35867         * reflection.h, reflection.c: added mono_runtime_invoke(),
35868         mono_install_runtime_invoke(). Added
35869         mono_reflection_get_custom_attrs () to load custom attributes and
35870         create the attribute objects.
35871
35872 2002-02-19  Dick Porter  <dick@ximian.com>
35873         * threads-dummy-types.c:
35874         * threads-dummy-types.h:
35875         * threads-dummy.c:
35876         * threads-dummy.h:
35877         * threads-pthread-types.c:
35878         * threads-pthread-types.h:
35879         * threads-pthread.c:
35880         * threads-pthread.h:  Deleted obsolete files
35881
35882 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
35883
35884         * class.c (mono_class_vtable): runtime init the class when we
35885         allocate static class data.
35886
35887         * icall.c (ves_icall_System_Array_SetValue): check for null values.
35888
35889         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
35890         and String - but we will need generic marshalling support in the
35891         future. 
35892         (mono_init): set the domain name in a ms compatible way
35893
35894         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
35895         String[].
35896
35897 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
35898
35899         * object.c (mono_array_clone): use alloca() instead of g_malloc  
35900         for sizes
35901
35902         * appdomain.c (mono_domain_unload): impl.
35903
35904 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
35905
35906         * appdomain.c, object.c: fix intern pool implementation.
35907         * class.c: fix alignment code.
35908
35909 2002-02-16  Radek Doulik  <rodo@ximian.com>
35910
35911         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
35912         and s2 > s1, just copy lower bytes to be compatible with little
35913         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
35914         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
35915
35916         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
35917         force big_endian to be 1 for big endian machines 
35918         (ves_icall_iconv_new_decoder): ditto
35919
35920 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
35921
35922         * socket-io.c (convert_sockopt_level_and_name): If the system
35923         doesn't define SOL_IP or SOL_TCP, get them by hand using
35924         getprotobyname() and caching the values (because this could be a
35925         slow operation).
35926         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
35927         Use the appropriate struct when the system does support it. Ie,
35928         not all systems have struct ip_mreqn so use struct ip_mreq when
35929         appropriate.
35930
35931 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
35932
35933         * reflection.c: handle finally clauses.
35934
35935 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
35936
35937         * socket-io.c: use g_snprintf() instead of snprintf.
35938
35939 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35940
35941         * reflection.c (mono_param_get_objects): Cast second argument to
35942         mono_method_get_param_names to a const char** to silence the
35943         compiler warning.
35944
35945         * appdomain.c (mono_domain_assembly_open): Put parens around the
35946         truth statement in the for-loop.
35947
35948         * unicode.c (iconv_convert): Got rid of a compiler warning about
35949         int i being unused when the system has a new iconv.
35950         (iconv_get_length): Same.
35951
35952         * image.c (load_class_names): Cast the second argument to
35953         g_hash_table_insert() to char* to hush compiler warnings about the
35954         arg being a const.
35955         (mono_image_open): Same here.
35956
35957         * socket-io.c: Don't conditionally include sys/filio.h or
35958         sys/sockio.h here anymore since we now get them from
35959         io-layer/io-layer.h
35960         (inet_pton): If the system doesn't support inet_aton, implement
35961         using inet_addr and also #define INADDR_NONE if it isn't defined
35962         by the system.
35963
35964 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
35965
35966         * metadata.c, metadata.h: added function to get packing and size info
35967         of a typedef.
35968         * reflection.h, reflection.c: handle field RVA data. Save info about
35969         the table layout if needed. Assign typedef indexes to all the types
35970         before dumping the info about them to avoid forward reference problems.
35971
35972 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
35973
35974         * socket-io.c (convert_sockopt_level_and_name): ifdef
35975         SO_ACCEPTCONN because it is not defined on my system (old debian)
35976
35977 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35978
35979         * opcode.c: use stddef.h to get NULL.
35980
35981 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35982
35983         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
35984         for FIONBIO, FIONREAD and SIOCATMARK.
35985         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
35986         define INADDR_NONE and besides, inet_addr() is deprecated and
35987         should not be used. Use inet_pton() instead - it also has the
35988         added bonus that it can easily handle IPv6 addresses as well.
35989         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
35990
35991 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35992
35993         * decimal.c: remove _MSC_VER conditional.
35994
35995 2002-02-13  Dick Porter  <dick@ximian.com>
35996
35997         * socket-io.c: 
35998         * icall.c: Internal calls for Blocking, Select, Shutdown,
35999         GetSocketOption and SetSocketOption
36000
36001 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36002
36003         * assembly.cs: better resolver: use it instead of some kludgy
36004         code.
36005
36006 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
36007
36008         * reflection.c: the best way to speed-up the compiler is to avoid
36009         infinite loops.
36010
36011 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
36012
36013         * class.c (mono_class_vtable): changed the object layout
36014         (obj->vtable->class). 
36015         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
36016
36017 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36018
36019         * assembly.c: look for assemblies in the assembly dir, too.
36020
36021 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36022
36023         * class.c: fix thinko in mono_class_from_type().
36024
36025 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36026
36027         * exception.h, exception.c: added TypeLoadException.
36028         * object.h, object.c: added mono_array_clone ().
36029         * icall.c: handle throwOnError in AssemblyGetType().
36030         Added Array.Clone().
36031         * opcode.h, opcode.c: use a single value for the opcode val.
36032         Compile fix for non-gcc compilers.
36033
36034 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
36035
36036         * opcodes.c, opcodes.h: export interesting info about opcodes.
36037
36038 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
36039
36040         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
36041         icalls. 
36042
36043         * class.c (class_compute_field_layout): set element_class for enums
36044         (mono_class_create_from_typedef): set element_class for normal classes
36045
36046         * icall.c (ves_icall_System_Enum_get_value): impl.
36047
36048         * class.c (mono_class_create_from_typedef): do not set valuetype
36049         flag for System.ValueType and System.Enum
36050
36051 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
36052
36053         * unicode.c (iconv_convert): fix big endian problem.
36054
36055 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36056
36057         * class.c: add asserts if we are ever going to scribble over memory.
36058         * socket-io.c: not all systems have AF_IRDA defined.
36059
36060 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
36061
36062         * class.c (class_compute_field_layout): do not consider static
36063         fields to compute alignment
36064
36065 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
36066
36067         * appdomain.c (mono_appdomain_get): impl.
36068         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
36069
36070 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36071
36072         * icall.c: ignore "file://" prefix when loading an assembly.
36073
36074 2002-01-23  Dick Porter  <dick@ximian.com>
36075
36076         * socket-io.c:
36077         * icall.c:
36078         * Makefile.am: Added socket support
36079
36080 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36081
36082         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36083         code back.  This should return the assemblies that are loaded by
36084         the runtime on behalf of an application domain. 
36085
36086         The current implementation is still broken, it just returns every
36087         assembly loaded, but until we get real applications domain this
36088         will do.
36089
36090 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
36091
36092         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36093         AppDomain object.
36094
36095 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36096
36097         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36098         the mono_class_from_name lookup.
36099         (ves_icall_get_parameter_info): ditto.
36100         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36101         method.
36102         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36103
36104 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36105
36106         * class.c: load also nested classes on class init.
36107         System.ValueType instance methods gets passed boxed
36108         values, unless methods in derived classed that get a pointer to the
36109         data.
36110         * icall.c: use better name parsing code in GetType().
36111         * image.c, image.h: add mono_image_loaded ().
36112         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36113         * reflection.c, reflection.h: added mono_reflection_parse_type().
36114
36115 2002-01-22  Veronica De Santis <veron78@interfree.it>
36116
36117         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36118         * threads.c : Added the implementation of internal calls for events
36119         * threads.h : Added prototypes of internal calls for events
36120         
36121 2002-01-21  Radek Doulik  <rodo@ximian.com>
36122
36123         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36124
36125 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36126
36127         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36128         (mono_class_value_size): use min_align
36129
36130 2002-01-20  Dick Porter  <dick@ximian.com>
36131
36132         * threads.h:
36133         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36134         so it compiles on w32.
36135
36136 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36137
36138         * metadata.c (mono_type_stack_size): impl.
36139
36140         * class.c (mono_class_get_field): impl. memberref token
36141
36142 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36143
36144         * icall.h : Added the internal calls mapping for CreateMutex_internal
36145                     and ReleaseMutex_internal.
36146         * threads.h : Added the prototype of mutexes internal calls.
36147         * threads.c : Added the implementations of mutexes internal calls.
36148
36149 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36150
36151         * metaparse.h: removed unused file.
36152         * reflection.c, reflection.h: added stream_data_align () function 
36153         to align data in streams and keep stream aligned. Add support for
36154         exception support in method headers.
36155
36156 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36157
36158         * unicode.c: make iconv_convert () return the number of bytess written
36159         in the output buffer.
36160
36161 2002-01-15  Dick Porter  <dick@ximian.com>
36162         * threads.c: Make the runtime's idea of infinite timeouts coincide
36163         with the class library's
36164
36165         Fix a particularly egregious bug in mono_thread_cleanup(). That
36166         code was so utterly bogus it must have been written on a Monday.
36167
36168 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36169
36170         * reflection.h: add subtypes field to TypeBuilder.
36171         * reflection.c: encode constants for literal fields.
36172         Handle subtypes. Fix user string token (and add a zero byte)
36173         at the end.
36174         
36175 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36176
36177         * class.c (mono_class_init): bug fix: assign slot numbers for
36178         abstract methods.
36179
36180 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36181
36182         * reflection.c: don't try to output a code RVA for abstract methods.
36183         Small fixes for method header format. Output parameter info to the
36184         ParamDef table. Save method overriding info to MethodImpl table.
36185         Fix property support. Allow typedef.extends to be a type in the
36186         building assembly.
36187         * verify.c: fix off-by-one error.
36188
36189 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36190
36191         * class.c: fix mono_class_from_mono_type () for szarray types.
36192         Remove unused cache check in mono_class_from_type_spec().
36193         * icall.c: *type_from_name () functions handle simple arrays and byref.
36194         * reflection.c: handle byref and szarray types. Handle methods without
36195         body (gets P/Invoke compilation working). Handle types and fields in
36196         get_token ().
36197         * reflection.h: add rank to MonoTypeInfo.
36198
36199 2002-01-10  Dick Porter  <dick@ximian.com>
36200
36201         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36202         internal calls
36203
36204 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36205
36206         * icall.c: initialize class in type_from_handle ().
36207         Loop also in parent classes for get_method ().
36208         * reflection.c: properly encode class and valuetype types.
36209         Start on encoding TypeBuilder types. Handle fieldrefs.
36210         Use correct length when registering a user string.
36211         Handle ConstructorBuilder and MonoMethod in get_token ().
36212         Make mono_type_get_object () aware of cached types.
36213         * object.c: back out change to mono_string_new ().
36214
36215 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36216         * object.c: mono_string_new should return a NULL when the string 
36217         passed in is NULL -- not try to deference it.
36218         
36219 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36220
36221         * icall.c: hack to make IsSubType work for TypeBuilders.
36222         * reflection.c: emit constructors before methods.
36223         Retrieve param names in mono_param_get_objects().
36224
36225 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36226
36227         * Makefile.am: fix list of headers and sources so automake 1.5
36228         doesn't complain. Removed \# at end of list.
36229
36230 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36231
36232         * reflection.c: get token for a method ref. Set return type of
36233         constructor to void.
36234         * loader.c: debug message.
36235         * class.c: typo fix.
36236
36237 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36238
36239         * icall.c: fix array init with rank > 1. FindMembers
36240         loops in parent class as well.
36241         * image.c: do not insert nested types in name cache.
36242         * reflection.c: warning fix.
36243         * reflection.h: add override method (for interface impl).
36244
36245 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36246
36247         * metadata.c: fix customattr decoding.
36248
36249 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36250
36251         * rawbuffer.cs: Added native Win32 implementation, avoids using
36252         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36253
36254 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36255
36256         * class.c: make the low-level routines handle the cache.
36257
36258 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36259
36260         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36261
36262 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36263
36264         * class.c: fix mono_array_element_size() for objects.
36265         * class.h, class.c: add properties to MonoClass and load them
36266         at init time.
36267         * icall.c: check with isinst() when assigning a value to an array
36268         instead of requiring the classes to match exactly.
36269         Implemented icall for System.Type::GetType().
36270         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36271         enums. Handle bindingflags when looking for methods and fields.
36272         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36273         and mono_metadata_methods_from_property().
36274         * reflection.h, reflection.c: added structures for propreties,
36275         parameters and enums. Implemented mono_property_get_object() and
36276         mono_param_get_objects().
36277
36278 2001-12-18  Dick Porter  <dick@ximian.com>
36279
36280         * file-io.c: Use mono_string_to_utf16() instead of
36281         mono_string_chars()
36282
36283         * object.c: Added mono_string_to_utf16(), which copies the non
36284         NULL-terminated MonoString into a new double-null-terminated
36285         buffer.
36286
36287 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36288
36289         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36290
36291 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36292
36293         * file-io.c: raise exceptions if handle is invalid.
36294
36295 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36296
36297         * assembly.c: yet another check for mscorlib.
36298         * class.c, class.h: load nesting info for classes.
36299         * icall.c: many new functions to support the Reflection classes.
36300         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36301         * reflection.h, reflection.c: mono_image_create_token(),
36302         mono_assembly_get_object(), mono_type_get_object(),
36303         mono_method_get_object(), mono_field_get_object(): methods to return
36304         objects that parallel the C representation of assemblies, types,
36305         methods, fields.
36306
36307 2001-12-11  Dick Porter  <dick@ximian.com>
36308
36309         * icall.c:
36310         * file-io.c: Internal calls for file IO.
36311
36312 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36313
36314         * tabledefs.h: missing FileAttributes.
36315         * verify.h, verify.c: use is_valid_string () to simplify and check for
36316         valid strings more correctly. Fix warnings and speeling.
36317         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36318         Check code: branches, maxstack, method calls.
36319
36320 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36321
36322         * object.c (mono_object_allocate): removed static, so that the jit
36323         can allocate value types.
36324
36325         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36326
36327 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36328
36329         * class.c: init enum types right away and register the
36330         token->MonoClass map in mono_class_create_from_typedef ().
36331         * verify.h, verify.c: first cut of the verifier.
36332         * pedump.c: add --verify switch to verify metadata tables.
36333         * tabledefs.h: add some missing enums.
36334
36335 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36336
36337         * class.c (mono_install_runtime_class_init): impl.
36338         (mono_class_init): renamed mono_class_metadata_init to
36339         mono_class_init, also removed the metadata_inited flag
36340
36341         * object.c (mono_object_isinst): use faster algorithm
36342
36343 2001-11-30  Radek Doulik  <rodo@ximian.com>
36344
36345         * mono-endian.h: reverted last change
36346         added function prototypes
36347
36348         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
36349         add mono-endian.c back
36350
36351         * mono-endian.c: returned back, as Paolo pointed out, it's needed
36352         for unaligned access, I've mistaked it with endianess. I am
36353         sorry.
36354         (mono_read16): fix reverted endianess
36355         (mono_read64): ditto
36356         (mono_read32): ditto
36357
36358 2001-11-30  Dick Porter  <dick@ximian.com>
36359
36360         * exception.c: Implement mono_exception_from_name()
36361
36362 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36363
36364         * metadata.h, metadata.c: remove params_size and locals_size and their
36365         calculation from the metadata code: they are only usefult to the
36366         interp.
36367
36368 2001-11-29  Radek Doulik  <rodo@ximian.com>
36369
36370         * object.c (mono_ldstr): swap bytes here, it's probably not the
36371         best place, but works for me now, I'll redo it once I know mono
36372         better, also note that I add PROT_WRITE and don't reset back, also
36373         note that it's only affects big endians, so x86 should be OK
36374
36375         * mono-endian.h (read16): use just glib macros for both endians
36376
36377         * mono-endian.c: removed as glib macros are used in in
36378         mono-endian.h so we don't need to care about endianess for read
36379         macros as glib does that for us already
36380
36381 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
36382
36383         * class.h, class.h: take minimum alignment into consideration so
36384         that the fields of a class remain aligned also when in an array.
36385
36386 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36387
36388         * loader.h, loader.c: add mono_method_get_param_names().
36389         * class.c: 0-init class fields.
36390
36391 2001-11-26  Dick Porter  <dick@ximian.com>
36392
36393         * icall.c:
36394         * threads-types.h:
36395         * threads.c: New file that handles System.Threading on all platforms
36396
36397         * object.c: 
36398         * object.h: Remove the synchronisation struct from MonoObject,
36399         replace it with a pointer that gets initialised on demand
36400
36401         * Makefile.am: Replace all the system-specific threading code with
36402         a single file that uses the new wrapper library
36403
36404 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
36405
36406         * class.c, class.h: add mono_install_trampoline() so that the runtime
36407         can register a function to create a trampoline: removes the ugly
36408         requirement that a runtime needed to export arch_create_jit_trampoline.
36409         * object.h, object.c: added mono_install_handler() so that the runtime
36410         can install an handler for exceptions generated in C code (with
36411         mono_raise_exception()). Added C struct for System.Delegate.
36412         * pedump.c: removed arch_create_jit_trampoline.
36413         * reflection.c: some cleanups to allow registering user strings and
36414         later getting a token for methodrefs and fieldrefs before the assembly
36415         is built.
36416         * row-indexes.h: updates and fixes from the new ECMA specs.
36417
36418 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
36419
36420         * class.h, class.c: add enum_basetype field to MonoClass.
36421         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
36422         to get index in the constant table reated to a field, param or
36423         property.
36424         * reflection.h, reflection.c: handle constructors. Set public-key and
36425         version number of the built assembly to 0.
36426         * row-indexes.h: update from new ECMA spec.
36427
36428 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36429
36430         * class.h, class.c: add a max_interface_id to MonoClass.
36431         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
36432         since it's used to do that. Added mono_type_type_from_obj().
36433         Make GetType() return NULL instead of segfaulting if the type was not
36434         found. Handle simple arrays in assQualifiedName.
36435         * object.h: add a struct to represent an Exception.
36436         * reflection.c: output call convention in method signature.
36437         Add code to support P/Invoke methods and fixed offsets for fields.
36438
36439 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
36440
36441         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
36442         the value.
36443         * icall.c: use mono_array_addr instead of array->vector: fixes the
36444         reflection image writing.
36445         * reflection.c: init call convention byte to 0 in method signature.
36446         Encode the property signature. Don't output property-related methods
36447         twice. Really process the properties for a type (don't cast a field to
36448         a property, my mom always told me that).
36449         Fix 64 bit issues in pointer alignment in a different and more
36450         readable way.
36451
36452 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
36453
36454         * loader.h: Removed type class from MonoDefaults, added monotype
36455
36456         * loader.c: Loaded MonoType, removed loading of Type
36457
36458         * icall.c (my_mono_new_object): Now returns a System.MonoType,
36459         and fills in System.Type._impl with a RuntimeTypeHandle rather
36460         than the actual MonoClass *
36461
36462         (ves_icall_type_from_handle): change from type_class to
36463         monotype_class
36464
36465         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
36466         implemented
36467
36468         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
36469         implemented
36470
36471         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
36472
36473         (ves_icall_System_Reflection_Assembly_GetType): implemented
36474
36475         (ves_icall_System_MonoType_assQualifiedName): implemented
36476
36477         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
36478
36479 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
36480
36481         * assembly.c (mono_assembly_open): Implement a cache for the
36482         assemblies. 
36483
36484         (mono_assembly_close): only destroy the assembly when the last
36485         reference is gone.
36486         
36487 2001-11-09  Dick Porter  <dick@ximian.com>
36488
36489         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
36490
36491 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
36492
36493         * class.c (mono_class_metadata_init): bug fix: compute the right slot
36494
36495 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36496
36497         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
36498         from Martin Weindel.
36499         * object.h: add mono_string_chars ().
36500
36501 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
36502
36503         * reflection.c (build_compressed_metadata): Eliminates warnings
36504         and uses 64-bit clean code.
36505
36506         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
36507         (mono_type_equal): Change signature to eliminate warnings.
36508
36509 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36510
36511         * icall.c, loader.c: remove the internalcall array constructors.
36512         Changes to match the new MonoArray structure.
36513         * object.h, object.c: an array object doesn't allocate an extra
36514         vector. Add mono_array_new_full () to create jagged arrays easily.
36515
36516 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36517
36518         * metadata.h, metadata.c: add mono_metadata_field_info () to
36519         retreive all the info about a field from vairous tables.
36520         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
36521         * class.h, class.c: augment MonoClassField with more info.
36522         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
36523         policy and load a field's RVA if needed.
36524
36525 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
36526
36527         * class.c (mono_class_metadata_init): create a trampoline for all
36528         virtual functions instead of actually compiling them.
36529
36530 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
36531
36532         * class.h, class.c: include name in MonoClassField.
36533         * class.c: fix fundamental type of System.Object and System.String.
36534         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
36535         tokens in ldtoken.
36536         * icall.c: remove internalcalls for the Reflection stuff that is now
36537         done in C# code.
36538         * loader.c: mono_field_from_memberref () implementation.
36539         * mono-endian.c: thinko (s/struct/union/g).
36540         * object.c, object.h: make the mono_string_* prototypes actually use
36541         MonoString instead of MonoObject.
36542         * reflection.c, reflection.h: updates for changes in the reflection
36543         code in corlib: we use C structures that map to the actual C# classes.
36544         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
36545         fat method header if needed and use the info from the ILGenerator for
36546         methods. Handle fields in types. Misc fixes.
36547
36548 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
36549
36550         * class.c (mono_class_metadata_init): bug fix: always allocate
36551         space for static class data
36552
36553 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
36554
36555         * class.c (mono_compute_relative_numbering): use relative
36556         numbering to support fast runtime type checks.
36557
36558 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
36559
36560         * class.c (mono_class_create_from_typeref): added debugging output
36561         to print class name when MonoDummy is returned instead of real class
36562
36563 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
36564
36565         * class.c (mono_class_metadata_init): interface offset table now
36566         contains pointers into the vtable - this is more efficient for the jit
36567
36568 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
36569
36570         * class.c (mono_class_metadata_init): use a temporary vtable (the
36571         old algorithm only worked for the interpreter, but not for the jit)
36572
36573 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
36574
36575         * loader.c (method_from_memberref): use mono_class_get to get the
36576         class of an array instead of using System.Array directly.
36577         (mono_get_method): also add MEMBERREF methods to the method cache
36578         which usefull for arrays.
36579
36580 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
36581
36582         * pedump.c (arch_compile_method): added to compute vtable entry
36583
36584         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
36585         number of interfaces.
36586         
36587         * class.h: merged MonoArrayClass into MonoClass
36588
36589         * class.c (mono_class_create_from_typedef): compute the vtable size and
36590         allocate space to include the vtable inside MonoClass
36591         (mono_class_metadata_init): initialize the vtable
36592
36593 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
36594
36595         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
36596         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
36597         * image.c: endian fixes by Laurent Rioux.
36598         * object.h, object.c: rename MonoStringObject to MonoString and
36599         MonoArrayObject to MonoArray. Change some function names to conform to
36600         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
36601         guint16* as first argument, so don't use char*.
36602         Provide macros to do the interesting things on arrays in a portable way.
36603         * threads-pthread.c: updates for the API changes and #include <sched.h>
36604         (required for sched_yield()).
36605         * icall.c: updates for the API changes above.
36606         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
36607         platforms that need them.
36608
36609 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36610
36611         * class.c: set the correct type for all the fundamental
36612         type when loading the class.
36613
36614 2001-10-05  Dick Porter  <dick@ximian.com>
36615
36616         * threads-pthread.c (pthread_mutex_timedlock): Simple
36617         compatibility version for C libraries that lack this call.
36618
36619 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36620
36621         * class.c: MonoTypes stored in MonoClass are stored as
36622         fundamental MonoTypes when the class represents a
36623         fundamental type (System.Int32, ...).
36624         The TypeHandle return by ldtoken is a MonoType*.
36625         * icall.c: ves_icall_get_data_chunk () write out all the
36626         PE/COFF stuff. Implement ves_icall_define_method (),
36627         ves_icall_set_method_body (), ves_icall_type_from_handle ().
36628         * image.c: properly skip unknown streams.
36629         * loader.h, loader.c: add type_class to mono_defaults.
36630         * metadata.c, metadata.h: export compute_size () as
36631         mono_metadata_compute_size () with a better interface.
36632         Typo and C&P fixes.
36633         * pedump.c: don't try to print the entry point RVA if there is no entry point.
36634         * reflection.c, reflection.h: many cleanups, fixes, output method
36635         signatures and headers, typedef and typeref info, compress the metadata
36636         tables, output all the heap streams, cli header etc.
36637         * row-indexes.h: typo fixes.
36638
36639 2001-10-04  Dick Porter  <dick@ximian.com>
36640
36641         * object.h: Add a synchronisation mutex struct to MonoObject
36642
36643         * object.c (mono_new_object): Initialise the object
36644         synchronisation mutexes
36645
36646         * icall.c: System.Threading.Monitor internal calls
36647         
36648         * threads-pthread.h:
36649         * threads-pthread.c: System.Threading.Monitor internal calls
36650
36651         * threads-types.h: New file, includes the system-specific thread
36652         structures
36653         
36654         * threads-pthread-types.h:
36655         * threads-pthread-types.c: New files, handle pthread-specific
36656         synchronisation types
36657
36658         * threads-dummy-types.h: 
36659         * threads-dummy-types.c: New files of dummy support for
36660         thread-specific types
36661
36662         * metadata.c:
36663         * image.c:
36664         * pedump.c: include mono-endian.h not endian.h
36665         
36666         * Makefile.am: More threads files.
36667         Name mono-endian.h not endian.h
36668
36669 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
36670
36671         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
36672         stuff and implement a few more bits.
36673         * icall.c: a field needs to be dereferenced twice. Do not use the same
36674         name for two variables in the same scope.
36675         * image.c, image.h: cleanups.
36676
36677 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
36678
36679         * class.c (mono_class_metadata_init): bug fix: compute the right size
36680
36681 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
36682
36683         * icall.c: implemented some of the Reflection internalcalls.
36684         * image.c, image.h: start writing out the PE/COFF image.
36685         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
36686         that does the reverse than decode_blob_size ().
36687         * object.c: use mono_metadata_encode_value (). Move here
36688         temporary implementation of mono_string_to_utf8 ().
36689         * rawbuffer.c: make malloc_map static.
36690
36691 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36692
36693         * metadata.c: fix type comparison for arrays.
36694         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
36695         Added a couple of new classes to monodefaults.
36696         * icall.c: added a couple of Reflection-related internalcalls.
36697         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
36698         Added a byval_arg MonoType to MonoClass.
36699
36700 2001-09-28  Dick Porter  <dick@ximian.com>
36701
36702         * icall.c:
36703         * threads-pthread.h: 
36704         * threads-pthread.c: Implemented internal calls for
36705         LocalDataStoreSlot operations.  Applied mutexes around all shared
36706         data.  Reworked the thread creation and Start() operations to
36707         avoid a race condition.
36708         
36709         * threads-dummy.h:
36710         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
36711
36712 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
36713
36714         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
36715
36716 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
36717
36718         * class.c, loader.c: warn and return NULL instead of erroring out.
36719         * icall.c: added System.AppDomain::getCurDomain().
36720         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
36721
36722 2001-09-25  Dick Porter  <dick@ximian.com>
36723
36724         * threads-pthread.h:
36725         * threads-pthread.c: Implemented timed thread joining and added
36726         System.Threading.Thread::Join_internal internal call
36727
36728         * icall.c: Added System.Threading.Thread::Join_internal internal call
36729
36730         * threads-dummy.h:
36731         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
36732
36733 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
36734
36735         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
36736         mono_string_intern () to implement the semantics of the ldstr opcode
36737         and the interning of System.Strings.
36738         * icall.c: provide hooks to make String::IsIntern and String::Intern
36739         internalcalls.
36740
36741 2001-09-23  Dick Porter  <dick@ximian.com>
36742
36743         * threads-dummy.c: 
36744         * threads-dummy.h: New files of dummy threading routines
36745
36746         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
36747         support code based on system specifics
36748
36749         Rename PTHREAD_LIBS to THREAD_LIBS
36750         
36751 2001-09-23  Dick Porter  <dick@ximian.com>
36752
36753         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
36754         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
36755         internal calls.
36756         (mono_thread_init): Set up a Thread object instance to return when
36757         the main thread calls Thread.CurrentThread
36758         (mono_thread_cleanup): Wait for all subthreads to exit
36759
36760         * icall.c: New internal calls for System.Threading.Thread::Sleep
36761         (including Schedule) and CurrentThread
36762
36763         * threads.h: New file, to insulate thread-specific stuff from the
36764         rest of the code
36765
36766 2001-09-21  Dick Porter  <dick@ximian.com>
36767
36768         * threads-pthread.h: 
36769         * threads-pthread.c: New file, for handling pthreads-style
36770         threading support.  Start() now starts a new thread and executes
36771         the ThreadStart delegate instance.
36772
36773         * icall.c: Added the internalcall for
36774         System.Threading.Thread::Start_internal
36775
36776         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
36777
36778 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
36779
36780         * loader.c: work around the different signatures for delegates
36781         constructors csc generates in compiled code vs the ones compiled in mscorlib.
36782
36783 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
36784
36785         * class.h, class.c: add mono_class_get_field_from_name ().
36786         * *: Fix C comments and other ANSI C issues.
36787
36788 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
36789
36790         * endian.h, assembly.c: fix some endianness issues.
36791
36792 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
36793
36794         * loader.h, load.c: add delegate_class to mono_defaults.
36795         Handle runtime provided methods in mono_get_method ().
36796
36797 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
36798
36799         * loader.c (mono_get_method): use pinvoke for internal call
36800
36801         * icall.c: use pinvoke for internal call
36802
36803         * loader.c (method_from_memberref): set the method name
36804
36805 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
36806
36807         * metadata.c: help the compiler generate better code for
36808         mono_class_from_mono_type ().
36809
36810 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
36811
36812         * class.c (mono_class_metadata_init): delayed computing of the
36813         class size to mono_class_metadata_init ()
36814
36815 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
36816
36817         * class.c, class.h: add an interfaces member to MonoClass.
36818         * image.c, image.h: add assembly_name field to MonoImage
36819         from the assembly table.
36820         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
36821
36822 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36823
36824         * class.c: Handle Array in mono_class_from_mono_type ().
36825         * metadata.c, pedump.c: some endian fixes.
36826
36827 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36828
36829         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
36830         * metadata.c: fix small problem introduced with the latest commit.
36831
36832 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
36833
36834         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
36835         We don't need a MonoMetadata pointer anymore to compare signatures in
36836         mono_metadata_signature_equal (), update callers.
36837         Reduced memory usage an number of allocations for MonoMethodHeader and
36838         MonoMethodSignature.
36839
36840 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
36841
36842         * metadata.c: added compare for szarray.
36843
36844 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
36845
36846         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
36847         and add a couple more types to it and mono_defaults. Give an hint on
36848         classes that need implementing in our corlib and are referenced
36849         in mscorlib.
36850
36851 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
36852
36853         * class.h, class.c: keep track if a class is also an Enum.
36854         * loader.c: Implement a couple more types for use in libffi
36855         marshalling. Gives better diagnostics when failing to dlopen
36856         a library. Set method->klass for P/Invoke methods, too.
36857
36858 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
36859
36860         * class.c, class.h: add a MonoType this_arg to MonoClass that
36861         represents a pointer to an object of the class' type that
36862         can be used by the interpreter and later the type cache.
36863         Add best guess alignment info for valuetype objects.
36864
36865 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
36866
36867         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
36868         into MonoType: one less level of indirection and allocation and
36869         simplifies quite a bit of code. Added cache for MonoTypes that are
36870         used frequently, so that we don't need to allocate them all the time.
36871
36872 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
36873
36874         * class.c (mono_class_create_from_typedef): System.Enum is also a
36875         value type, although it does not derive from System.ValueType
36876         (maybe a bug in the ms compiler?)
36877
36878         * metadata.c (mono_type_size): return the right size for value types
36879
36880         * loader.c (mono_get_method): only initialize method header if not abstract
36881
36882         * class.c (mono_class_from_mono_type): use mono_default values. 
36883
36884 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
36885
36886         * *: use MonoClass pointers instead of <type_tokens>
36887         
36888         * class.h: new flag: metadata_inited.
36889
36890         * class.c (mono_class_metadata_init): impl.
36891         (mono_class_instance_size): impl.
36892         (mono_class_data_size): impl.
36893
36894 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36895
36896         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
36897         MonoClass now has the name and name_space fields. 
36898         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
36899         mono_get_method () takes and optional MonoClass as argument.
36900         Removed mono_typedef_from_name() and added mono_class_token_from_name()
36901         instead that takes advantage of a map from class names to typedef
36902         tokens in MonoImage.
36903
36904 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
36905
36906         * metadata.c: zero is not a valid alignment boundary.
36907         Merge MONO_TYPE_VOID in default decoding code.
36908
36909 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
36910
36911         * image.h: merged MonoMetadata into MonoImage
36912
36913         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
36914         identify the type of elements.
36915
36916 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
36917
36918         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
36919         * cil-coff.h: split MonoMSDOSHeader and add size info.
36920         * image.c: add some consistency checks.
36921         * metadata.c: fix row size computation: one programmer
36922         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
36923         add explanation for the locator routine.
36924         Fix decoding of size in method header.
36925         
36926 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
36927
36928         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
36929         (g_concat_dir_and_file): Bring g_concat_dir_and_file
36930         function from gnome-libs.  This uses the right path separator
36931         based on the OS, and also works around a bug in some systems where
36932         a double slash is not allowed. 
36933         (default_assembly_name_resolver): Use g_concat_dir_and_file
36934         (mono_assembly_open): ditto.
36935
36936 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
36937
36938         * metadata.c (mono_metadata_signature_equal): impl.
36939
36940         * *: void is now a realy MonoType (instead of using NULL)
36941         
36942         * metadata.c (do_mono_metadata_parse_type): use
36943         mono_metadata_parse_type to parse void value.
36944
36945 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
36946
36947         * metadata.c, metadata.h: in the signature and method header store
36948         only the space required for holding the loca vars and incoming arguments.
36949
36950 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
36951
36952         * metadata.c (do_mono_metadata_parse_type): treat void like any
36953         other type (instead of assigning NULL);
36954
36955 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
36956
36957         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
36958
36959 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
36960
36961         * image.c (do_mono_image_open): added a cache for arrays.
36962
36963 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36964
36965         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
36966         decode a single column from a row in a metadata table and changes
36967         to take advantage of it in the typedef locator (gives a nice speed up).
36968         Store offset info for function params.
36969
36970 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
36971
36972         * image.h (MONO_IMAGE_IS_CORLIB): removed 
36973
36974 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
36975
36976         * assembly.c: how could mono_assembly_close () had ever worked?
36977         * metadata.c, metadata.h: provide offset info for local vars.
36978         Implement mono_type_size () to take care of alignment as well
36979         as size (it was mono_field_type_size in cli/class.c before).
36980
36981 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
36982
36983         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
36984
36985         * assembly.h (CORLIB_NAME): set to corlib.dll
36986
36987         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
36988
36989 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36990
36991         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
36992         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
36993         tokentype.h: massive namespace cleanup.
36994
36995 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36996
36997         * metadata.h, metadata.c: decode exception clauses when parsing method header.
36998
36999 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
37000
37001         * metadata.c (mono_metadata_free_type): added check for type !=
37002         NULL (void) before calling mono_metadata_free_type()
37003
37004 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
37005
37006         * metadata.h, row_indexes.h: added header with enumerations to use
37007         to index in the columns from tables in metadata and to decode coded
37008         tokens: we should start using this instead of embedding magic numbers
37009         all over the code.
37010
37011 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
37012
37013         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
37014         Move metadata_t info from cli_image_info_t to MonoImage, where
37015         it's easily accessible. Changed all the uses accordingly.
37016         Added the method and class caches to MonoImage.
37017         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
37018         and mono_metadata_decode_value () signature to be more consistent
37019         with the other parse functions (and simplify code). Taken advantage
37020         of zero-length array allocation with GCC. Removed reduntant (and
37021         wrong) MonoFieldType struct and use MonoParam instead. Changed
37022         mono_metadata_parse_field_type () to use common code for parsing.
37023         Added mono_metadata_typedef_from_field () and
37024         mono_metadata_typedef_from_method () to lookup a typedef index from a
37025         field or method token.
37026         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
37027
37028 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
37029
37030         * metadata.c (mono_metadata_parse_field_type): Implement. 
37031         (do_mono_metadata_parse_type): Split engine from
37032         mono_metadata_parse_type, so that we can create smaller structures
37033         for things that just have one pointer to the MonoType (look at
37034         the MonoFieldType)
37035
37036 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
37037
37038         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
37039         as Jan Gray found out, it is incorrect. 
37040
37041 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
37042
37043         * assembly.c: Implement asssembly loading.  This loads an image
37044         and loads all the referenced assemblies.  Come to think of it, we
37045         could always do lazy loading of the assemblies. 
37046
37047         * image.c (mono_image_open): Keep loaded images in a hashtable.
37048
37049         * image.h (MonoImage): Add reference count.
37050
37051 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
37052
37053         * assembly.c (mono_assembly_open): Keep track of the file name in
37054         case the assembly has no ASSEMBLY table.
37055
37056         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
37057         from get.c here.
37058
37059 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
37060
37061         * metadata.c, metadata.h: decode local vars in method header
37062         parse function. Change callers accordingly.
37063
37064 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
37065
37066         * metadata.h, cil-coff.h: protect against multiple inclusion.
37067         Added some new structures to hold information decoded from metadata:
37068         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
37069         and relevant decoding/free functions.
37070         * metadata.c: implement decoding functions. Add warning for out of bounds
37071         index in mono_metadata_locate(). Implement mono_get_method () to retreive
37072         all the info about a method signature and invocation. Remove check on
37073         uninitialized local var in parse_mh() and fix memory leak.
37074
37075 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
37076
37077         * metadata.h: More macros.
37078
37079         * tokentype.h: New file.
37080
37081 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37082
37083         * assembly.c: added a consistency check and initialize
37084         some structures with g_new0().
37085         * metadata.c: fixed a couple more bugs in table size computation
37086         and add other checks for out-of bound access to metadata.
37087
37088 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37089
37090         * metatada.c: fix bugs computing table sizes. Spew a
37091         warning when index in string heap is out of bounds.
37092
37093 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
37094
37095         * metadata.h: Add a couple of macros to manipulate tokens. 
37096
37097 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37098
37099         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37100         cli_section_tables).
37101
37102 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
37103
37104         * metadata.c (mono_metadata_user_string): New function, provides
37105         access to the UserString heap. 
37106
37107 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
37108
37109         * metadata.c: Add inline documentation.
37110
37111 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
37112
37113         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37114         files. 
37115
37116 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37117
37118         * typeattr.h: New file, TypeAttribute flags. 
37119
37120 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37121
37122         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37123         mono_assembly_ensure_section): Section loading code.
37124         (load_section_tables): Load the sections.
37125
37126         * mono/metadata/metadata.c (mono_metadata_locate_token,
37127         mono_metadata_locate): Functions to locate the information
37128         definition given a token or a table and an index.
37129         (mono_metadata_compute_table_bases): New.
37130         (compute_size): New function to compute the sizes of the various
37131         tables.
37132
37133         * mono/metadata/metadata.h: Finish listing the different index
37134         types. 
37135
37136         * mono/metadata/pedump.c: Improve to dump new information.
37137
37138 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37139
37140         * mono/metadata/metadata.c: Entered all the tables matching
37141         Beta2. 
37142
37143         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
37144
37145
37146
37147