2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
[mono.git] / mono / metadata / ChangeLog
1 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
2
3         * threadpool.c: patch from Robert Nagy that fixes a nullref and
4         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
5
6 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
7
8         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
9         types.
10
11         Fixes #331126
12
13 2010-04-21  Mark Probst  <mark.probst@gmail.com>
14
15         * sgen-gc.c: Turn off semi-precise stack mark.
16
17 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
18
19         * reflection.c (mono_custom_attrs_from_index): Use right function
20         to free 'list' (i.e. g_list_free) if the verifier fails.
21
22 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
23
24                 * verify.c: Handle the case where mono_type_get_underlying_type_any
25                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
26                 and MONO_TYPE_VALUETYPE in those case.
27
28                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
29
30                 Hopefully Fixes #564253.
31
32 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
33
34         * domain-internals.h: made threadpool_jobs volatile.
35         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
36         all local jobs.
37         * threadpool.c:
38                 -When two threads try to initialize the socket IO pool,
39                 the second one waits until the intialization is finished
40                 instead of continuing right away.
41                 -Add checks for domain unload: no items added in this case.
42                 -Only measure the time every 10 elements added to the queue.
43                 This is an experiment since linux x86 gettimeofday() sucks.
44                 -Create new thread if there are none waiting for work items.
45                 -There was a missing decrement of the busy threads.
46                 -Make sure the local queue is cleaned up before exiting the
47                 thread when the program ends.
48
49 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
50
51         * reflection.c (mono_type_get_object): Normalize generics types
52         as to how managed code expect them to be. A generic instance over
53         the GTD arguments must have the same mirror as the GTD itself.
54
55         Fixes #473289.
56
57 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
58
59         * locales.c: Implement support for DISABLE_NORMALIZATION.
60
61 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
62
63         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
64         since it is not a MonoMethod.
65
66 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
67
68         * icall-def.h: Add get_RequiresElevatedPermissions icall to
69         System.Security.SecurityManager - used only by Moonlight
70         * security-core-clr.c|h: Add Elevated Trust/Permission support
71         for CoreCLR / Moonlight
72
73 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
74
75         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
76         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
77
78 2010-04-16  Marek Habersack  <mhabersack@novell.com>
79
80         * mono-perfcounters.c: added code for the "Mono
81         Memory/Total Physical Memory" performance counter.
82
83         * mono-perfcounters-def.h: added definition of the "Mono
84         Memory/Total Physical Memory" performance counter.
85
86 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
87
88         * class.c (mono_class_get_method_by_index): Return NULL
89         on type load failures.
90
91 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
92
93         * class.c (mono_class_from_typeref): Check if the supplied
94         image has an assembly bound to it.
95
96         Fixes #567884.
97
98 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
99
100         * loader.c (mono_method_get_signature_full): Use new function
101         inflate_generic_signature_checked to check for errors.
102
103         Fixes #560839.
104
105 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
106
107         * loader.c (inflate_generic_signature): Add _checked variant
108         and move this function to use it.
109
110 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
111
112         * class.c (mono_class_setup_vtable_general): Use error checking
113         version of mono_class_inflate_generic_method_full.
114
115         Fixes #596975.
116
117 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
118
119         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
120         error handling passing MonoError around.
121
122         Fixes #560336.
123
124 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
125
126         * socket-io.c: make GetHostByName ("") work on windows.
127         Fixes bug #456723.
128
129 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
130
131         * object-internals.h:
132         * threads.c: use a spin lock when accesing the per-thread appdomain
133         list.
134
135 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
136
137         * threads.c: no need to take the threads lock in push/pop appdomain.
138
139 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
140
141         * reflection.c (_mono_reflection_parse_type): MS supports
142         non-assembly-qualified types in a generic type parameter list
143         when enclosed in '[]' (which signals that they should be a fqn).
144
145         This breaks ECMA specs for how type names are encoded in cattr
146         blobs but F# does it.
147
148         Fixes #576342.
149
150 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
151
152         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
153         for instance methods/ctors.
154
155         Fixes #422113.
156
157 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
158
159         * reflection.c: Use the new verifier support for checking
160         custom attributes.
161
162         Fixes #595306.
163
164 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
165
166         * metadata-verify.c: Implement structural verification
167         of custom attributes. This check requires access to the
168         loader since to resolve the size of an enum we have to
169         look it up.
170         We don't check if named argumenments are encoded in a
171         compatible fashion to their underlying field/prop.
172         Maybe we should?
173
174         * verify-internals.h: Add two new cattr verification API.
175
176 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
177
178         * metadata-verify.c (decode_signature_header): Fix signature.
179
180 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
181
182         * verify.c (mono_verifier_is_enabled_for_method): Handle
183         assembly less images.
184
185         * verify.c (mono_verifier_is_class_full_trust): Ditto.
186
187 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
188
189         * loader.c (mono_method_signature_checked): Properly
190         init MonoError.
191
192         * loader.c (mono_method_signature): It's the calee
193         resposibility to init the error object.
194
195 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
196
197         * metadata-verify.c (decode_signature_header): Do proper
198         overflow checking.
199
200 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
201
202         * reflection.c: maintain the invariants required by
203         mono_class_layout_fields() also in typebuilder_setup_fields ().
204
205 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
206
207         * security-core-clr.c: Call mono_class_setup_methods in 
208         get_default_ctor before checking klass->methods. Fix typo in
209         comment
210
211 2010-04-10  Jb Evain  <jbevain@novell.com>
212
213         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
214         add .net 4.0 RTM version.
215
216 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
217
218         * reflection.c (resolve_object): Properly inflate generic
219         methods when a context is supplied.
220
221         Fixes #591226.
222
223 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
224
225         * verify.c (mono_method_verify): A switch op don't empty
226         the stack for the next one. Fixes a bug when running fsi
227         under --verify-all.
228
229 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
230
231         * metadata-verify.c (is_valid_standalonesig_blob): Accept
232         fields as valid standalone sig too. F# does generate them.
233
234         * metadata-verify.c (verify_typedef_table_full): Ignore
235         what <module> extends.
236
237 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
238
239         * verify.c (do_invoke_method): It's ok to do use call with
240         virtual, non-final methods if their class is sealed.
241
242 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
243
244         * icall.c (ves_icall_MonoField_GetValueInternal): This function
245         is a near identical copy of mono_field_get_value_object. So simply
246         call it.
247
248         * object.c (mono_field_get_value_object): Handle literal fields
249         on open generic classes.
250
251         Fixes #594942.
252
253 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
254
255         * reflection.c (mono_reflection_create_runtime_class): Setup
256         parent/supertype information again since it can be changed
257         without notice.
258
259 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
260
261         * verify.c (verify_type_compatibility_full): Properly handle
262         stores between arrays of primitives.
263
264         Fixes the verifier side of #555950.
265
266 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
267
268         class.c (mono_bounded_array_class_get): Properly init
269         cast_class to take the fact that uint[] and int[] can be
270         casted between each other.
271
272         Fixes #555950.
273
274 2010-04-07  Geoff Norton  <gnorton@novell.com>
275
276         * domain.c: Avoid a deadlock on osx.  Fixes #565765
277
278 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
279
280         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
281         builders. Fixes #594464.
282
283 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
284
285         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
286         waiting for all threads to suspend, as those threads can't be suspended.
287
288 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
289
290         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
291         to avoid crashes on newly created threads.
292
293 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
294
295         * file-io.c: reset the MonoIOStat structure in case of error.
296         Fixes bug #582667.
297
298 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
299
300         * class.c (print_implemented_interfaces): Print proper type name.
301
302         * class.c (mono_class_setup_vtable): Don't try that hard to produce
303         the override map for generic instances since it later ignored.
304
305         * class.c (mono_class_implement_interface_slow): Don't break for
306         dynamic generic instances.
307
308         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
309
310         * reflection.c (mono_reflection_method_get_handle): New method that
311         resolves a method handle.
312
313         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
314         case when we override methods from a dynamic generic instance interface.
315
316         Fixes #575941.
317
318 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
319
320         * threadpool.c: don't attempt to close the pipe when it has not been
321         created.
322
323 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
324
325         * threadpool.c: if there are no waiting threads, try to start a new
326         one. This fixes the not-so-random hangs in System.ServiceModel tests.
327         No need to use InterlockedCompareExchange to read volatile variables.
328
329 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
330
331         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
332         and reference types that point to the same class.
333
334         Fixes #565598.
335
336 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
337
338         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
339         when verifying compatibility between a generic instance and a generic
340         parameter.
341
342         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
343
344         * verify.c (stack_slot_stack_type_full_name): Improve verification type
345         name.
346
347         Fixes #587849.
348
349 2010-04-04  Mark Probst  <mark.probst@gmail.com>
350
351         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
352
353 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
354
355         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
356
357 2010-04-03  Marek Habersack  <mhabersack@novell.com>
358
359         * process.c: when cross-compiling with MinGW, force GetProcessId
360         lookup using GetProcAddress.
361
362 2010-04-02  Mark Probst  <mark.probst@gmail.com>
363
364         * sgen-gc.c: parse_environment_string_extract_number() must be
365         static.
366
367 2010-04-02  Mark Probst  <mark.probst@gmail.com>
368
369         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
370         gray_object_dequeue(), to make sure they're inlined.
371
372 2010-04-02  Mark Probst  <mark.probst@gmail.com>
373
374         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
375         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
376
377 2010-04-02  Jb Evain  <jbevain@novell.com>
378
379         * exception.c: remove dead code.
380
381 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
382
383         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
384         with mono-gc.h.
385
386 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
387
388         * sgen-gc.c: Make the nursery size adjustable by the
389         MONO_GC_PARAMS environment variable.
390
391         Code is contributed under MIT/X11 license.
392
393 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
394
395         * threadpool.c: threadpool threads wait is alertable.
396         Fixes bug #592964.
397         Reduced the stack size of the *poll_wait thread.
398
399 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
400
401         * exception.c|metadata-internals.h: Add new mono_get_exception_
402         field_access_msg and mono_get_exception_method_access_msg 
403         functions that accept a const char* parameter to provide more 
404         details when the exception is thrown.
405         * security-core-clr.c|h: Rework code to allow logging exceptions
406         (export MONO_LOG_MASK="security") and to supply more details in
407         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
408         mono_security_core_clr_is_field_access_allowed and 
409         mono_security_core_clr_is_call_allowed to return an exception,
410         with messages and logging, that can be emitted by method-to-ir.c
411
412 2010-04-01  Mark Probst  <mark.probst@gmail.com>
413
414         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
415         pinned object.
416
417 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
418
419         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
420         the assembly name is not well formed utf8. Fixes #567882.
421
422 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
423
424         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
425         the generic parameters from the builder. Fixes #473298.
426
427 2010-03-31  Miguel de Icaza  <miguel@novell.com>
428
429         * object.c (mono_class_proxy_vtable): Eliminate warning. 
430
431         * marshal.c (emit_marshal_boolean): Eliminate possible
432         uninitialized local warning. 
433
434 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
435
436         * class.c (mono_class_init): Postpone coreclr inheritance check
437         until the end of the initialization (so we can check up the 
438         default ctor manually for the core-clr inheritance rules).
439         * security-core-clr.c: Add the missing (undocumented) checks on
440         default constructors when verifying inheritance rules.
441
442 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
443
444         * domain-internals.h (MonoJitExceptionInfo): Add new field
445         handler_end to the data union. To be used to point the end
446         of a finally block.
447
448 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
449
450         * reflection.c: Add support for new v4 type
451         System.Reflection.MonoModule that is the concrete version
452         of Module which is abstract unver v4.
453
454 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
455
456         * class.c (mono_class_init): Don't set class failure after
457         inited = 1 is set. It must be done before.
458
459 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
460
461         * mono-config.c: Add support for OS "haiku"
462         * ChangeLog: Fix UTF-8 encoding
463
464         Code is contributed under MIT/X11 license.
465
466 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
467
468         * console-unix.c: fixed include logic for sys/ioctl.h.
469
470 2010-03-30  Mark Probst  <mark.probst@gmail.com>
471
472         * threads.c: Fix bitmap generation for TLS marking on 64 bit
473         systems.
474
475 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
476
477         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
478         unfinished/broken typebuilders.
479
480 2010-03-29  Mark Probst  <mark.probst@gmail.com>
481
482         * sgen-gc.c: Use the same heuristic for the LOS target that we use
483         for the minor section allowance.
484
485 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
486
487         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
488         "NoOptimization".
489
490 2010-03-29  Mark Probst  <mark.probst@gmail.com>
491
492         * sgen-gc.c: Count bytes allocated with heavy statistics.
493
494 2010-03-29  Mark Probst  <mark.probst@gmail.com>
495
496         * sgen-gc.c: More detailed time statistics.
497
498 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
499
500         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
501         fix the user defined mark interface to pass a pointer
502         to the object location and not the object itself.
503
504 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
505
506         * reflection.c (mono_method_body_get_object): Release
507         the method header before the call to CACHE_OBJECT since
508         this is a macro that returns.
509
510 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
511
512         * class.c (inflate_generic_type): mono_metadata_type_dup
513         already dupes array information, the g_memdup was just
514         leaking memory.
515
516 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
517
518         * verify.c: Add stack_peek function. Fix CEE_DUP
519         to not read from invalid memory if push did expand
520         the stack.
521
522 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
523
524         * verify.c: Remove old table verification code that has
525         been superseeded by the new metadata verifier.
526
527         * verify.h: Remove mono_image_verify_tables from the public
528         API.
529
530         * pedump.c: Fix for removed bits.
531
532 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
533
534         * verify.c: Allocate stack slows lazily to reduce stack usage
535         in case of methods with huge stacks. Reduces memory consumption
536         for mcs yyparse from 459Mb to 1.8Mb.
537
538 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
539
540         * threadpool.c: don't try executing items from domains being
541         unloaded. Fixes appdomain-async-invoke test.
542
543 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
544
545         * threadpool.c: spin while the threadpool initializes.
546         * mono-wsq.c: if the WSQ has not been initialized or has been shut
547         down, don't do anything.
548
549 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
550
551         * threads.c (mono_thread_create_internal): Set the GC type of the
552         threads_starting_up hash table.
553
554 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
555
556         * threadpool.c: reset 'state' to avoid returning non-null when the
557         event type is not found.
558
559 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
560
561         * sgen-gc.c: make copy_object () take the address of the
562         slot holding the reference. This allows saving memory stores
563         when not needed and it allows keeping track of oldspace->nursery
564         references for the card table code.
565
566 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
567
568         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
569
570         Code is contributed under MIT/X11 license.
571
572 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
573
574         * object.c, threads.c, threads-types.h, threads.h: make the
575         managed thread local storage references precisely tracked.
576
577 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
578
579         * threadpool.[ch]: reworked the threadpool:
580                 -Threadpool threads use a work-stealing queue. Adding a work
581                 item from a threadpool thread will queue it in the thread
582                 local queue without locking (in most cases).
583                 -epoll events are coalesced before being added to the IO
584                 queue.
585                 -Dynamically change the number of active threads
586                 -Changed the global queue to be more GC friendly
587
588         * class-internals.h: add 2 new performance counters for the number of
589         threads in the threadpool and the IO threadpool.
590
591         * object-internals.h: new field in MonoAsyncResult.
592         * icall-def.h: new internal call for queueing work items.
593
594         * Makefile.am: add 2 new files.
595
596         * appdomain.c: bump up corlib version.
597
598         * mono-wsq.[ch]: an implementation of a work-stealing queue.
599
600         * mono-perfcounters-def.h:
601         * mono-perfcounters.c: added 2 new performance counters.
602
603 2010-03-26  Mark Probst  <mark.probst@gmail.com>
604
605         * sgen-gc.c: More FIXME/TODO updates.
606
607 2010-03-25  Mark Probst  <mark.probst@gmail.com>
608
609         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
610         function mono_gc_invoke_with_gc_lock() which invokes a function
611         with the guarantee that no collection will occur during its execution.
612
613 2010-03-25  Mark Probst  <mark.probst@gmail.com>
614
615         * sgen-gc.c: Update a few comments.
616
617 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
618
619         * reflection.c: Add support for new v4 type
620         System.Reflection.MonoAssembly that is the concrete version
621         of Assembly which is abstract unver v4.
622
623 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
624
625         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
626         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
627
628         Expose a few macros that are needed for SR but not SRE to the
629         world (previous inside the SRE ifdef)
630
631 2010-03-24  Mark Probst  <mark.probst@gmail.com>
632
633         * sgen-gc.c (gc_register_current_thread): We need
634         stack_start_limit as well in the non-attribute pthread case.
635
636 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
637
638         * threads.c: Fix windows build.
639
640 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
641
642         * thread-types.h: Add mono_thread_resume_interruption.
643
644         * threads.c: Add mono_thread_resume_interruption, this
645         function should be called after the last protected handler
646         found at interruption time has finished.
647
648 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
649
650         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
651         Check MonoInternalThread's ::state instead of ::abort_exc
652         since the later can be lazily created.
653
654         This is specially problematic when running a finally block
655         under AbortRequested state. ResetAbort must work, but the
656         abort_exc object has not been created because interruption
657         has not began.
658
659 2010-03-22  Geoff Norton  <gnorton@novell.com>
660
661         * locales.c: Its possible for CFStringGetCStringPtr
662         to return null and not convert encodings.  Use
663         CFStringGetCString instead.
664
665 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
666
667         * class-internals.h, class.c, object.c: introduce compressed
668         interface bitmaps (for now only under small config): this saves
669         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
670         startups.
671
672 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
673
674         * mono-debug.c: don't try to get the method header, it causes a
675         deadlock and it is not used for anything anymore.
676
677 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
678
679         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
680         broken by the last change.
681
682 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
683
684         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
685         SOCK_RDM.
686         
687         Code is contributed under MIT/X11 license.
688
689 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
690
691         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
692         nursery.
693
694         Code is contributed under MIT/X11 license.
695
696 2010-03-19  Martin Baulig  <martin@ximian.com>
697
698         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
699         dummy field, containing an empty string.
700         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
701
702
703 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
704
705         * class.c: setup_interface_offsets() refactor to not call
706         mono_class_get_implemented_interfaces () more times than needed and
707         to reduce the runtime memory requirements to be O(num_interfaces)
708         instead of O(max_interface_id).
709
710 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
711
712         * mono-mlist.[ch]: add mono_mlist_set_next ().
713
714 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
715
716         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
717         associated changes to support holes in the protected range of a
718         try block.
719
720         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
721         retrieves the holes table from a given MonoJitInfo.
722
723 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
724
725         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
726         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
727         hide the contents of the MonoString and MonoArray structs from the
728         public API. Change the accessor macros to accessors functions where
729         needed. Adjusted the array API to allow for pointer-sized lengths and
730         starting positions, so 64 bit arrays can be optionally provided in an
731         API compatible way if needed on 64 bit systems.
732
733 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
734
735         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
736         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
737
738 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
739
740         * class-internals.h: remove the method header from MonoMethod since
741         from now on it will be transient. We have a header pointer for method
742         wrappers, since in that case we need to keep track of it. For this
743         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
744         structs now. The same happens with MonoMethodInflated.
745         * class.c: reset the sre_method flag for inflated method structures:
746         this makes the code that cares look at the header in the MonoMethodInflated
747         structure.
748         * loader.c: lookup the method header in the appropriate field now that
749         it is removed from MonoMethod.
750         * metadata-internals.h: add a flag to the method header to know if it
751         can be freed inside mono_metadata_free_mh ().
752         * method-builder.c: updates after moving the header field from
753         MonoMethod to MonoMethodWrapper.
754         * reflection.c: MonoMethods generated from Reflection.Emit use
755         MonoMethodWrapper structs if they need a method header now (later take
756         advantage of this and remove all the current unsafe uses of method_aux_hash).
757         * metadata.c: make method header parsing not leak when verification
758         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
759         These changes save a few hundred KB of runtime memory in a mcs
760         bootstrap or a monodevelop startup.
761
762 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
763
764         * verify.c: Improve error message.
765
766 2010-03-12  Jb Evain  <jbevain@novell.com>
767
768         * reflection.c (add_exported_type): populate the exported
769         table with the type's nested type.
770
771 2010-03-10  Mark Probst  <mark.probst@gmail.com>
772
773         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
774         can't read parentheses.
775
776 2010-03-10  Mark Probst  <mark.probst@gmail.com>
777
778         * threads.c (thread_cleanup): Add a guard to dereferencing
779         "thread" to avoid an unlikely race condition.
780
781 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
782
783         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
784         instead of an empty string.
785
786 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
787
788         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
789         convert to a boolean, recent gcc versions compile this differently.
790
791 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
792
793        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
794        inlined.
795
796 2010-03-09  Mark Probst  <mark.probst@gmail.com>
797
798         * sgen-gc.c (STRING_SIZE): Off by one.
799
800 2010-03-09  Mark Probst  <mark.probst@gmail.com>
801
802         * sgen-archdep.h: Fix the signal context register access for
803         AMD64.
804
805 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
806
807         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
808
809 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
810
811         * verify.c: Store the initial basic block returned by mono_basic_block_split
812         so we can release the whole list and not just the first one.
813
814 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
815
816         * verify.c, debug-helpers.c, profiler.c, loader.c,
817         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
818         MonoMethodHeader a transient entity.
819
820 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
821
822         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
823         uncontrolled growth of the gray stack.
824
825         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
826         added items are removed first, improving cache locality. Avoid freeing queue
827         segments in the fast path, use the list of segments as the free list, truncate
828         it to its max size at the start of collection.
829
830 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
831
832         * metadata-internals.h: more memory savings, both with small config and without.
833
834
835 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
836
837         * appdomain.c, domain-internals.h, domain.c, object.c:
838         make class_vtable_hash into an array to reduce memory usage.
839
840 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
841
842         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
843         object-internals.h, object.c, reflection.c, threadpool.c:
844         reduce resource usage when the small config is selected.
845         In particular, up to 64K of methods/fields/properties/events
846         are allowed and "other" methods in events are ignored.
847
848 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
849
850         * threads.c: reduce resource usage when compiled for a small config.
851
852 2010-03-05  Mark Probst  <mark.probst@gmail.com>
853
854         * sgen-gc.c: Also collect number of degraded-alloced objects with
855         heavy statistics.
856
857 2010-03-04  Geoff Norton  <gnorton@novell.com>
858
859         * assembly.c: Only support OSX bundling if the bundle is 
860         actually detectable.
861
862 2010-03-04  Geoff Norton  <gnorton@novell.com>
863
864         * loader.c: The marshal specs are freed at the end of the call
865         but it explicitly frees the strings as well as the container,
866         so we need to dup them too to avoid referencing free'd memory.
867
868 2010-03-04  Geoff Norton  <gnorton@novell.com>
869
870         * icall-def.h:
871         * icall.c: Add a new private internal icall to construct
872         an object from its type without running the ctor.
873
874 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
875
876         * profiler.c: allow multiple profiler engines to be loaded
877         at the same time.
878
879 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
880
881         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
882         profiler event to track object moves.
883
884 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
885
886         * object.c, profiler.c, profiler.h, string-icalls.c:
887         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
888
889 2010-03-03  Miguel de Icaza  <miguel@novell.com>
890
891         * decimal.c (mono_double2decimal): Add support for reducing the
892         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
893         expected.
894
895 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
896
897         * icall-def.h:
898         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
899
900 2010-03-03  Marek Habersack  <mhabersack@novell.com>
901
902         * mono-config.c (mono_config_parse_assembly_bindings): added -
903         parses assembly binding redirections from appdomain's config
904         file.
905
906         * metadata-internals.h: added definition of a new function -
907         mono_config_parse_assembly_bindings - to support parsing assembly
908         binding redirections defined in appdomain's config file.
909
910         * domain-internals.h: added two new fields to _MonoDomain - a list
911         of assembly bindings and a flag to parse the config file only
912         once.
913
914         * assembly.c (assembly_binding_maps_name): empty culture name and
915         NULL culture name are considered equal.
916         (mono_assembly_apply_binding): added support for domain specific
917         assembly binding redirections, read from the appdomain's
918         configuration file. Fixes bug #580185
919
920 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
921
922         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
923         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
924         support.
925
926 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
927
928         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
929         from this function. The new function receive the parent token instead of a type.
930
931         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
932         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
933         typebuilders. This make it possible to properly encode generic type builders since
934         their unmanaged type don't have generics data while unfinished.
935
936         Fixes #583655.
937
938 2010-03-02  Mark Probst  <mark.probst@gmail.com>
939
940         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
941         writing binary log files (can be enabled by #define'ing
942         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
943         bugs in longer running programs.
944
945 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
946
947         * metadata.c: added some API documentation.
948
949 2010-03-01  Robert Jordan  <robertj@gmx.net>
950
951         * filewatcher.h: Include glib.h to fix the MSVC build.
952
953 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
954
955         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
956         a GC handle instead. This is a bit slower to access, but avoids burdening the
957         GC with 100s of individual roots.
958
959         * reflection.c (mono_class_get_ref_info):
960         (mono_class_set_ref_info):
961         (mono_class_free_ref_info): New internal helper fuctions.
962
963         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
964         of accessing klass->reflection_info directly.
965
966         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
967         words.
968
969         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
970         the previous array.
971
972 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
973
974         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
975         needs an indirection.
976
977 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
978
979         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
980         so all generic sharing code is in one place.
981
982         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
983         we don't call setup_interface_offsets () for unfinished types.
984
985 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
986
987         * class.c (mono_class_generic_sharing_enabled): Move this to
988         generic-sharing.c.
989
990         * image.c: Add an unload hook which is called before an image is unloaded.
991
992         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
993         metadata.c having to depend on generic sharing.
994
995 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
996
997         * class.c: reduce size of ridiculously large cache.
998
999 2010-02-26  Martin Baulig  <martin@ximian.com>
1000
1001         * mono-debug.h
1002         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
1003
1004         * threads.c (mono_thread_internal_reset_abort): New method; resets
1005         the abort, but doesn't throw any exception if no abort was requested.
1006
1007 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1008
1009         * class.c (get_implicit_generic_array_interfaces): Call
1010         mono_class_setup_interface_offsets () before accessing
1011         eclass->interface_offsets_count. This only shows up on platforms without IMT for
1012         some reason.
1013
1014 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1015
1016         * environment.c, environment.h, icall.c: make the GetOSVersionString()
1017         icall internal.
1018
1019 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
1020
1021         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
1022         direct access to the MonoType fields.
1023
1024 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1025
1026         * threads.h: Move some internal functions which were added to this header by
1027         mistake to threads-types.h.
1028
1029         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
1030
1031 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
1032
1033         * class-internals.h, class.h, object.h: make MonoRemoteClass
1034         and mono_remote_class() internal.
1035
1036 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1037
1038         * metadata-internals.h, class-internals.h, metadata.h: make the
1039         MonoType guts internal as well.
1040
1041 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
1042
1043         * reflection.h: the MonoTypeNameParse guts are internal now.
1044         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
1045         are internal now, provide accessors as needed.
1046         * metadata.h, metadata-internals.h: the MonoMethodSignature
1047         guts are internal now.
1048         * Makefile.am: mempool.h is an internal header now.
1049         * *.h, *.c: remove glib.h usage from the public headers.
1050
1051 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
1052
1053         * culture-info-table.h : regenerated.
1054
1055 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1056
1057         * metadata.c: Add mono_method_get_header_summary which returns minimal
1058         information about the header of a method. This is the information used
1059         by the inline oracle to reject methods.
1060
1061         This method doesn't decode local variables and doesn't cache it's result,
1062         so it should cause a minimal reduction in memory usage.
1063
1064         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1065         mono_method_get_header_summary.
1066
1067 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
1068
1069         * threads.c (mono_thread_exit): Make sure that the main thread is
1070         non-null before dereferencing it.
1071
1072 2010-02-21  Geoff Norton  <gnorton@novell.com>
1073
1074         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1075         locale.
1076         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
1077         before falling back to the posix lookup.
1078
1079 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
1080
1081         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1082         the DONT_MANAGE flag set.
1083
1084 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1085
1086         * domain.c: Remove old v1 version strings. Let the runtime
1087         default to 2.0 instead of failing because it can't find a
1088         working 1.0 instalation.
1089
1090 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1091
1092         * domain.c: Add v4 RC version string.
1093
1094 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1095
1096         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1097         of overflow checking function.
1098
1099 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1100
1101         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1102         generic methods.
1103
1104         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1105         cases for ParameterInfo.
1106
1107         Fixes #579493.
1108
1109 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1110
1111         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1112         have has_cctor set. Fixes #575946.
1113
1114 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1115
1116         * appdomain.c: display a warning if the parsing the config file
1117         produces any error.
1118         Skip the BOM in UTF-8 files.
1119         Copy the AppDomainSetup before setting the privateBinPath so that the
1120         correct configuration file is read.
1121
1122 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1123
1124         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1125         vtable trampoline per vtable slot index. Not used yet.
1126
1127 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1128
1129         * icall-def.h:
1130         * icall.c: add internal call that returns the system page size.
1131
1132 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1133
1134         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1135         'int' for system classes.
1136
1137 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1138
1139         * icall.c, icall-def.h: new icall to check for sufficient
1140         stack space.
1141
1142 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1143
1144         * reflection.c (ensure_complete_type): Check that reflection_info
1145         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1146
1147 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1148
1149         * attrdefs.h:
1150         * tabledefs.h: Add NoOptimization flag.
1151
1152 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1153
1154         * sgen-gc.c: Don't consider it a missing remset if the target
1155         object is pinned - we might have done the store but not added the
1156         remset yet.
1157
1158 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1159
1160         * sgen-gc.c: When checking for missing remsets, don't assert on
1161         the first one, but print them all and then assert.
1162
1163 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1164
1165         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1166
1167 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1168
1169         * console-unix.c: On OSX Control-Y is assigned to
1170         VDSUSP (non-Posix), the
1171         suspend-program-next-time-it-tries-to-read-input command (this is
1172         different than C-z, which suspends immediately).
1173
1174         Do the same thing that bash does and ignore this setting,
1175         making our repl/getline support pasting.
1176
1177 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1178
1179         * sgen-gc.c: Simple plausibility check for scan_starts.
1180
1181 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1182
1183         * sgen-gc.c: Round up when calculating the number of scan starts.
1184
1185 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1186
1187         * reflection.c: Export mono_get_object_from_blob.
1188
1189         * object-internals.h: Ditto.
1190
1191         * icall.c: New icall property_info_get_default_value to get the default
1192         value of a property. Since using this is not common, no caching is done.
1193
1194         * icall-def.h: Add new icall.
1195
1196 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1197
1198         * class.c: Add mono_class_get_property_default_value.
1199
1200         * class-internal.h: Export mono_class_get_property_default_value.
1201
1202 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1203
1204         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1205
1206 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1207
1208         * sgen-gc.c: introduced critical regions to allow some lockless
1209         operations and increase scalability.
1210
1211 2010-02-10  Geoff Norton  <gnorton@novell.com>
1212
1213         * reflection.c: Support building with DISABLE_REFLECTION
1214
1215 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1216
1217         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1218         Closes bug #566057.
1219
1220         * exception.c: fix typo in comment.
1221
1222 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1223
1224         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1225         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1226
1227         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1228
1229         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1230         the internal API.
1231
1232         Fixes #574434.
1233
1234 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1235
1236         * threads.c: Removed two assertions that were too strict.  Added a
1237         clarifying comment.  Fixes #577090.
1238
1239 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1240
1241         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1242         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1243
1244         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1245
1246         * verify.c (mono_type_get_stack_name): Fix a warning.
1247
1248 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1249
1250         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1251         mono_marshal_wrapper_info_from_wrapper.
1252
1253         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1254         mono_marshal_method_set_wrapper_data, and export.
1255
1256         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1257         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1258         by calling mono_marshal_get_wrapper_info ().
1259
1260         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1261         small objects which does no size checks.
1262
1263 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1264
1265         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1266
1267 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1268
1269         * verify.c (mono_method_verify): Use the new basic block formation pass
1270         to avoid verifying dead basic blocks. This is the same behavior as the
1271         runtime MS verifier.
1272
1273 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1274
1275         * mono-basic-block.c:
1276         * mono-basic-block.h: New implementation of a basic block formation pass.
1277         The formation pass does static liveness analysis as well to detect dead
1278         basic blocks.
1279
1280 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1281
1282         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1283         'this' argument in icalls.
1284
1285 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1286
1287         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1288
1289 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1290
1291         * object.c, domain.c: When using SGen, we must register
1292         vtable->type as a root if it's not a MonoType, because then it
1293         wasn't pin-alloced.
1294
1295 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1296
1297         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1298         at the start of nursery collections, because we might have had
1299         degraded allocations which changed next_data.
1300
1301 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1302
1303         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1304         custom attr so this function works in cross-compiling mode.
1305
1306 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1307
1308         * class.c (make_generic_param_class): Initialize interface offsets since we
1309         set klass->inited. Fixes #574819.
1310
1311 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1312
1313         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1314         calling the JIT domain cleanup hook.
1315
1316 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1317
1318         * pedump.c (main): Properly set the verifier mode when running the metadata
1319         verifier.
1320
1321 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1322
1323         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1324         overlapping fields now that we're called before has_references is set.
1325
1326         * pedump.c (dump_verify_info): Clear any loader error before verifying another
1327         method. Otherwise all sort of weird stuff happens.
1328
1329 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1330
1331         * object.c (mono_field_get_value_object): Handle nullable types correctly.
1332         Fixes #572874.
1333
1334 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
1335
1336         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
1337         Fixes #573322.
1338
1339 2010-01-23  Mark Probst  <mark.probst@gmail.com>
1340
1341         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
1342         pin_staging_area_index is greater than 0.
1343
1344 2010-01-22 Miguel de Icaza (miguel@novell.com)
1345
1346         * loader.c: Since we do nothing with the error returned, pass NULL
1347         to ignore the error.
1348
1349 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1350
1351         * reflection.c (typebuilder_setup_fields): Pretend field setup already
1352         happened before starting to encode the actual fields. This avoid ciclic
1353         dependencies and eventual crashes.
1354
1355         Fixes #572660.
1356
1357 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1358
1359         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
1360         atomic and remove the half-constructed hack in SGen.
1361
1362 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1363
1364         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
1365         has a recursive reference to itself.
1366
1367         Fixes #571863.
1368
1369 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1370
1371         * loader.c (mono_method_signature): Fix error message.
1372
1373 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1374
1375         * sgen-gc.c: Reuse to-space sections between nursery collections.
1376
1377 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1378
1379         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
1380         from the current assembly or mscorlib. Fixes bug #322957.
1381
1382 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1383
1384         * marshal.c: Calculate the target class of the delegete invoke wrappers using
1385         get_wrapper_target_class.
1386
1387 2010-01-19  Mark Probst  <mark.probst@gmail.com>
1388
1389         * sgen-gc.c: Fix warnings.
1390
1391 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1392
1393         * verify.c (store_local): Better error message.
1394
1395 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1396
1397         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
1398         arguments.
1399
1400 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1401
1402         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
1403         function is generics variance aware.
1404
1405 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
1406
1407         * security-core-clr.c (mono_security_core_clr_can_access_internals):
1408         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
1409
1410 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
1411
1412         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
1413           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
1414
1415         Code is contributed under MIT/X11 license.
1416
1417 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1418
1419         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
1420         on a GTD.
1421
1422 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1423
1424         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
1425         return a point to a wrapper specific info structure describing the wrapper.
1426         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
1427  
1428 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1429  
1430         * sgen-gc.c: Make minor collection section allowance adaptive,
1431         depending on the amount of memory reclaimed in the last major
1432         collection.  If more memory was reclaimed (i.e. more garbage
1433         produced), do the next collection earlier.
1434
1435 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1436
1437         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
1438         to itself.
1439
1440         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
1441         the token as parameter.
1442
1443         * verify-internals.h: Ditto.
1444
1445         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
1446
1447         Fixes #571460.
1448
1449 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1450
1451         * sgen-gc.c: Make store_remset_buffer_index long.
1452
1453 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1454
1455         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
1456
1457         Fixes #569579.
1458
1459 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1460
1461         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
1462         off precise marking if it is available.
1463         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
1464
1465 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
1466
1467         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
1468
1469         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
1470         pinned objects.
1471
1472         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
1473         to the array allocator.
1474
1475 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1476
1477         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
1478         result of mono_compile_method (), it already includes an ftnptr.
1479
1480 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1481
1482         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
1483
1484 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1485
1486         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
1487         hash value which doesn't depend on glib/eglib versions.
1488         (mono_metadata_type_hash): Use it.
1489
1490         * object.c (mono_method_get_imt_slot): Ditto.
1491
1492 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
1493
1494         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
1495         independently of the GTD.
1496
1497         * class.c (mono_class_setup_fields): Fail if field has negative offset.
1498
1499         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
1500         to the upper limit since instance_size includes this amount.
1501
1502         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
1503
1504         Fixes #569544.
1505
1506 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
1507
1508         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
1509         with static methods.
1510
1511         * object.c (build_imt_slots): Avoid asserting when static methods are
1512         encountered in an interface.
1513
1514 2010-01-13  Mark Probst  <mark.probst@gmail.com>
1515
1516         * sgen-gc.c (to_space_expand): Fix assertion.
1517
1518 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
1519
1520         * string-icalls.c: missing declaration fixes.
1521         * sgen-gc.c: portability fixes.
1522
1523 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1524
1525         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
1526
1527         * class.c:
1528         * cominterop.c:
1529         * icall.c:
1530         * object.c: 
1531         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
1532
1533 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1534
1535         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
1536         it can fail loading the type.
1537
1538         * class.c: Add mono_class_inflate_generic_class_checked.
1539
1540         * class.c:
1541         * verify.c:
1542         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
1543
1544 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
1545
1546         * loader.c (mono_method_signature_checked): New internal function taking an
1547         MonoError argument.
1548
1549         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
1550         Fixes build on rh 7.3.
1551
1552 2010-01-10  Aaron Bockover  <abockover@novell.com>
1553
1554         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
1555         at runtime in the same way as on Windows, which yields a relocatable
1556         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
1557         of the running mono process.
1558
1559         On TARGET_ARM, fallback () will always be executed.
1560
1561 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1562
1563         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
1564
1565 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1566
1567         * class.c (mono_class_is_assignable_from_slow): Support variant
1568         generic delegates.
1569
1570         * class.c (mono_class_implement_interface_slow): Support types with
1571         variant generic arguments.
1572
1573 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1574
1575         * verify.c: Remove some code duplication.
1576
1577 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1578
1579         * object.c: Update docs.
1580
1581 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1582
1583         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
1584
1585         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
1586         fallback trampoline as well.
1587
1588         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
1589         out argument that is set to TRUE if the match was direct. 
1590
1591         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
1592
1593         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
1594
1595 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1596
1597         * class.c: Add mono_class_interface_offset_with_variance function that does same
1598         as mono_class_interface_offset but takes variance into account.
1599
1600         * class-internal.h: Export mono_class_interface_offset_with_variance.
1601
1602         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
1603
1604 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1605
1606         * object.c:
1607         * icall.c:
1608         * class.c: Add some FIXME for due to variant generic arguments.
1609
1610         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
1611         can't use the simple bitfield check, so call mono_class_is_assignable_from if
1612         the bitfield check fails.
1613
1614 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1615
1616         * class.c (mono_class_is_assignable_from): Rework the generics variance code
1617         to be easier to read and fix bugs in the case a non generic type implements a variant
1618         interface.
1619
1620         * class.c (mono_class_has_variant_generic_params): Make non static.
1621
1622         * class-internals.h: Export mono_class_has_variant_generic_params as part of
1623         the private API.
1624
1625 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1626
1627         * assembly.c: fix MONO_PATH debug output.
1628
1629 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
1630
1631         * culture-info-table.h : regenerated.
1632
1633 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1634
1635         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
1636         types that are meant to not have a parent.
1637
1638 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1639
1640         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
1641         from the image mempool, so it is not leaked.
1642
1643 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1644
1645         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
1646
1647 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
1648
1649         * verify.c (verify_valuetype_layout_with_target): Fix case
1650         that can lead to infinite recursion. Fix bug #567861
1651
1652 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1653
1654         * pedump.c: Run code verifier even if image verification fails
1655         due to a failed type we. This allows more errors to be shown.
1656
1657 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1658
1659         * class.c (count_virtual_methods): Remove the assert and now
1660         fail properly.
1661         
1662         * class.c (setup_interface_offsets): This can fail now.
1663
1664         * class.c (mono_class_setup_vtable_general): Check for parent vtable
1665         errors. Check setup_interface_offsets errors.
1666
1667         * class.c (setup_interface_offsets): Simplify the return error logic
1668         and remove class_init_ok.
1669
1670         Fixes #560327.
1671
1672 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1673
1674         * class.c (mono_class_init): Do class verification at the beginning. Add
1675         some asserts to avoid tripping into invalid memory.
1676
1677         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
1678         g_error and a decent message.
1679
1680         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
1681
1682         Fixes #567548.
1683
1684 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1685
1686         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
1687         as inline functions instead of defining them in mempool.c.
1688
1689         * metadata-internals.h (MonoImageSet): New structure representing a set of
1690         MonoImages, which own a collection of generic instances.
1691
1692         * metadata.c: Get rid of the global generic caches, instead assign each generic
1693         instance to the image set which consists of all the images referenced by the
1694         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
1695         the memory used by generic instances to be allocated from a per image-set mempool
1696         later.
1697
1698 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1699
1700         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
1701
1702 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1703
1704         * appdomain.c (zero_static_data): Fix a warning.
1705
1706         * locales.c (construct_culture_from_specific_name): Applied patch from
1707         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
1708         not found. Fixes #567900.
1709
1710 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
1711
1712         * loader.c (mono_method_get_signature_full): Remove two asserts.
1713         Return NULL instead so that the verifier can handle both cases 
1714         gracefully.
1715
1716 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1717
1718         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
1719         so we can properly fail types instead of crashing.
1720
1721         Fixes #567676.
1722
1723 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1724
1725         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
1726         generic method.
1727
1728 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1729
1730         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
1731
1732 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1733
1734         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
1735         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
1736         we can't remove it from it since we don't hold the lock.
1737         (mon_new): Free the orphaned events here when a mon structure is added to the
1738         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
1739         this down.
1740
1741 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1742
1743         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
1744         as max stack might be zero.
1745
1746         Fixes #562320.
1747
1748 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1749
1750         Rework all uses of mono_class_setup_methods to accept that it can fail now.
1751
1752         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
1753         instances if the GTD did.
1754
1755         * class.c (mono_class_setup_properties): Ditto.
1756
1757         * class.c (mono_class_setup_events): Ditto.
1758
1759         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
1760
1761         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
1762         error setting.
1763
1764         * class.c (mono_class_init): Fail if GTD did.
1765
1766         * cominterop.c:
1767         * generic-sharing.c:
1768         * icall.c:
1769         * loader.c:
1770         * object.c:
1771         * verify.c: Properly handle failure of mono_class_setup_methods.
1772
1773 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1774
1775         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
1776         mono_class_inflate_generic_method_full internal.
1777
1778         * class.c (inflate_generic_context): Now takes a MonoError argument.
1779
1780         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
1781         errors.
1782
1783 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1784
1785         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
1786         they cannot be patched. Partly fixes #564408.
1787
1788 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1789
1790         * metadata-internals.h, reflection.c: Use the
1791         MonoDynamicImage.handleref hash table only with unmanaged keys,
1792         and add a managed hash table handleref_managed for managed keys.
1793
1794 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1795
1796         * sgen-gc.c: Unset to-space bumper between collections.  It might
1797         become invalid due to degraded allocations.
1798
1799 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
1800
1801         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
1802         with the one from the original method.
1803
1804         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
1805         compatibility.
1806
1807         * verify-internals.h: Add new function to the internal API.
1808
1809 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
1810
1811         * culture-info-tables.h: regenerated it to include the Georgian culture.
1812
1813 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1814
1815         * sgen-gc.c: Include mono/utils/memcheck.h.
1816
1817         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
1818         instead of the current domain, since the two might not match if this is called
1819         from the debugger.
1820
1821         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
1822         domain which created this assembly.
1823
1824 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1825
1826         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
1827
1828 2009-12-17  Mark Probst  <mark.probst@gmail.com>
1829
1830         * sgen-gc.c: Managed implementation of the specialized generic
1831         store write barrier.
1832
1833 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
1834
1835         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
1836         A private virtual newslot method is used to implement an interface method without exposing
1837         it to users. When querying for public instance methods, such method would hide a public one
1838         on a parent type.
1839
1840         Fixes #564379.
1841
1842 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
1843
1844         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
1845         conventions.
1846
1847 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1848
1849         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
1850
1851 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1852
1853         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
1854         as they are no longer used.
1855         
1856          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
1857
1858         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
1859
1860 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1861
1862         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
1863         if the owner class has not been finished before returning reflection_info.      
1864
1865         Fixes #565127.
1866
1867 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
1868
1869         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
1870         param doesn't have custom attributes. Fixes #565117.
1871
1872         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
1873         #565120.
1874
1875 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
1876
1877         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
1878
1879 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
1880
1881         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
1882         same amount done by a core-clr enabled runtime.
1883
1884 2009-12-15  Marek Habersack  <mhabersack@novell.com>
1885
1886         * appdomain.c (mono_make_shadow_copy): make sure access mode of
1887         the target files is reset to writable by owner and readable by
1888         everyone else to prevent problems when updating shadow copies of
1889         files whose source is read-only. Fixes bug #556884
1890
1891 2009-12-15  Mark Probst  <mark.probst@gmail.com>
1892
1893         * class.c (mono_generic_class_get_class): Allocate the generic
1894         class via malloc again, so that it can be freed when any one of
1895         the images of its constituent types is closed.
1896
1897         * metadata.c: When closing an image, don't free generic insts and
1898         generic classes right away, but put them into a list for later
1899         freeing.
1900
1901         * image.c, metadata-internals.h: Store the free list and in the
1902         second pass of closing an image, free it.
1903
1904 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1905
1906         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
1907
1908         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
1909         types in type_hash.
1910
1911         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
1912
1913 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1914
1915         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
1916         user type.
1917
1918         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
1919         is used.
1920
1921 2009-12-14  Miguel de Icaza  <miguel@novell.com>
1922
1923         * verify.c (mono_method_verify): The Unused opcodes produce an
1924         InvalidProgramException on .NET
1925
1926 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
1927
1928         * loader.c (mono_method_get_header): Move assert after the verifier
1929         has been called on the method header.
1930
1931 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1932
1933         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
1934
1935         * appdomain.c: Bump corlib version.
1936
1937 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1938
1939         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
1940         types as well since otherwise generic instances would not return UT as arguments but
1941         their undelying system type.
1942
1943         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
1944         to reflect the fact that they can have now multiple different types.
1945
1946         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
1947
1948         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
1949
1950         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
1951
1952         * reflection.c (mono_reflection_register_with_runtime): Init super types
1953         if the image is not dynamic.
1954
1955         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
1956         check if the generic type definition is a TypeBuilder.
1957
1958         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
1959         doesn't belong to a dynamic image, skip initialization.
1960
1961         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
1962         base definition is not a dynamic type.
1963
1964 2009-12-11  Marek Habersack  <mhabersack@novell.com>
1965
1966         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
1967         mono_profiler_string_allocation
1968
1969         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
1970         if string profiling is enabled, call
1971         mono_profiler_string_allocation
1972
1973         * profiler.h: added two MonoProfileFlags -
1974         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
1975         installation functions for the hooks below.
1976
1977         * profiler-private.h, profiler.c: added two hooks:
1978         mono_profiler_string_allocation called whenever a string is
1979         allocated by InternalAllocateStr and mono_profiler_iomap called
1980         whenever IOMAP code performs an adjustement on a file path.
1981
1982 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
1983
1984         * boehm-gc.c: fixed race condition while getting the target of a
1985         disappearing link (bug #522233).
1986
1987 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
1988
1989         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
1990         the error.
1991
1992 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
1993
1994         * reflection.c: Add mono_reflection_register_with_runtime icall to
1995         allow a MonoGenericClass to register itself as the managed mirror of
1996         a given generic instance.
1997         This is a temporary workaround until all MGC instantiation happens in
1998         managed code.
1999
2000         * object-internals.h: Ditto.
2001
2002         * icall-def.h: Ditto.
2003
2004 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2005
2006         * sgen-gc.c (find_in_remsets): Also search the generic store
2007         remsets.
2008
2009 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2010
2011         * sgen-gc.c: Don't access class names in debugging code when
2012         unloading a domain, because they might not be valid anymore.
2013
2014 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2015
2016         * domain.c, domain-internals.h: New function mono_domain_unset().
2017
2018         * appdomain.c (unload_thread_main): Detach the thread again at the
2019         end.
2020
2021         * threads.c: When a thread exists or is detached, unset its domain
2022         so that it's NULL when, for example, a pthread destructor runs.
2023
2024         * sgen-gc.c: Assert that there is no domain set after a thread is
2025         done.
2026
2027 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2028
2029         * class.c (mono_generic_class_get_class),
2030         metadata.c (free_generic_class): Allocate generic MonoClass's from
2031         the image mempool, not via malloc.  The problem with malloc is
2032         that when unloading a domain those classes are freed before
2033         clearing the heap and SGen needs the classes.  Rewriting the
2034         unloading code to do the free later would be more work and there's
2035         no point in using malloc anyway.
2036
2037 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
2038
2039         * loader.c (mono_method_signature): Always call mono_loader_unlock 
2040         before returning.
2041
2042 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2043
2044         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
2045         user string blobs.
2046
2047         * verify-internals.h: Add new function to the internal API.
2048
2049         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
2050         check if it's a valid string.
2051
2052         * object.c (mono_ldstr): Ditto.
2053
2054         Fixes #561943.
2055
2056 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2057
2058         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
2059         from a method before returning it. This is the expected behavior.
2060
2061 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
2062
2063         * reflection.c (inflate_method): Handle the case of a regular system type.
2064
2065 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2066
2067         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2068         gathering code.
2069
2070         * mempool.c, mempool-internals.h: New function
2071         mono_mempool_get_bytes_allocated().
2072
2073         * Makefile.am: sgen-pinning-stats.c added.
2074
2075 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2076
2077         * sgen-gc.c (create_allocator): Only use the fast path if the
2078         object size is within the small object size limit.
2079
2080 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2081
2082         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2083         possibly adding padding to sizeof (GCMemSection).
2084
2085 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2086
2087         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2088         reference is not in the nursery.
2089
2090 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
2091
2092         * class.c (mono_class_from_typeref): Bounds check idx against the 
2093         assemblyref table.
2094
2095 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2096
2097         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2098         through the potential roots, then sort the results and find the
2099         pinned objects from there.
2100
2101         * Makefile.am: sgen-pinning.c added.
2102
2103 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2104
2105         * sgen-gc.c: Record generic stores in specialized remset buffers.
2106
2107 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2108
2109         * sgen-gc.c: Make pinned chunks the same size as major heap
2110         sections, and align them as well, so that we can check whether an
2111         object is in a pinned chunk or a major section in constant time.
2112
2113 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2114
2115         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2116
2117 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2118
2119         * sgen-gc.c: Make all major heap sections the same size (currently
2120         128k) and allocate them on aligned addresses.  Small heap sections
2121         give us better granularity with pinned objects - we can free up
2122         much more memory.
2123
2124 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2125
2126         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2127         output removed.
2128
2129 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2130
2131         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2132
2133         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2134         names in addition to the runtime generated one.
2135
2136         * mono/metadata/image.h: Add a function to take the real name of the assembly
2137         image.
2138
2139         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2140         use it instead of the runtime generated one.
2141
2142         Code is contributed under MIT/X11 license.
2143
2144 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2145
2146         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2147         before the other checks to prevent problems if the DateTime class is blittable.
2148         Hopefully fixes #559600.
2149
2150 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2151
2152         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2153         returns the largest string length that will not be put into the
2154         LOS.
2155
2156         * sgen-gc.c, gc-internal.h: New function that returns the largest
2157         object size that will not be put into the LOS.
2158
2159         * appdomain.c: Bump corlib version.
2160
2161 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2162
2163         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2164
2165         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2166
2167 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2168
2169         * reflection.c (inflate_method): Fix signature.
2170
2171         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2172         in managed code.
2173
2174 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2175
2176         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2177
2178 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2179
2180         * sgen-gc.c: Abstract to-space handling.
2181
2182 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2183
2184         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2185
2186         Fixes #559906.
2187
2188 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2189
2190         * sgen-gc.c: Only add references from outside the nursery to
2191         within the nursery to the global remset list.
2192
2193 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2194
2195         * appdomain.c (create_exceptions): Set the domain temporarily if
2196         necessary to avoid cross-domain references.
2197
2198 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2199
2200         * verify.c (get_stack_type): Return that the type is invalid instead of
2201         asserting.
2202
2203         * verify.c (mono_method_verify): Verify that all locals and arguments
2204         have valid stack types.
2205
2206         Fixes #559913.
2207
2208 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2209
2210         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2211         bounds checking overflow aware.
2212
2213         Fixes #559910.
2214
2215 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2216
2217         * verify.c (do_invoke_method): Check for invalid method signatures.
2218
2219         Fixes #553450.
2220
2221 2009-12-02  Jb Evain  <jbevain@novell.com>
2222
2223         * appdomain.c (MONO_CORLIB_VERSION): bump.
2224         * icall-def.h (get_base_definition): renamed to get_base_method
2225         and add a boolean argument indicating we want the original
2226         method definition, or the immediate base method.
2227         * icall.c: apply the get_base_definition to get_base_method change.
2228
2229 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2230
2231         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2232
2233         Fixes #558042.
2234
2235 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2236
2237         * class.c: remove asserts for invalid type token in
2238         mono_class_name_from_token(), mono_assembly_name_from_token() and
2239         mono_class_create_from_typedef () (fixes bug #553318).
2240
2241 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2242
2243         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2244         incorrect assemblies (bug #553322).
2245
2246 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2247
2248         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2249
2250         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2251
2252         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2253
2254         * class.c (inflate_generic_context): Ditto.
2255
2256         * loader.c (method_from_methodspec): Ditto.
2257
2258         Fixes #558230.
2259
2260 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2261
2262         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2263
2264         * class.c (mono_class_create_from_typespec): Ditto.
2265
2266         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2267
2268         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2269
2270         Fixes #558184.
2271
2272 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2273
2274         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2275
2276         * verify.c (verify_delegate_compatibility): Ditto.
2277
2278         * verify.c (do_newobj): Ditto.
2279
2280         Fixes #558046.
2281
2282 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2283
2284         * sgen-gc.c: Use a gray queue instead of requiring that gray
2285         objects are in a contiguous region.
2286
2287         * sgen-gray.c: The gray queue implementation.
2288
2289         * Makefile.am: sgen-gray.c added.
2290
2291 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2292
2293         * appdomain.c: When unloading a domain, zero its static data and
2294         perform a minor collection when using SGen.  That will get rid of
2295         all the remsets pointing into that domain's static data.
2296
2297         * sgen-gc.c: Allow remsets into static data.  By doing this we
2298         need less checks so we're more efficient.
2299
2300 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2301
2302         * verify.c (mono_method_verify): Check for catch clauses with broken
2303         types.
2304
2305         Fixes #558465.
2306
2307 2009-12-01  Jb Evain  <jbevain@novell.com>
2308
2309         * class.c (make_generic_param_class): set the namespace of
2310         the generic parameter class from its owner, if available.
2311
2312 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2313
2314         * verify.c (code_bounds_check): Do proper overflow checking.
2315
2316         * verify.c (mono_method_verify): The number of switch entries is
2317         an unsigned int. Properly bounds check it.
2318
2319         Fixes #558594.
2320
2321 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2322
2323         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2324         mono_metadata_method_has_param_attrs which only checks if a given param
2325         list has a non zero flags entry.
2326
2327         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2328         to inform how many params should we expect to decode.
2329
2330         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2331         as it's faster than mono_metadata_get_param_attrs.
2332
2333         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2334         add mono_metadata_method_has_param_attrs.
2335
2336 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2337
2338         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
2339         failures.
2340
2341         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
2342         is -1 but its class is broken.
2343
2344         Fixes #558522.
2345
2346 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2347
2348         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
2349         for parameter overflow.
2350
2351         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
2352         of mono_metadata_get_param_attrs.
2353
2354         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
2355         API.
2356
2357         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
2358
2359 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2360
2361         * class.c (mono_class_setup_fields): Check for fields with broken types.
2362
2363         Fixes #558741.
2364
2365 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
2366
2367         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
2368         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
2369         its TypeBuilder::CreateType ().
2370
2371         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
2372         if not needed.
2373
2374         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
2375         to make setup_interface_offsets happy.
2376
2377         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
2378         compilation now works.
2379
2380 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
2381
2382         * appdomain.c (create_exceptions): New helper function extracted from
2383         mono_runtime_init () to precreate objects used during exception handling.
2384         (mono_runtime_init): Call it.
2385         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
2386
2387 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2388
2389         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
2390         compilation until the proper one is found.
2391
2392 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
2393
2394         * class.c (mono_class_setup_vtable_general): Cache the result of
2395         get_virtual_methods () since it can be slow because of the metadata
2396         optimization.
2397
2398         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
2399         from a MonoValueHashTable for now, since the later is based on an earlier
2400         version of hpj's internal probing code and seems to have serious collision
2401         issues.
2402
2403         * loader.c (mono_get_method_full): Update after the change above.
2404
2405 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2406
2407         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
2408
2409 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2410
2411         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
2412         the GTD instead of the DGC instead of crashing.
2413
2414         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
2415         required. Inflate fields if needed.
2416
2417         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
2418         finished. Renamed.
2419
2420 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2421
2422         * class.c (check_interface_method_override): Check for NULL signatures and fail
2423         the type.
2424
2425         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
2426
2427         Fixes #553428.
2428
2429 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2430
2431         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
2432         the MONO_METHOD_FLAGS column instead of decoding the whole row.
2433
2434 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2435
2436         * loader.c (field_from_memberref): Resolve the class first then the field
2437         signature. Remove a lot of duplicated code and make sure we don't pass valid
2438         values to mono_loader_set_error_field_load.
2439
2440         Fixes #553306.
2441
2442 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2443
2444         * class.c (inflate_generic_type): Change code to use new signature of
2445         mono_error_set_bad_image.
2446
2447         Fixes #558124.
2448
2449 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
2450
2451         * verify.c (mono_method_verify): Don't free ctx.params items if 
2452         we aborted while inflating the ctx.locals. Complete previous fix
2453
2454 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
2455
2456         * verify.c (mono_method_verify): Use the uninflated type name, 
2457         when the inflated is null, to report errors. Also take care when
2458         freeing, not to free everything since, in case of an error, some
2459         stuff would be copies (i.e. not allocated by the function itself)
2460         Fix bug #558145
2461
2462 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2463
2464         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
2465         or overflow. The caller must have done this check explicitly. This guard us
2466         from accessing invalid memory.
2467
2468         * verify.c (do_push_static_field): Check for stack overflow.
2469
2470         Fixes #553333.
2471
2472 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2473
2474         * loader.c (find_method_in_class): Don't crash if the signature cannot
2475         be resolved.
2476
2477         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
2478         of asserting for the case of invalid params.
2479
2480         Fixes #553304.
2481
2482 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
2483
2484         * image.c (mono_image_load_module): Fix crash when a bad assembly
2485         has no module at all (fix bug #553412) and also replace the 
2486         g_assert with a return NULL (documented return value for failure)
2487
2488 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
2489
2490         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
2491
2492 2009-11-23  Miguel de Icaza  <miguel@novell.com>
2493
2494         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
2495         file attribute to managed code and avoid doing the mask/attribute
2496         checks here. 
2497
2498 2009-11-22  Miguel de Icaza  <miguel@novell.com>
2499
2500         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
2501         the managed world.
2502
2503         * icall-def.h: New entry points.
2504         
2505 2009-11-19  Mark Probst  <mark.probst@gmail.com>
2506
2507         * process.c: Don't put references to managed objects into a
2508         g_ptr_array.
2509
2510 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
2511
2512         * class.c (can_access_internals): Allow CoreCLR to participate in
2513         allowing (or not) [InternalsVisibleTo] between assemblies.
2514         * security-core-clr.c|h: Make sure that only trusted code (a 
2515         superset of platform code) can access the internals of platform
2516         code.
2517
2518 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
2519
2520         * reflection.c: use the correct base class to get the virtual method
2521         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
2522
2523 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
2524
2525         * security-core-clr.c (get_caller_no_reflection_related): 
2526         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
2527         it's still reflection and must be filtered correctly.
2528
2529 2009-11-16  Mark Probst  <mark.probst@gmail.com>
2530
2531         * object.c (compute_class_bitmap): Fix for large bitmaps.
2532
2533 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
2534
2535         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
2536
2537         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
2538         koush@koushikdutta.com). Disable GC_no_dls on android.
2539
2540 2009-11-12  Mark Probst  <mark.probst@gmail.com>
2541
2542         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
2543         tlab_next points outside the TLAB because the allocator was
2544         interrupted.
2545
2546 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2547
2548         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
2549
2550 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2551
2552         * object-internals.h: Change signature for mono_string_to_utf8_image.
2553
2554         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
2555         argument.
2556
2557         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
2558         exceptions due to mono_string_to_utf8.
2559
2560 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2561
2562         * object-internals.h: Change signature for mono_string_to_utf8_mp.
2563
2564         * object.c (mono_remote_class): Make sure all resources are released before
2565         raising an exception.
2566
2567         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
2568
2569 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2570
2571         * mono-perfcounters.c (network_get_impl): Change variable initialization
2572         ordering to fix potential memory leak in case of exceptions.
2573
2574         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
2575         encoded strings.
2576         
2577 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2578
2579         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
2580         variable initialization ordering to fix potential memory leak in case
2581         of exceptions.
2582
2583 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
2584
2585         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
2586         needed.
2587
2588 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2589
2590         * appdomain.c: Fix shadow path code to better deal with exceptions.
2591
2592 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2593
2594         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
2595         exception in the middle of the runtime code.
2596
2597 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2598
2599         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
2600         leak memory with broken envvar value.
2601
2602 2009-11-06  Mark Probst  <mark.probst@gmail.com>
2603
2604         * reflection.c (mono_reflection_setup_internal_class): Because
2605         nested classes are not added to the name cache, we must put them
2606         in the reflection_info_unregister_classes list.
2607
2608 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
2609
2610         * class.c: When CoreCLR is enabled don't call mono_init_com_types
2611         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
2612         platform (trusted) code. Instead we return a TypeLoadException to
2613         be thrown later. This is the exception thrown by Silverlight 2 if
2614         a type, inside application (user) code is marked with [ComImport]
2615
2616 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2617
2618         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
2619         mono_is_debugger_attached () too.
2620
2621         * mono-debug.c (mono_is_debugger_attached): New helper function.
2622         (mono_set_is_debugger_attached): Ditto.
2623
2624 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2625
2626         * object-internals.h: Add mono_string_to_utf8_checked.
2627
2628         * object.c: Implement mono_string_to_utf8_checked.
2629
2630 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2631
2632         * class.c: Add missing check for load errors after every
2633         call to mono_class_setup_fields
2634
2635         Fixes #552282.
2636
2637 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2638
2639         metadata-verify.c (verify_tables_schema): Fix the error message.
2640
2641 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2642
2643         * metadata.c: Change event table schema to use TDOR for event type
2644         as this is what it's meant to be.
2645
2646         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
2647         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
2648         entry.
2649
2650         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
2651         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
2652         rows in MONO_TABLE_GENERICPARAM.
2653
2654         Fixes #552289.
2655
2656 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2657
2658         * class.c (mono_image_add_to_name_cache): Assert on duplicate
2659         insertion.
2660
2661         * reflection.c (mono_reflection_setup_internal_class): Avoid
2662         registering a gc root the same MonoClass multiple times.
2663         Don't register nested types on the global scope as they should
2664         not be available there.
2665
2666 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2667
2668         * culture-info-tables.h: regenerated.
2669
2670 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2671
2672         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
2673
2674 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
2675
2676         * string-icalls.c|h: Remove string internal calls that are not 
2677         used anymore by the class libraries.
2678         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
2679         which is not used in the class librairies.
2680         * icall-def.h: Update tables.
2681
2682 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2683
2684         * class.h: Move mono_class_inflate_generic_type_checked...
2685
2686         * class-internals.h: to here and make it internal. We don't want to
2687         further expose MonoGenericContext. 
2688
2689 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2690
2691         * verify.c (mono_method_verify): Improve error message.
2692
2693 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2694
2695         * reflection.c (fieldref_encode_signature): If field_image is NULL then
2696         the token is already properly encoded. Fixs 4.0 build.
2697
2698 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2699
2700         * locales.c (construct_number_format): Check if the number index is
2701         valid before trying to use it, if not, just return.
2702         
2703 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
2704
2705         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
2706         since that loses the abort state. Fixes #539394.
2707
2708 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
2709
2710         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
2711         explicit this argument to the call signature.
2712         (mono_marshal_get_icall_wrapper): Ditto.
2713
2714 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2715
2716         * reflection.c (fieldref_encode_signature): Add new field_image parameter
2717         to indicate which assembly to use when resolving a custom-mod.
2718
2719         Fixes handling of volatile fields used across assemblies as reported in #551513.
2720
2721 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2722
2723         * loader.c: Improve error messages.
2724
2725 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2726
2727         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
2728         of interfaces. Fixes IKVM.
2729
2730         * class.c (mono_class_setup_vtable_general): Improve debug spew.
2731
2732 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2733
2734         * verify.c (verifier_inflate_type): Return the inflated type on success.
2735
2736 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
2737
2738         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
2739
2740         * threads.c (mono_thread_attach): Call the profiler thread start callback.
2741
2742         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
2743
2744         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
2745         flag set.
2746
2747         * profiler.c: Add new profiler callbacks for runtime invoke.
2748
2749         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
2750
2751 2009-11-01  Mark Probst  <mark.probst@gmail.com>
2752
2753         * sgen-gc.c: Keep track of the reason for a major collection and
2754         write it to the heap-dump file.
2755
2756 2009-10-31  Miguel de Icaza  <miguel@novell.com>
2757
2758         * threads.c: refactor the code that initializes the
2759         thread_start_args into a reusable function and use this in the two
2760         methods that start up threads.
2761
2762 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
2763
2764         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
2765         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
2766
2767 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
2768
2769         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
2770         Until now, we only had the per-cpu(core) counters.
2771
2772 2009-10-28  Mark Probst  <mark.probst@gmail.com>
2773
2774         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
2775         mono_gc_get_suspend_signal(), which returns the suspend signal
2776         number used by the GC.
2777
2778 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
2779
2780         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
2781
2782         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
2783         signalling start_notify.
2784
2785 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2786
2787         * appdomain.c: do not test the st_mode field for shadow-copies.
2788         Fixes bug #545276.
2789
2790 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2791
2792         * threadpool.[ch]: added hooks for thread start/finish and item
2793         processing begin/end. For monotouch use only.
2794
2795 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
2796
2797         * threads.c (mono_thread_get_name): New helper function.
2798
2799         * reflection.c (resolve_object): Set handle_class for strings too.
2800         (mono_reflection_create_custom_attr_data_args): New helper function to decode
2801         a cattr blob into a set of arrays and structures without creating the custom
2802         attributes themselves.
2803         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
2804
2805         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
2806
2807         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
2808         function.
2809
2810 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2811
2812         * verify.c: Replace calls to mono_class_inflate_generic_type with
2813         mono_class_inflate_generic_type_checked. Fixes #480005.
2814
2815 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2816
2817         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
2818         object since not all paths lead to callees initing it.
2819
2820 2009-10-23  Alp Toker  <alp@nuanti.com>
2821
2822         Fix embedding API breakage from r144688. mono-compiler.h is an internal
2823         header and should not be shipped:
2824
2825         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
2826         which is specific to the mono build. Not going to work.
2827
2828 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
2829
2830         * security-manager.c: Report if core-clr is active from
2831         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
2832         to allow Moonlight BCL to behave appropriately (both in browser
2833         and outside, e.g. smcs)
2834
2835 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
2836
2837         * mono-config.c: ignore UTF-8 BOM and report parser errors.
2838         Fixes bug #549108.
2839
2840 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2841
2842         * class.c: fix typo.
2843
2844 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
2845
2846         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
2847         a MonoError parameter.
2848
2849         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
2850         version that can does proper error handling.
2851
2852         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
2853
2854         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
2855
2856         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
2857
2858 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
2859
2860         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
2861         NO_UNALIGNED_ACCESS is defined.
2862
2863 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
2864
2865         * marshal.c (mono_string_builder_to_utf16): Applied patch from
2866         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
2867         Fixes #549173.
2868
2869 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2870
2871         * sgen-gc.c: Shorten sections whenever possible.
2872
2873 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2874
2875         * sgen-gc.c: Use our portable semaphore #defines.
2876
2877 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2878
2879         * sgen-gc.c: A debug option for dumping the heap layout to a file
2880         after each collection.
2881
2882 2009-10-21  Mark Probst  <mark.probst@gmail.com>
2883
2884         * sgen-gc.c: Make managed write barriers atomic via
2885         thread-restarts.
2886
2887 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
2888
2889         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
2890         methods. Fixes #543021.
2891
2892 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2893
2894         * socket-io.[ch]: fix VS build.
2895
2896 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2897
2898         * icall-def.h:
2899         * socket-io.[ch]: implemented SendFile.
2900
2901 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
2902
2903         * class.c (mono_class_create_from_typedef): Initialize class->element_class
2904         before the interfaces to avoid crashes later if class initialization fails.
2905         Fixes #548417.
2906
2907         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
2908         Fixes #548276.
2909
2910 2009-10-20  Marek Safar  <marek.safar@gmail.com>
2911
2912         * domain.c: Bump 4.0 version.
2913
2914 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
2915
2916         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
2917         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
2918         check since 'pubkey' can't be NULL at this stage
2919         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
2920         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
2921         initialization of 'iter'
2922
2923 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
2924
2925         * cominterop.c : Search the interface parts of vtable to find 
2926           method matches.  Fixes 547030.
2927
2928         Code is contributed under MIT/X11 license.
2929
2930 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
2931
2932         * marshal.c: BeginInvoke cannot be called on multicast delegates with
2933         multiple targets. Fixes bug #574426.
2934
2935 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2936
2937         * profiler.h: Put here the definition of
2938         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
2939         (and fix the build...).
2940
2941 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2942
2943         * profiler.c, profiler.h, profiler-private.h:
2944         Added support for different ways of getting call chains in stat mode.
2945
2946 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2947
2948         * object.c, object-internals.h: New function for computing the
2949         size of an array, factored out of mono_array_new_full().  Use
2950         SGen's functions for allocating arrays and vectors.
2951
2952         * sgen-gc.c, gc-internal.h: Special functions for allocating
2953         arrays and vectors without race conditions.  A managed array
2954         allocator method.
2955
2956         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
2957
2958 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2959
2960         * object.c, object.h, icall.c: Write barriers do the copying now,
2961         as well, so no need for an additional memcpy.
2962
2963         * sgen-gc.c: Lock when storing remsets.  Do the memory
2964         copying/moving in the write barriers.
2965
2966         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
2967
2968         * reflection.c: Added an assert.
2969
2970 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2971
2972         * threads.c, process.c: A few missing write barriers.
2973
2974 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
2975
2976         * mono-perfcounters.c, mono-perfcounters-def.h: Add
2977         network performance counters for bytes sent per second, bytes
2978         received per second, and bytes total per second.
2979
2980         Code is contributed under MIT/X11 license.
2981
2982 2009-10-09  Mark Probst  <mark.probst@gmail.com>
2983
2984         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
2985         Fix warning.
2986
2987 2009-10-09  Mark Probst  <mark.probst@gmail.com>
2988
2989         * threads.c, object-internals.h, object.c: Move code for
2990         transferring an object to a different domain (via
2991         serialization/remoting) to object.c.
2992
2993         * object.c (call_unhandled_exception_delegate): If the exception
2994         is in a different domain than the delegate, transfer the exception
2995         to that domain.
2996
2997 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
2998
2999         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
3000         Fixes #322934.
3001
3002 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3003
3004         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
3005
3006 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3007
3008         * object.c (mono_method_return_message_restore): Handle the case
3009         where the argument is an instance of a generic type.  Fixes
3010         #544446.
3011
3012 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3013
3014         * object.c (set_value): Write barrier fix - we must pass the
3015         count, not the size.
3016
3017 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
3018
3019         * domain.c (mono_init_internal): Print a useful error message when encountering
3020         an old mscorlib, instead of crashing. Fixes #544307.
3021
3022 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3023
3024         * appdomain.c (copy_app_domain_setup): Fix a warning.
3025
3026         * debug-helpers.c (dis_one): Ditto.
3027
3028 2009-10-04  Mark Probst  <mark.probst@gmail.com>
3029
3030         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
3031         into the new domain, instead of referencing the original one.
3032
3033         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
3034         non-static.
3035
3036         * appdomain.c: Corlib version bump.
3037
3038 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3039
3040         * threadpool.c: one more...
3041
3042 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3043
3044         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
3045         threads to die because we're shutting down. delgate5.exe works again.
3046
3047 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
3048
3049         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
3050           ccw_interface_hash table when a ccw is finalized.
3051
3052         Code is contributed under MIT/X11 license.
3053
3054 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3055
3056         * assembly.c, domain.c, image.c, metadata-internals.h: Split
3057         domain and image unloading into two steps.  We must do this
3058         because clearing the domain in SGen requires the class metadata to
3059         be intact, but we need to free the mono_g_hash_tables in case a
3060         collection occurs during domain unloading and the roots would trip
3061         up the GC.
3062
3063 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3064
3065         * object-internals.h: Remove serialized culture fields from
3066         MonoInternalThread.
3067
3068         * icall-def.h, thread-types.h, threads.c: Remove serialized
3069         culture icalls.
3070
3071         * appdomain.c: Corlib version bump.
3072
3073 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3074
3075         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3076         Fixes #543133.
3077
3078 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3079
3080         * sgen-gc.c: Try to shorten the new section after a major
3081         allocation to avoid ever-growing sections.
3082
3083 2009-10-13  Martin Baulig  <martin@ximian.com>
3084
3085         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3086         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3087         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3088         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3089
3090         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3091
3092 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3093
3094         * threadpool.c: fixed the order in which 'completed' and the wait
3095         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
3096         No need to use the wait_handle field of ASyncCall. Make sure the
3097         threadpool is active when adding a job or queueing an idle thread.
3098
3099 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3100
3101         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3102
3103         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3104         when using --compile-all.
3105
3106 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3107
3108         * metadata.c (free_generic_class): Unregister the field_objects
3109         roots if we're using SGen.
3110
3111 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3112
3113         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3114         for GenericParamTableEntry.gparam.
3115
3116 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3117
3118         * marshal.c: don't create the handle when calling. It is created later
3119         if needed.
3120
3121 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3122
3123         * sgen-gc.c: Warning fixes.
3124
3125 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3126
3127         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3128         whole heap for cross-domain references before each collection.
3129
3130         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3131         object.
3132
3133         * threadpool-internals.h, threadpool.c: New function
3134         mono_thread_pool_is_queue_array() for checking whether a given
3135         array is used as a (cross-domain) queue by the thread pool code.
3136
3137 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3138
3139         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3140         searches the whole heap for objects containing a specific
3141         reference.  Only for debugging.
3142
3143 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3144
3145         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3146
3147         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3148         byte arrays between domains.
3149
3150 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3151
3152         * threadpool.c:
3153         * class-internals.h:
3154         * mono-perfcounters-def.h:
3155         * mono-perfcounters.c:
3156         -There is a list of idle threads
3157         -Each of those idle threads wait on their own WaitHandle instead
3158         of all of them using the same semaphore. When a new work item is
3159         added, the job is assigned directly to an idle thread or a newly
3160         created one if possible and then the handle for that thread is
3161         signaled. Compare that to the current approach where all the
3162         threads in the pool compete to dequeue a job from the same
3163         queue.
3164         -New struct ThreadPool that brings together the bunch of static
3165         variable for each threadpool (IO and regular).
3166         -New performance counters: # of items added and its rate per
3167         threadpool. The rate will be used later, perhaps together with
3168         other perf. counters, to decide when idle threads should exit.
3169
3170 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3171
3172         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3173         Fix typo on Windows build.      
3174         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3175         
3176         Code is contributed under MIT/X11 license.
3177
3178 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3179
3180         * object-internals.h: The Thread class is split up into Thread and
3181         InternalThread now.  We have exactly one InternalThread per
3182         thread, and at most one Thread per appdomain per thread.  Most
3183         data is stored in InternalThread.  All InternalThread objects live
3184         in the root domain.
3185
3186         * class-internals.h: Add internal_thread_class to MonoDefaults.
3187
3188         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3189         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3190         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3191         resulting from the split of the Thread class.
3192
3193         * gc-internal.h: Prototype for new function for checking whether a
3194         thread is the finalizer thread.
3195
3196         * appdomain.c: Corlib version bump.
3197
3198 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3199
3200         * appdomain.c|h: Add a mono_domain_try_unload method which is
3201         equivalent to mono_domain_unload, except that it returns an exception
3202         instead of throwing it. Make mono_domain_unload use the
3203         mono_domain_try_unload method to avoid code-duplication.
3204
3205 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3206
3207         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3208         a problem.
3209
3210 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3211
3212         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3213         aborting when a conversion is not implemented.
3214
3215 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3216
3217         * verify.c: when comparing culture strings, use g_ascii_strcmp
3218
3219         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3220         when comparing public key tokens to use memcmp on 16 bytes.   I do
3221         not believe this ever worked as advertised in the past.
3222
3223         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3224         which would have always failed earlier.
3225
3226 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3227
3228         * gc.c: Raise a NullArgumentException if the object passed is
3229         null.
3230
3231 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3232
3233         * image.c (mono_image_close): Atomically decrement the reference count and
3234         remove the image from the hash tables, to prevent another thread from seeing a
3235         dying MonoImage. Fixes #541194.
3236
3237 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3238
3239         * threadpool.c: actually use the minimum number of 'completion ports'
3240         (for us is just a potential worker thread).
3241
3242 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3243
3244         * threadpool.c: remove ares_htable. It does not make sense any more
3245         since the same objects are now stored in GC-tracked arrays while they are
3246         in the queue.
3247
3248 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3249
3250         * threadpool.c: increase the minimum length of the queues to 128.
3251         Remove warning.
3252
3253 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3254
3255         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3256         return the modified signature used by string ctors.
3257
3258 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3259
3260         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3261         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3262         method, to be used by full-aot.
3263
3264 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3265
3266         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3267         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3268         be known to be good.
3269
3270         * class.c (mono_class_init): Fail array types if their element type fails initialization
3271         as well.
3272
3273         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3274         initialization, additionally we request the element_type vtable to be initialized as well.
3275
3276         This is fine and should not increase the working set in any meaningful way since it's reasonable
3277         to assume       that most code will create an array and eventually populate it, which will require the
3278         type's vtable to be initialized.
3279
3280         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3281
3282 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3283
3284         * normalization-tables.h : regenerated.
3285
3286 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3287
3288         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3289         a leb128 encoding can take up to 5 bytes.
3290
3291 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3292
3293         * class.c (verify_class_overrides): Remove useless argument.
3294
3295         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3296         before interface enumeration as this is no longer required.
3297
3298 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3299
3300         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3301         used under mono_class_init context. This functions avoid any code path that
3302         calls mono_class_init, which leads it to be slow as some things like the interface
3303         bitmap are not available.
3304
3305         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3306         of it's own broken version. Fixes the verifier part of #538588.
3307
3308         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3309         API.
3310
3311 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3312
3313         * class.c (mono_class_init): Always set an exception in a class if
3314         vtable setup fails.  Fixes #538577.
3315
3316         * generic-sharing.c: Raise an exception if mono_class_vtable()
3317         returns NULL.
3318
3319 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3320
3321         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3322         methods of vtypes, as they could be incorrectly shared with static methods
3323         taking an IntPtr argument.
3324
3325 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3326
3327         * domain.c:
3328         * object.c:
3329         * class-internals.h: renamed waithandle_class to
3330         manualresetevent_class.
3331         * marshal.c: propagate the exception if a remoting BeginInvoke call
3332         fails.
3333
3334 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3335
3336         * object.c: Properly handle vtable failures.
3337
3338 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3339
3340         * socket-io.c: Assert on vtable failure.
3341
3342         * mono-mlist.c: Assert on vtable failure.
3343
3344 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3345
3346         * marshal.c: Assert on vtable failure.
3347
3348 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3349
3350         * icall.c: Properly handle vtable failures.
3351
3352 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3353
3354         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
3355
3356 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3357
3358         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
3359
3360         * console-unix.c (do_console_cancel_event): Same.
3361
3362 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3363
3364         * class-internals.h: Add mono_class_vtable_full function that allows control
3365         if an exception should be raised or not.
3366
3367         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
3368         to do what its documentation say, that is to return NULL and set exception_type on
3369         failure.
3370
3371         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
3372         and change the code to honor it.
3373
3374 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3375
3376         * verify.c: Fix typo in error message.
3377
3378 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
3379
3380         * security-core-clr.c: Fix default_platform_check so it can run
3381         the runtime coreclr tests (without an infinite recursion when
3382         throwing an exception).
3383
3384 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3385
3386         object.c (mono_delegate_ctor_with_method): Guard against null method.
3387
3388 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3389
3390         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
3391         that should be replaced with error handling later.
3392
3393 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3394
3395         * marshal.c (mono_delegate_end_invoke): Fix warning.
3396
3397 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3398
3399         * loader.c (mono_field_from_token): Properly handle invalid
3400         dynamic tokens.
3401
3402 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3403
3404         * pedump.c (verify_image_file): Skip types that can't be
3405         decoded.
3406
3407 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3408
3409         * verify.c: Look for recursive valuetypes only against the
3410         type been initialized as this is a lot simpler and works.
3411
3412 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3413
3414         * verify.c: Ensure that fields are properly loaded before
3415         checking them.
3416
3417 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3418
3419         * object.c (mono_object_get_virtual_method) : Call 
3420           mono_cominterop_get_invoke if the object is a COM object.
3421
3422         Code is contributed under MIT/X11 license.
3423
3424 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
3425
3426         * verify.c: Check for recursive valuetype definitions.
3427
3428 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3429
3430         Use inheritance-aware interface offsets. Inherited types use the same offsets
3431         of their parents. This reduce offset duplication in case more than one type in
3432         the inheritance tree explicitly implements the same interface.
3433
3434         This also removes a source of vtable bubbles found in #532409. An abstract type
3435         isn't required to provide abstract methods to all interfaces it implements, which
3436         resulted in a bubble with the previous scheme as the child would get a non-full
3437         vtable from its parent. We fail all concrete types with vtable bubbles, so this
3438         should be fixed.
3439
3440         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
3441         it's expected to not cause any significant increase beyond that.
3442
3443         * class.c (setup_interface_offsets): Compute super class iface offsets
3444         first to force sharing.
3445
3446         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
3447         dumping only the relevant ones.
3448
3449         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
3450         methods a new slot regardless if they belong to an interface or not. This allows
3451         an inherited type to override the iface method separately from the class one.
3452
3453 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3454
3455         * threadpool.c: make the Sleep() alertable to prevent delays exiting
3456         applications that take less than 2s to execute.
3457         Bug #524984 fixed.
3458
3459 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
3460
3461         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
3462
3463         * object.c (mono_get_runtime_callbacks): New helper function to return
3464         the runtime callbacks.
3465
3466         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
3467         mono_get_runtime_build_info () as the display name.
3468         
3469 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3470
3471         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
3472         argument, since NEWARR expects a native int. Fixes #481559.
3473
3474 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3475
3476         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
3477         against broken SRE methods.
3478
3479 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3480
3481         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
3482         a NULL variable. Abort early on failure.
3483
3484 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3485
3486         * class.c (can_access_type): Fail visibility test for non nested
3487         types with nested visibility.
3488
3489 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
3490
3491         * assembly.c (parse_public_key): Avoid allocating (and not 
3492         freeing) the public key array when it's not requested by the 
3493         caller.
3494         * threads.c (mono_thread_manage, mono_thread_create_internal, 
3495         ves_icall_System_Threading_Thread_Thread_internal): Free 
3496         allocated memory on error.
3497
3498 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3499
3500         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
3501
3502 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3503
3504         * class.c (mono_class_setup_fields): Remove duplicated local variable
3505         named gklass.
3506         Rename gklass to gtd to reflect the fact that it points to the generic
3507         type definition.
3508         Remove the duplicated call to mono_class_setup_fields on gtd and move
3509         the error check to the beginning.
3510
3511 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3512
3513         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
3514         Remove cruft of the previous patch.
3515
3516 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3517
3518         * metadata-verify.c (verify_method_table): Check for abstract + final.
3519         Fixes #534175.
3520
3521 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3522
3523         * verify.c (verify_class_fields): Check for duplicate fields.
3524
3525 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3526
3527         * metadata-verify.c: Verify the typeref table for duplicates.
3528
3529 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3530
3531         This reverts r140936 and properly handles interfaces with static methods. The
3532         right fix is to ensure vtables without bubles which is an easier to verify
3533         constraint. We should avoid such special cases as of the reverted patch as those
3534         only make the runtime more brittle.
3535
3536         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
3537         static methods on interfaces.
3538
3539         * class.c (setup_interface_offsets): Use the number of virtual methods when
3540         calculating interface offsets instead of the number of methods. This way we
3541         avoid bubles on the layout.
3542
3543 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
3544
3545         * metadata-verify.c (verify_metadata_header): Some very smart
3546         obfuscators like to add extra stream headers. Ignore them.
3547
3548 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
3549
3550         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
3551         methods correctly.
3552
3553 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
3554
3555         * metadata-verify.c: Verify for duplicated types.
3556
3557 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
3558
3559         * metadata-verify.c (verify_typedef_table): Verify for nested types
3560         without an entry on the nested class table.
3561
3562 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
3563
3564         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
3565         <tom_hindle@sil.org>. Add locking around hash table accesses.
3566
3567 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3568
3569         * verify.c (mono_verifier_verify_class): Verify all interface if
3570         really are interfaces. Fixes #534184.
3571
3572 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
3573
3574         * pedump.c: Initialize all types during metadata validation so we report
3575         errors only detected as part of class initialization.
3576
3577 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
3578
3579         * metadata-verify.c (verify_method_table): PInvoke requires method to
3580         be static. Fixes #534189
3581
3582 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
3583
3584         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
3585         being NULL.
3586
3587 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3588
3589         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
3590         for holes or bad methods. Fixes #525314.
3591
3592 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3593
3594         * class.c (setup_interface_offsets): Don't allocate slot
3595         for the same interface multiple times. This creates bubbles
3596         that waster space and make vtable verification harder.
3597
3598         The same interface get a slot multiple times since we need
3599         to get the closure of all implemented interfaces, which means
3600         the same interface is reported multiple times.
3601
3602 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3603
3604         * verify.c (mono_verifier_verify_class): Don't check the fields
3605         of generic instances since the context on which they got expanded
3606         might lead to false positives.
3607
3608         Such thing happens when a generic type is inflated in the context
3609         of a generic method and the inflated type of a field turns into a
3610         generic method argument, which causes the checking code to think
3611         it's an invalid class when it's not.
3612
3613 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3614
3615         * verify.c (mono_type_is_valid_in_context): Verify if type
3616         is NULL and remove duplicate test.
3617
3618 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3619
3620         * verify.c (mono_verifier_verify_class): Check fields for
3621         invalid generic arguments.
3622
3623 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3624
3625         * class.c (verify_class_overrides): Verify if for static
3626         and non virtual methods.
3627
3628 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3629
3630         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
3631         Check for errors after retrieving the vtable.
3632
3633 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3634
3635         * class.c (mono_class_setup_vtable_general): Verify
3636         if method overrides are valid before processing them.
3637
3638 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3639
3640         * marshal.c (mono_array_to_lparray): Fix minimal build with
3641         cominterop disabled.
3642
3643         * marshal.c (mono_free_lparray): Same.
3644
3645 2009-08-21  Mark Probst  <mark.probst@gmail.com>
3646
3647         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
3648         the hash function for the ares_htable.
3649
3650 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
3651
3652         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
3653         bit for assembly flags. MS is ok with it but there is no spec anywhere
3654         on its mean
3655
3656 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3657
3658         * class.c (mono_class_create_from_typedef): Emit profiler events
3659         in all cases.
3660
3661 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3662
3663         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
3664         Release memory on failure.
3665
3666 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3667
3668         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
3669         to the internal API.
3670
3671         * metadata.c (get_constraints): Use a single-linked table as we don't
3672         traverse it backward. Fail and return FALSE if only of the contraint types
3673         is not found.
3674
3675         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
3676         to mono_metadata_load_generic_param_constraints except for having a return value.
3677         This has to be done since the later is part of the public API.
3678
3679         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
3680         and fail the type.
3681
3682         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
3683         and fail the method.
3684
3685 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3686
3687         * metadata-verify.c (is_valid_method_header): Add work-around to deal
3688         with MS broken behavior of emmitting EH section sizes without the
3689         header size added.
3690
3691 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3692
3693         * metadata.c (mono_type_create_from_typespec): Don't allocate image
3694         memory until we're sure that we'll need it. This avoids leaking for
3695         broken types or duplicated instantiation.
3696
3697 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3698
3699         * metadata-verify.c (is_valid_method_header): Fix stupid formating
3700         mistake.
3701
3702 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3703
3704         * metadata-verify.c (is_valid_method_header): Fix number of clauses
3705         and expected size calculation.
3706
3707 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3708
3709         * class.c (mono_class_get_field_idx): Add fixme for broken
3710         behavior for types with multiple fields with the same name.
3711         I would rather fix it, but have no idea on how to generate
3712         such artifact for testing.
3713
3714 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3715
3716         * verify.c (verifier_load_field): We should allow references to
3717         fields to be made using the generic type definition. It's up to
3718         the loader system to fail invalid ops.
3719
3720         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
3721         are invalid.
3722
3723 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3724
3725         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
3726
3727         * metadata-internals.h: Fix declaration of 
3728         mono_metadata_interfaces_from_typedef_full.
3729
3730         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
3731         heap_alloc_result parameter that controls if the result should be
3732         g_malloc'd.
3733
3734         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
3735         array be g_malloc'd and properly document this public API function.
3736
3737 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3738
3739         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
3740         remove METHOD_HEADER_TINY_FORMAT1.
3741
3742         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
3743
3744         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
3745
3746         Both spec and MS uses only 2 bits to enumerate the kind of header.
3747         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
3748         is superfluous, only used for tiny headers with odd code lengths.
3749
3750         This change also make sure that mono doesn't wronly interpret bit 2
3751         of fat header flags, which is currently reserved.
3752
3753 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3754
3755         * metadata.c (do_mono_metadata_parse_type): Do error
3756         checking for element types. Don't abort if presented
3757         with a broken type kind.
3758
3759 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3760
3761         * metadata.c (mono_metadata_parse_method_signature_full):
3762         Gracefully fail bad vararg signatures.
3763
3764 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3765
3766         * profiler.c:
3767         * class.c: Fix warnings for uninitialized variables.
3768
3769 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3770
3771         * icall.c: Fix _NSGetEnviron method declaration warning.
3772
3773 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3774
3775         * icall.c:
3776         * reflection.c: Make bitwise checks explicit.
3777
3778 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3779
3780         * debug-helpers.c:
3781         * marshal.c: Fix printf warnings.
3782
3783 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
3784
3785         * reflection.c (encode_cattr_value): Fix a warning.
3786
3787 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3788
3789         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
3790         of array bounds.
3791
3792 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3793
3794         * loader.c (mono_method_signature): Don't assert on broken
3795         signature. Print a more useful error message.
3796
3797 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3798
3799         * loader.c (mono_method_get_marshal_info): Assert if
3800         signature is invalid. Bounds check stores to the
3801         mspecs array;
3802
3803 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3804
3805         * loader.c (field_from_memberref): Fix warning.
3806
3807 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3808
3809         * loader.c (mono_method_get_param_names): Check if signature
3810         is null. Don't store beyond the size of the name array.
3811
3812 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3813
3814         * loader.c (mono_get_method_constrained): Check if signature
3815         is null.
3816
3817 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3818
3819         * loader.c (mono_loader_set_error_bad_image): Improve
3820         error messages.
3821
3822 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3823
3824         * loader.c (mono_get_method_full): Convert an assertion
3825         into a loader error.
3826
3827 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3828
3829         * class-internals.h, class.c: Better naming and documentation.
3830
3831 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
3832
3833         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
3834         obj is NULL.
3835
3836 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3837
3838         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
3839         parsing fails.
3840
3841 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3842
3843         * loader.c (mono_loader_error_prepare_exception): Handle missing field
3844         errors with no class set.
3845
3846         * loader.c (field_from_memberref): If the field signature is of the wrong
3847         type fail with a MissingFieldException instead of a BadImageException as
3848         this is the behavior observed on MS. 
3849
3850 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3851
3852         * loader.c (field_from_memberref): Don't crash if either the field
3853         signature or the typespec class are invalid.
3854
3855 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3856
3857         * verify.c (verifier_load_field): Don't allow field related
3858         ops to reference fields on generic type definition.
3859
3860 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3861
3862         * metadata-verify.c: Add new warning level for errors specified
3863         by ECMA 335 but that MS ignores.
3864
3865         * metadata-verify.c (verify_method_table): Make compiler controled
3866         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
3867         this check is safe because the end result will only be some visibility
3868         exceptions been thrown.
3869
3870 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3871
3872         * verify.c (get_boxable_mono_type): Don't allow the
3873         use of the generic type definition on boxed type positions.
3874
3875         Fixes #531237.
3876
3877 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3878
3879         * threadpool.c: Make sure no cross-domain references remain in
3880         ares_htable or the arrays that are thrown away when resizing.
3881
3882 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3883
3884         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
3885         list of classes for which we have to unregister reflection_info
3886         with the GC and which are not in the namespace cache.
3887
3888         * reflection.c (mono_reflection_initialize_generic_parameter): Add
3889         the class to the list.
3890
3891 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3892
3893         * domain.c (mono_domain_free): Unregister the GC roots in
3894         MonoDomain.
3895
3896 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
3897
3898         * reflection.c (mono_reflection_type_get_handle): Fix typo.
3899
3900 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
3901
3902         * class.c: Add mono_class_get_field_from_name_full which does
3903         the same as mono_class_get_field_from_name but does check field
3904         signature as well.
3905
3906         * class-internals.h: Export mono_class_get_field_from_name_full as
3907         part of the internal API.
3908
3909         * loader.c (field_from_memberref): Search fields by name and signature
3910         as it's valid to have two fields with same name but different types.
3911
3912         Fixes #528055.
3913
3914 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
3915
3916         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
3917
3918         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
3919
3920         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
3921         System.Type.
3922
3923 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
3924
3925         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
3926
3927         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
3928
3929 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3930
3931         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
3932         to sgen-scan-object.h, which can be included and parameterized via
3933         macros.
3934
3935         * Makefile.am: sgen-scan-object.h added.
3936
3937 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3938
3939         * gc.c: #define GC_dont_gc if we're compiling with SGen.
3940
3941 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3942
3943         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
3944         before clearing a domain in the GC.
3945
3946 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3947
3948         * exception.c (mono_exception_from_name_domain): Actually create
3949         the exception in the specified domain.
3950
3951         * appdomain.c (mono_domain_create_appdomain_internal): Create the
3952         OutOfMemoryException a bit later so that the domain is inialized
3953         "enough" that it works.
3954
3955 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3956
3957         * threads.c (thread_cleanup): Clean up the cached_culture_info
3958         array to prevent cross-domain references.
3959
3960 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
3961
3962         * metadata.c: more documentation for MonoType accessors.
3963
3964 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
3965
3966         Fix incorrect size definitions where the tail array isn't a list
3967         of pointers
3968         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
3969         define size.
3970         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
3971         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
3972         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
3973
3974 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3975
3976         * reflection.h:
3977         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
3978
3979 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3980
3981         * metadata.c:
3982         * loader.c:
3983         * metadata-internals.h:
3984         * method-builder.c:
3985         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
3986
3987 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3988
3989         * cominterop.c:
3990         * metadata.c:
3991         * metadata.h:
3992         * loader.c:
3993         * marshal.c:
3994         * reflection.c: #define for sizeof in MonoType and
3995         MonoMethodSignature.
3996
3997 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3998
3999         * domain.c:
4000         * domain-internals.h: add and use #define's instead of sizeof()
4001         for MonoJitInfo and MonoJitInfoTable.
4002
4003 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4004
4005         * object.c:
4006         * class.h: use #define instead of sizeof() for MonoRemoteClass.
4007
4008 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4009
4010         * metadata.c:
4011         * metadata.h:
4012         * object.c:
4013         * class-internals.h:
4014         * generic-sharing.c:
4015         * marshal.c: use a #define instead of sizeof() for a few
4016         structures that use a zero-length array.
4017
4018 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
4019
4020         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
4021         to handle inflated generic methods.
4022
4023         * appdomain.c: Bump corlib version.
4024
4025         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
4026         instances.
4027
4028         * reflection.c (fixup_method): Same
4029
4030         * reflection.c (resolve_object): Same.
4031
4032         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
4033         g_error and a decent message.
4034
4035 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
4036
4037         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
4038         from the object because it could not yet be available globally
4039         (it happens if the profiler tries to create a gchandle on the
4040         MonoThread object of a thread that is still registering itself
4041         with the runtime).
4042
4043 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
4044
4045         * reflection.c (mono_generic_class_get_object): Initialized the
4046         managed type arguments array.
4047
4048         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
4049
4050         * appdomain.c: Bump corlib version.
4051
4052 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
4053
4054         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
4055         #527902.
4056
4057 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
4058
4059         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4060         Avoid a crash if synch_cs is not set.
4061         
4062         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4063         Handle the case when the handle is 0.
4064
4065         * appdomain.c: Bump corlib version.
4066
4067 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
4068
4069         * reflection.c (mono_type_get_object): Fix a warning.
4070
4071 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4072
4073         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4074         descriptor here.  We assume it's already been computed.
4075
4076         * generic-sharing.c (instantiate_other_info): Compute the GC
4077         descriptor for info type MONO_RGCTX_INFO_KLASS.
4078
4079 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4080
4081         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4082         type, so don't use MONO_OBJECT_SETREF to set a field.
4083
4084 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4085
4086         * gc.c: We were missing one case where invoking a finalizer would
4087         not reset the domain.  Also, in the finalizer thread loop, assert
4088         that we're in the root domain.
4089
4090 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4091
4092         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4093         if the type is not an array.
4094
4095 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4096
4097         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4098         method bound to the declaring type of the method. Raise an exception
4099         if the type is not a generic param.
4100
4101 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4102
4103         * class.c (print_unimplemented_interface_method_info): Print the
4104         full type name.
4105
4106         * class.c (mono_class_setup_vtable_general): When dealing with a
4107         generic instance first check if the generic type definition is
4108         not broken.
4109
4110 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4111
4112         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4113
4114         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4115
4116         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4117
4118         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4119
4120         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4121
4122         Code is contributed under MIT/X11 license
4123
4124 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4125
4126         * verify.c: Fix naming of stelem and ldelem.
4127
4128 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4129
4130         * generic-sharing.c: Replace the templates lock with the loader
4131         lock because of very hard to resolve deadlock issues.
4132
4133 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4134
4135         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4136         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4137         directly. Fixes #525338.
4138
4139         * class.c (mono_class_get_vtable_size): New helper function.
4140
4141         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4142         the field belongs to the type. Fixes #525733.
4143
4144 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4145
4146         * sgen-gc.c: When we stop a thread and its stack top is not within
4147         its allocated stack (because it's in an altstack signal handler),
4148         restart it and stop it again, until it is.
4149
4150 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4151
4152         * sgen-gc.c: Take a thread's stack top and registers from the
4153         sigcontext in the suspend signal handler.
4154
4155         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4156         stuff to sgen-archdep.h.
4157
4158         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4159         caller, because have code in sgen-archdep.h to acquire that data.
4160
4161 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4162
4163         * profiler.c, profiler.h, profiler-private.h:
4164         Added support for keeping track of code chunks and buffers.
4165
4166 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4167
4168         * metadata-verify.c: Fix endianness problems on decoding functions.
4169         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4170
4171 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4172
4173         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4174         schema for vectors and one dimension SZARRAY.
4175
4176 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4177
4178         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4179         schema for vectors and one dimension SZARRAY.
4180
4181 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4182
4183         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4184         Interlocked.(Compare)Exchange with object arguments, which invoke
4185         write barriers.
4186
4187 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4188
4189         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4190         passed invalid arguments.   Fixes another crasher in the
4191         Silverlight test suite.
4192
4193         * class.c (mono_class_array_element_size): Return 0 for the size
4194         of the class;  This fixes the crasher exposed by :
4195
4196         typeof (void).MakeArrayType ();
4197
4198         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4199         if there is no method to dereference.    Put all the code that
4200         depends on this inside the if (method) block.
4201
4202         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4203         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4204
4205         With this change, we pass the test.
4206         
4207         * reflection.c (mono_reflection_sighelper_get_signature_local):
4208         Only dereference the assembly if it has been set.    Fixes a
4209         crasher exposed by #525328
4210
4211 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4212
4213         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4214         don't perform the store in mono_gc_wbarrier_generic_nostore().
4215         Remove the second argument (value), which is not needed.
4216
4217 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4218
4219         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4220         the build.
4221
4222         * boehm-gc.c: Ditto.
4223         
4224 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4225
4226         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4227         not perform the store itself.  Introduce
4228         mono_gc_wbarrier_generic_nostore(), which is the same as
4229         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4230         store.
4231
4232 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4233
4234         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4235         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4236         we still need the memcpy().
4237
4238 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4239
4240         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4241         so that big arrays are handled correctly.  Always use
4242         safe_object_get_size() to calculate array object sizes, which
4243         takes bounds into account.
4244
4245 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4246
4247         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4248         GC descriptor is computed before we use it.
4249
4250 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4251
4252         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4253         write barrier if necessary.
4254
4255 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4256
4257         * icall-def.h, icall.c, thread-types.h: New separate icall for
4258         VolatileWrite(object&,object) that uses a write barrier.
4259
4260         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4261         barriers in icalls which write to "ref" or "out" arguments.
4262
4263 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4264
4265         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4266         handler in a separate icall, to reduce the size of the wrappers.
4267
4268 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4269
4270         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4271
4272 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4273
4274         * metadata-verify.c (parse_field): Allow byref field.
4275
4276         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4277
4278         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4279
4280 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4281
4282         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4283         Fixes #522784.
4284
4285 2009-07-20  Robert Jordan  <robertj@gmx.net>
4286
4287         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4288         Fix invalid IL in valuetype handling (STOBJ must push the
4289         corresponding class). Fixes bug #523149.
4290
4291         Code is contributed under MIT/X11 license.
4292
4293 2009-07-20  Geoff Norton  <gnorton@novell.com>
4294
4295         * gc.c: Use proper semaphores where available on posix and darwin.
4296
4297 2009-07-19  Geoff Norton  <gnorton@novell.com>
4298
4299         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4300
4301 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4302
4303         * refletion.c (is_sre_usertype): Change name to is_usertype and
4304         invert it's result so it returns true if the type is an user type
4305         and not the opposite.
4306
4307         * reflection.c (is_*_type): Change all of those to use new macro
4308         check_corlib_type_cached that cached the type lookup so we don't
4309         need to do string comparisons all the type. Changed the signature
4310         to take a MonoClass instead.
4311
4312         * reflection.c: Change mono_image_create_token and resolve_object
4313         to use is_sre_* functions.
4314
4315 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4316
4317         * sgen-gc.c: Check for writes to the stack in the managed
4318         wbarrier as well.
4319
4320 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4321
4322         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4323         but put them on a list which is processed with the other thread's
4324         remsets.
4325
4326 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4327
4328         * sgen-gc.c: Fix and enable the internal allocator instead of
4329         using malloc/free (which causes deadlocks).
4330
4331 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4332
4333         * refletion.c: Fix builds with SRE disabled by adding a minimal
4334         implementation of mono_reflection_type_get_handle.
4335
4336 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4337
4338         * refletion.c: Make mono_reflection_type_get_handle non static.
4339
4340         * object-internals.h: Export mono_reflection_type_get_handle.
4341
4342         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
4343         unmanaged handle using mono_reflection_type_get_handle.
4344
4345 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4346
4347         * refletion.c: Replace all reads of MonoReflectionType::type with
4348         calls to mono_reflection_type_get_handle. Only the functions that
4349         deal with constructing TypeBuilder::type have not been changed
4350         because they have to deal with NULL values.
4351
4352         This is a first step into supporting reflection types that don't
4353         map directly into their unmanaged counterpart.
4354
4355 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4356
4357         * metadata-verify.c (parse_locals_signature): Don't complain
4358         on signature with zero locals since MS generates it and doesn't
4359         bother with.
4360
4361 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4362
4363         * reflection.c (mono_image_get_array_token): Resolve return
4364         type using mono_reflection_type_get_handle.
4365
4366         * reflection.c (mono_image_get_array_token): Resolve array method
4367         parent type using mono_reflection_type_get_handle.
4368
4369 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4370
4371         * reflection.c (mono_image_basic_init): Applied patch from
4372         <Dax@daxxfiles.net>. Set the public key token from the assembly
4373         builder. Fixes #518909.
4374
4375         * appdomain.c: Bump corlib version.
4376
4377 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4378
4379         * class.c (mono_class_needs_cctor_run): Make this return false if
4380         the class has no cctor.
4381
4382 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4383
4384         * sgen-gc.c: When the minor GC needs to allocate a new section,
4385         invoke the major GC afterwards.
4386
4387 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
4388
4389         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
4390           Applying the window_style field to the SHELLEXECUTEINFO struct.
4391
4392         Code is contributed under MIT/X11 license.
4393
4394 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4395
4396         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
4397         locking earlier.  Fix it in the managed allocator by making sure
4398         that no thread is stopped there before the GC runs.  If we do stop
4399         a thread there, we restart it and let it run a but, until it stops
4400         somewhere else.
4401
4402         * gc-internal.h, gc.c: Function for getting the IP from a signal
4403         context via a function registered by mini.
4404
4405 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
4406
4407         * object-internals.h (MonoIntPtr): New structure describing a boxed
4408         IntPtr.
4409
4410         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
4411         returns. Fixes #519953.
4412
4413         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
4414
4415 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4416
4417         * class-internals.h, generic-sharing.c: New RGCTX info type for
4418         getting a remoting invoke with check wrapper.
4419
4420 2009-07-07  Geoff Norton  <gnorton@novell.com>
4421
4422         * icall-def.h: Fix the enable-minimal build.
4423
4424 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4425
4426         * object-internals.h: Add MonoReflectionDerivedType.
4427
4428         * reflection.c: Implement support for PointerType.
4429         Fixed tons of warnings.
4430
4431 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4432
4433         * object-internals.h: Add MonoReflectionByRefType.
4434
4435         * reflection.c: Implement support for ByRefType.
4436
4437 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4438
4439         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
4440
4441         * object-internals.h: Add MonoReflectionArrayType and
4442         mono_reflection_create_unmanaged_type.
4443
4444         * reflection.c: Implement support for ArrayType.
4445
4446 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4447
4448         * metadata-verify.c (is_valid_method_header): Parse EH block
4449         flags correctly.
4450
4451 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4452
4453         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
4454         processing the disappearing links, and process disappearing links
4455         in a loop until no new objects are copied.
4456
4457 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4458
4459         * object.c (handle_enum): Invoke the write barrier when copying
4460         value type instances.
4461
4462         * sgen-gc.c: Register remsets for unmanaged write barriers only
4463         when the address written to is actually on the heap.  This makes
4464         set_value() in object.c work without requiring that the result be
4465         on the heap.
4466
4467 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
4468
4469         The runtime wrappers are all bound to a given type that must
4470         exist in the same image. For regular images we use the <Module>
4471         type, which is required to exist for all images.
4472
4473         The <Module> type can't be used for dynamic images because it
4474         might not exist at the time the wrapper is required, so we create
4475         a synthetic type to use instead.
4476
4477         The current code works because of the 2 stage setup of MonoClass,
4478         but once this is gone it will no longer work.
4479
4480         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
4481
4482         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
4483
4484         * object-internals.h: Export mono_image_set_wrappers_type icall
4485         as part of the internal API.
4486
4487         * marshal.c (get_wrapper_target_class): If the image is dynamic,
4488         use MonoDynamicImage::wrappers_type instead of the <Module> type.
4489
4490         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
4491         image wrappers_type to the provided value.
4492
4493 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
4494
4495         * appdomain.c (deregister_reflection_info_roots): No need
4496         to use the image lock here.
4497
4498 2009-07-02  Mark Probst  <mark.probst@gmail.com>
4499
4500         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
4501
4502 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
4503
4504         * threads.c: Store the thread start argument in a hash table instead of
4505         registering it as a root, as libgc doesn't support unregistering roots
4506         under windows, leading to 'too many root sets' errors when many threads
4507         are created.
4508
4509         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
4510         shutdown, they can still be referenced by the other dying objects.
4511         Fixes #514506.
4512
4513 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4514
4515         * socket-io.c: DontLinger does not allow LingerOptions.
4516
4517 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4518
4519         * metadata-verify.c: The spec doesn't mention that it's possible to add
4520         custom attribute to a generic parameter. Fixed.
4521
4522 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4523
4524         * class.c (inflate_generic_type): Don't crash while trying to output a message
4525         on why we're aborting.
4526
4527 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4528
4529         * socket-io.c: DontLinger can take an int or a boolean too.
4530
4531 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
4532
4533         * gc.c: check for a null argument to SuppressFinalize () and
4534         ReRegisterForFinalize ().
4535
4536 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4537
4538         * loader.c (method_from_methodspec): Call into the verifier to check
4539         the signature.
4540
4541         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
4542
4543         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
4544         part of the internal API.
4545
4546 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4547
4548         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
4549         the signature.
4550
4551         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
4552
4553         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
4554         part of the internal API.
4555
4556 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4557
4558         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
4559         the signature.
4560
4561         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
4562         blob verification.
4563
4564         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4565         part of the internal API.
4566
4567 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4568
4569         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
4570         when doing basic verification. 
4571
4572         This check must be done since the runtime peeks into signatures in much
4573         more places than it does decoding so it makes sense to ensure that all
4574         pointers to blob objects are well formed.
4575
4576 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4577
4578         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
4579         Use proper overflow dectection. Fix usage of it.
4580
4581 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4582
4583         * loader.c (field_from_memberref): Call into the verifier to check
4584         the signature.
4585
4586         * loader.c (mono_method_get_signature_full): Same.
4587
4588         * loader.c (method_from_memberref): Same.
4589
4590         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
4591
4592         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4593         part of the internal API.
4594
4595 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4596
4597         * threadpool.c (mono_thread_pool_add): If the domain is unloading
4598         or unloaded, still return an AsyncResult, but don't add it to the
4599         threadpool.
4600
4601 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4602
4603         * threads.c: fix missing colon when DEBUG is defined.
4604
4605 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4606
4607         * threadpool.c: Don't add new calls to a threadpool if the domain
4608         of the call is unloading or unloaded.  When dequeuing a job, null
4609         the reference in the queue.
4610
4611 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4612
4613         * sgen-gc.c (null_link_in_range): Add the dislink for the old
4614         generation if an object was moved.
4615
4616 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
4617
4618         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
4619           parameters of type SAFEARRAY[VARIANT].
4620
4621         * reflection.c (encode_marshal_blob): Properly generate element type
4622           (SafeArraySubType marshal attribute option).
4623
4624         Code is contributed under MIT/X11 license.
4625
4626 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
4627
4628         * reflection.c: in mono_method_clear_object () really ensure all the
4629         objects are removed.
4630
4631 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4632
4633         * loader.c (mono_method_signature): Call into the verifier to check
4634         the method signature.
4635
4636         * metadata-verify.c (verify_method_table): Move signature verification
4637         to verify_method_table_full.
4638
4639         * metadata-verify.c: Add mono_verifier_verify_method_signature.
4640
4641         * verify-internals.h: Export mono_verifier_verify_method_signature as
4642         part of the internal API.
4643
4644 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4645
4646         * loader.c (mono_method_get_header): Call into the verifier to
4647         check the method header.
4648
4649         * metadata-verify.c: Add mono_verifier_verify_method_header.
4650
4651         * verify-internals.h: Export mono_verifier_verify_method_header as
4652         part of the internal API.
4653
4654 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4655
4656         * class.c (mono_class_find_enum_basetype): Call into the verifier to
4657         check the field signature. Replace an assert with an explicit check.
4658
4659         * class.c (mono_class_setup_fields): Call into the verifier to check
4660         the field signature.
4661
4662         * metadata-verify.c: Add mono_verifier_verify_field_signature.
4663
4664         * verify-internals.h: Export mono_verifier_verify_field_signature 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): Simplify this function
4670         by moving code outside of the loop and not decoding static fields.
4671
4672 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4673
4674         * metadata-verify.c (verify_typedef_table): Check the extends
4675         token here. Move to here a flags check from verify_typedef_table_full.
4676
4677 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4678
4679         * metadata-verify.c (is_valid_method_header): Fix a warning.
4680
4681         * metadata-internals.h (MonoImage): Remove the unused 
4682         static_rgctx_invoke_wrapper_cache.
4683
4684         * image.c marshal.c: Ditto.
4685
4686 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4687
4688         * image.c (do_mono_image_load): Enable table data verification.
4689
4690 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4691
4692         * metadata-verify.c (is_valid_constant): Fix nullref check.
4693
4694 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4695
4696         * metadata-verify.c (is_valid_constant): Fix string bounds check.
4697
4698 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4699
4700         * sgen-gc.c: Managed allocation with pthreads TLS.
4701
4702         * threads.c, threads-types.h: Functions for the JIT to tell the
4703         runtime whether it supports the MONO_TLS opcode.
4704
4705 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4706
4707         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
4708         without methods.
4709
4710 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4711
4712         * metadata-verify.c (is_valid_constant): Fix the string length check.
4713         Use safe overflow checking. Add decent error messages.
4714
4715 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4716
4717         * metadata-verify.c: Move remaininh blob checks to the offline
4718         verification path.
4719
4720 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4721
4722         * metadata-verify.c: Move more blob checks to the offline verification
4723         path.
4724
4725 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
4726
4727         * object-internals.h : Adding interrupt_on_stop field.
4728
4729         * threads.c (mono_thread_request_interruption) : On Windows exit the
4730           thread if interrupt_on_stop is set.
4731
4732         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
4733          Removing old interrupt logic and setting the interrupt_on_stop for the
4734          thread when calling accept.
4735
4736         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
4737          setting the interrupt_on_stop for the thread when calling accept.
4738
4739         Contributed under MIT/X11 license.
4740
4741 2009-06-20  Martin Baulig  <martin@ximian.com>
4742
4743         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
4744
4745 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
4746
4747         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
4748         running in no-exec mode.
4749
4750 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4751
4752         * metadata-verify.c (verify_method_table): Move header
4753         checking to verify_method_table_full.
4754
4755         * metata-verify.c (mono_verifier_verify_full_table_data):
4756         Call verify_method_table_full.
4757
4758 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4759
4760         * metadata-verify.c (verify_field_table): Move signature
4761         checking to verify_field_table_full.
4762
4763         * metata-verify.c (mono_verifier_verify_full_table_data):
4764         Call verify_field_table_full.
4765
4766 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4767
4768         * metadata-verify.c (verify_typedef_table): Move remaining
4769         stuff to verify_typedef_table_full.
4770
4771 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4772
4773         * metadata-verify.c: Kill is_corlib from VerifyContext.
4774         It is only used by the offline mode.
4775         So we better remove it from the runtime path.
4776
4777 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4778
4779         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
4780         function that perform the offline metadata verification steps.
4781
4782         * metadata-verify.c (verify_typedef_table): Move some checks to
4783         verify_typedef_table_full and make it been called by new function
4784         mono_verifier_verify_full_table_data.
4785
4786         * pedump.c: Call mono_verifier_verify_full_table_data.
4787
4788         * verify-internals.h: Export mono_verifier_verify_full_table_data as
4789         part of the internal API.
4790
4791 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4792
4793         * metadata-verify.c (typedef_is_system_object): Fix System.Object
4794         check.
4795
4796         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
4797         flags bits. SupportLastError was confused as bit 7 instead of 6.
4798
4799         * metadata-verify.c (verify_implmap_table): Fix import scope verification
4800         to check against the module ref table instead of module.
4801
4802         * metadata-verify.c (verify_implmap_table): Fix corlib check.
4803
4804         * pedump.c: Call mono_image_load_names.
4805
4806 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4807
4808         * image.c: Extract mono_image_load_names from do_mono_image_load.
4809
4810         * metadata-internals.h: Export mono_image_load_names as part of
4811         the internal API.
4812         
4813 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
4814
4815         * metadata.c (mono_metadata_cleanup): Free the generic method cache
4816         first, as it could reference data in the other caches.
4817
4818 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
4819
4820         * metadata-verify.c: Finished with method header verification.
4821
4822 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
4823
4824         * metadata-verify.c: Added more header verification code.
4825         Now only EH clauses are missing.
4826
4827 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
4828
4829         * marshal.c (get_runtime_invoke_type): Don't share primitive types
4830         for return values.
4831
4832 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
4833
4834         * metadata-verify.c: Initial method header verification.
4835
4836 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
4837
4838         * metadata-verify.c (verify_import_table): The IAT contents
4839         might end been patched by the windows DL when running with
4840         coree enabled.
4841
4842 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
4843
4844         * class.c (mono_class_from_typeref): If the enclosing type is not
4845         found return null instead of crashing. Fixes #508487.
4846
4847 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
4848
4849         * normalization-tables.h : updated to the latest unicode charcter
4850           data.
4851         * appdomain.c : bump corlib version.
4852
4853 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
4854
4855         * class.c (mono_class_from_name): Fix support for assembly references
4856         in the EXPORTEDTYPE table. Fixes #511704.
4857
4858 2009-06-13  Geoff Norton  <gnorton@novell.com>
4859
4860         * domain.c: Ensure that mono_domain_assembly_open actually opens the
4861         assembly in the target domain.
4862
4863 2009-06-12  Robert Jordan  <robertj@gmx.net>
4864
4865         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
4866         because "this" of the managed signature has become an
4867         ordinary parameter in the unmanaged signature.
4868
4869 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
4870
4871         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
4872         field for owner-less generic containers.
4873
4874         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
4875         image field of the owner-less generic containers created here.
4876
4877         * metadata.c (mono_metadata_load_generic_params): Ditto, the
4878         contain is ownerless until the caller sets its owner.
4879
4880         * metadata.c (type_in_image): Handle owner-less generic containers
4881         correctly.
4882         
4883 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4884
4885         * image.c (mono_image_close): Support debug_assembly_unload for
4886         dynamic images too.
4887
4888 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
4889
4890         * class.c: Fix some typos in comments.
4891
4892 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4893
4894         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
4895
4896         * threads.c (mono_thread_execute_interruption): Avoid creating the
4897         abort exception object while holding the synch_cs lock.
4898
4899 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4900
4901         * metadata-verify.c: Verify basic cattr content.
4902
4903 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
4904
4905         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
4906         nested types.
4907         
4908         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
4909         support for nested types. Fixes #511704.
4910
4911 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4912
4913         * metadata-verify.c: Verify methodspec signatures.
4914
4915 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4916
4917         * metadata-verify.c: Verify typespec signatures.
4918
4919 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
4920
4921         * metadata.c (free_inflated_method): Call 
4922         mono_marshal_free_inflated_wrappers (), which was missed earlier.
4923
4924 2009-06-08  Miguel de Icaza  <miguel@novell.com>
4925
4926         * mono-config.c: Small change to report the PPC64/ILP32 model.
4927
4928 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4929
4930         * metadata-verify.c (parse_type): Check szarray.
4931
4932 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4933
4934         * metadata-verify.c (parse_type): Check fnptr.
4935
4936 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4937
4938         * metadata-verify.c (parse_type): Check generic instances.
4939
4940 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4941
4942         * metadata-verify.c (parse_type): Check array shape.
4943
4944 2009-06-05  Robert Jordan  <robertj@gmx.net>
4945
4946         * class.c (mono_class_create_from_typedef): Check only for
4947         mscorlib's System.Array.
4948
4949 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
4950
4951         * metadata-verify.c (parse_type): Check pointer, class/valuetype
4952         and generic params. 
4953
4954         * metadata-verify.c (parse_field): Check the signature.
4955
4956 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
4957
4958         * metadata-verify.c: Implement locals signature check.
4959
4960 2009-06-04  Marek Safar  <marek.safar@gmail.com>
4961
4962         * domain.c: Add .NET 4.0 Beta 1 version.
4963
4964 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
4965
4966         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
4967           For QueryInterface on CCWs consider the base class
4968           interfaces as well.
4969
4970         Code is contributed under MIT/X11 license.
4971
4972 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4973
4974         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
4975
4976         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
4977         used.
4978
4979         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
4980         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
4981
4982         * generic-sharing.c (inflate_other_data): Ditto.
4983         
4984 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
4985
4986         * metadata-verify.c: Implement property signature check.
4987
4988 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4989
4990         * sgen-gc.h: Register saving support for PPC.
4991
4992 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4993
4994         * sgen-gc.c: Fixed a pthread TLS screwup.
4995
4996 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4997
4998         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
4999         supported.
5000
5001 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5002
5003         * sgen-gc.c: Disable TLA and managed allocation if the __thread
5004         keyword is not supported.
5005
5006 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5007
5008         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
5009         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
5010         the inflated method is freed. Fixes #508389.
5011
5012         The code is contributed under the MIT/X11 license.
5013         
5014 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
5015
5016         * marshal.c (get_wrapper_target_class): New helper function.
5017         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
5018         the <Module> class of the image. Fixes #509049.
5019
5020 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5021
5022         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
5023         Check if the thread was interrupted and proccess it straight away.
5024         Makes abortion much more responsive.
5025
5026 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5027
5028         * threads.c (mono_thread_execute_interruption): Use atomic cas with
5029         MonoThread::interruption_requested to match it's counterpart.
5030
5031         Fixes a hang in abort-stress-1 on a 2 core x86.
5032
5033         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
5034         Fix warning.
5035
5036 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5037
5038         Change MonoImage::name_cache to be protected by the image lock
5039         instead of the loader lock.
5040
5041         * appdomain.c (deregister_reflection_info_roots): Protect access
5042         to name_cache.
5043
5044         * class.c (mono_image_init_name_cache): Change from the loader lock
5045         to the image lock. Check if the cache wasn't already created.
5046
5047         * class.c: Change from the loader to the image lock.
5048
5049         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
5050         the code to hold the image lock while iterating over name_cache and
5051         not go into mono_array_new holding it.
5052
5053         * metadata-internals.h: Add a comment about this change.
5054
5055 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5056
5057         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5058         Under the 2.0 profile raise the loader error.
5059
5060         Fixes #508532.
5061
5062 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5063
5064         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5065         of ldind opcode for generic instances so we don't fail for direct wrappers.
5066         This only affect direct calls.
5067
5068 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5069
5070         * reflection.c (create_dynamic_mono_image): Fix warnings.
5071
5072         * generic-sharing.c (other_info_equal): Ditto.
5073         
5074 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5075
5076         * metadata-verify.c: Implement field signature check.
5077
5078 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5079
5080         * metadata-verify.c: Implement standalone signature check.
5081
5082 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5083
5084         * metadata-verify.c: Implement methodref signature check.
5085
5086 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5087
5088         * object-internals.h (MonoRuntimeCallbacks): New structure containing
5089         callbacks supplied by the runtime.
5090
5091         * object.c (mono_install_callbacks): New internal function to install
5092         the callbacks.
5093
5094         * object.c (mono_create_ftnptr): Move the implementation of this to
5095         mini/.
5096
5097         * object.c (mono_get_addr_from_ftnptr): Ditto.  
5098
5099 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5100
5101         * metadata-verify.c (parse_return_type): Proper byref check.
5102         * metadata-verify.c (is_valid_method_signature): Check for zero arity
5103         generic signatures and method params.
5104
5105 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5106
5107         * metadata-verify.c (decode_signature_header): Fix bounds check.
5108
5109         * metadata-verify.c (parse_custom_mods): Check custom mods.
5110
5111         * metadata-verify.c (parse_type): Do initial basic verification
5112         of valid values.
5113         
5114         * metadata-verify.c (is_valid_method_signature): Parse the generic
5115         param count.
5116
5117 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5118
5119         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5120         discarded based on their most specific definition so we set the method_slots
5121         array before checking if the method is acceptable or not.
5122
5123         Fixes #506757.
5124
5125 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5126
5127         * icall.c: Free the old array when resizing a mono_ptr_array.
5128
5129 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5130
5131         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5132         for the hashes whose keys are managed objects.
5133
5134 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5135
5136         * object-internals.h, threads.c: Set the execution context on
5137         thread start here, not in corlib.
5138
5139         * appdomain.c: Bump corlib version.
5140
5141 2009-05-27  Martin Baulig  <martin@ximian.com>
5142
5143         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5144         if `_mono_debug_using_mono_debugger' is set to make things work
5145         properly when embedding Mono.
5146
5147 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5148
5149         * class.c (mono_class_setup_fields): Don't mark simd types as having
5150         16 bytes alignment as the whole runtime doesn't support.
5151
5152 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5153
5154         * metadata-verify.c (safe_read): Use endian safe read macros.
5155
5156 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5157
5158         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5159         it is read-only when using full aot.
5160
5161 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5162
5163         * metadata-verify.c (is_valid_method_signature): Verify parts
5164         of the return type. Provide an error message in case of failure.
5165
5166 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5167
5168         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5169
5170 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5171
5172         * metadata-verify.c: Include the size prefix in the bounds check.
5173
5174 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5175
5176         * icall.c: Remove warnings.
5177
5178         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5179         prevent auto-detection based on GCC defines.
5180
5181         Add PS3
5182
5183         * metadata-verify.c: Do not include signal.h
5184
5185         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5186         messages.  Not sure why the g_assert_not_reached is not enough to
5187         quiet the compiler.
5188         
5189
5190         * appdomain.c: Remove code that is not used when
5191         DISABLE_SHADOW_COPY is set.
5192
5193         * image.c: use g_getenv
5194
5195 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5196
5197         * reflection.c: Remove code that it not used with
5198         DISABLE_REFLECTION_EMIT is defined.
5199
5200 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5201
5202         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5203         invoke wrappers.
5204
5205 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5206
5207         * socket-io.c
5208         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5209         the ifdef here and instead put that on io-layer
5210
5211 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5212
5213         * metadata-verify.c: Verify the generic param constraint table.
5214
5215 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5216
5217         * metadata-verify.c (verify_generic_param_table): Fix
5218         thinko on the valid flags bits for generic params.
5219
5220 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5221
5222         * metadata-verify.c: Verify the methodspec table.
5223
5224 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5225
5226         * metadata-verify.c: Verify the generic param table.
5227
5228 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5229
5230         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5231
5232 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5233
5234         * sgen-gc.c: Use generation enum more consistently and use the
5235         correct generation in mono_gc_register_for_finalization().
5236
5237 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5238
5239         * metadata-verify.c: Verify the nested class table.
5240
5241 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5242
5243         * metadata-verify.c: Verify the manifest resource table.
5244
5245 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5246
5247         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5248
5249 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5250
5251         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5252         wrappers, this is now done in the JIT.
5253         
5254         * class.c (mono_set_generic_sharing_supported): New internal function.
5255         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5256
5257 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5258
5259         * metadata-verify.c: Verify the exported type table.
5260
5261 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5262
5263         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5264
5265 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5266
5267         * metadata-verify.c: Verify the file table.
5268
5269 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5270
5271         * metadata-verify.c (verify_assembly_table): Fix an error message.
5272
5273         * metadata-verify.c: Verify the assemblyref table.
5274
5275 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5276
5277         * metadata-verify.c (verify_assembly_table): Fix the valid
5278         bits mask for flags.
5279
5280 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5281
5282         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5283         generic methods as well.
5284
5285 2009-05-15  Geoff Norton  <gnorton@novell.com>
5286
5287         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5288         use-case and is significantly more performant than the wapi layer.
5289
5290 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5291
5292         * metadata-verify.c: Verify the assembly table.
5293
5294 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5295
5296         * metadata-verify.c: Fix rows limit check.
5297
5298 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5299
5300         * metadata-verify.c: Verify the fieldrva table.
5301
5302 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5303
5304         * sgen.c: Speed up weak links and finalizers by grouping them by
5305         generation.
5306
5307 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5308
5309         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5310         free the old GCHandle (only applies to SGen).
5311
5312 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5313
5314         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5315         mono_metadata_load_generic_params () for non-generic methods.
5316
5317 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5318
5319         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5320         New function for returning a monitor's weak link if it has one.
5321
5322         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5323         one) when clearing a domain.  These can still be around because
5324         the object might not have been collected.
5325
5326 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5327
5328         * gc.c: Fix a warning.
5329
5330 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
5331
5332         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5333         prevous wait that resulted in a deadlock on Windows when initializing
5334         the runtime form DllMain. Also results in improved startup time.
5335         (finalizer_thread): Get rid of thread_started_event.
5336         * threads.c, threads-types.h (mono_thread_create_internal): Return the
5337         resulting MonoThread.
5338
5339         Contributed under MIT/X11 license.
5340
5341 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
5342
5343         * metadata-verify.c: Verify the implmap table.
5344         Don't require that #US and #Strings be present.
5345
5346 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
5347
5348         * security-core-clr.c: Delegate checks are done at creation time,
5349         not a invocation time. Fix exception for Telerik Silverlight demo
5350
5351 2009-05-11  Mark Probst  <mark.probst@gmail.com>
5352
5353         * sgen-gc.c (need_remove_object_for_domain): Remove the special
5354         case for the Thread class.
5355
5356         * threads.c: Do clean-up of abort exception/state in
5357         thread_cleanup() instead of Thread.free_internal().  Also clean up
5358         current_appcontext.  The reason we have to do that is because
5359         those references might point into another domain and if that
5360         domain is unloaded before the thread is finalized, they point to
5361         invalid data.
5362
5363 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
5364
5365         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
5366         stub signatures.
5367         
5368         Contributed unter MIT/X11 license.
5369
5370 2009-05-09  Miguel de Icaza  <miguel@novell.com>
5371
5372         * verify.c, metadata-verifier.c: Add support for disabling the
5373         verifier in some builds.
5374
5375         [ Sorry, my previous commit accidentally commited some work in
5376         progress ]
5377
5378 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5379
5380         * class.c (mono_class_setup_fields): Set class->field.first for
5381         generic instances.
5382
5383 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5384
5385         * metadata-verify.c: Verify the typespec table.
5386
5387 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5388
5389         * metadata-verify.c: Verify the module table.
5390
5391 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5392
5393         * metadata-verify.c: Verify the methodimpl table.
5394
5395 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5396
5397         * metadata-verify.c: Verify the property table.
5398
5399 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5400
5401         * debug-helpers.c (mono_method_desc_match): Add support for generic
5402         glob patterns.
5403
5404 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
5405
5406         * metadata-verify.c: Verify the propertymap table.
5407
5408 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
5409
5410         * metadata-verify.c: Verify the event table.
5411
5412         * metadata-verify.c (search_sorted_table): Fix offset
5413         calculation.
5414
5415 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5416
5417         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
5418
5419 2009-05-01  Mark Probst  <mark.probst@gmail.com>
5420
5421         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
5422         because mono_delegate_free_ftnptr() needs it.
5423
5424 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5425
5426         * metadata-verify.c: Verify the eventmap table.
5427
5428 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5429
5430         * metadata-verify.c: Verify the standalonesig table.
5431
5432 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5433
5434         * metadata-verify.c: Verify the field layout table.
5435
5436 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5437
5438         * class.c (mono_type_get_name_recurse): Don't crash
5439         for ownerless generic params.
5440
5441         * debug-helpers.c (mono_type_get_desc): Correct the format
5442         for ownerless generic params.
5443
5444 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5445
5446         * metadata-verify.c: Verify the class layout table.
5447
5448 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5449
5450         * metadata-verify.c: Verify the decl security table.
5451
5452 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5453
5454         * domain.c (mono_domain_set_internal_with_options): Don't do
5455         anything if the old domain is the same as the old one.  Fixes
5456         #499326.
5457
5458 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5459
5460         * appdomain.c: Deregister the reflection_info roots when unloading
5461         a domain.
5462
5463         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
5464         memory allocated by a domain and frees its disappearing links.
5465
5466         * boehm-gc.c, null-gc.c: Empty implementation of
5467         mono_gc_clear_domain().
5468
5469 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5470
5471         * appdomain.c (clear_cached_vtable): Free the static fields memory
5472         block.
5473
5474 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5475
5476         * gc.c: Set the correct domain when invoking finalizers.
5477
5478         * appdomain.c: Set the correct domain when creating threads.
5479
5480 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5481
5482         * sgen-gc.c: Fix skip size for vectors.
5483
5484 2009-05-03  Martin Baulig  <martin@ximian.com>
5485
5486         * mono-debug-debugger.c
5487         (mono_debugger_check_breakpoints): Check class init handlers even
5488         if we don't have any method load handers.
5489
5490 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
5491
5492         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
5493         returning refonly assemblies if refonly is FALSE. Fixes #499013.
5494
5495 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5496
5497         * metadata-verify.c: Verify the field marshal table.
5498
5499 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5500
5501         * metadata-verify.c: Verify the custom attribute table.
5502
5503 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5504
5505         * metadata-verify.c: Verify the constant table.
5506
5507 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5508
5509         * metadata-verify.c: Verify the memberef table.
5510
5511 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5512
5513         * metadata-verify.c (get_coded_index_token): Remove
5514         dead argument.
5515
5516 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5517
5518         * metadata-verify.c: Verify the interfaceimpl table.
5519
5520 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5521
5522         * verify.c: Improve error message.
5523
5524         * debug-helpers.c (mono_type_get_desc): Harden the code that
5525         deals with VAR and MVAR.
5526
5527 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
5528
5529         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
5530         part of #498692.
5531
5532 2009-04-23 Tom Hindle <tom_hindle@sil.org>
5533
5534         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
5535         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
5536
5537 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
5538
5539         * security-core-clr.c: Avoid redundant checks for platform code, 
5540         e.g. check for method and for class (very common) and check
5541         for class and outer class (less common)...
5542
5543 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
5544
5545         * reflection.c: Avoid returning random cattrs for synthetic methods.
5546         Fixes #498545.
5547
5548 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5549
5550         * assembly.c: assemblies in the GAC should never be shadow-copied.
5551
5552 2009-04-26  Mark Probst  <mark.probst@gmail.com>
5553
5554         * domain.c, domain-internals.h: Disable
5555         track_resurrection_{objects,handles}_hash in MonoDomain if using
5556         SGen.
5557
5558 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5559
5560         * metadata-verify.c: Verify the param table.
5561
5562 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5563
5564         * metadata-verify.c (verify_typedef_table): Range check FieldList and
5565         MethodList.
5566
5567         * metadata-verify.c (verify_method_table): Proper check the ParamList
5568         field.
5569
5570 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5571
5572         * metadata-verify.c (verify_method_table): Check for runtime
5573         implemented functions such as delegate .ctors. Remove spurious
5574         printf.
5575         
5576 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5577
5578         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
5579
5580 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5581
5582         Don't allocate MonoGenericInfo for ownerless generic params.
5583         * class-internals.h (MonoGenericParam::info): Move field to ...
5584         (MonoGenericParamFull): ... this.  New struct.
5585         (MonoGenericContainer::type_params): Change type to
5586         MonoGenericParamFull.
5587         (MonoGenericParam, MonoGenericContainer): Update accessors.
5588         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
5589         'info' field for ownerless generic param.
5590         (mono_metadata_load_generic_params): Update to changes.
5591         * reflection.c (mono_reflection_create_generic_class): Likewise.
5592         (reflection_methodbuilder_to_mono_method): Likewise.
5593         (mono_reflection_initialize_generic_parameter): Likewise.
5594
5595 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5596
5597         Don't use MonoGenericParamInfo for ownerless generic params.
5598         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
5599         use ParamInfo class at all.
5600         (mono_class_from_generic_parameter): Use them.
5601         (make_generic_param_class): Fix a couple of instances where 'pinfo
5602         == NULL' wasn't handle.
5603
5604 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5605
5606         * class.c (make_generic_param_class): Carve out of ...
5607         (mono_class_from_generic_parameter): ... here.
5608
5609 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5610
5611         Simplify mono_class_from_generic_parameter
5612         * class-internals.h (MonoGenericParamInfo::token): New field.
5613         * metadata.c (mono_metadata_load_generic_params): Initialize it
5614         from metadata.
5615         * class.c (mono_class_from_generic_parameter): Use it instead of
5616         searching through metadata.
5617
5618 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5619
5620         * metadata-verify.c: Add verification of the method table.
5621
5622 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5623
5624         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
5625         Delegate::Invoke optimization.
5626
5627 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5628
5629         * appdomain.c (mono_domain_create_appdomain_internal): Free the
5630         string returned by get_shadow_assembly_location_base.
5631
5632         * appdomain.c (get_shadow_assembly_location_base): Add a comment
5633         about caller's ownership.
5634
5635 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5636
5637         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
5638         reflection memory on domain unload.
5639
5640         * domain.c (mono_domain_free): Don't free refobject_hash, let the
5641         reflection cleanup code do it.
5642
5643         * domain-internals.h: Add mono_reflection_cleanup_domain.
5644
5645         This fixes a memory leak for managed mirrors of reflection objects
5646         on domain unload. 
5647
5648 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5649
5650         * metadata-verify.c: Implement more verification of the field table.
5651
5652 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5653
5654         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
5655         doesn't try to parse the input assembly, which can be broken.
5656
5657 2009-04-23  Mark Probst  <mark.probst@gmail.com>
5658
5659         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
5660         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
5661         by using the lowest bit in the link to store whether the link is
5662         tracked.  Move the track_resurrection hashes into boehm-gc.c.
5663
5664 2009-04-22  Miguel de Icaza  <miguel@novell.com>
5665
5666         * Makefile.am: Split the console support in platform specific code
5667         and put together a framework for making this easy in the future so
5668         that we can start splitting code instead of having a mess of PLATFORM_WIN32
5669
5670 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5671
5672         * pedump.c: Fix a warning.
5673
5674 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5675
5676         * verify.c (mono_delegate_type_equal): Compare valuetypes using
5677         mono_class_from_mono_type to avoid bad interactions with the dual representation
5678         of the generic type definition.
5679
5680 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5681
5682         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
5683         get the MonoClass for the call context type as it might be a generic
5684         instance.
5685
5686         Fixes #491483.
5687
5688 2009-04-21  Mark Probst  <mark.probst@gmail.com>
5689
5690         * object-internals.h: The Thread object has no execution_context
5691         member anymore.
5692
5693         * threads.c, threadpool.c, threads-types.h: Accessor functions for
5694         the execution context.
5695
5696         * appdomain.c: Bump corlib version.
5697
5698 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5699
5700         * verify.c (do_newobj): Improve error message.
5701
5702 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5703
5704         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
5705         is nested in the filter block.
5706
5707         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
5708         block is not fully nested.
5709
5710         Fixes #495656.
5711
5712 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5713
5714         * verify.c (verify_type_compatibility_full): Compare MonoClass and
5715         not MonoType to check for equality of valuetypes as the generic type
5716         definition allows for two different encodings: the generic type definition
5717         class or a generic instance over the GTD arguments.
5718
5719         Fixes #496175.
5720
5721 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5722
5723         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
5724
5725         * verify.c (do_initobj): Improve error message.
5726
5727 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5728
5729         * metadata-verify.c: Enable pe verification as the issue with #496453
5730         is that the authenticode data directory have a different unspecified
5731         format. Ignore it for now.
5732
5733         * pedump.c: Run the metadata verifier together with the IL verifier.
5734
5735         Fixes ##496453.
5736
5737 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5738
5739         * metadata-verify.c: Temporarily disable pe verification due to #496453.
5740
5741 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5742
5743         * class.c (can_access_type): Check visibility against
5744         the element type for pointers and arrays.
5745
5746         Fixes #496150.
5747
5748 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5749
5750         * metadata-verify.c: Fix cli and table verification to use information
5751         from the MonoImage. A lot of duplicated code got killed.
5752
5753 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5754
5755
5756         This patch starts to integrate the metadata verifier with the runtime code.
5757
5758         This patch causes major regression in functionality for the metadata verifier
5759         as cli and table verification are disabled since they require to be ported to
5760         use MonoImage information.
5761
5762         * image.c (do_mono_image_load): Split the code in this function
5763         into mono_image_load_pe_data and mono_image_load_cli_data.
5764         Add     care_about_pecoff parameter to not load pecoff data.
5765         Call into the metadata verifier for pecoff and cli verification.
5766
5767         * image.c (mono_image_open_raw): New function that doesn't perform
5768         any parsing of the image contents.
5769         
5770         The reason for the 3 new functions is to give pedump better control
5771         into the interaction with the verifier.
5772
5773         * metadata-internals.h: Add new functions from image.c as part of the
5774         internal mono API.
5775
5776         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
5777         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
5778         to make those functions work together with the runtime.
5779
5780         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
5781         true if the image needs to be verified.
5782
5783         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
5784
5785         * pedump.c: Use new metadata verifier API.
5786
5787 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
5788
5789         * object.c (mono_install_vtable_trampoline): Make this receive a
5790         trampoline creation function instead of trampoline, allowing the JIT
5791         to use a different trampoline for each vtable.
5792
5793 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5794
5795         * object.c (mono_raise_exception): Don't reset the thread abort
5796         exception state here.
5797
5798 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5799
5800         * icall-def.h: New icall for getting the thread abort exception
5801         state for a thread.
5802
5803         * object.c, thread.c, object-internals.h: A thread's abort
5804         exception state is now a GC handle.  To get the object it stands
5805         for, we must move it into the current app domain, if it's
5806         different than the one where it originated from.
5807
5808         * appdomain.c: Bump corlib version.
5809
5810         * domain.c, domain-internals.h: New function for setting the
5811         domain and migrate the thread abort exception or not.
5812
5813 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5814
5815         * metadata-verify.c: Add initial verification of the
5816         field table.
5817
5818 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5819
5820         * metadata-verify.c: Add a macro to conditionally enable
5821         dumping of verification information. Add  make_coded_token
5822         and search_sorted_table to enable search sorted tables
5823         by a given coded token.
5824
5825 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5826
5827         * metadata-verify.c: Add array mapping from table index
5828         to description offset. Add get_col_offset and get_col_size
5829         functions.
5830
5831 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5832
5833         * metadata-verify.c: Add remaining table descriptions offsets.
5834         Add remaining coded index descriptions.
5835
5836 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5837
5838         * metadata-verify.c: Fixed constant table description.
5839         Fixed calculation of HasCustomAttribute coded index size.
5840         Fixed calculation of size for many table indexes. 
5841
5842 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5843
5844         * pedump.c (dump_metadata): Dump table offset instead
5845         of useless pointer in memory.
5846
5847 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5848
5849         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
5850
5851 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5852
5853         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
5854         a missing of for interface types.
5855
5856 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5857
5858         * metadata-verify.c (verify_pe_optional_header): Add comment of why
5859         the code is commented.
5860
5861         * metadata-verify.c (verify_resources_table): Remove spurious printf
5862         and don't fail if there are unmanaged resources. Gmcs generates a useless
5863         one     for all assemblies - I bet it's some MS compatibility junk.
5864
5865 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5866
5867         * metadata-verify.c (verify_typedef_table): Verify the extends field.
5868
5869         * metadata-verify.c (mono_image_verify): Add a is_corlib.
5870
5871         * verify-internals.h: Same.
5872
5873         * pedump.c: Fix for mono_image_verify new signature.
5874
5875 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5876
5877         * metadata-verify.c (verify_typedef_table): Verify for some invalid
5878         flags combinations.
5879
5880 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5881
5882         * metadata-verify.c (verify_module_table): Ignore the generation field.
5883
5884 2009-04-15  Martin Baulig  <martin@ximian.com>
5885
5886         * debug-mono-symfile.c
5887         (mono_debug_symfile_lookup_location): Don't print a warning for
5888         unknown extended opcodes if they're within 0x40 and 0x7f.
5889
5890 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
5891
5892         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
5893         invoke signatures returning an enum. Fixes #494847.
5894
5895 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5896
5897         * metadata-verify.c: Initial code to verify the typedef table.
5898
5899 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5900
5901         * verify.c (mono_method_verify): Don't fail if an unconditional branch
5902         with non empty stack happens before the beginning of a try block.
5903
5904         Fixes #494812.
5905
5906 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5907
5908         * metadata-verify.c: Verify typename and typenamespace fields of
5909         the typeref table.
5910
5911 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
5912
5913         * metadata-verify.c: Initial code to verify the typeref table.
5914
5915 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
5916
5917         * verify.c (verify_delegate_compatibility): Fix error message.
5918
5919 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
5920
5921         * security-core-clr.c: Fix typo
5922
5923 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5924
5925         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
5926         a MonoGHashTable to keep its values alive.
5927         (emit_marshal_boolean): Fix a warning.
5928
5929 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5930
5931         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
5932         not have any interface configured for IPv4/IPv6.
5933
5934 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5935
5936         * assembly.c: fix typo in error message.
5937
5938 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5939
5940         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
5941         allocating the location holding the this argument to prevent
5942         'too many root sets' errors.
5943
5944         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
5945         to mark fields as special static.
5946         (mono_field_static_get_value): Handle special static fields.
5947         (mono_field_static_set_value): Ditto.
5948
5949         * class-internals.h (struct _MonoClassField): Document this.
5950
5951 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5952
5953         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
5954           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
5955           case.  This will handle when managed code returns null to native code.
5956
5957         Code is contributed under MIT/X11 license.
5958
5959 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5960
5961         * object.c (build_imt_slots): Changing a free to a g_free to match
5962           the g_malloc0 in add_imt_builder_entry that allocated this memory.
5963
5964         Code is contributed under MIT/X11 license.
5965
5966 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5967
5968         * marshal.c (emit_marshal_boolean): Adding code to ensure that
5969           the correct TRUE value is passed through the marshaling layer.
5970
5971         Code is contributed under MIT/X11 license.
5972
5973 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
5974
5975         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
5976         correctly. Fixes #492330.
5977         
5978         * marshal.c: Fix the embedding of object pointers into JITted code in
5979         the native-to-managed wrappers by allocating some GC tracked memory, and
5980         embedding the address of that.
5981
5982 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
5983
5984         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
5985         pointers into the vtable.
5986
5987 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
5988
5989         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
5990
5991         * verify.c (verify_ldftn_delegate): Improve error message.
5992
5993 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
5994
5995         * reflection.c (my_mono_class_from_mono_type): Remove.
5996
5997 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
5998
5999         Prepare to reduce memory usage of owner-less generic parameters (1/n)
6000         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
6001         and constraints fields into ...
6002         (MonoGenericParamInfo): ... this.
6003         (mono_generic_param_info, mono_generic_container_get_param_info):
6004         New accessors.
6005         * class.c, debug-helpers.c, icall.c: Update to changes.
6006         * metadata.c, reflection.c, verify.c: Likewise.
6007
6008 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
6009
6010         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
6011
6012         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
6013         
6014         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
6015         booleans with sbytes.
6016
6017 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6018
6019         * class.c (can_access_instantiation): Verify accesibility of element types
6020         for arrays and pointers.
6021
6022         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
6023
6024         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
6025
6026         Fixes #493068.
6027
6028 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6029
6030         * verify.c (do_invoke_method): Improve error messages.
6031
6032 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
6033
6034         * verify.c:  Fixing the MSVC build.
6035
6036         Code is contributed under MIT/X11 license.
6037
6038 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
6039
6040         * security-core-clr.c: Simplify get_reflection_caller not to call
6041         mono_method_get_last_managed (another stack walk) and adjust the
6042         callers to handle a (should not happen) NULL return value.
6043
6044 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6045
6046         Add accessors to some MonoGenericParam fields
6047         * class-internals.h (mono_generic_param_owner): New accessor.
6048         (mono_generic_param_num): Likewise.
6049         (mono_type_get_generic_param_owner): New helper.
6050         (mono_type_get_generic_param_num): New helper.
6051         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
6052
6053 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6054
6055         * class-internals.h (mono_generic_container_get_param): New wrapper.
6056         * class.c, icall.c, metadata.c, verify.c: Use it.
6057
6058 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6059
6060         Fix gtest-252.cs
6061         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6062         the standard case/loop.  In particular, don't complain about
6063         references to generic type definitions.
6064
6065 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
6066
6067         * debug-helpers.c (dis_one): Decode string arguments.
6068
6069 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6070
6071         * pedump.c (dump_verify_info): Dump type name correctly.
6072
6073 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6074
6075         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6076         are larger than code size.
6077
6078         This can happen in valid code if the try/catch block is not followed by any instruction
6079         and do a backward branch on the leave instruction.
6080
6081         Fixes #492494.
6082
6083 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
6084
6085         * security-core-clr.c: Fix typo while comparing second method names
6086         in can_avoid_corlib_reflection_delegate_optimization
6087
6088 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6089
6090         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6091
6092         Fixes #487738.
6093
6094 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6095
6096         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6097         a MVAR using a class context.
6098
6099         Fixes #490335.
6100
6101 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
6102
6103         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6104
6105         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6106
6107         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6108         functions supplied by the JIT for the SGEN GC.
6109
6110         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6111         
6112 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6113
6114         monitor.c (mono_monitor_try_enter_internal):
6115         Added calls to profile monitor contentions.
6116         Also duplicated a small piece of code (the "get the monitor" logic)
6117         from the fast path to the slow path, and changed the relevant goto
6118         statements, so that monitor acquisition events can be emitted from the
6119         slow path (this is by Paolo Molaro).
6120
6121 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6122
6123         * profiler.c, profiler.h, profiler-private.h:
6124         Added support for profiling monitor contentions.
6125
6126 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6127
6128         * metadata-verify.c: Verify the modules table.
6129
6130 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6131
6132         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6133         using the context of the method been verifier and not of the method been called.
6134
6135         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6136         safely inflate generic types. 
6137
6138 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6139
6140         * security-core-clr.c: Change the strategy for checking the 
6141         "reflection using delegates optimization" to avoid unneeded 
6142         attributes in multiple class libraries.
6143
6144 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6145
6146         * sgen-gc.c: Remove object element in the disappearing link struct
6147         by storing the object pointer in the link.
6148
6149 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6150
6151         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6152
6153 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6154
6155         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6156
6157         * verify.c (mono_method_verify): Do proper bounds checking of exception
6158         clause ranges.
6159
6160 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6161
6162         * loader.c (mono_field_from_token): Don't crash if the field parent could
6163         not be decoded.
6164
6165 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6166
6167         * sgen-gc.c: Execute critical finalizers after ordinary
6168         finalizers.
6169
6170         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6171         mono_defaults.
6172
6173 2009-03-31 Jb Evain <jbevain@novell.com>
6174
6175         * verify.c (do_ldstr): don't check if a string is in the user strings
6176         heap if the current image is dynamic.
6177
6178 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6179
6180         * sgen-gc.c: Wait until the last finalizer has executed when
6181         returning from WaitForPendingFinalizers.
6182
6183 2009-03-31  Martin Baulig  <martin@ximian.com>
6184
6185         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6186         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6187         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6188         (mono_debugger_event_create_appdomain): New function.
6189         (mono_debugger_event_unload_appdomain): New function.
6190
6191         * appdomain.c (mono_domain_create_appdomain_internal): Call
6192         mono_debugger_event_create_appdomain().
6193
6194 2009-03-31  Martin Baulig  <martin@ximian.com>
6195
6196         * mono-debug-debugger.c
6197         (mono_debugger_register_class_init_callback): Also register the
6198         class init callback if the class is already initialized to make
6199         things work with shadow copied assemblies.
6200
6201 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6202
6203         * security-core-clr.c
6204         (mono_security_core_clr_ensure_reflection_access_field): Let 
6205         critical code access the field (just like we do for methods). Use
6206         check_field_access helper.
6207         (mono_security_core_clr_ensure_reflection_access_method): Use 
6208         check_field_access helper.
6209
6210 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6211
6212         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6213         call the run-finalize function directly.
6214
6215         * gc.c, gc-internal.h: Make run_finalize() non-static.
6216
6217 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6218
6219         * sgen-gc.c: Use a separate struct for disappearing links.
6220
6221 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6222
6223         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6224         * MaxIOVectorLength enabled, just ignore them.
6225         Fixes bug #349688.
6226
6227 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6228
6229         * metadata-verify.c: Fix eglib build.
6230
6231 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6232
6233         * threads-types.h: Fix the win32 build.
6234
6235 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6236
6237         * class.c: move coreclr inheritance/override checks to 
6238         security-core.clr.c
6239         * security-core.clr.c|h: add code from class.c with additional
6240         documentation. Fix override check when the method is not critical.
6241
6242 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6243
6244         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6245         (match_class): Ditto.
6246
6247 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6248
6249         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6250
6251         * metadata-verify.c: Implement table layout row size calculation. Verify
6252         the total size of the tables.
6253
6254 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6255
6256         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6257
6258 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6259
6260         * appdomain.c:
6261         * console-io.[ch]: added new mono_console_init() to make sure that
6262         file descriptors 0, 1 and 2 are opened.
6263         Bug #489019 fixed.
6264
6265 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6266
6267         * appdomain.h: Export a new callback type and a new function to
6268         set this callback. This allow a mono host to provide it's own
6269         definition for "platform code".
6270         * metadata-internals.h: Add a core_clr_platform_code flag on 
6271         _MonoImage to (cache and) know if it is representing platform 
6272         code.
6273         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6274         on platform code images.
6275         * security-core-clr.c|h 
6276         (mono_security_set_core_clr_platform_callback): Allow the host
6277         to provide it's own platform check definition.
6278         (mono_security_core_clr_determine_platform_image): Detect if an 
6279         image is platform code (using the specified callback).
6280         (mono_security_core_clr_is_platform_image): Return cached value 
6281         for platform code.
6282
6283 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6284
6285         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6286         which has different parameter types for the 'tid' argument in windows and
6287         the io-layer.
6288
6289         * appdomain.c attach.c threads.c: Use the new helper.
6290
6291 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6292
6293         * metadata-verify.c: Verify valid table bits.
6294
6295 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6296
6297         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6298
6299         * metadata-verify.c: Add initial table schema verification.
6300
6301 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6302
6303         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6304         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6305         #488383.
6306
6307         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6308
6309         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6310
6311 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6312
6313         * security-core-clr.c: Add/update documentation
6314
6315 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6316
6317         * marshal.c (emit_marshal_object): Generate code to throw an exception
6318         instead of throwing it. Fixes #488670.
6319
6320 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6321
6322         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6323         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6324         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6325         and add a call to mono_security_core_clr_ensure_delegate_creation
6326         to do the extra checks required by CoreCLR.
6327         * security-core-clr.c|h: Add function to check delegate creation,
6328         both in the binding and accessibility, under CoreCLR.
6329
6330 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
6331
6332         * reflection.c (mono_reflection_create_dynamic_method): when 
6333         coreclr is enabled make sure that every resolved object are
6334         checked (e.g. field and method access).
6335         * security-core-clr.c|h: Add function to check objects resolved
6336         when a dynamic method is created.
6337
6338 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6339
6340         * metadata-verify.c: Cache directory rva translations.
6341
6342         * metadata-verify.c: Add cli-header and streams verification.
6343
6344 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6345
6346         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
6347         the wrong offset (8 instead of 6).
6348
6349 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6350
6351         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
6352         methods, return the native function address itself. Fixes
6353         #487758.
6354
6355 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6356
6357         * console-io.c: some of the values for control characters might not be
6358         present.
6359
6360 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
6361
6362         * exception.c|h: Add helpers to create [Field|Method]AccessException
6363         * icall.c: Add required coreclr check calls for field reflection.
6364         Move the existing (method) check logic into security-core-clr.c
6365         * security-core-clr.c: Add functions to check if the access of a
6366         field or method is allowed when reflecting under coreclr. This is
6367         mostly done using a stack walk to find the "real" caller: i.e. the
6368         code that is calling the reflection
6369
6370 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
6371
6372         * gc-internal.h: Change location of gc_wrapper.h
6373
6374 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
6375
6376         * class.c: Simplification to coreclr checks for overrides that
6377         makes it easier to set breakpoints.
6378
6379 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
6380
6381         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
6382         mono_security_core_clr_method_level): Avoid potential 
6383         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
6384         user/application code) and make it easier to set breakpoints
6385
6386 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6387
6388         * metadata-verify.c: Reject cli header tables that mono don't handle.
6389
6390 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6391
6392         * pedump.c: Fix CLI header dumping.
6393
6394 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6395
6396         * metadata-verify.c: More CLI header verification.
6397
6398 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6399
6400         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
6401
6402 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6403
6404         * metadata-verify.c: Initial verification of the CLI header.
6405
6406 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6407
6408         * metadata-verify.c (verify_resources_table): Fix verification of zero
6409         sized resource section and id entries count.
6410
6411 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
6412
6413         * icall.c: Handle user types in many Type icalls. Fixes #486303.
6414
6415 2009-03-17  Jb Evain  <jbevain@novell.com>
6416
6417         * profiler.c: call mono_gc_base_init from mono_profiler_load.
6418
6419 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
6420
6421         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
6422         (mono_gc_make_descr_for_array): Ditto.
6423
6424 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6425
6426         * verify.c (mono_verifier_is_class_full_trust): Add support for
6427         CoreCLR security mode where trusted assemblies are defined as
6428         "platform code".
6429
6430 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6431
6432         * metadata-verify.c: Add minimal PECOFF resource verification.
6433
6434 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6435
6436         * metadata-verify.c: Be less restrictive with some coff fields.
6437
6438 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6439
6440         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
6441         params as boxed values on stack. Fixes #485706.
6442
6443 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6444
6445         * console-io.c: the termios values may vary in different flavors of unix.
6446
6447 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6448
6449         * console-io.[ch]: return the entire set of control characters when
6450         initializing the terminal.
6451         * appdomain.c: bump corlib version.
6452
6453 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
6454
6455         * mono-perfcounters.c: added support for in-process custom
6456         performance counters.
6457
6458 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6459
6460         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
6461
6462 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6463
6464         * metadata-verify.c: Verify the data pointed by the import table. 
6465
6466 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6467
6468         * metadata-verify.c (load_data_directories): Store data
6469         directory contents.
6470
6471         * metadata-verify.c: Verify the import table. 
6472
6473 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6474
6475         * metadata-verify.c: Verify data directories.
6476
6477 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6478
6479         * metadata-verify.c: Check section header flags.
6480
6481 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6482
6483         * appdomain.c: if the assembly name is a shadow-copied file, return
6484         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
6485         in mono_make_shadow_copy.
6486         * icall.c: if the assembly name is a shadow-copied file, replace it
6487         with the original assembly path.
6488
6489         Bug #484244 fixed. NUnit tests for corlib can be run without
6490         --noshadow now.
6491
6492 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
6493
6494         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
6495         entries when the table is reallocated.
6496
6497         * icall.c: Allocate the memory used by the mono_ptr_array macros using
6498         mono_gc_alloc_fixed () since it contains GC refs.
6499
6500 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
6501
6502         * reflection.c (ensure_complete_type): New helper function to call
6503         type resolve handlers for unfinished dynamic types.
6504         (resolve_object): Call it for MonoClassFields. Fixes #483852.
6505
6506 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
6507
6508         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
6509         #483247.
6510
6511 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
6512
6513         * appdomain.c (get_shadow_assembly_location): Fix memleak.
6514
6515 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
6516
6517         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
6518         between GCHandles of type WeakTrackResurrection and the objects they
6519         point to.
6520
6521         * gc.c: Partly implement the sematics of GCHandles of type 
6522         WeakTrackResurrection: these handles should only be cleared after the
6523         finalizer of the object they are pointing to has ran.
6524
6525 2009-03-06  Mark Probst  <mark.probst@gmail.com>
6526
6527         * icall.c: Partially revert r126631 because using the jump
6528         trampolines for generic shared methods makes it superfluous.
6529
6530 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
6531
6532         * threads.c (handle_store): Create the 'threads' hash table with the proper
6533         MONO_HASH_VALUE_GC type.
6534
6535 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
6536
6537         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
6538         FIRST_GC_TRACKED.
6539
6540         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
6541         and LAST_GC_TRACKED as a GC root.
6542
6543         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
6544
6545         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
6546         the static data even if it consists of 1 reference.
6547
6548         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
6549         if there is a GC descriptor.
6550
6551         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
6552         instead of through the GC since they contain no object references.
6553
6554 2009-03-05  Mark Probst  <mark.probst@gmail.com>
6555
6556         * generic-sharing.c (instantiate_other_info): Always return a jump
6557         trampoline for method code.
6558
6559 2009-03-05  Marek Habersack  <mhabersack@novell.com>
6560
6561         * culture-info-tables.h: generated to include the en-tt culture.
6562
6563 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6564
6565         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
6566         capture the thread context.
6567
6568         * object.c (mono_async_result_new): Cache the invoke wrappers to
6569         ExecutionContext::Capture.
6570
6571 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6572
6573         * marshal.h: Add a prototype for what mono_compile_method returns
6574         for invoke wrappers.
6575
6576         * gc.c: Use the new prototype declaration.
6577
6578 2009-03-04  Geoff Norton  <gnorton@novell.com>
6579
6580         * boehm-gc.c: Add some MONO_LOG tracing for the GC
6581         * gc-internal.h:
6582         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
6583
6584 2009-03-04  Martin Baulig  <martin@ximian.com>
6585
6586         * mono-debug.h
6587         (mono_debugger_runtime_invoke): Removed.
6588
6589         * mono-debug-debugger.c
6590         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
6591
6592 2009-03-02  Martin Baulig  <martin@ximian.com>
6593
6594         * mono-debug.h
6595         (mono_debugger_unhandled_exception): Removed.
6596         (mono_debugger_handle_exception): Removed.
6597         (mono_debugger_throw_exception): Removed.
6598
6599         * mono-debug.c
6600         (mono_debug_debugger_version): Bump to 5.
6601
6602         * mono-debug-debugger.c: Moved the exception handling code to
6603         ../mini/debug-mini.c
6604
6605 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6606
6607         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
6608         finalize_objects_hash.
6609
6610         * gc.c: Use the separate lock to access the finalize_objects_hash field.
6611         
6612         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
6613         field.
6614
6615         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
6616         cache.
6617
6618         * image.c (mono_image_close): Free it.
6619         
6620         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
6621         allowing a creation of a wrapper which invokes its method using a CALLVIRT
6622         on the this argument.
6623
6624         * gc.c (run_finalize): Optimize the calling of the finalizers.
6625
6626 2009-03-03  Martin Baulig  <martin@ximian.com>
6627
6628         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
6629         of the `MonoGenericInst' changes.
6630
6631 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6632
6633         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
6634         mono_array_class_get_cached to reduce locking contention. Extract
6635         a domain var.
6636
6637         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
6638         intermediary managed arrays. Use caching version of mono_array_new
6639         to allocate the result array.
6640
6641         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
6642
6643         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
6644
6645         * locales.c (create_names_array_idx):  Use mono_array_new_cached
6646         to reduce locking contention.
6647
6648 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6649                 
6650         * object.c (mono_method_add_generic_virtual_invocation): Put back the
6651         thunk builder code for the non-interface case.
6652
6653 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
6654
6655         * object.c (get_generic_virtual_entries): New helper function to collect
6656         the virtual generic method instances which need to be added to an IMT
6657         thunk.
6658         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
6659         Instead of creating a new IMT thunk, reset the vtable slot to the
6660         trampoline, the thunk will be created the next time the trampoline is called.
6661         (build_imt_slots): Add support for virtual generic methods in interfaces by
6662         adding to the IMT thunk all the methods registered using 
6663         mono_method_add_generic_virtual_invocation ().
6664
6665         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
6666         (struct _MonoIMTCheckItem): Ditto.
6667
6668         * object.c (mono_method_add_generic_virtual_invocation): Take a
6669         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
6670         the IMT thunk to include all items.
6671         
6672         * object.c (mono_class_create_runtime_vtable): Add a missing
6673         mono_loader_unlock ().
6674
6675 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6676
6677         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6678
6679         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
6680
6681 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6682
6683         * object-internals.h: Rename _MonoReflectionEvent to
6684         MonoReflectionMonoEvent so it reflects the right managed type.
6685         Add a MonoReflectionEvent that correctly represents System.EventInfo.
6686
6687         * icall.c:
6688         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
6689         type.
6690
6691 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6692
6693         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
6694         intermediary managed arrays. Use caching version of mono_array_new
6695         to allocate the result array.
6696
6697 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6698
6699         * reflection.c: Use cached version of mono_array_new alongside
6700         the mono_reflection_get_custom_attrs_by_type call path.
6701
6702 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6703
6704         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
6705         intermediary managed arrays. Use caching version of mono_array_new
6706         to allocate the result array.
6707
6708         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
6709
6710 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6711
6712         * icall.c: Add small implementation of a growable stack bound array.
6713
6714         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
6715
6716         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
6717         intermediary managed arrays. Use caching version of mono_array_new
6718         to allocate the result array.
6719
6720 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
6721
6722         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
6723         helps Enum::CompareTo to be implemented without reboxing all enums
6724         to their underlying type.
6725 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
6726
6727         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
6728         since it acquires a global lock leading to scalability problems.
6729
6730         * profiler.c: Make the stat profiler work with multiple appdomains, this
6731         currently only works when no appdomains are unloaded.
6732
6733 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6734
6735         * appdomain.c: make the check to avoid copying when the assembly is
6736         already shadow copied actually work.
6737
6738 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
6739
6740         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6741
6742         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
6743         changes to the managed side.
6744
6745 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
6746
6747         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
6748         classes + a separate lock for it, as it is used frequently at runtime, not
6749         just during metadata loading/JIT compilation.
6750
6751         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
6752         for szarrays.
6753         
6754         * object-internals.h (mono_class_from_name_cached): New macro to cache
6755         the results of the lookup locally without having to declare a static
6756         variable to hold it.
6757         (mono_class_get_field_from_name_cached): Ditto.
6758         (mono_array_class_get_cached): Ditto.
6759
6760         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
6761         the new macros.
6762         
6763         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
6764         slower search in metadata.
6765
6766         * pedump.c: Fix a warning.
6767
6768 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
6769
6770         * reflection.c (encode_locals): Add checks for user types.
6771         (method_encode_clauses): Ditto.
6772         (method_encode_code): Ditto.
6773         (mono_image_create_token): Ditto.
6774
6775         * object-internals.h: Change the type of more fields from MonoReflectionType*
6776         to MonoObject*.
6777
6778 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
6779
6780         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
6781         the a thread does not suspend within 100ms.
6782
6783         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
6784         in addition to StopRequested as well.
6785
6786         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
6787
6788         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
6789         search the method_hash before inserting a new entry, to avoid crashes when
6790         the same method is inserted multiple times, causing the old 
6791         MonoDebugMethodInfo structure to be freed by the value dtor function.
6792
6793 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6794
6795         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
6796         SO_EXLUSIVEADDRUSE where available.
6797
6798 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
6799
6800         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
6801         runtime invoke wrappers, this time it is string ctor wrappers, which
6802         pass a dummy string as 'this' instead of their obj argument. Fixes
6803         #478473.
6804
6805 2009-02-21  Jb Evain  <jbevain@novell.com>
6806
6807         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
6808         only get create_culture once.
6809
6810 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
6811
6812         * reflection.c (mono_reflection_setup_internal_class): Move the user type
6813         check before the locking.
6814         
6815         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
6816         (mono_reflection_create_runtime_class): Ditto.
6817         (mono_reflection_sighelper_get_signature_local): Ditto.
6818         (mono_reflection_sighelper_get_signature_field): Ditto.
6819
6820         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
6821         is a System.MonoType object or similar.
6822         (monotype_cast): New helper function to cast a MonoObject to a 
6823         MonoReflectionType object.
6824
6825         * object-internals.h: Change MonoReflectionType* members in structures to
6826         MonoObject* members to force the usage of the monotype_cast () function.
6827
6828         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
6829         structures/arrays. This causes us to assert instead of crashing when 
6830         instances of user defined subclasses of System.Type are encountered.
6831
6832 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6833
6834         * cil-coff.h:
6835         * icall-def.h:
6836         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
6837         win32 resource loaded from a PE file.
6838
6839         * image.c: fix mono_image_lookup_resource.
6840
6841 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6842
6843         * icall-def.h:
6844         * threads-types.h:
6845         * threads.c: added internal call for WaitHandle.SignalAndWait.
6846
6847 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
6848
6849         * cominterop.c : Adding cominterop_type_from_handle and 
6850           registering it as an icall.  Replacing all references
6851           to type_from_handle.
6852
6853         Code is contributed under MIT/X11 license.
6854
6855 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6856
6857         * Makefile.am: Add lock-tracer.h and lock-trace.c.
6858
6859         * appdomain.c: Call the tracer init function.
6860
6861         * domain-internals.h: Enable the tracer for the domain locks.
6862
6863         * image.c: Enable the tracer for image locks.
6864
6865         * loader.c: Enable the trace for the loader lock.
6866
6867         * lock-tracer.h:
6868         * lock-tracer.c: Initial implementation of the lock trace utility.
6869         The tracer requires a compile time define to be enabled and a env var
6870         to be enabled at runtime.
6871
6872 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6873
6874         * domain.c (mono_domain_code_foreach): Improve documentation.
6875
6876 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6877
6878         * appdomain.c:
6879         * generic-sharing.c:
6880         * object.c:
6881         * reflection.c:  Adjust locking order to the new semantics where the loader lock
6882         comes first.
6883
6884 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
6885
6886         * domain.c: Add mono_domain_code_* functions that perform locking
6887         around the domain codeman.
6888
6889         * domain-internals.h: Export those functions.
6890
6891         * object.c: Use new functions instead of acquiring the domain lock.
6892
6893 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
6894
6895         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
6896         delegate. Fixes #477396.
6897
6898 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6899
6900         * reflection.c (create_custom_attr): Get rid of alloca.
6901
6902 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
6903
6904         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
6905           Adding exception handling for all CCW calls.
6906
6907         Code is contributed under MIT/X11 license.
6908
6909 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6910
6911         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
6912
6913         * marshal.c (emit_marshal_boolean): Add null checks to the new 
6914         native->managed marshalling code. Fixes #476247.
6915
6916 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6917
6918         * class.c (mono_class_get_vtable_entry): Move the addition of
6919         static rgctx invoke wrappers for vtable methods here, this simplifies
6920         a lot of code and causes fewer rgctx wrappers to be created.
6921
6922         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
6923         name of the statistics to begin with an uppercase.
6924
6925 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6926
6927         * reflection.c: Revert previous change as it breaks the build.
6928         
6929 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6930
6931         * verify.c: Properly handle SZARRAY element type.
6932
6933         Fixes #474271.
6934
6935 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6936
6937         * reflection.c (mono_image_create_method_token): Correctly encode
6938         MethodDef MemberRefParent token.
6939
6940         Fixes #472845.
6941
6942 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6943
6944         * image.c (mono_image_close): Delete the critical section before
6945         freeing the memory holding it.
6946
6947 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6948
6949         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
6950         Fixes #476257.
6951
6952 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6953
6954         * pedump.c (main): Call mono_marshal_init so pedump
6955         doesn't crash.
6956
6957 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6958
6959         * loader.c (method_from_memberref): Properly fix #474271 and
6960         don't break the runtime bad.
6961
6962 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6963
6964         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
6965         (mono_domain_alloc0): Ditto.
6966
6967 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6968
6969         * loader.c (method_from_memberref): Don't abort if the array
6970         method is not found. A regular loader failure is more informative
6971         and correct.
6972
6973         Fixes #474271.
6974
6975 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6976
6977         *loader.c: Guard MonoImage::method_cache/methodref_cache
6978         using the image lock instead of the loader lock.
6979
6980         * metadata.h: Add comments about which fields are protected by
6981         the image lock.
6982
6983 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6984
6985         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
6986
6987         * generic-sharing.c (mono_method_construct_object_context): Remove the
6988         wrapper_type == NONE assert, it is not needed.
6989
6990 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
6991
6992         * reflection.c (clear_cached_object): New helper function.
6993         (mono_method_clear_object): New function to clear the cached reflection
6994         objects for a dynamic method.
6995
6996         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
6997         Partly fixes # 463323.
6998         
6999 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7000
7001         * class.c:
7002         * loader.c:
7003         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
7004
7005 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7006
7007         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
7008         take the image lock instead of the loader lock.
7009
7010         * metadata-internals.h: Export new functions.
7011
7012 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7013
7014         * domain.c (app_config_parse): Remove another use of stat that is
7015         not necessary as g_file_get_contents already does the presence
7016         check. 
7017
7018 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7019
7020         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
7021
7022         * marshal.c: Move the bstr handling code to cominterop.c.
7023
7024         * marshal.c: Remove some COM interop code missed previously.
7025
7026 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7027
7028         More Paolo patches from the Wii port:
7029         
7030         * security.c: Remove ves_icall_System_Environment_get_UserName
7031         from here.
7032
7033         * icall.c: And put ves_icall_System_Environment_get_UserName
7034         here. 
7035
7036         * appdomain.c (mono_set_private_bin_path_from_config): Remove
7037         redundant call to stat that was only used to test for the file
7038         existence.   Patch from Paolo.
7039
7040         * gc.c (run_finalize): If COM is disabled, do not link in
7041         mono_marshal_free_ccw.
7042
7043         * generic-sharing.c: Use alloca.h here as well.
7044
7045 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
7046
7047         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
7048
7049 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7050
7051         * cominterop.c cominterop.h: New files.
7052
7053         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
7054         function/typedefs which are needed by cominterop.c global.
7055
7056 2009-02-12  Mark Probst  <mark.probst@gmail.com>
7057
7058         * generic-sharing.c: Don't take the loader lock to guard image
7059         mempool allocs.
7060
7061 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7062
7063         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7064         called without the loader lock which is required to guard MonoImage:tokens.
7065
7066 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7067
7068         * class.c:
7069         * metadata.c:
7070         * method-builder.c:
7071         * marshal.c:
7072         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7073
7074 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7075
7076         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7077         Rework the code to use regular mono_image_alloc/0.
7078
7079         * loader.c: Rework the code to use regular mono_image_alloc/0.
7080
7081         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7082
7083 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
7084
7085         * object-internals.h : Fixing a typo in the 
7086           MonoReflectionComVisibleAttribute struct.
7087
7088         * marshal.c (cominterop_com_visible): Check the implemented 
7089           interfaces for ComImport.
7090
7091         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
7092           assume that bools should be treated as VARIANTBOOLs.
7093
7094         * marshal.c (emit_marshal_boolean): Adding cases for 
7095           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7096
7097         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
7098           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7099
7100         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7101           should be treated as VARIANTBOOLs.    
7102
7103         Code is contributed under MIT/X11 license.
7104
7105 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7106
7107         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7108         allocation with the image lock.
7109
7110 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7111
7112         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7113         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7114
7115         * object.c: Add mono_string_to_utf8_image.
7116
7117         * object-internals.h: Export mono_string_to_utf8_image.
7118
7119         * reflection.c: Rework all explicit references to the the image mempool to go thought
7120         the mono_image_alloc set of functions.
7121
7122 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7123
7124         This patch is the third of a series to remove explicit reference of MonoImage::mempool
7125         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7126         and generics-sharing.c.
7127
7128         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7129         as first argument. Note that this function remains broken as it doesn't perform locking around the
7130         mempool allocation.
7131
7132         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7133
7134         * image.c: Add g_slist_append_image.
7135
7136         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7137         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7138
7139         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7140         Fix all related code to do the same.
7141
7142         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7143
7144         * metadata-internals.h: Fix the signatures.
7145
7146 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7147
7148         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7149         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7150         and similar to work using MonoImage.
7151
7152         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7153         MonoMemPool.
7154
7155         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7156
7157         * class.c (mono_metadata_signature_deep_dup): Same.
7158
7159         * class.c (inflate_generic_type): Same.
7160
7161         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7162
7163         * metadata.c (mono_metadata_signature_dup_full): Same.
7164
7165         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7166         mono_metadata_signature_dup_full.
7167
7168         * metadata.c (mono_metadata_type_dup): Same.
7169
7170         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7171
7172         * reflection.c: Same.
7173
7174         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7175
7176         * metadata-internals.h: Fix the signatures.
7177
7178         * class-internals.h: Same.
7179
7180 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7181
7182         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7183         and use mono_image_alloc set of functions instead. 
7184
7185         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7186         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7187         of a MonoMemPool.
7188
7189         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7190
7191         * class.c (g_list_prepend_mempool): Removed.
7192
7193         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7194
7195         * image.c: Add g_list_prepend_image.
7196
7197         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7198
7199         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7200
7201
7202 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7203
7204         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7205         mono_image_unlock.
7206
7207         * image.c (mono_image_init): Init the lock field.
7208  
7209         * image.c (mono_image_init): Cleanup the lock field.
7210
7211         * image.c: Add mono_image_(un)lock functions.
7212
7213 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7214
7215         * class.c, class-internals.h: mono_method_get_context_general()
7216         combines the functionality of mono_method_get_context() and
7217         mini_method_get_context().
7218
7219         * generic-sharing.c, domain-internals.h:
7220         mono_method_construct_object_context() and
7221         mono_domain_lookup_shared_generic() moved from mini.
7222
7223         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7224         method doesn't have the correct instantiation because it's shared
7225         generic code.  Fixes #473999.
7226
7227 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7228
7229         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7230
7231         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7232         
7233 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7234
7235         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7236
7237         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7238
7239         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7240         and recheck the cache for dups after it.
7241
7242         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7243
7244         Fixes one of the deadlocks found in #473150.
7245
7246 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7247
7248         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7249           For Win32, add additional break conditions for accept.
7250
7251         Code is contributed under MIT/X11 license.
7252
7253 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7254
7255         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7256         lazily initialize the native wrapper cache.
7257         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7258         cache, since they are different from the normal wrappers.
7259
7260         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7261
7262         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7263         AOT compiled native wrappers.
7264
7265 2009-02-09  Geoff Norton  <gnorton@novell.com>
7266
7267         * appdomain.h:
7268         * security-core-clr.c: Allow enabling core-clr from the embedding
7269         API.
7270
7271 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7272
7273         * socket-io.c: when requesting all the local ips, if there are no
7274         interfaces up and running, MS returns 127.0.0.1.
7275
7276 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7277
7278         * mono-perfcounters-def.h: processor time is an inverse time.
7279         Fixes bug #468625.
7280
7281 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7282
7283         * socket-io.c: an empty host name returns the list of local IPs.
7284         Fixes bug #386637 part 1/2.
7285
7286 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7287
7288         * verify.c (mono_class_interface_implements_interface): Call
7289         mono_class_setup_interfaces ().
7290         (merge_stacks): Ditto.
7291
7292 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7293
7294         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7295         klass->interfaces.
7296         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7297         (mono_generic_class_get_class): Ditto.
7298
7299 2009-02-06  U-QUACK\miguel  <miguel@quack>
7300
7301         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7302         they live in security.c
7303
7304         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7305         another bit from Paolo's code.
7306
7307 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7308
7309         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7310         methods which will be discarded by add_imt_builder_entry ().
7311
7312         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7313         need to be boxed.
7314
7315         * loader.c: Add a statistics for the size of the memberref signature cache.
7316         
7317         * loader.c (find_cached_memberref_sig): New helper function.
7318         (cache_memberref_sig): Ditto.
7319
7320         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7321         they will be parsed again for every generic instantiation, leading to unbounded
7322         memory growth.
7323
7324 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7325
7326         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7327         parameters of generic methods.
7328
7329         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7330         after the original method is copied to the inflated method.
7331         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7332
7333         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7334         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
7335
7336         * class.c metadata.c: Update after the changes above.
7337
7338 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7339
7340         * metadata-verify.c: Simplified error handling and added
7341         section table validation.
7342
7343 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7344
7345         * class-internals.h (MonoClassExt): New structure containing rarely used
7346         fields of MonoClass.
7347         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
7348         through a new 'ext' field.
7349
7350         * class.c (mono_class_alloc_ext): New helper function to allocate 
7351         class->ext.
7352
7353         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
7354
7355 2009-02-05  Mark Probst  <mark.probst@gmail.com>
7356
7357         * object.c (mono_object_get_virtual_method): Properly inflate
7358         generic methods.  Fixes #472692.
7359
7360 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7361
7362         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
7363         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
7364         for the parent type, the created type must be ready to be used on a generic
7365         instantiation.
7366         We fill this_arg/byval_arg if the parent is a generic instance to make sure
7367         we won't have duplicated entries in generic_inst_cache.
7368
7369         Fixes #469553.
7370
7371 2009-02-05  Miguel De Icaza  <miguel@novell.com>
7372
7373         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
7374         replace with plain BSD per the comments on the bug MONO77637.
7375
7376 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7377
7378         * class.c (mono_class_get_generic_class): New accessor function.
7379         (mono_class_get_generic_container): Ditto.
7380
7381         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
7382         fields, similar to the ones in MonoMethod.
7383
7384         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
7385         (mono_class_create_from_typedef): Set klass->is_generic if needed.
7386
7387         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
7388         
7389         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
7390         the same information as element_class->byval_arg.
7391
7392         * class.c reflection.c: Remove references to class->byval_arg.
7393
7394         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
7395         klass->enum_basetype directly.
7396
7397         * verify.c metadata.c object.c icall.c reflection.c: Use 
7398         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
7399         directly.
7400
7401 2009-02-04  Miguel de Icaza  <miguel@novell.com>
7402
7403         * icall-def.h: Remove internal calls for sockets when
7404         DISABLE_SOCKET is defined, file system writing features when the
7405         OS only support reading and not writing data and Policy support if
7406         the Policy is disabled.
7407         
7408         * image.c (do_mono_image_open): Apply Paolo's patches for using
7409         mono_file_map_ APIs here.
7410
7411         * assembly.c: Add support for platforms to avoid prefix
7412         auto-detection. 
7413
7414 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
7415
7416         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
7417         warning.
7418
7419         * class.c (mono_class_inflate_generic_class): New helper function.
7420
7421         * class.c: Use mono_class_inflate_generic_class in a few places. Add
7422         statistics for inflated methods/classes.
7423
7424         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
7425
7426         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
7427         the call is made from Delegate.CreateDelegate () for the invoke method of
7428         a delegate.
7429
7430         * loader.c: Add a statistics for the memory occupied by inflated signatures.
7431
7432         * metadata.c (mono_metadata_signature_size): New helper function.
7433
7434         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
7435         generic instances.
7436
7437         * metadata.c (inflated_method_in_image): Avoid calling 
7438         mono_method_signature () if the method does not already have a signature.
7439
7440 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7441
7442         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
7443         valuetype is compatible with target type, check by inheritance as a
7444         VT is not really compatible with System.ValueType, for example.
7445
7446         * verify.c (do_invoke_method): Improve error message.
7447
7448         * verify.c (do_box_value): If boxing a nullable, use the type argument
7449         on stack instead.
7450
7451         * verify.c (do_newobj): Improve error message.  
7452
7453         Fixes #469549.
7454
7455 2009-02-03  Miguel de Icaza  <miguel@novell.com>
7456
7457         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
7458
7459 2009-02-03  Mark Probst  <mark.probst@gmail.com>
7460
7461         * generic-sharing.c: Don't hold domain lock when calling
7462         instantiate_other_info().  Fixes #471958.
7463
7464         * domain-internals.h, loader.c: Describe locking policy of domain
7465         lock vs loader lock.
7466
7467 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7468
7469         * verify.c (mono_delegate_signature_equal): Make it possible to check
7470         first-arg-bound delegates to static method.
7471
7472         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
7473         static methods with the first arg bound.
7474
7475         Fixes #469529.
7476
7477 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7478
7479         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
7480         errors.
7481
7482         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
7483         under strict mode. Any type, when boxed can be seen as a reference type.
7484
7485         Fixes #469528.
7486
7487 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7488
7489         * object.h: The lower bound of an array is a signed integer value.
7490         Introduce mono_array_lower_bound_t typedef. It should be used instead of
7491         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
7492
7493         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
7494         calculate the upper bound.
7495         
7496         Fixes #471252.
7497
7498 2009-02-02  Miguel de Icaza  <miguel@novell.com>
7499
7500         From Paolo's work, refactored, cleared up:
7501         
7502         * threadpool.c, icall.c: ifdef code that requires a working socket
7503         stack.
7504
7505         * metadata.c (mono_metadata_field_info): Do not attempt to return
7506         a value from a function declared as void.
7507
7508         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
7509         from the console stack.
7510
7511         * assembly.c: use strrchr instead of rindex.
7512
7513         * class.c, object.c, marshal.c, icall.c, reflection.c: include
7514         alloca.h on systems that have it.
7515
7516         * environment.c: Avoid code that uses stuff from
7517         HAVE_SYS_UTSNAME_H
7518         
7519         * appdomain.c: Include sys/time.h.
7520
7521         * console-io.c: include sys/ioctl.h if it is available.
7522
7523 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
7524
7525         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
7526
7527         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
7528         the method builder.
7529
7530         * marshal.c: Set mb->skip_visibility instead of setting it on the method
7531         after it was created and cached, as the later is not thread safe.
7532         
7533 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7534
7535         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
7536         called while the debugging module is not initialized. Fixes #471669.
7537
7538 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
7539
7540         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
7541
7542         Fixes #471255.
7543
7544 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7545
7546         * generic-sharing.c (lookup_or_register_other_info): Make sure the
7547         loader lock is not taken while the templates lock is held.  Fixes
7548         #471089.
7549
7550 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7551
7552         * metadata.c (type_in_image): Added a check to fix a monodis
7553         crash.
7554
7555 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7556
7557         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
7558         nullable arguments.
7559
7560         * object.c (mono_runtime_invoke_array): Ditto.
7561         
7562         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
7563         freeing wrappers of dynamic methods.
7564
7565         * loader.c (mono_free_method): Call it. Fixes #463323.
7566         
7567         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
7568         methods taking vtype/byref arguments, to fix yet another bug caused by
7569         the sharing of runtime invoke wrappers. Partly fixes #471259.
7570
7571 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
7572
7573         * debug-mono-symfile.c (check_line): Return NULL instead of returning
7574         <first file in file table>:1 when the IL offset does not have an associated
7575         line number.
7576
7577 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
7578
7579         * mono-debug.c (mono_debug_lookup_locals): New function to return local
7580         variable info for a method.
7581
7582         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
7583         
7584 2009-01-30  Jb Evain  <jbevain@novell.com>
7585
7586         * pedump.c: reuse code from monodis to make sure pedump honors
7587         MONO_PATH, which is needed to verify net_2_1 assemblies.
7588
7589 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
7590
7591         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
7592         there is no line number info.
7593
7594 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
7595
7596         Avoid some MonoType allocations
7597         * reflection.c (mono_reflection_initialize_generic_parameter):
7598         Reuse MonoType from param->pklass rather than allocating one.
7599         (mono_dynamic_image_free): Update to changes.
7600
7601 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7602
7603         Rearrange some code to improve consistency
7604         * reflection.c (mono_reflection_setup_generic_class): Move body ...
7605         (mono_reflection_initialize_generic_parameter): ... here.
7606
7607 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
7608
7609         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
7610         with type constraints as an experiment.
7611
7612         * boehm-gc.c (on_gc_notification): Update mono_stats.
7613
7614 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7615
7616         Avoid some allocations
7617         * class-internals.h (_MonoGenericInst::type_argv): Convert from
7618         pointer to tail array to avoid extra allocation.
7619         * metadata.c (free_generic_inst): Update to changes.
7620         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
7621         on-stack struct.
7622
7623 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
7624
7625         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
7626         return TRUE if the two type objects are the same.
7627
7628 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7629
7630         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
7631         (mono_class_native_size): Use klass->marshal_info->min_align instead of
7632         klass->min_align, since klass->min_align contains the managed alignment,
7633         while the native alignment can be different, like for longs on x86.
7634         Fixes #469135.
7635
7636         * class-internals.h (MonoMarshalType): Add a min_align field.
7637
7638 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
7639
7640         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
7641         the 1.0 format.
7642
7643 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7644
7645         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
7646         some comments about the usage of the used_regs field.
7647
7648         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
7649         Fixes #469217.
7650
7651 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
7652
7653         * appdomain.c: return NULL instead of throwing FileNotFoundException
7654         when LoadAssembly() fails.
7655
7656 2009-01-23  Mark Probst  <mark.probst@gmail.com>
7657
7658         * metadata.c (mono_metadata_generic_param_equal): Only compare the
7659         image if the owner is NULL.  Fixes the AOT failures.
7660
7661 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
7662
7663         * metadata.c (mono_metadata_load_generic_params): Initialize the 
7664         MonoGenericParam structure using memset so the image field is initialized
7665         as well.
7666
7667 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7668
7669         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
7670         a plain store.
7671
7672 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
7673
7674         * class.c (mono_class_setup_vtable_general): In the generic instance
7675         optimization, set method->slot for abstract virtual methods. Fixes part of
7676         #467834.
7677
7678 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7679
7680         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
7681         which signals that the unloading has started but all appdomain services must
7682         remain operational.
7683
7684         * appdomain.c (mono_domain_unload): The initial state for unloading now
7685         is unloading_start and we switch to unloading after the managed call to
7686         AppDomain::DomainUnload has finished.
7687
7688         The new unloading state has to be created because managed code in the
7689         DomainUnload event can depend on things like the threadpool still working.
7690         The domain must remain fully functional while the event executes.
7691
7692         This shown as an issue due to Process::WaitForExit, which waits for
7693         async reads of stdout and stderr to complete. Since those are processed
7694         in the threadpool the code deadlocks because the DomainUnload callback 
7695         waits for the async read finished event, which should have been set by a
7696         threadpool job but has been discarded due to the domain been in unload
7697         state.
7698
7699 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7700
7701         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
7702         image must match.
7703
7704 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7705
7706         * reflection.c (resolve_object): For fields, inflate the class and
7707         then get the field in the inflated class.
7708
7709 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7710
7711         * object-internals.h (struct _MonoException): Added a comment
7712         explaining the new use of trace_ips.
7713
7714 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7715
7716         * generic-sharing.c (inflate_other_data): Inflate array methods
7717         correctly.
7718
7719         * loader.c, class-internals.h: Rename search_in_array_class() to
7720         mono_method_search_in_array_class() and make it non-static.
7721
7722 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7723
7724         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
7725         Hopefully fixes #458168.
7726
7727 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7728
7729         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
7730         as it is performed elsewhere.
7731
7732         Code is contributed under MIT/X11 license
7733
7734 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7735
7736         * mono-perfcounters-def.h: Add counters for asp.net requests total and
7737         requests queued.
7738         * object.c (mono_raise_exception): Increment the exceptions total
7739         counter when an exception is thrown.
7740         * class-internals.h: Add a location for storing the total number of
7741         asp.net requests served.
7742         * mono-perfcounters.c: Implement update support for asp.net counters
7743         from the class libraries. Implement read support for asp.net counters
7744         and exceptions total counter.
7745
7746 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7747
7748         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
7749         accessing klass->methods. Fixes #467385.
7750
7751 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7752
7753         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
7754         for byval arguments without an [Out] attribute. Fixes #467212.
7755
7756         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
7757         Fix compilation under android.
7758         
7759         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
7760         processed, scan them directly after they are copied, to achieve better locality
7761         and cache usage.
7762
7763         * socket-io.c: Applied patch from Koushik Dutta
7764         (koush@koushikdutta.com). Disable IPV6 when running under android.
7765
7766 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7767
7768         * icall.c (ves_icall_InternalExecute): Add write barriers.
7769
7770         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
7771         the GC code.
7772
7773         * sgen-gc.c: Implement write barriers in IL code.
7774
7775 2009-01-17  Geoff Norton  <gnorton@novell.com>
7776
7777         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
7778
7779 2009-01-17  Geoff Norton  <gnorton@novell.com>
7780
7781         * image.c: When unloading the image->references table, there can be gaps
7782         in it.  Ensure that we iterate every entry to avoid leaking assembly references
7783         when unloading an appdomain.
7784
7785 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
7786
7787         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
7788         speed up ptr-in-nursery checks.
7789
7790         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
7791         threads_lock () to prevent deadlocks.
7792
7793         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
7794         does not need to be scanned during minor collections, since writes to it
7795         must use write barriers.
7796
7797 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
7798
7799         * metadata-verify.c: Add pe nt header verification.
7800         
7801 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7802
7803         * gc.c: Fix a few warnings when using SGEN.
7804
7805 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
7806
7807         * metadata-verify.c: Add pe optional header verification.
7808
7809 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7810
7811         * sgen-gc.c: Add support for user defined marker functions, used by
7812         MonoGHashTable to avoid registering a GC root for every hash node.
7813
7814 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7815
7816         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
7817         non-pinned roots into separate hashes to avoid having to traverse them
7818         in functions which are only interested in one kind.
7819
7820 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
7821
7822         * metadata-verify.c: Add pe header machine field verification.
7823         
7824 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
7825
7826         * metadata-verify.c: Add pe header size verification.
7827
7828 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7829
7830         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
7831         using the GC, they don't contain references.
7832
7833         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
7834
7835 2009-01-13  Geoff Norton  <gnorton@novell.com>
7836
7837         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
7838         AppDomains created on the native side can be cleaned up on the native side.
7839
7840 2009-01-13  Geoff Norton  <gnorton@novell.com>
7841
7842         * appdomain.c: Ensure that we call mono_context_init for the embedding api
7843         as well as the managed api.
7844
7845 2009-01-13  Geoff Norton  <gnorton@novell.com>
7846
7847         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
7848         with a MonoAppDomain initialized against it.
7849
7850 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7851
7852         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
7853         
7854         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
7855
7856         * marshal.c: Avoid setting the exception clauses after a method has been entered 
7857         into the wrapper caches. Fixes #465700.
7858
7859         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
7860         method builder.
7861         (mono_mb_create_method): Set the clauses from the method builder.
7862
7863 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
7864
7865         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
7866         Patch from Makoto Kishimoto.
7867
7868 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7869
7870         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
7871         encoding them as ROOT_DESC_COMPLEX.
7872         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
7873
7874 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
7875
7876         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
7877         no longer point to the nursery.
7878
7879         * sgen-gc.c: Add a few comments/FIXMEs.
7880         
7881         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
7882
7883         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
7884         initialization of the various _method variables thread safe. Fixes
7885         #465377.
7886
7887 2009-01-12  Mark Probst  <mark.probst@gmail.com>
7888
7889         * domain.c, domain-internals.h: Remove the shared_generics_hash
7890         and its lookup functions.
7891
7892 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
7893
7894         * socket-io.c:  Fixing the MSVC build. 
7895
7896         Code is contributed under MIT/X11 license.
7897
7898 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
7899
7900         * metadata-verify.c: Add pe header watermark verification.
7901
7902 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7903
7904         * metadata-verify.c: Add lfanew verification.
7905
7906 2009-01-12  Jb Evain  <jbevain@novell.com>
7907
7908         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
7909         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
7910
7911 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
7912
7913         * socket-io.c: Fix the build.
7914
7915         * environment.c: Fix an #ifdef.
7916
7917 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7918
7919         * threadpool.c (async_invoke_thread): Handle the wait function returning
7920         WAIT_IO_COMPLETION as well.
7921         (async_invoke_io_thread): Ditto.
7922
7923 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
7924
7925         * threads.c: Fixing the Windows build.
7926
7927         Code is contributed under MIT/X11 license.
7928
7929 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7930  
7931         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
7932         interrupt a wait.
7933         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
7934         the thread to wait again.
7935
7936 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7937
7938         * metadata-verify.c: Initial skeleton of the metadata verifier.
7939
7940         * pedump.c: Add support for the metadata verifier.
7941
7942         * verify-internal.h: Export the whole assembly metadata verifier function.
7943
7944 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7945
7946         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
7947
7948 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7949
7950         * Makefile.am: Upgrade dtrace-prelink.sh location.
7951
7952 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
7953
7954         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
7955         well. Otherwise the shutdown deadlock that happens on unix will can happen
7956         as well.
7957         If the main thread code finishes too fast it's possible that the finalizer
7958         thread won't have executed yet, won't record itself as the finalizer thread
7959         and the shutdown sequence will wait on it forever.
7960
7961 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
7962
7963         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
7964         with MSVC.
7965
7966 2009-01-08  Miguel de Icaza  <miguel@novell.com>
7967
7968         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
7969         Robert Jordan for pointing this out.
7970
7971 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
7972
7973         * icall.c
7974         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
7975         ves_icall_System_IO_DriveInfo_GetDriveType.
7976
7977 2009-01-07  Miguel de Icaza  <miguel@novell.com>
7978
7979         * icall.c: Wrap calls to mono_strtod in CriticalSection
7980         invocations when using eglib, to work around #464316.
7981
7982 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
7983
7984         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
7985         return value of GetCurrentDirectory to never access unitialized memory.
7986
7987 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
7988
7989         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
7990         return value of GetCurrentDirectory and expand the buffer if needed.
7991
7992         Fixes #459094.
7993
7994 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
7995
7996         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
7997           Adding a call to mono_init_com_types.
7998
7999         Code is contributed under MIT/X11 license.
8000
8001 2009-01-07  Geoff Norton  <gnorton@novell.com>
8002
8003         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
8004         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
8005         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
8006         be the value of the ip buffer.
8007
8008 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8009
8010         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
8011         interfaces_packed here.
8012
8013         Fixes part of #463294.
8014
8015 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8016
8017         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
8018
8019         Fixes part of #463294.
8020
8021 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8022
8023         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
8024         is a boxed complex as well.
8025
8026         Fixes part of #463294.
8027
8028 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8029
8030         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
8031         control if a methodspec should be created for the generic method definition from external assemblies.
8032         Caching of methodspec is done using the handleref hash table.
8033
8034         Fixes #462592.
8035
8036 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
8037
8038         * loader.c (find_method): When searching the interfaces of a class
8039         check the transitive closure of implemented interfaces.
8040
8041         Fixes #463303.
8042
8043 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8044
8045         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
8046         
8047 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8048
8049         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
8050         interfaces calculation to fill_valuetype_array_derived_types.
8051
8052         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
8053         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
8054         for example.
8055
8056         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
8057         interfaces for valuetypes if needed.    
8058
8059         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8060         for their basetype as well. Types are array expanded if rank is > 0.
8061
8062         Fixes #400716.
8063
8064 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
8065
8066         * socket-io.h : Changing the signature of
8067           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8068           the blocking state.
8069
8070         * icall-def.h :  Changing the signature of
8071           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8072
8073         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8074           For Windows only.  Avoid blocking when calling accept by
8075           querying for a connection via select.  The loop also queries
8076           the thread state every 1000 micro seconds for the thread
8077           stop state.  This will avoid the process hanging on shutdown
8078           when using a TcpChannel that is never connected to.
8079
8080         Code is contributed under MIT/X11 license.
8081
8082 2008-12-30  Marek Safar  <marek.safar@gmail.com>
8083
8084         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8085
8086 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8087
8088         * class.c (get_implicit_generic_array_interfaces): Extract common
8089         code to a helper function making it a lot easier on the eyes.
8090
8091 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8092
8093         * class.c (get_implicit_generic_array_interfaces): If the internal
8094         enumerator is an interface inflate System.Object instead of itself.
8095
8096         Fixes #461261.
8097
8098 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
8099
8100         * object.c (mono_runtime_invoke_array): Don't assert with
8101         byref nullable types.
8102
8103         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8104         byref nullables we unbox the object and store it on the
8105         stack. 
8106         We can't use the boxed object since it is the T of Nullable<T>
8107         and the boxed representation of a nullable it's underlying type
8108         or null.
8109         We could cheat and create a boxed nullable and use the same
8110         machinery of other byref VTs but this feels like a hack and
8111         using the stack has the bonus of reducing heap pressure.
8112
8113         Fixes #461941.
8114
8115 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8116
8117         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8118         return value.
8119
8120         Fixes #461867.
8121
8122 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8123
8124         * icall-def.h : Adding an internal call definition for 
8125           System.Environment.internalBroadcastSettingChange.
8126
8127         * icall.c : Adding a Windows only implementation to broadcast a 
8128           WM_SETTINGCHANGE when an environment variable has changed.
8129
8130         Code is contributed under MIT/X11 license.
8131
8132 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8133
8134         * class.c, class-internals.h: Made
8135         mono_class_has_parent_and_ignore_generics() non-static.
8136
8137 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8138
8139         * image.c: deal with the mmap failing when loading an image.
8140
8141 2008-12-17  Geoff Norton  <gnorton@novell.com>
8142
8143         * threadpool.c: Ensure that the io_queue_lock is initialized
8144         in all circumstances, as we always attempt to cleanup against it.
8145
8146 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8147
8148         * icall.c (ves_icall_System_Environment_get_Platform): For
8149         compatibility reasons for existing client code we will keep
8150         returning 4 for a while.   
8151
8152         For how long will depend on the documentation being updated, and
8153         for us to give client code a chance to be updated.
8154
8155         This reverts the original decison on #433108 since we did not
8156         catch roughly 33 instances of the broken code in our own source
8157         code base, we did not catch failures on the buildbots, and QA did
8158         not bring this as a problem.
8159
8160         Only today I found some customer's code breaking due to our own
8161         class libraries not being fully updated and tracked it down to
8162         this change.  I am reverting it because if we could not even get
8163         our story straight in our own code base, how can we hope that our
8164         end user code be fixed?
8165
8166         As of this morning, our Wiki page that documents how to detect
8167         Unix had not been fixed.    
8168
8169 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8170
8171         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8172
8173         * class.c (mono_class_get_fields): Handle loading errors.
8174
8175 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8176
8177         * 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.
8178         
8179 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8180
8181         * mono-perfcounters.c: avoid warning.
8182
8183 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8184
8185         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8186         make sure all interfaces have MonoClass::interface_id set.
8187
8188         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8189         method table is property set.
8190
8191 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8192
8193         * class.c: New function mono_class_setup_interface_id that setup
8194         MonoClass::interface_id if needed.
8195
8196         * class-internals.h: Export new function.
8197
8198 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8199
8200         * class.c: Add code to sanity check the vtable after setup_vtable_general
8201         has done it's work.
8202
8203 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8204
8205         * icall.c: make Assembly.GetExecutingAssembly work properly when
8206         reflection is used to invoke the method.
8207         Bug #321781 fixed.
8208
8209 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8210
8211         * metadata/generic-sharing.c: Look for constraints in all type
8212         arguments, not just the first one.
8213
8214 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8215
8216         * appdomain.c: return the correct CodeBase for an Assembly instance
8217         that was loaded from the shadow-copy directories.
8218         Bug #458190 fixed.
8219
8220 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8221
8222         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8223
8224         * sgen-gc.c (check_object): New debugging helper function.
8225
8226         * object.c: Fix calls to mono_value_copy_array ().
8227
8228 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8229
8230         * class.c (mono_class_setup_fields): If working on an inflated class
8231         first check if the generic definition did init with success.
8232
8233         Fixes #445361.
8234
8235 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8236
8237         pedump.c (main): Fix a warning.
8238
8239 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8240
8241         * object-internals.h : Adding a definition for 
8242           MonoReflectionComVisibleAttribute.
8243
8244         * marshal.c (cominterop_com_visible) :  Method added to check the 
8245           ComVisible attribute of a class.
8246
8247         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8248           cominterop_raise_hr_exception added to consolidate common code 
8249           to raise hr exceptions.
8250
8251         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8252           if a managed class should support IDispatch.
8253
8254         * marshal.c 
8255           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8256           Added additional checks for managed object when getting 
8257           an IDispatch interface.
8258
8259         Code is contributed under MIT/X11 license.
8260
8261 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8262
8263         pedump.c (main): Handle mono_get_method () returning NULL. 
8264
8265 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8266
8267         * marshal.h: Fix a warning.
8268
8269 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8270
8271         * marshal.c : Adding cominterop_release_all_rcws to release all
8272           runtime callable wrappers held by the runtime.
8273
8274         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8275           
8276         Code is contributed under MIT/X11 license.
8277
8278 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8279
8280         * metadata.c (mono_image_alloc_lock): New helper function.
8281         (mono_image_alloc0_lock): Ditto.
8282
8283         * metadata.c: Use the alloc_lock () helper functions for allocating
8284         memory from the image mempool.
8285
8286 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8287
8288         * class.c (mono_class_from_generic_parameter): Document it's
8289         locking behavior. Fix double checked locking here, we stored in
8290         param->pklass a partially initialized MonoClass and no membar was used.
8291
8292 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8293
8294         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8295         (3) functions are present in the C library use them to do the
8296         job. If they are absent, make sure that the sum of int_part and
8297         dec_part is rounded before returning. This is necessary due to the
8298         division of dec_part by the power of 10 before the final addition
8299         is performed - if the result is not rounded in some cases it will
8300         yield invalid results.
8301
8302 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8303
8304         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8305         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8306         instruction instead of a pointer constant.
8307
8308 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8309
8310         * loader.c (mono_method_get_header): Do most of the work outside the
8311         loader lock, to avoid assembly load hook deadlocks.
8312
8313         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8314         (mono_metadata_parse_type_full): Ditto.
8315
8316 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8317
8318         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8319         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8320         funtions. Finally, use a lock to produce well ordered output.
8321
8322         The lock looks silly, as all calls to the corlib mempool should be guarded
8323         with the loader lock, but for some reason this fact doesn't help. 
8324
8325         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8326
8327 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8328
8329         * socket-io.c: 64 bit big-endian fixes.
8330
8331 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
8332
8333         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8334         targets that require strict compatibility between the types.
8335
8336         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
8337         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
8338         Kill the strict argument and create a new one valuetype_must_be_boxed.
8339
8340         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
8341         state that all valuetypes must be boxed.
8342
8343         Fixes #448560.
8344
8345 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
8346
8347         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
8348         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
8349
8350         Contributed under MIT/X11 license.
8351
8352 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
8353
8354         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
8355         the inflate_generic_type machinery should handle it.
8356
8357         This avoids a crash when the field's flags is zero and it's type is
8358         a primitive.
8359         What happens is that mono_metadata_parse_type_full will see that opt_attrs
8360         is zero and will return one of the cached built-in primitive types. Since
8361         those types live in read-only memory, the code that copies it crashes.  
8362
8363 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8364
8365         * object.c: Don't put function descriptors into generalized IMT
8366         thunks.
8367
8368 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8369
8370         * class.c: Enable generic code sharing on PPC64.
8371
8372 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8373
8374         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
8375         from mini/mini.c.
8376
8377         * generic-sharing.c: Allocate the method template slists from the
8378         image mempool so it doesn't leak.
8379
8380 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
8381
8382         * class.c (generic_array_methods): Release the linked list.
8383
8384 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8385
8386         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
8387         invocation to g_utf16_to_utf8().
8388
8389 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8390
8391         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
8392         arguments on big endian archs.
8393
8394 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8395
8396         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
8397         the type name (test added in corlib).
8398
8399 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8400
8401         * pedump.c: initialize perf. counters. Fixes a segv.
8402
8403 2008-11-25  Martin Baulig  <martin@ximian.com>
8404
8405         * mono-debug-debugger.c
8406         (mono_debugger_runtime_invoke): Return the exception object if an
8407         exception was thrown.  Visual Studio displays the exception object
8408         in the locals window.
8409
8410 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8411
8412         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
8413         ftnptr.
8414
8415 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8416
8417         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
8418         MONO_TYPE_U are sizeof (gpointer), too.
8419
8420 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8421
8422         * marshal.c (mono_type_native_stack_size): Fixed size and
8423         alignment for reference types.
8424
8425 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8426
8427         * class.c (mono_class_generic_sharing_enabled): Disable generic
8428         code sharing for PPC64.
8429
8430 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
8431
8432         * icall.c (mono_method_get_equivalent_method): Make sure
8433         method->klass->methods is inited before looping over it.
8434
8435 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8436
8437         * object.c: when calling ExecuteAssembly in a newly created domain,
8438         the configuration file and application base are already set up.
8439         Bug #446353 take 2 fixed.
8440
8441 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
8442
8443         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
8444         Fixes #444715. Fix a warning.
8445
8446 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
8447
8448         * appdomain.c: write the full path of the assembly to the .ini file
8449         created when "shadow-copying"
8450         Bug #446353 fixed.
8451
8452 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8453
8454         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
8455         if signature==FALSE.
8456
8457 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8458
8459         * marshal.h : Fix the cygwin build.
8460            marshal.c:12442: undefined reference to `_IID_IMarshal'
8461           
8462         Code is contributed under MIT/X11 license.
8463
8464 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8465
8466         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
8467           free threaded marshaler when QueryInterface is called on a COM callable
8468           wrapper requesting the IMarshal interface.
8469           
8470         Code is contributed under MIT/X11 license.
8471
8472 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8473
8474         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
8475
8476         * reflection.c (mono_type_get_object): Special case the very common
8477         void type.
8478
8479         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
8480         hold typeof(void).
8481
8482 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
8483
8484         * process.h : Adding method declaration for
8485           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8486           
8487         * process.c : Adding implementation for
8488           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8489           
8490         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
8491           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8492
8493         Code is contributed under MIT/X11 license.
8494
8495 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
8496
8497         * appdomain.c (unload_thread_main): Clean up threadpool by
8498         calling mono_thread_pool_remove_domain_jobs.
8499
8500         * domain-internals.h (struct _MonoDomain): Add new fields to
8501         help coordinate the cleanup of the threadpool.
8502
8503         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
8504         that cleans up the threadpool of all jobs associated with an appdomain.
8505         It does that by cleaning up the queues and making sure all active
8506         threads are accounted.
8507
8508         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
8509         unloaded or in the process of. Take this is such way that there is
8510         no race condition between another thread starting the unload and the
8511         current thread acknowledging it.
8512
8513         * threadpool.c (async_invoke_thread): Same.
8514
8515         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
8516         firing the new thread.
8517
8518         * threadpool.c (start_tpthread): Same.
8519
8520         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
8521
8522         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
8523
8524 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
8525
8526         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8527         Add support for DuplicateHandle.
8528         
8529         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8530         Add support for DuplicateHandle.
8531         
8532         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8533         Add support for DuplicateHandle.
8534
8535         Code is contributed under MIT/X11 license.
8536
8537 2008-11-06  Mark Probst  <mark.probst@gmail.com>
8538
8539         * class-internals.h: Make min_align into a whole byte.
8540
8541         * class.c: Set min_align for SIMD types to 16.
8542
8543 2008-11-05  Geoff Norton  <gnorton@novell.com>
8544
8545         * attach.c: Default the attacher to enabled for all cases including
8546         embedded.
8547
8548 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8549
8550         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
8551         change r117650.
8552
8553 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8554
8555         * monitor.c, monitor.h: New function for querying offsets of
8556         members of MonoThreadsSync.
8557
8558 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8559
8560         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
8561         to speed up this function and to avoid the boundless memory growth caused by
8562         the signature_dup () calls.
8563
8564 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
8565
8566         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
8567         wrapper.
8568
8569         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
8570         by 1 bit.
8571
8572         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
8573
8574 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8575
8576         * appdomain.c:
8577         * domain-internals.h: made mono_set_private_bin_path_from_config()
8578         "internal".
8579         * object.c: call the above function after setting the configuration
8580         file path for the root domain.
8581         Fixes bug #314478.
8582
8583 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8584
8585         * assembly.c: when the assembly is loaded from an absolute path, end
8586         basedir with a directory separator.
8587         Bug #440781 fixed.
8588
8589 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8590
8591         * monitor.c (mono_monitor_get_fast_enter_method): If
8592         CompareExchange is not available, don't create the fastpath
8593         instead of asserting.  (The method is missing in the 1.1 profile.)
8594
8595 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8596
8597         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
8598
8599         * monitor.c, monitor.h: Code for generating Monitor.Enter and
8600         Monitor.Exit IL fastpaths.
8601
8602 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8603
8604         * class.c (mono_class_create_from_typedef): Added Vector2ul.
8605
8606 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8607
8608         * class.c (mono_class_create_from_typedef): Added Vector2l.
8609
8610 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8611
8612         * class.c (mono_class_create_from_typedef): Added Vector2d.
8613
8614 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
8615
8616         * appdomain.c: translate \ into / for cache_path.
8617         * domain-internals.h: new mono_is_shadow_copy_enabled().
8618         * icall.c: (fill_reflection_assembly_name) do the same path
8619         manipulations that get_code_base does.
8620         (get_code_base) use mono_is_shadow_copy_enabled.
8621
8622 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
8623
8624         * appdomain.c: shadow-copied assemblies go to CachePath +
8625         ApplicationName when both are set. DynamicBase has nothing to do with
8626         shadow copies.
8627         Bug #406877 fixed.
8628
8629 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
8630
8631         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
8632         STANDALONESIG table.
8633
8634         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
8635         standalone signatures.
8636
8637         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
8638         comparison code: instead of comparing the signatures using a custom
8639         equals function, transform them to a common signature and compare that. This
8640         works better with AOT.
8641
8642 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
8643
8644         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
8645
8646         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
8647         call for generic instances.
8648         (mono_class_setup_properties): Call setup_properties () before accessing
8649         gklass->properties.
8650
8651         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8652         over the virtual methods of a class using metadata if possible, avoiding the
8653         creation of MonoMethod's for non-virtual methods.
8654         
8655         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8656         get_virtual_methods () to iterate over the virtual methods of classes.
8657
8658 2008-10-25  Martin Baulig  <martin@ximian.com>
8659
8660         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
8661
8662 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8663
8664         * class.c (mono_class_create_from_typedef): Added Vector4i.
8665
8666 2008-10-24  Mark Probst  <mark.probst@gmail.com>
8667
8668         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
8669         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
8670         special-casing applies to eliminate the call completely.
8671
8672 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8673
8674         * class.c (mono_class_create_from_typedef): Added Vector8s.
8675
8676 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8677
8678         * class.c (mono_class_create_from_typedef): Added Vector16sb.
8679
8680 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8681
8682         * icall.c: get rid of annoying warning.
8683
8684 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8685
8686         * threadpool.c: in 1.x, if you change the background status of the
8687         threadpool thread, it's not reset.
8688         Remove unnecessary calls to SetState.
8689
8690 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8691
8692         * threadpool.c: asynchronously create a set of idle threads upon first
8693         use of the threadpool. SetMinThreads will now start the appropriate
8694         number of idle threads if they are not already running. The default is
8695         1 threadpool thread per CPU. Increased the maximum number of threads
8696         per CPU to 10.
8697
8698 2008-10-22  Martin Baulig  <martin@ximian.com>
8699
8700         Revert r116521 from Zoltan, it breaks the debugger:
8701
8702         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8703         over the virtual methods of a class using metadata if possible, avoiding the
8704         creation of MonoMethod's for non-virtual methods.
8705         
8706         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8707         get_virtual_methods () to iterate over the virtual methods of classes.
8708
8709 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8710
8711         * threads.c: when creating a threadpool thread, set its state to
8712         'background'.
8713         * threadpool.c: reset the background state of a threadpool thread
8714         after finishing each work item
8715         Bug #437888 fixed.
8716
8717 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8718
8719         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
8720         
8721         * class.c (mono_class_setup_vtable_general): Add an optimized version for
8722         generic instances which works by inflating the methods in the container
8723         class's vtable.
8724
8725         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
8726         variant which doesn't make a copy if no inflation was done.
8727         (mono_class_setup_fields): Use it.
8728
8729         * metadata.c (mono_metadata_get_shared_type): New helper function to
8730         return a shared instance of a given MonoType.
8731
8732         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
8733         a copy of most non-generic types.
8734
8735 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
8736
8737         * threadpool.c: remove one more GetSystemInfo () call.
8738
8739 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
8740
8741         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
8742         use the code in mono-proclib.h to get processor information.
8743
8744 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8745
8746         * appdomain.c: fixed the logic that determines whether assemblies in a
8747         directory are "shadow-copied" or not. Bug #433483 fixed.
8748
8749 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8750
8751         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
8752         warning.
8753
8754 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8755
8756         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
8757         returning a vtype.
8758
8759         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
8760         reflection.c: Use mono_field_get_name () for accessing a field's name.
8761
8762         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
8763         class.c
8764
8765         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
8766         field.
8767
8768         * loader.c (find_method_in_class): Reenable the metadata optimization by
8769         not using it for generic instances.
8770
8771         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
8772         data/def_type fields from MonoClassField into a separate structure.
8773         (struct MonoClassField): Remove data/def_type fields.
8774         (struct _MonoClass): Add a 'field_def_values' array to store the default
8775         values/RVA for fields.
8776
8777         * class.c reflection.c: Update after the changes.
8778         
8779         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
8780         for accessing field->data.
8781
8782         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
8783
8784         * loader.c (find_method_in_class): Revert the last change for now as
8785         it breaks Mono.C5 unit tests.
8786
8787         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
8788         'field_generic_types' and 'field_objects' which contain the information
8789         previously stored in MonoInflatedField.
8790         (MonoInflatedField): Delete.
8791         (struct _MonoClassField): Delete 'generic_info' field.
8792
8793         * reflection.c: Store the information which was previously in 
8794         field->generic_info in MonoDynamicGenericClass instead.
8795
8796         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
8797         MonoClassField changes.
8798
8799 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
8800
8801         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
8802         store the value inside the data array of the MonoMethodWrapper.
8803         This saves memory, is faster and fixes the lifetime issues (methods
8804         were never removed from the hash previously). May also fix bug#436996.
8805
8806 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8807
8808         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
8809         generic instances, compute the type from the generic definition instead of
8810         looking in field->generic_info.
8811
8812         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
8813         for inflated fields, the only user was get_fieldref_token () which no
8814         longer needs it.
8815
8816         * class.c (mono_class_init): Revert the last change as it seems to cause
8817         crashes.
8818
8819         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
8820         bytes on 64 bit platforms.
8821
8822         * object.c (mono_class_create_runtime_vtable): Fix a warning.
8823         
8824         * object.c (mono_class_create_runtime_vtable): Don't initalize
8825         field->data/field->def_type here, it is done lazily by 
8826         mono_class_get_field_default_value ().
8827
8828         * icall.c (ves_icall_get_enum_info): Call 
8829         mono_class_get_field_default_value () instead of directly accessing
8830         field->data and field->def_type.
8831
8832         * object.c (get_default_field_value): Ditto.
8833
8834         * class.c (mono_field_get_data): Ditto.
8835         
8836         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
8837         call for generic instances.
8838
8839         * loader.c (find_method_in_class): If klass != from_class, then inflate
8840         the method with the context of from_class, since the caller assumes this.
8841
8842 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
8843
8844         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
8845         for accessing method->slot.
8846
8847 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
8848
8849         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
8850
8851 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
8852
8853         * class.c (mono_method_get_vtable_index): Use
8854         mono_method_get_vtable_slot () for accessing method->slot.
8855
8856         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
8857         accessing klass->methods.
8858
8859         * class.c (mono_method_get_vtable_slot): New helper function.
8860         (mono_class_get_vtable_entry): Ditto.
8861         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
8862         accessing method->slot.
8863
8864         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
8865         method to get_inflated_method ().
8866
8867         * class.c (mono_class_get_inflated_method): New helper method to obtain
8868         a method of an inflated class without calling setup_methods ().
8869         (mono_class_get_cctor): Use get_inflated_method.
8870
8871         * generic-sharing.c (mono_class_get_method_generic): Ditto.
8872         
8873         * marshal.c image.c: Lazily create all the marshal caches.
8874
8875         * image.c (mono_image_init): Move initialization of runtime_invoke
8876         caches to marshal.c.
8877
8878         * marshal.c (get_cache): New helper function to lazily initialize a 
8879         wrapper cache.
8880         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
8881
8882         * debug-helpers.c (mono_method_full_name): Include generic arguments.
8883
8884 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
8885
8886         * loader.c: fixed check for interface type.
8887
8888 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
8889
8890         * appdomain.c: check for NULL setup before it's referenced.
8891
8892 p
8893 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
8894
8895         * class.c: remove the unused old vtable setup code.
8896
8897 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
8898
8899         * class.c: don't depend on interface order in
8900         setup_interface_offsets (bug #435777).
8901         * reflection.c: sort the InterfaceImpl table (patch from
8902         Jb Evain  <jbevain@novell.com>).
8903
8904 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
8905
8906         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
8907         the low level assemblies lock.
8908
8909 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
8910
8911         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
8912         object.c, reflection.c, socket-io.c, threads.c: introduced
8913         mono_framework_version () to return the major framewrok version,
8914         changed the code that was using more complex patterns to use it.
8915         Return the correct value for PlatformID for OSX.
8916
8917 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
8918
8919         * icall-def.h, process.h, process.c: added an icall to get info about
8920         processes using mono-proclib.
8921
8922 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
8923
8924         * mono-perfcounters.c: use the mono-proclib functions to
8925         access process information.
8926
8927 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
8928
8929         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
8930         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
8931         reflection.c: remove rawbuffer usage: mmap support is more sanely
8932         provided by utils/mono-mmap.
8933
8934 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
8935
8936         * gc.c: use posix semaphores when possible so that
8937         mono_gc_finalize_notify() is signal safe.
8938
8939 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
8940
8941         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
8942         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
8943         be #ifdef-ed out, the linker will remove the rest.
8944
8945         * marshal.c: Implement DISABLE_COM.
8946
8947         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
8948
8949 2008-10-11  Miguel de Icaza  <miguel@novell.com>
8950
8951         * locales.c (string_invariant_compare_char): Optimization: do not
8952         call g_unichar_type unless we actually need the information.
8953
8954 2008-10-10  Mark Probst  <mark.probst@gmail.com>
8955
8956         * object.c, class-internals.h: Also create remoting trampolines
8957         for generic methods.  Pass the domain to the remoting trampoline
8958         creation function, too.
8959
8960 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
8961
8962         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
8963
8964 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8965
8966         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
8967         Vector4ui.
8968
8969 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8970
8971         * assembly.c:
8972         * locales.c: remove the use of g_strdown. Fixes bug #322313.
8973
8974 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
8975
8976         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
8977         for the least possible amount of time (extending the fix in r113458).
8978
8979 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8980
8981         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
8982
8983 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8984
8985         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
8986         as possible simd intrinsic types.
8987         Optimized the test to check for the common prefix first.
8988
8989 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
8990
8991         * class.c: back out part of a broken optimization committed on
8992         May 23th (bug #433908).
8993
8994 2008-10-09  Mark Probst  <mark.probst@gmail.com>
8995
8996         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
8997         Win32.  Should fix #432388 for most cases until we have the new
8998         profiler on Win32.
8999
9000 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9001
9002         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
9003         instead of using inst->id so the hash is stable for AOT.
9004
9005 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
9006
9007         * appdomain.c:
9008         * icall.c: create a .ini file for shadow-copied assemblies that
9009         contains the location of the original assembly. Use this to return the
9010         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
9011         Also fix the number of '/' for windows when returning the CodeBase.
9012         Fixes bug #430920.
9013
9014 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9015
9016         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
9017
9018         Code is contributed under MIT/X11 license.
9019
9020 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9021
9022         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
9023           if if the class vtable needs initialized.
9024
9025         Code is contributed under MIT/X11 license.
9026
9027 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9028
9029         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
9030           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
9031           STRING->BSTR, and CLASS->INTERFACE.
9032
9033         Code is contributed under MIT/X11 license.
9034
9035 2008-10-07  Marek Habersack  <mhabersack@novell.com>
9036
9037         * sysmath.h: changed the declaration of the
9038         ves_icall_System_Math_Round2 icall by adding an extra
9039         away_from_zero parameter.
9040
9041         * sysmath.c (ves_icall_System_Math_Round2): added support for
9042         away from zero rounding. The icall now takes an extra boolean
9043         parameter to signal that away from zero operation is requested.
9044
9045 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9046
9047         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
9048         the delegate klass so it can work with full-aot.
9049         (mono_marshal_get_delegate_end_invoke): Ditto.
9050         (mono_marshal_get_delegate_invoke): Ditto.
9051
9052 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
9053
9054         * gc.c, attach.h, attach.c: remove a bad pattern:
9055         add_finalizer_callback () is not implemented correctly, it can't
9056         without adding more overhead to the finalizer loop and it's not
9057         even needed, since we know exactly what we need to call, so there is
9058         no need to do so through an expensive function pointer.
9059
9060 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
9061
9062         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9063         for the no-gc case.
9064         * attach.c (mono_attach_init): Remove the #ifdef.
9065
9066 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
9067
9068         * attach.c (mono_attach_init): Don't use
9069         mono_gc_add_finalizer_thread_callback when compiling without GC.
9070         Fixes #432306.
9071         
9072         Code is contributed under MIT/X11 license.
9073
9074 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9075
9076         * class.c (mono_class_create_from_typedef): Remove the 
9077         #ifndef DISABLE_SIMD stuff.
9078
9079 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9080
9081         * class-internals.h (MonoClass): Added simd_type bit field.
9082
9083         * class.c (mono_class_create_from_typedef): Check if type is a simd
9084         intrinsic.
9085
9086 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9087
9088         * object.c (mono_method_add_generic_virtual_invocation): Only add
9089         instantiations to the thunk whose count is at least as large as
9090         the threshold.
9091
9092 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9093
9094         * icall.c: changed the Type of the exception thrown when trying to
9095         invoke a constructor on an abstract class. Part of the fix for bug
9096         #324185.
9097
9098 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9099
9100         * class.c, class-internals.h (mono_method_get_vtable_index): New
9101         function which returns the index into the vtable and properly
9102         handles inflated virtual generic methods.
9103
9104 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9105
9106         * object.c, domain.c, object-internals.h, domain-internals.h:
9107         Generalize IMT thunk machinery to also handle thunks for virtual
9108         generic method invokes.  When a virtual generic method is invoked
9109         more than a number of times we insert it into the thunk so that it
9110         can be called without lookup in unmanaged code.
9111
9112         * generic-sharing.c, class-internals.h: Fetching a
9113         MonoGenericInst* for a method from an (M)RGCTX.
9114
9115 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9116
9117         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9118         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9119         marshalling. Fixes #431304.
9120
9121 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9122
9123         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9124           handle when ref is specified without In or Out.
9125
9126         Code is contributed under MIT/X11 license.
9127
9128 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9129
9130         * loader.c (mono_get_method_constrained): Don't expand method with
9131         the class's context, because it's already a method of that class.
9132
9133 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9134
9135         * attach.c : should be correct build fix.
9136
9137 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9138
9139         * attach.c: Fix the previous change.
9140
9141 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9142
9143         * attach.c : quick w32 build fix.
9144
9145 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9146
9147         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9148         crashes MonoDevelop: #430455.
9149
9150 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9151
9152         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9153         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9154
9155         * domain.c: Remove initialization/cleanup of the removed fields.
9156
9157 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9158
9159         * class.c (mono_class_generic_sharing_enabled): Enable generic
9160         code sharing for PPC.
9161
9162 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9163
9164         * attach.c : Fixing the Windows builds.
9165
9166         Code is contributed under MIT/X11 license.
9167
9168 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9169
9170         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9171         the default generic sharing mode to 'all'.
9172
9173 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9174
9175         * generic-sharing.c, class-internals.h: New function for checking
9176         whether a method needs a static RGCTX invoke wrapper.  A few
9177         funtions moved from mini/generic-sharing.c.
9178
9179         * icall.c: New function used.
9180
9181 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9182
9183         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9184         Static RGCTX invoke wrapping applies to value type methods, too.
9185
9186         * class.c (mono_class_setup_vtable_general): In generic-shared
9187         value types, wrap methods with a static RGCTX invoke wrapper.
9188
9189 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9190
9191         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9192         osx build.
9193
9194 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9195
9196         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9197         register a callback which is called when the finalizer thread is woken
9198         up.
9199         (finalizer_thread): Call the callback if it exists.
9200
9201         * attach.h attach.c: New files, implementing the attach mechanism.
9202
9203         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9204         
9205         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9206         by the previous change.
9207
9208 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9209
9210         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9211         loader.c, marshal.c, metadata-internals.h, metadata.c,
9212         method-builder.c, object.c, reflection.c: introduced specific functions
9213         to allocate from the domain and image mempools and cleaned up most of
9214         the code to use them (still missing a few in reflection.c).
9215         Keep the loader bytes counter updated.
9216
9217 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9218
9219         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9220         loader-related counters.
9221
9222 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9223
9224         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9225         added more MS-compatible counters.
9226
9227 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9228
9229         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9230         class->blittable. Fixes #428217.
9231
9232 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9233
9234         * reflection.c (mono_image_get_field_on_inst_token): Call 
9235         field_encode_signature () since that handles custom modifiers too.
9236         Fixes #424663.
9237
9238 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9239
9240         * reflection.c (add_custom_modifiers): New helper function to merge custom
9241         modifiers stored in objects to a MonoType.
9242         (fieldref_encode_signature): Encode custom modifiers.
9243         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9244         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9245
9246 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9247
9248         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9249         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9250         64-bit IL only images because imports are not resolved for IL only images.
9251         Special thanks to Bill Holmes for finding this bug and testing the patch.
9252         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9253
9254         Contributed under MIT/X11 license.
9255
9256 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9257
9258         * mono-config.c (dllmap_start): Add support for the bits keyword
9259         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9260
9261 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9262
9263         * reflection.c (inflate_mono_method): When the class the method is
9264         to be inflated for is itself not inflated, just return the method.
9265
9266 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9267
9268         * mono-perfcounters.c: use more user friendly process instance names.
9269
9270 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9271
9272         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9273           handle "[in] ref" and "[in][out] ref" cases.
9274
9275         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9276           to mono_mb_create_method.  This was causing problems calling native to
9277           managed passing Variants by value.
9278
9279         Code is contributed under MIT/X11 license.
9280
9281 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9282
9283         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9284         before accessing the friend_assembly_names field.
9285
9286         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9287         times.
9288         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9289         called lazily when it is needed.
9290
9291         * metadata-internals.h (struct _MonoAssembly): Add 
9292         'friend_assembly_names_inited' flag.
9293
9294 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9295
9296         * mono-perfcounters-def.h: fix the types of a few counters.
9297         * mono-perfcounters.c: implemented the instance names getter
9298         and a few bugfixes.
9299
9300 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9301
9302         * culture-info-table.h : regenerated.
9303
9304 2008-09-17  Robert Jordan  <robertj@gmx.net>
9305
9306         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9307         context bound objects. Fixes #415577.
9308
9309         Code is contributed under MIT/X11 license.
9310
9311 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9312
9313         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9314         implementation (bug #423582).
9315
9316 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9317
9318         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9319         is not set. Fixes #426309.
9320
9321 2008-09-16  Jb Evain  <jbevain@novell.com>
9322
9323         * class.c (mono_class_from_name): fix the exported type look up
9324         when the type is defined in a referenced assembly.
9325
9326 2008-09-16  Jb Evain  <jbevain@novell.com>
9327
9328         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9329         increment the next index counter on each iteration to make that work
9330         for more than one type forwarder. Unmanaged part to fix #422929.
9331
9332 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9333
9334         * object-internals.h: enum ComInterfaceType in
9335         MonoInterfaceTypeAttribute is guint32, not guint16.
9336
9337 2008-09-12  Mark Probst  <mark.probst@gmail.com>
9338
9339         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
9340         writing code.
9341
9342 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9343
9344         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
9345         not gboolean.
9346
9347 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9348
9349         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
9350         Endianness fixes for MonoSymbolFileOffsetTable.
9351
9352 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9353
9354         * process.c (complete_path) : Removing quotes from the 
9355           input path.  The glib file routines do not handle file paths
9356           that have quotes around them.
9357
9358         Code is contributed under MIT/X11 license.
9359
9360 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9361
9362         * socket-io.h : Adding a comment to provide locations where 
9363           changes to MonoSocketAsyncResult need to be synced.
9364
9365         Code is contributed under MIT/X11 license.
9366
9367 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
9368
9369         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
9370         parameters as well. Fixes #425001.
9371
9372 2008-09-08  Miguel de Icaza  <miguel@novell.com>
9373
9374         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
9375         windows build.
9376
9377 2008-09-07  Miguel de Icaza  <miguel@novell.com>
9378
9379         * console-io.c: Add support for tracking the window size if it
9380         changes.
9381
9382         The setup is very simple: the TtySetup function will now return a
9383         pointer to a location in memory that tracks the current console
9384         size.  The managed code checks its current value every time its
9385         queried against the last value set, and updates accordingly.
9386
9387         With this setup we can work with multiple consoles, and we do not
9388         require to poke into managed code from a signal handler.
9389
9390         Additionally, the environment for COLUMNS and LINES is now handled
9391         in unmanaged code.
9392
9393         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
9394
9395 2008-09-07  Mark Probst  <mark.probst@gmail.com>
9396
9397         * marshal.c (mono_type_native_stack_size): Treat
9398         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
9399
9400 2008-09-04  Jb Evain  <jbevain@novell.com>
9401
9402         * class.c (mono_class_is_assignable_from): fix assignability of nullables
9403         to nullables.
9404
9405 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
9406
9407         * verify.c (verify_type_compatibility_full): Revert change
9408         to allow converting a native int to unmanaged pointer be verifiable
9409         under non-strict mode.
9410         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
9411
9412         * verify.c: Added some TODOs.
9413
9414 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
9415
9416         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
9417           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
9418           Changed to use GlobalAlloc for the memory returned on Windows platforms.
9419
9420         Code is contributed under MIT/X11 license.
9421
9422 2008-09-02  Jb Evain  <jbevain@novell.com>
9423
9424         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
9425
9426 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
9427
9428         reflection.c (typebuilder_setup_fields): Handle classes with
9429         explicit size.
9430
9431 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
9432
9433         class.c (mono_class_setup_events): Add memory barrier due to
9434         double checked locking.
9435         
9436         class.c (mono_class_setup_properties): Same.
9437
9438 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
9439
9440         * class.c (mono_class_is_assignable_from): Fix the build.
9441         
9442         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
9443         before accessing klass->interface_bitmap. Fixes #421744.
9444
9445 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
9446
9447         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
9448         the runtime into no-exec mode, useful when running the AOT compiler.
9449
9450         * appdomain.c gc.c object.c: Avoid executing managed code when running
9451         in no-exec mode.
9452         
9453         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
9454
9455         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
9456         special case when the mono_assembly_loaded () returns NULL because the 
9457         search hook is not installed.
9458
9459 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
9460
9461         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
9462         crashes in bstr marshalling on linux.
9463
9464 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9465
9466         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
9467         with more than one parameter.
9468
9469 2008-08-24  Miguel de Icaza  <miguel@novell.com>
9470
9471         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
9472         start/stop flow control as well when turning off ICANON (allows
9473         C-s and C-q to be read by Console.ReadKey).
9474
9475 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9476
9477         * class.c (mono_class_init): Move the initialization of nested classes
9478         into mono_class_get_nested_types (). Fixes #418433.
9479
9480         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
9481         flag.
9482
9483         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
9484         iterating tough the nested classes of a class.
9485
9486 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
9487
9488         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
9489         on arm.
9490
9491 2008-08-22  Miguel de Icaza  <miguel@novell.com>
9492
9493         * console-io.c (sigcont_handler): Support signal chaining for
9494         SIGCONT.
9495
9496         (console_set_signal_handlers): Use best practices with sigaction,
9497         clear the structure before using it. 
9498
9499 2008-08-22  Robert Jordan  <robertj@gmx.net>
9500
9501         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
9502         Fix the Windows build.
9503
9504 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
9505
9506         * class.c (mono_class_generic_sharing_enabled): Make the default
9507         sharing mode 'corlib'.
9508
9509 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
9510
9511         * console-io.c (console_set_signal_handlers): Fix a warning.
9512
9513         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
9514         method normally, the JIT will take care of avoiding recursion.
9515
9516 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
9517
9518         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
9519
9520         Code is contributed under MIT/X11 license.
9521
9522 2008-08-20  Miguel de Icaza  <miguel@novell.com>
9523
9524         * console-io.c (sigcont_handler): We need to restore the entire
9525         termios state, not only the original settings, as things like echo
9526         can be controlled after this (Booish exposes this issue with its
9527         own ReadLine implementation).
9528
9529         Additionally, we need to set the terminal back into keypad_xmit
9530         mode.
9531         
9532         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
9533         string as a paramter as well.   Otherwise we get different
9534         keyboard sequences.
9535
9536 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
9537
9538         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
9539         delegates with byref out parameter passing. Fixes #351520.
9540
9541         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
9542         a generic context.
9543         (mono_type_get_desc): Add the type arguments for GENERICINST.
9544         (mono_method_full_name): Stringify the class name using mono_type_full_name
9545         so it picks up generic arguments.
9546
9547 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
9548
9549         * console-io.c: Removed debug output.
9550
9551 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
9552
9553         reflection.c (mono_reflection_create_runtime_class): Alloc
9554         the nested classes linked list using the dynamic image mempool.
9555         Fixes leak in corlib compilation.
9556
9557 2008-08-19  Miguel de Icaza  <miguel@novell.com>
9558
9559         * console-io.c: Fix incredibly annoying behavior on the console
9560         after resuming execution after control-z.   This affected every
9561         console application.
9562
9563 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
9564
9565         * mempool-internals.h: Header for mono private mempool functions. The first
9566         two function are for allocating glib linked lists using pools.
9567
9568         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
9569
9570         * Makefile.am: Added mempool-internals.h.
9571
9572 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
9573
9574         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
9575         (mono_domain_free): Ditto.
9576
9577         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
9578         be used by the JIT to store its domain-specific information, instead of putting
9579         it directly into MonoDomain.
9580
9581         * domain.c (mono_install_create_domain_hook): New helper function to install
9582         a hook which initializes domain->runtime_info.
9583
9584         * domain.c (mono_install_free_domain_hook): Ditto.
9585         
9586 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
9587
9588         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
9589         asserting if the ares parameter is null.
9590
9591         * mono-perfcounters.c: Fix warnings.
9592
9593         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
9594         is not needed, don't check for interruptions either.
9595         (mono_marshal_get_delegate_end_invoke): Ditto.
9596
9597 2008-08-15  Marek Habersack  <mhabersack@novell.com>
9598
9599         * mono-perfcounters.c (predef_readonly_counter): added support for
9600         reading the ASP.NET Requests Queued counter from another process.
9601
9602 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
9603
9604         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
9605         MonoImage to simplify the AOT code.
9606
9607 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
9608
9609         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
9610         marshalling. Fixes #416078.
9611
9612 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9613         
9614         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
9615         it is set, looking up the icall address is deferred to the JIT, since 
9616         in embedded scenarios, the icall might not be registered in the runtime
9617         doing the AOT compilation. Backported from the 2.0 branch.
9618
9619 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9620
9621         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
9622         Fixes #415621.
9623
9624 2008-08-05  Marek Habersack  <mhabersack@novell.com>
9625
9626         * Makefile.am: added support for cross-compilation.
9627
9628 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
9629
9630         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
9631
9632 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9633
9634         * mono-perfcounters.c: jitted methods and jitted bytes counters.
9635
9636 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
9637
9638         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
9639         mono-perfcounters.c: performance counters implementation.
9640
9641 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
9642
9643         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
9644         to gpointer, letting the AOT code decide what to store in it.
9645
9646 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
9647
9648         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
9649           mono_class_setup_methods if the methods are not initialized.
9650
9651         Code is contributed under MIT/X11 license.
9652
9653 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9654
9655         * verify.c: Remove some debug code I commited by accident.
9656
9657         * verify.c (mono_method_is_valid_in_context): Change the return value
9658         to make possible to distinguish between invalid and unverifiable.
9659
9660         * verify.c (verifier_load_method): Don't return NULL for unverifiable
9661         methods.
9662
9663 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9664
9665         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
9666         constraints. Fixes regression in gtest-253.
9667
9668 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9669
9670         * verify.c (mono_verifier_verify_class): Don't allow generic types
9671         with explicit layout.
9672
9673         * verify.c (mono_method_verify): Check locals and argument types.
9674
9675 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
9676
9677         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
9678         wait if the thread is in StopRequested state.
9679
9680         * class.c (mono_class_from_name): Refactor the module searching code into
9681         a separate function so it can be reused in the AOT case too.
9682
9683 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
9684
9685         * verify.c (mono_type_is_valid_in_context): Improve the error message.
9686         Check both the type and it's generic type definition for loader errors.
9687         
9688         * verify.c (mono_method_is_valid_in_context): Don't generate another
9689         error when a type errors occur, this leads to the wrong exception been
9690         thrown.
9691
9692 2008-07-28  Dick Porter  <dick@ximian.com>
9693
9694         * icall-def.h
9695         * process.c
9696         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
9697         New internal calls to duplicate and close a process handle.
9698
9699 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
9700
9701         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
9702
9703 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
9704
9705         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
9706
9707 2008-07-27  Robert Jordan  <robertj@gmx.net>
9708
9709         * class.c (mono_class_init): Don't compute class.has_finalize for
9710         valuetypes. Fixes #412477.
9711
9712 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
9713
9714         * verify.c: Implement constraint equivalence checking.
9715         This is required when a generic parameter is used as
9716         argument to a constrained one.
9717
9718         Fixes #410637.
9719
9720 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
9721
9722         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9723
9724         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
9725
9726         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
9727         synch with managed object layout.
9728
9729 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9730
9731         * verify.c (do_branch_op): Handle valuetypes and generic
9732         arguments properly.
9733
9734         * verify.c (do_cmp_op): Same.
9735
9736         Fixes #410383.
9737
9738 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9739
9740         * generic-sharing.c: Fix memory leaks.
9741
9742         * class.c, class-internals.h: Make
9743         mono_class_inflate_generic_type_with_mempool() non-static.
9744
9745 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9746
9747         * pedump.c (dump_verify_info): Dump full class name.
9748
9749 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9750
9751         * generic-sharing.c: Removed some old code that didn't do anything.
9752
9753 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
9754         * profiler.c: Added runtime_initialized_event,
9755         mono_profiler_install_runtime_initialized and
9756         mono_profiler_runtime_initialized. This new hook tells the profiler
9757         when the runtime is sufficiently initialized to be able to call
9758         mono_thread_attach on the root appdomain.
9759         * profiler.h, profiler-private.h: Likewise.
9760
9761 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9762
9763         * verify.c (do_cast): Do boxing for generic arguments as well.
9764
9765         * class.c (is_nesting_type): Drop generic instantiations before
9766         checking for nesting.
9767
9768         * class.c (can_access_instantiation): Allow access to generic
9769         arguments.
9770
9771 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9772
9773         * verify.c (verify_class_for_overlapping_reference_fields):
9774         On some cases, the field size might be zero, guard against that.
9775         Fix the explicit layout check to work as expected.
9776
9777 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
9778
9779         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
9780         mono_thread_resume () during shutdown, since the thread we want to abort
9781         might be suspended.
9782
9783 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
9784
9785         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
9786         warning.
9787
9788         * debug-mono-symfile.c: Fix a warning.
9789
9790         * mono-perfcounters.c (get_cpu_times): Fix a warning.
9791
9792         * object.c (mono_class_vtable): Check if exception_type is set, and return
9793         NULL as defined by the function comments.
9794
9795 2008-07-22  Mark Probst  <mark.probst@gmail.com>
9796
9797         * mempool.c: Use malloc for every single mempool allocation if the
9798         configure option is set.  This makes it easier to track mempool
9799         allocations with tools like Valgrind.
9800
9801 2008-07-22  Jb Evain  <jbevain@novell.com>
9802
9803         * reflection.c (create_dynamic_mono_image): emit the same
9804         metadata version that SL2 does when creating a SL2 image.
9805
9806 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
9807
9808         * icall-def.h:
9809         * icall.c: New icall System.Enum:get_hashcode. This function
9810         avoids the overhead of boxing the enum to the underlying type.
9811
9812 2008-07-21  Mark Probst  <mark.probst@gmail.com>
9813
9814         * reflection.c (mono_method_get_object): Don't let static RGCTX
9815         invoke wrappers get into MonoReflectionMethods.
9816
9817 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
9818
9819         * object-internals.h:
9820         * object.c: New mono_runtime_class_init_full function
9821         that makes throwing the exception optinal.
9822
9823         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
9824         for the case where the exception object is supplied.
9825
9826 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
9827
9828         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
9829         old ld versions.
9830
9831         Contributed under MIT/X11 license.
9832
9833 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
9834
9835         * string-icalls.c (ves_icall_System_String_InternalSplit):
9836         Optimize array allocation by caching the MonoClass of the
9837         array type.
9838
9839         * icall.c (ves_icall_Type_GetMethodsByName): Same.
9840
9841         * reflection.c (mono_param_get_objects): Same.
9842
9843 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
9844
9845         * icall-def.h:
9846         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
9847         It inflates the given type using the class context.
9848
9849 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
9850
9851         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
9852         the vtable if it already exists.
9853
9854         * object-internals.h: Add mono_class_try_get_vtable as part of the
9855         internal API.
9856
9857         * reflection.c (mono_type_get_object): Use the MonoObject from the
9858         vtable when possible. Reduces locking contention on reflection heavy
9859         code.
9860
9861 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
9862
9863         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
9864         g_bit_nth_msf () since that macro is not implemented in eglib.
9865
9866 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
9867
9868         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
9869         on platforms which do not support it.
9870
9871 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
9872
9873         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
9874
9875 2008-07-11  Martin Baulig  <martin@ximian.com>
9876
9877         * mono-debug-debugger.h
9878         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
9879
9880         * mono-debug-debugger.c
9881         (_mono_debugger_interruption_request): New global volatile variable.
9882         (mono_debugger_check_interruption): New public function.
9883
9884         * threads.c
9885         (mono_thread_current_check_pending_interrupt): Call
9886         mono_debugger_check_interruption().
9887         (mono_thread_interruption_checkpoint_request): Likewise.
9888
9889 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9890
9891         * verify.c: Add more type checks for loaded types. Verify the result
9892         handle from ldtoken.
9893
9894 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9895
9896         * loader.c (field_from_memberref): Don't crash if the field
9897         wasn't found.
9898
9899 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9900
9901         * verify.c: Verify if type and method instantiations
9902         don't have invalid VAR or MVAR arguments.
9903
9904 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9905
9906         * verify.c: Fix double free of function pointer list.
9907
9908 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9909
9910         * object.c (mono_string_to_utf8): Comment the new code as it
9911         breaks under eglib.
9912
9913 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
9914
9915         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
9916
9917 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
9918
9919         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
9920           is not throw too many times.
9921
9922         Code is contributed under MIT/X11 license.
9923
9924 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
9925
9926         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
9927         debugging is turned off.
9928
9929 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
9930
9931         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
9932
9933 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9934
9935         * class-internals.h, class.c: Added new generic sharing option:
9936         Share only stuff in System.Collections.Generic, which is now the
9937         default.
9938
9939 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9940
9941         * generic-sharing.c, class-internals.h: New function for getting a
9942         generic method in a generic class given the corresponding method
9943         for a different instantiation of the class.  Partly refactored
9944         from mini-trampolines.c.
9945
9946         * class.c: Make sure generic methods have a class_inst if they are
9947         part of a generic class.
9948
9949         * metadata.c (mono_type_stack_size_internal): Handle type
9950         variables.
9951
9952 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9953
9954         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
9955         Signifies whether information on the this/vtable/mrgctx variable
9956         is available.
9957
9958 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9959
9960         * object.c, object-internals.h, icall.c: New function
9961         mono_delegate_ctor_with_method(), which does the same as
9962         mono_delegate_ctor(), but takes an explicit method argument
9963         instead of taking the method from the jit info.
9964
9965         * marshal.c: When creating a delegate with an inflated method take
9966         the "this" argument as the target class for the castclass.
9967
9968 2008-07-03  Mark Probst  <mark.probst@gmail.com>
9969
9970         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
9971         mono_jit_info_table_find() to perform very badly in some cases.
9972
9973 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
9974
9975         * icall.c (type_from_typename): Handle 'string'.
9976
9977         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
9978         wrappers into the wrapper_hash, since the key is not a MonoMethod.
9979
9980 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
9981
9982         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
9983
9984         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
9985         number of available managed allocator types.
9986
9987         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
9988         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
9989
9990 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
9991
9992         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
9993         which is a low level lock protecting just the 'jit_code_hash' hash table.
9994
9995         * domain.c: Initialize+cleanup jit_code_hash_lock.
9996         
9997 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
9998
9999         * coree.c (mono_load_coree): Set coree_module_handle global variable only
10000         after initialization.
10001
10002         * coree.h: Make MonoFixupExe internal.
10003
10004         Contributed under MIT/X11 license.
10005
10006 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10007
10008         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
10009         because that is platform independent. Check NumberOfRvaAndSizes in PE32
10010         as well.
10011         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
10012         image being loaded is a CLI image and _CorValidateImage gets called.
10013
10014         * coree.h: Add MonoLoadImage.
10015
10016         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
10017         instead of LoadLibrary.
10018
10019         Contributed under MIT/X11 license.
10020
10021 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
10022
10023         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
10024         for any primitive type.
10025
10026 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
10027
10028         * object.c (mono_array_new_specific): Optimize this and the other allocation
10029         functions a bit.
10030         
10031         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
10032         domains too if mono_dont_free_domains is set.
10033
10034         * domain-internals.h (mono_dont_free_domains): New internal option controlling
10035         whenever to free appdomain data after it has been unloaded.
10036
10037         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
10038         
10039 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
10040
10041         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
10042         (mono_method_get_equivalent_method): Fix a warning.
10043
10044         * object.c (mono_message_init): Avoid looking up array types for each call.
10045
10046 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
10047
10048         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
10049         call.
10050
10051         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
10052         even more.
10053
10054         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
10055         each iteration.
10056
10057         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
10058         fields of an enum.
10059
10060 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
10061
10062         * object.c (mono_value_box): Fix boxing of nullables.
10063
10064 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
10065
10066         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10067         mono_module_handle that is defined by the linker; no initialization required.
10068         * coree.h: Remove mono_module_handle, add __ImageBase, update
10069         mono_image_open_from_module_handle.
10070         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10071         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10072         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10073         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10074         to 4 GB away from image base address. IA64 version is not tested but was very
10075         easy to implement and should work if we ever need it.
10076         * domain.c (mono_init_internal): Avoid system error message boxes.
10077         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10078         with has_entry_point. Handle do_mono_image_load fauilre correctly.
10079         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10080         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10081         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10082
10083         Contributed under MIT/X11 license.
10084
10085 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10086
10087         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10088         as part of the private mono API.
10089         
10090         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10091         Do proper argument checking for methods that belong to generic classes.
10092         Do proper type resolution for GMFH/2.
10093         Fixes #377324.
10094         
10095 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10096
10097         * verify.c (do_switch): Fix a memory corruption bug with
10098         the jump index is out of bound.
10099
10100 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10101
10102         * verify.c: Disable debug code.
10103
10104 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10105
10106         * reflection.c (mono_image_get_methodbuilder_token): Use
10107         mono_image_get_methodspec_token_for_generic_method_definition
10108         instead of mono_image_get_memberref_token. We cache more memberef
10109         entries now.
10110
10111 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10112
10113         * verify.c: Inflate exception clause types.
10114         Fixes #402606.
10115         
10116 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10117
10118         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10119         name.
10120
10121         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10122
10123         * reflection.c (mono_image_create_method_token): Same.
10124
10125 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10126
10127         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10128         It does the same as mono_image_get_methodref_token but works on
10129         MethodBuilder.
10130
10131         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10132         and always generate a methodspec. This follows the old behavior and fixes
10133         the regressions in System.Core. 
10134
10135 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10136
10137         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10138         don't event mono_class_get () succeeds. Fixes #402182.
10139
10140 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10141
10142         * metadata-internals.h: Added MonoDynamicImage::methodspec
10143         hashtable to store methodspec tokens created for MethodBuilders.
10144
10145         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10146         MethodBuilders as open instantiations if a methodspec was requested.
10147
10148         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10149
10150         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10151
10152         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10153
10154         Fixes bug #349190.
10155
10156 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10157
10158         * loader.c (method_from_methodspec): Avoid crashing if the
10159         method lookup fails.
10160
10161 2008-06-20  Dick Porter  <dick@ximian.com>
10162
10163         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10164         classes being in a different assembly.  Fixes bug 399184.
10165
10166 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10167
10168         * loader.c (mono_loader_init): Make this callable multiple times.
10169         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10170         the runtime is initialized. Fixes #401755.
10171
10172 2008-06-19  Dick Porter  <dick@ximian.com>
10173
10174         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10175         Fixes bug 349688.
10176
10177 2008-06-19  Dick Porter  <dick@ximian.com>
10178
10179         * socket-io.c:
10180         * icall-def.h: Implement Socket generic Send() and Receive()
10181         methods.  Fixes bug 395168.
10182
10183 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10184
10185         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10186
10187         Contributed under MIT/X11 license.
10188
10189 2008-06-18  Martin Baulig  <martin@ximian.com>
10190
10191         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10192         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10193         set to 80.0.  The debugger <-> runtime interface is now frozen as
10194         well.   
10195
10196         * mono-debug.c
10197         (mono_debug_debugger_version): Bump to 4.
10198
10199 2008-06-18  Martin Baulig  <martin@ximian.com>
10200
10201         * debug-mono-symfile.c
10202         (load_symfile): Don't check the minor version.
10203
10204         * debug-mono-symfile.h: Bump the version number to 50.0.
10205
10206 2008-06-18  Martin Baulig  <martin@ximian.com>
10207
10208         * debug-mono-symfile.c
10209         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10210         minimum required version.
10211
10212 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10213
10214         * reflection.c (mono_custom_attrs_from_property): Fix support for
10215         retriveving cattrs of dynamic inflated generic types.
10216
10217         * reflection.c (mono_custom_attrs_from_event): Same.
10218
10219         * reflection.c (mono_custom_attrs_from_field): Same;
10220
10221         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10222
10223         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10224         Moved to metadata.c.
10225
10226         * metadata.c: New functions to retrive the equivalent field, event
10227         of property from the generic type definition.
10228
10229         * metadata-internals.h: Added new functions from metadata.c.
10230
10231 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10232
10233         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10234         to cached in a mempool is used.
10235
10236         * metadata.c (free_generic_class): In some situations field generic_info type
10237         is not properly dup'ed and leads to double free'ing.
10238
10239         Fixes #400643.
10240
10241 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10242
10243         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10244         this arguments (will be needed later for generic methods).
10245         Collect stats.
10246
10247 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10248
10249         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10250         Create a static RGCTX invoke wrapper for methods which require it.
10251
10252 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10253
10254         * object.c, class-internals.h: New function for checking whether
10255         an individual field is special static.
10256
10257 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10258
10259         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10260         linear search since the table is sorted.
10261
10262         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10263         Fixes #324180.
10264
10265 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10266
10267         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10268         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10269
10270         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10271
10272         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10273         
10274         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10275         InterlockedCompareExchange to query and modify 
10276         thread->interruption_requested.
10277
10278         * object-internals.h (struct _MonoThread): Change interruption_requested
10279         to a gint32 so it can be modified by atomic operations. Add 
10280         'critical_region_level' from the managed side, change small_id to a guint32,
10281         add new set of 'unused' fields.
10282
10283         * appdomain.c: Bump corlib version.
10284
10285 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10286
10287         * class.c (mono_class_from_name): Search modules as well. Fixes
10288         #322332.
10289
10290 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10291
10292         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10293         templates.  Templates are generalized with an additional type_argc
10294         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10295         have type_argc>0.
10296
10297         * domain-internals.h, domain.c: New hash table for looking up
10298         MRGCTXs.
10299
10300         * metadata.c, metadata-internals.h: Rename hash and equal
10301         functions for MonoGenericInst's and make them public.
10302
10303         * class-internals.h: New data structures for the MRGCTX.  Macros
10304         for distinguishing slots in the RGCTX and the MRGCTX.
10305
10306 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10307
10308         * object.c (mono_method_get_imt_slot): Put the same methods of
10309         different instantiations of the same generic interface in the same
10310         IMT slots, to make generic sharing simpler.
10311
10312 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10313
10314         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10315
10316         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10317         This function works just like mono_metadata_field_info, but
10318         accept a mempool as argument to be used allocating memory.
10319
10320         * marshal.c (mono_marshal_load_type_info): Use new function
10321         to load marshal data into image mempool.
10322
10323 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10324
10325         * class.c (mono_class_inflate_generic_type_with_mempool):
10326         This function allows to inflate a generic type using
10327         a mempool.
10328
10329         * class.c (inflate_generic_type): Take a mempool as argument
10330         and use it to do type dup'ing.
10331
10332         * class.c (mono_class_setup_fields): Field type for generic
10333         generic classes are allocated from the image mempool.
10334
10335         * metadata.c (free_generic_class): Inflated field type is
10336         now allocated in the image mempool.
10337
10338 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10339
10340         * threads.c (thread_cleanup): Free MonoThread::name.
10341
10342 2008-06-12  Marek Habersack  <mhabersack@novell.com>
10343
10344         * appdomain.c (ensure_directory_exists): avoid unnecessary
10345         mkdir(2) calls when the shadow directory already exists.
10346         (mono_make_shadow_copy): copy also satellite assemblies from the
10347         private bin directories.
10348
10349 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10350
10351         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
10352         
10353         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
10354         a page boundary. Fixes #396219.
10355
10356 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10357
10358         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
10359         due to double-checked locking.
10360
10361 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10362
10363         * assembly.c (build_assembly_name): Release memory on failure.
10364
10365         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
10366
10367 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10368
10369         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
10370         memory on failure.
10371
10372 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10373
10374         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
10375         memory on failure.
10376
10377 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10378
10379         * loader.c (field_from_memberref): Check if field signature type is equal
10380         to the non-inflated type of the field. Fixes #398980.
10381
10382 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10383
10384         * assembly.c (mono_assembly_load_from_full): Call 
10385         mono_assembly_load_friends () outside the assemblies lock, since it can
10386         acquire the loader lock. Fixes #323696.
10387
10388         * reflection.c (resolve_object): Inflate the inst with the context for
10389         FieldOnTypeBuilderInst. Fixes #399010.
10390
10391 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10392
10393         * reflection.c (mono_image_get_field_on_inst_token): Don't
10394         inflate the field to encode it's signature. If it's a
10395         VAR or MVAR it should stay that way in the signature.
10396         Fixes #399047.
10397
10398 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10399
10400         * reflection.c (resolve_object): Release memory of inflated types.
10401
10402 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10403
10404         * loader.c (mono_method_get_signature_full): Remove assert about
10405         loading a methodspec to a generic method. We have such methods, such as
10406         System.Threading.Interlocked::CompareExchange<T>.
10407         This assert was removed since it crashes the verifier when it checks
10408         methods calling CompareExchange<T>.
10409
10410 2008-06-10  Marek Safar  <marek.safar@gmail.com>
10411
10412         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
10413         of Type array and not MonoType.
10414
10415 2008-06-10  Marek Habersack  <mhabersack@novell.com>
10416
10417         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
10418         <lupus@ximian.com>
10419
10420 2008-06-10  Martin Baulig  <martin@ximian.com>
10421
10422         * debug-mono-symfile.h
10423         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
10424         changes to the file format, but we were generating incorrect
10425         source file indices in the line number table due to a bug, which
10426         made backtraces report an incorrect source file.
10427
10428 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10429
10430         * mono-debug.c: Moved mono_debug_free_method_jit_info from
10431         mini/debug-mini.c to here.
10432
10433         * mono-debug.c (il_offset_from_address): Free memory from find_method.
10434
10435         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
10436         use it to release structs returned by mono_debug_find_method.
10437
10438 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
10439
10440         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
10441         since it needs to set method->slot for all interface methods.
10442
10443 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10444
10445         * class-internals.h: Forgot to add.
10446
10447 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10448
10449         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
10450
10451         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
10452         Lookup the custom attributes from property_hash.
10453
10454         * reflection.c (mono_save_custom_attrs): Save the custom attributes
10455         in property_hash. Allocate all data using the image mempool.
10456
10457         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
10458         for dynamic_custom_attrs to checks if the image is dynamic.
10459
10460 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10461
10462         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
10463         assemblies array.
10464         
10465         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
10466         runtime functions while holding the domain assemblies lock.
10467
10468 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10469
10470         * verify.c: Reapplied the last bit of the reverted changes.
10471
10472 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10473
10474         * verify.c: Reapplied more of the reverted changes.
10475
10476 2008-06-09  Martin Baulig  <martin@ximian.com>
10477
10478         * debug-mono-symfile.c (load_symfile): Check the major version
10479         first; if it's wrong, don't print the minor version in the error message.
10480
10481 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10482
10483         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
10484         lock instead of the domain lock to avoid deadlocks, since the thread might
10485         already hold the loader lock.
10486
10487         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
10488         (mono_thread_attach): Ditto.
10489
10490         * monitor.c: Use a TLS variable for holding the current thread id instead
10491         of calling pthread_self ().
10492         (mono_monitor_init_tls): New internal function to initialize the TLS
10493         variable.
10494         (mono_monitor_try_enter_internal): Put the owner == id check after the
10495         owner == 0 check.
10496
10497         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
10498         missed optimizations when using gcc-4.3.
10499
10500 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
10501
10502         * reflection.c (mono_dynamic_image_free): Free the memory
10503         used by MonoGenericParam in MonoDynamicImage::gen_param.
10504
10505         * reflection.c (mono_reflection_setup_generic_class): Allocate
10506         container from mempool.
10507
10508         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
10509         container from mempool.
10510
10511 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10512
10513         * threads.c (mono_set_pending_exception): New internal function to set the
10514         pending exception of the current thread.
10515         (mono_thread_get_and_clear_pending_exception): Check for 
10516         thread->pending_exception as well.
10517
10518         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
10519
10520         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
10521         it can trigger a collection.
10522
10523 2008-06-06  Martin Baulig  <martin@ximian.com>
10524
10525         Merged the `debugger-kahalo' branch.
10526
10527         * mono-debug.h
10528         (MONO_DEBUGGER_VERSION): Bumped to 72.
10529
10530         * debug-mono-symfile.h
10531         (MonoSymbolFileMethodIndexEntry): Removed.
10532         (MonoSymbolFileMethodEntry): New public typedef.
10533         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
10534         (MonoSymbolFileSourceEntry): Remove everything except `index' and
10535         `data_offset'.
10536         (MonoSymbolFileMethodEntry): Removed.
10537         (MonoSymbolFileLexicalBlockEntry): Removed.
10538         (MonoSymbolFileLineNumberEntry): Removed.
10539         (MonoDebugLexicalBlockEntry): Removed.
10540         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
10541         removed `num_il_offsets' and `il_offsets'.
10542         (MonoSymbolFile): Replace `version' with `major_version' and
10543         `minor_version'.
10544         (MONO_SYMBOL_FILE_VERSION): Replace with
10545         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
10546         `MONO_SYMBOL_FILE_MINOR_VERSION'.
10547
10548         * debug-mono-symfile.c
10549         (mono_debug_symfile_lookup_location): Add support for the new line
10550         number table format.
10551
10552 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10553
10554         * metadata.c (free_generic_class): Release the inflated
10555         MonoClass of dynamic generic classes if it's not a generic
10556         type definition.
10557
10558 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10559
10560         * verify.c: Reapplied more of the reverted changes.
10561
10562 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10563
10564         * reflection.c (lookup_custom_attr): Clean the cached flag or
10565         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
10566         for SRE types.
10567
10568 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10569
10570         * verify.c: Reapplied a small part of the reverted changes.
10571
10572 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10573
10574         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10575
10576         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
10577         previously in managed code.
10578         (mono_monitor_exit): Ditto.
10579         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
10580
10581         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
10582         the managed definition.
10583
10584 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10585
10586         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
10587
10588 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10589
10590         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
10591         
10592         * monitor.c: Add some micro optimizations.
10593
10594         * icall.c (type_from_typename): Handle 'bool'.
10595
10596 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10597
10598         * verify.c: Implement constructor verification per P III 1.8.1.4.
10599         Fixes #396716.
10600
10601 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10602
10603         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
10604         holding the assemblies lock here too.
10605
10606 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10607
10608         * verify.c: Kill stack_top function.
10609
10610 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10611
10612         * verify.c: Kill stack_get function.
10613
10614 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10615
10616         * verify.c (mono_method_verify): Last change broke the build. Fixed.
10617
10618 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10619
10620         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
10621         more reliable.
10622
10623         * verify.c (mono_method_verify): Inflate params and locals to avoid
10624         mismatch when checking for compatibility.
10625
10626 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
10627
10628         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
10629         Length prefix should be size in bytes. Fix bug #339530.
10630         
10631         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
10632         Length prefix should be size in bytes. Fix bug #339530.
10633
10634         Code is contributed under MIT/X11 license.
10635
10636 2008-06-05  Bill Holmes <billholmes54@gmail.com>
10637
10638         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
10639
10640         Contributed under MIT/X11 license.
10641
10642 2008-06-05  Martin Baulig  <martin@ximian.com>
10643
10644         * mono-debug-debugger.c
10645         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
10646
10647 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
10648
10649         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
10650         while holding the assemblies lock to prevent deadlocks. Handle the case
10651         where the search hook returns NULL but the assembly was still loaded.
10652         Fixes #323696.
10653
10654         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
10655         modify domain state.
10656
10657 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
10658
10659         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
10660         * Makefile.am (pedump_LDADD): Post-process object files and
10661         add dtrace-generated object file, if necessary.
10662
10663         Code is contributed under MIT/X11 license.
10664
10665 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10666
10667         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
10668
10669 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10670
10671         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
10672
10673 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10674
10675         * threads.c: Try to free everything from the delayed free table
10676         when shutting down threads, and set the variable to NULL after the
10677         table is freed so that calling
10678         mono_thread_hazardous_try_free_all() when shutting down the root
10679         domain doesn't crash.
10680
10681 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10682
10683         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
10684         the caller if resulting type was inflated.
10685
10686         * class.c (mono_class_create_from_typespec): Free the MonoType if it
10687         was inflated.
10688
10689         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
10690
10691
10692 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
10693
10694         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
10695         class library tests.
10696
10697         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
10698         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
10699         #396989.
10700
10701 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10702
10703         * domain.c, domain-internals.h: The JIT infos are now freed by the
10704         JIT info table code.  They are freed immediately if there only a
10705         single JIT info table in circulation.  If there is more, the free
10706         is delayed via a queue.
10707
10708         * threads.c, threads-types.h: New hazard pointer function for
10709         freeing all freeable delayed items in one sitting.
10710
10711 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10712
10713         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
10714
10715         * reflection.c (typebuilder_setup_properties): Same.
10716
10717         * reflection.c (typebuilder_setup_events): Same.
10718
10719 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10720
10721         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
10722         and use it for allocating memory.
10723
10724         * reflection.c (mono_marshal_spec_from_builder): Same.
10725
10726         * reflection.c: Change code to use new signatures.
10727
10728         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
10729
10730 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10731
10732         * decimal.c (rescale128): Put back one line which was accidently commented
10733         out.
10734         
10735         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
10736         to cause crashes.
10737
10738 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10739
10740         * reflection.c (mono_reflection_generic_class_initialize): Name must
10741         be always malloc'ed so we can free it later on. Do this for field, property
10742         and event.
10743
10744         * metadata.c (free_generic_class): Free field, property and event names.
10745
10746 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10747
10748         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
10749         instead of g_memdup.
10750
10751         * reflection.c (typebuilder_setup_fields): Same.
10752
10753 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10754
10755         * decimal.c (rescale128): Optimize this function a bit more.
10756
10757 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10758
10759         * metadata.c (free_generic_class): Release some memory from
10760         SRE generic classes.
10761
10762 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10763
10764         * reflection.c (mono_image_get_generic_field_token): No reference
10765         to name is kept, free it.
10766
10767         * reflection.c (mono_reflection_generic_class_initialize): Free
10768         more memory of the inflated field.
10769
10770 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10771
10772         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
10773         code.
10774
10775 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10776
10777         * reflection.c (mono_dynamic_image_free): Release memory used by
10778         MonoDynamicImage::array_methods elements.
10779
10780         * reflection.c (assembly_add_win32_resources): Release memory after
10781         encoding.
10782
10783 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10784
10785         * decimal.c (log2_32): Use an optimized version for this function too.
10786         
10787         * decimal.c (log2_64): Fix this on 32 bit machines.
10788
10789 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10790
10791         * class.c (mono_dup_array_type): Implement allocation using a mempool.
10792
10793         * class.c (mono_metadata_signature_deep_dup): Same.
10794
10795         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
10796         a mempool.
10797
10798         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
10799
10800         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
10801
10802         * metadata-internals.h: Added mono_metadata_signature_dup_full.
10803
10804         * class-internals.h: Update signatures to take a MonoMemPool.
10805
10806 2008-06-02  Dick Porter  <dick@ximian.com>
10807
10808         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
10809         * icall-def.h: Add
10810         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
10811         FormatMessage API to get the error text.  Fixes bug 321827.
10812
10813 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10814
10815         * decimal.c: Add some micro optimizations to make decimal operations faster.
10816
10817 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
10818
10819         * reflection.c (method_encode_clauses): Take a mempool
10820         as parameter and use it to allocate the clause array.
10821
10822         * reflection.c (mono_image_get_field_on_inst_token): Free
10823         the inflated type after encoding it.
10824
10825         * reflection.c (mono_dynamic_image_free): Free each element
10826         of MonoDynamicImage::gen_params.
10827
10828         * reflection.c (reflection_methodbuilder_to_mono_method):
10829         Allocate the generic param array from the mempool.
10830         Allocate signature params from the mempool.
10831
10832         * reflection.c (mono_reflection_generic_class_initialize):
10833         Free inflated fields after been used.
10834
10835 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
10836
10837         * icall.c: Reapply the memory leak fixes as they no
10838         longer make mono crash.
10839
10840 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
10841
10842         * reflection.c (mono_type_get_object): Don't store the suplied
10843         MonoType with type_hash. A caller which pass a type that
10844         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
10845         might end with a pointer to freed memory.
10846         The solution is to use byval_arg or this_arg from the associated
10847         MonoClass of the supplied type.
10848
10849 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
10850
10851         * icall.c: Revert the rest of the last change as it breaks the build too.
10852
10853 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10854
10855         * icall.c: Revert a leak fix as it's breaking the build.
10856
10857 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10858
10859         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
10860
10861 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10862
10863         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
10864
10865 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10866
10867         * icall.c: Fix some memory leaks.
10868
10869 2008-05-29  Dick Porter  <dick@ximian.com>
10870
10871         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
10872         async socket operations from the pending list when a socket
10873         closes.  Leaving it until the threadpool services the event
10874         exposes a race condition when a socket descriptor is reused.
10875         Fixes bug 377589.
10876
10877 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10878
10879         * object.c: Fix negative index check for array alocation.
10880
10881 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10882
10883         * icall.c, marshal.c: Delegate wrappers should skip visibility.
10884         This check is performed by the verifier for IL created delegates
10885         and by Delegate::CreateDelegate for programatically created ones.
10886         Fixes #372406.
10887
10888 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10889
10890         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
10891         Fix code to use mono_array_size_t instead of int.
10892
10893         Based on patch by Luis F. Ortiz.
10894         Contributed under X11 license.
10895         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10896
10897 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10898
10899         * icall.c: Added ves_icall_System_Array_GetLongLength and
10900         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
10901         arrays.
10902
10903         * icall.h: Export both new functions.
10904
10905         Based on patch by Luis F. Ortiz.
10906         Contributed under X11 license.
10907         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10908
10909 2008-05-28  Martin Baulig  <martin@ximian.com>
10910
10911         The debugger now requires exactly r103463.
10912
10913         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
10914         This version is not supported by the debugger, wait for 72.
10915
10916 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10917
10918         * object.h: Changed array related functions to use
10919         mono_array_size_t instead of guint32. Forgot to commit this file.
10920
10921         Patch by Luis F. Ortiz.
10922         Contributed under X11 license.
10923         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10924
10925
10926 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10927
10928         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
10929         don't define it. Use the number literal instead.
10930
10931 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10932
10933         * icall.c: Changed array related functions to use
10934         mono_array_size_t instead of guint32.
10935
10936         * icall.c (ves_icall_System_Array_GetLength): Check for length
10937         overflow under MONO_BIG_ARRAYS.
10938
10939         Based on patch by Luis F. Ortiz.
10940         Contributed under X11 license.
10941         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10942
10943 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10944
10945         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
10946
10947         Based on patch by Luis F. Ortiz.
10948         Contributed under X11 license.
10949         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10950
10951 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10952
10953         * object.c, object.h: Changed array related functions to use
10954         mono_array_size_t instead of guint32.
10955
10956         Patch by Luis F. Ortiz.
10957         Contributed under X11 license.
10958         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10959
10960 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10961
10962         * object.h: Introduced mono_array_size_t typedef. This must be used
10963         in all places an array length is expected. This is 64bits wide if
10964         MONO_BIG_ARRAYS is enabled.
10965
10966         Patch by Luis F. Ortiz.
10967         Contributed under X11 license.
10968         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10969
10970 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
10971
10972         * security-manager.c class.c: Set the class exception info by calling
10973         mono_class_set_failure ().
10974
10975         * class.c (mono_class_get_exception_data): New accessor function.
10976         (mono_class_set_failure): Store exception_data in the property hash.
10977
10978         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
10979         the struct as a property.
10980
10981         * loader.c (mono_get_method_full): Store the lookup result for method
10982         tokens in method_cache, the others in methodref_cache to decrease the memory
10983         usage of hash tables.
10984
10985         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
10986         (mono_image_init): method_cache is lazy inited now.
10987
10988         * metadata-internals.h (struct _MonoImage): Change method_cache to
10989         a MonoValueHashTable, add a separate methodref_cache.
10990
10991 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
10992
10993         * number-formatter.h: Fix tables to avoid arithemtic overflow in
10994           Double.ToString as exposed by Bug #383531.
10995
10996 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
10997
10998         * number-formatter.h: Make some tables static.
10999
11000         * class.c (mono_method_set_generic_container): New accessor function.
11001         (mono_method_get_generic_container): Ditto.
11002
11003         * class-internals.h (struct _MonoMethod): Remove rarely used 
11004         'generic_container' field, store it in the property hash instead. Add 
11005         'is_generic' boolean field instead.
11006
11007         * image.c (mono_image_init): Initialize property_hash.
11008         (mono_image_close): Destroy property_hash.
11009
11010         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
11011         hold rarely used fields of runtime structures belonging to this image.
11012
11013         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
11014         to get/set method->generic_container.
11015
11016         * loader.c (mono_get_method_from_token): Avoid loading the method header for
11017         generic methods.
11018
11019 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
11020
11021         * class.c (mono_class_inflate_generic_method_full): Don't increase
11022         mono_stats.inflated_method_count for methods found in the cache.
11023
11024         * threads.c (mono_thread_request_interruption): Add a comment about 
11025         QueueUserAPC ().
11026
11027 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
11028
11029         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
11030         interface_offsets_packed table.
11031         
11032         * class.c (mono_class_init): Remove some dead code.
11033
11034         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
11035         mono_class_setup_vtable () when CAS is active to detect security problems.
11036
11037 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
11038
11039         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
11040
11041         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
11042         parameters as it's irrelevant for delegate checking.
11043
11044 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
11045
11046         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
11047
11048         * class.c (mono_class_init): Control the creation of a generic vtable using
11049         a global which is true by default, but set to false by the runtime startup code.
11050         
11051         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
11052         Disabled for now since it breaks the embedding API.
11053         Move the setup of class->methods for arrays to mono_class_setup_methods ().
11054         (mono_class_setup_methods): Add a memory barrier.
11055
11056         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
11057         when mono_class_init () doesn't compute the generic vtable.
11058         
11059 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11060         * profiler.c: Added mono_profiler_install_statistical_call_chain,
11061         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11062         to support call chains (backtrace) in the stat profiler.
11063         * profiler.c, profiler-private.h: Likewise.
11064
11065 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11066
11067         * generic-sharing.c: Init generic class when a method of it is
11068         requested via a runtime generic context.
11069
11070 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11071
11072         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11073
11074         * reflection.c (mono_type_get_object): Add a FIXME.
11075
11076         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11077
11078         * class.c (mono_class_get_method_by_index): New helper function, returning an
11079         entry in the class->methods array.
11080
11081 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11082
11083         * class.c (mono_class_init): Only do the array optimization for szarrays. 
11084         Avoid creating a generic vtable for generic instances as well.
11085         (mono_class_get_method_from_name_flags): Don't search in the metadata for
11086         generic instances.
11087
11088 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
11089
11090         * loader.c (mono_get_method_constrained): Inflate the signature
11091         with class context. Fix #325283.
11092
11093 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11094
11095         * object.c (mono_class_create_runtime_vtable): Add a comment.
11096
11097         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11098         where needed.
11099         (setup_interface_offsets): Handle the case when this is called twice for arrays.
11100         (mono_class_setup_vtable_general): Add an assert.
11101         (mono_class_init): Avoid creating a generic vtable for arrays.
11102
11103         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11104         here, let mono_class_init () do that.
11105
11106         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11107         interfaces in mscorlib.
11108
11109         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11110         interfaces. Add some comments.
11111         (mono_class_init): Call mono_class_setup_methods () here since it is no
11112         longer called by mono_class_setup_vtable ().
11113
11114         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11115         not set in class->vtable.
11116         (mono_class_create_runtime_vtable): Reenable the disabled code.
11117
11118         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11119         now as it causes some test failures.
11120
11121         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11122         if using the vtable trampoline. Also remove some strange code which put the
11123         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11124         stuff as it is no longer needed.
11125
11126 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11127
11128         * pedump.c: Give make --verify all option check code as well.
11129         Using --verify code won't check for metadata now.
11130
11131 2008-05-19  Martin Baulig  <martin@ximian.com>
11132
11133         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11134
11135         * mono-debug.c
11136         (_mono_debug_using_mono_debugger): New global variable; it's set
11137         directly by the debugger, so mono_debug_using_mono_debugger() also
11138         works after attaching.
11139
11140 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11141
11142         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11143         as we do double checked locking on MonoClass::runtime_info and
11144         MonoClassRuntimeInfo::domain_vtables.
11145
11146 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11147
11148         * debug-helpers.c (print_field_value): Fix a warning.
11149
11150 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11151
11152         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11153         set in the AOT case.
11154
11155 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11156
11157         * class.c (mono_class_setup_vtable_general): Use memory barriers
11158         as we do double checked locking on MonoClass::vtable.
11159
11160 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11161
11162         * reflection.c (resolve_object): Inflate only if the generic context
11163         is not null. Fixes #389886.
11164
11165 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11166
11167         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11168         instead of g_free.
11169
11170         Code is contributed under MIT/X11 license.
11171
11172 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11173
11174         * class.c: Revert unrelated change.
11175
11176 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11177
11178         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11179         a generic instantiation, use mono_class_from_mono_type instead of playing
11180         with MonoType directly.
11181
11182 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11183
11184         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11185         checks must ignore generic instantiations, so mono_class_has_parent is not
11186         suitable. Fixes #390128.
11187
11188 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11189
11190         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11191         it to avoid registering tokens during metadata generation. Fixes #390023.
11192
11193 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11194
11195         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11196         consistent.
11197
11198         Contributed under MIT/X11 license.
11199
11200 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11201
11202         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11203         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11204         to fixup the EXE image.
11205         (mono_cleanup): Use mono_close_exe_image.
11206         (mono_close_exe_image): New function.
11207         * image.c: Include "marshal.h".
11208         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11209         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11210         counting when the image is loaded outside of mono_image_open_full. Set status
11211         based on GetLastError.
11212         * coree.c: Include required headers. Add init_from_coree.
11213         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11214         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11215         (_CorExeMain): Set init_from_coree.
11216         (CorExitProcess): Only call ExitProcess for now.
11217         (CorBindToRuntimeEx): New stub implementation.
11218         (CorBindToRuntime): New function.
11219         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11220         (MonoFixupExe): ILONLY executables require no fixups.
11221         (mono_set_act_ctx): New function to set activation context.
11222         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11223         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11224         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11225         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11226         as MONO_INTERNAL.
11227         * domain-internals.h: Add mono_close_exe_image.
11228
11229         Contributed under MIT/X11 license.
11230
11231 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11232
11233         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11234         size for generic param and event tables. Fixes #388977.
11235
11236 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11237
11238         * loader.c (mono_method_signature): Use memory barriers because of the double
11239         checked locking pattern.
11240
11241         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11242         aborting or aborted as well. Fixes #376391.
11243         
11244         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11245         existing runtime state in the Suspend handler during shutdown.
11246
11247 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11248
11249         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11250
11251         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11252         which are starting up or shutting down.
11253
11254         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11255         this function never returns if the runtime is already shutting down.
11256
11257         * icall.c (ves_icall_System_Environment_Exit): Update after 
11258         mono_threads_set_shutting_down () signature change.
11259         
11260 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11261
11262         * class.c: Added can_access_instantiation to verify if the instantiation
11263         is visible. Fix access check for nested types as they returned TRUE
11264         before doing type and generic instantiation visibility checks.
11265
11266 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11267
11268         * reflection.c (mono_reflection_create_generic_class): The created type
11269         must have a different container from its TypeBuilder. Otherwise they
11270         will end sharing generic arguments, which is wrong.
11271
11272         Due to the sharing, making a generic instance of the created type using
11273         the TypeBuider generic arguments resulted in the generic type definition
11274         been returned, which is wrong as well.
11275
11276         As a bonus the code was leaking the type_params array. This memory should
11277         be allocated from the image mempool.
11278
11279         This fixes bug #354047.
11280
11281 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11282
11283         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11284         to here         as they are now used in assembly.c new code.
11285         Added a skipverification flag to MonoAssembly.
11286         New internal function mono_assembly_has_skip_verification.
11287
11288         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11289         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11290         part of #387274.
11291
11292 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11293
11294         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11295         needed. Fixes #387034.
11296
11297         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11298
11299 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11300
11301         * assembly.c (mono_assembly_load_reference): Prevent crash while
11302         disassembling Silverlight 2.0 executables while we still do not
11303         have GACed libraries.
11304
11305 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11306
11307         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11308
11309 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11310
11311         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11312         of the dynamic case. Fixes #387404.
11313
11314 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11315
11316         *verify.c (mono_verifier_is_class_full_trust): If under
11317         verify_all and the verifier mode was not set, only
11318         gac and corlib types are fulltrust. This makes --verify-all
11319         usable to detect unverifiable code, which is the expected
11320         use case.
11321
11322 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11323
11324         * verify.h: Ops, commited the header with debug
11325         enabled.
11326
11327 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11328
11329         * verify.c (merge_stack): Use the new value on unverifiable
11330         stack merges.
11331
11332         * verify.c (verify_type_compatibility_full): Comparison
11333         of nullable types can't use mono_class_is_assignable_from.
11334
11335         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
11336         that makes all verification errors be reported.
11337
11338         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
11339         mono_method_verify.
11340
11341 2008-05-05  Robert Jordan  <robertj@gmx.net>
11342
11343         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
11344         support for value types. See #386415.
11345
11346         * object.c: comments.
11347
11348         Code is contributed under MIT/X11 license.
11349
11350 2008-05-05  Martin Baulig  <martin@ximian.com>
11351
11352         * debug-mono-symfile.h
11353         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
11354         for old pre-terrania symbol files.
11355
11356 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11357
11358         * mono-config.c: Add ppc64 architecture.
11359
11360         Code is contributed under MIT/X11 license.
11361
11362 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11363
11364         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
11365           PPC64 uses function descriptors as well.
11366
11367         Code is contributed under MIT/X11 license.
11368
11369 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
11370
11371         * object.c (compute_class_bitmap): Ignore literal static fields.
11372
11373         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
11374         var has an invalid format.
11375         (describe_ptr): Add some sanity checks for the vtable.
11376         (add_nursery_frag): Clear unused nursery fragments.
11377         (major_collection): Clear all remaining nursery fragments.
11378
11379 2008-05-03  Robert Jordan  <robertj@gmx.net>
11380
11381         * image.c, metadata-internals.h: add thunk_invoke_cache.
11382
11383         * marshal.c, marshal.h: implement
11384         mono_marshal_get_thunk_invoke_wrapper ().
11385
11386         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
11387
11388         Code is contributed under MIT/X11 license.
11389
11390 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11391
11392         * verify.c (do_leave): Empty the stack.
11393
11394 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11395
11396         * class.c (mono_class_is_assignable_from): Variance
11397         doesn't work between reference and value types. For example,
11398         given type C<T+>, C<int32> is not assignable to C<object>.
11399         Break the argument checking loop on first error. 
11400
11401 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
11402
11403         * icall.c : base64_to_byte_array() needs some more strict
11404           check for sequence of '=' characters. Patch by Santa
11405           Marta (http://deee.g.hatena.ne.jp/santamarta).
11406
11407           Contributed under MIT/X11 license.
11408           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
11409
11410 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
11411
11412         * domain.c: Disable LoadLibrary support to fix Win32 build.
11413
11414         Code is contributed under MIT/X11 license.
11415
11416 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
11417
11418         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
11419         to help with cache behaviour.
11420
11421 2008-05-01  Miguel de Icaza  <miguel@novell.com>
11422
11423         * appdomain.c (mono_domain_from_appdomain): Add new accessor
11424         method. 
11425
11426 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
11427
11428         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
11429
11430 2008-05-01  Dick Porter  <dick@ximian.com>
11431
11432         * process.c (process_get_fileversion): Only pass 16 bits of
11433         language ID to VerLanguageName.  Fixes bug 381204.
11434
11435 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11436
11437         * verify.c (mono_method_verify): Fix the comparison
11438         operator for code bounds check.
11439
11440 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11441
11442         * verify.c (mono_method_verify): Check the bounds of
11443         all access of the code array.
11444
11445 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
11446
11447         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
11448
11449 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
11450
11451         * image.c (mono_image_strong_name_position): Fix return value when the rva is
11452         not valid.
11453
11454 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
11455
11456         * loader.c (mono_get_method_from_token, mono_method_signature): Add
11457         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
11458         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
11459         fixup main EXE images when using mono.exe for mixed-mode assembly support.
11460         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
11461         mono_runtime_load.
11462         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
11463         runtime initialization from metadata.
11464         * assembly.c: Remove obsolete ceGetModuleFileNameA.
11465         (mono_set_rootdir): Use mono_get_module_file_name.
11466         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
11467         handles.
11468         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
11469         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
11470         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
11471         MonoCLIImageInfo. Add support for module handles.
11472         (load_cli_header): Update mono_cli_rva_image_map signature.
11473         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
11474         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
11475         (mono_image_rva_map): Add support for module handles.
11476         (mono_image_ensure_section_idx): Add support for module handles.
11477         (mono_image_close): Add support for module handles.
11478         (do_load_header): Add support for module handles.
11479         (mono_image_open_from_module_handle): New function for internal use.
11480         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
11481         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
11482         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
11483         handles.
11484         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
11485         * image.h: Add mono_image_fixup_vtable.
11486         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
11487         support.
11488         * coree.h: New file.
11489         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
11490         unsupported native code.
11491         (mono_marshal_set_callconv_from_modopt): New function splitted from
11492         mono_marshal_get_managed_wrapper.
11493         (mono_marshal_get_managed_wrapper): Use
11494         mono_marshal_set_callconv_from_modopt.
11495         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
11496         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
11497         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
11498         that results in a deadlock when the runtime is loaded in _CorDllMain.
11499         * Makefile.am: Add coree.c and coree.h.
11500
11501         Contributed under MIT/X11 license.
11502
11503 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11504
11505         * generic-sharing.c: Search for type arguments in array element
11506         types as well.
11507
11508 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11509
11510         * class-internals.h, generic-sharing.c: New, small runtime generic context.
11511
11512         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
11513
11514         * object.c: Don't setup the RGCTX when the vtable is created,
11515         because we're setting it up lazily now.
11516
11517 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
11518
11519         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
11520         64 bit support.
11521
11522 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11523
11524         * verify.c (verify_class_for_overlapping_reference_fields): 
11525         If class is under fulltrust allow reference types to overllap
11526         if they have the same RVA.
11527
11528 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11529
11530         * pedump.c: Added new flag valid-only, that makes the verifier
11531         behaves just like --security=validil. It won't fail type load
11532         due to unverifiable restrictions.
11533
11534 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11535
11536         * class-internals.h (struct MonoMethod): Added a verification_success
11537         field to cache verifier executions. Reduced MonoMethod:slot size by
11538         one bit.
11539
11540 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
11541
11542         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
11543         instead of a 'vt' argument to save an indirection and to allow these to be used
11544         for valuetypes.
11545         (scan_vtype): New helper function to scan an area using a gc descriptor.
11546         (mono_gc_wbarrier_value_copy): Implement this.
11547         (handle_remset): Add support for REMSET_VTYPE.
11548         (find_in_remset_loc): Ditto.
11549         (mono_gc_base_init): Allow some debugging options to be controlled through the
11550         use of the MONO_GC_DEBUG env variable.
11551         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
11552         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
11553
11554 2008-04-23  Martin Baulig  <martin@ximian.com>
11555
11556         * domain.c (mono_domain_create): Move the call to
11557         mono_debug_domain_create() down, after allocating the domain id.
11558
11559 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11560
11561         verify.c (verify_class_for_overlapping_reference_fields): Skip
11562         static fields while verifying for overlapping fields as they
11563         don't matter at all.
11564
11565 2008-04-23  Marek Habersack  <mhabersack@novell.com>
11566
11567         * domain-internals.h: added a declaration of
11568         mono_make_shadow_copy.
11569
11570         * assembly.c (mono_assembly_open_full): shadow copying of
11571         assemblies moved to here, so that all the assemblies within the
11572         application domain's private binary directories can be
11573         processed. Fixes bug #380546
11574
11575         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
11576         mono_make_shadow_copy and made non-static. The decision whether
11577         to shadow-copy an assembly is made based on its location - it's
11578         copied if it's in one of the private application domain binary
11579         directories and its different to the target file in the shadow
11580         directory. Fixes bug #380546
11581
11582 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
11583
11584         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
11585
11586         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
11587         types.
11588
11589         * reflection.c (mono_image_create_token): Handle 
11590         Method/ConstructorOnTypeBuilderInst.
11591         (resolve_object): Ditto.
11592         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
11593         so it can be called from resolve_object. Also handle the case when the inflated
11594         class already has its methods setup.
11595
11596 2008-04-21  Martin Baulig  <martin@ximian.com>
11597
11598         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
11599
11600 2008-04-20  Geoff Norton  <gnorton@novell.com>
11601
11602         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
11603         pointer dereference.
11604
11605 2008-04-15  Marek Habersack  <mhabersack@novell.com>
11606
11607         * appdomain.c (try_load_from): if IOMAP is in effect, call the
11608         portability API to look up the assembly file. Fixes behavior in
11609         situations when the application has a bin/ directory, but the
11610         assembly search patch refers to Bin/ (and thus the requested file
11611         name is Bin/SomeLibrary.dll). Fixes bug #379888
11612
11613 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
11614
11615         verify.c (mono_type_is_generic_argument): Extracted this check
11616         from a dozen places to here.
11617
11618         verify.c: Fixed all issues related to boxing generic arguments
11619         and their constraints.
11620
11621 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
11622
11623         verify.c (mono_class_interface_implements_interface): Fix win32 build.
11624
11625 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
11626
11627         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
11628         isn't finished yet. Fixes #363447.
11629
11630 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
11631
11632         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
11633         Fixes #346419.
11634
11635 2008-04-13  Jb Evain  <jbevain@novell.com>
11636
11637         * domain.c: update the 2.1 profile versions.
11638         Merged from the Moonlight 2 branch.
11639
11640 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
11641
11642         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
11643         mscorlibs for the non-refonly case as well.
11644
11645         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
11646         in mono_assembly_load_from_full (). Fixes #378924.
11647
11648 2008-04-11  Geoff Norton  <gnorton@novell.com>
11649
11650         * icall.c: The global extern environ doesn't exist on Mac.  We
11651         need to call NSGetEnviron instead.
11652
11653 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11654
11655         verify.c: Add generic method constraint verification.
11656
11657 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11658
11659         class.c (mono_class_inflate_generic_method_full): Add a long
11660         explanation to the is_mb_open hack. Remove the FIXME.
11661
11662 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11663
11664         * verify.c (mono_method_verify): Mark all unknown opcodes
11665         as invalid. Mark jmp as unverifiable.
11666
11667 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11668
11669         * verify.c: Add code to do type constraint verification on class instances.
11670
11671         * verify.c (mono_verifier_verify_class): Use the type constraint 
11672         verification code.
11673
11674 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11675
11676         * class.c (mono_class_get_field_default_value): Don't pass cindex
11677         as hint to mono_metadata_get_constant_index. The local is not initialized
11678         and should contain garbage most of the time. This could only work
11679         with a lot of luck.
11680
11681 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11682
11683         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
11684
11685 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11686
11687         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
11688
11689         * class.c (mono_class_from_generic_parameter): Save the token of the
11690         generic param in MonoClass::sizes.generic_param_token.
11691
11692         * reflection.c (mono_custom_attrs_from_class): If the class type is
11693         VAR or MVAR retrieve the attributes of the generic param.
11694
11695 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11696
11697         * class.c (mono_class_init): Do class verification if the verifier
11698         is enabled.
11699
11700 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11701
11702         * verify-internal.h: Added mono_verifier_verify_class.
11703
11704         * verify.c: Added mono_verifier_verify_class. It checks for
11705         classes with explicit layout that have overlapping reference fields.
11706
11707         * pedump.c: Init the verifier state prior to verification. Fixed
11708         command line arguments.
11709
11710 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11711
11712         * Makefile.am: Added verify-internals.h, hopefully fix the build.
11713
11714 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
11715
11716         * verify-internals.h: Fix a warning.
11717
11718 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11719
11720         * verify-internals.h: New header with the verifier configuration
11721         extracted from mini.c.
11722
11723         * verify.c: Implemented the new functions exported by verify-internals.h.
11724
11725 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11726
11727         * verify.c: Add proper verification of ckfinite.
11728
11729 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11730
11731         * verify.c (do_conversion): Improved error message to something
11732         more meanfull.
11733
11734         * verify.c (check_is_valid_type_for_field_ops): Fix to work
11735         with primitive types.
11736
11737 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11738
11739         * verify.c: Added tail prefix checking. Marked icall
11740         as unverifible.
11741
11742 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11743
11744         * verify.c: Fix the detection of branches to the middle
11745         of an instruction.
11746
11747 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
11748
11749         * verify.c: Implemented verification of volatile. and
11750         unaligned. prefix. Check if a type is valid after retrieving it.
11751
11752 2008-04-01  Dick Porter  <dick@ximian.com>
11753
11754         * process.c (process_get_fileversion): If there's no string block,
11755         set the file language to en_US.  Fixes the other new part of bug
11756         374600.
11757
11758 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
11759
11760         * class.c: New functions mono_method_can_access_field_full and
11761         mono_method_can_access_method_full. They perform type visibility
11762         and type site check.
11763
11764         * class-internal.h: Added exported functions.
11765
11766         * verify.c: Use new functions to implement proper visibility checks.
11767
11768 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
11769
11770         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
11771
11772 2008-03-28  Dick Porter  <dick@ximian.com>
11773
11774         * process.c (process_get_fileversion): Use the first language ID
11775         we see, rather than insisting on an invariant language.  Fixes bug
11776         374600.
11777
11778 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
11779
11780         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
11781         the streams to fix reading of invalid memory later.
11782
11783         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
11784         to ease debugging.
11785
11786 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
11787
11788         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
11789         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
11790
11791 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
11792         * threads.h: Added MonoThreadManageCallback type and
11793         mono_thread_set_manage_callback prototype
11794         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
11795         (used to store the mono_thread_manage callback).
11796         * threads.c: Added mono_thread_set_manage_callback, and handle
11797         "MonoThread->manage_callback" in build_wait_tids.
11798
11799 2008-03-26  Dick Porter  <dick@ximian.com>
11800
11801         * process.c (process_get_fileversion): Set FileVersionInfo strings
11802         to Empty when the resource doesn't have the particular info.
11803         Fixes bug 355717.
11804
11805 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
11806
11807         * verify.c (mono_method_verify): Proper prefix validation.
11808
11809 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
11810
11811         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
11812         itself in a separate argument instead of throwing them. Fixes #373448.
11813
11814         * appdomain.c: Bump corlib version.
11815
11816 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
11817
11818         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
11819
11820 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
11821
11822         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
11823         version macros.
11824
11825 2008-03-20  Mark Probst  <mark.probst@gmail.com>
11826
11827         * generic-sharing.c, class-internals.h: Code for putting
11828         reflection types into the runtime generic context.
11829
11830 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
11831
11832         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
11833         Fixes #340662. 
11834
11835
11836 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
11837
11838         * verify.c (VerifyContext): Added instruction prefix data to the struct.
11839
11840         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
11841
11842         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
11843
11844         * verify.c (do_cast): Let the result value keep the boxed status.
11845
11846         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
11847
11848 2008-03-17  Jb Evain  <jbevain@novell.com>
11849
11850         * reflection.c: when running on a 2.0 runtime, emit
11851         unconditionally the #~ header version as 2.0, and the
11852         CLI header version as 2.5, for symmetry's sake with csc.
11853
11854 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
11855
11856         * class.c: Remove the unused cache_interface_offsets stuff.
11857
11858         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
11859         profiler.c: Fix warnings.
11860
11861 2008-03-16  Mark Probst  <mark.probst@gmail.com>
11862
11863         * generic-sharing.c, class-internals.h: Support for putting
11864         methods into the runtime generic context.
11865
11866 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
11867
11868         * class.c (mono_class_setup_fields): Ignore calls made to this function for
11869         classes which are generic instances of not-yet finished typebuilders. Fixes
11870         #351172.
11871
11872         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
11873
11874 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
11875
11876         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
11877
11878         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
11879         field, replace it with a hash table in MonoDynamicImage.
11880
11881         * reflection.c (inflate_mono_method): Access the generic definition object from
11882         image->generic_def_objects instead of imethod->reflection_info.
11883
11884         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
11885
11886         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
11887         
11888         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
11889         function in reflection.c so it is easier to keep in sync with the dynamic image
11890         creation code.
11891
11892         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
11893         mono_image_close ().
11894
11895 2008-03-15  Mark Probst  <mark.probst@gmail.com>
11896
11897         * class.c (mono_class_generic_sharing_enabled): Disable generic
11898         sharing for all architectures except AMD64 and x86 to fix build.
11899
11900 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
11901
11902         * verify.c: Use the generic definition MonoGenericContext when available.
11903         Remove code for checking generics instance compatibility in favor of
11904         mono_class_is_assignable_from.
11905
11906 2008-03-14  Mark Probst  <mark.probst@gmail.com>
11907
11908         * marshal.c, marshal.h, metadata-internals.h, image.c,
11909         wrapper-types.h: New wrapper for invoking a shared static method
11910         without having to pass the runtime generic context argument.
11911
11912 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
11913
11914         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
11915
11916 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
11917
11918         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
11919         
11920         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
11921         create a token from a FieldOnTypeBuilderInst.
11922         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
11923         (resolve_object): Ditto.
11924
11925         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
11926         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
11927
11928 2008-03-14  Martin Baulig  <martin@ximian.com>
11929
11930         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
11931
11932         * debug-mono-symfile.h
11933         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
11934         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
11935
11936 2008-03-10  Martin Baulig  <martin@ximian.com>
11937
11938         * debug-mono-symfile.h
11939         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
11940         `lexical_block_table_offset'.
11941         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
11942         `lexical_blocks'.
11943         (MonoSymbolFile): Added `version'.
11944
11945         * mono-debug.h
11946         (MonoDebugLexicalBlockEntry): Removed.
11947         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
11948         `lexical_blocks'.
11949
11950         * mono-debug.c (mono_debug_add_method): Don't compute lexical
11951         blocks here; the debugger now does this internally.
11952
11953 2008-02-27  Martin Baulig  <martin@ximian.com>
11954
11955         * object.c (mono_runtime_exec_main): Call
11956         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
11957         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
11958
11959 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
11960
11961         * verify.c (verify_type_compatibility_full): Allow native int to be converted
11962         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
11963
11964 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
11965
11966         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
11967         ldftn with a virtual method.
11968
11969 2008-03-13  Geoff Norton  <gnorton@novell.com>
11970
11971         * decimal.c:  Only include memory.h if the platform has it.
11972
11973 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
11974
11975         * assembly.c, class.c, metadata-internals.h: make sure public key
11976         tokesns are compared in a case-insensitive way. Also, all
11977         the lookups in the GAC use a lowercase public key token
11978         (gaacutil already does the lowercasing on install). Fixes
11979         bug #369541.
11980
11981 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
11982
11983         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
11984         and return value.
11985
11986 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
11987
11988         * image.c: when someone loads a mscorlib from a file, return the
11989         currently loaded mscorlib (fixes bug #369253).
11990
11991 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
11992
11993         * class.c: handle types with no parents by forcing them to have
11994         System.Object as a parent and marking them as broken (this currently
11995         allows the first part of bug #369173 to work as well, likely because
11996         we don't check for typeload exceptions everywhere yet).
11997
11998 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
11999
12000         * class.c: more complete check that types belong to corlib
12001         (fixes second part of bug #369173).
12002
12003 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
12004
12005         * generic-sharing.c:  Including glib.h for the MSVC builds to define
12006           "inline" to "__inline" before including mono-membar.h.
12007           
12008         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
12009           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
12010           MSVC builds.
12011
12012         Contributed under MIT/X11 license.
12013
12014 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12015
12016         * verify.c (do_invoke_method): Remove return type validation.
12017
12018         * verify.c (do_ret): Do return type validation at return site instead of
12019         call site.
12020
12021 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12022
12023         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
12024
12025         * verify.c: Some todos cleaned and improved a few error messages.
12026
12027 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
12028
12029         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
12030
12031 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12032
12033         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
12034         system types correctly.
12035
12036         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
12037         function.
12038
12039 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12040
12041         * assembly.c (build_assembly_name): Fix a warning.
12042
12043 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
12044
12045         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
12046         the called function takes an object type argument. Fixes storing or
12047         valuetypes across remoting as well as reducing memory usage.
12048         * image.c, metadata-internals.h: remove now unused ldfld_remote and
12049         stfld_remote wrapper caches.
12050
12051 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12052
12053         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
12054         is not found.
12055
12056         * reflection.c (mono_image_register_token): New helper function to save
12057         a token->object mapping.        
12058
12059         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12060         managed code.
12061
12062         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12063         one dimension arrays. Fixes #367670.
12064         (mono_reflection_get_type_internal): Ditto.
12065
12066 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12067
12068         * marshal.c: mono_load_remote_field_new() always returns object.
12069         so use the proper signature (fixes bug #366445).
12070
12071 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12072         
12073         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
12074         add an 'inline_failure' flag instead.
12075
12076 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12077
12078         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12079         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
12080         contains the location of "this", used for exception handling.
12081
12082 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12083
12084         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12085         their size on all platforms for perf reasons.
12086
12087 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12088
12089         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12090         object-internal.h
12091
12092         * object-internal.h: Same.
12093
12094 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12095
12096         * reflection.h: Fix the build I just broke.
12097
12098 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12099
12100         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12101         Test if a token is valid, this remove explicit usage of 
12102         MonoDynamicImage::tokens from the verifier code.
12103
12104         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12105
12106         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12107         instead of direct access to MonoDynamicImage::tokens.
12108
12109 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12110
12111         * verify.c (token_bounds_check): Fix the build I just broke.
12112
12113 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12114
12115         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12116
12117         * verify.c (verifier_load_method): Fixed the errors message.
12118
12119         * verify.c (mono_method_verify): Fixed a debug message.
12120
12121 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12122
12123         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12124         mono-perfcounters.h, class-internals.h: support for predefined
12125         writable counters, query of categories and counters, bugfixes.
12126
12127 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12128
12129         * verify.c (do_refanytype): Verify the refanytype opcode.
12130
12131         * verify.c (mono_method_verify): Use do_refanytype.
12132
12133 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12134
12135         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12136
12137         * verify.c (mono_method_verify): Use do_mkrefany.
12138
12139 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12140
12141         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12142         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12143         implementation.
12144
12145 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12146
12147         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12148         the type load exception.
12149
12150 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12151
12152         * verify.c: Added a few FIXME for method signatures
12153
12154         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12155         of mono_method_get_signature and get vararg call working. Removed unused
12156         checks for return value.
12157
12158         * verify.c (do_refanyval): Verify the refanyval opcode.
12159
12160         * verify.c (mono_method_verify): Implemented verification of arglist and
12161         use do_refanyval.
12162
12163 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12164
12165         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12166         vtypes to marshal.c.
12167
12168         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12169         it works for AOT as well.
12170
12171 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12172
12173         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12174         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12175         the system time is adjusted.
12176
12177 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12178
12179         * icall.c, icall-def.h: use the new time functions (fixes the
12180         non-monotonic behaviour of TickCount).
12181
12182 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12183
12184         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12185         it breaks the build.
12186         
12187         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12188         cattr is not finished yet.
12189
12190 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12191
12192         * verify.c: Proper token validation for field, method and type.
12193
12194 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12195
12196         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12197
12198         * loader.c (method_from_memberref): Generate type load error instead of method missing
12199         if the type is not found.
12200
12201 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12202
12203         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12204         some of the conversions caused the generation of a marshal directive exception.
12205
12206 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12207
12208         verify.c: Report which exception should be thrown by the JIT.
12209         Added a lot of FIXME notes.
12210
12211 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12212
12213         * generic-sharing.c: Runtime generic context slots are not
12214         instantiated on init anymore.  Instead, provide function to do the
12215         instantiating on demand.
12216
12217         * class-internals.h: Added vtable to runtime generic context.
12218         Macros for encoding direct and indirect slot offsets in one
12219         guint32.
12220
12221 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12222
12223         * object.c, generic-sharing.c: Moved some generic sharing code
12224         from object.c to generic-sharing.c.
12225
12226         * generic-sharing.c: Added support for extensible runtime generic
12227         context.
12228
12229         * metadata-internals.h: Two new hash tables in MonoImage for
12230         extensible runtime generic context support.
12231
12232         * domain.c: Unregister generic vtables upon domain unloading.
12233
12234         * image.c: Destroy new hash tables upon image unloading.
12235
12236         * metadata.c: Unregister generic subclasses upon image unloading.
12237
12238         * class-internals.h: New data structure for runtime generic
12239         context template.  New fields in the runtime generic context for
12240         extensible part.
12241
12242         * Makefile.am: Added generic-sharing.c.
12243
12244 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12245
12246         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12247         there is a pending loader exception, raise it.
12248
12249         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12250         same.
12251
12252         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12253         same.
12254
12255         Fixes #363450.
12256
12257 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12258
12259         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12260
12261         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12262         
12263         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12264         ref-only requests for compatibility with MS.
12265
12266 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12267
12268         * reflection.c (mono_custom_attrs_from_method): Don't silently
12269         return an empty list for generic method instances.
12270         (mono_custom_attrs_from_param): Likewise.
12271
12272 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12273             Raja R Harinath  <harinath@hurrynot.org>
12274
12275         Fix #354757
12276         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12277         * class.c (mono_class_inflate_generic_method_full): Initialize it
12278         when a fully-open method is instantiated.
12279         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12280         to new field.
12281         * reflection.c (inflate_mono_method): Don't create a temporary context.
12282
12283 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12284
12285         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12286         Compute correct value, to prepare for imethod->reflection_info going away.
12287
12288 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12289
12290         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12291
12292 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12293
12294         * verify.c: Implement skip visibility flag.
12295
12296 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12297
12298         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12299         which contains an extra field to tell the kind of exception that should be thrown.
12300
12301         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12302
12303 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12304
12305         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12306         'method' is updated.
12307
12308 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12309
12310         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12311         explicit layout as well. Fixes #360375.
12312
12313 2008-02-11  Geoff Norton  <gnorton@novell.com>
12314
12315         * loader.c: Guard and dereference against inflated generic methods
12316
12317 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12318
12319         * class.c: Include Retargetable spec in assembly name.
12320         * assembly.c: Always include PublicKeyToken spec in assembly name
12321         (with value "null" if assembly is not signed), and include
12322         Retargetable spec.
12323         * icall-def.h: Added icall for Assembly.get_fullname.
12324         * icall.c: Added icall returning the fullname of an assembly.
12325
12326 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12327
12328         * class.c (mono_class_setup_vtable_general): Add a missing call to
12329         mono_class_setup_methods () which is needed in the AOT case.
12330
12331 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
12332
12333         * verify.c (mono_type_get_stack_name): Added. Return the name for the
12334         stack type of the given MonoType.
12335
12336         * verify.c (verify_type_compatibility_full): Handle the void type.
12337
12338         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
12339         way stack merging works.
12340
12341         * verify.c (store_local): Improved verification message.
12342
12343         * verify.c (do_branch_op): If the merging is invalid, the method
12344         is unverifiable and not invalid. Improved error message.
12345
12346         * verify.c (merge_stacks): Properly merge a boxed valuetype and
12347         a reference type diferent than System.Object. Improved error
12348         message.
12349
12350 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
12351
12352         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
12353
12354         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
12355         type of an enum even if the argument is byref.
12356
12357         * verify.c: Replace all explicit uses of enumtype and enum_basetype
12358         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
12359
12360         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
12361
12362         *verify.c (verify_type_compatibility_full): Make enum types
12363         compatible with their base types.
12364
12365         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
12366         types are compatible for the special case of a boxed valuetype and
12367         System.Object.
12368
12369         * verify.c (verify_stack_type_compatibility): The function
12370         is_compatible_boxed_valuetype was extracted from here.
12371
12372         * verify.c (push_arg): Only set ctx->has_this_store if the method
12373         is not static.
12374
12375         * verify.c (do_ldelem): Fixed a typo in an error message and added
12376         strict check for mixing int32 and native int as the array type
12377         and ldelem type.
12378
12379         * verify.c (merge_stacks): Consider boxed valuetypes in the
12380         compatibility checks.
12381
12382 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
12383         * profiler.h: (MonoGCEvent): Added start-stop the world events.
12384
12385 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12386         *class.c: use_new_interface_vtable_code: renamed the env var to have
12387         a "MONO_" prefix, and fix the logic to enable it by default.
12388
12389 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12390         *class.c:
12391         mono_class_setup_vtable_general: rewrote the way in which interface
12392         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
12393         makes the code more maintainable.
12394         For now the old code is still there, and can be activated setting
12395         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
12396
12397 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
12398
12399         * verify.c: guarded some debug functions around and #ifdef.
12400
12401         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
12402
12403 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12404
12405         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
12406         changes for now since they seem to break too many things.
12407
12408 2008-02-05  Mark Probst  <mark.probst@gmail.com>
12409
12410         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
12411         mono_marshal_find_nonzero_bit_offset): Added macro and function
12412         for finding the byte- and bit-offset of a bitfield within a
12413         struct.
12414
12415 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
12416
12417         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
12418         (mono_marshal_get_struct_to_ptr): Ditto.
12419
12420         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
12421         cctor_signature.
12422
12423 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
12424
12425         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
12426         between methods for non-corlib types.
12427
12428 2008-02-02  Geoff Norton  <gnorton@novell.com>
12429
12430         * loader.c (mono_method_get_param_names): Populate the parameter name for 
12431         generic parameters as well. (Fixes #342536)
12432
12433 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
12434
12435         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
12436
12437         * verify.c (do_invoke_method): Fix for calling with byref structs.
12438
12439         * verify.c (do_cast): push a boxed value type based on the type token and not
12440         the type of stack.
12441
12442 2008-01-31  William Holmes  <billholmes54@gmail.com>
12443
12444         * process.c (process_module_string_read): Check the size returned form 
12445           VerQueryValue to avoid out of memory exception. 
12446
12447 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
12448
12449         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12450         Handle properly modules which are not in the moduleref table. Fixes
12451         #356938.
12452
12453 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
12454
12455         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
12456         the dynamic case which is now in managed code.
12457         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
12458
12459         * marshal.c (mono_string_to_bstr): Fix a warning.
12460         (init_com_provider_ms): Ditto.
12461
12462         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
12463
12464         * exception.c (mono_get_exception_out_of_memory): New helper function.
12465
12466 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
12467
12468         * marshal.c: Add support for BSTR marshalling
12469         using other COM systems.
12470
12471         Code is contributed under MIT/X11 license.
12472
12473 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12474
12475         * object.c (mono_runtime_invoke_array): reverted previous
12476         commit as it breaks the build.
12477
12478 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12479
12480         * object.c (mono_runtime_invoke_array): Verify arguments for
12481         invalid types. Fixes #348522.
12482
12483 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12484
12485         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
12486         non-final virtual calls using call. 
12487
12488         * verify.c (do_invoke): fixed some TODOs.
12489
12490         * verify.c (push_arg): set has_this_store for "ldarga 0".
12491
12492 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
12493
12494         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
12495         which belong to an inflated class. Fixes #356531.
12496
12497 2008-01-26  Robert Jordan  <robertj@gmx.net>
12498
12499         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
12500         which resort to FindFirstFile when a certain error condition
12501         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
12502         Code is contributed under MIT/X11 license.
12503
12504 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
12505
12506         * marshal.c (emit_marshal_string): Fix out string marshalling
12507         to use specified encoding. Fixes #323900.
12508
12509         Code is contributed under MIT/X11 license.
12510
12511 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
12512
12513         * class.c (mono_class_inflate_generic_method_full): Don't modify
12514         iresult->context after cache check.
12515
12516 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
12517
12518         * class.c (mono_class_inflate_generic_method_full): Change the
12519         struct assignments to memcpy for better visibility and add some comments.
12520
12521 2008-01-23  Dick Porter  <dick@ximian.com>
12522
12523         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
12524         procedure, and make it work on windows.
12525
12526 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
12527
12528         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
12529         a MonoReflectionTypeBuilder since it is always of that type.
12530
12531         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
12532
12533         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
12534
12535         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
12536         
12537         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
12538
12539         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
12540
12541         * reflection.c (mono_reflection_create_runtime_class): Remove already created
12542         instantiations from the type cache.
12543
12544 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12545
12546         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
12547
12548         * verify.c (do_unbox_value): push a controled mutability managed pointer.
12549
12550 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12551
12552         * verify.c (do_ldstr): added, verifies if the #US token is valid.
12553
12554         * verify.c (mono_method_verify): removed old TODO
12555
12556 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12557
12558         * verify.c (do_newobj): add visibility check.
12559
12560 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12561
12562         * verify.c (do_load_function_ptr): add visibility check.
12563
12564 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
12565         *class.c:
12566         mono_generic_class_get_class: hook profiler events.
12567         mono_field_get_offset: added to support heap-shot in the new profiler.
12568         *class.h: exported mono_field_get_offset.
12569         * reflection.c:
12570         mono_reflection_setup_internal_class: hook profiler events.
12571
12572 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
12573
12574         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
12575         argument here too and use it to avoid checking for pending exceptions if 
12576         possible.
12577
12578 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
12579
12580         * assembly.c (build_assembly_name): add arg for passing the assembly
12581         flags. Do not consider a PublicKey with value "null" valid.
12582         (mono_assembly_name_parse_full): added boolean argument that will be
12583         set if the assembly name contains a PublicKeyToken spec. Added support
12584         for the Retargetable spec for which only Yes or No are allowed as valid
12585         value. Consider assembly name invalid if Retargetable spec is set, but
12586         either version, culture or public key (token) are not specified.
12587         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
12588         with implementation in assembly.c.
12589         * icall.c (fill_reflection_assembly_name): also copy assembly flags
12590         from MonoAssemblyName.
12591         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
12592         introduced argument for mono_assembly_name_parse_full to know if the
12593         assembly name has a PublicKeyToken spec, and if it has instruct
12594         fill_reflection_assembly_name to use default value for keyToken (if
12595         PublicKeyToken is null).
12596
12597 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12598
12599         * verify.c (mono_method_verify): fixed ovf ops with
12600         float values. They are unverifiable now.
12601
12602 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12603
12604         * class.c (set_failure_from_loader_error): add BadImageException to the
12605         list of exceptions that can cause a type to fail to load.
12606
12607         * class.c (mono_class_get_exception_for_failure): same.
12608
12609 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
12610
12611         * verify.c (in_any_exception_block): added, check if offset
12612         is part of any exception handling clause.
12613
12614         * verify.c (get_stack_type): added VAR and MVAR types.
12615
12616         * verify.c (do_stobj): better error messages.
12617
12618         * verify.c (do_cpobj): added, check cpobj.
12619
12620         * verify.c (do_initobj): added, check initobj.
12621
12622         * verify.c (do_sizeof): added, check sizeof.
12623
12624         * verify.c (do_localloc): added, check localloc.
12625
12626         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
12627
12628 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
12629
12630         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
12631         save_lmf/restore_lmf opcodes.
12632
12633         * threads.c (mono_threads_install_notify_pending_exc): New function to
12634         install a callback notifying the JIT there is a pending exception on a thread.
12635         (mono_thread_request_interruption): Call the new callback.
12636         (mono_thread_get_and_clear_pending_exception): New function to return the
12637         exception pending on a thread.
12638
12639         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
12640         to turn off checking for pending exceptions.
12641         (mono_marshal_get_native_wrapper): Ditto.
12642
12643 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12644
12645         * threads-types.h: Get rid of the unnecessary extern declarations.
12646
12647 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
12648
12649         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
12650         return field from parent class if not private.
12651         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
12652         returns fields from parent class if they are not private.
12653         (method_nonpublic): added function to determine if a given method
12654         should be considered non-public. Returns false for private methods
12655         on parent class, and internal methods from parent on the 1.0 profile.
12656         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
12657         use method_nonpublic function to determine whether method should be
12658         returned.
12659         (property_accessor_public): use newly introduced method_nonpublic
12660         function to determine whether accessor is non-public. 
12661         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
12662         event from parent class if not private. Only return static event if
12663         Static flag is set, and only return static event from parent class if
12664         FlattenHierarchy flag is set.
12665         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
12666         include non-private events from parent class.
12667
12668 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12669
12670         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
12671         warning.
12672
12673 2008-01-16  Wade Berrier <wberrier@novell.com>
12674
12675         * security.c: Add assembly.h header to appease some warnings
12676
12677 2008-01-16  Dick Porter  <dick@ximian.com>
12678
12679         * process.c (process_module_string_read): Remove trailing null
12680         when saving string.
12681
12682 2008-01-16  Mark Probst  <mark.probst@gmail.com>
12683
12684         * class-internals.h: A new data structure describing the layout of
12685         a runtime generic context (MonoRuntimeGenericContextTemplate).
12686
12687         * metadata-internals.h: Added a hash table to MonoDomain that maps
12688         from open generic classes to their runtime generic context
12689         templates.
12690
12691         * object.c: Building of the runtime generic context, including
12692         proper handling of generic type arguments of superclasses.
12693         Building of the runtime generic context according to the template.
12694
12695 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
12696
12697         * class.c (mono_class_setup_fields): Set field.count for generic instances.
12698         Fixes #350856.
12699
12700         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
12701         mono_portability_find_file (). Fixes #325466.
12702         (mono_image_get_public_key): Fix a warning.
12703
12704 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
12705
12706         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
12707         Fixes #353550.
12708         (mono_class_from_name_case): Ditto.
12709
12710 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
12711
12712         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
12713           common storage for the tables used in the System/NumberFormatter class.
12714
12715 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
12716
12717         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
12718
12719 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
12720
12721         * verify.c (get_boxable_mono_type): check if the token is valid.
12722
12723         * verify.c (set_stack_value): changed to add an error if an
12724         invalid type is set on stack. Changed all callers due to signature change.
12725
12726         * verify.c (do_stobj): implement stobj validation.
12727
12728 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
12729
12730         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
12731         set container->is_method, it was set earlier.
12732
12733         * metadata.c (type_in_image): Handle MVARs which belong to not finished
12734         generic methods.
12735
12736         * reflection.c (mono_reflection_initialize_generic_parameter): Set
12737         is_method of the generic container to TRUE for methods.
12738
12739 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12740
12741         * metadata.c (type_in_image): Handle type parameters properly.
12742
12743         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
12744         memory ownership of this structure.
12745
12746 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
12747
12748         * verify.c (get_boxable_mono_type): make typedref types been just
12749         unverifiable. check for void type.
12750
12751         * verify.c (do_unbox_any): added, verify opcode unbox.any.
12752
12753         * verify.c (do_load_function_ptr): accept method spec tokens.
12754
12755 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12756
12757         * marshal.c (mono_class_native_size): Always set *align even if this is called
12758         recursively.
12759
12760 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
12761
12762         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
12763         out-of-date.
12764
12765 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
12766
12767         * verify.c: removed some old unused tables. A huge bunch of small fixes
12768         to things found while testing the verifier with mono basic.
12769
12770         * verify.c (dump_stack_value): dump null literal flag to.
12771
12772         * verify.c (verify_type_compatibility_full): fix comparison
12773         for types that have a generic super type.
12774
12775         * verify.c (verify_stack_type_compatibility): fix compatibility
12776         between null literals and reference types. fix compatibility between
12777         boxed valuetypes and object. fix corner case test for enums.
12778
12779         * verify.c (do_cmp_op): proper verification of cgt.un in case
12780         of reference types.
12781
12782         * verify.c (do_invoke_method): fix error message.
12783
12784         * verify.c (do_store_indirect
12785
12786         * verify.c (check_is_valid_type_for_field_ops): proper verification
12787         of managed pointers to valuetypes and boxed valuetypes. proper verification
12788         of null literals.
12789
12790         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
12791         allow token to be a reference type.
12792
12793         * verify.c (do_cast): proper handling of boxes valuetypes.
12794
12795         * verify.c (do_stelem): proper handling of storing a boxed valuetype
12796         in object[].
12797
12798         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
12799         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
12800         fixed the decoding of unbox_any
12801
12802 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
12803
12804         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
12805
12806 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
12807
12808         * verify.c (do_newobj): do delegate verification.
12809
12810         * verify.c (verify_delegate_compatibility): perform delegate
12811         verification.
12812
12813         * verify.c (verify_ldftn_delegate): perform tests related to
12814         ldftn delegates.
12815
12816         * verify.c (mono_delegate_signature_equal): perform the
12817         slightly diferent signature comparison required by delegates.
12818
12819         * metadata.c (mono_metadata_type_equal_full): added and exported
12820         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
12821         allows signature only comparison.
12822
12823         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
12824         as MONO_INTERNAL.
12825
12826 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
12827
12828         * verify.c: added a bunch of stack_slot_* functions to
12829         make access to stack slot type easier. This is required to
12830         allow optional flags, like null literal, boxed value and
12831         this pointer.
12832         All access paths to IlStackDesc::stype have been changed 
12833         to use these new funcions.
12834         Removed a bunch of unused functions and cleared all warnings.
12835         This patch introduces the usage of the this pointer and 
12836         boxed value flags.
12837
12838 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
12839
12840         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
12841
12842 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
12843
12844         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
12845         match managed version.
12846
12847         * appdomain.c: Bump corlib version.
12848         
12849         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
12850         argument.
12851
12852 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
12853
12854         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
12855         Set public key token to zero-length byte array if assembly is not
12856         strongnamed.
12857
12858 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
12859
12860         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
12861         writing a vtype array elem.
12862
12863 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
12864
12865         * assembly.c (build_assembly_name): return FALSE if length of token is
12866         not 16 (if not "null").
12867         (mono_assembly_name_parse_full): return FALSE if value of version,
12868         culture, token or key is 0.
12869         * icall.c (fill_reflection_assembly_name): add boolean arguments to
12870         specify whether public key and public key token must be set to default
12871         value (zero-length byte array) if not available. Set versioncompat to
12872         SameMachine. If public key is available or the default is set, then
12873         set PublicKey flag.
12874         (ves_icall_System_Reflection_Assembly_FillName): if no public key
12875         is available, use empty byte array as default value. On the 2.0
12876         profile, use default value for public key token if not set.
12877         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
12878         profile, use default value for public key if not set. On the 2.0
12879         profile, use default value for public key token if not set.
12880         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
12881         default values for public key and public key token.
12882
12883 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
12884
12885         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
12886         field to keep it in synch with the managed object.
12887
12888         * marshal.c (emit_marshal_object): Add support for byref marshalling of
12889         delegates. Fixes #351520.
12890
12891         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
12892         contains defined memory.
12893         
12894         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
12895
12896         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
12897         
12898         * sgen-gc.c (check_consistency): New helper function to do a consistency check
12899         of the GC data structures.
12900
12901         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
12902
12903         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
12904         
12905         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
12906         barrier.
12907         (mono_array_clone_in_domain): Ditto.
12908         (mono_array_clone_in_domain): Ditto.
12909
12910         * threads.c (start_wrapper): Register the thread start argument as a GC root.
12911         (cache_culture): Use a write barrier.
12912
12913         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
12914         (ves_icall_get_property_info): Ditto.
12915
12916         * object.h (MONO_STRUCT_SETREF): New macro.
12917
12918         * class-internals.h (MonoStats): Add some GC statistics.
12919
12920         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
12921
12922 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
12923
12924         * exception.c (mono_exception_from_name_two_strings):
12925         Break from loop after method is found.
12926
12927 2008-01-04  Dick Porter  <dick@ximian.com>
12928
12929         * process.c (process_module_string_read): Rename variable to
12930         reflect correct usage, after fixing bug 345972.
12931
12932 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
12933
12934         * verify.c (mono_type_create_fnptr_from_mono_method): 
12935         created a MonoType function pointer instance to be used during
12936         verification. The verifier releases this memory at end.
12937
12938         * verify.c (mono_method_is_constructor): extracted repeated
12939         checks for constructor into a single class.
12940
12941         * verify.c (do_push_field): use new extracted method
12942         for constructor check.
12943
12944         * verify.c (do_newobj): same.
12945
12946         * verify.c (do_ldftn): renamed to do_load_function_ptr
12947         and make it verify ldvirtftn too.
12948
12949         * verify.c (mono_method_verify: proper verification
12950         of ldvirtftn. release created MonoMethod instances.
12951
12952 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
12953
12954         * verify.c (token_bounds_check): added.
12955
12956         * verify.c (do_ldftn): added.
12957
12958         * verify.c (mono_method_verify): proper verificartion of ldftn.
12959
12960 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
12961
12962         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
12963         than the table row count. It's the resposibility of the caller to
12964         make the bounds check and raise the correct error.
12965
12966         * metadata.c (mono_metadata_decode_row_col): Same.
12967
12968         * loader.c (mono_get_method_from_token): perform bounds check
12969         on token for methoddef table.
12970
12971 2007-12-29  Miguel de Icaza  <miguel@novell.com>
12972
12973         * icall.c
12974         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
12975         assert into a negative result, the managed code already coped with
12976         that.
12977
12978         Some folks on Windows reported this error. 
12979
12980 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
12981
12982         * appdomain.c: Bump corlib version.
12983         * icall.c:
12984         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
12985         CultureInfo.CreateCulture to create CultureInfo for name.
12986         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
12987         create CultureInfo for name. Fixes bug #347174.
12988
12989 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
12990
12991         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
12992         flags.
12993
12994         * verify.c (is_valid_branch_instruction): allow branching to the
12995         first instruction of the protected block.
12996
12997         * verify.c (is_valid_cmp_branch_instruction): same.
12998
12999         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
13000         avoid double initialization.
13001
13002         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
13003         detect which cases the eval stack should just be copied.
13004
13005         * verify.c (mono_method_verify): check if the eval stack
13006         is empty when entering a protected block.
13007
13008 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13009
13010         * verify.c: added is_clause_in_range, is_clause_inside_range,
13011         is_clause_nested and verify_clause_relationship. They perform
13012         the verifications stated in P1 12.4.2.7.
13013
13014         * verify.c (mono_method_verify): remove some unused variables,
13015         add the new exception clause checks, add instruction border
13016         checks for protected block start/end, improved some error 
13017         messages and fixed a bug in the way invalid instruction access
13018         is detected.
13019
13020 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13021
13022         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
13023         from GC 7.0 if available.
13024
13025         * object.c: Remove an unused define.
13026         
13027         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
13028
13029         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
13030
13031         * null-gc.c (mono_gc_make_descr_for_array): Implement.
13032
13033         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
13034
13035         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
13036         to take the same arguments as the other make_descr functions.
13037
13038         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
13039
13040         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
13041         directly.
13042
13043         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
13044         mini.c.
13045
13046         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
13047         call to boehm-gc.c.
13048
13049         * boehm-gc.c (mono_gc_register_root): Fix a warning.
13050
13051         * null-gc.c (mono_gc_register_root): Fix a warning.
13052
13053         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
13054
13055         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
13056         (mono_gc_base_init): Call GC_init ().
13057
13058         * null-gc.c: Define mono_gc_register_root () as a no-op.
13059
13060         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13061
13062 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
13063
13064         * verify.c: add prototype for merge_stacks at top
13065
13066         * verify.c (do_switch): added.
13067
13068         * verify.c (merge_stacks): on some cases the stack merging
13069         was not happening properly. Unequal stack sizes at merge
13070         points should be invalid.
13071
13072         * verify.c (mono_method_verify): added more debug info on stack state.
13073         verify switch properly.
13074
13075 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
13076
13077         * method-builder.h: New file, moved the mono_mb_ declarations here from 
13078         marshal.h.
13079
13080         * boehm-gc.c marshal.c: Include method-builder.h.
13081
13082         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13083
13084         * marshal.c: Remove some code which is now in method-builder.c.
13085
13086 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13087
13088         * method-builder.c: New file, extraction of the method builder functionality 
13089         from marshal.c.
13090
13091         * marshal.c: Move the mb functions into method-builder.c.
13092
13093         * marshal.h marshal.c: Export some mono_mb_... functions.
13094
13095         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13096
13097         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13098         the caller.
13099
13100         * class.c (mono_class_get_full): Check the token type in the dynamic case.
13101
13102         * loader.c (mono_field_from_token): Ditto.      
13103
13104         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13105         type as well.
13106         
13107         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13108         Fixes #342565.
13109
13110         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13111         a helper function for setting it.
13112
13113         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13114
13115         
13116         * assembly.c: Significally simplify code now that referenced assemblies are 
13117         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13118
13119         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13120         #349952.
13121
13122 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13123
13124         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13125         instructions that were target of branches or are at protected block boundaries.
13126
13127         * verify.c (in_same_block): handle filter clauses.
13128
13129         * verify.c (is_valid_branch_instruction): added. checks the target of
13130         instructions br or brtrue/false.
13131
13132         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13133         binary branch instructions such as beq and bge.
13134
13135         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13136         and made it pin the instruction as been part of the exception block.
13137
13138         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13139         of in_same_block.
13140
13141         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13142         of in_same_block.
13143
13144         * verify.c (do_ret): ret from a protected block is unverifiable and
13145         not invalid.
13146
13147         * verify.c (do_static_branch): verify br and br.s instructions.
13148
13149         * verify.c (merge_stacks): add extra param to support detection
13150         of branches in the middle of instructions.
13151         
13152         * verify.c (mono_method_verify): verify branches and exception blocks
13153         that target the middle of instructions. Proper verification of br and br.s.
13154
13155 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13156
13157         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13158         skip_visibility field.
13159         (reflection_methodbuilder_from_dynamic_method): Ditto.
13160
13161         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13162         registrations. Fixes #348193.
13163
13164         * threads.h: Move the internal mono_thread_get_pending_exception () to
13165         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13166
13167 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13168
13169         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13170         icall registration. Fixes #348193.
13171
13172         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13173         for corlib classes into object. Fixes #349621.
13174
13175 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13176
13177         * icall.c (property_accessor_nonpublic): new function to determine
13178         whether an accessor allows a property to be considered non-public.
13179         Returns false for private accessor(s) from parent class, and internal
13180         accessor(s) from parent on 2.0 profile (and higher).
13181         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13182         to determine whether property should be included if NonPublic flag
13183         is set. Fixes bug #349078.
13184
13185 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13186
13187         * verify.c (init_stack_with_value): added.
13188
13189         * verify.c (mono_method_verify): extracted common
13190         code for exception initialization into init_stack_with_value.
13191
13192         * verify.c (mono_method_verify): initialize the exception
13193         for handler clauses as well.
13194
13195         * verify.c (mono_method_verify): fix the exception clause
13196         ordering rules, it should use handler end offset and not
13197         start offset.
13198
13199 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13200
13201         * rawbuffer.c: remove useless warning.
13202
13203 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13204
13205         * threads.h, threads-types.h: move functions to the correct header
13206         (fixes bug#349952).
13207
13208 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13209
13210         * verify.c (mono_method_verify): proper verification
13211         of exception handling clauses ranges and fallthru in
13212         and out of protected blocks.
13213
13214 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13215
13216         * verify.c (mono_method_verify): fixed compilation issue.
13217
13218 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13219
13220         * verify.c (mono_method_verify): a printf slipped in, changed
13221         to use verifier debug macro.
13222
13223 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13224
13225         * verify.c (is_correct_leave): check for filter clauses.
13226
13227         * verify.c (do_filter): added.
13228
13229         * verify.c (mono_method_verify): property verification of leave.
13230
13231
13232 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13233
13234         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13235         Win32 build, until we figure out how to do the proper thing on
13236         Win32.
13237
13238 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13239
13240         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13241         by the previous patch.
13242         
13243         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13244         the assembly resolve handler for refonly assemblies.
13245
13246 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13247
13248         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13249         Make sure only one thread is allowed to commence shutdown, and
13250         don't allow new threads to be started once shutdown is in
13251         progress.
13252
13253 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13254
13255         * verify.c (is_correct_endfilter): added.
13256
13257         * verify.c (is_unverifiable_endfilter): added.
13258
13259         * verify.c (do_endfilter): added.
13260
13261         * verify.c (mono_method_verify): property verification of endfilter
13262         and fixed a corner case or endfinally.
13263
13264 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13265
13266         * verify.h: new flags to support fail fast of unverifiable code and
13267         do non-strict verification. Non-strict verification is required to
13268         have MS runtime compatibility. There are a huge amount of unverifiable
13269         code that it accepts as verifiable. The strict mode verifies the code
13270         as the specs says.
13271         Non-strict mode will be required in cases where code needs to be
13272         accepted as verifiable but fails under strict mode.
13273
13274         * pedump.c: added support to fail fast and non-strict verification.
13275
13276         * verify.c: added support for both fail fast and non-strict verification.
13277
13278 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13279
13280         * verify.c (is_correct_endfinally): added.
13281
13282         * verify.c (mono_method_verify): property verification of endfinally.
13283
13284 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13285
13286         * verify.c (in_any_block): check for filter clauses.
13287
13288         * verify.c (is_correct_rethrow): added.
13289
13290         * verify.c (mono_method_verify): property verification of rethrow.
13291
13292         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13293
13294 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13295
13296         * verify.c (do_throw): added.
13297
13298         * verify.c (mono_method_verify): property verification of throw
13299
13300 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13301
13302         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13303         assemblies. Fixes #346425.
13304
13305 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13306
13307         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13308         FieldBuilders.
13309
13310         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13311
13312         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13313         prevent asserts when this is called with a token which might not be valid.
13314
13315         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13316         lookup_dynamic_token_class with valid_token == FALSE.
13317
13318         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13319
13320         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13321
13322         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13323         
13324 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13325
13326         * gc.c: Don't delay threadpool thread finalization unless Mono is
13327         shutting down.
13328
13329 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13330
13331         * threads.c: turn an assert into a non-fatal warning.
13332
13333 2007-12-09  Robert Jordan  <robertj@gmx.net>
13334
13335         * icall.c (GetVirtualMethod): Add missing argument validation.
13336
13337 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13338
13339         * verify.c (do_cast): added.
13340
13341         * verify.c (mono_method_verify): property verification of castclass and isinst.
13342
13343
13344 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13345
13346         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
13347
13348         * verify.c (do_stelem): added.
13349
13350         * verify.c (mono_method_verify): property verification of stelem.X.
13351
13352 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13353
13354         * class.c, class-internals.h: Introduce an environment variable
13355         (MONO_GENERIC_SHARING) through which the extent of generic code
13356         sharing can be controlled (share all classes, share only corlib
13357         classes, or share nothing).
13358
13359         * object.c: Only create runtime generic context for classes for
13360         which sharing is enabled.
13361
13362 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13363
13364         * verify.c (do_ldelem): refactor it to work with ldelem.any.
13365
13366         * verify.c (mono_method_verify): property verification of ldelem.any.
13367
13368 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13369
13370         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
13371         added ldelem.X opcodes.
13372
13373         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
13374
13375         * verify.c: proper verification of ldelem.X 
13376
13377 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13378
13379         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
13380
13381 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13382
13383         * verify.c (mono_method_verify): null literal requires special handling,
13384         the value pushed on stack need to be flagged as so.
13385
13386         * verify.c (do_ldelema): Verify ldelema properly.
13387
13388 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13389
13390         * verify.c: Verify ldlen properly.
13391
13392 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
13393
13394         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
13395         to the target object's type. Fixes #346160.
13396
13397 2007-12-05  Dick Porter  <dick@ximian.com>
13398
13399         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
13400         Solaris needs the same workaround as BSD-derived systems.  Fixes
13401         bug 323524, patch by Burkhard Linke
13402         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
13403
13404 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
13405
13406         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
13407         handle to use when error dialog is shown; otherwise, update mask
13408         to show no error dialog when an error occurs.
13409
13410 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13411
13412         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
13413
13414         * class.c (mono_class_get_field_default_value): New helper function to initialize
13415         field->def_type and field->data.
13416
13417 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13418
13419         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
13420         the general one.
13421
13422         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
13423
13424         * marshal.c: Avoid depending on delegate->method_info being set.
13425
13426         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
13427         
13428         * object.c (mono_delegate_ctor): Set delegate->method.
13429
13430         * object-internals.h (struct _MonoDelegate): Add 'method' field.
13431
13432         * appdomain.c: Bump corlib version.
13433
13434 2007-11-27  Raja R Harinath  <harinath@gmail.com>
13435
13436         * metadata.c (mono_generic_inst_equal_full): Short-circuit
13437         equality check if we're comparing canonicalized MonoGenericInsts.
13438
13439 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13440
13441         * class.c (generic_array_methods): Call mono_class_setup_methods () before
13442         accessing class->methods.
13443
13444 2007-11-22  Dick Porter  <dick@ximian.com>
13445
13446         * threads.c: Ensure that the synch_cs is set before trying to use
13447         it.
13448
13449 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
13450
13451         * profiler.c: r89126 broke the statistial profiler, unbreak.
13452
13453 2007-11-22  Martin Baulig  <martin@ximian.com>
13454
13455         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
13456
13457         * mono-debug.c
13458         (mono_debug_debugger_version): Bump to 3.
13459         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
13460         -> mono_debugger_class_initialized().
13461
13462         * mono-debug-debugger.c
13463         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
13464
13465         * class.c
13466         (mono_debugger_start_class_init_func): Removed.
13467         (mono_debugger_class_loaded_methods_func): Added.
13468         (mono_class_setup_methods): Call it here.
13469
13470 2007-11-22  Martin Baulig  <martin@ximian.com>
13471
13472         * mono-debug.c
13473         (mono_debug_add_delegate_trampoline): New public method.
13474         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
13475
13476         * mono-debug.h
13477         (MonoSymbolTable): Added `global_data_table'.
13478         (MonoDebuggerTypeKind): Removed.
13479
13480 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
13481
13482         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
13483         these methods.
13484
13485         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13486         
13487 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13488
13489         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
13490
13491 2007-11-20  Martin Baulig  <martin@ximian.com>
13492
13493         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
13494
13495         * mono-debug-debugger.c
13496         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
13497         (mono_debugger_remove_breakpoint): Likewise.
13498         (mono_debugger_check_breakpoints): Likewise.
13499         (mono_debugger_register_class_init_callback): New public method.
13500         (mono_debugger_remove_class_init_callback): Likewise.
13501         (mono_debugger_add_type): Likewise.
13502
13503         * mono-debug-debugger.h
13504         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
13505
13506 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
13507
13508         * class.c: more interface implementations needed for the
13509         array enumerator (fixes bug #341112).
13510
13511 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
13512
13513         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
13514         fix ParamName of ArgumentNullExceptions.
13515
13516 2007-11-17  Miguel de Icaza  <miguel@novell.com>
13517
13518         * reflection.c (mono_reflection_encode_sighelper): Generate the
13519         modopts and modreqs.   I have a useless test that crashes monodis,
13520         but that shows the code working.
13521
13522 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
13523
13524         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
13525         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
13526
13527 2007-11-15  Dick Porter  <dick@ximian.com>
13528
13529         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
13530         When joining a thread, it's the thread that's calling Join that
13531         gets WaitSleepJoin state not the target.  Fixes the standalone
13532         test case in bug 334740, and hopefully the whole bug too.
13533
13534 2007-11-15  Dick Porter  <dick@ximian.com>
13535
13536         * process.c: Read file version info from the files pointed at by
13537         process modules, not the current process.  Fixes bug 315969.
13538
13539         Use windows typedef names in some places to fix warnings on the
13540         windows build.
13541
13542 2007-11-15  Mark Probst  <mark.probst@gmail.com>
13543
13544         * image.c, metadata-internals.h: Added a generic_class_cache hash
13545         to MonoImage for looking up generic classes when sharing generics.
13546
13547 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13548
13549         * sgen-gc.c: warning cleanups.
13550
13551 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
13552
13553         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
13554         inherited properties.
13555
13556 2007-11-14  Mark Probst  <mark.probst@gmail.com>
13557
13558         * object.c, class-internals.h: Added more information to the
13559         runtime generic context.
13560
13561 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
13562
13563         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
13564         instead of just the target method. Generalize the abstract method handling to
13565         handle any non-static method.
13566
13567         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13568         mono_marshal_get_delegate_invoke () signature change.
13569
13570 2007-11-13  Mark Probst  <mark.probst@gmail.com>
13571
13572         * class.c, class-internals.h: Made
13573         mono_type_get_basic_type_from_generic () public.  Fixed member
13574         access check for shared generics.
13575
13576         * loader.c: Don't insert field into field cache if it's part of a
13577         non-inflated generic class.
13578
13579         * domain.c, domain-internals.h: The generic sharing context is now
13580         part of the jit info data structure.  Added two accessor
13581         functions.
13582
13583 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
13584
13585         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
13586         the array Get/Set/Address methods, since the JIT inlines them.
13587
13588         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
13589
13590         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
13591         (mono_image_init): Initialize runtime_invoke_direct_cache.      
13592
13593         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13594         mono_marshal_get_delegate_invoke signature change.
13595
13596         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
13597         an additional argument. Add support for invoking abstract methods.
13598
13599         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
13600
13601         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
13602
13603 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13604
13605         * class.c: Do field layout for open generic classes as well.
13606
13607 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13608
13609         * gc.c, gc-internal.h: Don't finalize threadpool threads with
13610         other objects, because the threadpool is still around.  Put them
13611         in a list instead and after finalizing all other objects in the
13612         root domain shut down the thread pool and then finalize the
13613         threads.  Fixes bug #337383.
13614
13615         * threads.c, thread-types.h: New mono_thread_create_internal()
13616         function for marking a thread with the threadpool flag before it
13617         started.  Set synch_cs to NULL after freeing it.
13618
13619         * threadpool.c: Mark threadpool threads before they start.
13620
13621 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13622
13623         * reflection.h, reflection.c: don't export random functions
13624         and lazy load dbnull and missing objects.
13625
13626 2007-11-07  Jonathan Chambers <joncham@gmail.com>
13627
13628         * class.c: Initialize COM types if COM interfaces
13629         are present (not just COM classes).
13630         
13631         Code is contributed under MIT/X11 license.
13632
13633 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13634         * reflection.c:
13635         create_dynamic_mono_image: hook module profiler events (dynamic case).
13636         mono_image_basic_init: hook assembly profiler events (dynamic case).
13637
13638 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13639         * profiler.c:
13640         simple_appdomain_unload: completely terminate the profiler
13641         instead of only processing the statistical samples.
13642         simple_shutdown: make sure this is really called exactly once,
13643         even in multithreaded applications, and always listen to
13644         appdomain events.
13645         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
13646         here, the "[un]load" functions will do it.
13647         Fixes bugs #333791 and #325261.
13648
13649 2007-11-07  Geoff Norton  <gnorton@novell.com>
13650
13651         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
13652         rather than depend on __APPLE__.
13653
13654 2007-11-07  Mark Probst  <mark.probst@gmail.com>
13655
13656         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
13657
13658 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
13659
13660         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
13661         UTF16 MonoString. Fix the crash from bug #335488
13662
13663 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
13664
13665         * marshal.c: Correct (for non-Win32 OS) length != size in 
13666         mono_string_from_bstr. Fix #339530.
13667
13668 2007-11-06  Geoff Norton  <gnorton@novell.com>
13669
13670         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
13671         to succeed
13672
13673 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
13674
13675         * process.c: Added run-time GetProcessId API detection for Windows.
13676
13677 2007-11-04  Miguel de Icaza  <miguel@novell.com>
13678
13679         * reflection.c  (mono_param_get_objects): If a parameter has the
13680         attribute [System.Runtime.InteropServices.Optional] we should
13681         set the DefaultValue of the ParameterInfo to be
13682         System.Reflection.Missing instead of DBNull.
13683
13684         See bug #339013.
13685
13686         (mono_get_reflection_missing_object): New method,
13687         returns the System.Reflection.Missing.Value singleton instance.
13688
13689 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
13690
13691         * culture-info-table.h : regenerated.
13692
13693 2007-11-02  Jonathan Chambers <joncham@gmail.com>
13694
13695         * icall.c: Use GetEnvironmentStrings on windows
13696         so we are using the same environment block as 
13697         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
13698         #333740.
13699         
13700         Code is contributed under MIT/X11 license.
13701
13702 2007-10-31  Martin Baulig  <martin@ximian.com>
13703
13704         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
13705
13706         * mono-debug-debugger.h
13707         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
13708
13709 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
13710
13711         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
13712         classes.
13713
13714 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
13715
13716         * culture-info-table.h : regenerated.
13717
13718 2007-10-30  Robert Jordan  <robertj@gmx.net>
13719
13720         * icall-def.h, icall.c:
13721         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
13722
13723         Code is contributed under MIT/X11 license.
13724
13725 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13726
13727         * class.c (mono_class_setup_vtable): Find the inflated methods in the
13728         inflated class instead of inflating them again.
13729         
13730         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
13731         dynamic case.
13732
13733         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
13734         Call setup_supertypes () after klass->parent is set.
13735         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
13736
13737         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
13738         for inflated instances of not yet created dynamic generic classes.
13739         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
13740         times from inflated_method.
13741         (methodbuilder_to_mono_method): Ditto.
13742
13743 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
13744
13745         * gc.c: code cleanup and removed old untested option of not creating the
13746         finalizer thread.
13747
13748 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13749
13750         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
13751         creating a jump trampoline for dynamic methods.
13752
13753 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
13754
13755         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
13756         generic TypeBuilders when called from another method of the same type (bug #335131).
13757
13758
13759 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
13760
13761         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
13762         doesn't seem to work perfectly.
13763         
13764         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
13765         called multiple times.
13766         (methodbuilder_to_mono_method): Ditto.
13767         (resolve_object): Inflate FieldBuilder's.
13768
13769 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13770
13771         * string-icalls.c, string-icalls.h, appdomain.c: patch from
13772         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
13773         RemoveEmptyEntries in the string.Split implementation (bug #322375).
13774
13775 2007-10-26  Dick Porter  <dick@ximian.com>
13776
13777         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
13778         Thread initialisation changes
13779
13780 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
13781
13782         * verify.c: fix compatibility check between arrays and System.Array
13783
13784 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
13785
13786         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
13787         too. Fixes #336999.
13788
13789 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
13790
13791         * object.c (mono_value_box): Use typed allocation here.
13792
13793 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
13794
13795         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
13796         trampoline instead of compiling the method right away.
13797
13798         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
13799
13800 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
13801
13802         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
13803         related fields for dynamic classes. Fixes #334493.
13804
13805 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
13806
13807         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
13808         
13809         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
13810
13811         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
13812         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
13813
13814         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
13815
13816         * reflection.c (create_generic_typespec): Initialize klass->generic_container
13817         if needed.
13818         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
13819
13820 2007-10-18  Jonathan Chambers <joncham@gmail.com>
13821
13822         * marshal.c: Use correct key when removing item
13823         from ccw_hash.
13824         
13825         Code is contributed under MIT/X11 license.
13826
13827 2007-10-17  William Holmes  <billholmes54@gmail.com>
13828
13829         *marshal.c: Adding a case to marshal booleans to U1
13830
13831         Code is contributed under MIT/X11 license.
13832
13833 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
13834
13835         * class.c (mono_class_from_name): Search the modules compromising dynamic
13836         assemblies. Fixes #331601.
13837
13838 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
13839
13840         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
13841         exception if the type name contains an assembly component. Fixes #334203.
13842
13843         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
13844         modules inside dynamic assemblies. Fixes #334200.
13845         
13846         * reflection.c: Set image->public_key and image->public_key_length;
13847
13848         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
13849         fields.
13850
13851         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
13852         
13853 2007-10-16  Mark Probst  <mark.probst@gmail.com>
13854
13855         * metadata.c: Implemented correct comparing of generic classes.
13856         An inflated generic class can be equal to a non-inflated one if it
13857         is inflated with generic type variables as type arguments.  Fixes
13858         bug #333798.
13859
13860 2007-10-15  Dick Porter  <dick@ximian.com>
13861
13862         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
13863         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
13864         81646.
13865
13866         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
13867         instead of a monitor lock.  This means that monitor_try_enter and
13868         co can set the thread state safely.
13869         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
13870         thread_interrupt_requested, so interrupt actually works.
13871
13872         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
13873         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
13874         state accessor function
13875
13876 2007-10-15  Martin Baulig  <martin@ximian.com>
13877
13878         * mono-debug.h
13879         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
13880         the debugger with the current runtime.
13881
13882 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
13883
13884         * object.c, object-internals.h: added the ability to set a single
13885         trampoline for all the slots in a vtable.
13886
13887 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13888
13889         * marshal.c: deal with a possible race condition during multicast
13890         delegate invocation.
13891
13892 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13893
13894         * class.c: ensure value type methods don't have the synchronized
13895         flag set.
13896
13897 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
13898
13899         * string-icalls.c, string-icalls.h: reverted unapproved patch that
13900         breaks the build.
13901
13902 2007-10-11  Joel Reed  <joelwreed@comcast.com>
13903
13904         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
13905         to take an options parameter so that empty entries can be removed during
13906         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
13907
13908 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13909
13910         * marshal.c: make sure we don't store the signature from a dynamic
13911         method into the runtime invoke cache (bug #327189).
13912
13913 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13914
13915         * marshal.c: make sure the wrapper methods are properly initialized.
13916
13917 2007-10-11  Mark Probst  <mark.probst@gmail.com>
13918
13919         * metadata.c, metadata-internals.h: Generalized
13920         mono_type_stack_size() to mono_type_stack_size_internal() which
13921         takes an additional argument specifying whether it allows open
13922         types.
13923
13924 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
13925
13926         * verify.c (do_invoke_method): handle typedbyref params
13927         correctly and check for unverifiable return values.
13928
13929         * verify.c (do_newobj): fix a warning.
13930
13931 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
13932
13933         * verify.c: don't tread typedbyref as allways unverifable,
13934         so uses, like (ld/st)loc.0 are valid. verify for the cases
13935         that it matters, like boxing related operations.
13936
13937 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
13938
13939         * verify.c: add verification of the newobj opcode. verification
13940         of delegate instantation still missing due ldftn and virldftn not
13941         pushing the function type on stack
13942
13943 2007-10-08  Mark Probst  <mark.probst@gmail.com>
13944
13945         * class-internals.h: Runtime generic context data structure
13946         definition.
13947
13948         * object.c: Initialization of runtime generic context at runtime
13949         vtable creation time.
13950
13951 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
13952         * class.c (mono_class_create_from_typedef,
13953         mono_class_from_generic_parameter, mono_ptr_class_get,
13954         mono_fnptr_class_get, mono_bounded_array_class_get)
13955         * domain.c (mono_domain_create, mono_domain_free)
13956         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
13957         * image.c (do_mono_image_load, mono_image_close):
13958         Hooked up load-unload profiler events.
13959
13960 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
13961
13962         * domain.c: track statistics about the actual amount of native code
13963         allocated.
13964
13965 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13966
13967         * class.c: the valuetype enumerators don't have the additional
13968         supertypes interfaces.
13969
13970 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13971
13972         * class.c: need more interfaces setup for the IEnumerator<T>
13973         object created for arrays (tests/ienumerator-interfaces.2.cs).
13974
13975 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
13976
13977         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
13978
13979 2007-10-05  Alp Toker  <alp@atoker.com>
13980
13981         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
13982         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
13983         #315863.
13984
13985 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
13986
13987         * verify.c (verify_type_compatibility_full): verification of
13988         compatibility improved, validates correctly non-strict checks between
13989         native int and I4 types different than (unsigned)int32.
13990
13991         * verify.c (do_store_indirect): added, do all verification of
13992         ldind.X opcodes. 
13993
13994         * verify.c (get_load_indirect_mono_type): renamed to
13995         get_indirect_op_mono_type, as it now returns the MonoType for 
13996         ldind.X and stind.X opcodes.
13997
13998 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
13999
14000         * reflection.c: Fix the encoding of generic type definition for
14001         TypeBuilders.
14002
14003         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
14004         mono_image_typedef_or_ref but allows to specify if typespec lookups should
14005         be made. Typespec check is done prior to typeref cache lookup.
14006
14007         * reflection.c (mono_image_typedef_or_ref): now just delegate to
14008         mono_image_typedef_or_ref_full.
14009
14010         * reflection.c (encode_generic_class): encode the generic class
14011         directly instead of calling encode_type.
14012
14013         * reflection.c (encode_type): encode the generic type definition
14014         MonoClass as a generic instantiation.
14015
14016         * reflection.c (create_typespec): cache typespec tokens in
14017         the assembly->typespec cache. Don't create typespec for a generic
14018         instance MonoClass. Create typespec for the generic type defintion.
14019
14020         * reflection.c (create_generic_typespec): encode the generic
14021         class directly instead of calling encode_type.
14022
14023         * reflection.c (mono_image_create_token): encode the generic
14024         type definition not using a typespec for MonoType instances.
14025
14026
14027 2007-10-04  Raja R Harinath  <rharinath@novell.com>
14028
14029         Fix #328812
14030         * class.c (mono_image_init_name_cache): Don't return nested
14031         'protected internal' classes.
14032         (mono_class_from_name_case): Likewise.
14033
14034 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
14035
14036         * icall-def.h, icall.c : get_bundled_machine_config() is now the
14037           common function used by both DefaultConfig in System.dll and
14038           InternalConfigurationHost in System.Configuration.dll.
14039
14040 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14041
14042         * class.c: automatically add to vectors only a few essential explicit
14043         generic interfaces. The rest of the interfaces that arrays should
14044         provide are currently implicitly added (but still not lazily, see the
14045         design in the discussion of bug#325495 for the details of what is
14046         needed for that). Additionally, implicit interfaces are assigned the
14047         same vtable slot as the explicit interfaces (as they are compatible):
14048         this enables huge memory savings since we don't need to instantiate
14049         as many memthods and as large vtables anymore. Also, Since
14050         GetEnumerator<T> returns an instance of a type that is required to
14051         support a similarly large set of interfaces as arrays, we add
14052         implicit interfaces and interface offset sharing support to those
14053         types, too. This change adds all the required interfaces so that
14054         the anonarray.cs test case in the bug report works (we don't add
14055         all the interfaces to arrays of arrays 3-level deep and more because
14056         of the memory requirements explained in the bug and since they are much
14057         less common: the lazy-loading support will enabled them to work, too).
14058
14059 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14060
14061         * verify.c (merge_stacks): major clean up, all type compatibility
14062         checks are done by verify_type_compatibility. This fix my earlier lack
14063         of understanding of the CLR type system and merge_stacks no longer looks
14064         scary.
14065
14066         * verify.c: fixed some bad spelling.
14067
14068 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14069
14070         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14071         a given stack slock.
14072         
14073         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14074         verify_type_compatibility_full. This removed a near indentical function and fixed
14075         handling of Int32 and IntPtr across all opcodes.
14076
14077 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14078
14079         * class.c: only vectors have the additional generic interfaces.
14080
14081 2007-10-01  Jonathan Chambers <joncham@gmail.com>
14082
14083         * mono-config.c: Use g_strcasecmp instead of
14084         strcasecmp like everywhere else to fix
14085         compilation with MSVC.
14086         
14087         Code is contributed under MIT/X11 license.
14088
14089 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14090
14091         * object.c, object-internals.h: refactored the IMT code to enable
14092         building a single slot at a time and lazily creating the IMT trampolines
14093         and thunks.
14094
14095 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
14096
14097         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14098
14099         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14100         Fixes #328501.
14101         
14102 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14103
14104         * loader.c (method_from_methodspec): Rearrange to avoid
14105         un-necessary exposition.  Don't assert out if the method's
14106         declaring type is a generic type definition.
14107
14108 2007-09-28  Martin Baulig  <martin@ximian.com>
14109
14110         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14111
14112 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14113
14114         * class-internals.h: optimize field layout of MonoClass to
14115         requires less cachelines at runtime and save a few bytes on 64 bit
14116         systems.
14117
14118 2007-09-28  Jb Evain  <jbevain@novell.com>
14119
14120         * reflection.c: when encoding type names in custom attributes,
14121         if the type is a closed generic type, its generic arguments
14122         have to be serialized as AssemblyQualifiedName, so that when
14123         they are deserialized, it's possible to re-create them properly.
14124         Fixes #329450.
14125
14126
14127 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14128
14129         * object.c, class-internals.h: added delegate-creation counter.
14130
14131 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14132
14133         * class.c: cleanup of the code that synthetizes interfaces for
14134         arrays in 2.0: saves quit a bit of corlib mempool memory.
14135         Code to fix bug #325495 ifdeffed out for now until the issues
14136         with memory usage and O(n^2) behaviour are fixed.
14137
14138 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14139
14140         * marshal.c: when possible, do not duplicate the name of the methods
14141         in the method builder and in the generated MonoMethod.
14142
14143 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14144         * verify.c: added support for type checking ldind_* opcodes.
14145
14146 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14147
14148         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14149         which is used to distinguish the fully open instantiation of a TypeBuilder
14150         with the rest. This temporary hack is required to restore the property that
14151         the fully open instantiation is the same type of the generic type definition.
14152
14153         * class-internals.h (mono_generic_class_is_generic_type_definition):
14154         new function as part of the internal API.
14155
14156         * class.c (inflate_generic_type): return NULL when the generic inst is
14157         fully open. The fully open generic type is now the same as the generic type
14158         definition for non TypeBuilder types.
14159
14160         * class.c (mono_generic_class_get_class): removed assert since it is
14161         no longer valid, gklass->cached_class can point to the generic type definition.
14162
14163         * class.c (mono_generic_class_is_generic_type_definition): new.
14164
14165         * metadata.c (mono_generic_class_hash): added is_tb_open field
14166         to the hash calculation.
14167
14168         * metadata.c (free_generic_class): if the generic class is associated
14169         with the generic type definition, its field will come from the mempool and
14170         must not be freed.
14171
14172         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14173         new, this function identifies the corner case of a TypeBuilder fully open
14174         instantiation.
14175
14176         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14177         for lookup. Set gclass->cached_class to be the container class in case of
14178         the fully open instantiation of non TypeBuilder types.
14179
14180         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14181         to compare generic classes.
14182
14183         * reflection.c (method_encode_methodspec): remove assert that
14184         no longer is valid.
14185
14186         * reflection.c (mono_reflection_generic_class_initialize): add
14187         an aditional assert to ensure the proper type is used.
14188
14189 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14190
14191         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14192         to enjoy it.
14193
14194 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14195
14196         * verify.c (push_arg): Fixed support for ldarga
14197         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14198         MonoType used as first arg in case of instance calls.
14199
14200 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14201
14202         * verify.c: Support for verifying VAR and MVAR types, 
14203
14204 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14205
14206         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14207         accessors correctly.
14208
14209 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14210
14211         * threads.c: support OSX and other systems in
14212         mono_thread_get_stack_bounds (bug #328026).
14213
14214 2007-09-25  Martin Baulig  <martin@ximian.com>
14215
14216         * mono-debug.h
14217         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14218
14219 2007-09-24  Martin Baulig  <martin@ximian.com>
14220
14221         * mono-debug.h
14222         (MonoDebugClassEntry): Moved the definition of this struct into
14223         mono-debug.c to make it private.
14224
14225         * mono-debug.c
14226         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14227         type table per symbol file, we don't need to store the symfile id
14228         any longer.
14229
14230 2007-09-24  Martin Baulig  <martin@ximian.com>
14231
14232         Create one type table per symbol file, since a `MonoClass *' gets
14233         invalid when its image is unloaded.
14234
14235         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14236         (MonoDebugHandle): Added `type_table'.
14237
14238 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14239
14240         * mempool.c, mempool.h: added mono_mempool_new_size () API
14241         to be able to specify a smaller initial size for the pool.
14242         Adjusted the code to slowly increase pool size before using
14243         the previous default size.
14244         * image.c: use a small initial size for image mempools.
14245
14246 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14247
14248         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14249         Fixes ##320990.
14250
14251         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14252         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14253
14254 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14255
14256         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14257         free. Fixes #327438.
14258
14259 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14260
14261         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14262         generic instantiations, etc.
14263         <MONO_TYPE_ARRAY>: Likewise.
14264
14265 2007-09-21  Martin Baulig  <martin@ximian.com>
14266
14267         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14268         these structs were never defined.
14269         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14270
14271 2007-09-21  Martin Baulig  <martin@ximian.com>
14272
14273         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14274
14275 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14276
14277         * image.c: removed the guid hash tables: we can get the same info
14278         without the additional memory usage hit (partially fixes also bug #327052).
14279
14280 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14281
14282         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14283         event to handle unloading methods. After the event is called, the
14284         corresponding MonoMethod* must be considered invalid.
14285         * loader.c (mono_free_method): call the new mono_profiler_method_free
14286         event.
14287
14288 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14289
14290         * domain-internals.h: New flag in MonoJitInfo which marks shared
14291         generic methods.  New hash table (shared_generics_hash) in
14292         MonoDomain to keep track of shared generic methods.  Prototypes
14293         for functions to register and lookup shared generic methods.
14294
14295         * domain.c: Support for registering and looking up shared generic
14296         methods via a hash table (shared_generics_hash) in MonoDomain.
14297
14298         * class-internals.h: New exception to signal failure of shared
14299         compilation of a generic method.  New counters for generics
14300         sharing in MonoStats.
14301
14302 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14303
14304         * image.c, metadata-internals.h: don't keep a file descriptor open
14305         for loaded assemblies (bug#325988).
14306
14307 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14308
14309         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14310         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14311         use the corresponding datatypes.
14312         (type_in_image): Update to changes.
14313         (CleanForImageUserData): Simplify.
14314         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14315         Avoid quadratic behaviour in handling the "stolen" list by
14316         separating the filter predicate out, and by prepending the stolen
14317         items rather than appending them.
14318         (steal_ginst_in_image): Likewise.
14319         (mono_metadata_clean_for_image): Update to changes.
14320
14321 2007-09-19  Martin Baulig  <martin@ximian.com>
14322
14323         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14324
14325 2007-09-19  Martin Baulig  <martin@ximian.com>
14326
14327         * mono-debug.c (mono_debug_cleanup): Don't call
14328         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14329
14330 2007-09-19  Raja R Harinath  <harinath@gmail.com>
14331
14332         Fix crash on 'make run-test' in mcs/errors
14333         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
14334         Avoid more potential allocations in mono_class_from_mono_type.
14335         (ginst_in_image): Update to changes.
14336         (gclass_in_image): Rearrange slightly.
14337
14338 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14339
14340         * class.c (mono_class_init): Move the code that sets up class->methods to 
14341         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
14342
14343         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
14344         canonical instance of an inflated generic signature.
14345         (mono_type_create_from_typespec): Remove an invalid free.
14346
14347         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
14348
14349 2007-09-18  Marek Habersack  <mhabersack@novell.com>
14350
14351         * domain-internals.h: added a declaration of the
14352         mono_assembly_load_full_nosearch internal function.
14353
14354         * assembly.c (mono_assembly_load_with_partial_name): use
14355         mono_try_assembly_resolve return value properly.
14356         (mono_assembly_load_full_nosearch): copied the function body from
14357         mono_assembly_load_full, without the code to invoke assembly
14358         search hooks.
14359         (mono_assembly_load_full): calls the above new function and if the
14360         assembly is not resolved, invokes the search hooks.
14361
14362         * appdomain.c (mono_runtime_init): restore the global postload
14363         assembly search handlers.
14364
14365 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14366
14367         * class.c (mono_class_init): Make sure class->methods and class->properties
14368         are never NULL in the generics case.
14369
14370         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
14371
14372 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14373
14374         * metadata.c (free_generic_class): Disable some code to fix the build.
14375
14376         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
14377
14378         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
14379         from the image mempool.
14380
14381         * metadata.c (free_generic_class): Free more data from the inflated class.
14382
14383         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
14384
14385         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
14386         mempool.
14387         (mono_type_create_from_typespec): Ditto.
14388
14389         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
14390         MonoImage to the caller.
14391         (mono_init_internal): Save the opened image in a global variable.
14392         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
14393
14394         * reflection.c (resolve_object): Fix a leak.
14395
14396         * metadata.c: Fix the freeing of data in the generics caches.
14397         
14398         * metadata.c (free_generic_inst): Comment this out to fix the build.
14399         (free_generic_class): Ditto.
14400
14401         * metadata.c: Free cached generic methods, instantinations and classes when
14402         they are removed from the caches.
14403         (mono_metadata_free_type): Free the type itself.
14404
14405         * class.c: Free the result of mono_class_inflate_generic_type () in a few
14406         places.
14407
14408 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14409
14410         * boehm-gc.c: restrict managed allocs to __thread supporting
14411         architectures.
14412
14413 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
14414
14415         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
14416         (mono_generic_class_get_class): Fix a leak.
14417
14418         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
14419         mono_metadata_free_type ().
14420         (mono_metadata_inflate_generic_inst): Fix a leak.
14421
14422 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14423
14424         * mono-debug.c (free_header_data): Fix a leak missed earlier.
14425
14426         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
14427         mempool.
14428
14429         * mono-debug.c (mono_debug_close_image): Fix call to 
14430         g_hash_table_remove ().
14431
14432 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14433
14434         * icall-def.h: redirect all the string ctor to the managed
14435         CreateString () methods.
14436         * string-icalls.c, string-icalls.h: removed dead code for string
14437         ctors and icalls.
14438
14439 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14440
14441         * mono-debug.c: Fix memory leaks.
14442
14443 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14444
14445         * threads-types.h: Implement mono_hazard_pointer_set and 
14446         mono_hazard_pointer_clear macros using do/while(0) to fix
14447         compilation with MSVC.
14448         
14449         Code is contributed under MIT/X11 license.
14450
14451 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14452
14453         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
14454         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
14455
14456 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14457
14458         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
14459         icalls.
14460
14461 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14462
14463         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
14464         managed-code allocated as well.
14465
14466 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14467
14468         * class.c (mono_class_is_assignable_from): Add support for generic variance.
14469
14470 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14471
14472         * boehm-gc.c: fixed the build after the AOT changes.
14473
14474 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14475
14476         * wrapper-types.h: Add an ALLOC wrapper type.
14477
14478         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
14479         reference managed allocator methods.
14480
14481 2007-09-12  Marek Safar  <marek.safar@gmail.com>
14482
14483         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
14484         of Type array and not MonoType, a fix suggested by Hari.
14485         
14486 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14487
14488         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
14489         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
14490         
14491         Code is contributed under MIT/X11 license.
14492
14493 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14494
14495         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
14496
14497 2007-09-12  Marek Habersack  <mhabersack@novell.com>
14498
14499         * image.c (do_mono_image_open): if assembly file fails to open and
14500         MONO_IOMAP is in effect, try to find the path in a
14501         case-insensitive way.
14502
14503         * appdomain.c (mono_runtime_init): do not install postload hooks -
14504         tests show that MS.NET doesn't use anything of that sort to
14505         trigger the AppDomain.AssemblyResolve event.
14506         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
14507         made non-static.
14508         (mono_runtime_init): init portability helpers here.
14509
14510         * assembly.c (mono_assembly_load_with_partial_name): if other   
14511         attempts fail, trigger the AppDomain.AssemblyResolve event handler
14512         to resolve the assembly.
14513
14514         * domain-internals.h: added mono_try_assembly_resolve and marked
14515         it as internal.
14516
14517 2007-09-11  Jb Evain  <jbevain@novell.com>
14518
14519         * object-internals.h (MonoReflectionDynamicMethod): add
14520         a `MonoReflectionType *owner` field. The owner is used
14521         * reflection.c:
14522         (mono_reflection_create_dynamic_method): use the owner of the dynamic
14523         method as the class declaring the dynamic method.
14524         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
14525         dynamic method to the declaring type of the methodbuilder.
14526
14527 2007-09-11  Mark Probst  <mark.probst@gmail.com>
14528
14529         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
14530         rules for calling methods via reflection.
14531
14532 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
14533
14534         * reflection.c (resolve_object): Add support for MonoGenericClass. 
14535         Inflate MonoType's.
14536
14537 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
14538
14539         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
14540         provide a managed method that does fast allocations without needing
14541         a managed->unmanaged transition. Boehm GC implementation currently
14542         enabled for ptrfree objects on sane architectures.
14543
14544 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14545
14546         * marshal.c, marshal.h: exported a couple of useful functions and
14547         added mono_mb_get_label () to easily handle backward branches.
14548
14549 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
14550
14551         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
14552
14553 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14554
14555         * loader.c (find_method): Fixed the regression introduced while
14556         fixing bug #81466.
14557
14558 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
14559
14560         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
14561         well.
14562         
14563         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
14564         icall.c reflection.c: Pass a MonoGenericContext argument to 
14565         mono_lookup_dynamic_token ().
14566
14567         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
14568         #82744.
14569         
14570 2007-09-09  Robert Jordan  <robertj@gmx.net>
14571
14572         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
14573         for generic methods.
14574
14575         * object.c (mono_object_get_virtual_method): Handle generic methods.
14576         Fixes bug #78882.
14577
14578         Code is contributed under MIT/X11 license.
14579
14580 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14581
14582         * image.c: fix locking in mono_image_load_file_for_image ().
14583
14584 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
14585
14586         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
14587         used only as a cache: added an icall to fill it.
14588
14589 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
14590
14591         * reflection.h: exposed mono_reflection_free_type_info
14592         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
14593         since mono_reflection_bind_generic_parameters makes a copy of it.
14594         * reflection.c (free_type_info): subinfos should be freed.
14595         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
14596         made non static.
14597         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
14598         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
14599         this fixes #82695 and #81726.
14600    
14601
14602 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
14603
14604         * process.h, process.c:  added support for user profile/info in
14605           ProcessStartInfo. For now only Windows works.
14606
14607 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14608
14609         * metadata.c: consider the generic arguments when comparing
14610         signatures (bug #82614).
14611
14612 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14613
14614         * cil-coff.h, image.c: updated assembly loader to cope with the
14615         PE32+ 64 bit file format.
14616
14617 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14618
14619         * assembly.c, class.c, domain.c, loader.c: remove useless
14620         inclusion of cil-coff.h.
14621
14622 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
14623
14624         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
14625         if interface is marked with CoClassAttribute. 
14626    
14627         Code is contributed under MIT/X11 license.
14628
14629 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14630
14631         * sgen-gc.c: ensure no object from the to space is copied again or finalized
14632         if it's seen twice in major collections.
14633
14634 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14635
14636         * sgen-gc.c: big objects are not copied to the gray area, but they
14637         need to be considered for scanning, too, if they are brought alive
14638         by an object ready for finalizations or a survived one.
14639
14640 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14641
14642         * sgen-gc.c: properly account the number of disappearing links when
14643         they are nullified.
14644
14645 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14646
14647         * sgen-gc.c: share the code to scan the registered roots between the
14648         different types of collections.
14649
14650 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14651
14652         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
14653
14654 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14655
14656         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
14657         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
14658
14659 2007-08-28  Mark Probst  <mark.probst@gmail.com>
14660
14661         * security-manager.c (mono_security_manager_get_methods):
14662         LinkDemandSecurityException now has 2 arguments instead of 3.
14663
14664 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
14665
14666         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
14667         platforms which need it.
14668
14669 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14670
14671         * sgen-gc.c: unregister thread data structures with a pthread_key_t
14672         dtor.
14673
14674 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14675
14676         * threads.c: free the thread static data on thread exit.
14677
14678 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
14679
14680         * class.c: walk the hierarchy to find the generic definition for
14681         a class (fixes runtime part of bug #82498).
14682
14683 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14684
14685         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
14686         ...
14687
14688         * image.c (mono_image_close): Here. Hopefully fixes #82510.
14689
14690 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14691
14692         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
14693
14694 2007-08-24  Robert Jordan  <robertj@gmx.net>
14695
14696         * appdomain.c: don't perform the ':'->';' substitution on Win32.
14697
14698 2007-08-24  Jb Evain  <jbevain@novell.com>
14699
14700         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
14701         for byref types.
14702
14703 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14704
14705         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
14706         #82286.
14707
14708 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14709
14710         * assembly.c: Fix a warning.
14711         
14712 2007-08-23  Marek Habersack  <mhabersack@novell.com>
14713
14714         * appdomain.c: parse the <runtime> section looking for the probing
14715         element with the 'privatePath' attribute, which sets additional
14716         directories in which the runtime should look for assemblies.
14717
14718 2007-08-23  Robert Jordan  <robertj@gmx.net>
14719
14720         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
14721         Fixes #82499.
14722
14723 2007-08-23  Martin Baulig  <martin@ximian.com>
14724
14725         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
14726         _mono_debug_init_corlib() and remove it from the header file.
14727
14728 2007-08-23  Martin Baulig  <martin@ximian.com>
14729
14730         * mono-debug-debugger.c
14731         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
14732         don't notify the debugger about it.
14733
14734         * mono-debug-debugger.h
14735         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
14736
14737 2007-08-23  Robert Jordan  <robertj@gmx.net>
14738
14739         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
14740         Code is contributed under MIT/X11 license.
14741
14742 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14743
14744         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
14745
14746 2007-08-22  Martin Baulig  <martin@ximian.com>
14747
14748         * mono-debug.c: Store debugging info on a per-domain basis and
14749         free it on domain unload.  Add support for unloading symbol files.
14750
14751         * mono-debug.h
14752         (MonoDebugList): New typedef.
14753         (MonoSymbolTable):
14754         - add `data_tables and `type_table'.
14755         - replace 'symbol_files' and `num_symbol_files' with a
14756           `MonoDebugList *'.
14757         (mono_debug_data_table): Removed.
14758         (mono_debug_list_add): New public function.
14759         (mono_debug_list_remove): New public function.
14760         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
14761         (mono_debug_init_2_memory): Renamed into
14762         mono_debug_open_image_from_memory().
14763         (mono_debug_close_image): New public function.
14764         (mono_debug_domain_create): Likewise.
14765         (mono_debug_domain_unload): Likewise.
14766         (MONO_DEBUGGER_VERSION): Bump to 60.
14767
14768         * mono-debug-debugger.h
14769         (MonoDebuggerEvent):
14770         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
14771         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
14772         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
14773         - rename `THREAD_CREATED' and `THREAD_EXITED' into
14774           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
14775         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
14776           meaning.
14777         (mono_debugger_add_symbol_file): Removed.
14778         (mono_debugger_add_type): Removed.
14779         (mono_debugger_lookup_type): Removed.
14780         (mono_debugger_lookup_assembly): Removed.
14781
14782         * domain.c
14783         (mono_domain_create): Call mono_debug_domain_create().
14784         (mono_init_internal): Call mono_debug_init_corlib().
14785
14786         * assembly.c
14787         (mono_assembly_close): Call mono_debug_close_image().
14788
14789 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
14790
14791         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
14792         mmap call.
14793
14794 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14795
14796         * sgen-gc.c: ensure section->pin_queue_end is initialized
14797         correctly when non pinning objects in the section have been found.
14798
14799 2007-08-22  Marek Habersack  <mhabersack@novell.com>
14800
14801         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
14802         containing a list of directories separated by ':'. MSDN docs say
14803         the directories should be separated with ';'. Part of a bugfix for
14804         bug #81446
14805
14806 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
14807
14808         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
14809         it should MonoType and not MonoClass.
14810
14811 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
14812
14813         * culture-info-table.h : regenerated.
14814
14815 2007-08-20  William Holmes  <billholmes54@gmail.com>
14816
14817         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
14818          to call ReplaceFile Kernel32 on windows or in io-layer.
14819         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
14820         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
14821          as an internal call.
14822
14823         Code is contributed under MIT/X11 license.
14824
14825 2007-08-20  Jb Evain  <jbevain@novell.com>
14826
14827         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
14828         and MONO_EXCEPTION_FIELD_ACCESS.
14829
14830         * debug-helpers.[c|h]: new mono_field_full_name function.
14831
14832 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14833
14834         * class.c: Removed class_security_level() and moved it to
14835         security-core-clr.c.
14836
14837         * security-core-clr.c, security-core-clr.h: class_security_level()
14838         is now public and renamed to mono_security_core_clr_class_level().
14839         It also looks for security attributes in the classes a class is
14840         nested in.
14841
14842 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14843
14844         * security-core-clr.c, security-core-clr.h: CoreCLR security
14845         utility functions.
14846
14847         * Makefile.am: Added security-core-clr.[ch].
14848
14849         * security-manager.c, security-manager.h: Functions and enum for
14850         setting and getting the security mode.
14851
14852         * class.c: CoreCLR security checks.
14853
14854 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14855
14856         * icall-def.h, process.c, process.h: implemented icall to get
14857         user/system processor times.
14858
14859 2007-08-17  Mark Probst  <mark.probst@gmail.com>
14860
14861         * domain.c, threads.c, class-internals.h, domain-internals.h: New
14862         reader-lock-free jit_info_table.
14863
14864 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
14865
14866         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
14867
14868         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
14869
14870         * object-internals.h (MonoException): Add missing _data member.
14871
14872 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
14873
14874         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
14875         checking that only methods with matching qname or fqname are picked
14876         from implemented interfaces.
14877
14878 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14879
14880         * verify.c (do_newarr):added, do type verification of
14881         newarr ops, push the right value on the eval stack.
14882         * verify.c (mono_method_verify): use do_newarr
14883
14884
14885 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14886
14887         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
14888         factored the common code into get_boxable_mono_type, which
14889         is now using mono_type_get_full, this fixed byref related tests.
14890
14891 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14892
14893         * class.c: added mono_type_get_full, this function has the same
14894         behavior of mono_class_get_full but the returned MonoType has
14895         all metadata of the associated token in case of a typespec token.
14896         * class.c: added mono_type_retrieve_from_typespec, used by 
14897         mono_type_get_full to retrieve the token type.
14898         * class.c (mono_class_create_from_typespec): changed to use
14899         mono_type_retrieve_from_typespec.
14900         * class.c (mono_ldtoken): changed to use mono_type_get_full
14901         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
14902         * class-internals.h: exported mono_type_get_full for internal use.
14903
14904 2007-08-16  Jb Evain  <jbevain@novell.com>
14905
14906         * domain.c (supported_runtimes): add entry for
14907         the 'moonlight' runtime version.
14908
14909 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14910
14911         * verify.c (mono_method_verify): small typo sliped in.  
14912
14913 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14914
14915         * verify.c (do_unbox_value): added, do type verification of
14916         unboxing ops
14917         * verify.c (mono_method_verify): use do_unbox_value
14918
14919
14920 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14921
14922         * verify.c (dump_stack_value): fixed typo, was printing string
14923         instead of object on stack.
14924         * verify.c (do_box_value): moved the byref check up as it leads
14925         to invalid code and should be done earlier.
14926         * verify.c: improved error messages for and ldobj
14927
14928 2007-08-15  William Holmes  <billholmes54@gmail.com>
14929
14930         * marshal.c (emit_marshal_custom): Omit the call to 
14931           marshal_native_to_managed when calling native to managed 
14932           and the argument is specified as an out argument.
14933
14934         Code is contributed under MIT/X11 license.
14935
14936 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14937
14938         * verify.c: fixed the type checks for generics, function pointers and vectors.
14939         Added type verification for ldobj and ldtoken. The verifier
14940         would segfault if header or signature of a method contained references
14941         to non-existant types.
14942
14943 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
14944
14945         * marshal.c (cominterop_get_ccw): Patch from
14946         Bill Holmes to no walk up interface hierarchy. 
14947         All parent methods should be present in the interface for COM.
14948    
14949         Code is contributed under MIT/X11 license.
14950
14951 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
14952
14953         * marshal.c (emit_marshal_com_interface): Patch from
14954         Bill Holmes to handle COM Interfaces as return values
14955         for native->managed calls.
14956    
14957         Code is contributed under MIT/X11 license.
14958
14959 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
14960
14961         * marshal.c (cominterop_get_idispatch_for_object): Implement
14962         for runtime callable wrappers.
14963    
14964         Code is contributed under MIT/X11 license.
14965
14966 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
14967
14968         * pedump.c (main): changed from mono_init to mono_init_from_assembly
14969         so 2.0 types are accessible
14970
14971
14972 2007-08-13  Miguel de Icaza  <miguel@novell.com>
14973
14974         * domain.c (mono_init_internal): Call mono_assembly_load_friends
14975         once we load mscorlib.   Due to the order in which we initialize,
14976         the mono_assembly_load_full routine that loads mscorlib did not
14977         load friends.   We now load it once we load the
14978         mono_defaults.internals_visible_class class. 
14979
14980         * assembly.c: Expose the mono_load_friend_assemblies method.
14981
14982 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
14983
14984         * verify.c: improved the handling of boxing, better
14985         type checking for unary ops and conversion. Fix bug
14986         regarding managed pointer compatibility checking
14987
14988 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
14989
14990         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
14991
14992         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
14993
14994 2007-08-09  Raja R Harinath  <rharinath@novell.com>
14995
14996         * reflection.c (dup_type): Remove.
14997         * class.c (dup_type): Remove.
14998         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
14999         instead of the dodgy 'dup_type'.
15000         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
15001         handle the case where 'dup_type' needed the second argument.
15002
15003 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
15004
15005         * domain.c: Fix a warning.
15006
15007 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15008
15009         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
15010         checking that methods with the same fqname are not overridden
15011         with a method from an ancestor.
15012
15013 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
15014
15015         * threads.c (free_thread_static_data_helper): Avoid a crash if
15016         thread->static_data is not yet set.
15017
15018 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
15019
15020         * marshal.c: Use correct image when emitting
15021         native wrapper for COM calls.
15022    
15023         Code is contributed under MIT/X11 license.
15024
15025 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
15026
15027         * icall-def.h, security.c, security.h :
15028           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
15029
15030 2007-08-07  Martin Baulig  <martin@ximian.com>
15031
15032         * mono-debug-debugger.h
15033         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
15034
15035         * domain.c (mono_domain_free): Call
15036         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
15037
15038 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
15039
15040         * verify.c (check_underflow, check_overflow): error message now returns IL offset
15041         * verify.c (in_same_block): code should test if either offset is inside the clauses
15042         * verify.c (mono_method_verify): push the exception into the eval stack of exception
15043         and filter blocks
15044
15045 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15046
15047         * image.c (mono_image_close): Fix a leak.
15048
15049         * object.c (mono_runtime_invoke_array): Avoid using alloca.
15050
15051         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
15052
15053 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15054
15055         * domain.c, threads.c, threads-types.h: fix memory retention issue
15056         with thread static variables not being cleared on domain unload.
15057         Reuse thread static slots after domain unload.
15058
15059 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15060
15061         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15062         nullable type.
15063
15064         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15065         now done in mono_runtime_invoke_array.
15066
15067         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
15068         receiver is a nullable type.
15069
15070         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
15071         generic parameter.
15072
15073 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
15074
15075         * marshal.c: Implement COM Objects as return type for 
15076         managed->unmanaged calls. Added Release calls for COM Object
15077         out/return values in managed->unmanaged calls.
15078
15079         Code is contributed under MIT/X11 license.
15080
15081 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15082
15083         * threads.h, threads-type.h: move the hazard pointer declarations
15084         to the private header.
15085
15086 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15087
15088         * file-io.c, appdomain.c: memory leak fixes.
15089
15090 2007-08-02  Dick Porter  <dick@ximian.com>
15091
15092         * socket-io.c
15093         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15094         SO_REUSEADDR setting into io-layer/sockets.c.
15095
15096 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15097
15098         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15099         from Object when called on a generic parameter. Fixes #82211.
15100
15101 2007-08-01  Dick Porter  <dick@ximian.com>
15102
15103         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15104         Fixes bug 79250 yet again.
15105
15106 2007-07-30  Martin Baulig  <martin@ximian.com>
15107
15108         Merged the `debugger-dublin' branch.
15109
15110         * mono-debug.h
15111         (MonoDebugDataTable): New typedef.
15112         (MonoDebugMethodAddressList): New typedef.
15113         (MonoDebugWrapperData): Removed.
15114         (MonoDebugSymbolTable): Removed `current_data_table',
15115         `current_data_table_size', `current_data_table_offset'.
15116         (MonoDebugDataItemType): Moved into mono-debug.c.
15117         (MonoDebugMethodJitInfo): Remove `address'.
15118         (mono_debug_data_table): New global variable.
15119         (mono_debug_lookup_method_addresses): New public function.
15120         (mono_debug_find_method): Take a `MonoMethod *', not a
15121         `MonoDebugMethodInfo *'.
15122
15123         * mono-debug.c: Drop support for the old symbol tables.
15124
15125 2007-06-28  Martin Baulig  <martin@ximian.com>
15126
15127         * mono-debug.c (mono_debug_debugger_version): New public variable.
15128
15129 2007-07-31  William Holmes  <billholmes54@gmail.com>
15130
15131         * metadata.c Changed mono_type_create_from_typespec to not insert
15132           the type into the hash map until after
15133           do_mono_metadata_parse_type has completed.
15134         Fixes Bug #82194
15135         Code is contributed under MIT/X11 license.
15136
15137 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15138
15139         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15140         generic parameter. Fixes #82211.
15141
15142 2007-07-27  Jb Evain  <jbevain@novell.com>
15143
15144         * pedump.c (dump_metadata, dump_metadata_header): dump
15145         versions contained in the metadata header.
15146
15147 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15148
15149         * threads.c: register small_id_table with the GC.
15150
15151 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15152
15153         * threads.c, threads.h, class-internals.h, object-internals.h:
15154         Hazard pointers, to be used by lock-free parallel algorithms.
15155
15156 2007-07-26  Dick Porter  <dick@ximian.com>
15157
15158         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15159         routine on non-windows platforms, as I've not managed to think of
15160         a non-kludgy way of doing this.  Finishes off bug 78739.
15161
15162 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15163
15164         * object.c: properly setup interface_bitmap in proxy vtables.
15165
15166 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15167
15168         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15169         to create unique shadow copy target directories, use the domain's
15170         serial number instead. Each domain gets a unique target directory
15171         that way.
15172
15173         * domain.c (mono_domain_create): added code to increment domain
15174         shadow copy serial number and cache the value in the current
15175         domain structure.
15176
15177         * domain-internals.h (struct _MonoDomain): added a new field -
15178         shadow_serial to hold the serial number used in generation of
15179         shadow-copy directories. This is to make sure that the directory
15180         name is unique for each and every domain created. We avoid a race
15181         condition with overriding assemblies already in use by other app
15182         domains.
15183
15184 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15185
15186         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15187         binding generic parameters.
15188
15189 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15190
15191         * metadata.c (do_mono_metadata_parse_generic_class): Use
15192         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15193         error.
15194
15195 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15196
15197         * loader.c, class-internals.h, reflection.c: removed the per-method
15198         generics hashtable: we use the global one through the call of
15199         mono_class_inflate_generic_method ().
15200
15201 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15202
15203         * class.c, metadata.c, class-internals.h: introduce yet another
15204         generics global cache for inflated methods (fixes 98% of the perf
15205         issue in bug #81806).
15206
15207 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15208
15209         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15210         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15211         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15212         return a MonoGenericInst containing (a copy) of those types.
15213         (mono_metadata_inflate_generic_inst): Update to changes.
15214         (mono_metadata_parse_generic_inst): Likewise.
15215         (mono_get_shared_generic_inst): Likewise.
15216         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15217         (mono_reflection_bind_generic_method_parameters): Likewise.
15218         * metadata-internals.h: Likewise.
15219         * icall.c (free_generic_context): Kill.
15220         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15221
15222         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15223         mono_metadata_type_dup.
15224         * marshal.c (mono_mb_create_method): Likewise.
15225
15226         * metadata.c (mono_metadata_type_dup): Rename from
15227         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15228         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15229         * marshal.c, metadata-internals.h: Update to changes.
15230
15231 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15232
15233         * class.c: fixed a small leak for array classes and removed warning.
15234
15235 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15236
15237         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15238         Return 0x8000000 for return parameters. Fixes #82161.
15239
15240 2007-07-21  Marek Habersack  <grendello@gmail.com>
15241
15242         * appdomain.c (get_shadow_assembly_location): append the current
15243         ticks value to the path. Avoids overwriting the same assemblies by
15244         several threads at the same time.
15245
15246 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15247         and Raja R Harinath  <rharinath@novell.com>
15248
15249         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15250         Simplify slightly.
15251         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15252         property for testing if a method is a generic method definition.
15253
15254 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15255
15256         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15257
15258 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15259
15260         * verify.c: used function from private branch, reverted to the one in class.h 
15261
15262 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15263
15264         * verify.c: a typo slipped in and the code wont compile
15265
15266 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15267
15268         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15269         disabled box instruction as it is doing the wrong thing
15270         improved stack dump messages, now it is easier to debug type related issues
15271
15272
15273 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15274
15275         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15276
15277 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15278
15279         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15280         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15281         grouped with class and valuetype. This change will simply 
15282         the code as it should be handled just like unmanaged pointers.
15283
15284 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15285
15286         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15287
15288 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15289
15290         * verify.c: several stack merge issues fixed, reference comparisons now
15291         check the type size. strict type check now works correctly.
15292         added more uses of IS_MANAGED_POINTER macro.
15293         fixed issues pointed by running the test suite against .net.
15294         
15295
15296 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15297
15298         * class.c, loader.c, class-internals.h: Removed the
15299         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15300         defines.
15301
15302         * icall.c: Better error checking in some internal reflection
15303         methods.
15304
15305 2007-07-18  William Holmes  <billholmes54@gmail.com>
15306
15307         * filewatcher.c : removed unused variable 'filename' in 
15308           ves_icall_System_IO_FSW_SupportsFSW
15309
15310 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15311
15312         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15313         obsolete, removed.
15314
15315 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15316
15317         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15318         
15319         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15320
15321 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15322
15323         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15324         Implement generics support.
15325         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15326
15327         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15328         type_args and method_args arguments.
15329         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15330         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15331         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15332
15333 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
15334
15335         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
15336           It adds a rootimage parameter to mono_reflection_get_type_internal,
15337           adds new function mono_reflection_get_type_with_rootimage and use
15338           the rootimage to resolve the types instead of the current image
15339
15340 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15341
15342         * culture-info-table.h: Forgot to update after r78304.
15343
15344 2007-07-13  Raja R Harinath  <rharinath@novell.com>
15345
15346         * class.c (mono_class_is_open_constructed_type)
15347         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
15348
15349 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
15350
15351         * class.c (mono_bounded_array_class_get):  method fails if used with
15352         an incomplete TypeBuilder enum (no basetype field), fixed it by 
15353         avoiding calculating the size for such array as it cannot be instantiated.
15354         Fix bug #82015
15355
15356 2007-07-12  Raja R Harinath  <rharinath@novell.com>
15357
15358         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
15359         field.
15360         * metadata.c, reflection.c: Update to changes.
15361
15362 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
15363
15364         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
15365         mono_class_is_valid_enum, they are used to valide a enum when loading.
15366         * reflection.c: used new functions to throw TypeLoadException when and
15367         invalid enum is build with TypeBuilder. Fixes #82018
15368   
15369 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15370
15371         * object.c: forgot commit of mono_class_setup_methods () to access
15372         iface->methods.
15373         * object-internals.h: added a few more handy fields to
15374         MonoIMTCheckItem.
15375
15376 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15377
15378         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
15379         iface->methods.
15380
15381 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15382
15383         * class-internals.h, object-internals.h, object.c: IMT-based
15384         interface invocation core from Massimiliano Mantione
15385         (massi@ximian.com) with a reworked arch-specific interface,
15386         bsearch implementation and a few bugfixes and memory savings by me.
15387
15388 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
15389
15390         * class.c (mono_class_create_from_typedef): mono would segfault if 
15391         an enum did not have a __value field. It now throws a TypeLoadException
15392         for such cases. Fix bug #82022
15393
15394 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15395
15396         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
15397
15398 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15399
15400         * class.c (mono_class_init): If a class is already inited but has
15401         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
15402
15403 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15404
15405         * class.c: Properly handle the case of an unimplemented interface
15406         method.  Fixes: 81673.
15407
15408 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15409
15410         * class-internals.h, object.c: cleanup patch from massi: use
15411         MonoVTable->interface_bitmap since the vtable interfaces offset array
15412         is going away.
15413
15414 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15415
15416         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
15417         GetMDStreamVersion icall instead.
15418
15419 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
15420
15421         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
15422         not use mono_dl_build_path() with a full library name: makes
15423         fallbacks to libgaim and libfam work.
15424
15425 2007-07-06  William Holmes  <billholmes54@gmail.com>
15426
15427         * assembly.c: Added a continue statement in probe_for_partial_name when
15428          parse_assembly_directory_name fails.  Fixes : 82002
15429
15430 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
15431
15432         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
15433         and added a verification  for TYPEDBYREF.
15434         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
15435         make native int interchangeable with int32 and some small cleanup and formating.
15436         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
15437         handle byref of byref.
15438         * verify.c (push_local): handle byref of byref.
15439         * verify.c (do_binop): invalid mix of values is unverifiable
15440         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
15441         added visibility checks
15442         * verify.c (field related method): added visibility checks
15443         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
15444
15445 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
15446
15447         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
15448         string.
15449
15450 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15451
15452         * profiler.c (mono_profiler_load): Fix an off-by-one error.
15453
15454         * marshal.c (emit_marshal_string): When returning a string from managed code,
15455         allways make a copy even for unicode strings. Fixes #81990.
15456
15457 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
15458
15459         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
15460         of byref generic inst types (bug #81997).
15461
15462 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
15463
15464         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
15465         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
15466
15467 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
15468
15469         * marshal.c (emit_marshal_string): Add support for unicode strings in
15470         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
15471
15472 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
15473
15474         * verify.c: field load/store are now verified, missing only access checks now
15475
15476 2007-06-28  Martin Baulig  <martin@ximian.com>
15477
15478         * mono-debug.c (mono_debug_debugger_version): New public variable.
15479
15480 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
15481
15482         * locales.c: When constructing DateTimeFormat or NumberFormat for
15483         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
15484         MonoCultureInfo contructed from the current locale is always
15485         read-only and has UseUserOverride set to true. All MonoCultureInfo
15486         instances returned for GetCultures have both IsReadOnly and
15487         UseUserOverride set to true. Fixes part of bug #81930.
15488
15489 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
15490
15491        * icall-def.h: Update System.__ComObject icalls
15492        * marshal.c: Avoid managed transition (and object creation)
15493        when looking up COM interface in RCW.
15494        * marshal.h: Ditto.
15495        
15496        Code is contributed under MIT/X11 license.
15497
15498 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
15499
15500         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
15501         to avoid crashes during assembly unloading.
15502
15503 2007-06-22  Raja R Harinath  <rharinath@novell.com>
15504
15505         Fix MethodInfo.IsGenericMethodDefinition
15506         * reflection.c (mono_reflection_bind_generic_method_parameters):
15507         Rearrange code to ensure we always uses a generic method definition.
15508         * class.c (mono_class_inflate_generic_method_full): Set
15509         'generic_container' field only for generic method definitions.
15510         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15511         Use presense of 'generic_container' field as indication of being a
15512         generic method definition.
15513
15514 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
15515
15516         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15517
15518         * object-internals.h: Reflect changes in the layout of the managed Delegate
15519         class.
15520         
15521         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
15522         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
15523         runtime memory used by the dynamic method. Fixes #77146.
15524
15525 2007-06-21  Dick Porter  <dick@ximian.com>
15526
15527         * file-io.h: 
15528         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
15529         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
15530         81767.
15531
15532 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15533
15534         * reflection.c (method_encode_methodspec): Add a tripwire.
15535         * class.c (inflate_generic_type): The fully open generic type is
15536         not the same as the generic type definition.
15537
15538 2007-06-21  Martin Baulig  <martin@ximian.com>
15539
15540         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
15541
15542         * mono-debug-debugger.h
15543         (MonoDebuggerBreakpointInfo): Removed.
15544         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
15545         (mono_debugger_remove_breakpoint): Likewise.
15546         (mono_debugger_breakpoint_callback): Likewise.
15547         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
15548
15549 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15550
15551         * metadata.c (mono_metadata_lookup_generic_class): The fully open
15552         generic type is not the same as the generic type definition.
15553         * class.c (mono_generic_class_get_class): Likewise.
15554
15555 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
15556
15557         * icall.c: The second argument to 
15558         System.Reflection.MethodBase.GetMethodFromHandleInternalType
15559         is a MonoType not a MonoClass.
15560
15561 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15562
15563         * verify.c: support for function pointers in the verifier
15564
15565 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15566
15567         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
15568
15569 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
15570
15571         * assembly.c: removed Mono.Data.SqliteClient from the list of
15572         forward-compatible assemblies as it breaks the ABI (bug #81899).
15573
15574 2007-06-19  Raja R Harinath  <rharinath@novell.com>
15575
15576         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
15577         lookup/update with the loader lock.
15578         * reflection.c (mono_class_bind_generic_parameters): No need to
15579         protect mono_metadata_lookup_* with the loader lock.
15580         * class.c (inflate_generic_type): Likewise.
15581         
15582         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
15583         on a generic instantiated type.
15584
15585 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
15586
15587         *verify.c: produce meanfull error messages on verification error
15588         *verify.c: fixed some cases of verification errors reported as validation errors
15589         *pedump.c: fixed the error name array, now it shows validation errors properly
15590         *verify.h: fixed the contant that should be used for verification errors
15591
15592 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
15593
15594         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
15595         for bug #77596, 81858 and 80743 (generics data structures on domain
15596         unload).
15597
15598 2007-06-15  Raja R Harinath  <rharinath@novell.com>
15599
15600         Avoid allocating 'MonoGenericContext' on the heap.
15601         * class-internals (_MonoMethodInflated::context): Make field
15602         inline, not a pointer.
15603         * loader.c (method_from_methodspec): Allocate 'new_context' on the
15604         stack.  Use the context embedded within the inflated method as the
15605         hash key, rather than 'new_context'.
15606         * class.c (inflate_generic_context): Simplify.  Return a struct
15607         rather than allocating on the heap.
15608         (mono_class_inflate_generic_method_full): Update to changes.  Now,
15609         doesn't salt away a copy of the context -- simplifying the
15610         lifetime rules of a 'MonoGenericContext *'.
15611         (mono_method_get_context): Return pointer to embedded context.
15612         (setup_generic_array_ifaces): Allocate temporary context on stack.
15613         * reflection.c (inflate_mono_method): Likewise.
15614         (mono_reflection_bind_generic_method_parameters): Likewise.
15615         Use the context embedded within the inflated method as the hash key.
15616
15617         Avoid a source of allocation of 'MonoGenericContext'.
15618         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
15619         and 'cached_context' fields into embedded 'MonoGenericContext' field.
15620         * class.c: Update to changes.
15621         (mono_generic_class_get_context): Simplify drastically.  Now just
15622         returns a pointer to the field.
15623         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
15624         argument as a const pointer.
15625         (mono_metadata_generic_context_equal): Likewise.
15626         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
15627         Update to changes.
15628
15629 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
15630
15631         * verify.c improved the handling of brtrue/brfalse, factored out common code
15632
15633 2007-06-14  Raja R Harinath  <rharinath@novell.com>
15634
15635         Kill MonoGenericMethod.
15636         * class-internals.h (MonoGenericContext::method_inst): Rename from
15637         'gmethod' and convert to a MonoGenericInst.
15638         (MonoGenericMethod): Remove.
15639         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
15640         * loader.c (method_from_methodspec): Update to changes.  Use a
15641         MonoGenericContext as the key to the hashtable.
15642         * metadata.c (mono_metadata_generic_context_equal): Rename from 
15643         'mono_metadata_generic_method_equal' and take MonoGenericContext.
15644         (mono_metadata_generic_context_hash): Likewise from
15645         'mono_metadata_generic_method_hash'.  Change hash function.
15646         (mono_metadata_load_generic_params): Update to changes.
15647         (mono_get_shared_generic_method): Remove.
15648         * metadata-internals.h (mono_get_shared_generic_method): Remove.
15649         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
15650         (inflate_generic_context): Likewise.
15651         (mono_class_inflate_generic_method_full): Likewise.
15652         (setup_generic_array_ifaces): Likewise.
15653         (mono_class_create_from_typespec): Likewise.
15654         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
15655         (method_encode_methodspec): Update callsite.
15656         (reflection_methodbuilder_to_mono_method): Update to changes.
15657         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
15658         MonoGenericContext as the key to the hashtable.
15659         (inflate_mono_method): Update to changes.
15660
15661         * class-internals.h (MonoGenericMethod::container): Remove.
15662         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15663
15664 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
15665
15666         * profiler-private.h, profiler.c, profiler.h: added API to profile
15667         exception events.
15668
15669 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15670
15671         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
15672
15673 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15674
15675         * verify.c: method invocation is now validated, now we verify parameter types on stack.
15676         Fixed overflow and underflow not aborting the verification process.
15677
15678 2007-06-13  Mark Probst  <mark.probst@gmail.com>
15679
15680         * class-internals.h (MonoStats): Added stats entries for dynamic
15681         code allocations.
15682
15683 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
15684
15685         * loader.c (mono_free_method): Free header->locals and header->clauses.
15686
15687         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
15688         dynamic case.
15689
15690         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
15691
15692         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
15693
15694 2007-06-12  Raja R Harinath  <rharinath@novell.com>
15695
15696         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
15697         the tables.
15698
15699 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15700
15701         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
15702
15703 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15704
15705         MonoGenericMethod on a diet
15706         * class-internals.h (_MonoMethodInflated::reflection_info): Move
15707         here ...
15708         (_MonoGenericMethod::reflection_info): ... from here.
15709         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
15710         Update to changes.
15711         * reflection.c (inflate_mono_method): Likewise.
15712         (mono_reflection_bind_generic_method_parameters): Likewise.
15713
15714 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15715
15716         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
15717         *verify.c: factored long ldarg forms to share code with short forms
15718
15719 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15720
15721         *verify.c: fixed code formating factored some duplicate code
15722         into a new function
15723
15724         *verify.h: fixed binary incompatibility introduced earlier
15725
15726         *pedump.c: fixed formating
15727
15728 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15729
15730         Fix assertion when disassembling Mono.C5.dll
15731         * loader.c (method_from_methodspec): Avoid inflating a method
15732         twice with the same context.  If the methodref is inflated, use
15733         the declaring method instead.
15734
15735         * class.c (mono_class_from_generic_parameter): Fix case similar to
15736         bug #81830 handled below, but for method containers.
15737
15738 2007-06-10  Raja R Harinath  <harinath@gmail.com>
15739
15740         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
15741         get_shared_generic_class.  Directly inflate the instance.
15742         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
15743         (inflate_generic_class): Delete.
15744         (get_shared_generic_class): Delete.  Move setting of
15745         'cached_class' and 'cached_context' ...
15746         * metadata.c (mono_metadata_lookup_generic_class): ... here.
15747
15748         * metadata.c (mono_metadata_lookup_generic_class): Change
15749         signature to take the components of a MonoGenericClass rather than
15750         an allocated MonoGenericClass.  Change semantics to be intern-like.
15751         * reflection.c (mono_class_bind_generic_parameters): Update to
15752         changes.  Make locking region tighter.
15753         * class.c (inflate_generic_class): Update to changes.
15754         (get_shared_generic_class): Likewise.
15755         * metadata-internals.h: Likewise.
15756
15757         * reflection.c (mono_class_bind_generic_parameters): Take and
15758         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
15759         (mono_reflection_bind_generic_parameters): Use
15760         'mono_class_bind_generic_parameters' rather than duplicate the code.
15761         * class.c (mono_bounded_array_class_get): Update to changes.
15762         * object-internals.h: Likewise.
15763
15764         * reflection.c (mono_class_bind_generic_parameters): Only support
15765         parameterizing generic type definitions.  Remove support for other
15766         open types.
15767
15768 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
15769
15770         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
15771
15772         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
15773         in the dynamic case.
15774
15775 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
15776
15777         * threads.c: When cleaning up thread, reset the Background bit.
15778         Fixes bug #81720.
15779
15780 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
15781
15782        * metadata.c: Move variable declarations to top of scope.
15783        * verify.c: Move variable declarations to top of scope.
15784
15785        Code is contributed under MIT/X11 license.
15786
15787 2007-06-08  Raja R Harinath  <rharinath@novell.com>
15788
15789         * reflection.c (mono_class_bind_generic_parameters): Replace
15790         open-coded loop with mono_metadata_inflate_generic_inst.
15791
15792         * class.c (get_shared_generic_class): Don't call
15793         mono_get_shared_generic_inst.  Use the container's own
15794         'class_inst'.
15795
15796         * metadata.c (mono_metadata_load_generic_params): Move
15797         initialization of 'context' field here from ...
15798         * class.c (mono_class_create_from_typedef): ... here, and ...
15799         * loader.c (mono_get_method_from_token): ... here.
15800
15801         * class.c (get_shared_generic_class): Rename from
15802         mono_get_shared_generic_class and make static.
15803         (mono_get_shared_generic_inst): Move to metadata.c.
15804         * loader.c (mono_get_shared_generic_method): Likewise.
15805         * class-internals.h, metadata-internals.h: Update to changes.
15806
15807         Fix #81830
15808         * class.c (mono_class_from_generic_parameter): Don't assume a
15809         generic container owner exists.  Generic containers from monodis
15810         don't have any.
15811
15812 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
15813
15814         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
15815         * verify.h: new typedefs to returns the non-verifiable status
15816         * verify.c: initial implementation of generics, stack merging and object compatibility check
15817
15818 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15819
15820         * class.c, image.c, class-internals.h (MonoImage): class_cache is
15821         a MonoInternalHashTable again (fixed bug in internal hash table
15822         code).
15823
15824 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15825
15826         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
15827         MonoInternalHashTable again (fixed bug in internal hash table
15828         code).
15829
15830 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15831
15832         * class.c, image.c, class-internals.h, domain.c,
15833         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
15834         changes.  Have to figure out what makes them break the SWF
15835         regression.
15836
15837 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15838
15839         * class.c, image.c, class-internals.h (MonoImage): class_cache is
15840         a MonoInternalHashTable now.
15841
15842 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15843
15844         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
15845         MonoInternalHashTable now.
15846
15847 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
15848
15849         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
15850         invoke_impl code.
15851
15852         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
15853
15854         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
15855         dependent trampoline.
15856
15857         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15858
15859         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
15860
15861 2007-05-29  Robert Jordan  <robertj@gmx.net>
15862
15863         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
15864
15865 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
15866
15867         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
15868
15869 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
15870
15871        * marshal.c: Fix interface lookup loops for
15872        cominterop_get_com_slot_for_method and 
15873        cominterop_get_method_interface. Only need to lookup
15874        if type is a class, else use interface type method is on.
15875
15876        Code is contributed under MIT/X11 license.
15877
15878 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
15879
15880         * reflection.c: HasSecurity can be present even if no specially 
15881         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
15882         SecurityAttribute). Fix CAS regression tests on buildbot.
15883
15884 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
15885
15886        * appdomain.c: Add configure checks for header files.
15887        * image.c: Add configure checks for header files.
15888        * file-io.c: Add configure checks for header files.
15889        * debug-mono-symfile.c: Add configure checks for header files.
15890        * threadpool.c: Add configure checks for header files.
15891        * console-io.c: Add configure checks for header files.
15892        * profiler.c: Add configure checks for header files.
15893        * rawbuffer.c: Add configure checks for header files.
15894        * icall.c: Add configure checks for header files.
15895        * rand.c: Add configure checks for header files.
15896        * socket-io.c: Add configure checks for header files.
15897
15898        Code is contributed under MIT/X11 license.
15899
15900 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
15901
15902         * reflection.c (mono_custom_attrs_from_builders): Remove the 
15903         assertion as it breaks the build.
15904         
15905         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
15906
15907         * reflection.c (lookup_custom_attr): Make a copy here too.
15908
15909         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
15910         dynamic images.
15911
15912         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
15913         images.
15914
15915         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
15916         info.
15917
15918 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
15919
15920         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
15921         (load_cattr_value): Ditto.
15922
15923 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
15924
15925         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
15926
15927 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
15928
15929         * threads.c: In "start_wrapper", set apartment_state to MTA if
15930         apartment_state is Unknown and we're running on 2.0 profile or
15931         higher.
15932         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
15933         to main method, then set apartment_state to Unknown on 1.0 profile,
15934         and MTA on 2.0 profile.
15935
15936 2007-05-16  Jb Evain  <jb@nurv.fr>
15937
15938         * class-internals.h (MonoDefaults): Add an attribute_class and
15939           customattribute_data_class.
15940         * domain.c (mono_init_internal): Populate them.
15941         * reflection.c: Use them to remove duplicates. Make a vew
15942         MonoClass variables `static'.
15943
15944 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
15945
15946         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
15947         step in implementing IMT, so that all isinst checks now can go
15948         through the bitmap.
15949         This was needed because vtables for TransparentProxy need to look
15950         like the vtable of the "target" class, so they need to point to
15951         its interface bitmap directly.
15952
15953         * object.c: inside "mono_class_create_runtime_vtable" and
15954         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
15955
15956 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15957
15958         * object-internals.h
15959           culture-info.h : added territory field in MonoCulture and
15960           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
15961         * locales.c : fill territory field above too.
15962         * culture-info-table.h : regenerated.
15963
15964 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
15965
15966         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
15967         Fixes #81599.
15968
15969 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
15970
15971         * object.c: Always initialize apartment, even if 
15972         there is no custom attributes on entry point.
15973         
15974         Code is contributed under MIT/X11 license.
15975
15976 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
15977
15978         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
15979         * metadata.c: If no encoding is set, check for unicode
15980         on class.
15981         
15982         Code is contributed under MIT/X11 license.
15983
15984 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
15985
15986         * threads.c: Handle if mono_thread_current returns NULL 
15987         
15988         Code is contributed under MIT/X11 license.
15989
15990 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
15991
15992         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
15993         in start_wrapper. Added mono_thread_init_apartment_state and
15994         mono_thread_cleanup_apartment_state.
15995         * object.c: Initialize thread apartment state on main thread
15996         by checking for STAThreadAttribute on entry point.
15997         * object-internals.h: Add apartment_state field to MonoThread.
15998         * threads-types.h: Add unmanaged definition of 
15999         System.Threading.ApartmentState, MonoThreadApartmentState.
16000         
16001         Code is contributed under MIT/X11 license.
16002         
16003 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
16004
16005         * class.c: Fix windows build.
16006         * class-internals.h: Fix windows build.
16007         
16008         Code is contributed under MIT/X11 license.
16009
16010 2007-05-08  Robert Jordan  <robertj@gmx.net>
16011
16012         * process.c (CreateProcess_internal):
16013         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
16014         .CreateNoWindow was specified. Fixes #81496.
16015
16016 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16017
16018         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
16019         step in implementing IMT, replaced it with two compact arrays
16020         (interfaces_packed and interface_offsets_packed) and a bitmap that
16021         is used for isinst checks (interface_bitmap).
16022
16023         * class.c: (compare_interface_ids): compare function to pass to
16024         bsearch when looking for an interface with a given id.
16025         (mono_class_interface_offset): reimplemented using bsearch on
16026         interfaces_packed, getting the offset from interface_offsets_packed.
16027         (print_implemented_interfaces): utility debugging function.
16028         (setup_interface_offsets): reworked to initialize interfaces_packed,
16029         interface_offsets_packed and interface_bitmap.
16030
16031         * object.c: replaced all accesses to "MonoClass.interface_offsets"
16032         with uses of interfaces_packed and interface_offsets_packed.
16033
16034 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16035
16036         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
16037         mono_class_interface_offset prototype to wrap all accesses to
16038         "MonoClass.interface_offsets".
16039
16040         * class.c: Implemented mono_class_interface_offset, and wrapped all
16041         accesses to "MonoClass.interface_offsets".
16042
16043         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
16044         "MonoClass.interface_offsets".
16045
16046 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16047
16048         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
16049         GetMethodFromHandle overloads (bug #78637).
16050
16051 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16052
16053         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
16054         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
16055
16056 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
16057
16058         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
16059         #81498.
16060
16061         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16062         gracefully.
16063         (mono_custom_attrs_from_index): Ditto.
16064
16065         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
16066         Fixes #81501.
16067
16068 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
16069
16070         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16071         is now allocated from a mempool.
16072
16073 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
16074
16075         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16076         caller holds threads_lock, leading to deadlocks. Fixes #81476.
16077
16078 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
16079
16080         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16081         mono_loader_clear_error () too late. Fixes #81463.
16082
16083 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
16084
16085         * culture-info-table.h : regenerated.
16086
16087 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
16088
16089         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16090         is missing.
16091
16092 2007-04-25  Dick Porter  <dick@ximian.com>
16093
16094         * Makefile.am: Put the mingw enforced-optimisation back into the
16095         PLATFORM_WIN32 section.
16096
16097 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
16098
16099         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16100         patch.
16101
16102         * image.c (mono_image_load_module): New API function to load a module reference.
16103
16104         * image.c (load_modules): Load modules lazily. Fixes #80812.
16105
16106         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16107         
16108         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16109
16110         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16111         to mono_image_load_module_dynamic.
16112
16113 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16114
16115         * marshal.c: Fix calling convention for CCW on non-windows
16116         platforms. STDCALL on windows, CDECL everywhere else to work 
16117         with XPCOM and MainWin COM.
16118         
16119         Code is contributed under MIT/X11 license.
16120
16121 2007-04-23  Martin Baulig  <martin@ximian.com>
16122
16123         Fix #80969.
16124
16125         * loader.c
16126         (method_from_memberref): Added `gboolean *used_context' argument.
16127         (mono_get_method_from_token): Likewise.
16128         (mono_get_method_full): Don't insert the method in the cache when
16129         `used_context' is true.
16130
16131 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16132
16133         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16134
16135         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16136         create new MonoTypes for returned types.
16137         * class.c (mono_generic_class_get_class): Export mono-internal.
16138         * class-internals.h: Update to changes.
16139
16140 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16141
16142         * threadpool.c, threadpool.h, icall-def.h: patch from
16143         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16144
16145 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16146
16147         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16148         
16149         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16150
16151         * threads.c (mono_thread_get_stack_bounds): New helper function.
16152
16153         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16154         Correctly compute stack bounds when attaching. Fixes #81394.
16155
16156 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16157
16158         * reflection.c: fix handling of doubles in custom attributes
16159         for the arm-fpa format (bug #81368).
16160
16161 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16162
16163         * reflection.c (assembly_add_win32_resources): Mildly relax an
16164         bounds check to let the end pointer point just past the end of the
16165         allocated buffer.  (may fix #81384)
16166
16167 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16168
16169         * culture-info-table.h : regenerated.
16170
16171 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16172
16173         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16174         the thread is aborted early.
16175
16176 2007-04-05  Dick Porter  <dick@ximian.com>
16177
16178         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16179         FindFirstFile()/FindNextFile() to find entries.  This lets the
16180         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16181         81038.
16182
16183         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16184         the parameters of
16185         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16186
16187 2007-04-04  Martin Baulig  <martin@ximian.com>
16188
16189         * debug-helpers.c
16190         (mono_method_desc_full_match): Add support for nested classes.
16191
16192 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16193
16194         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16195
16196 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16197
16198         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16199         waiting for too many threads.
16200
16201 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16202
16203         * environment.c: Fix return value check on uname so we can get the 
16204         executing version on Solaris operating systems.
16205
16206 2007-03-28  Jb Evain  <jbevain@gmail.com>
16207
16208         * class.c (mono_type_get_name_recurse): Complete the
16209         fix for the creation of assembly qualified names for
16210         pointer types. Fixes #81208.
16211
16212 2007-03-27  Dick Porter  <dick@ximian.com>
16213
16214         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16215         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16216         changed.
16217
16218         * threads.c
16219         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16220         the value of ReleaseMutex().
16221
16222 2007-03-27  Dick Porter  <dick@ximian.com>
16223
16224         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16225         in little-endian order, not network endian, so must be converted
16226         to host endian here.  Fixes bug 80593.
16227
16228 2007-03-22  Jb Evain  <jbevain@gmail.com>
16229
16230         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16231         qualified names for pointer types. Fixes #81208.
16232
16233 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16234
16235         * marshal.c: Add support for PreserveSigAttribute. 
16236         
16237         Code is contributed under MIT/X11 license.
16238
16239 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16240
16241         * process.c: Fix endianness issues. Fixes #81126.
16242
16243         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16244         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16245
16246         * image.c (mono_image_lookup_resource): Make this work on big-endian
16247         machines.Change API contract so the caller needs to free the return value.
16248         
16249         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16250         API change.
16251         
16252 2007-03-14  Martin Baulig  <martin@ximian.com>
16253
16254         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16255         mono_type_get_desc() as well.
16256
16257 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16258
16259         * icall.c:  Fix environ access in VS.  
16260         
16261 2007-03-13  Alp Toker  <alp@atoker.com>
16262
16263         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16264         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16265         #63841.
16266
16267 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16268
16269         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16270         circular references among dynamic methods. Fixes #81091.
16271
16272         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16273
16274 2007-03-09  Martin Baulig  <martin@ximian.com>
16275
16276         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16277
16278 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16279
16280         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16281         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16282         
16283         Code is contributed under MIT/X11 license.
16284         
16285 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16286
16287         * loader.c: Reapply patch for bug #79424.
16288
16289 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16290
16291         * metadata.c (mono_type_to_unmanaged): Only convert object to
16292         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16293
16294 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16295
16296         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16297         (and incorrectly set) is_reference field from MonoGenericInst.
16298
16299 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16300
16301         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16302         a little earlier.
16303
16304         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16305
16306         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16307
16308 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16309
16310         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16311         FileOptions.1 value to mean "temporary", map that to
16312         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16313
16314         Fixes 80688
16315
16316 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16317
16318         * appdomain.c: implement MS .Net style shadow copying. Copies of
16319         the assemblies are made in a subdirectory of the dynamic base
16320         directory, the assembly names are preserved.
16321         Copy .mdb and .config files along with the assemblies being shadowed.
16322
16323 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16324
16325         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16326         (emit_marshal_handleref): Ditto.
16327
16328         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16329         on Visual C++. Fixes #80671.
16330
16331 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16332
16333         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16334         for clone operations.
16335
16336 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16337
16338         * marshal.c: Fix warnings.
16339
16340 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
16341
16342         * loader.c: allow case-insensitive matching of the dll name
16343         in dllmap handling when prefixed with "i:".
16344
16345 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
16346
16347         * threads.c: Fix #ifdef for dummy_apc function for VS.
16348
16349 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16350
16351         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
16352
16353 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
16354         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
16355         giving precedence to the methods with a fully qualified name
16356         (InterfaceName.MethodName) when building the interface sections
16357         of the vtable.
16358
16359 2007-02-16  Dick Porter  <dick@ximian.com>
16360
16361         * threadpool.c (append_job): Fix fast-path array handling, so it's
16362         less likely the array will grow exponentially when the load is
16363         heavy.
16364
16365 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16366
16367         * metadata-internals.h, loader.c: fix dllmap lookup order
16368         for non-function maps, too, and prepare for fallback code.
16369
16370 2007-02-12  Robert Jordan  <robertj@gmx.net>
16371
16372         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
16373         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
16374         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
16375         GlobalFree. Fixes a part of bug #77075.
16376
16377 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
16378
16379         * loader.c: implemented typedef parent in field memberref.
16380
16381 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
16382
16383         * marshal.c: Fix warnings and remember to call Release on
16384         IUnknown of RCW.
16385         
16386         Code is contributed under MIT/X11 license.
16387
16388 2007-02-10  Miguel de Icaza  <miguel@novell.com>
16389
16390         * class-internals.h: Add MonoHandleRef definition, and
16391         handleref_class to mono_defaults. 
16392
16393         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
16394         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
16395
16396         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
16397         (do nothing on this stage)
16398         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
16399         (emit_marshal_handleref): New method, used for argument handling
16400         of HandleRefs. 
16401
16402 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
16403
16404         * class.c (mono_class_setup_parent): Lazily init com types.
16405         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
16406         init com types.
16407         * object.c (mono_remote_class_vtable): Lazily init com types.
16408         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
16409         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
16410         * domain-internals.h: Expose mono_init_com_types.
16411         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
16412         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
16413         Add support for COM Callable Wrapper marshalling.
16414         * marshal.h: Add icall definitions.
16415         * gc.c: Handle freeing of CCWs in finalizer code.
16416         
16417         Code is contributed under MIT/X11 license.
16418
16419 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
16420
16421         * reflection.c: changed all the signature encoding code to use
16422         a variable-sized buffer.
16423
16424 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16425
16426         * marshal.c: locking fixes: never take the loader lock
16427         or other runtime locks when holding the marshal lock
16428         (fixes bug#80664).
16429
16430 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
16431
16432         * marshal.c: make the delegate function pointer mapping
16433         work for the moving GC.
16434
16435 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
16436
16437         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
16438         for bug #80618.
16439
16440 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16441
16442         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
16443         gmodule.
16444
16445 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16446
16447         * threadpool.c: made the code moving-GC safe.
16448
16449 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
16450
16451         * assembly.c, boehm-gc.c, class-internals.h, class.c,
16452         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
16453         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
16454         warning cleanup.
16455         * reflection.c: warning cleanup, some threading and moving GC fixes.
16456
16457 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
16458
16459         * class.c, loader.c: create the needed Set/Get/Address array methods
16460         as well as the .ctors in mono_class_init (), fixes bug #80567.
16461
16462 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
16463
16464         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
16465         we doesn't decrease its alignment. Should fix the sparc build.
16466
16467 2007-01-24  Dick Porter  <dick@ximian.com>
16468
16469         * socket-io.c
16470         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
16471         Create the returned object if we need to ignore an unsupported
16472         socket option.  Fixes a segfault reported by Atsushi.
16473
16474 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
16475
16476         * class.c, object.c: restrict GC-tracked fields to
16477         UIntPtr fields used inside corlib, so we provide better
16478         type info to the GC and also allow broken packing as in
16479         bug #80580.
16480
16481 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
16482
16483         * sgen-gc.c: removed duplicated function.
16484
16485 2007-01-19  Miguel de Icaza  <miguel@novell.com>
16486
16487         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
16488         value that means that the value is not supported, but that we
16489         should not return a failure, but instead report this as a
16490         successful operation.
16491
16492 2007-01-19  Raja R Harinath  <rharinath@novell.com>
16493
16494         Fix tests/bug79956.2.il
16495         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
16496         (mono_generic_class_get_class): If the generic definition in an
16497         enum, copy over other fields related to it.
16498
16499 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
16500
16501         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
16502         genericinst enums (bug #79215).
16503
16504 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
16505         * class.c: Fix bug 80307.
16506
16507 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
16508
16509         * image.c: if the file table is not present, try to load
16510         all the modules, since we don't have info about them
16511         having or not metadata (bug #80517).
16512         * assembly.c: allow mono_assembly_load_references () to
16513         work for netmodules.
16514
16515 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16516
16517         * image.c, metadata-internals.h, object.c: execute module
16518         cctors when running on the 2 runtime if present (bug #80487).
16519
16520 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
16521
16522         * icall.c: optimized InitializeArray() on bigendian.
16523
16524 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
16525
16526         * icall.c: fix for the broken ARM FPA double format.
16527
16528 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16529
16530         * icall.c: handle endian issues for r4 and r8 types, too, in
16531         the InitializeArray() icall.
16532
16533 2007-01-15  Miguel de Icaza  <miguel@novell.com>
16534
16535         * loader.c (mono_loader_error_prepare_exception): Clear the error
16536         once we have extracted the information from it, do this before we
16537         call into the JIT's class loading mechanisms.
16538
16539         * object.c (mono_class_create_runtime_vtable): Do not clear the
16540         loader error before calling mono_class_get_exception_for_failure
16541         as the loader error is needed inside
16542         mono_class_get_exception_for_failure to throw the error (thinko).
16543
16544         Fixes #80521
16545         
16546 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
16547
16548         * reflection.c: align fields rva data so it's faster to load at
16549         runtime.
16550
16551 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16552
16553         Prepare to simplify GenericMethod handling.
16554         * class-internals.h (mono_method_get_context): New accessor function.
16555         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
16556         rather than directly accessing '->context' field.
16557
16558         * class-internals.h (_MonoGenericParam.method): Move ...
16559         (_MonoGenericContainer): ... here.  Add into union with klass field.
16560         * class.c, icall.c, loader.c, metadata.c, reflection.c:
16561         Update to changes.
16562
16563 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
16564
16565         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
16566         the wrapper type enum and reduce relocations.
16567
16568 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16569
16570         * reflection.c (inflate_mono_method): Reuse method instantiation
16571         from the generic method, if available.
16572
16573 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16574
16575         * marshal.c (emit_marshal_variant): Fix conv_arg
16576         type in last commit, based on whether parameter is byref.
16577         
16578 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16579
16580         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
16581         marshalling.
16582         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
16583         MONO_TYPE_OBJECT back for VARIANT support.
16584
16585 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16586
16587         * marshal.c, marshal.h, icall-def.h: Implement 
16588         Marshal.ReAllocCoTaskMem.
16589
16590 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
16591
16592         * marshal.c: memory retention fixes: use the proper
16593         image cache for runtime_invoke method lookups.
16594
16595 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
16596
16597         * mempool.c: added code to help debug mempool allocations.
16598
16599 2007-01-11  Dick Porter  <dick@ximian.com>
16600
16601         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
16602         support (experimenting with faking it with IP_MTU_DISCOVER for
16603         systems that don't have IP_DONTFRAGMENT.)
16604         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
16605         icall.
16606
16607         * icall-def.h: new System.Net.Sockets.Disconnect icall.
16608
16609         * socket-io.h: Add new fields to MonoSocketAsyncResult
16610         corresponding to the new ones in Socket.cs.
16611
16612 2007-01-11  Raja R Harinath  <rharinath@novell.com>
16613
16614         Fix IronPython regression mentioned in #80249
16615         * metadata.c (do_mono_metadata_parse_generic_class): Clear
16616         'cached_context' field, since it may have been initialized as a
16617         side-effect of metadata parsing.
16618
16619         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
16620         (_MonoGenericClass.cached_class): Move here and rename from lone
16621         remaining field of ...
16622         (_MonoInflatedGenericClass): ... this.  Remove.
16623         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
16624         to changes.
16625
16626         Fix mcs/tests/test-128.cs regression.
16627         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
16628         2007-01-10 change below.
16629         [MONO_TYPE_OBJECT]: Recurse into array case.
16630
16631 2007-01-11  Raja R Harinath  <harinath@gmail.com>
16632
16633         * class-internals.h (mono_get_inflated_generic_class): Remove.
16634         * class.c (mono_get_inflated_generic_class): Remove.
16635         (mono_generic_class_get_class): Rename from
16636         mono_class_create_generic.
16637         (mono_class_from_mono_type) [GENERICINST]: Use it.
16638         * reflection.c, metadata.c: Update to changes.  Use
16639         'mono_class_from_mono_type'.
16640
16641 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
16642
16643         * reflection.c: use passed type when encoding an array element
16644         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
16645
16646 2007-01-09  Robert Jordan  <robertj@gmx.net>
16647
16648         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
16649         result arguments (someDelegate.EndInvoke (unrelatedAres)).
16650         Fixes bug #80392.
16651
16652 2007-01-09  Raja R Harinath  <rharinath@novell.com>
16653
16654         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
16655
16656         * object.c (set_value): Avoid aliasing between type->data.klass
16657         and type->data.generic_class.
16658
16659         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
16660
16661 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16662
16663         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
16664         between type->data.klass and type->data.generic_class.
16665
16666 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
16667
16668         * marshal.c: In MS.NET, StringBuilder objects are not copied by
16669         value in out parameters.
16670
16671 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16672
16673         Simplify invariant for MonoGenericClass::klass field.
16674         * class.c (mono_class_create_generic): Verify 'klass' is null.
16675         * metadata.c (do_mono_metadata_parse_generic_class): Don't
16676         initialize 'klass' field.
16677
16678 2007-01-05  Raja R Harinath  <rharinath@novell.com>
16679
16680         Ongoing work to avoid redundant data and simplify invariants.
16681         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
16682         'generic_class', and change type to a GenericInst.
16683         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
16684         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16685
16686 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
16687
16688         * class.c : skip io-layer under PLATFORM_WIN32.
16689
16690 2007-01-03  Tor Lillqvist  <tml@novell.com>
16691
16692         Fix #80305: In a bundled executable, look in the bundled exe
16693         assembly to determine the runtime version. Add the possibility to
16694         bundle also the machine.config file.
16695         
16696         * assembly.c (mono_assembly_open_from_bundle): Make
16697         non-static. Allow being called even if we have no bundled
16698         assemblies, and return NULL right away in that case.
16699
16700         * domain-internals.h: Declare mono_assembly_open_from_bundle()
16701         here.
16702
16703         * domain.c (app_config_parse): Take an assembly exe file name as
16704         parameter instead of a config file name. Check for a bundled
16705         config file for that assembly by calling
16706         mono_config_string_for_assembly_file() (see below) before looking
16707         for one in the file system.
16708         (get_runtimes_from_exe): Corrsponding change to call of
16709         app_config_parse().
16710         (get_runtimes_from_exe): Check for bundled assembly exe file first
16711         by calling mono_assembly_open_from_bundle(). If no bundled
16712         assembly exe file is found, call mono_image_open() as before to
16713         look it up in the file system.
16714
16715         * mono-config.c: Add variable bundled_machinec_onfig.
16716         (mono_config_string_for_assembly_file): New function.
16717         (mono_config_for_assembly): Move code snippet that looks for a
16718         bundled assembly .config file into the above new function. Call
16719         it.
16720         (mono_register_machine_config, mono_get_machine_config): New
16721         functions to set and retrieve
16722
16723         * assembly.h: Declare mono_register_machine_config().
16724
16725         * mono-config.h: Declare mono_get_machine_config() and
16726         mono_config_string_for_assembly_file().
16727
16728         * icall.c: No declaration of environ necessary on Win32. It is
16729         declared (as a macro expanding to a function call) in stdlib.h.
16730         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
16731         New internal mono function. Returns the value of
16732         mono_get_machine_config() as a Mono string.
16733
16734         * icall-def.h: Add get_bundled_machine_config().
16735
16736 2007-01-04  Raja R Harinath  <rharinath@novell.com>
16737
16738         Remove redundant field
16739         * class-internals.h (_MonoGenericContext.container): Remove field.
16740         * loader.c (mono_method_get_signature_full): Don't parse a
16741         "container" for a signature parse when the signature is inflated
16742         immediately.
16743         (method_from_methodspec): Likewise, for a generic_inst.
16744         * class.c, metadata.c, reflection.c: Update to changes.
16745
16746 2006-01-04  Raja R Harinath  <rharinath@novell.com>
16747
16748         * class-internals.h (_MonoGenericClass): Rename 'context' field to
16749         'cached_context', and change semantics -- it starts off NULL, and
16750         is initialized on demand.
16751         * class.c (mono_generic_class_get_context): New accessor to
16752         replace 'context' field accesses.
16753         (mono_class_get_context): New helper.
16754         (*): Update to changes.
16755         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
16756
16757 2007-01-03  Miguel de Icaza  <miguel@novell.com>
16758
16759         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
16760         before the memcpy.   Fixes Marshal2 regression.
16761
16762 2007-01-02  Jb Evain  <jbevain@gmail.com>
16763
16764         * blob.h: add a MONO_TYPE_ENUM definition
16765         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
16766         fix the encoding of arrays of enums in custom attributes.
16767
16768         Fixes #79666.
16769
16770 2007-01-01  Miguel de Icaza  <miguel@novell.com>
16771
16772         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
16773         string is null terminated, but only cut the string short if it
16774         overflows the buffer.   
16775         
16776         (mono_string_to_byvalstr): Also fix this routine.   The code here
16777         was not properly terminating a string (it was only terminated
16778         because of the previous catch-all memset). 
16779
16780         I left the memset, because I do not know if applications expect
16781         the runtime to clear this region. 
16782
16783         Fixes #79944.
16784
16785         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
16786         Clear the error before returning to unmanaged code to prevent the
16787         runtime from being confused later on (fixes  80420).
16788         (ves_icall_type_from_name): Always call mono_loader_clear_error
16789         after parsing a type that could have failed.
16790         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
16791
16792         * loader.c (mono_loader_clear_error): Fix indentation.
16793
16794 2006-12-28  Martin Baulig  <martin@ximian.com>
16795
16796         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
16797
16798 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
16799
16800         * reflection.c: patch from Rolf Bjarne Kvinge to fix
16801         getting a token for an EnumBuilder.
16802
16803 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
16804
16805         * reflection.c: be more careful in case resource generation
16806         fails to create the data array.
16807
16808 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
16809
16810         * sgen-gc.c: write barrier for clone and fix unregister handles.
16811
16812 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
16813
16814         * reflection.c: some fixes needed in the generics code for the moving GC.
16815
16816 2006-12-22  Robert Jordan  <robertj@gmx.net>
16817
16818         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
16819         account. Fixes bug #80299.
16820
16821 2006-12-21  Raja R Harinath  <rharinath@novell.com>
16822
16823         Fix WaitHandle usage in delegates.
16824         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
16825         * object.c (mono_wait_handle_new): Use the property set method to
16826         initialize the handle.
16827         (mono_wait_handle_get_handle): New.
16828         * threadpool.c (mono_async_invoke): Use it.
16829         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
16830         Likewise.
16831         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
16832
16833 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
16834
16835         * marshal.c (emit_marshal): Call emit_marshal_variant and
16836         emit_marshal_com_interface when applicable.
16837         (emit_marshal_variant, emit_marshal_com_interface): Add
16838         methods for this case and remove if's from emit_marshal_object.
16839         
16840 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
16841
16842         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
16843
16844 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
16845
16846         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
16847         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
16848         and GlobalFree on Windows. Remove FIXME.
16849
16850 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
16851
16852         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
16853         implementation for managed objects.
16854
16855 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
16856
16857         * object.c: implemented code to be used for checking
16858         that no reference field overlaps with non-references.
16859
16860 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16861
16862         * threadpool.c: fix queue code to be compatible with the
16863         moving GC.
16864
16865 2006-12-18  Miguel de Icaza  <miguel@novell.com>
16866
16867         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
16868         in structures by throwing ArgumentNullException.
16869
16870         (emit_marshal_safehandle): Also when they are null parameters.
16871
16872         (emit_marshal_safehandle): Add support for ref
16873         SafeHandles parameters
16874
16875 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16876
16877         * profiler.c: updated to use the mono-dl API instead of
16878         gmodule.
16879
16880 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16881
16882         * profiler.c: updated to use the mono-dl dynamic loading
16883         API instead of gmodule.
16884
16885 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
16886
16887         * profiler.c: use readlink, older versions of glib don't have
16888         g_file_read_link ().
16889
16890 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16891
16892         * profiler.c: try to detect the path to mono if libc fails to provide
16893         a useful name (bug #80286).
16894
16895 2006-12-16  Raja R Harinath  <rharinath@novell.com>
16896
16897         Fix #80242
16898         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
16899         instance, use the generic type definition instead.
16900         (ves_icall_Type_GetNestedTypes): Likewise.
16901         * class.c (mono_class_create_generic): Always set the
16902         nested_classes of a generic instance to NULL, even if the generic
16903         type definition has nested types.
16904
16905 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
16906
16907         * marshal.c (mono_string_from_bstr): Revert previous Windows change
16908         and fix on Linux.
16909         
16910 2006-12-15  Miguel de Icaza  <miguel@novell.com>
16911
16912         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
16913         my arguments were in the wrong order.   I also fixed the Windows
16914         version which seems to have had the same issue.
16915
16916         (mono_free_bstr): On Unix, this is g_free.
16917         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
16918         conversions (for the tests in corlib to pass).
16919
16920 2006-12-14  Miguel de Icaza  <miguel@novell.com>
16921
16922         * marshal.c (emit_ptr_to_object_conv): For now, ignore
16923         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
16924         exception if a ref SafeHandle in a struct has changed).
16925         
16926         (emit_struct_conv): Do not perform layout checks for classes
16927         derived from SafeHandle, as those are specially handled. 
16928
16929         (emit_object_to_ptr_conv): Add support for
16930         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
16931
16932         (emit_marshal_safehandle): Implement conversion of return values
16933         of safehandles (MARSHAL_ACTION_CONV_RESULT).
16934         
16935         * threads.c: WaitHandle now is compiled with two different handles
16936         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
16937         for 2.0.
16938         
16939         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
16940         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
16941         these routines to cope with both kinds of fields.
16942
16943 2006-12-12  Miguel de Icaza  <miguel@novell.com>
16944
16945         * metadata.c (mono_type_to_unmanaged): Handle the case where
16946         type->data.klass is a SafeHandle, and in that case, return the
16947         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
16948         MONO_MARSHAL_CONV_SAFEHANDLE. 
16949
16950 2006-12-11  Miguel de Icaza  <miguel@novell.com>
16951
16952         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
16953         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
16954         calling emit_marshal_object.
16955
16956         (emit_marshal_safehandle): Implement marshalling of
16957         SafeHandle parameters (no ref support yet).
16958
16959         (MarshalAction): Document the defines as I implement
16960         them for SafeHandle.
16961
16962         (emit_marshal_object): indentation police.
16963
16964         * class-internals.h: Define MonoSafeHandle.
16965         Add safehandle_class to MonoDefaults type.
16966
16967         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
16968         list of classes to check for fields. 
16969
16970         * domain.c (mono_init_internal): Add SafeHandle to the list of
16971         mono_defaults loaded.
16972
16973 2006-12-15  Raja R Harinath  <rharinath@novell.com>
16974
16975         Fix #80253
16976         * reflection.c (mono_reflection_bind_generic_parameters): If the
16977         generic type definition is a type builder, ensure that it is fully
16978         initialized before instantiating it.  Kill some dead code.
16979
16980 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
16981
16982         * object.c: clear the loader_error () before loading
16983         more metadata stuff (bug #80258).
16984
16985 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
16986
16987         * icall.c, icall-defs.h: type modifiers icalls for
16988         parameters and properties.
16989
16990 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
16991
16992         * object.c, icall.c: fixed warnings.
16993
16994 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
16995
16996         * marshal.c: fixed a couple of leaks and coding style in a few places.
16997
16998 2006-12-08  Dick Porter  <dick@ximian.com>
16999
17000         * process.c: Cope with NULL ProcessStartInfo arguments on windows
17001         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
17002         80173.
17003
17004 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17005
17006         * process.c: ProcessStartInfo may have only filename set and
17007         arguments can be NULL.
17008
17009 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17010
17011         * icall.c: fix leak found by Robert Jordan.
17012
17013 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17014
17015         * marshal.c, marshal.h: generate managed method to access an element
17016         of a multi-dimensional array.
17017
17018 2006-11-30  Paolo Molaro (lupus@ximian.com)
17019
17020         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
17021
17022 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17023
17024         * icall.c: back out GetFields () fix until the serialization code is
17025         fixed to not depend on the incorrect behaviour.
17026
17027 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17028
17029         * profiler.c: provide defaults if none are set.
17030
17031 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17032
17033         * Makefile.am, attrdefs.h: new public header file with
17034         constants for attributes for use by embedders.
17035
17036 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17037
17038         * icall.c: GetFields () fix for bug #80064.
17039
17040 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
17041
17042         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
17043         removed long unused icalls.
17044
17045 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
17046   
17047         * marshal.c: 
17048                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
17049                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
17050                 can be generated without a delegate class.
17051                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
17052         
17053         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17054
17055 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17056
17057         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
17058         #80069.
17059
17060 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17061
17062         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17063         icall-def.h: added icalls needed by System.GC.
17064
17065 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17066
17067         * loader.c: ensure the class in catch clauses is handled
17068         correctly for generics methods (fixes bug#79980).
17069
17070 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17071
17072         * monitor.h, monitor.c: added mono_locks_dump () function
17073         to help debug deadlocks involving managed locks.
17074
17075 2006-11-13  Dick Porter  <dick@ximian.com>
17076
17077         * file-io.c (get_file_attributes): If the file is a symlink try
17078         and get the stat data for the target, but also add the
17079         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
17080         the specs for the windows symlink support, but will probably have
17081         to be reworked when I have test data from a vista machine.  Fixes
17082         bug 79887.
17083
17084 2006-11-13  Dick Porter  <dick@ximian.com>
17085
17086         * gc.c (mono_domain_finalize): 
17087         * marshal.c (mono_delegate_begin_invoke): 
17088         * threadpool.c (socket_io_init, mono_thread_pool_init)
17089         (mono_thread_pool_finish): 
17090         * monitor.c (mono_monitor_try_enter_internal): 
17091         * threads.c (mono_thread_resume, mono_thread_init)
17092         (mono_thread_suspend_all_other_threads)
17093         (mono_thread_execute_interruption): 
17094         * appdomain.c (mono_domain_unload): Check for NULL error returns
17095         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
17096         75733.
17097
17098 2006-11-11  Miguel de Icaza  <miguel@novell.com>
17099
17100         * process.c
17101         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17102         Only close the handle if the value of the handle is not
17103         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17104         robust.
17105
17106         Improvement for #75733, so that we do not run into this problem. 
17107
17108         
17109         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17110         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17111         internal variables.  Fixes #79462 
17112         
17113
17114 2006-11-09  Dick Porter  <dick@ximian.com>
17115
17116         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17117         Use poll() not select().  Fixes bug 79397.
17118
17119 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17120
17121         Fix #79872
17122         * assembly.c (mono_assembly_load_from_full): Check that the given
17123         image has an assembly manifest.
17124
17125 2006-11-09  Ankit Jain  <jankit@novell.com>
17126
17127         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17128         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17129         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17130
17131 2006-11-07  Dick Porter  <dick@ximian.com>
17132
17133         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17134         Put the old resolver behaviour back for pre-2.0 profiles.
17135
17136 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17137
17138         * threadpool.c: precise GC and locking fixes.
17139
17140 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17141
17142         * class.c: don't load types that have an explicit unaligned
17143         managed reference. Provide better info in the TypeLoad exception.
17144         Part of the fix for bug #79744.
17145         * object.c: use the correct check for class type load issues.
17146
17147 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17148
17149         * class.c: enforce alignment of fields with managed references
17150         even when Pack=1 is forced by the user (bug #77788).
17151
17152 2006-11-03  Dick Porter  <dick@ximian.com>
17153
17154         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17155         If the address reverse lookup fails, return it as the hostname
17156         anyway.  Fixes bug 79721.
17157
17158 2006-11-03  Dick Porter  <dick@ximian.com>
17159
17160         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17161         Fix build on Windows.
17162
17163 2006-11-02  Dick Porter  <dick@ximian.com>
17164
17165         * icall-def.h: 
17166         * object-internals.h: 
17167         * exception.c (mono_get_exception_thread_interrupted): 
17168         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17169         Fixes bug 74525.
17170
17171         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17172         Check for pending Thread.Interrupt.
17173
17174 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17175         * loader.c: Fixed bug 79684.
17176
17177 2006-10-27  Dick Porter  <dick@ximian.com>
17178
17179         * file-io.c (get_file_attributes): Force symlinks to directories
17180         to be returned as a regular file.  Fixes bug 79733.
17181 2006-10-26  Dick Porter  <dick@ximian.com>
17182
17183         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17184         CreateFile to open a directory then we need to set the
17185         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17186
17187 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17188
17189         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17190         friends.
17191
17192 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17193
17194         * sgengc.c: small cleanup of timer code.
17195
17196 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17197
17198         * sgen-gc.c: fix some warnings and start adding support for
17199         complete object removal on domain unload.
17200
17201 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17202
17203         * assembly.c: build_assembly_name should not consider a version
17204         number without build or revision number invalid. Fixes bug #79715.
17205
17206 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17207
17208         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17209         call kernel32 function OutputDebugString directly.
17210         
17211         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17212         
17213 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17214
17215         * reflection.c: small cleanup, using a function to insert a MonoString
17216         in the string heap.
17217
17218 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17219
17220         * reflection.c: moving GC fixes.
17221
17222 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17223
17224         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17225         all the objects with finalizers belonging to an unloading appdomain.
17226
17227 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17228
17229         * sgen-gc.c: added ability to allocate even when the nursery is fully
17230         pinned and fixed a couple of bugs.
17231
17232 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17233
17234         * threads.h: Revert the last change for now.
17235
17236         * threads.h (mono_thread_get_pending_exception): Rename this to
17237         mono_thread_get_undeniable_exception ().
17238
17239 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17240
17241         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17242         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17243         when fname does not refer to valid assembly. This result in a more
17244         meaningful error message.
17245         * exception.c: added mono_get_exception_bad_image_format2 which 
17246         constructs a BadImageFormatException using the ctor taking a custom
17247         message and the file name. Passing in a NULL msg results in a default
17248         message.
17249         * exception.h: define mono_get_exception_bad_image_format2 function.
17250         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17251         when file name pointed to an invalid IL image. Use 
17252         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17253         as this results in a more meaningful error message.
17254
17255 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17256
17257         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17258         #79465.
17259
17260 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17261
17262         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17263         consistency with the other _size functions.
17264         (mono_type_stack_size): Ditto.
17265
17266         * class.c object.c icall.c: Fix warnings caused by the above change.
17267
17268         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17269
17270         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17271
17272         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17273
17274 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17275
17276         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17277         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17278         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17279         threadpool.h, threads-types.h: mark more internal functions.
17280
17281 2006-10-11  Dick Porter  <dick@ximian.com>
17282
17283         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17284         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17285         reproduce the bug even before applying the fix.)
17286
17287 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17288
17289         * reflection.c: allow retrieving attributes for arguments in generic
17290         methods (bug #79241).
17291
17292 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17293
17294         * debug-mono-symfile.c: properly check fopen () result (found by
17295         coverity).
17296
17297 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17298
17299         * reflection.c: make error message clearer and fixed two
17300         issuelets found by Coverity.
17301
17302 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17303
17304         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17305
17306 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17307
17308         * object-internals.h, gc-internal.h, profiler-private.h:
17309         mark internal functions.
17310
17311 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17312
17313         * reflection.c: put data in the text section.
17314         * icall.c: recognize more types in type_from_typename ().
17315         * process.c, marshal.c: added some GC FIXMEs.
17316
17317 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17318
17319         * loader.c: check for NULL before initializing.
17320
17321 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17322
17323         * gc.c (finalizer_thread): Use a non-alertable wait here.
17324
17325         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17326         until the correct solution is found.
17327
17328 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17329
17330         * reflection.c (mono_module_get_object): Avoid an assert when operating on
17331         modules with no metadata. Fixes #79596.
17332
17333         * image.c (load_metadata_ptrs): Put back the error message when
17334         the #- heap is encountered since the support is not complete yet.
17335
17336 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17337
17338         * gc.c: do not allow the user to SuppressFinalize () a
17339         delegate because it would leak the trampoline if present.
17340
17341 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17342
17343         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
17344         PropertyPtr table.
17345
17346 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
17347
17348         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
17349
17350         * metadata.c (mono_metadata_get_param_attrs): Ditto.
17351
17352         * row-indexes.h: Add definitions for *Ptr tables.
17353
17354         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
17355
17356         * metadata.c (mono_metadata_translate_token_index): New helper function to
17357         translate table indexes used in uncompressed metadata.
17358         (mono_metadata_decode_table_row): Ditto.
17359         (mono_metadata_decode_table_row_col): Ditto.
17360
17361         * metadata.c: Add table schema for *Ptr tables.
17362
17363         * class.c loader.c: Use the new helper function to access the affected metadata
17364         tables.
17365         
17366         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
17367         #38532.
17368         
17369 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
17370
17371         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
17372         sequences which can be unbounded in size. Fixes #79583.
17373
17374 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
17375
17376         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
17377         static initialization.
17378
17379         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
17380
17381         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
17382
17383         * domain.c (mono_domain_free): Free up type_init_exception_hash.
17384
17385         * object.c (mono_runtime_class_init): Implement correct semantics when a static
17386         ctor fails, i.e. throw the same exception on subsequent accesses.
17387         
17388 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
17389
17390         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
17391         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
17392         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
17393         Handle marshalling of interfaces and VARIANTs contained in structs.
17394         
17395         Code is contributed under MIT/X11 license.
17396         
17397 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
17398
17399         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
17400         
17401         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
17402         mempool.
17403
17404 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17405
17406         * console-io.c: ignore previous SIGINT handler.
17407
17408 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
17409
17410         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
17411         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
17412         #79460, #79461, #79485.
17413
17414         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
17415
17416         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
17417         #79217.
17418
17419 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
17420
17421         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
17422         could be generated from it.
17423
17424 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
17425
17426         * rand.c: fix read loop to correctly handle EINTR.
17427
17428 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17429
17430         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
17431         internal calls are defined to keep methods closer to the declaring
17432         type and allow a significant reduction in runtime relocations and
17433         memory usage.
17434
17435 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
17436
17437         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
17438         exception message to have FileNotFoundException use the default
17439         assembly load error message. Fixes bug #79426.
17440         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
17441
17442 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17443
17444         * threadpool.c: (start_thread_or_queue) use the root domain when
17445         creating the thread instead of the async object one.
17446
17447 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
17448
17449         * class.c, object.c, class-internals.h, reflection.c:
17450         for arrays, store element_size inside MonoClass (speedup
17451         for array object creation).
17452
17453 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
17454
17455         * icall.c: fixed CodeBase to use the file name and not the module
17456         name (bug #79365).
17457
17458 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17459
17460         * mono-debug.c, mono-debug.h: export find_method as
17461         mono_debug_find_method ().
17462
17463 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17464
17465         * debug-helpers.c, class-internals.h: added a few functions useful
17466         when debugging under gdb.
17467
17468 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17469
17470         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
17471         characters that need special handling.
17472
17473 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
17474
17475         * mono-config.c: make the os/cpu specification more flexible,
17476         allowing lists and negation.
17477
17478 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
17479
17480         * marshal.c: COM Interop fixes. Handle case where method->klass.
17481         is interface. Handle BSTR/MonoString when null. Use CDECL as 
17482         calling convention on non-windows platforms. This is for
17483         compatibility with XPCOM and MainWin COM.
17484         
17485         Code is contributed under MIT/X11 license.
17486         
17487
17488 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
17489
17490         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
17491         correctly. Fixes #79217.
17492
17493         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
17494
17495 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
17496
17497         * mono-config.c: allow both an os and cpu attribute for dllmap
17498         and dllentry elemnets to enable a single config file to be used
17499         for multiple architectures.
17500
17501 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
17502
17503         * loader.c: MonoLoaderError was cleared too soon on load failure.
17504         Fixes bug #79424.
17505
17506 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
17507
17508         * icall.c: use the defining class vtable when accessing a
17509         static field, not a pobblibly derived class.
17510
17511 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
17512
17513         * icall.c string-icalls.c: Remove references to unicode.h.
17514
17515         * unicode.h unicode.c Makefile.am: Remove these unused source files.
17516
17517         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
17518
17519         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
17520         indicating the image where custom marshaller types should be looked up.
17521         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
17522         custom marshallers, instead of corlib. Fixes #79425.
17523
17524 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
17525
17526         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
17527
17528 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
17529
17530         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
17531         Implement Environment.ProcessorCount.
17532         
17533         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
17534         Implement Environment.ProcessorCount.
17535         
17536         * icall.c: 
17537         Add Environment.ProcessorCount icall.
17538         
17539         Patch by Jason McFall.
17540
17541 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17542
17543         * assembly.c: don't append .exe/.dll when the filename already contains
17544         one of those extensions.
17545
17546 2006-09-12  Martin Baulig  <martin@ximian.com>
17547
17548         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
17549         to array interfaces.
17550
17551 2006-09-11  Martin Baulig  <martin@ximian.com>
17552
17553         * reflection.c (mono_image_build_metadata): Create the
17554         MethodImpl's after emitting all types and methods, so we don't
17555         need another fixup pass for them.
17556
17557 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
17558
17559         * class.c (mono_class_from_name_case): Fix regression introduced by the last
17560         change.
17561
17562 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
17563
17564         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
17565         unload.
17566
17567 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
17568
17569         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
17570         args is not set. Fixes #78926.
17571
17572 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
17573
17574         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
17575
17576         * image.c (load_class_names): Move this to class.c, and rename it to 
17577         'mono_image_init_name_cache'.
17578         (load_modules): Fix a warning.
17579
17580         * class.c icall.c image.c: Initialize image->name_cache lazily.
17581
17582         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
17583         on its name using information in the AOT file.
17584
17585         * class.c (mono_class_from_name): Use the new hook function.
17586
17587 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
17588
17589         * reflection.c (mono_param_get_objects): Handle enum default parameter values
17590         correctly.
17591
17592         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
17593         Fixes #79289.
17594         
17595 2006-09-06  Martin Baulig  <martin@ximian.com>
17596
17597         * icall.c (mono_lookup_internal_call): Small fix.
17598
17599 2006-09-05  Raja R Harinath  <rharinath@novell.com>
17600
17601         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
17602         double g_free.
17603
17604 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
17605
17606         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
17607         when --debug is specified.
17608
17609 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
17610
17611         * class.c (setup_generic_array_ifaces): Fix a warning.
17612
17613 2006-09-04  Miguel de Icaza  <miguel@novell.com>
17614
17615         * Temporarily remove the patch to assemly.c that checks the
17616         assembly versions as it breaks our gacutil.
17617
17618 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
17619
17620         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
17621
17622         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
17623         a net 1.0 runtime.
17624
17625         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
17626         created using the default ctor. Fixes #79152.
17627         (mono_string_builder_to_utf16): Ditto.
17628
17629 2006-09-01  Martin Baulig  <martin@ximian.com>
17630
17631         Fix handling of the generic array interfaces.
17632
17633         * class-internals.h
17634         (MonoDefaults): Removed `generic_array_class' and added
17635         `generic_ilist' class.
17636
17637         * class.c
17638         (mono_bounded_array_class_get): Add the new generic array interfaces.
17639         (setup_generic_array_ifaces): New static method; create vtable
17640         entries for each method in the generic array interfaces.
17641
17642         * metadata.c
17643         (select_container): Allow "parent-less" generic methods.
17644
17645         * marshal.c
17646         (mono_marshal_get_generic_array_helper): New public method.
17647
17648         * icall.c
17649         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
17650         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
17651         moved the interncall into System.Array.
17652
17653 2006-09-01  Raja R Harinath  <rharinath@novell.com>
17654
17655         A few more cases of avoiding work on types with ->byref set.
17656         Has the real fix for #79238
17657         * icall.c (is_generic_parameter): New helper.
17658         (ves_icall_Type_GetGenericParameterPosition): Use it.
17659         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
17660         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
17661         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17662         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
17663         reference types.
17664         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
17665         reference types.
17666         (ves_icall_Type_get_IsGenericInstance): Likewise.
17667         (ves_icall_Type_get_IsGenericType): Likewise.
17668
17669 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
17670
17671         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
17672         class if possible.
17673
17674         * mempool.h (mono_mempool_get_allocated): New helper function.
17675
17676         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
17677         change.
17678
17679         * mempool.c: Fix warnings and the calculation of stats.
17680
17681         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
17682
17683         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
17684
17685         * loader.c (mono_get_method_from_token): Update method_count stat.
17686
17687         * class-internals.h (MonoStats): Add some stats.
17688
17689 2006-08-31 Robert Jordan  <robertj@gmx.net>
17690
17691         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
17692         with managed variants.
17693         All code is contributed under the MIT/X11 license.
17694         
17695 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
17696
17697         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
17698         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
17699
17700         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
17701
17702         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
17703         with cycles in classes.
17704
17705         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
17706
17707         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
17708         missing a [MarshalAs] directive. Fixes #79203.
17709
17710         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
17711         klass->marshal_info. Fixes #79217.
17712
17713 2006-08-30  Martin Baulig  <martin@ximian.com>
17714
17715         Committing a patch from Joachim Ante <joe@otee.dk>:
17716         Add support for binary data symbol stores.
17717
17718         * debug-mono-symfile.c
17719         (mono_debug_open_mono_symbol_file): Renamed into
17720         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
17721         arguments.
17722
17723         * mono-debug.c
17724         (mono_debug_open_image): Added `raw_contents' and `size' args.
17725         (mono_debug_init_2_memory): New public function.
17726
17727 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
17728
17729         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
17730
17731 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17732
17733         * appdomain.c: implement support for ShadowCopyFiles.
17734
17735 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
17736
17737         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
17738         when value is NULL (and should remove CID #51).
17739
17740 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17741
17742         * image.c: moved 2 functions to ../utils.
17743
17744 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
17745
17746         * gc.c: cope with the target object of a GC handle being NULL
17747         (bug #78877).
17748
17749 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
17750
17751         * class.c: recursively check parent's explicit implementations
17752         of interface methods (fixes bug #79125).
17753
17754 2006-08-19  Miguel de Icaza  <miguel@novell.com>
17755
17756         * filewatcher.c: Avoid warnings when building, do not redefine
17757         constants that are defined.
17758
17759         Remove warnings.
17760
17761 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17762
17763         * image.c: don't fail when the link points to an absolute path.
17764
17765 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
17766
17767         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
17768         Fix CID #3.
17769
17770 2006-08-17  Miguel de Icaza  <miguel@novell.com>
17771
17772         * image.c (full_path): A new method used to obtain the actual path
17773         of an assembly even in the presence of symbolic links.  
17774
17775         This is necessary for the case where we are running a binary that
17776         has been GACed, but we are using the "published" path name
17777         ($prefix/mono/1.0/blah.exe) which happens to point to the real
17778         file in the GAC.
17779
17780         This was the source of the failure for the `xsp' command with the
17781         recent AppDomain changes, as far as the runtime was concerned,
17782         there were two different assemblies: $prefix/mono/1.0/blah.exe and
17783         $prefix/mono/gac/blah/version/blah.exe.
17784
17785         (do_mono_image_open): use full path
17786
17787 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17788
17789         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
17790
17791 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
17792
17793         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
17794         domain_id is supplied. Fix CID #241 and corlib's unit tests.
17795
17796 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17797
17798         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
17799         small structures. Fixes #78990.
17800
17801 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17802
17803         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
17804
17805         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
17806
17807 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17808
17809         * appdomain.c:
17810         * marshal.c: don't load all the assemblies from a domain into newly
17811         created ones. The new domains might have different rules and load
17812         assemblies from different locations. Fixes bug #76757.
17813
17814         Patch by Lluis. Conflicts resolved by Brian Crowell.
17815
17816 2006-08-16  Alp Toker  <alp@atoker.com>
17817
17818         * socket-io.c: First half of the fix for #79084.
17819         Set sa_size to the length of the content, not that of the struct.
17820         Don't add NULL suffix to the content, this should be done in
17821         managed code if needed.
17822
17823 2006-08-14  Raja R Harinath  <rharinath@novell.com>
17824
17825         Fix part of #79012
17826         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
17827         mono_metadata_parse_type returns NULL.
17828
17829 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
17830
17831         * normalization-tables.h : new file for string normalization data.
17832         * locales.c, locales.h, icall.c :
17833           added load_normalization_resource() for string normalization,
17834           and icall as well.
17835         * Makefile.am : added normalization-tables.h to the sources.
17836
17837 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
17838
17839         * marshal.c: Add more helper functions to reduce code duplication and use them
17840         everywhere.
17841
17842 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
17843
17844         * marshal.c: Fix non-x86 stdcall warnings.
17845         
17846         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
17847         them everywhere.
17848
17849 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
17850
17851         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
17852         type check on multi-dimensional arrays. Fixes #79000.
17853
17854 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
17855
17856         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
17857         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
17858         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
17859         * class-internals.h: add is_com_object to class structure.
17860         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
17861         null checks to COM object marshalling. Fix .ctor call on RCW.
17862         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
17863         
17864         All code is contributed under the MIT/X11 license.
17865
17866 2006-08-09  Dick Porter  <dick@ximian.com>
17867
17868         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
17869         racing mono_monitor_allocator_lock() somewhere, so don't delete
17870         the critical section for now.  Found by running and exiting
17871         monodevelop.
17872
17873 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
17874
17875         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
17876         (ves_icall_System_ComObject_FindInterface): Ditto.
17877         (ves_icall_System_ComObject_CacheInterface): Ditto.
17878
17879         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
17880         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
17881
17882 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17883
17884         * threadpool.c: treat pipes from process asynchronous reads as sockets
17885         when reading from them, so we get select/poll or epoll to wait for
17886         data.
17887
17888 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
17889
17890         * loader.c: Fix a typo (CID #233) in the null check.
17891
17892 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
17893
17894         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
17895         Hopefully fixes #78949.
17896         
17897         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
17898         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
17899         bytes. Fixes #78972.
17900
17901 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17902
17903         * filewatcher.c: we need to set errno here.
17904
17905 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17906
17907         * filewatcher.c: let Win32Exception get the error value.
17908
17909 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17910
17911         * filewatcher.c: translate errno into win32 errors for Win32Exception
17912         to know what happened.
17913
17914 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
17915
17916         * threadpool.c: Fix more warnings.
17917
17918         * assembly.c (search_loaded): Fix warnings.
17919
17920         * threadpool.c (mono_thread_pool_finish): Fix warnings.
17921         (mono_async_invoke): Ditto.
17922
17923 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
17924
17925         * object.c (mono_remote_class_vtable): Need to create proxy vtable
17926         entries for __ComObject type in addition to ComImport types.
17927         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
17928         about hash table.
17929         
17930         All code is contributed under the MIT/X11 license.
17931
17932 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17933
17934         * image.c: avoid tentative loading of modulerefs that contain
17935         no metadata (P/Invoke library names).
17936
17937 2006-07-28  Dick Porter  <dick@ximian.com>
17938
17939         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
17940         mono_loader_lock() somewhere, so don't delete the critical section
17941         for now.  Found by running and exiting monodevelop.
17942
17943 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17944
17945         * filewatcher.c: define the inotify syscalls when we're building on
17946         linux and have sys/syscall.h. The build system might not have support
17947         for inotify but the target system might have it.
17948
17949 2006-07-26  Miguel de Icaza  <miguel@novell.com>
17950
17951         * domain.c: Documentation updates.
17952
17953         * loader.c (mono_free_method): Do not release the method
17954         information if we are being profiled, as profilers will use this
17955         information at shut down to present some data to the user.
17956
17957         This is needed so that the profiler does not crash, as the
17958         profiler tends to keep MonoMethods around, and they might become
17959         invalid if we free these.
17960
17961         (mono_get_method_constrained): Return the original CIL stream
17962         method as well, so verification can be performed against it.
17963
17964 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17965
17966         * filewatcher.[ch]: support for inotify file system watcher.
17967         * icall.c: add new internal calls for the inotify file system watcher.
17968
17969 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17970
17971         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
17972         #78888.
17973
17974 2006-07-20  Dick Porter  <dick@ximian.com>
17975
17976         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
17977         warning.
17978
17979 2006-07-20  Dick Porter  <dick@ximian.com>
17980
17981         * threads.c (start_wrapper): Do the thread cleanup while we still
17982         hold a reference to its object.  Fixes bug 78123.
17983
17984 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
17985
17986         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
17987         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
17988           "managed-to-managed".
17989         * icall.c: Redirect string constructors that take sbyte* to
17990           ves_icall_System_String_ctor_RedirectToCreateString.
17991         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
17992           to CreateString () methods with matching signature.
17993         * reflection.c: Use original security informations for
17994           MONO_WRAPPER_MANAGED_TO_MANAGED.
17995         * security-manager.c: Use original security informations for
17996           MONO_WRAPPER_MANAGED_TO_MANAGED.
17997         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
17998           that is a placeholder and only its address should be used.
17999         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
18000           that is a placeholder and only its address should be used.
18001
18002 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
18003
18004         Begin implementing COM Interop.
18005         * appdomain.c: Increment corlib version.
18006         * class.c: Set ComImport classes' parent to __ComObject.
18007         * loader.c: Mark cominterop methods as such.
18008         * domain.c: Add __ComObject class to MonoDefaults structure.
18009         * image.c: Add 2 hashtables to the image for COM Interop related methods
18010         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
18011         using the mempool allocator
18012         
18013         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
18014         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
18015         declaration for mono_metadata_type_dup_mp.
18016         
18017         * debug-helpers.c: Added strings for two additional wrapper types
18018         * object.c: Create proxy objects for ComImport classes
18019         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
18020         and added __ComObject class to MonoDefaults structure.
18021         
18022         * object-internals.h: Finish MonoRealProxy definition, and add definition of
18023         MonoComInteropProxy and MonoComObject.
18024         
18025         * marshal.c: Added support for COM Interop
18026         (signature_cominterop): Converts managed signature to corresponding
18027         unmanaged COM signature.
18028         (cominterop_get_function_pointer): gets unmanaged function pointer via
18029         COM object vtable
18030         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
18031         (cominterop_get_method_interface): returns interface type that method is defined on
18032         (mono_mb_emit_cominterop_call): emits native call to function pointer
18033         gotten from vtable
18034         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
18035         that matches signature of unmanaged function.
18036         (cominterop_get_native_wrapper): wrapper around adjusted method call.
18037         (cominterop_get_invoke): forwards call from proxy to __ComObject
18038         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
18039         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
18040         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
18041         
18042         * marshal.h: Added Marshal icall declarations.
18043         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
18044         so we can access them in finalizer
18045         
18046 2006-07-14  Dick Porter  <dick@ximian.com>
18047
18048         * object.c (mono_type_initialization_cleanup): Fix a race
18049         condition by temporarily commenting out the critical section
18050         deletion.
18051
18052 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
18053
18054         * reflection.c (create_custom_attr): Fix some warnings.
18055         (create_custom_attr_data): Ditto.
18056         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
18057         types. Fixes #78855.
18058
18059 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
18060
18061         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18062
18063         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18064
18065 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
18066
18067         * reflection.c (resolve_object): Add support for DynamicMethod.
18068
18069         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18070         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18071
18072 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
18073
18074         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
18075         don't leak GPtrArray's pdata has we have no use (nor free) for it.
18076
18077 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
18078
18079         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18080         Fixes #77888.
18081
18082 2006-06-30  Raja R Harinath  <rharinath@novell.com>
18083
18084         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18085         slightly: remove a shadow local variable.
18086
18087 2006-06-29  Raja R Harinath  <rharinath@novell.com>
18088
18089         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18090         definition that introduces the virtual function slot.
18091         Also fix Coverity #105.
18092
18093 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
18094
18095         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18096         for dynamic assemblies. Fixes #78724.
18097
18098 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
18099
18100         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18101         Fixes #78722.
18102
18103 2006-06-21  Martin Baulig  <martin@ximian.com>
18104
18105         * reflection.c
18106         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18107         fixes #76484.
18108
18109 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18110
18111         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18112
18113 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18114
18115         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18116         nor TYPEREFs.
18117         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18118         Inflate result if necessary.
18119         (mono_class_get_full): Remove old version.  Rename from
18120         'mono_class_get' and add 'context' argument.  Pass it to
18121         ..._create_from_typespec.
18122         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18123         (mono_ldtoken): Revert change below.
18124
18125 2006-06-20  Martin Baulig  <martin@ximian.com>
18126
18127         * class.c (mono_ldtoken): Don't pass the generic context to
18128         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18129
18130 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18131
18132         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18133         and later freeing it. Fixes #78638.
18134
18135 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18136
18137         * icall.c (mono_class_get_throw): Revert over-zealous error
18138         throwing, the caller for mono_class_get_throw will cope with
18139         errors when classes are not properly initialized already.
18140
18141         The code still copes with loader exceptions though.
18142
18143         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18144         
18145 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18146
18147         Fixes the `make run1' version of RuntimeAbort (to be commited,
18148         source is in Bugzilla).
18149         
18150         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18151         FALSE on class loading failure instead of returning true.
18152
18153         * class.c (mono_class_create_from_typedef): It is possible for
18154         mono_metadata_interfaces_from_typedef_full to fail if a class is
18155         not found, cope with this.
18156         
18157
18158 2006-06-14  Dick Porter  <dick@ximian.com>
18159
18160         * socket-io.c: 
18161         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18162         4.1.1
18163
18164 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18165
18166         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18167
18168 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18169
18170         * icall.c: Another fix for building mono in Visual Studio.
18171
18172 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18173
18174         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18175         
18176 2006-06-09  Martin Baulig  <martin@ximian.com>
18177
18178         * debug-mono-symfile.c: Put this back and really fix it this
18179         time. Sorry for all the trouble.
18180
18181 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18182
18183         * icall.c (mono_class_get_throw): Fix a warning.
18184         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18185         ReflectionTypeLoadException if needed. Fixes #78606.
18186
18187         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18188         (mono_class_init): Ditto.
18189
18190         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18191         ref_only exceptions.
18192         (mono_loader_clear_error): Make this work even if there is no error.
18193
18194 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18195
18196         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18197         Marshal.GetComSlotForMethodInfo using internal call.
18198
18199 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18200
18201         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18202         a function for signalling it.
18203
18204         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18205         a referenced assembly is not found.
18206
18207         * loader.c (mono_loader_error_prepare_exception): Add support for 
18208         LOADER_ERROR_ASSEMBLY. Fix formatting.
18209
18210 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18211
18212         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18213         for VARIANT marshalling on windows and increment corlib version
18214         since Variant struct was added.
18215
18216 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18217
18218         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18219         stack trace line information:
18220
18221         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18222         (Martin) when looking up B which is between A and C, return A not C.
18223
18224         Bug is #78573.
18225
18226         Thanks to Alexander Olk for tracking this down.
18227
18228 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18229
18230         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18231         
18232         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18233         avoid clobbering its value.
18234         (mono_string_to_lpstr): Fix a warning on windows.
18235
18236 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18237
18238         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18239
18240         * reflection.c loader.c: Removed references to 'dummy' flag.
18241
18242         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18243
18244         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18245         it gets GC tracking.
18246
18247         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18248         GC tracking.
18249         
18250         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18251
18252         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18253
18254         * appdomain.c: Bump corlib version.
18255
18256 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18257
18258         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18259         CEE_STIND_REF when working with object references.
18260
18261 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18262
18263         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18264         Fixes #78539.
18265
18266 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18267
18268         * loader.c (method_from_memberref): Fix argument value for
18269         mono_loader_set_error_method_load (I was passing the MonoClass
18270         instead of the class name char *).
18271
18272 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18273
18274         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18275         CEE_STIND_REF when working with object references.
18276
18277 2006-05-30  Martin Baulig  <martin@ximian.com>
18278
18279         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18280         mono_method_full_name() change and replace the ':' with a '.'
18281         here.
18282
18283 2006-05-30  Martin Baulig  <martin@ximian.com>
18284
18285         * debug-mono-symfile.c
18286         (mono_debug_symfile_lookup_location): Fix the algorithm:
18287         when looking up B which is between A and C, return A not C.
18288
18289 2006-05-29  Martin Baulig  <martin@ximian.com>
18290
18291         * mono-debug.h
18292         (MonoDebugMethodInfo): Make the typedef public.
18293         (MonoDebugSourceLocation): New public struct.
18294
18295         * mono-debug.c
18296         (mono_debug_source_location_from_address): Removed.
18297         (mono_debug_source_location_from_il_offset): Removed.
18298         (mono_debug_il_offset_from_address): Removed.
18299         (mono_debug_address_from_il_offset): Removed.
18300         (mono_debug_lookup_method): New public function.
18301         (mono_debug_lookup_source_location): New public function; replaces
18302         the old mono_debug_source_location_from_*() functions; see the
18303         inline documentation.
18304         (mono_debug_free_source_location): New public function.
18305         (mono_debug_print_stack_frame): New public function; see the
18306         inline documentation.
18307
18308         * debug-mono-symfile.c
18309         (mono_debug_find_source_location): Renamed into
18310         mono_debug_symfile_lookup_location(); only take a
18311         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18312         documentation.
18313         (mono_debug_find_method): Renamed into
18314         mono_debug_symfile_lookup_method().
18315
18316 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18317
18318         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18319         returned by mono_image_open_full ().
18320
18321         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18322         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18323         #78517.
18324
18325         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18326         #78518.
18327
18328 2006-05-27  Miguel de Icaza  <miguel@novell.com>
18329
18330         * class.c (mono_class_from_typeref): handle missing images
18331         earlier, deals with bug #78418.   Refactor code; 
18332
18333         Fix a warning introduced in my previous commit (some stale code
18334         from before I revisited my patch).
18335
18336         * class.c (mono_class_create_from_typedef): On failure, remove the
18337         class from the MonoImage->class_cache as the class is not
18338         initialized;   Fixes the leak pointed out by Paolo.
18339
18340 2006-05-25  Dick Porter  <dick@ximian.com>
18341
18342         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
18343         DeleteCriticalSections until I figure out which one may still be
18344         sometimes locked when mono_thread_cleanup is called.
18345
18346 2006-05-24  Dick Porter  <dick@ximian.com>
18347
18348         * threads.c (mono_thread_cleanup): Move the threading cleanup out
18349         of mono_thread_manage and back into its own function, so it can be
18350         called after the finalizer thread has finished.
18351
18352         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
18353
18354 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
18355
18356         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
18357         Fixes #78495.
18358
18359         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
18360         with non-blittable elements.
18361         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
18362
18363 2006-05-24  Martin Baulig  <martin@ximian.com>
18364
18365         * mono-debug-debugger.h (MonoDebuggerEvent): Added
18366         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
18367
18368         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
18369         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
18370         `mono_debugger_event_handler' to NULL.
18371
18372 2006-05-24  Martin Baulig  <martin@ximian.com>
18373
18374         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
18375
18376 2006-05-24  Martin Baulig  <martin@ximian.com>
18377
18378         * mono-debug-debugger.h
18379         (mono_debugger_create_notification_function): Added
18380         `MonoCodeManager *' argument.
18381
18382 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
18383
18384         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
18385
18386 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
18387
18388         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
18389         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
18390         implementation.
18391
18392 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
18393
18394         * icall.c: precise GC support: objects can't be stored in unmanaged
18395         memory anymore, even if they are kept alive by other references: since
18396         they can move the GC needs to be able to always find them.
18397
18398 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18399
18400         * object.c: precise GC support for static fields. Support
18401         for moving GCs: write barriers and pinned allocation for interned
18402         strings.
18403
18404 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18405
18406         * domain.c, domain-internals.h: precise GC support for the MonoDomain
18407         structure.
18408
18409 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18410
18411         * class.c, gc.c: sgen and precise GC updates.
18412
18413 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
18414
18415         * marshal.h, marshal.c: added write barrier wrapper and precise type
18416         fixes.
18417
18418 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
18419
18420         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
18421         support.
18422
18423 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
18424
18425         * reflection.c: precise and sgen GC updates.
18426
18427 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
18428
18429         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
18430
18431 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
18432
18433         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
18434
18435 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
18436
18437         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
18438         MONO_TYPE_OBJECT. Fixes #78462.
18439
18440 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
18441
18442         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
18443         and blittable types.
18444
18445 2006-05-17  Miguel de Icaza  <miguel@novell.com>
18446
18447         * class.c (mono_class_get_exception_for_failure): Implement parts
18448         of a TODO: if the loader error is set (instead of the class
18449         error), we return a Loader exception that can be properly thrown
18450         elsewhere.
18451
18452         This was exposed by some Winforms 2.0 code that I tried to run
18453         (Atsushi pointed me to it).
18454
18455 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
18456
18457         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
18458         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
18459         
18460         * marshal.c (emit_marshal_vtype): Add limited support for 
18461         UnmanagedType.LPStruct. Fixes #78427.
18462
18463         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
18464         Applied a patch from kangaroo to fix #77523.
18465
18466 2006-05-17  Martin Baulig  <martin@ximian.com>
18467
18468         * threads.c
18469         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
18470         (debugger_thread_created): Removed.
18471         (debugger_thread_exited): Removed.
18472
18473 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
18474
18475         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18476
18477         * object-internals.h (MonoReflectionResource): Sync with managed version.
18478
18479 2006-05-12  Wade Berrier <wberrier@novell.com>
18480
18481         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
18482
18483 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
18484
18485         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
18486         functions try to allocate from the image mempool.
18487
18488 2006-05-12  Dick Porter  <dick@ximian.com>
18489
18490         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
18491
18492 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
18493
18494         * object.c: The FieldGetter and FieldSetter methods require the full
18495         name of the class, not only the name. Fixes bug #78277.
18496
18497 2006-05-11  Miguel de Icaza  <miguel@novell.com>
18498
18499         * loader.c (method_from_memberref): Do not pass the NULL klass to
18500         mono_loader_set_error_() methods.  Pass the non-NULL value
18501         (class). 
18502
18503 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
18504
18505         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
18506         (mono_assembly_close): Null out assembly->image->references after freeing it.
18507
18508         * image.c (mono_image_close): Free image->references.
18509         
18510         * reflection.c (mono_image_basic_init): Fix a small memory leak.
18511
18512 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18513
18514         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
18515         before checking if it's NULL (g_assert).
18516
18517 2006-05-10  Martin Baulig  <martin@ximian.com>
18518
18519         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
18520         I thought I already killed that two months ago, but now it somehow reappeared.
18521
18522 2006-05-10  Martin Baulig  <martin@ximian.com>
18523
18524         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
18525
18526 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
18527
18528         * reflection.c: Allocate memory for dynamically created methods in the image
18529         mempools.
18530
18531 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18532
18533         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
18534         don't use the ad pointer before checking if it's NULL (g_assert).
18535
18536 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
18537
18538         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
18539         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
18540
18541         * marshal.c: Allocate all signatures from mempools.
18542
18543         * marshal.c: Allocate some more signatures from mempools.
18544
18545 2006-05-09  Miguel de Icaza  <miguel@novell.com>
18546
18547         * object.c (mono_load_remote_field): The code used to provide a
18548         temporary variable for returning results if the user did not
18549         provide a result pointer.  But our temporary variable was allocted
18550         on the satck.
18551
18552         Fix calling code to always pass a result area.   Coverity ID 103.
18553
18554 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
18555
18556         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
18557         value, not the old. Fixes #78312.
18558         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
18559
18560         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
18561         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
18562         per-image cache.
18563
18564         * assembly.c (mono_assembly_close): Free image->references.
18565
18566         * assembly.c (mono_assembly_names_equal): Fix a warning.
18567         (mono_assemblies_cleanup): Cleanup more global data.
18568
18569         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
18570
18571         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
18572         ptr_cache and image->modules.
18573
18574         * image.c (mono_image_init): Allocate array_cache lazily.
18575         
18576 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18577
18578         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
18579         behavior was changed recently and has bad side effects.
18580
18581 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
18582
18583         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
18584         
18585         * assembly.c (mono_assembly_close): Remove a debug printf.
18586
18587         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
18588
18589         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
18590         to also allow for temporary references between mono_image_open ()/close ().
18591
18592         * domain.c (get_runtimes_from_exe): Add a FIXME.        
18593
18594 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
18595
18596         * marshal.c: Fix support for dynamic methods.
18597
18598         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
18599
18600         * marshal.c (mono_marshal_cleanup): New cleanup function.
18601
18602         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
18603         image mempools.
18604
18605         * class.c (mono_class_init): Fix leaking class->nested_classes.
18606
18607         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
18608
18609         * image.c (mono_image_init): Initialize the new cashes.
18610
18611         * image.c (mono_image_close): Destroy the new cashes.
18612
18613         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
18614
18615         * mempool.c (mono_mempool_strdup): New helper function.
18616
18617         * class-internals.h: Add prototype for mono_loader_unlock ().
18618
18619         * domain.c (mono_jit_info_table_find): Fix a warning.
18620         (mono_debugger_check_runtime_version): Ditto.
18621
18622         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
18623         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
18624         functions to these modules.
18625
18626         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
18627         metadata modules.
18628         
18629         * marshal.c (mono_free_bstr): Fix a warning.
18630
18631         * assembly.c (mono_assembly_open_full): Fix another small leak.
18632
18633         * object.c: Fix some unload leaks in the remoting code.
18634
18635         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
18636         function.
18637
18638         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
18639
18640         * reflection.c: Fix some unload leaks in dynamic assemblies.
18641
18642 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
18643
18644         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
18645         * marshal.h: Add BSTR support on Win32
18646         * icall.c: Add BSTR icalls
18647         * metadata.h: Add BSTR enums
18648
18649 2006-04-28  Miguel de Icaza  <miguel@novell.com>
18650
18651         Work to catch the crash from #76795 and turn it into an
18652         exception.   As I stubbed out pieces of the VisualBasic support,
18653         I found a number of places where the code was failing and I added
18654         checks to those places. 
18655         
18656         * metadata.c (do_mono_metadata_parse_generic_class): Make this
18657         function return a status code.  If we fail to parse the signature
18658         from mono_metadata_parse_generic_inst, return FALSE.
18659
18660         * loader.c (mono_get_method_from_token): If we fail to load the
18661         method (mono_class_get) return NULL.   
18662
18663         * (method_from_memberref): Return NULL if we are unable to parse
18664         the method signature
18665
18666         (mono_loader_error_prepare_exception): Since we now use the
18667         loader_error flag internally to stop processing, and obtaining
18668         exceptions that might be thrown will walk this code path the
18669         proper way of going from a MonoLoaderError into a
18670         MonoException was convoluted.   This new routine encapsulates the
18671         process of turning the error into an exception and *clearing* the
18672         error afterwards.
18673         
18674 2006-04-27  Miguel de Icaza  <miguel@novell.com>
18675
18676         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
18677         with missing assemblies), and to cope with:
18678
18679                 * Missing fieldref from a non-existing assembly.
18680                 * Missing methodref from a non-existing assembly.
18681
18682         The first batch of work to address *some* of the issues from 76661.
18683         
18684         * object.c (mono_class_create_runtime_vtable): If we fail to
18685         initialize the class raise the exception here. 
18686
18687         * metadata.c (mono_class_get_overrides_full): If any methods fail
18688         to load return the failure to the caller.
18689
18690         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
18691         flagging assemblies that failed to load.   
18692
18693         Do not crash if we are unable to load the assembly.
18694
18695         (mono_assembly_close): Do nothing with REFERENCE_MISSING
18696         assemblies. 
18697
18698         * loader.c (mono_loader_set_error_type_load): Change the
18699         convention to always pass unallocated strings, so we make our own
18700         copies (I know our own code had duplicated strings before, but
18701         this keeps the normal conventions).
18702         (method_from_memberref): Call mono_loader_set_error_method_load
18703         for all possible failures of loading the class. 
18704         Remove assert, turn into a loader error.
18705
18706         (mono_loader_error_to_exception): Move this routine from mini
18707         (mini_loader_error_to_exception) there was no need to have that in
18708         mini. 
18709
18710         * class.c (mono_class_from_typeref): If we were not able to load
18711         the assembly with mono_assembly_load_reference, call the
18712         mono_loader_set_error_type_load to register the problem.
18713
18714         (mono_class_setup_fields): If we fail to load the type from
18715         mono_metadata_parse_type_full, call mono_class_set_failure and
18716         break from the loop.
18717
18718         If class->exception_type is set, we do not layout the fields as
18719         that might crash the runtime, and instead return (from breaking
18720         from the previous loop).
18721
18722         (mono_class_setup_vtable): This now returns a boolean indicating
18723         whether the table was properly setup.   The decision is driven by
18724         mono_class_get_overrides_full which might run into non-existing
18725         methods. 
18726         
18727         (mono_class_init): Returns TRUE on success or FALSE if there was a
18728         problem in loading the type (incorrect assemblies, missing
18729         assemblies, methods, etc).
18730
18731         When we call mono_class_setup_fields we also check for a potential
18732         error inside this call (either a class exception or a general
18733         loader exception).
18734
18735         (mono_class_create_from_typedef): If the parent fails to load
18736         (calling mono_class_get_full) return NULL.
18737         
18738         ** Important **
18739
18740         calls to mono_metadata_parse_type_full should be checked
18741         everywhere and set the mono_class_set_failure
18742         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
18743
18744         The current patch checks the places where my manually constructed
18745         tests show the errors are showing up, but we should do it
18746         everywhere. 
18747
18748         ** Important2 **
18749
18750         mono_class_init return values should be tested everywhere, like
18751         the previous case this is something that we should audit
18752         everywhere and not only on the cases exposed by the tests I
18753         created. 
18754
18755 2006-04-26  Miguel de Icaza  <miguel@novell.com>
18756
18757         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
18758         boolean parameter and instead pass the information on `options'
18759         parameter (FileOptions).
18760
18761         * icall.c: Register the new signature for MonoIO.Open.
18762
18763         * debug-helpers.c (dis_one): Trying to understand how coverity
18764         works.  Fix Run 5, item 78.
18765
18766 2006-04-26  Dick Porter  <dick@ximian.com>
18767
18768         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
18769         dereference.
18770
18771 2006-04-25  Martin Baulig  <martin@ximian.com>
18772
18773         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
18774
18775         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
18776         debugger_thread_created().
18777         (debugger_gc_push_all_stacks): Don't handle the main thread in any
18778         special way.
18779         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
18780         (mono_debugger_finalize_threads): New function; undo the effects
18781         of mono_debugger_init_threads().
18782         (mono_debugger_create_all_threads): Removed.
18783
18784 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
18785
18786         * image.c (mono_image_close): Tidy up trace messages.
18787
18788         * assembly.c (mono_assembly_close): Ditto.
18789
18790         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
18791         no longer references an already freed assembly. Fixes #78168.
18792
18793 2006-04-21  Dick Porter  <dick@ximian.com>
18794
18795         * threads.c (mono_thread_detach): Fix reference counting when
18796         detaching threads.
18797
18798 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
18799
18800         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
18801         #78155.
18802
18803 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
18804
18805         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
18806         (mono_type_to_stind): Ditto.
18807
18808         * marshal.c: Use the new helper functions to simplify code.
18809
18810         * image.c (mono_image_close): Add some code for help debug assembly unloading
18811         problems.
18812
18813         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
18814         image mempool.
18815
18816         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
18817         assembly was already loaded in another appdomain. Fixes #78083.
18818
18819 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
18820
18821         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
18822         referenced assemblies.
18823         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
18824
18825         * domain.c (mono_domain_free): Add a trace message.
18826
18827         * appdomain.c (add_assemblies_to_domain): Ditto.        
18828
18829         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
18830         field.  
18831
18832 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
18833
18834         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
18835
18836 2006-04-12  Martin Baulig  <martin@ximian.com>
18837
18838         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
18839         `USE_INCLUDED_LIBGC'.   
18840
18841 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
18842
18843         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
18844         the patch contains ../ and a small directory name later. Hopefully fixes
18845         #78035.
18846
18847 2006-04-10  Martin Baulig  <martin@ximian.com>
18848
18849         Clean up the debugger's thread-handling code.
18850
18851         The debugger's thread-handling code has been moved from
18852         ../mini/debug-debugger.c to threads.c.  We now iterate directly
18853         over the `threads' hash, keep track of exiting threads and also
18854         use proper locking.
18855
18856         We can now debug XSP and XSP based applications with the debugger.
18857
18858         * object-internals.h (MonoThread): Added `gpointer end_stack'.
18859
18860         * threads.h
18861         (MonoThreadCallbacks): Removed; this was only used by the debugger.
18862         (mono_install_thread_callbacks): Likewise.      
18863
18864         * threads.c (mono_thread_callbacks): Removed.
18865         (debugger_thread_created, debugger_thread_exited): New static functions.
18866         (start_wrapper): Call debugger_thread_created().
18867         (thread_cleanup): Call debugger_thread_exited().
18868         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
18869         (mono_debugger_init_threads): New public function.
18870         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
18871         iterate directly over the `threads' hash and also use proper locking.
18872
18873         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
18874
18875         * mono-debug-debugger.h
18876         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
18877
18878 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
18879
18880         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
18881         argument type=array. Fixes #78057.
18882
18883 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
18884
18885         * culture-info-table.h : regenerated. Fixed bug #69652.
18886
18887 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
18888
18889         * loader.c metadata.c: Reapply a variant r59116.
18890         
18891         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
18892
18893         * class.c (mono_class_setup_interface_offsets): New internal function.
18894
18895         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
18896         interfaces too. Fixes #77398.
18897
18898         * reflection.c (encode_cattr_value): Add support for 
18899         parameter type=object, argument type=array.
18900         (load_cattr_value): Ditto. Fixes #77916.
18901
18902         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
18903         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
18904
18905         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
18906         a byval char array and CharSet is Ansi.
18907
18908         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
18909
18910 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
18911
18912         * metadata.c: Add some locking comments.
18913         
18914         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
18915         mempool.
18916         (mono_metadata_free_method_signature): Don't free the signature itself.
18917
18918         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
18919
18920         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
18921         reference the same MonoImage.
18922         (mono_assembly_load_from_full): Add an assert.
18923
18924 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
18925
18926         * image.c (mono_image_close): Don't put the image we are about to free into the
18927         loaded_images_guid_hash.
18928
18929         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
18930         to reduce code duplication.
18931
18932         * marshal.c: Register the native functions called by this module as icalls, to
18933         somewhat centralize the creation of MonoMethodSignature's.
18934
18935         * loader.c (mono_method_signature): Add a cache for method signatures.
18936
18937         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
18938         the parameter attributes of a method.
18939         (mono_metadata_parse_method_signature_full): Refactored the computation of
18940         parameter attributes into a separate function. Also avoid one allocation in
18941         most cases.
18942
18943         * assembly.c (mono_assembly_close): Ditto.
18944
18945         * image.c (mono_image_close): Log trace messages with INFO level.
18946
18947         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
18948
18949         * image.c reflection.c: Correct reference counting of image modules.
18950         
18951         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
18952         of this function from the image mempool.
18953         
18954         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
18955         to allow more cached types to be used.
18956
18957         * mono-debug.c (mono_debug_add_method): Appled patch from
18958         David S. Miller  <davem@sunset.davemloft.net>: Access 
18959         minfo->lexical_blocks[] entry elements using read32().
18960
18961 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
18962
18963         * loader.c (mono_free_method): No longer free the method header for non-dynamic
18964         methods as it is allocated from the mempool.
18965
18966         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
18967         image mempool.
18968
18969         * metadata-internals.h: Add comments describing the reference counting scheme
18970         used for MonoImage and MonoAssembly.
18971
18972         * image.c assembly.c reflection.c: Rework reference counting of images and 
18973         assemblies so they are freed when the runtime is shut down. Free some 
18974         additional memory structures when an image is unloaded.
18975         
18976 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
18977
18978         * class.c loader.c reflection.c: Allocate more data structures in
18979         the image mempool.
18980
18981 2006-03-31  Miguel de Icaza  <miguel@novell.com>
18982
18983         * icall.c
18984         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
18985         build on pre glib 2.4 systems.
18986
18987 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
18988
18989         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
18990
18991         * icall.c: Fix some warnings.
18992
18993 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
18994
18995         * culture-info-table.h : regenerated.
18996
18997 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
18998
18999         * threads.c, object-internals.h, verify.c: changed the culture caching
19000         code to use a normal MonoArray for storage so the GC can keep track of
19001         them easily. Fixed bits of the cache logic, too and simplified the
19002         code.
19003
19004 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
19005
19006         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
19007         thread for non-Boehm GCs.
19008
19009 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
19010
19011         * domain.c, object.c, domain-internals.h: reduce the amount of memory
19012         needed to keep track of the data for static fields.
19013
19014 2006-03-29  Raja R Harinath  <rharinath@novell.com>
19015
19016         Fix #75172
19017         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
19018         for interface classes.  Use 'num_methods' instead.
19019         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
19020         before using '->vtable_size' field.
19021
19022 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
19023
19024         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
19025         doesn't contain managed pointers, so use a normal hashtable.
19026
19027 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
19028
19029         * reflection.c, class-internals.h, domain.c: fixed handling of types
19030         used as values for objects in custom attributes (bug #77915):
19031
19032 2006-03-24  Martin Baulig  <martin@ximian.com>
19033
19034         * class.c (mono_class_setup_fields): Added support for generic
19035         instances; fixes #77580.
19036
19037 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19038
19039         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
19040
19041 2006-03-24  Dick Porter  <dick@ximian.com>
19042
19043         * file-io.c (get_file_attributes): More stat macro breakage.
19044         Fixes bug 77759.
19045
19046 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
19047
19048         * profiler.c: added the file=filename option in the default profiler
19049         to output the profile data to filename.
19050
19051 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19052
19053         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
19054         bug #77877.
19055
19056 2006-03-22  Martin Baulig  <martin@ximian.com>
19057
19058         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
19059         allocated `MonoClassField *' in `fb->handle'.
19060
19061 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19062
19063         * class.c, image.c, metadata-internals.h: implemented new mechanism to
19064         allocate interface ID to save memory and allow better ID reuse on
19065         appdomain unload. setup_generic_vtable () removal from Martin.
19066
19067 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19068
19069         * object.h, appdomain.c, domain.c, exception.c, icall.c,
19070         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19071         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19072         write barriers for reference stores with managed objects accessed with
19073         C structures in the runtime and in embedding programs.
19074
19075 2006-03-20  Raja R Harinath  <rharinath@novell.com>
19076
19077         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19078         'interface_id' and 'max_interface_id' fields of MonoClasses
19079         representing open generic types.
19080
19081 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19082
19083         * object.h, object.c, icall.c: added functions to deal with
19084         storing valuetypes that contain references in managed objects.
19085         * reflection.c, string-icalls.c, threads.c, marshal.c: small
19086         fixes and comments around uses of mono_array_addr ().
19087
19088 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19089
19090         * object.h, icall.c, monitor.c: object.GetHashCode ()
19091         implementation that supports the moving garbage collector.
19092
19093 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19094
19095         * icall.c, threads-types.h, threads.c: implemented finalizer for
19096         LocalDataStoreSlot.
19097
19098 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
19099
19100         * metadata.c (mono_type_size): Add a fixme.
19101         (mono_type_stack_size): Ditto.
19102
19103         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19104         'type_forwarders' field.
19105
19106         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19107         attribute from net 2.0.
19108
19109         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19110         from class.c.
19111
19112         * class.c (mono_class_setup_fields): Fix a warning.
19113         
19114         * class.c (mono_class_from_name): Add support for assemblyref entries
19115         in the EXPORTEDTYPE table.
19116
19117         * reflection.c: Add support for handling type forwarders under net 2.0.
19118
19119         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19120         
19121 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19122
19123         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19124         overwriting entries in ModuleBuild->types, also clean up the code
19125         a little. Fixes #77774.
19126
19127 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19128
19129         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19130         load friend assembly info when present.
19131
19132 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19133
19134         Fix crasher on gtest-158.cs.
19135         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19136         the return value if the MonoClass we want is yet in an
19137         inconsistent state.
19138         * class.c (mono_class_create_from_typedef): Add an comment
19139         explaining an order dependency between mono_class_setup_parent and
19140         mono_class_setup_mono_type.
19141
19142 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19143
19144         * class.c: documentation updates and events bug fix.
19145
19146 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19147
19148         * class.c: some cleanup, locking fixes.
19149
19150 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19151
19152         * class.c: fix the generics code to setup nested
19153         type info to the instantiated type (bug #77770).
19154
19155 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19156
19157         * marshal.c: fixed a few type correctness issues.
19158
19159 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19160
19161         * loader.c: the Set/Get/Addrtess array methods should be public.
19162
19163 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19164
19165         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19166         
19167         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19168         info->wrapper.
19169
19170 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19171
19172         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19173
19174         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19175
19176         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19177         (mono_mempool_alloc0): Ditto.
19178
19179 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19180
19181         * socket-io.c:
19182         (create_object_from_sockaddr): it was allocating 4 extra bytes
19183         for the AF_UNIX data. Fixes bug #77747.
19184
19185 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19186
19187         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19188
19189 2006-03-09  Dick Porter  <dick@ximian.com>
19190
19191         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19192         Fixes bug 76966 again.
19193
19194 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19195
19196         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19197         names from r57532
19198         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19199
19200 2006-03-07  Martin Baulig  <martin@ximian.com>
19201
19202         * object.c
19203         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19204
19205 2006-03-07  Martin Baulig  <martin@ximian.com>
19206
19207         * class.c
19208         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19209         regression introduced in r56970; see gtest-252.cs.
19210
19211         * loader.c (mono_get_method_constrained): Correctly handle generic
19212         methods; see gtest-253.cs.
19213
19214 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19215
19216         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19217
19218 2006-03-04  Martin Baulig  <martin@ximian.com>
19219
19220         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19221         compute the parent type at runtime, just like we're already doing
19222         it for interfaces.
19223
19224         * reflection.c
19225         (mono_reflection_bind_generic_parameters): Don't compute the
19226         parent type anymore.
19227
19228         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19229
19230 2006-03-04  Martin Baulig  <martin@ximian.com>
19231
19232         * mono-debug-debugger.h
19233         (mono_debugger_create_notification_function): Allocate memory at
19234         runtime and return a pointer to it.
19235
19236 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19237
19238         * assembly.c: Fix windows build.
19239         
19240         * assembly.c: Fix build.
19241
19242         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19243
19244         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19245         
19246 2006-03-03  Dick Porter  <dick@ximian.com>
19247
19248         * process.c
19249         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19250         Check parameters before dereferencing them.  Fixes Aaron's part of
19251         bug 77393.
19252
19253 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19254
19255         Fix performance regression.
19256         * loader.c (find_method_in_class): Add 'from_class' argument.
19257         Rename 'klass' argument to 'in_class'.  The signature is compared
19258         against the method in 'in_class', and the corresponding method is
19259         returned from 'from_class'.
19260         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19261         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19262         type definition and generic instantiation in parallel.
19263         (mono_get_method_constrained): Update to changes.
19264
19265 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19266
19267         * threads.c: make sure the domain is correct, too when doing
19268         mono_thread_attach ().
19269
19270 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19271
19272         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19273         windows. Fixes #77683.
19274
19275 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19276
19277         * object.h, *: introduced specific way to set elements of an array
19278         of references to be used as write barrier. Still need to audit the
19279         uses of mono_array_addr.
19280
19281 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19282
19283         * object-internals.h: New field to cache the assmebly name, patch
19284         from Tambet Ingo (tambet@ximian.com)
19285
19286 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19287
19288         * decimal.h, class-internals.h, metadata-internals.h,
19289         file-io.h: mark a few function declarations as internal, to
19290         reduce the number of PLT entries.
19291
19292 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19293
19294         * file-io.c: fix typo in warning message.
19295
19296 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19297
19298         * loader.c: on unix, lookup the "*A" version of a function
19299         if charset is auto as a second option before failing.
19300
19301 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19302
19303         * class.h (mono_class_inflate_generic_method): Revert to two
19304         argument version.
19305         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19306         (mono_class_inflate_generic_method_full): Add.
19307         * class.c (mono_class_inflate_generic_method_full): Rename from
19308         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19309         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19310         * loader.c, reflection.c: Update to changes.
19311
19312 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19313
19314         * icall.c: const fixes and small improvements.
19315
19316 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19317
19318         * threadpool.c: for asynchronous connect(), enable the same workaround
19319         for BSD 6 as for the Mac. Fixes bug #77637.
19320
19321 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19322
19323         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19324         formatted classes. Fixes #77524.
19325
19326 2006-02-24  Raja R Harinath  <rharinath@novell.com>
19327
19328         * class.c (inflate_generic_type): Add a couple more
19329         micro-optimizations.
19330         (inflate_generic_context): Don't use the 'gmethod' from
19331         'inflate_with'.
19332         (mono_class_inflate_generic_method): If the method has generic
19333         parameters, but the passed-in context doesn't have a 'gmethod',
19334         create one.  Use the possibly simplified generic instantiation
19335         from the declaring class instead of the one passed in.
19336
19337 2006-02-24  Raja R Harinath  <harinath@gmail.com>
19338
19339         Make generic method signature and method header handling lazy.
19340         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
19341         (inflate_generic_header): Likewise.
19342         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
19343         parameter to avoid inflating types.
19344         (mono_get_inflated_method): Empty out.
19345         * class.h (mono_class_inflate_generic_method): Update to changes.
19346         * loader.c (mono_get_method_from_token): Don't parse signature for
19347         generic methods, nor methods of generic classes.
19348         (mono_method_signature): Rename from 'mono_method_signature'.
19349         Inflate signature on demand.
19350         (mono_method_get_header): Inflate method header on demand.
19351         * reflection.c: Update to changes.
19352
19353 2006-02-23  Raja R Harinath  <rharinath@novell.com>
19354
19355         * metadata.c (mono_metadata_inflate_generic_inst): If the
19356         instantiation is closed, don't bother expanding it in the new
19357         context.
19358         * class.c (inflate_generic_class): If the generic instantiation
19359         doesn't change after inflation, return the argument itself.
19360         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
19361         Add bounds checks.
19362         (inflate_generic_context): If neither the generic class nor the
19363         generic method instantiations change, return the original context.
19364         * reflection.c (mono_method_get_object): Do
19365         'mono_get_inflated_method' before accessing the ->klass field.
19366         (inflate_mono_method): Don't create a MonoGenericMethod unless
19367         necessary.
19368         (inflate_method): Don't pass a constructed type as the declaring
19369         type of a methodbuilder.
19370
19371 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
19372
19373         * object.c: fix memory overwrite.
19374
19375 2006-02-22  Dick Porter  <dick@ximian.com>
19376
19377         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
19378         it doesn't work any more.
19379         (mono_threads_request_thread_dump): Fix unused variable warnings.
19380
19381 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19382
19383         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
19384         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
19385         the public header file.
19386
19387 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
19388
19389         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
19390
19391 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
19392
19393         * class-internals.h, object.c: reduce the size of MonoVTable
19394         and store the interface_offsets array at negative offsets.
19395
19396 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
19397
19398         * metadata.c: tweak table descriptors data structures to reduce
19399         size and runtime relocations.
19400
19401 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19402
19403         * marshal.c: fix some types and opcodes to be type-safe
19404         in marshaling wrappers.
19405
19406 2006-02-21  Ankit Jain  <jankit@novell.com>
19407
19408         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
19409
19410 2006-02-21  Raja R Harinath  <rharinath@novell.com>
19411
19412         * metadata.c (get_constraints): Relax debugging checks for monodis.
19413
19414 2006-02-21  Ankit Jain  <jankit@novell.com>
19415
19416         * metadata.c (mono_metadata_load_generic_params): Move the code
19417         checking for ambiguous generic params from here to mono/dis/get.c
19418         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
19419
19420 2006-02-21  Raja R Harinath  <harinath@gmail.com>
19421
19422         Fix assertion triggered when compiling nemerle.
19423         * class.c (mono_get_shared_generic_inst): Rename from
19424         get_shared_inst and make non-static.
19425         * loader.c (mono_get_shared_generic_method): New.  Used to create
19426         the MonoGenericContext-equivalent of a MonoGenericContainer.
19427         (mono_get_method_from_token): Initialize the 'context' field of
19428         the created MonoGenericContainer.
19429         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
19430         * metadata.c (get_constraints): Add sanity check.
19431         * class-internals.h: Add new internal methods.
19432
19433         * reflection.c (verify_safe_for_managed_space): New sanity check.
19434         Currently checks that owner-less generic parameters aren't allowed
19435         in managed space.
19436         (mono_type_get_object): Use it.
19437         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
19438         that are now in mono_type_get_object.
19439         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
19440
19441 2006-02-19  Raja R Harinath  <harinath@gmail.com>
19442
19443         * metadata.c (mono_type_create_from_typespec): Rename from
19444         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
19445         argument and caching of types in the generic container.
19446         (unwrap_arrays, find_generic_param): Remove.
19447         * metadata-internals.h: Update.
19448         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
19449
19450 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
19451
19452         * class.c (mono_class_get_exception_for_failure): Fix a warning.
19453
19454         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
19455         return values. Fixes #77581.
19456
19457         * class.c (mono_fnptr_class_get): Switch name and name_space.
19458
19459         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
19460         classes and add support for [In, Out] attributes.
19461         (mono_marshal_free_asany): Ditto. Fixes #77524.
19462
19463 2006-02-18  Raja R Harinath  <harinath@gmail.com>
19464
19465         * class.c (mono_class_from_generic_parameter): Make more robust to
19466         incomplete MonoGenericContainers from monodis.
19467
19468 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19469
19470         * class-internals.h: added some more exception types.
19471         * class.c, metadata.c: added a few checks to handle missing
19472         types.
19473
19474 2006-02-17  Raja R Harinath  <rharinath@novell.com>
19475
19476         Use owner-less generic-params some more.
19477         * class.c (my_mono_class_from_generic_parameter): Remove.
19478         (mono_class_from_generic_parameter): Handle null image,
19479         param->name and param->owner.
19480         (mono_class_from_mono_type): Update.
19481         (mono_class_create_from_typespec): Remove 'container' parameter.
19482         If that parameter is non-null, the result is always inflated by
19483         'mono_class_get_full' anyway.
19484         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
19485         parameter.
19486         (mono_class_get_full): Update.
19487
19488         * class.c (inflate_generic_type) [GENERICINST]: If the generic
19489         instance is not open, don't bother inflating.
19490         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
19491         parse metadata for inflated classes.
19492         (_mono_class_get): Change GenericContext* parameter to
19493         GenericContainer*.
19494         (mono_class_create_from_typespec): Likewise.  Simplify, and
19495         implement trivially.  All the cases are handled in
19496         mono_class_from_mono_type.  Don't inflate returned class.
19497         (mono_class_get_full): Delegate GENERICINST optimization to
19498         inflate_generic_type.
19499         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
19500
19501 2006-02-16  Dick Porter  <dick@ximian.com>
19502
19503         * socket-io.c (create_object_from_sockaddr): Fix typo.
19504         (create_sockaddr_from_object): Check array lengths before
19505         potentially accessing items off the end.
19506         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
19507         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
19508         (ves_icall_System_Net_Sockets_Socket_Send_internal)
19509         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
19510         length checks to avoid wraparound overflows.
19511         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
19512         contents of the array of sockets
19513         (hostent_to_IPHostEntry2)
19514         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
19515         Check return value of inet_ntop ().
19516         (addrinfo_to_IPHostEntry): Fix typo
19517
19518 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19519
19520         Type metadata parsing doesn't use generic-instantiation information.
19521         * metadata.c (mono_metadata_parse_array_full): Change
19522         MonoGenericContext* parameter to MonoGenericContainer*.
19523         (mono_metadata_parse_type_full): Likewise.
19524         (mono_type_create_from_typespec_full): Likewise.
19525         (mono_metadata_parse_mh_full): Likewise.
19526         (mono_metadata_parse_generic_inst): Likewise.
19527         (do_mono_metadata_parse_generic_class): Likewise.
19528         (do_mono_metadata_parse_type): Likewise.
19529         * metadata-internals.h: Update to changes.
19530         * class.c (mono_class_find_enum_basetype): Likewise.
19531         (mono_class_setup_fields): Likewise.
19532         (mono_class_create_from_typespec): Likewise.
19533         * loader.c (method_from_methodspec): Likewise.
19534         (mono_get_method_from_token): Likewise.
19535         (mono_method_get_header): Likewise.
19536
19537 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19538
19539         * marshal.c: handle additional GENERICINST case (patch from
19540         Thong Nguyen <tum@veridicus.com>).
19541         Fix a few cases where LDIND_I/STIND_I was used for references.
19542
19543 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19544
19545         * reflection.c (mono_reflection_get_token): Remove unused variable.
19546
19547 2006-02-16  Martin Baulig  <martin@ximian.com>
19548
19549         * reflection.c (mono_reflection_get_token): Add support for fields
19550         in instantiated generic types.
19551
19552         * icall.c
19553         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
19554
19555 2006-02-15  Martin Baulig  <martin@ximian.com>
19556
19557         * icall.c
19558         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
19559         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
19560         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
19561         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
19562
19563 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
19564
19565         * class.c, metadata.c, metadata.h, object.c, icall.c,
19566         marshal.c: changed mono_type_get_underlying_type () to do
19567         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
19568         Fixed handling of instantiated generic valuetypes (bug #75479).
19569
19570 2006-02-15  Raja R Harinath  <rharinath@novell.com>
19571
19572         * metadata.c (mono_metadata_decode_signed_value): Simplify.
19573         Delegate to mono_metadata_decode_value, and work on the returned value.
19574
19575         * icall.c (ves_icall_MonoType_GetGenericArguments):
19576         Add consistency check here too.
19577         
19578 2006-02-15  Ankit Jain  <jankit@novell.com>
19579
19580         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
19581         char/short etc.
19582
19583 2006-02-15  Ankit Jain  <jankit@novell.com>
19584
19585         * metadata.c (mono_metadata_decode_signed_value): New function to decode
19586         signed values, used only for representing lower bounds of arrays.
19587         (mono_metadata_parse_array_full): Use new
19588         mono_metadata_decode_signed_value to decode lower bounds.
19589
19590 2006-02-14  Martin Baulig  <martin@ximian.com>
19591
19592         * reflection.c
19593         (mono_reflection_get_token): Support "MonoGenericMethod" and
19594         "MonoGenericCMethod" and allow generic instances / methods.
19595
19596 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
19597
19598         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
19599         to obtain the terminal size using an ioctl.
19600
19601         * object.c (mono_nullable_init): Revert this as nullable reference
19602         types are not valid.
19603         (mono_nullable_box): Ditto.
19604
19605 2006-02-09  Dick Porter  <dick@ximian.com>
19606
19607         * threads.c (mono_thread_detach): Drop a reference to the thread
19608         we're detaching.
19609
19610 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
19611
19612         * object.c (mono_nullable_init): Handle nullable reference types.
19613         (mono_nullable_box): Ditto. Fixes #77446.
19614
19615 2006-02-07  Martin Baulig  <martin@ximian.com>
19616
19617         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
19618
19619 2006-02-07  Ankit Jain  <jankit@novell.com>
19620
19621         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
19622         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
19623         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
19624         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
19625         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
19626         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
19627
19628 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
19629
19630         * class.c (mono_class_create_generic): Set type_token as well.
19631
19632         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
19633         compatible with MS.
19634
19635 2006-02-02  Martin Baulig  <martin@ximian.com>
19636
19637         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
19638         has never been used so far.
19639
19640 2006-02-02  Martin Baulig  <martin@ximian.com>
19641
19642         * mono-debug-debugger.h: Changed comment at the top of this file;
19643         the header is not installed, but it's safe to #include it from
19644         within the JIT.
19645
19646         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
19647         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
19648
19649 2006-02-02  Martin Baulig  <martin@ximian.com>
19650
19651         * mono-debug.h
19652         (MonoSymbolTable): Removed the `metadata_info' field.
19653
19654         * mono-debug.c
19655         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
19656
19657         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19658         (mono_debugger_add_builtin_types): Removed.
19659         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
19660         (mono_debugger_create_notification_function): We now operate on a
19661         pre-allocated area; take a `gpointer' and return `void'.
19662
19663         * mono-debug-debugger.c
19664         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
19665         (mono_debugger_add_builtin_types): Removed.
19666
19667 2006-02-02  Martin Baulig  <martin@ximian.com>
19668
19669         * threads.c (mono_debugger_create_all_threads): New public method.
19670
19671 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19672
19673         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
19674         breaks on several platforms.
19675
19676 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
19677
19678         * assembly.c: the VS.NET build doesn't supply default values for
19679         MONO_ASSEMBLIES and MONO_CFG_DIR.
19680
19681 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
19682
19683         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
19684         helper function.
19685
19686         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
19687
19688         * loader.c (method_from_memberref): Fix a warning.
19689
19690         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
19691
19692         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
19693         with explicit layout. Fixes #77433.
19694
19695 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
19696
19697         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
19698         max_interface_id is initialized before using it. Fixes #77398.
19699         (ves_icall_Type_GetInterfaces): Ditto.
19700
19701 2006-01-30  Raja R Harinath  <rharinath@novell.com>
19702
19703         * metadata.c (mono_metadata_parse_method_signature_full): Don't
19704         allocate memory for parameter attributes when parsing memberref
19705         signatures.
19706         * loader.c (mono_loader_set_error_method_load): Don't warn.
19707         (method_from_memberref): Ensure MissingMethodException gets thrown
19708         if method is not found.  Make warning more informative.
19709
19710 2006-01-29  Raja R Harinath  <harinath@gmail.com>
19711
19712         Fix #77397
19713         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
19714         return true if is byref.
19715         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
19716         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
19717         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
19718
19719 2006-01-27  Raja R Harinath  <rharinath@novell.com>
19720
19721         Fix tests/find-method.2.il
19722         * loader.c (find_method, find_method_in_class): Remove is_inflated
19723         argument.  Revert 2006-01-18 change.
19724         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
19725         is generic, search for method in its generic definition.
19726         * class.c (mono_class_setup_vtable_general): Print generic
19727         arguments of generic types in debugging printf.
19728
19729 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
19730
19731         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
19732
19733         * threads.c (mono_threads_request_thread_dump): New helper function.
19734
19735 2006-01-25  Raja R Harinath  <rharinath@novell.com>
19736
19737         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
19738
19739 2006-01-25  Ankit Jain  <jankit@novell.com>
19740
19741         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
19742         move definition to ..
19743         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
19744         
19745 2006-01-25  Ankit Jain  <jankit@novell.com>
19746             Raja R Harinath  <rharinath@novell.com>
19747
19748         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
19749         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
19750         as necessary.
19751
19752 2006-01-25  Martin Baulig  <martin@ximian.com>
19753
19754         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
19755         `MonoDebuggerThread' into debug-debugger.c.
19756
19757 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
19758
19759         * profiler.c: fix printing of data.
19760
19761 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
19762
19763         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
19764           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
19765
19766 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
19767
19768         * object.c: fix deadlock related to string interning.
19769
19770 2006-01-23  Martin Baulig  <martin@ximian.com>
19771
19772         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19773
19774         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
19775
19776 2006-01-23  Martin Baulig  <martin@ximian.com>
19777
19778         * mono-debug.h: Moved the prototypes of some functions which are
19779         used by the JIT here from mono-debug-debugger.h.
19780
19781 2006-01-21  Martin Baulig  <martin@ximian.com>
19782
19783         * Makefile.am: Don't install mono-debug-debugger.h.
19784
19785 2006-01-21  Martin Baulig  <martin@ximian.com>
19786
19787         * mono-debug-debugger.h: Enforce the private status of this header
19788         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
19789         Moved some stuff from mono-debugger-jit-wrapper.h here.
19790
19791 2006-01-20  Raja R Harinath  <rharinath@novell.com>
19792
19793         * class.c (mono_class_from_typeref): Add a sanity test to help
19794         catch lack of assembly load/search hooks.
19795
19796 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
19797
19798         * marshal.c (emit_struct_conv): Relax the fields with same offset
19799         check even more. Fixes #77230.
19800
19801 2006-01-18  Martin Baulig  <martin@ximian.com>
19802
19803         * loader.c (find_method_in_class): Added `gboolean is_inflated'
19804         argument; if false, we compare the uninstantiated signatures.
19805         (method_from_memberref): Compare the uninstantiated signatures;
19806         fixes #76417.
19807
19808 2006-01-18  Robert Jordan  <robertj@gmx.net>
19809
19810         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
19811         Clear the weak link. Fixes bug #77170.
19812
19813         * gc.c (mono_gchandle_free):
19814         Reflect *-gc.c changes (tiny optimization).
19815
19816 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
19817
19818         * metadata.c (mono_metadata_signature_dup): Applied patch from
19819         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
19820         Fixes #77288.
19821
19822 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
19823
19824         * marshal.c (emit_struct_conv): Allow fields with the same offset when
19825         marshalling from native to managed code. Fixes #77230.
19826
19827 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19828
19829         * threadpool.c: fix problem (Mac only) when more than one asynchronous
19830         connect. Fixes bug #77020.
19831
19832 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
19833
19834         * class.c: fixed id assignement for nested interfaces (bug #77275).
19835         Added also better info for --print-vtable debugging.
19836
19837 2006-01-12  Martin Baulig  <martin@ximian.com>
19838
19839         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
19840         interfaces on-the-fly; fixes #76625.
19841
19842         * class-internals.h
19843         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
19844         don't need that anymore.
19845
19846 2006-01-12  Miguel de Icaza  <miguel@novell.com>
19847
19848         * socket-io.c
19849         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
19850         To avoid initing the nested_classes when not needed I turned the
19851         PeerCredData as a toplevel internal class, as it has to be shared
19852         anyways. 
19853
19854         Fixes the CASA issue.
19855
19856 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
19857
19858         * domain.c: Accessors for MonoJitInfo
19859
19860         * profiler-private.h: Add jitinfo to the end jit hook
19861
19862         * profiler.[ch]: Define new hooks, called after jitting which give
19863         the MonoJitInfo that was compiled
19864
19865 2006-01-10  Martin Baulig  <martin@ximian.com>
19866
19867         * class.c (mono_class_setup_events): Add support for generic
19868         classes; fixes #76440.
19869
19870 2006-01-06  Raja R Harinath  <rharinath@novell.com>
19871
19872         Fix #77160.
19873         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
19874         on passed-in method.
19875
19876 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
19877
19878         * object.c (mono_runtime_invoke_array): Add Nullable support.
19879
19880         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
19881
19882 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
19883
19884         * file-io.c: Don't consider sockets as directory and avoid an endless
19885         loop. Fix bug #76966.
19886
19887 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
19888
19889         * object.c (mono_nullable_init): New helper function.
19890         (mono_nullable_box): Ditto.
19891
19892         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
19893
19894         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
19895
19896         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
19897         
19898 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
19899
19900         * class.c (mono_class_is_assignable_from): Make T assignable to 
19901         Nullable<T>.
19902
19903 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
19904
19905         * appdomain.c: Bump corlib version to 46.
19906         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
19907         serialization purpose) and changed ves_icall_System_Reflection_
19908         Assembly_get_code_base signature to accept a boolean (to escape, or 
19909         not, the assembly code base).
19910
19911 2005-12-23  Dick Porter  <dick@ximian.com>
19912
19913         * icall.c: 
19914         * threads-types.h: 
19915         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
19916         CreateEvent icall now returns "created" boolean parameter.
19917
19918 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
19919
19920         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
19921         #76967.
19922
19923         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
19924         when attr_klass is an interface. Fixes #77045.
19925
19926 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
19927
19928         * marshal.c (emit_struct_conv): Fix previous patch.
19929         
19930         * marshal.c (emit_struct_conv): Add a check for fields with the same
19931         offset.
19932
19933 2005-12-20  Raja R Harinath  <rharinath@novell.com>
19934
19935         Fix regression in Mono.C5.
19936         * class.c (mono_class_create_generic): If 'klass' is an interface
19937         set up the interface offsets.
19938         (mono_class_is_assignable_from): Don't throw away generic arguments.
19939
19940 2005-12-19  Raja R Harinath  <rharinath@novell.com>
19941
19942         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
19943         type parameters.
19944
19945 2005-12-15  Raja R Harinath  <rharinath@novell.com>
19946
19947         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
19948         dead store.
19949         (do_mono_metadata_parse_generic_class): Don't pass the current
19950         generic context when parsing the type being instantiated: it
19951         cannot use it, anyway.
19952
19953         * loader.c (method_from_memberref): Don't inflate a signature if
19954         it doesn't contain any type parameters.
19955
19956 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
19957
19958         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
19959
19960 2005-12-14  Martin Baulig  <martin@ximian.com>
19961
19962         * class.c
19963         (mono_type_get_name_recurse): Don't return null for type
19964         parameters and open generic classes.
19965         (mono_class_setup_methods): Don't exclude generic instances.
19966         (mono_get_unique_iid): Use different IDs for different
19967         instantiations of the same generic type.
19968         (mono_class_setup_vtable): Only use setup_generic_vtable() for
19969         open generic instances; create a normal vtable for closed generic
19970         instances.
19971         (mono_class_setup_vtable_general): We're now also called for
19972         closed generic instances.
19973
19974         * reflection.c
19975         (mono_reflection_bind_generic_parameters): Correctly use
19976         mono_metadata_lookup_generic_inst() everywhere.
19977
19978 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
19979
19980         * object.c (mono_class_create_runtime_vtable): Call 
19981         mono_class_setup_vtable ().
19982
19983         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
19984         function.
19985         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
19986         #76959.
19987
19988         * loader.c (mono_loader_set_error_type_load): Print the type load
19989         warnings to the console so they are more visible to the user.
19990         (mono_loader_set_error_method_load): Ditto.
19991
19992         * reflection.c (ensure_runtime_vtable): Revert the last change as it
19993         is still broken.
19994         
19995         * reflection.c (ensure_runtime_vtable): Fix build.
19996
19997         * reflection.c (ensure_runtime_vtable): Disable an optimization which
19998         doesn't work in all cases.
19999
20000 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
20001
20002         * object.c (mono_array_new_full): Treat a single dimensional array
20003         with 0 lower bounds as an szarray. Fixes #76973.
20004
20005         * reflection.c (custom_attr_visible): Really fix this.
20006
20007 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
20008
20009         * reflection.c (custom_attr_visible): Allow nested public attributes
20010         as well.
20011
20012         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
20013         interface check.
20014
20015 2005-12-12  Raja R Harinath  <harinath@gmail.com>
20016
20017         * class.c (set_generic_param_owner): Delete.
20018         (mono_class_create_from_typedef): Don't set ->owner field of
20019         generic parameters to "param containers" of enclosing classes.
20020         * reflection.c (mono_reflection_initialize_generic_parameter):
20021         Likewise.
20022
20023 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
20024
20025         * reflection.c (custom_attr_visible): Fix build.
20026
20027 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
20028
20029         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
20030         private attributes.
20031         
20032         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
20033         handling of null parameter defaults.
20034
20035 2005-12-09  Raja R Harinath  <rharinath@novell.com>
20036
20037         * class.c (mono_class_from_generic_parameter): Don't set
20038         klass->generic_container.
20039         (my_mono_class_from_generic_parameter): Likewise.
20040
20041 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
20042
20043         * reflection.c (load_public_key): Fix a warning.
20044         (method_encode_code): Fix unaligned accesses.
20045
20046 2005-12-07  Martin Baulig  <martin@ximian.com>
20047
20048         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
20049
20050         * reflection.c
20051         (write_generic_param_entry): Encode our custom attrs.
20052
20053         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
20054
20055 2005-12-07  Martin Baulig  <martin@ximian.com>
20056
20057         * reflection.c (encode_new_constraint): Removed; we don't use the
20058         `NewConstraintAttribute' anymore.
20059
20060 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
20061
20062         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20063         not fire a TypeResolve event when Assembly.GetType () is called.
20064
20065 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
20066
20067         Beginning of support for nullable types in the runtime. Parts of
20068         this patch are from Martin.
20069
20070         * appdomain.c (MONO_CORLIB_VERSION): Bump
20071
20072         * domain.c (mono_init_internal): get the nullable type
20073
20074         * class.c (mono_class_is_nullable): New method
20075         (mono_class_get_nullable_param): New mehod
20076         (mono_class_create_generic): In types T? set cast_class to T
20077
20078         * class-internals.h (MonoDefaults): new nullable default class
20079         (mono_class_get_nullable_param, mono_class_get_nullable_param):
20080         new methods.
20081
20082 2005-12-05  Raja R Harinath  <rharinath@novell.com>
20083
20084         * metadata.c (select_container): New.  Refactor code to select the
20085         appropriate GenericContainer given the type of generic parameter
20086         we are looking for.
20087         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20088         not a MonoGenericContext.  Use select_container.  Update parameters.
20089         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20090         and MONO_TYPE_MVAR.
20091         (unwrap_arrays): Remove duplicate tests.
20092         (find_generic_param): Rename from 'has_same_context'.  Now walks a
20093         generic instantiated class to find any arguments that are generic
20094         parameters.
20095         (mono_type_create_from_typespec_full): Use find_generic_param to
20096         avoid evicting some generic instantiations from the typespec
20097         cache.
20098
20099 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20100
20101         * reflection.c: fixed writing of doubles on ARM FPA.
20102
20103 2005-12-02  Robert Jordan  <robertj@gmx.net>
20104
20105         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20106
20107 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20108
20109         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20110         least on SUSE 10 they are not the same (on debian, they are just the
20111         same thing).
20112
20113 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20114
20115         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20116         DeclaringType for VARs and MVARs.
20117         * class.c (set_generic_param_owner): Fix initialization of owner
20118         fields.
20119
20120 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20121
20122         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20123
20124 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20125
20126         * threadpool.c: workaround for a bug that shows up on the Mac:
20127         select()+connect() on a blocking socket is not like it should
20128         be, so we proceed to connect() in that case, wasting the I/O
20129         threadpool thread until connect succeedes. Fixes bug #75436.
20130
20131 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20132
20133         * threadpool.c: fix typo when setting file descriptor states.
20134
20135 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20136
20137         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20138         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20139         create a temporary signature container.
20140         (mono_metadata_parse_generic_param): Update to changes.
20141         (mono_type_create_from_typespec_full): Update to changes.
20142         * loader.c (method_from_memberref): Don't use a
20143         MonoGenericContainer while parsing a memberref signature.
20144         (method_from_methodspec): Remove dead-store of the 'container'
20145         variable.  It's overwritten before use.
20146
20147         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20148         checks tighter.
20149         (mono_metadata_parse_generic_param): Likewise.
20150         * loader.c (find_method_in_class): Does not need a
20151         MonoGenericContainer.  Use 'mono_method_signature' rather than
20152         'mono_method_signature_full'.
20153         (find_method, mono_get_method_constrained, method_from_memberref):
20154         Update to changes.
20155
20156         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20157         owner-less generic-parameters are never evicted from the typespec
20158         cache.
20159
20160         * loader.c (method_from_memberref): Don't use the current context
20161         when parsing signatures.
20162         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20163
20164         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20165         side-effects in g_assert.
20166         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20167         that we don't potentially lose information.
20168
20169 2005-11-26  Dick Porter  <dick@ximian.com>
20170
20171         * icall.c:
20172         * threads.c: icalls to implement basic (ie, not named)
20173         System.Threading.Semaphore.
20174
20175 2005-11-24  Dick Porter  <dick@ximian.com>
20176
20177         * process.c
20178         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20179         Use GetProcessId() if it's available.
20180
20181 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20182
20183         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20184
20185 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20186             Ankit Jain  <jankit@novell.com>
20187
20188         * loader.c (mono_get_method_from_token): Initialize 'method' field
20189         of all generic parameters before parsing the signature.  Remove
20190         code that "fixed"-up MVAR references.
20191
20192 2005-11-23  Ankit Jain  <jankit@novell.com>
20193
20194         * metadata.c (mono_metadata_has_generic_params):
20195         (mono_metadata_load_generic_param_constraints):
20196         (mono_metadata_load_generic_params): Move duplicate code ...
20197         (mono_metadata_get_generic_param_row): ... here. Returns the
20198         first row-id in GenericParam table for a given owner (token).
20199         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20200         prototype.
20201
20202 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20203             Ankit Jain  <jankit@novell.com>
20204
20205         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20206         comparing VARs too.
20207         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20208         type->data.generic_param only if the type is an MVAR.
20209         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20210         leak owner-less VARs and MVARs into managed space.
20211
20212 2005-11-21  Martin Baulig  <martin@ximian.com>
20213
20214         * class-internals.h
20215         (MonoMethod): Moved the `generic_container' here from
20216         `MonoMethodNormal' since we now also need it for
20217         `MonoMethodPInvoke';
20218         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20219         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20220         an union containing both `MonoMethodNormal' and
20221         `MonoMethodPInvoke'.
20222
20223         * loader.c
20224         (mono_get_method_from_token): Allow implementing generic methods
20225         as interncalls.
20226
20227         * threads.c
20228         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20229         icall.
20230
20231 2005-11-17  Dick Porter  <dick@ximian.com>
20232
20233         * icall.c: 
20234         * process.h: 
20235         * process.c: Split the Process Start_internal icall into
20236         ShellExecuteEx_internal and CreateProcess_internal, which are
20237         called depending on whether UseShellExecute is true.  Fixes bug
20238         76670.
20239
20240         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20241
20242 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20243
20244         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20245         'msize' parameters, use the information in 'mspec' instead.
20246         (emit_object_to_ptr_conv): Ditto.
20247
20248         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20249         fields out of order. Fixes #76733.
20250
20251 2005-11-17  Ankit Jain  <jankit@novell.com>
20252
20253         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20254
20255 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20256
20257         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20258           bug #76575.
20259
20260 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20261
20262         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20263         for types with non-auto layout. Fixes #76717.
20264
20265 2005-11-16  Ankit Jain  <jankit@novell.com>
20266
20267         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20268         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20269         if generic_context is null.
20270           (mono_metadata_generic_param_equal): param->owner can be null.
20271           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20272         null.
20273
20274 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20275
20276         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20277         the correct value.
20278
20279 2005-11-15  Martin Baulig  <martin@ximian.com>
20280
20281         * object.c (set_value): Use mono_class_from_mono_type() instead of
20282         the hack for generic instances; fixes #76136.
20283
20284 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20285
20286         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20287         fields.
20288
20289         * image.c (load_metadata_ptrs): Initialize the new fields.
20290
20291         * reflection.c (create_dynamic_mono_image): Ditto.
20292
20293         * reflection.c (build_compressed_metadata): Use the new fields.
20294
20295         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20296         icall.
20297
20298         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20299         icall.
20300         
20301 2005-11-15  Ankit Jain  <jankit@novell.com>
20302             Raja R Harinath  <harinath@gmail.com>
20303
20304         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20305         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20306         new per-generic_container cache if the cached MonoType's context matches
20307         the current context.
20308           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20309         to the expected context.
20310           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20311
20312 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20313
20314         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20315         we changed the signature of an icall.
20316         * icall.c: Modify to mono_double_ParseImpl return true/false 
20317         depending on the success, instead of throwing the exception. This will
20318         help us in Double.TryParse methods.
20319         
20320 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20321
20322         * marshal.c (emit_marshal_object): Throw an exception when
20323         marshalling 'object' instead of crashing. Fixes #76696.
20324
20325 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20326
20327         * class-internals.h: Add prototype for mono_type_get_full_name ().
20328
20329 2005-11-11  Dick Porter  <dick@ximian.com>
20330
20331         * threads.c (mono_thread_manage): Make sure the main thread has
20332         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
20333
20334 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20335
20336         * loader.c (mono_loader_set_error_type_load): Log a warning to the
20337         console about the missing type.
20338         (mono_loader_set_error_method_load): Ditto.
20339
20340 2005-11-09  Miguel de Icaza  <miguel@novell.com>
20341
20342         * mono-config.c (mono_get_config_dir): Set the system defaults if
20343         none is specified.
20344
20345         * assembly.c (mono_set_dirs): New API entry point to set the
20346         assembly and the config directory in one call
20347
20348 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
20349
20350         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
20351         the ftnptr was created from a delegate in a domain other than the
20352         current domain. Fixes #75377.
20353
20354         * exception.h exception.c: Add mono_get_exception_not_supported ().
20355
20356 2005-11-08  Martin Baulig  <martin@ximian.com>
20357
20358         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
20359
20360 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
20361
20362         * security-manager.h: Added definitions to deal with strongname key 
20363         pairs bigger (and smaller) than 1024 bits.
20364         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
20365         adjust wrt the public key length being used.
20366
20367 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
20368
20369         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
20370           Windows build (r51396-51397).
20371
20372 2005-11-03  Martin Baulig  <martin@ximian.com>
20373
20374         * class.c (mono_class_setup_vtable_general): Also add generic
20375         methods to the vtable; fixes #76581.
20376
20377 2005-11-01  Miguel de Icaza  <miguel@novell.com>
20378
20379         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
20380         sure that we lookup GetString method from the System.Text.Encoding
20381         class, not the derived class or we get an empty method.
20382
20383         Fixed class #76612.
20384
20385 2005-10-25  Miguel de Icaza  <miguel@novell.com>
20386
20387         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
20388         if it has been previously set (embedders). 
20389
20390         Make mono_set_rootdir available also on Unix.
20391
20392 005-10-24  Robert Jordan  <robertj@gmx.net>
20393
20394         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
20395
20396 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
20397
20398         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
20399         only calls which are made to native code use this flag.
20400
20401         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
20402
20403 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
20404
20405         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
20406         Add support for FieldBuilders.
20407
20408 2005-10-29  Martin Baulig  <martin@ximian.com>
20409
20410         * mono-debug.c
20411         (mono_debug_using_mono_debugger): New public method; returns
20412         whether we're running inside the debugger.
20413
20414 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
20415
20416         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
20417         for Method/Constructor/FieldBuilders.
20418
20419 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
20420
20421         * reflection.c (module_add_cattrs): Save custom attributes for global methods
20422         and fields as well.
20423
20424 2005-10-26  Martin Baulig  <martin@ximian.com>
20425
20426         * mono-debug-debugger.c
20427         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
20428
20429 2005-10-24  Raja R Harinath  <harinath@gmail.com>
20430
20431         * icall.c (base64_to_byte_array): Don't pass an out-of-range
20432         integer to isspace.
20433
20434 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
20435
20436         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
20437         when passing valuetypes byref. Fixes #76502.
20438
20439 2005-10-19  Jackson Harper  <jackson@ximian.com>
20440
20441         * profiler.c: Don't put a . in front of types that are not in a
20442         namespace.
20443
20444 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
20445
20446         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
20447
20448 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
20449
20450         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
20451         #76436.
20452         (mono_marshal_get_ldflda_wrapper): Fix a warning.
20453
20454 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20455
20456         * assembly.c metadata-internals.h icall.c: Define an additional
20457         parameter for mono_assembly_name_parse_full, so we can avoid creating
20458         S.R.AssemblyName.Version when no version info wasn't passed.
20459         
20460 2005-10-09  Miguel de Icaza  <miguel@novell.com>
20461
20462         * class.c (mono_type_get_full_name): Reimplement method that was
20463         removed. 
20464
20465         * image.c: Some docs
20466
20467 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
20468
20469         * profiler.c (output_newobj_profile): Fix printing of Total memory
20470         on x86.
20471
20472 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20473
20474         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
20475
20476 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
20477
20478         * threads.c: remove debug output.
20479
20480 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20481
20482         * threads.c (mono_thread_manage): Fix crashes if more than 64
20483         threads need to be aborted. Hopefully fixes #75899.
20484
20485         * assembly.c (mono_stringify_assembly_name): New helper function.
20486
20487         * class.c: Use mono_stringify_assembly_name instead of the similar
20488         static function.
20489
20490         * assembly.h assembly.c: Add support for calling a postload search 
20491         hook if an assembly cannot be loaded.
20492
20493         * appdomain.c: Register new search hooks which call the AssemblyResolve
20494         events in AppDomain. Fixes #75231
20495
20496 2005-10-07  Martin Baulig  <martin@ximian.com>
20497
20498         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
20499         methods without debug info.
20500
20501 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
20502
20503         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
20504         wrappers.
20505
20506 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20507
20508         * file-io.c: now that we return symlinks, use lstat and, when the file
20509         is a symbolic link, stat, to get the file attributes. Also avoid the
20510         conversion to/from utf16/external.
20511
20512 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
20513
20514         * class.c (mono_class_layout_fields): Compute klass->has_references
20515         correctly if an embedded valuetype is not yet initialized. Fixes
20516         #76331.
20517
20518 2005-10-04  Martin Baulig  <martin@ximian.com>
20519
20520         * metadata.c
20521         (mono_metadata_load_generic_param_constraints): New public
20522         function; splitted the constraints loading out from
20523         mono_metadata_load_generic_params().
20524
20525         * class.c (mono_class_create_from_typedef): Call
20526         mono_metadata_load_generic_param_constraints() after setting up
20527         the type and creating our parent; fixes #75329.
20528
20529 2005-10-04  Martin Baulig  <martin@ximian.com>
20530
20531         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
20532         non-dynamic parent classes.
20533
20534 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
20535
20536         * file-io.c : win32 build fix (ETXTBSY seems not found).
20537
20538 2005-10-04  Martin Baulig  <martin@ximian.com>
20539
20540         * reflection.c
20541         (mono_image_get_methodspec_token): Make the cache actually work;
20542         fixes #75974.
20543
20544 2005-10-04  Martin Baulig  <martin@ximian.com>
20545
20546         * class.c (mono_class_name_from_token): Removed the unneccessary
20547         `MonoGenericContext *' argument.
20548
20549 2005-10-04  Martin Baulig  <martin@ximian.com>
20550
20551         * loader.c
20552         (method_from_methodspec): Make the caching work again; fixes the
20553         performance regression from #76262.
20554
20555 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20556
20557         * file-io.c:
20558         * file-io.h:
20559         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
20560         GetFileSystemEntries that performs the same work but without going
20561         into io-layer, locking, etc.
20562
20563 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
20564
20565         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
20566         ThreadState_Stopped as well. Fixes #76047.
20567
20568 2005-09-29  Martin Baulig  <martin@ximian.com>
20569
20570         * class.c
20571         (inflate_generic_context): If the new context has a `gmethod', set
20572         its `container' that that gmethod's `container'.
20573
20574         * metadata.c
20575         (mono_metadata_parse_generic_param): Simplify things;
20576         `generic_container = generic_context->container;' is just fine.
20577
20578         * loader.c (method_from_methodspec): Code cleanups.
20579
20580 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
20581
20582         * decimal.c: fix warning (and let gcc generate correct
20583         code on ARM with optimizations).
20584
20585 2005-09-28  Martin Baulig  <martin@ximian.com>
20586
20587         * loader.c
20588         (method_from_memberref): Added `MonoGenericContext *class_context'
20589         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
20590         (method_from_methodspec): If we're a memberref, use the enclosing
20591         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
20592
20593 2005-09-28  Martin Baulig  <martin@ximian.com>
20594
20595         * object.c (mono_runtime_invoke_array): Added support for
20596         MONO_TYPE_GENERICINST; fixes #75917.
20597
20598 2005-09-27  Martin Baulig  <martin@ximian.com>
20599
20600         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
20601         `k->byval_arg.type' to determine the actual type.
20602
20603         * loader.c (method_from_methodspec): Removed some hacks.
20604
20605 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
20606
20607         * class-internals.h (mono_field_is_deleted): Do the test for
20608         rtspecialname before we check the actual name of the field. This
20609         prevents us from dereferencing a pointer into the string table,
20610         saving us from accessing a few pages
20611
20612         * *.c: Replace the use of {Enter,Leave}CriticalSection with
20613         macros. This will allow a deadlock debugger to easily be plugged
20614         in.
20615
20616 2005-09-27  Martin Baulig  <martin@ximian.com>
20617
20618         * loader.c (method_from_methodspec): Create a "signature"
20619         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
20620
20621 2005-09-27  Martin Baulig  <martin@ximian.com>
20622
20623         * class.c
20624         (inflate_generic_class): Correctly set the new context's
20625         container.
20626
20627         * loader.c
20628         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
20629         instead of a `MonoGenericContext *'.
20630         (mono_method_signature_full): Take a `MonoGenericContainer *'
20631         instead of a `MonoGenericContext *'.
20632
20633         * metadata.c
20634         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
20635         instead of a `MonoGenericContext *'.
20636         (mono_metadata_parse_method_signature_full): Likewise.
20637
20638 2005-09-26  Martin Baulig  <martin@ximian.com>
20639
20640         * class.c
20641         (mono_class_from_generic_parameter): Set `klass->generic_container'
20642         (mono_class_from_generic_parameter): Likewise.
20643         (mono_bounded_array_class_get): We inherit the generic container
20644         from the element class.
20645
20646         * loader.c
20647         (find_method, find_method_in_class): Take a `MonoGenericContext *'
20648         argument rather than computing it here.
20649         (method_from_memberref): Correctly set the generic context before
20650         parsing the signature.  Fixes #75681.
20651
20652 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
20653
20654         * object.c (mono_class_has_special_static_fields): Fix warnings.
20655
20656 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20657
20658         * assembly.c: Add parse_public_key function, to
20659         par the public keys. Also added mono_assembly_name_parse_full,
20660         to define it the parsed key should be freed or not.
20661         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
20662         to parse a long format assembly name.
20663         * metadata-internals.h: Keep mono_assembly_name_parse_full as
20664         private, since calling it to preserve the key requires
20665         freeing it manually.
20666         
20667 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
20668
20669         * locales.c : removed HAVE_ICU part.
20670
20671 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
20672
20673         * object.c (mono_class_create_runtime_vtable): Avoid calling 
20674         field_is_special_static if the klass has no special static fields.
20675
20676         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
20677         (MonoCachedClassInfo): Likewise.
20678
20679         * object.c (mono_class_has_special_static_fields): New helper function.
20680
20681 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20682
20683         * class.c (mono_class_create_from_typedef): Don't call 
20684         interfaces_from_typedef_full for enums.
20685         (mono_class_create_from_typedef): Compute the base types of enums directly
20686         without calling mono_class_setup_fields ().
20687         (mono_class_find_enum_basetype): New helper function.
20688
20689         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
20690         one place inside the string heap.
20691         
20692 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
20693
20694         * class.c: locking fixes, code cleanups, some docs added.
20695         Allocate some data structures in the image mempool.
20696
20697 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20698
20699         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20700         the example code.
20701         
20702 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
20703
20704         * class-internals.h, class.c, reflection.c: reduce memory taken by
20705         MonoClass.
20706
20707 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
20708
20709         * metadata.c, metadata.h, loader.h: documentation updates, code and
20710         API cleanups.
20711
20712 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20713
20714         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20715         the example code.
20716
20717         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
20718         page faults caused by the runtime while reading metadata.
20719
20720 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20721
20722         * socket-io.c: the field names were changed 3 months ago and no one
20723         realized until bug #76077 got filed!
20724
20725 2005-09-20  Martin Baulig  <martin@ximian.com>
20726
20727         * icall.c (assembly_icalls): Removed some unused debugger icalls.
20728
20729 2005-09-20  Martin Baulig  <martin@ximian.com>
20730
20731         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
20732         write the rank into the class entry.
20733
20734 2005-09-20  Martin Baulig  <martin@ximian.com>
20735
20736         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
20737
20738 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
20739
20740         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20741
20742         * icall.c (custom_attrs_defined_internal): New icall.
20743
20744         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
20745         function.
20746         (mono_custom_attrs_construct_by_type): New helper function.
20747
20748 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
20749
20750         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
20751         terminate the resulting string. Fixes #76123.
20752
20753 2005-09-16  Martin Baulig  <martin@ximian.com>
20754
20755         * mono-debug.c
20756         (mono_debug_add_method): Ignore inflated methods for the moment.
20757
20758 2005-09-14  Martin Baulig  <martin@ximian.com>
20759
20760         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
20761
20762 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
20763
20764         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
20765         return a success/failure indication.
20766         (mono_metadata_interfaces_from_typedef_full): Ditto.
20767         (get_constraints): Ditto.
20768
20769 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
20770
20771         * marshal.c (emit_marshal_array): Fix handling of null arrays.
20772         
20773         * marshal.c (emit_marshal_array): Add support for returning string
20774         arrays from delegates. Fixes #76063.
20775
20776         * marshal.c: Use the emit_ldloc/stloc macros where possible.
20777
20778 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
20779
20780         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
20781         icall.
20782
20783 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
20784
20785         * reflection.c icall.c: Fix after mono_get_exception_type_load
20786         signature change.
20787
20788         * assembly.c (mono_assembly_get_assemblyref): New helper function.
20789         (mono_assembly_load_reference): Use the new helper.
20790
20791         * class-internals.h (MonoLoaderError): New structure containing 
20792         information about type loading errors.
20793
20794         * class-internals.h loader.c: Add APIs to store per-thread loader
20795         error information.
20796
20797         * loader.c class.c: Set the loader error if needed.
20798
20799         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
20800
20801 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
20802
20803         * decimal.c: fixed to handle the broken ARM fp format.
20804
20805 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
20806
20807         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
20808         broken.
20809
20810 2005-09-06  Martin Baulig  <martin@ximian.com>
20811
20812         * domain.c (supported_runtimes): Added v2.0.50727.
20813
20814 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
20815
20816         * culture-info.h: reduce the size of some structures.
20817
20818 2005-09-05  Martin Baulig  <martin@ximian.com>
20819
20820         Reflect latest API changes in the August CTP.
20821
20822         * icall.c
20823         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
20824         ("MonoType.HasGenericArguments"): Removed.
20825         ("MonoMethod.BindGenericParameters"): Renamed to
20826         "MakeGenericMethod".
20827         ("MethodBuilder.BindGenericParameters"): Renamed to
20828         "MakeGenericMethod".    
20829
20830 2005-09-05  Martin Baulig  <martin@ximian.com>
20831
20832         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
20833
20834 2005-09-05  Martin Baulig  <martin@ximian.com>
20835
20836         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20837
20838         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
20839         generic_container is non-NULL.
20840
20841 2005-09-05  Martin Baulig  <martin@ximian.com>
20842
20843         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20844
20845         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
20846
20847 2005-08-29  Michal Moskal  <malekith@nemerle.org>
20848
20849         * reflection.c (encode_locals,
20850         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
20851         for large generic types.
20852
20853 2005-09-05  Martin Baulig  <martin@ximian.com>
20854
20855         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20856
20857         * class.c (mono_dup_array_type): New public method.
20858         (mono_metadata_signature_deep_dup): New public method.
20859         (dup_type): Correctly duplicate array and function types.
20860
20861 2005-09-05  Martin Baulig  <martin@ximian.com>
20862
20863         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20864
20865         * reflection.c (get_default_param_value_blobs): Handle generic types
20866         and generic methods.
20867
20868 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
20869
20870         * class.c: Fixed error reporting (method/class were inversed) for 
20871         inheritance demands.
20872         * security-manager.c|h: Added the AppDomain when calling the managed
20873         System.Security.SecurityManager.InheritanceDemand method.
20874
20875 2005-09-01  Raja R Harinath  <rharinath@novell.com>
20876
20877         * reflection.c (encode_marshal_blob): 'marshaltype' and
20878         'marshaltyperef' are alternate sources for the custom marshaler
20879         name.
20880
20881 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
20882
20883         * class.c: fix creation of array classes with rank == 1
20884         (patch by Ankit Jain <jankit@novell.com>).
20885
20886 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
20887
20888         * object.c: fix check for creating the bound data for arrays vs
20889         szarrays.
20890
20891 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20892
20893         * object.c: configuration file name is now based on the executable name,
20894         not the image name. Fixes bug #75931.
20895
20896 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
20897
20898         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
20899         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
20900
20901 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
20902
20903         * rand.c: Use wincrypt.h instead of WinCrypt.h.
20904
20905 2005-08-24  Ankit Jain  <jankit@novell.com>
20906             Raja R Harinath  <rharinath@novell.com>
20907
20908         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
20909           called by it recursively.
20910           (mono_class_init): Remove special case in pending_init handling, since it's
20911           superseded by the fix to mono_class_from_typeref.
20912
20913 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
20914
20915         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
20916         BROKEN_THREAD_START stuff.
20917
20918 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
20919
20920         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
20921         trampoline.
20922
20923         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
20924         
20925         * object.c (mono_delegate_ctor): Replace the original function address with
20926         a delegate trampoline.
20927
20928 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
20929
20930         * icall.c: add boolean argument to base64_to_byte_array and 
20931         InternalFromBase64String to control whether a whitespace-only string
20932         is allowed (or should casue a FormatException to be thrown). We need
20933         this as the behavior has changed between MS.NET 1.x and 2.0, and we
20934         to match the MS behaviour in both profiles.
20935         * appdomain.c: Bump corlib version.
20936
20937 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20938
20939         This patch implements a big portion of publisher policy
20940         support, used to bind assembly versions and redirect
20941         one assembly from version A to version B.
20942
20943         * assembly.c:
20944         New GSList loaded_assembly_bindings, for storing the cached
20945         assembly bindings.
20946         (assembly_binding_maps_name): New static function for checking if a 
20947         assembly binding information maps an assembly name.
20948         (mono_assembly_binding_info_free): New function for freeing
20949         assembly binding information resources.
20950         (get_publisher_policy_info): New static function for retrieving 
20951         assembly binding information from a MonoImage.
20952         (compare_versions): New static function for comparing an assembly
20953         binding information data and the version of an assembly name.
20954         (check_policy_versions): New static function for checking if an
20955         assembly binding info mapping an assembly name is valid for it.
20956         (mono_assembly_load_publisher_policy): New static function for
20957         loading the 'policy.major.minor.MyAssembly' image for an assembly
20958         with an assembly name 'aname'.
20959         (mono_assembly_bind_version): New static function for updating
20960         assembly redirection.
20961         (mono_assembly_apply_binding): New static function for applying
20962         assembly binding.
20963         (search_binding_loaded): New static function for searching 
20964         loaded assembly binding infos in the cache domain.
20965         (mono_assembly_load_full): Don't apply assembly binding for
20966         reflection only assemblies.
20967
20968         * metadata-internals.h: Add MonoAssemblyBindingInfo,
20969         which contains information about assembly binding. Also
20970         declare signature for mono_config_parse_publisher_policy ()
20971         function, used to retrieve pub policy info.
20972         
20973         * mono-config.c:
20974         (publisher_policy_start): New static function used to parse publisher 
20975         policy config files.
20976         (publisher_policy_parser): New static MonoParseHandler containing 
20977         the functions used when parsing config files.
20978         (mono_config_parse_publisher_policy): New function for parsing
20979         publisher policy files.
20980         
20981 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
20982
20983         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
20984
20985         * marshal.c (mono_delegate_free_ftnptr): Ditto.
20986
20987         * object.c (mono_get_addr_from_ftnptr): New helper function.
20988
20989         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
20990
20991         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20992
20993 2005-08-19  Dick Porter  <dick@ximian.com>
20994
20995         * threads.c, threads.h, appdomain.c, appdomain.h,
20996         profiler-private.h, monitor.c, object.c, object-internals.h,
20997         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
20998         store the thread ID, so it can hold a 64 bit value if needed.
20999
21000 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
21001
21002         * reflection.c (mono_reflection_create_dynamic_method): Store the
21003         handle class into the method references as well so ldtoken works in
21004         dynamic methods.
21005
21006         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
21007         types.
21008
21009 2005-08-19  Ankit Jain <jankit@novell.com>
21010
21011         Fix #75847.
21012         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
21013           here rather than using the method signature of a arbitrary function
21014           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
21015           two arguments.
21016           Hack done with Harinath.
21017
21018 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21019
21020         * threadpool.c: disable printing stack traces when we get a exception
21021         in a threadpool thread. I need to do more testing to figure out which
21022         cases actually print this. Fixes bug #75828.
21023
21024 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21025
21026         * icall.c: there might be ignored whitespace after the last '='. This
21027         fixes length computation and bug #75840.
21028
21029 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
21030
21031         * assembly.c (mono_assembly_load_full): Consider .exe extension as
21032         well. Fixes #75809.
21033
21034         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
21035         #75784.
21036         
21037         * reflection.c (create_custom_attr_data): Ditto.
21038
21039 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
21040
21041         * locales.c, culture-info.h : removed RegionLCIDMap.
21042         * culture-info-tables.h : regenerated.
21043
21044 2005-08-16  Martin Baulig  <martin@ximian.com>
21045
21046         * class.c (mono_type_get_name_recurse): Small fix.
21047
21048 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
21049
21050         * locales.c : indentation fixie.
21051
21052 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
21053
21054         * object-internals.h,
21055           locales.h,
21056           locales.c,
21057           culture-info.h,
21058           icall.c : added RegionInfo table support.
21059         * culture-info-table.h : regenerated for region support.
21060
21061 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
21062
21063         * reflection.c (resolve_object): handle all kinds of MonoMethod
21064         including generic ones
21065
21066 2005-08-12  Ankit Jain <jankit@novell.com>
21067
21068         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21069           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
21070
21071 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
21072
21073         * process.c: Don't close a thread handle when it's NULL. This is a
21074         workaround for bug #75733.
21075
21076 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
21077
21078         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21079
21080 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
21081
21082         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21083
21084 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21085
21086         * threadpool.c: if a work item in the thread pool has a callback that
21087         catches a exception, don't propagate it after invoking the callback.
21088         Fixes bug #75336.
21089
21090 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
21091
21092         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21093
21094         * class-internals.h (MonoCachedClassInfo): Add some new fields.
21095
21096         * class.c (mono_class_init): Load field info lazily in the AOT case.    
21097
21098         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21099
21100 2005-08-03  Ankit Jain  <jankit@novell.com>
21101
21102         Fix #75683.
21103         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21104           PInvoke calling convention is 0.
21105
21106 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21107
21108         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21109         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21110
21111 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21112
21113         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21114         to handle threads not started by the GC (patch by Michael Meeks
21115         <michael.meeks@novell.com>).
21116
21117 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21118
21119         * reflection.c: Make buffer used in emitting types larger for some
21120         big generic types (patch by Michal Moskal).
21121
21122 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21123
21124         * mono-debug.c: Fix some (not all) alignment problems.
21125
21126 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21127
21128         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21129         Invoke mono_image_load_from_data_full passing the refonly
21130         parameter.
21131
21132         * assembly.c
21133         (mono_assembly_open_from_bundle): Add the refonly argument, 
21134         in order to pass it to other methods it calls to.
21135         (do_mono_assembly_open): Add the refonly argument, in order 
21136         to pass it to other methods it calls to.
21137         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21138         the refonly parameter to it.
21139
21140         * image.c: Add loaded_images_refonly_hash and
21141         loaded_images_refonly_guid_hash to cache the reflection
21142         only loaded images.
21143         (mono_images_init): Initialize the hash tables used for
21144         caching the reflection only images.
21145         (load_modules): Invoke mono_image_open_full passing the refonly
21146         parameter to load the modules the correct way.
21147         (build_guid_table): Add the refonly argument, to re-build the 
21148         correct hash table.
21149         (do_mono_image_open): Added the refonly argument, in order to
21150         define it for the loaded image.
21151         (mono_image_loaded_full): New function, which receives an
21152         additional parameter to look for the image in the refonly or
21153         non-refonly section.
21154         (mono_image_loaded): Updated, using mono_image_loaded_full.
21155         (mono_image_loaded_by_guid_full): The same case that happens
21156         with mono_image_loaded_full.
21157         (mono_image_loaded_by_guid): Likewise.
21158         (register_image): Use the ref_only variable inside MonoImage
21159         to decide in which hash table store the current image.
21160         (mono_image_open_from_data_full): Rename
21161         mono_image_open_from_data to mono_image_open_from_data_full,
21162         adding the refonly argument, to define the ref_only variable 
21163         inside MonoImage.
21164         (mono_image_open_from_data): Return 
21165         mono_image_open_from_data_full.
21166         (mono_image_open_full): Rename mono_image_open to
21167         mono_image_open_full, receiving the new refonly argument,
21168         to pass it to inner methods.
21169         (mono_pe_file_open): Update this function, to open
21170         a MonoImage as a non-refonly image.
21171         (mono_image_close): Use the refonly variable inside
21172         MonoImage to remove the image from the correct caches.
21173
21174         * image.h: Add the signatures of mono_image_open_full,
21175         mono_image_open_from_data_full, mono_image_loaded_full,
21176         mono_image_loaded_by_guid_full.
21177
21178         * metadata-internals.h: Add the ref_only field to 
21179         MonoImage.
21180         
21181 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21182
21183         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21184         Fix the last behavior, which used to load the assemblies and
21185         extract MonoReflectionAssemblyName information, instead of
21186         extract it from the metadata tables. Needed for Reflection
21187         Only assemblies.
21188         
21189 2005-07-29  Martin Baulig  <martin@ximian.com>
21190
21191         * mono-debug-debugger.c
21192         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21193         not initialized.
21194
21195         * mono-debug.c
21196         (mono_debug_address_from_il_offset): Check whether we have
21197         debugging support before attempting to take the lock.
21198         (mono_debug_source_location_from_address): Likewise.
21199         (mono_debug_source_location_from_il_offset): Likewise.
21200         (mono_debug_il_offset_from_address): Likewise.
21201         (mono_debug_address_from_il_offset): Likewise.
21202
21203 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21204
21205         * class.c (mono_class_from_name_case): Add support for dynamic images.
21206         Fixes #75650.
21207
21208         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21209         for #75479.
21210
21211 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21212         
21213         * reflection.c (mono_method_get_object): Fix warning.
21214
21215 2005-07-28  Martin Baulig  <martin@ximian.com>
21216
21217         * mono-debug.c
21218         (mono_debug_add_wrapper): Also write the wrapper type.
21219
21220 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21221
21222         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21223         
21224         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21225         data indicates the class has none.
21226
21227 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21228
21229         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21230         loader lock with the debugger lock. Prevents deadlocks for beagle.
21231
21232         Beagle can now run on an smp box for a weekend without any
21233         issues. Woohoo!
21234
21235 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21236
21237         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21238         in a module. Fixes #75629.
21239
21240 2005-07-26  Martin Baulig  <martin@ximian.com>
21241
21242         * mono-debug.c (mono_debug_add_wrapper): New static method.
21243         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21244         interncall or a wrapper.
21245
21246         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21247         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21248         (MONO_DEBUGGER_VERSION): Bump to 51.
21249
21250         * mono-debug-debugger.c
21251         (mono_debugger_add_type): Removed this empty function.
21252         (mono_debugger_add_method): Likewise.
21253
21254 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21255
21256         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21257         before accessing method->slot.
21258
21259 2005-07-21  Jb Evain  <jbevain@gmail.com>
21260
21261         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21262         Fixes #75010.
21263
21264 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21265
21266         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21267         #75587.
21268
21269 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21270
21271         * image.h image.c: Add mono_image_get_guid () API function.
21272
21273 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21274
21275         There were issues when multiple threads tried to load
21276         assemblies. A deadlock was created between assemblies_mutex and
21277         mono_domain_assemblies_lock. This fixes the issue by making the
21278         assembly ref counting be lock free. See bug 75586.
21279         
21280         * image.c (mono_image_close): The add ref function here was using
21281         Interlocked operations while the unref was using a mutex and a
21282         --. I don't think this was ever a bug that would be exposed in a
21283         non-pendantic way (ie, by an embedder doing a ref on one thread
21284         and an unref on another), but for the sake of correctness, this is
21285         now Interlocked.
21286
21287         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21288         (mono_assembly_load_reference): Call mono_assembly_addref rather
21289         than touching the refcount ourselves.
21290         (mono_assembly_close): Use InterlockedDecrement to unref the
21291         assembly. Don't acquire the lock unless it is actually needed.
21292
21293 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21294
21295         * class.c (mono_class_layout_fields): Fix calculation of has_references
21296         for generic types.
21297
21298 2005-07-12  Martin Baulig  <martin@ximian.com>
21299
21300         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21301
21302         * metadata.c
21303         (mono_type_hash): Provide better hashing for generic instances.
21304         (mono_generic_inst_hash): Improve hashing.
21305         (mono_generic_class_hash): Likewise.
21306
21307         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21308         generic instances.
21309
21310 2005-07-12  Martin Baulig  <martin@ximian.com>
21311
21312         * reflection.c (mono_reflection_create_runtime_class): Remove the
21313         hack for generic type definitions and non-`Run' assemblies.
21314         (mono_reflection_bind_generic_parameters): Also use
21315         `klass->wastypebuilder' to check for TypeBuilders.
21316
21317 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21318
21319         * class.c (mono_class_layout_fields): Fix calculation of has_references
21320         for generic types.
21321
21322         * class.c (inflate_generic_class): Fix a leak.
21323         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21324         for generic types.
21325
21326 2005-07-11  Martin Baulig  <martin@ximian.com>
21327
21328         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21329         on error.
21330
21331 2005-07-11  Martin Baulig  <martin@ximian.com>
21332
21333         * loader.c (find_method): Also lookup in
21334         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
21335
21336 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21337
21338         * appdomain.c (mono_domain_unload): Don't free the error message
21339         before passing it to mono_get_exception_...
21340
21341         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
21342         
21343 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
21344
21345         * threads.c: try to better guess an available RT signal (bug #75387).
21346
21347 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21348
21349         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
21350         and CACHE_OBJECT.
21351
21352 2005-07-07  Martin Baulig  <martin@ximian.com>
21353
21354         * class.c (mono_type_get_name_full): Return NULL for
21355         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
21356         fixes #75408.
21357
21358 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21359
21360         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
21361         exit the appdomain as well being aborted.
21362
21363         * threadpool.c: Create all threadpool threads inside the root appdomain, and
21364         change back to the root domain after calling managed code. This enables
21365         appdomains using threadpools to be unloaded.
21366
21367 2005-07-07  Martin Baulig  <martin@ximian.com>
21368
21369         * class-internals.h
21370         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
21371         into `MonoDynamicGenericClass' since we only need it for dynamic
21372         types.
21373
21374         * reflection.c (mono_class_bind_generic_parameters): We don't need
21375         to compute the `parent' here.
21376
21377 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
21378
21379         * culture-info-table.h : regenerated.
21380
21381 2005-07-06  Martin Baulig  <martin@ximian.com>
21382
21383         * icall.c
21384         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
21385
21386         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
21387
21388 2005-07-06  Martin Baulig  <martin@ximian.com>
21389
21390         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
21391         we're doing a signature-only comparision; fixes #74945.
21392
21393 2005-07-06  Martin Baulig  <martin@ximian.com>
21394
21395         * class-internals.h (MonoGenericClass): Moved some things out into
21396         a new `MonoInflatedGenericClass' type.  
21397         (MonoInflatedGenericClass): New type; the `klass' of a
21398         `MonoGenericClass' is now computed lazyly in
21399         mono_get_inflated_generic_class().      
21400
21401         * class.c (mono_get_inflated_generic_class): New public function.
21402         (mono_class_inflate_generic_method): Removed the unused
21403         `MonoClass *' argument.
21404         (setup_generic_vtable): Don't call mono_get_inflated_method() on
21405         all the methods.
21406         (mono_class_create_generic): Make this static and merge it with
21407         mono_class_create_generic_2(); we're now called automatically from
21408         mono_get_inflated_generic_class().
21409
21410         * loader.c (mono_method_signature): Call
21411         mono_get_inflated_method() here.
21412
21413 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
21414
21415         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
21416         type of fields with RVA.
21417
21418         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
21419         for this pseudo class.
21420         (my_mono_class_from_generic_parameter): Likewise.
21421         (mono_class_init): Allow interfaces to have cctors.
21422
21423 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21424
21425         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
21426         lazily for AOT methods.
21427
21428 2005-07-05  Martin Baulig  <martin@ximian.com>
21429
21430         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
21431         returns FALSE for a successful match, not TRUE.
21432
21433 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21434
21435         * loader.c (mono_method_get_index): Optimize this a bit.
21436
21437 2005-07-04  Martin Baulig  <martin@ximian.com>
21438
21439         * class.c
21440         (class_compute_field_layout): Move the check for generic type
21441         definitions into mono_class_layout_fields().  Fixes #74684.
21442         (mono_class_from_generic_parameter): Correctly compute
21443         `klass->parent'; fixes #75457.
21444
21445         * reflection.c (register_assembly, register_module): Make sure
21446         `domain->rejobject_hash' is already created.
21447
21448 2005-07-02  Martin Baulig  <martin@ximian.com>
21449
21450         * class-internals.h
21451         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
21452         `MonoDynamicGenericClass'.      
21453
21454 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
21455
21456         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
21457         returned by a field getter is null, since null is a valid value.
21458
21459 2005-07-01  Martin Baulig  <martin@ximian.com>
21460
21461         * reflection.c (mono_reflection_generic_class_initialize): Update
21462         the `dgclass->fields [i].parent' to the correct class.
21463         (mono_image_get_fieldref_token): Use the declaring type, not the
21464         reflected type.
21465
21466 2005-07-01  Martin Baulig  <martin@ximian.com>
21467
21468         * loader.c (find_method): Also look in the interfaces; fixes #75429.
21469
21470 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
21471
21472         * threads.c (thread_cleanup): assert that thread != NULL
21473         (wait_for_tids_or_state_change): We were using the wrong variable
21474         when accessing wait->threads. `i' was always out of the bounds of
21475         the array.
21476
21477 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21478
21479         * loader.c: map user32 and kernel32 to libMonoSupportW
21480
21481 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
21482
21483         * appdomain.c (unload_thread_main): Mark this as WINAPI.
21484
21485 2005-06-28  Martin Baulig  <martin@ximian.com>
21486
21487         * loader.c (method_from_methodspec): Fix #75334.
21488
21489 2005-06-28  Martin Baulig  <martin@ximian.com>
21490
21491         Fix #74953 - Arrays now implement the generic IList<T> interface
21492         on the 2.0 platform.
21493
21494         * class-internals.h (MonoDefaults): Added `generic_array_class'.
21495
21496         * reflection.c (mono_class_bind_generic_parameters): New public
21497         function; similar to mono_reflection_bind_generic_parameters(),
21498         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
21499
21500         * domain.c (mono_init_internal): Try to initialize.
21501         `mono_defaults.generic_array_class' here; this'll only succeed if
21502         we're using the 2.0 corlib.
21503
21504         * icall.c
21505         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
21506         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
21507         (mono_lookup_internal_call): Added support for nested classes.
21508
21509         * loader.c
21510         (mono_get_method_from_token): Set `result->signature->pinvoke' if
21511         we're an interncall and have generic arguments.
21512
21513         * class.c
21514         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
21515         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
21516         instance of System.Array.InternalArray<T> for arrays, so they
21517         implement the generic IList<T> interface.
21518
21519 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
21520
21521         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
21522         (chastamar@yahoo.com). Fixes #75374.    
21523
21524 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
21525
21526         * culture-info-table.h: regenerated.
21527
21528 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21529
21530         * icall.c: handle spaces correctly for base64 strings.
21531
21532 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
21533
21534         * *.c: Kill some warnings.
21535
21536 2005-06-23  Duncan Mak  <duncan@novell.com>
21537
21538         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
21539         that this builds on Solaris 10 (x86).
21540
21541 2005-06-23  Martin Baulig  <martin@ximian.com>
21542
21543         * class.c
21544         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
21545         generic type definitions.
21546
21547 2005-06-23  Martin Baulig  <martin@ximian.com>
21548
21549         Fix #75331.
21550
21551         * metadata.c (mono_class_get_overrides): Renamed to
21552         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
21553         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
21554         pass it to mono_get_method_full().
21555
21556 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
21557
21558         * reflection.c (mono_reflection_create_runtime_class): take the
21559         mono_domain_lock in this method. Prevents deadlocks
21560
21561 2005-06-22  Martin Baulig  <martin@ximian.com>
21562
21563         * loader.c (method_from_methodspec): Fix #75330.
21564
21565 2005-06-22  Martin Baulig  <martin@ximian.com>
21566
21567         * reflection.c (type_get_qualified_name): Use
21568         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
21569         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
21570         argument; use it if we don't have an assembly name.
21571
21572 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
21573
21574         * object.c: In mono_message_init, set "copy out" flag for in
21575         parameters with the [Out] flag.
21576
21577 2005-06-21  Martin Baulig  <martin@ximian.com>
21578
21579         * class.c
21580         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
21581         and MONO_TYPE_PTR.
21582
21583 2005-06-21  Martin Baulig  <martin@ximian.com>
21584
21585         * class.c (mono_class_init): Don't initialize `class->fields' for
21586         generic instances since they're initialized again in
21587         compute_field_layout(). 
21588         (compute_field_layout): Set the field's `generic_info' here; fix
21589         #75320. 
21590
21591 2005-06-21  Martin Baulig  <martin@ximian.com>
21592
21593         * class-internals.h
21594         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
21595
21596         * metadata.c (mono_metadata_generic_method_equal): Also
21597         distinguish the `generic_class'; fixes #75334.
21598
21599 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21600
21601         * domain.c:
21602         * appdomain.c:
21603         * domain-internals.h:
21604         * reflection.c: 'domain_assemblies' field is now protected by its own
21605         lock. Don't call into managed code to run the AssemblyLoad event if we
21606         now there are no registered delegates for it.
21607
21608 2005-06-20  Martin Baulig  <martin@ximian.com>
21609
21610         * class.c (mono_class_is_assignable_from): Use a custom version of
21611         mono_class_has_parent() to make things work for generic instances;
21612         fix #75300.
21613
21614 2005-06-20  Martin Baulig  <martin@ximian.com>
21615
21616         * loader.c (method_from_methodspec): Apply a patch from
21617         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
21618
21619 2005-06-20  Martin Baulig  <martin@ximian.com>
21620
21621         * class.c (mono_class_init): Reverted Zoltan's last change; it
21622         breaks generics.
21623
21624 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
21625
21626         * threads.c (wait_for_tids_or_state_change): Add missing locking.
21627
21628 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21629
21630         * socket-io.c: fix the index in the socket array for writable/error
21631         sockets. Fixes bug #75306.
21632
21633 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
21634
21635         * class.c (mono_class_init): Allow interfaces to have static ctors.
21636
21637 2005-06-17  Martin Baulig  <martin@ximian.com>
21638
21639         * loader.c (method_from_methodspec): Use `context->container' when
21640         parsing the `gmethod->inst'.
21641
21642 2005-06-17  Martin Baulig  <martin@ximian.com>
21643
21644         * class.c (mono_type_get_name_recurse): Don't add the assembly
21645         name for type arguments.
21646
21647 2005-06-15  Martin Baulig  <martin@ximian.com>
21648
21649         * reflection.c (mono_image_get_inflated_method_token): Encode
21650         correct klass; fixes #75260.
21651
21652 2005-06-13 Michal Moskal <malekith@nemerle.org>
21653
21654         * icall.c: Make GetCorrespondingMethod/Constructor take
21655         MonoReflectionMethod method not MonoMethod. Removed
21656         MonoType.GetCorrespondingField, and make
21657         MonoGenericType.GetCorrespondingField take name not
21658         MonoClassField.
21659
21660 2005-06-13  Michal Moskal <malekith@nemerle.org>
21661
21662         * reflection.c (field_encode_signature, encode_locals):
21663          Make sizes of buffers for types larger (for big generic types).
21664          (create_generic_typespec,
21665          mono_reflection_sighelper_get_signature_local,
21666          mono_reflection_sighelper_get_signature_field):
21667          Add asserts for too small buffers.
21668
21669 2005-06-15  Martin Baulig  <martin@ximian.com>
21670
21671         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
21672         if our parent is not a dynamic type.
21673
21674 2005-06-15  Martin Baulig  <martin@ximian.com>
21675
21676         * class-internals.h (MonoTypeNameFormat): New enum.
21677
21678         * class.c
21679         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
21680         (mono_type_get_full_name): Removed.
21681         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
21682         argument instead of the boolean's.
21683
21684         * icall.c (ves_icall_System_MonoType_getFullName):
21685         Added `gboolean assembly_qualified'.    
21686
21687         * reflection.h
21688         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
21689
21690         * reflection.c (mono_reflection_parse_type): Parse the new type
21691         name format.
21692
21693 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21694
21695         * icall.c: no need to convert from utf16 to utf8 and then back again
21696         after the call to GetLogicalDrives.
21697
21698 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21699
21700         * icall.c: frombase64. Fix problems exposed by new tests.
21701
21702 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21703
21704         * icall.c: added internal calls for converting char [] and strings in
21705         base64 into byte [].
21706
21707 2005-06-10  Martin Baulig  <martin@ximian.com>
21708
21709         * class.c (mono_class_create_generic_2): Read the nested classes
21710         from the metadata rather than from `gklass->nested_classes' since
21711         `gklass' might not be initialized yet.
21712
21713 2005-06-09  Duncan Mak  <duncan@novell.com>
21714
21715         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
21716         all public headers. Fixes #74919.
21717
21718 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
21719
21720         * domain.c: The key for proxy_vtable_hash is now a pointer
21721         array. Added new GHashFunc and GCompareFunc functions for this.
21722
21723         * class.h: The list of interfaces in MonoRemoteClass is known in
21724         advance and can't grow (we create a new MonoRemoteClass if needed),
21725         so now the interface array can be allocated together with
21726         MonoRemoteClass.
21727         
21728         * object.c: Added a new method create_remote_class_key.
21729         Fixed mono_remote_class so it does not depend on
21730         mono_upgrade_remote_class.
21731         Removed extend_interface_array.
21732         Added new method clone_remote_class(), which makes a copy of a remote
21733         class and adds a new interface or class to it.
21734         mono_upgrade_remote_class() now creates a new remote class (or gets
21735         it from the cache) if an vtable upgrade is needed. In this way
21736         we make sure that other objects sharing the same remote class
21737         don't get the new vtable with unwanted interfaces.
21738         
21739         * object-internals.h:
21740         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
21741         
21742         * marshal.c: Track changes in mono_upgrade_remote_class().
21743
21744 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
21745         * icall.c: Add runtime methods for obtaining members of inflated
21746         class, which were created from supplied non-inflated members. It
21747         is used in internal Get{Method,Constructor,Field} methods in
21748         System.Type
21749
21750 2005-06-09  Martin Baulig  <martin@ximian.com>
21751
21752         * reflection.c
21753         (mono_reflection_bind_generic_method_parameters): Fix #75169.
21754
21755 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21756         * reflection.c (mono_image_basic_init): Define
21757         Version in MonoDynamicAssembly. 
21758         
21759 2005-06-08  Martin Baulig  <martin@ximian.com>
21760
21761         Fix #75136.
21762
21763         * loader.c
21764         (mono_method_signature_full): New public method; takes a
21765         `MonoGenericContext *'.
21766         (find_method): Use mono_method_signature_full() and pass the
21767         klass'es context to it.
21768
21769         * class.c (mono_class_is_inflated_method): Use
21770         mono_method_signature_full() and pass the context to it.
21771
21772 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
21773
21774         * object.c: add proper locking in mono_remote_class_vtable(),
21775         fixes possible memory corruption.
21776
21777 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
21778
21779         * marshal.c (mono_remoting_marshal_init): set
21780         initialized after initialization.
21781
21782 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21783
21784         * locales.c : hush.
21785
21786 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
21787
21788         * object.c (extend_interface_array): fix really silly
21789         memory corrupting / comparison bug.
21790
21791 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21792
21793         * reflection.c: Functions added to support the creation
21794         of CustomAttributeData, which includes Attribute data
21795         used by ReflectionOnly methods.
21796
21797         * reflection.h:  mono_reflection_get_custom_attrs_data and
21798          mono_custom_attrs_data_construct added (functions exposed).
21799
21800          * icall.c: Added mono_reflection_get_custom_attrs_data
21801          as icall.
21802         
21803 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
21804
21805         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
21806         lupus's request.
21807
21808 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
21809
21810         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
21811
21812         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
21813         dynamic DllImportAttribute.
21814
21815         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
21816         dynamic DllImportAttribute.
21817
21818         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
21819         Fixes #75162.
21820
21821 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21822
21823         * threads.c: avoid segfault when an unstarted thread is aborted.
21824
21825 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
21826
21827         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
21828         Returns the name and version of the runtime for reporting.
21829
21830 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21831
21832         * appdomain.c: bump corlib version.
21833         * object-internals.h: new field in MonoReflectionAssembly.
21834
21835 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21836
21837         * object-internals.h: Carlos forgot to add this field.
21838
21839 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21840
21841         * icall.c: Added create_version to create instances
21842         of Version of MonoReflectionAssemblyName. This change helps
21843         the AssemblyName tests to keep running fine.
21844         
21845 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
21846   
21847         * object.c (mono_method_return_message_restore): A somehow less
21848         intrusive fix for #75138.
21849
21850 2005-06-03  Raja R Harinath  <rharinath@novell.com>
21851
21852         * object.c (mono_method_return_message_restore): Fix computation
21853         of expected number of out args.
21854
21855 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
21856
21857         * reflection.c (mono_image_get_method_info): Fix the case when the
21858         charset is empty.
21859
21860 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
21861
21862         * object.c: Added missing null check in
21863           mono_method_return_message_restore.
21864
21865 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
21866
21867         * reflection.c (mono_image_get_method_info): Handle the case when
21868         dllentry is empty.
21869
21870 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
21871
21872         * object.c: When creating the vtable for a proxy, take into account
21873         all inherited interfaces, not only the ones registered in
21874         iclass->interfaces. This fixs bug #74996.
21875         Also, in mono_method_return_message_restore, verify that the array
21876         of out args has the expected lengh.
21877
21878 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21879
21880         * socket-io.c: update the timeout in Poll when the call is interrupte.
21881
21882 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21883
21884         * socket-io.c: support abort/suspend in Select_internal after last
21885         change.
21886
21887 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21888
21889         * threadpool.c: remove warning.
21890
21891 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21892
21893         * icall.c:
21894         * socket-io.[ch]: Select_internal uses poll() now when available, thus
21895         removing the 1024 limit from select(). Runtime part of the fix for
21896         bug #71203.
21897
21898 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21899
21900         * socket-io.c: when resolving the addresses for the same
21901         host returned by gethostname(), get the local IPs from the interface
21902         list. Loopback addresses are discarded if the are interfaces up with
21903         non-loopback ones. Fixes bug #63265.
21904
21905 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
21906
21907         * appdomain.c, verify.c, object-internals.h, reflection.c:
21908         bumped corlib number to 36, and added new extra_flags field
21909         to ReflectionMethodBuilder and friends.  Fixes #75060.
21910
21911 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
21912
21913         * gc.c: register a new weak link only if the object is non-null
21914         (fixes bug#75047).
21915
21916 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21917
21918         * culture-info.h : short time pattern too.
21919
21920 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21921
21922         * culture-info.h : expand long time pattern string length.
21923
21924 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21925
21926         * culture-info-table.h : update (more French date format; #72788).
21927
21928 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
21929
21930         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
21931         the method is static. Fixes #75029.
21932
21933 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
21934
21935         * reflection.c: Update the table_idx field of method builders after
21936         saving the module, since it can change. This is a workaround for
21937         bug #74914. 
21938
21939 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21940
21941         * culture-info-table.h : update (additional French date format).
21942
21943 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
21944
21945         * icall.c (ves_icall_type_Equals): Revert last change.
21946         
21947         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
21948
21949         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
21950
21951 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
21952
21953         * class-internals.h: Added executioncontext_class field to 
21954         MonoDefaults structure.
21955         * domain.c: Cache System.Threading.ExecutionContext class in 
21956         mono_defaults.
21957         * object.c: Capture the ExecutionContext for asynchroneous calls in
21958          mono_async_result_new.
21959         * object-internals.h: Added execution_context and original_context 
21960         fields to MonoAsyncResult. Added execution_context to MonoThread.
21961         * security-manager.c|.h: Added mono_get_context_capture_method to 
21962         return the capture method (if required by the security manager or by
21963         the framework version used).
21964         * threadpool.c: Apply capture (if present) ExecutionContext in 
21965         mono_async_invoke and revert to original context after it completes.
21966
21967 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
21968
21969         * culture-info-table.h : updated (real hacky solution for zh-CHT).
21970
21971 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
21972
21973         * culture-info-table.h : zh-CHT related workaround.
21974
21975 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
21976
21977         * marshal.c (emit_marshal_custom): Add some error checking and call the
21978         methods in the ICustomMarshaler interface. Fixes #74875.
21979         
21980         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
21981         native->managed wrappers.
21982
21983 2005-05-12  Martin Baulig  <martin@ximian.com>
21984
21985         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
21986         here and use the loader lock.
21987
21988         * mono-debug.c: Properly lock when the debugger is not attached.
21989         (mono_debug_init): Release the initial lock if we're not running
21990         in the debugger.
21991
21992 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
21993
21994         * marshal.c (emit_marshal_custom): Pass through NULL values without
21995         calling the custom marshalling routines.
21996
21997         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
21998         conversion in structures. Fixes #74882.
21999
22000 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
22001
22002         * culture-info-table.h : zh-* cultures were missing.
22003
22004 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
22005
22006         * threads.c: Added a new event background_change_event which is signaled
22007         when a thread changes its background mode.
22008         Moved here several checks previously done in managed code. The checks
22009         require the thread lock, and using the thread lock in managed code
22010         can result in deadlocks.
22011         Merged Start_internal and Thread_internal into a single method. Now 
22012         Thread_internal does all work of creating and starting a thread.
22013         Added icalls for setting and getting the state of the object. Moved from
22014         managed code to avoid locking there.
22015         Added wait_for_tids_or_state_change() which is called instad of
22016         wait_for_tids when waiting for non-backround threads to end. This method
22017         will return if one of the threads ends or the background_change_event
22018         is signaled.
22019         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
22020         the background mode. This method signals the background_change_event
22021         event.
22022         * icall.c:
22023         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
22024         removed Start_internal.
22025         
22026 2005-05-11  Martin Baulig  <martin@ximian.com>
22027
22028         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
22029         to order of some fields to get proper alignment on 64-bit machines.
22030
22031 2005-05-11  Martin Baulig  <martin@ximian.com>
22032
22033         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
22034         changes as they're broken and completely fuck up the debugger.
22035
22036         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
22037
22038 2005-05-10  Martin Baulig  <martin@ximian.com>
22039
22040         * reflection.c (mono_reflection_generic_class_initialize): Don't
22041         call mono_class_setup_parent() here.
22042
22043 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22044
22045         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
22046         send/receive timeout use an integer in milliseconds. We were using a
22047         struct timeval.
22048
22049 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22050
22051         * locales.c:
22052         (internal_get_cultures): reserve the first slot of the array for the
22053         InvariantCulture, which will be filled in managed code.
22054
22055 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
22056
22057         * reflection.c (mono_image_fill_module_table): Initialize the
22058         GENERATION field as well.
22059
22060 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22061
22062         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22063         Monitor.Enter on the object.
22064
22065 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
22066
22067         * threads.c: Enable the wait for running threads when exiting.
22068         * icall.c: Suspend all threads before exiting.
22069
22070 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
22071
22072         * assembly.c (mono_assembly_load_reference): Fix warning.
22073
22074 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22075
22076         * threadpool.c: changed the default number of threads per cpu. From now
22077         on, the default will be 20 + (5 * number of cpus) instead of 50.
22078
22079 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
22080
22081         * loader.c (mono_method_get_signature_full): Add locking here.
22082
22083 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
22084
22085         * appdomain.c: Moved methods for parsing and freeing assembly
22086         names to assembly.c.
22087         * assembly.c, domain-internals.h: Created public methods for parsing
22088         assembly names. Fixed mono_assembly_load_with_partial_name:
22089         it now finds the best match, taking into account the version,
22090         token and culture specified in the partial name. Also return
22091         the latest version if no version information is specified.
22092
22093 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22094
22095         * threadpool.c: replace check for SocketAsyncCall class.
22096
22097 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22098
22099         * threadpool-internals.h:
22100         * Makefile.am: added threadpool-internals.h
22101
22102         * threadpool.c: call mono_unhandled_exception on exceptions not handled
22103         that happen in threadpool threads (tested on MS).
22104         (mono_thread_pool_remove_socket): new function that dispatch any pending
22105         AIO call on a socket that is closing. By now only epoll really needs it,
22106         as select/poll wake up when the socket closes.
22107
22108
22109         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22110
22111 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22112
22113         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22114
22115 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22116
22117         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22118
22119 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22120
22121         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22122         has an abort request, convert it into a suspend request.
22123
22124 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22125
22126         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22127         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22128         is not supported yet.
22129
22130 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22131
22132         * image.c: register assemblies loaded from data (bundles) in the loaded
22133         assemblies hash. Fixes bug #74772.
22134
22135 2005-04-29  Martin Baulig  <martin@ximian.com>
22136
22137         * class.c (mono_type_get_name_recurse): Update to the new naming
22138         schema from the latest .NET 2.x beta2.
22139         (mono_class_setup_vtable_general): If we're a generic instance,
22140         copy the vtable from our generic type definition and inflate all
22141         the methods in it.
22142
22143         * loader.c (find_method): Update to the new naming schema from the
22144         latest .NET 2.x beta2.
22145
22146 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22147
22148         * class.c (mono_class_init): Add a mono_loader_unlock to the
22149         #74734 fix.
22150
22151 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22152
22153         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22154         suspend_all_other_threads () call for the time being, since it can hang.
22155
22156         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22157         the background threads to exit, since it can also hang.
22158
22159         * class.c (mono_class_init): Applied patch from Ankit Jain 
22160         (radical@gmail.com). Avoid pending init errors when a field refers
22161         to a nested class using a typeref. Fixes #74734.
22162
22163         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22164         this for dynamic modules.
22165
22166 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22167
22168         * threads.c: don't wait for threads that are in the process of aborting
22169         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22170         and waiting for background threads to finish. This makes xsp and
22171         mod-mono-server exit without random length delays and/or hangs.
22172
22173 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22174
22175         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22176
22177 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22178
22179         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22180         dynamic types to prevent infinite loops. Fixes #74727.
22181
22182         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22183         ..._is_assignable_to.
22184
22185 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22186
22187         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22188
22189 2005-04-25  Martin Baulig  <martin@ximian.com>
22190
22191         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22192
22193         * domain.c
22194         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22195
22196         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22197
22198         * reflection.c (build_compressed_metadata): Set metadata header
22199         version to 2.0.
22200
22201 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22202
22203         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22204         number into an integral and a decimal part. Fixes #70473.
22205
22206         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22207
22208 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22209
22210         * culture-info-table.h : reflected the latest locale-builder output.
22211
22212 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22213
22214         * threadpool.c: check for SuspendRequested too when deciding if
22215         mono_thread_interruption_checkpoint should be called.
22216
22217 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22218
22219         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22220         * threads.c: remove interruption_mutex and use Interlocked instead. When
22221         suspending all the threads, wait for all the suspended events at once.
22222         If we're shutting down and get an APC that is going to be queued,
22223         call mono_thread_execute_interruption immediately, as the thread might
22224         be sleeping on a pthread condition or mutex.
22225
22226         * icall.c: call mono_runtime_set_shutting_down before suspending the
22227         threads.
22228
22229         Fixes bug #74693. And now xsp is happier when exiting.
22230
22231 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22232
22233         * loader.c (mono_stack_walk): Fix #74690.
22234
22235 2005-04-22  Martin Baulig  <martin@ximian.com>
22236
22237         * mono-debug.h (MonoDebugMethodJitInfo): Added
22238         `MonoDebugMethodJitInfo *jit'.
22239
22240         * mono-debug.c (mono_debug_read_method): Cache the
22241         MonoDebugMethodJitInfo in `address->jit'.
22242         (mono_debug_free_method_jit_info): New public method.
22243
22244 2005-04-22  Martin Baulig  <martin@ximian.com>
22245
22246         * class.c (mono_class_is_assignable_from): Disallow
22247         type parameter -> interface.
22248
22249 2005-04-21  Dick Porter  <dick@ximian.com>
22250
22251         * threads.c (mono_thread_create): Turn an assertion into an error.
22252
22253 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22254
22255         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22256         
22257         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22258         Fix some gcc 4.0 warnings.
22259
22260 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22261
22262         * file-io.c: fix alt dir separator char on unix systems
22263         and cleanup (fixes bug #71214).
22264
22265 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22266
22267         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22268         a call to a remote domain, since the method may be an
22269         interface method in the client domain. This fixes bug #74192.
22270
22271 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22272
22273         * threadpool.c: recv/send are now performed before going back to managed
22274         code to save one transition.
22275
22276 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22277
22278         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22279
22280         * metadata/threadpool.c: removed hack to workaround the bug above.
22281
22282         Fixes bug #74618.
22283
22284 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22285
22286         * reflection.c reflection.h: Fix handling of parameter defaults in
22287         dynamic methods. Also fixes handling of parameter attributes.
22288         Fixes #74609.
22289
22290         * mono-debug.c (mono_debug_close_image): Fix warning.
22291
22292 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22293
22294         * socket-io.h: replaced old unused field with new 'blocking'.
22295         * threadpool.c: restore socket blocking state on windows(tm).
22296
22297 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22298
22299         * icall.c: don't return the codebase in the AssemblyName[] returned by
22300         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22301         * object-internals.h: Removed FIXME (fields were presents) and fixed
22302         versioncompat declaration.
22303
22304 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22305
22306         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22307         not closed, so don't cleanup when it happens.
22308
22309 2005-04-13  Chris Toshok  <toshok@ximian.com>
22310
22311         * mono-debug-debugger.h: change prototype for
22312         mono_debugger_lookup_type.
22313
22314         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22315         this function, although it should probably be named
22316         mono_debugger_init_type.
22317
22318 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22319
22320         * threadpool.c: fix non-AIO case.
22321
22322 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22323
22324         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22325         the built-in profiler to measure just JIT compilation times.
22326
22327 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22328
22329         * threadpool.c: the epollfd might be closed by another thread at
22330         any time, so ignore EBADF at treat it as a "we're closing" sign.
22331
22332 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22333
22334         * threadpool.c: release the semaphores with a count equals to the number
22335         of working threads in both IO and regular pools. Fixed typo that messed
22336         up the count of IO pool threads. Don't initialize the pipe handles if
22337         we're using epoll.
22338
22339 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22340
22341         * threadpool.c: some systems don't like a NULL when deleting the socket
22342         from epoll.
22343
22344 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22345
22346         * threadpool.c: fix semaphore allocation.
22347
22348 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22349
22350         * threadpool.c: added epoll() based implementation for asynchronous IO
22351         that is used instead of the default poll() when available.
22352         It can be disabled by setting MONO_DISABLE_AIO.
22353
22354 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22355
22356         * threadpool.c: windows needs 'closesocket' and instead of returning
22357         0 when the stream is closed while in select, it returns -1. Fixes bug
22358         #74573.
22359
22360 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
22361
22362         * class.c (class_compute_field_layout): Fix the regression caused by
22363         the previous try.
22364
22365 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22366
22367         * threadpool.c: separate pool for socket async. IO.
22368         * threadpool.h: mono_max_worker_threads is not a global any more.
22369
22370 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
22371
22372         * class.c (class_compute_field_layout): Fix #74549.
22373
22374 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22375
22376         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
22377         use 2 connected sockets instead.
22378
22379 2005-04-08  Miguel de Icaza  <miguel@novell.com>
22380
22381         * mono-config.c: Add new entry point for mkbundle
22382         mono_config_parse_memory. 
22383
22384 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22385
22386         * threadpool.c: removed another unused function.
22387
22388 2005-04-08  Ankit Jain  <radical@corewars.org>
22389
22390         * reflection.c (get_default_param_value_blobs): Add 'types'
22391         parameter to get the types encoded in the constant table.
22392         (mono_param_get_objects): Use the type from the constant table,
22393         not the type of the parameter, when creating default values.
22394         Handle null default values correctly.
22395
22396 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22397
22398         * file-io.c:
22399         * file-io.h:
22400         * threadpool.c:
22401         * threadpool.h:
22402         * icall.c:
22403         * socket-io.c: removed dead code for async IO.
22404
22405 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22406
22407         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
22408
22409         * threadpool.c: intercept socket async. calls and pass them to a thread
22410         that is polling and dispatching the job items to the threadpool as
22411         socket become ready. Fixes bugs #71217, #71933.
22412
22413         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
22414         between char and short/ushort arrays.
22415
22416         * socket-io.c: remove dead code.
22417
22418 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22419
22420         * locales.c,
22421           icall.c : removed InternalToUpper_Comp() and
22422           InternalToLower_Comp().
22423
22424 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22425
22426         * char-conversions.h : The tables were incorrectly generated. Should
22427           be generated against invariant culture.
22428
22429 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
22430
22431         * object.c (mono_runtime_invoke_array): Fix return value when 
22432         passing pre-created valuetype objects to ctors.
22433
22434         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
22435         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
22436         Fixes #74338.
22437
22438 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
22439
22440         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
22441         only used with --security and hides the wrong corlib version error.
22442
22443 2005-03-30  Joshua Tauberer  <tauberer@for.net>
22444
22445         * class.c: Changed mono_class_name_from_token so that types
22446         outside of a namespace don't have an initial period.  Improved
22447         the g_warning message used in _mono_class_get when loading
22448         fails.
22449         * assembly.c: In mono_assembly_load_reference, when an assembly
22450         can't be found, "No such file or directory" is misleading and
22451         unhelpful because a few paths were checked for the presence of
22452         the assembly.  When that happens (ENOENT), display a nicer
22453         message indicating the directories that were searched.  In all
22454         cases, the warning is made easier to read for non-hackers.
22455
22456 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
22457
22458         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
22459         project/solution.
22460         * appdomain.h|domain.c: Removed inline from functions.
22461         * appdomain.c: Reduced warnings when compiling on windows.
22462         * icall.c: Fixed output_debug declaration to gunichar2*.
22463         * mono-config.c: Reduced warnings when compiling on windows.
22464         * rand.c: Added missing "windows.h". Added missing return value.
22465         * rawbuffer.c: Added missing winsock2.h for windows.
22466         * sysmath.h: Added mono-compiler.h header to allow/ease 
22467         compilation with non-GCC compilers.
22468         * threads.c: Fixed declarations to compile with VS.NET C compiler.
22469         Removed cast warnings.
22470
22471         Adapted from the work of J Lothian (for VC6).
22472
22473 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
22474
22475         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
22476         from default_path.
22477
22478 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
22479
22480         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
22481         the 2.0 profile.
22482
22483 2005-03-27  Raja R Harinath  <harinath@gmail.com>
22484
22485         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
22486         has to be in $(exec_prefix).  $(prefix) is for arch-independent
22487         stuff, and it would probably use $(prefix)/share rather than
22488         $(prefix)/lib.
22489
22490 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22491
22492         * console-io.c: added 2 includes that might be missing.
22493
22494 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
22495
22496         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
22497         profile.
22498
22499         * reflection.c (create_custom_attr): Allocate the params array using
22500         alloca so it gets GC tracking.
22501
22502 2005-03-23  Chris Toshok  <toshok@ximian.com>
22503
22504         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
22505         out some spew.
22506
22507 2005-03-24  Raja R Harinath  <rharinath@novell.com>
22508
22509         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
22510         changes to pick up any changes in prefix, etc.
22511
22512 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22513
22514         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
22515         
22516         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
22517         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
22518
22519 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22520
22521         * class-internals.h object-internals.h class.c reflection.c: Extend the
22522         mono_lookup_dynamic_token () function to return the class of the
22523         token as well. 
22524
22525         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
22526         well. Fixes #73848.
22527
22528 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
22529
22530         * security-manager.c: Skip inheritance checks for intra-corlib
22531         class inheritance and method overrides. This skips a lot of checks
22532         and (anyway) permissions cannot work until corlib is loaded.
22533
22534 2005-03-23  Martin Baulig  <martin@ximian.com>
22535
22536         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
22537         MONO_TYPE_GENERICINST.  
22538
22539 2005-03-23  Martin Baulig  <martin@ximian.com>
22540
22541         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
22542
22543 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22544
22545         * class.c: added locking comments to some functions.
22546         Cache the interface offsets arrays (saves about 20 KB
22547         of runtime memory in a typical app).
22548         Reduce the time overhead in mono_class_setup_supertypes ().
22549
22550 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
22551
22552         * icall.c: speedup and fix leaks in GetMethodsByName and
22553         GetPropertiesByName.
22554
22555 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22556
22557         * reflection.c: some locking fixes.
22558
22559 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22560
22561         * metadata.c: added missing break in case statement.
22562
22563 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
22564
22565         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22566         typedbyref return values. Fixes #73941.
22567
22568 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
22569
22570         * security-manager.c|h: Added demandunmanaged method and 
22571         suppressunmanagedcodesecurity class to MonoSecurityManager.
22572         Renamed aptc class to allowpartiallytrustedcallers.
22573
22574 2005-03-17  Martin Baulig  <martin@ximian.com>
22575
22576         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
22577
22578 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22579
22580         * file-io.c: disabled file async. IO using aio_*. It uses the
22581         threadpool now. Workaround for bug #73718.
22582
22583 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22584
22585         * assembly.h, mono-config.c: added code to deal with bundled configs
22586         for bundled assemblies.
22587
22588 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
22589
22590         * *.c, private.h: cleanup, removing old private.h header file.
22591
22592 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
22593
22594         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
22595         and throw_on_unmappable_char attributes.
22596
22597 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
22598
22599         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
22600         _ProcessName_internal.
22601
22602 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
22603
22604         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
22605         #73631.
22606
22607         * icall.c threads.c threads-types.h: Remove slothash icalls as they
22608         are no longer used.
22609
22610 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
22611
22612         * object.c (compute_class_bitmap): Add support for generics. Fixes
22613         #73527.
22614
22615 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22616
22617         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
22618
22619 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22620
22621         * filewatcher.c: commented out the code for windows watcher, as we don't
22622         use it (we use the managed implementation instead).
22623
22624 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22625
22626         * object-internals.h (MonoThread): Remove 'unused1' field.
22627
22628         * appdomain.c: Bump corlib version.
22629
22630         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
22631
22632         * reflection.c (mono_reflection_create_runtime_class): Remove the
22633         AssemblyBuilder.Save optimization since it causes too many problems.
22634
22635 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
22636
22637         * exception.c|h: Added mono_get_exception_reflection_type_load to
22638         create a ReflectionTypeLoadException object.
22639         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
22640         to return NULL is a InheritanceDemand fails during reflection. Updated
22641         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
22642         ReflectionTypeLoadException if an InheritanceDemand fails during 
22643         reflection. Added icall mapping for GetLinkDemandSecurity.
22644         * security-manager.c|h: Added ves_icall_System_Security_
22645         SecurityManager_GetLinkDemandSecurity internal call to return the
22646         class and methods permissions set for a LinkDemand. Removed unused
22647         fields in MonoSecurityManager.
22648
22649 2005-03-10  Martin Baulig  <martin@ximian.com>
22650
22651         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
22652         it's a generic instance.
22653
22654 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
22655
22656         * reflection.c (mono_get_object_from_blob): Applied patch from
22657         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
22658
22659         * class.c (mono_class_is_assignable_from): Another try at fixing 
22660         #73469 without breaking anything.
22661
22662 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
22663
22664         * class.c: (mono_class_is_assignable_from): Revert the last changes
22665         since they don't work with generics.
22666         
22667         * class.c (mono_class_is_assignable_from): Fix build bustage.
22668
22669         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
22670         the managed IsAssignableFrom method. Fixes #73469.
22671
22672         * reflection.c (mono_reflection_call_is_assignable_from): New helper
22673         function.
22674
22675 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
22676
22677         * object.c (mono_load_remote_field_new): Fix returning uninitialized
22678         memory when the remoting callback does not sets the out arguments.
22679         Fixes #73007.
22680
22681         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
22682         by mistake.
22683
22684         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
22685
22686         * object-internals.h (MonoStackFrame): Sync with managed object layout.
22687
22688         * appdomain.c: Bump corlib version.
22689
22690 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
22691
22692         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
22693         function.
22694
22695         * threads.c (mono_thread_attach): Detect threads which are not started
22696         by the GC pthread wrappers.
22697
22698 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
22699
22700         * icall.c: Added new icall for RNG.
22701         * rand.c|h: Added new icall to open the RNG. This allows to share a 
22702         single handle on Linux to access /dev/urandom and fix #73183.
22703
22704 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
22705
22706         * object.c: setting the new vtable in a transparent proxy object must
22707         not change the GC descriptor.
22708
22709 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22710
22711         * object.c: fixed compilation without GCJ support.
22712         * reflection.c: for runtime-created types ensure klass->has_references
22713         is correct (bug #73215).
22714
22715 2005-03-02  Martin Baulig  <martin@ximian.com>
22716
22717         * class.c (mono_class_is_assignable_from): Make this work if
22718         `oklass' is a generic instance; fixes #72831.
22719
22720 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22721
22722         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
22723         with hasthis set.
22724         
22725         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
22726
22727         * marshal.c: Reorganize native->managed marshalling code to also use
22728         the emit_marshal_... functions.
22729
22730 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22731
22732         * object.c: typed allocs have issues with bitmap sizes > 30,
22733         so check for max_set >= 30.
22734
22735 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22736
22737         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
22738         managed code. Fixes #73012.
22739
22740         * metadata.h (MonoMarshalSpec): Add elem_mult field.
22741
22742         * metadata.c reflection.c: Load/Emit elem_mult as well.
22743         
22744         * metadata.h (MonoMarshalSpec): Add comment.
22745
22746         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
22747
22748         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
22749         num_elem to -1 if not given.
22750
22751         * object-internals.h (MonoReflectionMarshal): Add has_size field.
22752
22753         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
22754         given values.
22755
22756 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
22757
22758         * null-gc.c (mono_gc_free_fixed): Was not compilable.
22759
22760 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
22761
22762         * reflection.c (encode_marshal_blob): Encode param_num field as well.
22763
22764         * object-internals.h (MonoReflectionMarshal): Add param_num field.
22765
22766 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22767
22768         * object.c: generalized the reference bitmap creation
22769         and added hooks for the new GC.
22770         * class-internals.c: removed the gc_bitmap field from MonoClass.
22771
22772 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22773
22774         * domain.c: help the compiler to produce better code
22775         in mono_jit_info_table_find ().
22776
22777 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22778
22779         * object.c: make all allocations look typed.
22780
22781 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22782
22783         * socket-io.c: load Mono.Posix if it's not loaded already
22784         (fixes bug#73033).
22785
22786 2005-02-24  Martin Baulig  <martin@ximian.com>
22787
22788         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
22789         * reflection.c (dup_type): Likewise.
22790
22791 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
22792
22793         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
22794         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
22795
22796 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22797
22798         * domain.c, threads.c, object-internals.h: make the critical thread
22799         local vars use the fast access mode (even when we're compiled in
22800         a lib). Provide accessors to be used by the jit during codegen.
22801
22802 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22803
22804         * appdomain.c: Changed hook functios behavior to include
22805         support for the reflection only assemblies. Some icalls were changed
22806         to support the mentioned assemblies too. Signatures of static methods
22807         try_assembly_resolve and real_load now have an additional parameter:
22808         refonly.
22809
22810         * assembly.c: General changes to mono_assembly_ methods to support
22811         reflection only api. Functions mono_assembly_open, mono_assembly_load,
22812         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
22813         suffix, to support an additional gbool parameter to specify whether
22814         the assembli is reflection only or not. Created some new hook functions 
22815         to add support for reflection only assemblies. Signatures of static 
22816         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
22817         have now an additional parameter: refonly.
22818
22819         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
22820         indicating whether the assembly is reflection only or not.
22821
22822         * exception.c: Add mono_get_exception_invalid_operation.
22823
22824         * icall.c: Throw an InvalidOperationException when trying to invoke
22825         a property/method/event, or trying to set/get the value of a field.
22826         Also add an icall to retrieve the ref_only flag to the
22827         MonoReflectionAssembly.
22828
22829 2005-02-23  Chris Toshok  <toshok@ximian.com>
22830
22831         Part of fix for #72827.
22832         * mono-debug.c (mono_debug_add_method): add lexical block data to
22833         the info we write.  Kind of a hack at the moment - we copy the
22834         lexical block info from the MonoDebugMethodInfo to the
22835         MonoDebugMethodJitInfo here, before writing it.
22836         (mono_debug_read_method): read the lexical block info.
22837
22838         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
22839
22840         * debug-mono-symfile.h: add lexical block support.
22841
22842         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
22843         support.
22844
22845 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
22846
22847         * loader.c (mono_lookup_pinvoke_call): Fix warning.
22848
22849         * object.c (mono_runtime_free_method): Call mono_free_method () and
22850         put the TODOs there.
22851
22852         * loader.c (mono_free_method): Free up most memory allocated for 
22853         dynamic methods.
22854
22855 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
22856
22857         * reflection.c: properly flag a Type argument to a
22858         named custom attr value (bug #72248).
22859
22860 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22861
22862         * reflection.c: reduce code duplication in named custom
22863         attribute encoding.
22864
22865 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
22866
22867         * reflection.c: properly encode custom attrs of type object
22868         (bug #72649).
22869
22870 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
22871
22872         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
22873
22874 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
22875
22876         * socket-io.c: load System.dll if it's not loaded already
22877         (bug #72850 and #70477).
22878
22879 2005-02-21  Martin Baulig  <martin@ximian.com>
22880
22881         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22882         generic instances.
22883
22884 2005-02-21  Martin Baulig  <martin@ximian.com>
22885
22886         * reflection.c (mono_image_build_metadata): We also need to
22887         "fixup" the MethodImpl table after we computed the final method
22888         indices.  Call fixup_methodimpl() to do that.
22889         (fixup_methodimpl): New private method.
22890
22891 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22892
22893         * assembly.c: special case mscorlib.dll (bug#72536),
22894         patch from Carlos Alberto Cortez.
22895
22896 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
22897
22898         * threads-types.h threads.c: Fix build bustage.
22899
22900         * threads.c: Use a union for long<->double conversions.
22901
22902         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
22903         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
22904
22905         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
22906         containing the checkpoint call with NOT_TAKEN.
22907         
22908         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
22909         checkpoint before pushing the arguments, so they won't have to be
22910         spilled to stack.
22911
22912 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22913
22914         * domain.c, assembly.c, domain-internals.h: make some data
22915         const and relocation-free.
22916
22917 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
22918
22919         * object.c, appdomain.c, class-internals.h: introduce the
22920         MonoClassRuntimeInfo structure to hold the info needed to
22921         use a class at runtime. Made mono_class_vtable() lock-free
22922         for all the appdomains.
22923
22924 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
22925
22926         * metadata-internals.h, image.c: introduce a per-image mempool to
22927         be used for memory that has the same lifetime as the image.
22928
22929 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
22930
22931         * domain.c: In mono_init_internal(), instead of selecting the first
22932         runtime version supported by an executable, get a list of all
22933         supported versions and select the one for which an mscorlib exists
22934         (since even if the runtime supports a given version, it doesn't mean
22935         that the framework for that version is installed).
22936         Modified get_runtimes_from_exe to support this behavior.
22937         In supported_runtimes, added information about additional system
22938         assembly versions.
22939         
22940         * assembly.c: Added support for more than one system assembly version
22941         per runtime version. Updated the assembly list.
22942         In mono_assembly_remap_version, removed the initial version check,
22943         since we don't know to which version we need to compare until we
22944         get the version set on which the assembly is based.
22945         Moved the code for loading corlib into the new method
22946         mono_assembly_load_corlib(), so it can be used by the initialization
22947         code.
22948         
22949         * domain-internals.h: Updated data structures and added declaration
22950         for mono_assembly_load_corlib.
22951
22952 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22953
22954         * reflection.c (resolve_object): Fix the creation of the signature in 
22955         the SignatureHelper case.
22956
22957         * assembly.c (mono_assembly_remap_version): Fix binary search.
22958         
22959 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
22960  
22961         * class.c: Added inheritance check when a method is overloaded (from a
22962         virtual method or when implementing an interface) and when a class is
22963         inherited. Added functions to set a failure for a class and to 
22964         retreive the exception from a failure.
22965         * class-internals.h: Added fields to MonoClass to keep the exception
22966         information status for inheritance (or other exceptions) to be thrown
22967         later (i.e. not at load time).
22968         * object.c: Throw the inheritance SecurityException when a type is to 
22969         be created with either class or method inheritance violations.
22970         * reflection.c|h: Fix when getting declsec from a class. Removed 
22971         unrequired code for class. Improved sanity in parameter naming.
22972         * security-manager.c|h: Added functions to check for class and method
22973         inheritance.
22974
22975 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22976
22977         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
22978         and has_finalize in dynamic types as well.
22979
22980 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
22981
22982         * culture-info-table.h : fixed currency format for en-GB (and so on).
22983
22984 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
22985
22986         * gc.c: ensure the GC handles never have 0 as a value.
22987
22988 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
22989
22990         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
22991         a pointer to a struct to unmanaged code. Fixes #72625.
22992
22993 2005-02-16  Martin Baulig  <martin@ximian.com>
22994
22995         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
22996
22997 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
22998
22999         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
23000
23001 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23002
23003         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
23004
23005         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
23006         UnmanagedFunctionPointerAttribute, use it for determining calling convention
23007         etc. Fixes #71471.
23008
23009         * reflection.c (mono_custom_attrs_get_attr): New helper function.
23010
23011         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
23012
23013 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
23014
23015         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
23016         changes to make the current context a field in MonoThread.
23017
23018 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23019
23020         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
23021         the last change.
23022         
23023         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
23024         extracted from mono_marshal_get_native_wrapper.
23025
23026         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
23027         to create wrappers around native functions.
23028
23029         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
23030         delegates for arbitrary function pointers. Fixes #71472.
23031
23032 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23033
23034         * threads.c: cleaned up the code a little.
23035
23036 2005-02-15  Martin Baulig  <martin@ximian.com>
23037
23038         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
23039         the data table.
23040
23041         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
23042         allocate larger chunks if needed.
23043
23044 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23045
23046         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
23047         in by mistake.
23048
23049 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
23050
23051         * domain.c: keep the domains in an array and ensure the domain ids
23052         are kept small, so they can be used as indexes to domain-specific data
23053         with a small memory overhead.
23054
23055 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23056
23057         * icall.c: Handle byref types in Type icalls. Fixes #72544.
23058
23059 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23060
23061         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23062
23063 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
23064
23065         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23066
23067         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23068         values.
23069
23070         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23071         
23072 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
23073
23074         * domain-internals.h: add the hashtable here.
23075
23076         * class-internals.h: Remove `info' from MonoMethod
23077
23078         * domain.c: Add a new hashtable, jit_trampoline_hash
23079
23080 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23081
23082         * object.c: don't set the value of static fields
23083         (fixes bug#72494).
23084
23085 2005-02-11  Martin Baulig  <martin@ximian.com>
23086
23087         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23088         (mono_debug_add_method): Silently ignore the method if it's too big.
23089         (mono_debug_add_type): Likewise.
23090
23091 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23092
23093         * threads.c, appdomain.c: remove #ifdefs from the code.
23094
23095 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
23096
23097         * metadata-internals.h: Added flags to MonoAssembly to cache the most
23098         common security informations. This allows us to stay in unmanaged code
23099         when doing LinkDemand and it's special cases (except for the first 
23100         time for initialization). The flags a very much used with --security.
23101         * reflection.c|h: Added code to get declarative security attributes 
23102         for LinkDemand and InheritanceDemand. This required to refactor the
23103         existing code for Demand.
23104         * security-manager.c|h: Added new method fields for the special cases
23105         of LinkDemand.
23106
23107 2005-02-10  Martin Baulig  <martin@ximian.com>
23108
23109         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23110         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23111
23112 2005-02-10  Martin Baulig  <martin@ximian.com>
23113
23114         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23115         debugging code; this is almost a complete rewrite.
23116
23117         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23118
23119 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23120
23121         * domain.c, object.h: expose mono_string_equal () and 
23122         mono_string_hash ().
23123         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23124         it's implemented in managed code.
23125
23126 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23127
23128         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23129         lo leak objects between appdomains.
23130
23131 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23132
23133         * assembly.c: old compilers compilation fix from 
23134         robertj@gmx.net (Robert Jordan).
23135
23136 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23137
23138         * class-internals.h: Little reminder for the future.
23139
23140         * debug-helpers.c: Fix up wrapper_type_names
23141
23142 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23143
23144         * image.c, metadata-internals.h: when loading an image from a file,
23145         mmap all of it and use the same codepaths as when using a
23146         in-memory image: the code is simpler and we use less memory
23147         (both writable and readonly).
23148
23149 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23150
23151         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23152         API to alloc runtime data structures that need to be tracked by the
23153         GC and contain pointers.
23154         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23155         make the code more readable and eventually use a different GC.
23156
23157 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23158
23159         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23160         for out arguments.
23161         
23162 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23163
23164         * object.c: In release_type_locks(), don't release the cctor lock
23165         if it has already been released. This fixes a crash in the
23166         thread5 test.
23167
23168 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23169
23170         * gc.c, marshal.c, icall.c: register a delegate for finalization
23171         only when the native function pointer has been allocated for it.
23172
23173 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23174
23175         * object.c: cleaned up some code, allocate objects that are
23176         pointer free with the atomic malloc variant. Allocate memory
23177         for static data from the mempool if it's pointer-free.
23178         Allocate the bounds array at the end of the array data, when needed.
23179         * object-internals.h, object.h: move a private function in a private
23180         header.
23181         * class.c: handle missing case in tracking references in fields.
23182
23183 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23184
23185         * class.c, class-internals.h: keep track if a type has
23186         reference fields in either the instance or static fields.
23187
23188 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23189
23190         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23191         and renamed to MonoRuntimeInfo. Added fields to store the expected
23192         framework assembly version. Changed mono_get_framework_version and
23193         mono_get_runtime_version for a single mono_get_runtime_info method.
23194         
23195         * assembly.c: Added method to remap system assembly versions to the
23196         current executing runtime version. Removed old mapping code.
23197         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23198         
23199         * icall.c, reflection.c: Track api changes.
23200
23201 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23202
23203         * loader.c (method_from_memberref): Improve error reporting,
23204         produce the class name instead of the typeref/typedef index. 
23205
23206 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23207
23208         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23209
23210 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23211
23212         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23213         stdcall and charset name mangling.  Reorganize the code and add
23214         some tracing stuff.
23215
23216 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23217
23218         * monodiet.c: More iters!
23219
23220         * marshal.c: Iter usage.
23221
23222         * icall.c: Iter usage.
23223
23224         * object.c: Use iters.
23225
23226         * debug-helpers.c: More iters
23227
23228 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23229
23230         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23231         under win32.
23232
23233 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23234
23235         * mono-debug-debugger.c: use iters
23236
23237         * class.c, class-internals.h: mono_class_setup_events is static
23238         now
23239
23240         * All callers: use iters
23241
23242 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23243
23244         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23245         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23246
23247 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23248
23249         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23250
23251         * marshal.h: Add prototypes for ldfld/stfld_remote.
23252
23253         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23254         this is called during startup.
23255         
23256 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23257
23258         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23259         MonoThreadsSync struct private in monitor.c. Changed the way
23260         MonoThreadsSync is allocated so it's faster and there is no
23261         need to keep track of it with a finalizer and it uses less memory.
23262         This also finally allows us to allocate mono objects as ptrfree when
23263         there are no reference fields.
23264
23265 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23266
23267         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23268         disappearing link to the GC interface and use them to simplify
23269         the gchandles code.
23270
23271 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23272
23273         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23274         stfld_remote which call mono_load/store_field_new. This allows methods
23275         calling ldfld/stfld wrappers to be AOTed.
23276
23277         * console-io.c: Include sys/filio.h under solaris.
23278         
23279         * console-io.c: Include curses.h if needed correctly.
23280
23281 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23282         
23283         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23284         method->klass as well.
23285
23286         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23287
23288         * class.c (mono_class_init): Switch on lazy initialization of 
23289         methods.
23290
23291         * class.c (mono_class_get_finalizer): Handle the case when the 
23292         finalizer is inherited.
23293
23294 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23295
23296         * console-io.c: <curses.h> is needed by term.h on solaris.
23297
23298 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23299
23300         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23301         mono_class_setup_properties where possible. Remove this ftn from
23302         the header file, and make it static.
23303
23304 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23305
23306         * loader.c: Add missing setup_... call.
23307
23308         * class.c: Add missing setup_... calls.
23309
23310         * class.c (mono_class_init): Switch on lazy initialization of 
23311         the generic vtable.
23312         
23313         * class.c (mono_class_init): Fix generics broken by the recent changes.
23314
23315         * monodiet.c (handle_type): Add missing setup_... calls.
23316
23317         * class.c: Back out garbage in previous patch.
23318         
23319         * class.c: Add missing setup_... calls.
23320
23321         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23322         mono_class_setup_methods () if possible.
23323
23324         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23325
23326         * class-internals.h (MonoCachedClassInfo): New structure.
23327
23328         * class.c: Initialize properties and events fields of MonoClass lazily.
23329
23330         * class.c: Add infrastructure for lazily initializing the methods and
23331         vtable fields of MonoClass. Not yet used.
23332
23333         * class.c (mono_class_get_finalizer): New helper function.
23334
23335         * class.c: Add infrastructure for loading some class related data from
23336         an AOT file.
23337
23338         * object.c: Add infrastructure for initializing the vtable from data
23339         in the AOT file.
23340
23341         * gc.c (run_finalize): Use mono_class_get_finalizer ().
23342
23343         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
23344         appropriate initialization function before accessing parts of the
23345         MonoClass structure.
23346
23347         * marshal.c: Fix warnings.
23348         
23349         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
23350
23351         * mono-debug-debugger.c (get_exception_message): Use 
23352         mono_class_get_method_from_name_flags ().
23353
23354 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
23355
23356         * reflection.c, appdomain.c: Replace a few manual searches that
23357         Zoltan missed. (Paolo approved this part of my initial patch).
23358
23359 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
23360
23361         * profiler.c: disable recording statistical events at report time.
23362
23363 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23364
23365         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
23366         to byteswap arrays of enum values, too (bug #72080).
23367
23368 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
23369
23370         * appdomain.c (set_domain_search_path): Allow this to be called if
23371         domain->setup is not yet set.
23372
23373         * loader.c (mono_method_get_index): New helper function.
23374
23375         * loader.c reflection.c: Use mono_method_get_index ().
23376
23377         * class.c (mono_class_get_method_from_name_flags): New helper method.
23378
23379         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
23380         this.
23381
23382         * class.c (mono_class_get_cctor): New helper method.
23383
23384         * string-icalls.c object.c class.c marshal.c reflection.c: Use
23385         mono_class_get_method () to look up methods.
23386
23387 2005-02-01  Miguel de Icaza  <miguel@novell.com>
23388
23389         * console-io.c: Fix the build, this should work on Windows.
23390
23391 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
23392
23393         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
23394         be set to null to keep things valid
23395
23396 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23397
23398         * icall.c: added Console 2.0 icalls.
23399         * Makefile.am: added console-io.[ch]
23400         * console-io.[ch]: internal calls for Console 2.0 API.
23401
23402 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23403
23404         * class.c: make sure we consider all the interfaces
23405         when calculating max_interface_id (bug found by
23406         Jeroen Frijters running ikvm).
23407
23408 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
23409
23410         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
23411         valuetype fields to null.
23412
23413         * object.c (set_value): Ditto. Fixes #71669.    
23414
23415 2005-01-31  Martin Baulig  <martin@ximian.com>
23416
23417         * metadata.c (mono_metadata_has_generic_params): New public
23418         function; checks whether something is a generic method.
23419
23420 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
23421
23422         * appdomain.c: fix infinite recursion when adding assemblies.
23423
23424 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
23425
23426         * object.c: Fix small typo to return all items for Environment.
23427         GetCommandLineArgs.
23428
23429 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23430
23431         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
23432         reflection.c: more domain and assembly-unload related fixes
23433         and memory leaks plugs.
23434
23435 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
23436
23437         * 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.
23438
23439 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
23440
23441         * loader.c (mono_method_signature): Make this method lazy
23442         (mono_get_method_from_token): Don't computate the signature here.
23443
23444         Doing this saves quite a bit of memory. I got 90 kb on starting up
23445         monodoc. It should also save some disk reads on startup.
23446
23447         * *: MonoMethod->signature might be NULL now. You *MUST* use
23448         mono_method_signature.
23449
23450 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
23451
23452         * object.c (mono_runtime_get_main_args): Return an array from the
23453         current domain here. Fixes #71938.
23454
23455 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
23456
23457         * monitor.c: formatting changes to comply with the
23458         mono coding style and remove #ifdefs from the code.
23459
23460 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23461
23462         * metadata.c, private.h: remove some unneeded data
23463         and use a more compact representation for table schemas.
23464
23465 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
23466
23467         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
23468         to get a better distribution in hash tables.
23469         * *.c: use mono_aligned_addr_hash() where appropriate.
23470         * assembly.c: make var static.
23471
23472 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
23473
23474         * domain-internals.h: Put MonoJitInfo on a diet.
23475
23476         * domain.c: Fix a warning.
23477
23478 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23479
23480         * gc.c: rework the gc handles code to reuse handles
23481         when freed.
23482
23483 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23484
23485         * domain.c: fixed long standing bug in mono_string_equal() which
23486         was brought to light with the ldstr changes.
23487
23488 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
23489
23490         * reflection.c: Remove warning by adding missing include for marshal.h
23491
23492 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23493
23494         * domain.c, object.c: change the ldstr_table to hold
23495         MonoString* as keys: makes the runtime isinterned lookup
23496         faster and simplifies memory management.
23497
23498 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
23499  
23500         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
23501         possible to add imperative security checks before calling the icall.
23502         * reflection.c: Return security attributes on the original MonoMethod
23503         (and not the wrapped one). This fix permissions on icalls.
23504
23505 2005-01-25  Dick Porter  <dick@ximian.com>
23506
23507         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
23508         the check for mktime() support actually test the mktime() return
23509         value.  "Fixes" bug 71682, though the output is still different to
23510         MS.
23511
23512 2005-01-25  Martin Baulig  <martin@ximian.com>
23513
23514         * class.c (mono_class_is_assignable_from): Make this work for
23515         generic instances.
23516
23517 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
23518
23519         * marshal.c (mono_string_utf8_to_builder)
23520         (mono_string_builder_to_utf16): We might not have ownership of the
23521         string. In thise case, we need to create a new buffer.
23522
23523         * object-internals.h (mono_stringbuilder_capacity): sb->str might
23524         be null, in which case, use the default capacity.
23525
23526 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23527
23528         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
23529         GC events to the profiler.
23530
23531 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23532
23533         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
23534         if you don't want the GC to run.
23535
23536 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
23537
23538         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
23539         start providing a GC API and keeping different implementations in
23540         their own file.
23541         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
23542
23543 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
23544
23545         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
23546         mmap rather than allocating a huge buffer.
23547         (mono_debug_close_mono_symbol_file): Free the buffer allocated
23548         above.
23549
23550 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
23551
23552         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
23553         and CheckExecutionRights.
23554         * reflection.c|h: Keep the index of the declarative security to be 
23555         used, instead of the pointer, when AOT compiler is used. Also add 
23556         class initialization when requesting demands.
23557         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
23558         CheckExecutionRights. Both properties are now FALSE by default, and
23559         unmodifiable, unless the --security option is used.
23560
23561 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23562
23563         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
23564         reflection.c: properly refcount images and assemblies, many leaks fixed.
23565
23566 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23567
23568         * threadpool.c: increase the timeout for threads in the thread pool to
23569         10s.  Fixes bug #67159.
23570
23571 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23572
23573         * class-internals.h: Sun's compiler insists on explicit
23574         signed on bit fields to handle then correctly.
23575
23576 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
23577
23578         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
23579         Make the size of the array fit only the number of invalid path
23580         chars that we have.
23581
23582         * class.c (_mono_class_get): Improve the error reporting when a
23583         class referenced is not found, to assist debugging. 
23584
23585 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
23586
23587         * threads.c: fix off-by-one error.
23588         * domain.c: free data allocated in the domain.
23589
23590 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23591
23592         * reflection.c (mono_method_body_get_object): Fill out exception info
23593         as well.
23594
23595         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
23596         structure.
23597         
23598 2005-01-19  Martin Baulig  <martin@ximian.com>
23599
23600         * loader.c (mono_get_method_constrained): Make this work again.
23601
23602 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23603
23604         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
23605         guint16 to match the managed side.
23606
23607         * reflection.c (mono_reflection_body_get_object): Fill out local
23608         variables array.
23609
23610         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
23611         as well.
23612
23613         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
23614         'local_var_sig_token'.
23615
23616 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
23617
23618         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
23619         System.Drawing.
23620
23621         * reflection.c (mono_method_body_get_object): Handle abstract and
23622         runtime methods.
23623
23624 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
23625
23626         * marshal.c, loader.c, class-internals.h, reflection.c:
23627         store the emthod data for a wrapper in an array instead of a list.
23628
23629 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
23630
23631         * marshal.c: change the code to allocate memory more
23632         conservatively for method wrappers.
23633
23634 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
23635
23636         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
23637         fields from MonoClass to the marshal info structure where they belong.
23638
23639 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23640
23641         * class.c, object.c, class-internals.h, marshal.c: rearrange
23642         some fields and tweak some types to lower memory usage.
23643
23644 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
23645
23646         * threads.c (signal_thread_state_change): Handle the case when the
23647         target thread is the current thread.
23648
23649         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
23650
23651         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
23652         emit_ptr_to_object_conv. 
23653
23654         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
23655         marshalling. Fixes #71352.
23656
23657 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23658
23659         * metadata.h, blob.h: move table enum to blob.h so it can be included
23660         in any header.
23661         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
23662         cut the size of MonoImage/MonoDynamicImage.
23663
23664 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
23665
23666         * profiler.c (mono_profiler_install_simple): Fix default arguments.
23667
23668 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
23669
23670         * reflection.c, reflection.h, icall.c: add a function to check
23671         if an attribute type is defined for a metadata object.
23672
23673 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
23674
23675         * object-internals.h: Added some needed fields from StringBuilder class.
23676         * marshal.c: Set the maxCapacity when creating a StringBuilder.
23677
23678 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
23679
23680         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
23681         threads before shutting down the runtime.
23682
23683         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
23684
23685 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23686
23687         * object-internal.h, threads.c: implement stacksize and 
23688         parameterized thread start functionality (requires
23689         matching corlib). Marked broken code for later removal.
23690
23691 2005-01-12  Martin Baulig  <martin@ximian.com>
23692
23693         * class-internals.h (MonoGenericClass): Moved the `initialized'
23694         flag to MonoDynamicGenericClass, removed `init_pending'.
23695         (MonoGenericInst): Added `is_reference' flag.
23696
23697 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
23698
23699         * reflection.c (mono_image_create_pefile): Only set the pe_offset
23700         inside the MSDOS header. Fixes #71201.
23701
23702         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
23703         gc thread.
23704         (mono_domain_finalize): Ditto.
23705
23706 2005-01-12  Martin Baulig  <martin@ximian.com>
23707
23708         * class.c (mono_get_shared_generic_class): Use the cache for
23709         non-dynamic generic classes.
23710
23711         * class-internals.h (mono_class_create_generic_2): Removed
23712         function prototype, this function is now static inside class.c.
23713
23714         * class.c (mono_class_create_generic_2): Made this static, only
23715         call it from mono_class_init() and mono_class_setup_parent().
23716         (collect_implemented_interfaces_aux): Call mono_class_init() on
23717         the interfaces we collect.
23718         (mono_class_setup_vtable): Call mono_class_init (class->parent).
23719
23720 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23721
23722         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
23723         it a real thread handle.
23724
23725         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
23726         MonoJitExceptionInfo, since each catch clause needs its own variable.
23727         
23728 2005-01-11  Dick Porter  <dick@ximian.com>
23729
23730         * image.c (mono_pe_file_open): New variant on mono_image_open()
23731         that does not set up the CLI metadata; used for FileVersionInfo so
23732         it can get the data for windows binaries too.
23733         
23734         * process.c (process_read_string_block): Don't read off the end of
23735         the StringTable block.
23736
23737         These both fix bug 70766.
23738
23739 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
23740
23741         * gc.c: set some fields to NULL at GC cleanup time.
23742         * threads.c: if we quit the main thread, call exit ().
23743
23744 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23745
23746         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
23747
23748 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
23749
23750         * threads.h, threads.c, object.c: added accessor and settor for
23751         main_thread. Handle it specially when exiting from it: wait
23752         for other foreground threads to exit.
23753
23754 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
23755
23756         * process.c, verify.c: remove some bloat.
23757
23758 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
23759
23760         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
23761         the calling convention to cdecl under win32.
23762
23763 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
23764
23765         * object.c (mono_object_get_size): New function to get the size of
23766         an object instance.
23767
23768         * profiler.c (simple_allocation): Use above.
23769
23770 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
23771
23772         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
23773         ves_icall_System_AppDomain_getRootDomain (as it's not required to
23774         get an appdomain by it's id and we can't assume the root's id is 0).
23775         * domain-internals.h: Change the function prototype to match.
23776         * icall.c: Change the icall table for AppDomain.
23777
23778 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
23779
23780         * locales.c (string_invariant_compare_char): Only compute
23781         GUnicodeTypes in the case where we need them.  Test for ordinality
23782         first and return if so.
23783
23784         From the commit:
23785
23786                 /*
23787                  * FIXME: here we must use the information from c1type and c2type
23788                  * to find out the proper collation, even on the InvariantCulture, the
23789                  * sorting is not done by computing the unicode values, but their
23790                  * actual sort order.
23791                  */
23792
23793 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23794
23795         * loader.c: for P/Invoke methods, allow the "Internal" shared
23796         library name to refer to the calling process symbol namespace.
23797
23798 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
23799
23800         * Makefile.am: Add the security manager to the build.
23801         * security-manager.c|h: New. Initialization of the security manager.
23802
23803 2005-01-07  Dick Porter  <dick@ximian.com>
23804
23805         * threads.c: 
23806         * monitor.c: Update thread state during Monitor and WaitHandle
23807         waits.  Fixes bug 71031.
23808
23809 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
23810
23811         * reflection.c (property_encode_signature): Correctly handle when the
23812         property has no methods.
23813
23814 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
23815
23816         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
23817         
23818         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
23819         fields from mb, not rmb. Fixes #71017.
23820
23821         * marshal.c (emit_ptr_to_str_conv): Add support for 
23822         ByValTStr -> string conversion. Fixes #71015.
23823
23824         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
23825
23826         * mempool.c (mono_mempool_contains_addr): New helper function.
23827
23828 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
23829
23830         * metadata.c (mono_metadata_compute_size): Fix size calculation of
23831         HasSematics encoded fields.
23832         
23833         * metadata.c (mono_type_to_unmanaged): Improve error message for 
23834         invalid string marshalling.
23835
23836         * metadata.c: Fix warnings.
23837         
23838 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23839
23840         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
23841         profiler support.
23842
23843 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
23844
23845         * domain.c object.c domain-internals.h: Revert part of r38077 since the
23846         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
23847         tests.
23848
23849 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
23850
23851         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
23852         so methods containing these can be AOTed.
23853
23854 2005-01-03  Martin Baulig  <martin@ximian.com>
23855
23856         * loader.c (find_method): Removed the hack for generic instances.
23857         (method_from_memberref): If our parent is a generic instance, pass
23858         its generic type definition to find_method() and then inflate the
23859         method.
23860         (mono_get_method_constrained): Pass the generic type definition to
23861         find_method() and inflate the method later.
23862
23863         * class-internals.h (MonoStats): Added `generic_class_count'.
23864
23865         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
23866         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
23867
23868         * reflection.c (mono_custom_attrs_from_params): Don't ignore
23869         generic type definitions.
23870
23871 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
23872
23873         * loader.c icall.c: Fix warnings.
23874
23875 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
23876
23877         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
23878         blittable types. Fixes #70864.
23879
23880 2004-12-29  Martin Baulig  <martin@ximian.com>
23881
23882         * icall.c
23883         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
23884
23885         * reflection.c (mono_method_get_object): Create a
23886         "System.Reflection.MonoGenericMethod" for inflated methods; don't
23887         call mono_get_inflated_method().
23888
23889         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
23890
23891 2004-12-27  Martin Baulig  <martin@ximian.com>
23892
23893         * class-internals.h (MonoMethod): Added `is_inflated' flag.
23894         (MonoMethodInflated): Added `inflated' field.
23895
23896         * class.c (mono_class_inflate_generic_method): Don't really
23897         inflate the method here; just set the `is_inflated' flag in the
23898         MonoMethod.
23899         (mono_class_get_inflated_method): Actually inflate the method here
23900         if it's not already inflated; we use the MonoMethodInflated's new
23901         `inflated' field as a cache.
23902
23903 2004-12-26  Martin Baulig  <martin@ximian.com>
23904
23905         * class.c
23906         (inflate_generic_class): Moved some code out of inflate_generic_type().
23907         (mono_class_inflate_generic_method): If we're already inflated,
23908         inflate the context and use the declaring method; ie. make sure
23909         the declaring method of an inflated method is always the generic
23910         method definition.
23911         (mono_class_create_from_typedef): Create
23912         `class->generic_container->context->gclass'.
23913
23914 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
23915
23916         * metadata-internals.h, marshal.c, reflection.c: More
23917         MonoGHashTable->GHashTable.
23918
23919         * domain-internals.h, class.c: Change MonoGHashTable's into
23920         GHashTables for some cases where no gc stuff is used
23921
23922         All users: update apis
23923
23924 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
23925
23926         * metadata.c (builtin_types): Make this `const'. Makes this get
23927         put into the shareable section.
23928         (mono_metadata_init): Casts to make gcc happy.
23929
23930 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
23931
23932         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
23933
23934 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
23935
23936         * icall.c: Added an internal call to retrieve the position and length
23937         of assembly-level declarative security attributes (RequestMinimum, 
23938         RequestOptional and RequestRefuse). This is used by the Assembly class
23939         to re-create the corresponding permission sets.
23940
23941 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
23942
23943         * marshal.c: fix the stelemref wrapper to be type correct
23944         (and faster).
23945
23946 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
23947
23948         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
23949         to do key & 0x7fffffff. Hashtable already does this. It just
23950         results in longer code.
23951
23952 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
23953
23954         * appdomain.c: Bump corlib version.
23955         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
23956         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
23957         * reflection.c|h: Add functions to get declarative security infos
23958         (blob position and length) for assemblies, classes and methods.
23959
23960 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
23961
23962         * reflection.c: sort the constant table (bug #70693).
23963
23964 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
23965
23966         * object-internals.h, threads.c, domain.c: add accessors for
23967         the MonoThread and MonoDomain tls keys.
23968
23969 2004-12-18  Martin Baulig  <martin@ximian.com>
23970
23971         * class.c (inflate_generic_type): If we're inflating a generic
23972         instance, set `ngclass->context->container = context->container';
23973         ie. the container we inflated into.
23974
23975         * metadata.c (mono_metadata_parse_generic_param): Reflect above
23976         inflate_generic_type() changes.
23977
23978 2004-12-17  Martin Baulig  <martin@ximian.com>
23979
23980         * class-internals.h
23981         (MonoGenericClass): Replaced `MonoType *generic_type' with
23982         `MonoClass *generic_class'.  Removed `dynamic_info'; if
23983         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
23984         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
23985
23986 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
23987
23988         * exception.c (mono_exception_from_token): New helper function.
23989
23990 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
23991
23992         * assembly.c (mono_assembly_load_with_partial_name): Call 
23993         mono_assembly_loaded before invoking the preload hooks. Fixes
23994         #70564.
23995
23996         * object-internals.h (MonoThread): Change culture_info and 
23997         ui_culture_info into an array.
23998
23999         * threads.c: Cache culture info objects from more than one appdomain.
24000
24001         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
24002         current UI culture.
24003
24004 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
24005
24006         * threads.h threads.c appdomain.c: Clear the culture_info field of
24007         all threads during unloading if they point to an object in the dying
24008         appdomain.
24009
24010 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
24011
24012         * culture-info.h (TextInfoEntry): New struct
24013         * object-internals.h: sync with managed
24014         * locales.c: fill the `text_info_data' field
24015         * culture-info-tables.h: update
24016
24017 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24018
24019         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
24020         collector.
24021
24022 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
24023
24024         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
24025         (ves_icall_ModuleBuilder_getMethodToken): Ditto
24026
24027 2004-12-12  Martin Baulig  <martin@ximian.com>
24028
24029         * mono-debug-debugger.c (write_type): If we're an enum and the
24030         builtin types have already been initialized, call mono_class_init().
24031
24032 2004-12-11  Martin Baulig  <martin@ximian.com>
24033
24034         * metadata.c (mono_metadata_load_generic_params): Added
24035         `MonoGenericContainer *parent_container' argument; automatically
24036         compute `container->is_method'; pass the correct owner to
24037         get_constraints().      
24038
24039         * reflection.c (compare_genericparam): Sort the GenericParam table
24040         according to increasing owners. 
24041
24042 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
24043
24044         * profiler.c: allow disabling the default profiler.
24045
24046 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
24047
24048         * decimal.c, icall.c: allow disabling System.Decimal support.
24049
24050 2004-12-09  Marek Safar <marek.safar@seznam.cz>
24051
24052         * reflection.c: Add support for null attribute arguments.
24053
24054 2004-12-09  Martin Baulig  <martin@ximian.com>
24055
24056         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
24057         names to get rid of compiler warnings.
24058
24059 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24060
24061         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
24062         mono_marshal_load_type_info (). Fixes #69625.
24063         (mono_marshal_get_ptr_to_struct): Likewise.
24064
24065 2004-12-08  Martin Baulig  <martin@ximian.com>
24066
24067         * mono-debug.h: Bumped version number to 47.
24068
24069         * mono-debug-debugger.c
24070         (mono_debugger_event_handler, mono_debugger_event): Take two
24071         guint64 arguments insteed of a gpointer and a guint32.  
24072
24073 2004-12-08  Martin Baulig  <martin@ximian.com>
24074
24075         * debug-mono-symfile.h
24076         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24077         `address' to `native_offset'.
24078
24079 2004-12-08  Martin Baulig  <martin@ximian.com>
24080
24081         * class.c (mono_class_create_from_typespec): Only inflate if we
24082         either have `context->gclass' or `context->gmethod'.
24083
24084 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24085
24086         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24087
24088         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24089
24090         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24091
24092         * reflection.c (mono_assembly_get_object): Remove the workaround put
24093         in for the release.
24094         
24095         * appdomain.c: Use the corlib_internal field from MonoAssembly.
24096
24097         * appdomain.c: Bump corlib version.
24098
24099         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24100         be visible in other appdomains.
24101
24102 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24103
24104         * threads.c: Interlocked inc and dec for longs were messed up,
24105         use a KISS based impl for this. Fixes 70234
24106
24107 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24108
24109         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24110
24111 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24112
24113         * icall.c: fix to follow policy not to allow struct
24114         arguments in icalls.
24115
24116 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24117
24118         * process.c: make the patch that handles spaces in file paths work
24119         on mono/windows too.
24120
24121 2004-12-06  Martin Baulig  <martin@ximian.com>
24122
24123         * class.c (mono_class_create_generic): Call
24124         mono_class_setup_supertypes() if we're dynamic.
24125         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24126
24127 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24128
24129         * object-internals.h: Add new fields to MonoThread.
24130
24131         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24132
24133         * icall.c threads-types.h threads.c: Add new icalls.
24134
24135         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24136
24137         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24138         managed side.
24139
24140         * appdomain.c: Bump corlib version.
24141
24142         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24143         internal assemblies. Fixes #69181.
24144
24145 2004-12-05  Martin Baulig  <martin@ximian.com>
24146
24147         * class.c (mono_class_inflate_generic_signature): Make this a
24148         no-op if `context' is NULL or we don't have any type parameters;
24149         also copy `sentinelpos'.        
24150
24151 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24152
24153         * image.c: Add unbox_wrapper_cache.
24154
24155         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24156
24157         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24158         function generator.
24159         
24160         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24161         Fixes #70173.
24162
24163         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24164         
24165 2004-12-04  Martin Baulig  <martin@ximian.com>
24166
24167         * loader.c (mono_method_get_signature_full): New public function;
24168         like mono_method_get_signature(), but with an additional
24169         `MonoGenericContext *' argument.
24170
24171         * class.c (mono_class_inflate_generic_signature): Formerly known
24172         as inflate_generic_signature(); make this public.
24173
24174 2004-12-04  Martin Baulig  <martin@ximian.com>
24175
24176         * metadata.c
24177         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24178         instead of a `MonoGenericContainer *'.  
24179         (mono_metadata_parse_array_full): Likewise.
24180         (mono_metadata_parse_signature_full): Likewise.
24181         (mono_metadata_parse_method_signature_full): Likewise.
24182         (mono_metadata_parse_generic_inst): Likewise.
24183         (mono_metadata_parse_generic_param): Likewise.
24184         (mono_metadata_parse_mh_full): Likewise.
24185         (mono_type_create_from_typespec_full): Likewise.
24186
24187 2004-12-03  Martin Baulig  <martin@ximian.com>
24188
24189         * class-internals.h (MonoGenericContainer): Replaced the
24190         `MonoGenericContext * pointer with a `MonoGenericContext'
24191         structure and made it the first element.
24192
24193 2004-12-03  Martin Baulig  <martin@ximian.com>
24194
24195         * class.c
24196         (inflate_generic_type): Set the `context->container' when creating
24197         a new MonoGenericContext.
24198         (mono_class_inflate_generic_method): Likewise.
24199         (mono_class_create_from_typespec): Just use `context->container'
24200         to get the container.
24201
24202         * loader.c (method_from_methodspec): Set `context->parent' from
24203         `context->container' - and if that's a method container, use its
24204         parent.  Also set the `context->container' when creating a new
24205         MonoGenericContext.
24206         (mono_get_method_from_token): Use just `context->container' to get
24207         the container.
24208
24209         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24210         `gclass->context->container'.
24211
24212         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24213         the `context->container' when creating a new MonoGenericContext.
24214
24215 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24216
24217         * reflection.c (compare_genericparam): Sort params with identical
24218         owner by their number. Fixes gen-111 on sparc.
24219
24220 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24221
24222         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24223         around the domain changes.
24224
24225         * appdomain.c (mono_domain_unload): Handle the case when the thread
24226         calling Unload is itself being aborted during unloading. Fixes #70022.
24227
24228         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24229
24230         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24231         checkpoint_func as an icall so it gets a wrapper.
24232         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24233         in the cross-appdomain wrappers too.
24234
24235         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24236
24237         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24238
24239         * reflection.c: Fix some memory leaks.
24240         
24241 2004-12-02  Martin Baulig  <martin@ximian.com>
24242
24243         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24244
24245         * metadata.c (generic_class_cache): New static hashtable.
24246         (mono_metadata_lookup_generic_class): New public method.
24247
24248 2004-12-02  Martin Baulig  <martin@ximian.com>
24249
24250         * class.c (mono_class_create_from_typedef): Call
24251         mono_class_setup_parent() and mono_class_create_mono_type() before
24252         parsing the interfaces.
24253
24254 2004-12-02  Martin Baulig  <martin@ximian.com>
24255
24256         * metadata.c (generic_inst_cache): New static hashtable.
24257         (mono_metadata_lookup_generic_inst): New public function.
24258         (mono_metadata_inflate_generic_inst): New public function.
24259         (mono_metadata_parse_generic_inst): New public function.
24260         (do_mono_metadata_parse_generic_class): Use the new
24261         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24262         since this'll also use the cache.
24263
24264         * reflection.c (mono_reflection_bind_generic_method_parameters):
24265         Use mono_metadata_lookup_generic_inst() to use the new cache.
24266
24267         * class.c (inflate_mono_type): Use
24268         mono_metadata_inflate_generic_inst() to inflate a generic
24269         instance; this'll also use the new cache.
24270
24271         * loader.c (method_from_methodspec): Use
24272         mono_metadata_parse_generic_inst() and
24273         mono_metadata_inflate_generic_inst() rather than parsing it
24274         manually, so we can use the new cache.
24275
24276 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24277
24278         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24279         the wait times out.
24280
24281 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24282
24283         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24284         iter->args based on whether parameters are passed in registers (i.e.
24285         MONO_ARCH_REGPARMS is defined)
24286
24287 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24288
24289         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24290         the exception message. Fixes #70070.
24291         (method_from_methodspec): Fix warnings.
24292
24293 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24294
24295         * process.c: (complete_path) return the path quoted
24296
24297 2004-12-01  Martin Baulig  <martin@ximian.com>
24298
24299         * class-internals.h (MonoGenericInst): New structure.
24300         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24301         `is_open' with `MonoGenericInst *inst'.
24302         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24303         `is_open' with `MonoGenericInst *inst'.
24304
24305 2004-11-30  Martin Baulig  <martin@ximian.com>
24306
24307         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24308
24309         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24310         to `generic_class_cache'.
24311
24312         * metadata.c
24313         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24314         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24315         (mono_generic_inst_is_valuetype): Renamed to
24316         mono_generic_class_is_valuetype().
24317
24318         * class-internals.h
24319         (MonoGenericInst): Renamed to MonoGenericClass.
24320         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24321         (MonoClass): Renamed `generic_inst' to `generic_class'.
24322         (MonoGenericContext): Renamed `ginst' to `gclass'.
24323
24324         * object-internals.h
24325         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24326
24327         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24328         mono_reflection_generic_class_initialize().
24329
24330         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24331         now known as "System.Reflection.MonoGenericClass".
24332         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24333
24334 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
24335
24336         * class-internals.h: Added a flag field to MonoClass to cache the
24337         declarative security attributes actions associated with the class.
24338         * domain-internals.h: Added booleans to MonoJitInfo to cache the
24339         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
24340         applicable to the JITted method.
24341         * reflection.c|h: Added functions to extract (as flags) which security
24342         actions are available (declaratively) for a method, class or assembly.
24343         * metadata.c|h: Added functions to search the declarative security
24344         table in the metadata.
24345         
24346 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
24347
24348         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
24349         EXPORTEDTYPES are already in the class name cache, so there is no
24350         need to add extra code here to look at them. Just removes a bit of
24351         cruft.
24352
24353         (ves_icall_System_Environment_get_TickCount): No need for #if
24354         WINDOWS. We already have the code in io-layer.
24355
24356 2004-11-28  Martin Baulig  <martin@ximian.com>
24357
24358         * loader.c
24359         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
24360         Fixes gen-112.cs.
24361
24362 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
24363
24364         * assembly.c (do_mono_assembly_open): Instead of having a
24365         conditional WITH_BUNDLE, incorporate support for bundles here, by
24366         having a global `bundles' variable holding a pointer to the actual
24367         bundles. 
24368
24369         (mono_register_bundled_assemblies): New API call used by the
24370         bundle code. 
24371
24372         See mkbundle.1 for details.
24373         
24374 2004-11-27  Martin Baulig  <martin@ximian.com>
24375
24376         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
24377         the vtable for generic methods.
24378
24379 2004-11-26  Martin Baulig  <martin@ximian.com>
24380
24381         * metadata.c
24382         (mono_metadata_generic_method_hash): New public function.
24383         (mono_metadata_generic_method_equal): Likewise.
24384
24385         * class-internals.h
24386         (MonoGenericContainer): Added `GHashTable *method_hash'.
24387
24388         * reflection.c (ReflectionMethodBuilder): Added
24389         `MonoGenericContainer *generic_container'.
24390         (reflection_methodbuilder_to_mono_method): Don't create a new
24391         MonoGenericContainer each time we're called.
24392         (mono_reflection_bind_generic_method_parameters): Use
24393         `container->method_hash' to cache the results so we don't create a
24394         different method if we're called several times with the same
24395         arguments.
24396
24397         * loader.c (method_from_methodspec): Use the new
24398         `container->method_hash' here, too.
24399
24400 2004-11-26  Martin Baulig  <martin@ximian.com>
24401
24402         * class.c (inflate_generic_signature): Correctly compute
24403         `res->has_type_parameters'.
24404         (mono_class_vtable): Use the `has_type_parameters' flag to
24405         determine whether we're a generic method.
24406
24407         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
24408
24409 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
24410
24411         * object.c (mono_runtime_run_main): Fix a small memory leak.
24412
24413 2004-11-25  Martin Baulig  <martin@ximian.com>
24414
24415         * class.c (set_generic_param_owner): Fixed the loop.
24416
24417 2004-11-25  Martin Baulig  <martin@ximian.com>
24418
24419         * object.c (mono_class_vtable): Don't create any JIT wrappers for
24420         generic methods.
24421
24422 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
24423
24424         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
24425         names. Fixes #69787.
24426
24427 2004-11-24  Martin Baulig  <martin@ximian.com>
24428
24429         * class.c (mono_class_create_generic_2): If we don't have a
24430         `ginst->parent', inflate `gklass->parent' to get our parent.
24431
24432 2004-11-24  Martin Baulig  <martin@ximian.com>
24433
24434         * reflection.c (compare_genericparam): Correctly sort the
24435         GenericParam table; fixes #69779.
24436
24437 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
24438
24439         * reflection.c: When writing a PE file, don't create a huge
24440         buffer in memory. Just write the arrays we have to the file.
24441         This reduces memory usage.
24442
24443         * metadata-internals.h: MonoDynamicStream pefile is no longer used
24444         globally.
24445
24446 2004-11-17  Martin Baulig  <martin@ximian.com>
24447
24448         * class.c (mono_class_init): Don't setup `class->parent' for
24449         dynamic instances; moved this to mono_class_generic_2().
24450         (mono_class_create_generic): Also set `klass->inited' for dynamic
24451         generic instances.
24452         (mono_class_create_generic_2): Don't do anything for dynamic
24453         generic instances.  Set `klass->parent' here and also call
24454         mono_class_setup_parent() here. 
24455
24456         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
24457         `MonoType *parent' argument; set `ginst->parent' before calling
24458         mono_class_create_generic_2(), so we set the correct parent.
24459
24460 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
24461
24462         * reflection.c: allow getting attributes from ModuleBuilder
24463         (used by ikvm).
24464
24465 2004-11-17  Martin Baulig  <martin@ximian.com>
24466
24467         * class.c (mono_class_create_from_typedef): If a type parameter is
24468         inherited from an outer class, set its owner to that class.
24469
24470 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
24471
24472         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
24473           for (int*) written size. This fixes bug #69592.
24474
24475 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
24476
24477         * icall.c: Added IsAuthenticodePresnet internal call.
24478         * image.c|h: New function that check a MonoImage for an Authenticode
24479         signature in the certificate PE data directory.
24480         * security.c|h: New internal call to ask the runtime if an 
24481         Authenticode signature seems referenced in the PE header.
24482
24483 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
24484
24485         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
24486
24487         * reflection.c (mono_image_create_pefile): Free the assembly streams
24488         after writing out the assembly file.
24489
24490         * object.c (mono_runtime_run_main): Fix small memory leak.
24491
24492         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
24493         property access modifiers. Fixes #69389.
24494
24495 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
24496
24497         * domain.c, object.c, object-internals.h, domain-internals.h,
24498         object.h, marshal.c: keep dynamic code info per domain.
24499
24500 2004-11-15  Martin Baulig  <martin@ximian.com>
24501
24502         * class.c (mono_type_get_name_recurse): Put type arguments in
24503         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
24504         see bug #68387.
24505
24506 2004-11-15  Martin Baulig  <martin@ximian.com>
24507
24508         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
24509         (mono_class_setup_vtable): When computing `the_cname' for a
24510         generic instance, don't include the namespace since we'd otherwise
24511         add it twice.
24512
24513 2004-11-15  Martin Baulig  <martin@ximian.com>
24514
24515         * class.c (mono_class_create_generic): Changed return type to void.
24516         (mono_class_create_generic_2): New public function; setup
24517         `class->method', `class->field' and `class->interfaces' here
24518         instead of in mono_class_init().
24519
24520         * class.h (mono_class_create_generic): Moved to class-internals.h.
24521
24522 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
24523
24524         * reflection.c (mono_image_create_pefile): take a file HANDLE.
24525         rather than writing to memory, write to this file. Right now,
24526         we are just writting into a buffer, and copying that. However
24527         we can avoid the buffer later.
24528
24529         (mono_dynamic_stream_reset): new function
24530
24531         * icall.c, object-internals.h: update for the above.
24532
24533 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
24534
24535         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
24536         have been using gc'd memory. First it is slower, unlikely
24537         the comment in the source code said, secondly, it increases
24538         our footprint to do it in the gc.
24539
24540         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
24541         the method so that it does not have to copy to managed code.
24542
24543 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
24544
24545         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
24546
24547 2004-11-12  Martin Baulig  <martin@localhost>
24548
24549         * reflection.c (mono_image_create_token): Allow generic method
24550         definitions here, since they may appear in an `.override'; see
24551         gen-98/gen-99 for an example.
24552
24553 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
24554
24555         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
24556         #69365.
24557
24558         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
24559         descriptive.
24560
24561 2004-11-11  Martin Baulig  <martin@ximian.com>
24562
24563         * class.c (mono_class_setup_vtable): In an explicit interface
24564         implementation, the method name now includes the arity.
24565
24566 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
24567
24568         * object.c (mono_array_full_copy): Fix warning.
24569
24570 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
24571
24572         * appdomain.c: Removed look_for_method_by_name(). Use the new method
24573         mono_class_get_method_from_name() instead.
24574         
24575         * class-internals.h: Added two new types of wrappers. 
24576         Added MonoRemotingTarget enum. Added new trampoline function type, which
24577         takes an additional MonoRemotingTarget value as parameter, so it is
24578         possible to request a trampoline for a specific target.
24579         
24580         * class.c: Added new mono_class_get_method_from_name() method.
24581         
24582         * class.h: In MonoRemoteClass, we can have now to vtables, one for
24583         general remoting sinks and one specific for cross domain calls.
24584         
24585         * debug-helpers.c: Added new wrapper names.
24586         
24587         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
24588         of a remote class.
24589         
24590         * image.c: Porperly delete value objects form the remoting invoke hashtable.
24591         
24592         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
24593         with several other methods (mono_marshal_get_xappdomain_dispatch,
24594         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
24595         and others) can generate a fast remoting wrapper for cross domain calls.
24596         More information can be found in docs/remoting.
24597         Other changes: Removed mono_find_method_by_name, and used
24598         mono_class_get_method_from_name instead.
24599         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
24600         is stored in the remoting invoke hashtable.
24601         
24602         * marshal.h: published the new method for getting the xdomain wrapper,
24603         and also added a method for getting the adequate wrapper for a given
24604         method and target.
24605         
24606         * object-internals.h, object.c: Added a couple of methods for capying and
24607         cloning arrays.
24608         Modified mono_install_remoting_trampoline, which takes the new remoting
24609         trampoline that has a remoting target as parameter.
24610         mono_class_proxy_vtable now also takes a remoting target as parameter, and
24611         will return the most suitable vtable for the target.
24612         Added mono_remote_class_vtable, which returns the vtable of a remote class
24613         (which can be the normal remoting vtable or the xdomain vtable).
24614         
24615         * threads.c: the xdomain invoke and dispatch wrappers must also be
24616         protected against interruptions.
24617
24618 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24619
24620         * icall.c: use memmove in BlockCopyInternal when the source and
24621         destination arrays are the same.
24622
24623 2004-11-09  Martin Baulig  <martin@ximian.com>
24624
24625         * class-internals.h (MonoGenericContainer): Removed `method' and
24626         `signature', replaced them with `is_method' and `is_signature'
24627         flags.  Added `context'.
24628
24629         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
24630         instead of a `MonoGenericContainer *'.
24631
24632         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
24633         for dynamic type parameters.
24634         (mono_metadata_load_generic_params): Setup `container->context'.
24635
24636         * reflection.c (mono_reflection_setup_generic_class): Setup
24637         `tb->generic_container->context'.
24638         (do_mono_reflection_bind_generic_parameters): Use
24639         mono_class_inflate_generic_type() to correctly inflate types,
24640         rather than using our own hack just for MONO_TYPE_VAR.
24641
24642 2004-11-09  Martin Baulig  <martin@ximian.com>
24643
24644         * class.c (mono_class_inflate_generic_method): Small fix; don't
24645         crash here.
24646
24647         * icall.c
24648         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
24649         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
24650         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
24651         (ves_icall_Type_BindGenericParameters): Likewise.
24652         (ves_icall_Type_get_IsGenericInstance): Likewise.
24653         (ves_icall_Type_GetGenericParameterPosition): Likewise.
24654         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
24655         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
24656         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
24657
24658 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
24659
24660         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
24661         assembly versions and public key tokens. Fixes #69113.
24662
24663 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
24664
24665         * metadata.c: fix bug introduced with the type cache changes
24666         on 2004-11-06.
24667
24668 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
24669
24670         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
24671         the MonoClass pointer instead of the token in exception clauses.
24672         * reflection.c: updates for the above and make the code not depend
24673         on the structure of MonoExceptionClause.
24674
24675 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
24676
24677         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24678         Add support for dynamic assemblies. Fixes #69114.
24679
24680         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
24681
24682 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
24683
24684         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
24685         since most only those methods use it. the code member of
24686         MonoMethodPInvoke was dead, so that can be removed too. Also,
24687         remove inline_count (again, not used), and move slot so that it
24688         can share bits with some other flags. This saves 8 bytes in the
24689         structure and gives us about 50 kb back for mcs helloworld.cs
24690
24691         * *.[ch]: Do naming changes for the above.
24692
24693         * loader.c (mono_method_get_header): Lazily init the header
24694         on first access.
24695         (mono_get_method_from_token): don't init the header here
24696         (mono_free_method): the header may never be allocated
24697
24698         Overall, this saves 150 kb of unmanaged allocations
24699         for mcs helloworld.cs. That accounts for 10% of the unmanaged
24700         memory at runtime.
24701         
24702         * loader.c, loader.h (mono_method_get_header): new accessor.
24703
24704         * *.[ch]: use the above method. Prepares us to lazily load
24705         the header.
24706
24707         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
24708         three warnings, which are actual bugs (see 69206).
24709
24710         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
24711         unused. Saves a cool 4 bytes / method.
24712
24713 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
24714
24715         * metadata.c (builtin_types): Add types for System.Object here.
24716         (mono_metadata_parse_type_full): Cache MonoType*'s that are
24717         for a class or valuetype from klass->this_arg or klass->byval_arg.
24718
24719         On mcs for a hello world, this gets us down from 21836 MonoType's
24720         to 14560.
24721
24722         (mono_metadata_free_type): Account for the above change.
24723
24724 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
24725
24726         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
24727         exception instead of asserting if name is null.
24728         (ves_icall_System_AppDomain_GetData): Ditto.
24729
24730 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
24731
24732         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
24733         EnumBuilder.
24734
24735         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
24736         Return NULL when the domain does not have entry_assembly set.
24737
24738         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
24739         Add a 'resource_modules' argument.
24740         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
24741
24742         * reflection.c (mono_reflection_create_runtime_class): Move setting
24743         of wastypebuilder here, so mono_get_type_object () returns a MonoType
24744         for enums too.
24745
24746         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
24747         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
24748         Throw an ArgumentNullException if 'ptr' is null.
24749
24750         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
24751         assemblies here. Fixes #69020.
24752
24753 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
24754
24755         * reflection.c (build_compressed_metadata): Fix the previous patch for
24756         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
24757         the stack.
24758
24759 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
24760
24761         * assembly.c (mono_assembly_names_equal): Allow a match if one of
24762         the cultures is false. Fixes #69090.
24763
24764         * reflection.c (build_compressed_metadata): Fix invalid memory read 
24765         detected by valgrind.
24766         
24767         * reflection.c (mono_reflection_get_type): Avoid triggering a 
24768         TypeResolve multiple times for the same type. Fixes #65577.
24769
24770 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
24771
24772         * marshal.c: Avoid using ldftn to call managed functions. It is
24773         much slower than just a call.
24774
24775         * reflection.c (mono_module_get_object): free the basename we
24776         allocate here from glib.
24777         
24778         * reflection.c (ensure_runtime_vtable): make sure to free
24779         overrides.  Also, we were allocating an array of MonoMethod not an
24780         array of MonoMethod*.
24781
24782         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
24783
24784         * image.c (mono_image_close): free image->guid here.
24785
24786 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
24787
24788         * reflection.c: Fix some spec conformance issues with the PE file
24789         structures so mcs compiled apps run on the Net 2.0 beta.
24790
24791 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
24792
24793         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
24794         Implement this. Fixes #67264.
24795
24796         * debug-helpers.h debug-helpers.c marshal.c: Move 
24797         mono_find_method_by_name to debug-helpers.c.
24798
24799 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
24800
24801         * object.c (mono_release_type_locks): type_initialization_hash is
24802         a GHashTable.
24803
24804         * reflection.c object.c object-internals.h: Fix warnings.
24805
24806         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
24807         without accessors. Fixes #61561.
24808
24809         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
24810         application base from the root domain if not set. Fixes #65641.
24811         (mono_runtime_init): Fix warning.
24812
24813 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24814
24815         * appdomain.c: call mono_thread_pool_init.
24816         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
24817         of worker threads based on the number of CPUs and the environment
24818         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
24819         for non-windows (windows) systems.
24820
24821 2004-10-27  Chris Toshok  <toshok@ximian.com>
24822
24823         * mono-debug-debugger.c (write_class): don't call mono_class_init
24824         here, as even with the check for (!klass->init_pending), we get
24825         into a situation where we're hitting cycles in class
24826         initialization.  Fixes #68816.
24827
24828 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
24829
24830         * image.c: Avoid overwriting values in the loaded_images_hash when an
24831         assembly is loaded multiple times. Fixes #61152.
24832
24833         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
24834         so multiple satellite assemblies for the same name can be loaded.
24835         Fixes #68259.
24836
24837         * mono_domain_assembly_preload: Actually return the loaded assembly, 
24838         not NULL.
24839
24840         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
24841         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
24842
24843         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
24844         pending finalizers are not invoked after the appdomain has been 
24845         unloaded. Fixes #67862.
24846
24847 2004-10-22  Martin Baulig  <martin@ximian.com>
24848
24849         * mono-debug-debugger.c
24850         (mono_debugger_runtime_invoke): Don't box valuetypes.
24851
24852 2004-10-22  Chris Toshok  <toshok@ximian.com>
24853
24854         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
24855         don't hide private methods.
24856
24857 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
24858
24859         * icall.c: Allows the runtime to "share" (when known) the public key
24860         token of an assembly. This avoid the need to recalculate the token 
24861         (from the public key) in managed code.
24862
24863 2004-10-21  Chris Toshok  <toshok@ximian.com>
24864
24865         * debug-helpers.c (append_class_name): argh, revert last patch.
24866         
24867 2004-10-21  Chris Toshok  <toshok@ximian.com>
24868
24869         * debug-helpers.c (append_class_name): use '+' as the delimiter,
24870         not '/', so that it matches what the debugger uses to look up
24871         methods.
24872
24873 2004-10-21  Martin Baulig  <martin@ximian.com>
24874
24875         * mono-debug-debugger.c (mono_debugger_throw_exception): New
24876         public method; this is called each time an exception is thrown and
24877         allows the debugger to use exception catch points.
24878
24879 2004-10-21  Martin Baulig  <martin@ximian.com>
24880
24881         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
24882         the stack pointer and the exception object in some struct and pass
24883         that to the debugger.
24884
24885 2004-10-21  Chris Toshok  <toshok@ximian.com>
24886
24887         * mono-debug-debugger.c (do_write_class): add instance/static
24888         event support.  We don't expose "raise" or "other" yet.
24889         (event_is_static): new method.
24890
24891 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
24892
24893         * mono-debug-debugger.c
24894         (mono_debugger_handle_exception): Remove
24895         bogus return value for fussy compilers.
24896
24897 2004-10-20  Martin Baulig  <martin@ximian.com>
24898
24899         * mono-debug-debugger.c
24900         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
24901         (mono_debugger_handled_exception): Likewise.
24902
24903 2004-10-20  Martin Baulig  <martin@ximian.com>
24904
24905         * mono-debug-debugger.h (MonoDebuggerEvent): Added
24906         MONO_DEBUGGER_EVENT_EXCEPTION.
24907
24908         * mono-debug-debugger.c (mono_debugger_handle_exception): New
24909         public function to send the debugger a notification for an
24910         exception and inform it about a catch/finally clause.
24911
24912 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
24913
24914         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
24915         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
24916         fix 2.95 build. 
24917
24918         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
24919
24920 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
24921
24922         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
24923         marshalled as [In,Out]. Fixes #58325.
24924
24925 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
24926
24927         * reflection.c (mono_method_body_get_object): Implement some fields.
24928
24929 2004-10-12  Martin Baulig  <martin@ximian.com>
24930
24931         * reflection.c (mono_reflection_bind_generic_parameters): Small
24932         fix, correctly retrieve our parent from a generic instance.
24933
24934 2004-10-12  Martin Baulig  <martin@ximian.com>
24935
24936         * metadata.c (mono_metadata_generic_param_equal): We always have
24937         an owner.
24938
24939         * class.c
24940         (mono_class_from_generic_parameter): We need to have an owner.
24941         (my_mono_class_from_generic_parameter): Likewise.
24942
24943         * reflection.c (mono_reflection_setup_generic_class): Renamed to
24944         mono_reflection_create_generic_class() and added a new
24945         mono_reflection_setup_generic_class().  
24946         (mono_reflection_initialize_generic_param): If we're a nested
24947         generic type and inherited from the containing class, set our
24948         owner to the outer class.
24949
24950 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
24951
24952         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
24953
24954         * reflection.c (mono_method_body_get_object): New function to create
24955         a MethodBody object.
24956
24957         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
24958
24959 2004-10-11  Martin Baulig  <martin@ximian.com>
24960
24961         * metadata.c (_mono_metadata_type_equal): Renamed to
24962         do_mono_metadata_type_equal() and made static.
24963
24964 2004-10-11  Martin Baulig  <martin@ximian.com>
24965
24966         * appdomain.c: Bump corlib version number to 28.
24967
24968 2004-10-10  Martin Baulig  <martin@ximian.com>
24969
24970         * class-internals.h
24971         (MonoGenericInst): Added `MonoGenericContainer *container'.
24972         (MonoGenericMethod): Likewise.
24973         (MonoGenericContext): Likewise.
24974         (MonoGenericParam): Added `MonoGenericContainer *owner'.
24975
24976         * metadata.c
24977         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
24978         (do_mono_metadata_parse_generic_inst): Likewise.
24979         (mono_metadata_parse_type_full): New public method.  This is the actual
24980         mono_metadata_parse_type() implementation - with an additional
24981         `MonoGenericContainer *' argument.
24982         (mono_metadata_parse_array_full): Likewise.
24983         (mono_metadata_parse_signature_full): Likewise.
24984         (mono_metadata_parse_method_signature_full): Likewise.
24985         (mono_metadata_parse_mh_full): Likewise.
24986         (mono_type_create_from_typespec): Likewise.
24987         (mono_metadata_interfaces_from_typedef_full): New public method;
24988         this is similar to the other _full() methods, but we take a
24989         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
24990         (mono_metadata_parse_generic_param): Take an additional
24991         `MonoGenericContainer *' argument and lookup the MonoGenericParam
24992         from that container.
24993         (mono_metadata_generic_param_equal): New static method to compare
24994         two type parameters.
24995         (_mono_metadata_type_equal): New static method; takes an
24996         additional `gboolean signature_only' argument - if true, we don't
24997         compare the owners of generic parameters.
24998         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
24999         with a TRUE argument - do a signature-only comparision.
25000
25001         * loader.c: Use the new _full() methods and pass the
25002         MonoGenericContainer to them.
25003
25004         * object-internals.h (MonoReflectionTypeBuilder): Added
25005         `MonoGenericContainer *generic_container' field.
25006         (MonoReflectionMethodBuilder): Likewise.
25007
25008 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
25009
25010         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
25011         case initial images of dynamic assemblies.
25012
25013         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
25014
25015         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
25016
25017         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
25018         length of event->other array.
25019         (typebuilder_setup_events): Ditto.
25020
25021         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
25022         'assembly_by_name' and add an 'assemblies' list.
25023
25024         * assembly.h assembly.c: Add a new search hook for determining whenever
25025         an assembly is already loaded. Use this instead of searching in the
25026         loaded_assemblies list.
25027
25028         * domain.c appdomain.c: Implement the new search hook so loaded 
25029         assemblies are now scoped by appdomain. Fixes #67727.
25030
25031 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
25032
25033         * threads.c (mono_thread_attach): Initialize synch_lock field so
25034         mono_thread_detach works again.
25035
25036         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
25037         'lib' too. Fixes #63130.
25038
25039 2004-10-06  Jackson Harper  <jackson@ximian.com>
25040
25041         * culture-info-tables.h: regenerated.
25042
25043 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
25044
25045         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
25046         implemented by other interfaces in the result. Fixes #65764.
25047         
25048         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25049         Handle unloadable modules without crashing.
25050
25051         * image.c (load_modules): Revert the previous patch since modules must
25052         have a fixed index inside the array.
25053         
25054         * image.c (load_modules): Don't include native modules in the modules
25055         array.
25056
25057 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
25058
25059         * reflection.h: Add param_defaults field.
25060
25061         * reflection.c: Add support for parameter defaults in dynamic methods.
25062         Fixes #64595.
25063
25064         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25065         an empty string when a type has no namespace. Fixes #64230.
25066
25067 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
25068
25069         * tabledefs.h: Added "internal" security actions to support non-CAS
25070         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
25071         Note: they do not seems to be used anymore in 2.0 (new metadata format)
25072
25073 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
25074
25075         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25076         constructor of abstract class. Fixes #61689.
25077
25078 2004-10-04  Martin Baulig  <martin@ximian.com>
25079
25080         * class-internals.h (MonoGenericContainer): New type.
25081         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25082         `MonoGenericContainer *generic_container'.
25083         (MonoClass): Replaced `gen_params' and `num_gen_params' with
25084         `MonoGenericContainer *generic_container'.
25085
25086         * metadata.c (mono_metadata_load_generic_params): Return a
25087         `MonoGenericContainer *' instead of a `MonoGenericParam *';
25088         removed the `num' argument.
25089
25090 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
25091
25092         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25093         for dynamic images.
25094
25095         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25096         machine fields.
25097
25098         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25099
25100         * reflection.c: Save pe_kind and machine values into the generated
25101         image file.
25102
25103         * appdomain.c: Bump corlib version number.
25104
25105         * object-internals.h: Reorganize layout of LocalBuilder.
25106
25107         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25108         New helper function.
25109
25110         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25111         created MonoType for dynamic types. Fixes #66180.
25112
25113 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25114
25115         * threadpool.c: the ares hashtable needs a critical section around it.
25116         this prevents some nasty segfaults
25117
25118 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25119
25120         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25121         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25122         bug 67324).
25123         
25124 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25125
25126         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25127         
25128 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25129
25130         * image.c: Always canonicalize image file names, to avoid loading
25131         the same assembly twice when referenced using a relative path.
25132
25133 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25134
25135         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25136
25137         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25138
25139         * marshal.c: Fix warnings.
25140
25141 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25142
25143         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25144         attempting to marshal the delegate_trampoline as the method_addr.
25145         This patch has a static hashtable of marshalled delegates so that 
25146         we can map delegate_trampoline addresses back to delegates.  This
25147         allows a delegate passed to managed code to be passed back into native
25148         code.  Fixes #67039
25149
25150 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25151
25152         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25153
25154         * reflection.c (method_encode_code): Align method headers properly.
25155         Fixes #66025.
25156
25157 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25158
25159         * marshal.c: In the runtime invoke wrapper, reset the abort
25160         exception if it is cached. This avoids the automatic rethrowal of 
25161         the exception after the catch of the wrapper. Also check for pending
25162         interruptions before calling the managed method. This is done using
25163         the new method emit_thread_force_interrupt_checkpoint, since the
25164         normal checkpoint method is ignored when running the invoke wrapper.
25165         * object.c: If the abort exception is rethrown, set the abort_exc
25166         field of the thread, so it will be rethrown aftere every catch.
25167         * threadpool.c: Only run an interruption checkpoint if what has been
25168         requested is a stop of the thread (aborts will be ignored).
25169         * threads.c: By default, a thread will now never be interrumped while
25170         running the runtime invoke wrapper (this ensures that runtime_invoke
25171         will always return to the caller if an exception pointer is provided).
25172         There is a new special method mono_thread_force_interruption_checkpoint()
25173         to force an interruption checkpoint even if running a protected
25174         wrapper, which is used by the same runtime invoke wrapper to do a check
25175         at a safe point.
25176
25177 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25178
25179         * object.c, object-internals.h: Implemented mono_release_type_locks,
25180         which releases the cctor locks held by a thread.
25181         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25182         by a thread. Added mono_thread_exit() method to be used to safely stop
25183         a thread.
25184
25185 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25186
25187         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25188         Move null check before dereference.  Avoid indexing beyond the end
25189         of the 'modules' array.
25190
25191 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25192
25193         * metadata-internals.h (MonoImage): Add module_count field.
25194         * image.c (load_modules): Set image->module_count.
25195         (mono_image_load_file_for_image): Use image->module_count.
25196         * reflection.c (mono_image_load_module): Append to image->modules array 
25197         of dynamic assembly.
25198         (mono_module_get_object): Fix loop to actually increment index.
25199         Use image->module_count.
25200         * assembly.c (mono_assembly_load_references): Use image->module_count.
25201         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25202         Likewise.
25203
25204 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25205
25206         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25207         Avoid assert on generic types.
25208
25209 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25210
25211         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25212
25213         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25214
25215         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25216         function to convert a MarshalSpec structure to its managed counterpart.
25217
25218         * reflection.c: Fix warnings.
25219         
25220         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25221         field.
25222
25223         * icall.c (mono_create_icall_signature): Fix build.
25224
25225 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25226
25227         * icall.c: Add MakePointType icall.
25228
25229         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25230         warnings.
25231
25232 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25233
25234         * threadpool.c: reuse allocated slots in the queue.
25235
25236 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25237
25238         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25239
25240         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25241
25242         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25243         previous change.
25244
25245         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25246         ThrowOnUnmappableChar.
25247
25248         * icall.c (ves_icall_Type_GetPacking): New icall.
25249
25250 2004-09-24  Martin Baulig  <martin@ximian.com>
25251
25252         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25253
25254 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25255
25256         * appdomain.c:
25257         (mono_domain_set): allow setting a domain that is being unloaded.
25258         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25259         being unloaded.
25260
25261 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25262
25263         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25264         the GetCustomAttributes icall.
25265
25266 2004-09-23  Martin Baulig  <martin@ximian.com>
25267
25268         * object-internals.h (MonoReflectionGenericParam): Replaced
25269         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25270         with `guint32 attrs'.
25271
25272 2004-09-23  Martin Baulig  <martin@ximian.com>
25273
25274         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25275
25276 2004-09-23  Martin Baulig  <martin@ximian.com>
25277
25278         * object-internals.h (GenericParameterAttributes): New enum.
25279
25280 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25281
25282         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25283         
25284         * class.c (init_events): Fill out event->other field.
25285
25286         * class.c: Fix warnings.
25287
25288         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25289
25290 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25291
25292         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25293         walk which doesn't supply the IL offset.
25294
25295 2004-09-22  Martin Baulig  <martin@ximian.com>
25296
25297         * reflection.c (mono_reflection_setup_internal_class): If we're
25298         System.ValueType, System.Object or System.Enum, set
25299         `klass->instance_size' and create the vtable.
25300         (mono_reflection_create_internal_class): If we're an enum type,
25301         get the base class from our current corlib.
25302
25303 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25304
25305         * reflection.h (MonoResolveTokenError): New type.
25306
25307         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25308         icall.
25309
25310         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25311
25312 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25313
25314         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25315         Support also calling constructors, but only for already allocated objects.
25316
25317 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25318
25319         * reflection.c (type_get_qualified_name): If the klass is null
25320         return the typename to avoid a NullRefEx.
25321         (encode_cattr_value): Get the qualified name of the boxed type,
25322         not the underlying enumtype.  Fixes #62984.
25323
25324 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25325
25326         * marshal.c: Fix problems with previous checkin.
25327
25328 2004-09-21    <vargaz@freemail.hu>
25329
25330         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25331         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25332
25333         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25334
25335 2004-09-21  Geoff Norton <gnorton@customerdna.com>
25336
25337         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
25338         should only return a type for pointers, arrays, and passbyref types.
25339         Fixes bug #63841.
25340
25341 2004-09-21  Martin Baulig  <martin@ximian.com>
25342
25343         * domain.c (mono_debugger_check_runtime_version): New public
25344         function.
25345
25346         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
25347
25348 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
25349
25350         * reflection.c: Added missing sort to the declarative security 
25351         attributes table. MS implementation stops seeing the attributes if the
25352         token number regress in the table (as shown by ildasm and permview).
25353
25354 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
25355
25356         * object-internals.h (MonoReflectionModule): Add 'token' field.
25357         
25358         * reflection.c (mono_reflection_get_token): Add support for Module
25359         and Assembly.
25360         (mono_module_get_object): Set 'token' field.
25361         (mono_module_file_get_object): Set 'token' field.
25362
25363         * icall.c: Add new Assembly and Module icalls.
25364
25365         * appdomain.c: Bump corlib version.
25366
25367 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
25368
25369         * loader.h loader.c class.h class.c: Add helper functions for obtaining
25370         tokens of metadata objects.
25371
25372         * reflection.h reflection.c (mono_reflection_get_token): New function
25373         to obtain the token of a metadata object.
25374
25375         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
25376
25377 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
25378
25379         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
25380         
25381         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
25382
25383 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
25384
25385         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
25386         * object-internals.h: Added 3 MonoArray* members to MonoReflection
25387         AssemblyBuilder to access the permissions set in the class lib.
25388         * reflection.c: Added security attributes encoding step in 
25389         mono_image_build_metadata.
25390         * tabledefs.h: Added new security actions defined in 2.0:
25391         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
25392
25393 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25394
25395         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
25396         macro parameter.
25397
25398 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25399  
25400         * locales.c: nullify the ICU_collator member of CompareInfo when it is
25401           finalized. There where random SIGSEVs at program termination, when
25402           an object being finalized was trying to do a string comparison and
25403           the current culture was already finalized.
25404  
25405 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25406
25407         * threads.c: call thread_cleanup before finishing the thread if we get
25408         there.
25409
25410 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
25411
25412         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
25413         assemblies from the parent. Fixes #65665.
25414
25415 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
25416
25417         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
25418         modifiers.
25419
25420 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
25421
25422         * reflection.h: add prototype for mono_get_dbnull_object
25423         * reflection.c: add prototypes for get_default_param_value_blobs 
25424         and mono_get_object_from_blob for fussier compilers
25425
25426 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
25427  
25428         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
25429         false deadlock checks in class initialization.
25430  
25431 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
25432
25433         * image.c (mono_image_addref): Fix comment.
25434
25435         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
25436         possible.
25437
25438 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
25439
25440         * reflection.c (mono_param_get_objects): Modified to return
25441         ParameterInfo.DefaultValue object.
25442
25443         (get_default_param_value_blobs):
25444         (mono_get_object_from_blob):
25445         (mono_get_dbnull_object): New helper routines. 
25446
25447         * object.c (mono_get_constant_value_from_blob): New helper routine
25448         carved out from get_default_field_value ()
25449
25450         * object-internals.h (mono_get_constant_value_from_blob): Added
25451         function declaration.
25452
25453 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
25454
25455         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
25456         referenced assemblies. Fixes #62135.
25457
25458         * exception.h exception.c (mono_get_exception_file_not_found2): New
25459         helper function.
25460
25461 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
25462
25463         * class.h class.c: Add mono_type_get_underlying_type ().
25464
25465 2004-09-09  Geoff Norton <gnorton@customerndna.com>
25466
25467         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
25468         Fix GetTypes() to support dynamically created assemblies.
25469
25470 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
25471
25472         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
25473         
25474         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
25475         previous patch.
25476
25477         * reflection.h reflection.c loader.c: Allow dynamic construction of
25478         pinvoke methods. Fixes #65571.
25479         
25480         * reflection.c (mono_reflection_get_type): Revert previous change since
25481         it causes regressions.
25482
25483 2004-09-08  Martin Baulig  <martin@ximian.com>
25484
25485         * class.c (class_compute_field_layout): Don't call
25486         mono_class_layout_fields() for open generic instances.
25487
25488 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
25489         * threads.c appdomain.c: fix typo in GC macro
25490
25491 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25492
25493         * threads.c: don't call mono_thread_detach() in start_wrapper(),
25494         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
25495
25496 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
25497
25498         * image.c (mono_image_close): Applied patch from 
25499         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
25500         assembly is loaded multiple times from data.
25501         
25502         * image.c (mono_image_open): Fix warning.
25503
25504 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25505
25506         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
25507         once. Fixes #58334.
25508         
25509         * reflection.c (mono_reflection_create_runtime_class): Initialize
25510         klass->nested_classes. Fixes #61224.
25511
25512 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25513
25514         * threads.c: sched_yield() on exit, to allow threads to quit.
25515
25516 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25517
25518         * object.c (mono_unhandled_exception): Remove leftover debug code.
25519
25520 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
25521
25522         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
25523
25524 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25525
25526         * marshal.c (emit_marshal_array): Really null terminate string arrays.
25527         
25528         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
25529
25530 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25531
25532         * marshal.c (emit_marshal_array): Null terminate string arrays.
25533         
25534         * marshal.c (raise_auto_layout_exception): Fix warning.
25535
25536         * reflection.c (mono_param_get_objects): Initialize the default value
25537         with DBNull.Value, not null. Fixes #62123.
25538
25539 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
25540
25541         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
25542         throw an exception with a cute explanation.
25543
25544 2004-09-06  Dick Porter  <dick@ximian.com>
25545
25546         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
25547         Close the new process's thread handle, as we don't use it.  The
25548         handle stays around forever otherwise.
25549
25550 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25551
25552         * object.c (arith_overflow): Fix warning.
25553
25554         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
25555         calling conventions in method refs. Fixes #65352.
25556
25557         * reflection.c: Fix warnings.
25558
25559 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25560
25561         * icall.c: Add a new icall for Array.Clear
25562
25563 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25564
25565         * object.c: When allocating an array, we have to throw
25566         an overflow exception if any of the lengths are < 0.
25567
25568 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25569
25570         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
25571         properly. Also move implementation of string array marshalling to 
25572         managed code. Fixes #42316.
25573
25574 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25575
25576         * assembly.c: provide more information when loading an assembly fails.
25577
25578 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25579
25580         * filewatcher.c: don't expect the development fam package to be
25581         installed.
25582
25583 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
25584
25585         * marshal.c: Make a copy of the signature cookie since it will be
25586         freed by the caller.
25587         
25588         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
25589
25590         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
25591
25592         * metadata.c (mono_metadata_free_marshal_spec): New function to free
25593         marshal specs.
25594
25595         * marshal.c: More refactoring.
25596         
25597         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
25598         smaller functions.
25599
25600 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
25601
25602         * object.c: In mono_message_invoke, fill the output parameter array after
25603           calling the managed method (it was done before the call). This fixes
25604           bug #59299.
25605
25606 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25607
25608         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
25609         as well.
25610
25611 2004-09-02  Martin Baulig  <martin@ximian.com>
25612
25613         * class.c (mono_class_instance_size): Don't allow generic type
25614         definitions or open generic instances.
25615         (mono_class_array_element_size): If we're a value type, call
25616         mono_class_instance_size() on the original class.
25617
25618         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
25619         handle generic instances.
25620
25621         * mono-debug-debugger.c (write_type): Handle generic instances
25622         like classes.
25623
25624 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25625
25626         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
25627         the allocation request fails. Fixes #65089.
25628
25629         * object.c (mono_runtime_free_method): Do not call mono_free_method.
25630         
25631         * object.c (mono_runtime_free_method): New function to free a dynamic
25632         method.
25633
25634         * marshal.c (mono_delegate_free_ftnptr): New function to free the
25635         delegate trampoline.
25636
25637         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
25638         with hasthis as dynamic,
25639
25640         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
25641
25642         * domain.c (mono_jit_info_table_remove): New function to remove an
25643         entry from the jit info table.
25644
25645         * class-internals.h (MonoMethod): Add 'dynamic' field.
25646
25647         * loader.c: Fix warnings.
25648
25649 2004-09-01  Martin Baulig  <martin@ximian.com>
25650
25651         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
25652         instead of mono_debugger_lock() because the latter one is a no-op
25653         unless running in the debugger.
25654
25655 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25656
25657         * class.c (class_compute_field_layout): Classes with auto-layout or
25658         reference fields are not blittable.
25659         
25660 2004-09-01  Dick Porter  <dick@ximian.com>
25661
25662         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
25663         mono_image_get_filename() to get the assembly location.
25664
25665         * icall.c:
25666         * metadata.h: Fix compile warnings
25667
25668 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25669
25670         * class.c (class_compute_field_layout): System.Object is blittable.
25671
25672         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
25673         as in/out. Fixes #59909.
25674
25675 2004-09-01  Martin Baulig  <martin@ximian.com>
25676
25677         * metadata.h (MONO_TYPE_ISREFERENCE): Call
25678         mono_metadata_generic_inst_is_valuetype() if we're a generic
25679         instance to check whether our underlying type is a reference type.
25680
25681 2004-09-01  Martin Baulig  <martin@ximian.com>
25682
25683         * metadata.c (mono_type_size): If we're a generic instance, call
25684         mono_class_value_size() for value types.
25685
25686 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
25687
25688         * marshal.c: Implement more custom marshalling functionality. Fixes
25689         #64915.
25690
25691 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25692
25693         * mono-debug.c, debug-mono-symfile.c: add some locking love.
25694
25695 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
25696
25697         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
25698
25699         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
25700
25701         * icall.c: Fix some warnings.
25702
25703         * threads.c (abort_appdomain_thread): Fix unref errors.
25704         (mono_thread_current): Fix THREAD_DEBUG define.
25705
25706 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
25707
25708         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
25709
25710         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
25711
25712 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
25713
25714         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
25715         string arrays.
25716
25717 2004-08-28  Martin Baulig  <martin@ximian.com>
25718
25719         * metadata.c
25720         (mono_metadata_generic_inst_is_valuetype): New public function.
25721
25722         * metadata.h (MONO_TYPE_ISSTRUCT): Call
25723         mono_metadata_generic_inst_is_valuetype() if we're a generic
25724         instance to check whether our underlying type is a valuetype.
25725
25726 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
25727
25728         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
25729         #63768.
25730
25731 2004-08-25  Martin Baulig  <martin@ximian.com>
25732
25733         * loader.c (mono_get_method_from_token): Abstract methods can also
25734         be generic and thus have type parameters.
25735
25736         * metadata-internals.h
25737         (MonoDynamicImage): Added `GPtrArray *gen_params'.
25738
25739         * reflection.c (mono_image_get_generic_param_info): Don't create a
25740         metadata row, just add an entry to the `gen_params' array.
25741         (build_compressed_metadata): Sort the `gen_params' array and then
25742         actually create the metadata.
25743
25744 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25745
25746         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
25747
25748 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
25749
25750         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
25751
25752 2004-08-24  Martin Baulig  <martin@ximian.com>
25753
25754         * class.cs (mono_class_is_subclass_of): Like an interface, a
25755         generic instance also derives from System.Object.
25756
25757 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
25758
25759         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
25760         custom modifiers to be in any order. Fixes #61990.
25761
25762 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
25763
25764         * object.c: Register mono_object_new_fast icall.
25765         
25766         * object.c (mono_class_get_allocation_ftn): Return to calling
25767         mono_object_new_fast, since it seems faster to compute the object 
25768         size in unmanaged code than passing it as a parameter.
25769
25770         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
25771
25772         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
25773         this function with Boehm as the oom handler, so we don't have to check
25774         the result of GC_malloc.
25775
25776         * object.c: Remove checks for oom.
25777
25778         * object.h object.c (mono_class_get_allocation_ftn): New function to
25779         return the icall which can be used to allocate an instance of a given
25780         class. 
25781
25782         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
25783
25784         * class-internals.h: Add 'enabled' field.
25785
25786 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
25787
25788         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
25789
25790 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
25791         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
25792         value 0x0010.
25793
25794 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
25795
25796         * appdomain.c: use the Tls function for appdomain too,
25797         at Zoltan's request. Actually return in mono_context_get
25798
25799         * appdomain.c, profiler.c, threads.c: use __thread
25800
25801 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
25802
25803         * appdomain.c threads.c: Call GC_CreateThread on windows.
25804
25805         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
25806         multiple libraries since this don't work on windows.
25807
25808 2004-08-18  Martin Baulig  <martin@ximian.com>
25809
25810         * class-internals.h
25811         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
25812         MonoMethodHeader.
25813
25814         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
25815         MonoMethodNormal since we also need it for abstract and interface
25816         methods.
25817
25818         * reflection.c
25819         (build_compressed_metadata): Sort the GenericParam table.
25820         (mono_image_create_token): Added `gboolean create_methodspec'
25821         argument; this is false when generating a MethodImpl token.
25822         (reflection_methodbuilder_to_mono_method): Abstract and interface
25823         methods may also have generic parameters.
25824
25825 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
25826
25827         * appdomain.c: thread local alloc
25828
25829 2004-08-17  Martin Baulig  <martin@ximian.com>
25830
25831         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
25832
25833         * icall.c
25834         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
25835         argument.
25836
25837         * class.c (mono_type_get_full_name): New public function.
25838         (mono_type_get_name): Don't include the type arguments.
25839
25840 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
25841
25842         * Makefile.am: Build static versions of libmetadata and libmonoruntime
25843         for inclusion into the mono executable.
25844
25845 2004-08-16  Martin Baulig  <martin@ximian.com>
25846
25847         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
25848         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
25849
25850 2004-08-14  Martin Baulig  <martin@ximian.com>
25851
25852         * class.c (dup_type): Also copy the `byref' field.
25853
25854 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
25855
25856         * reflection.c (create_dynamic_mono_image): Revert the last change 
25857         since it breaks bootstrap.
25858
25859 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
25860
25861         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
25862
25863         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
25864         not free them with g_free.
25865
25866 2004-08-11  Martin Baulig  <martin@ximian.com>
25867
25868         * reflection.c (mono_reflection_setup_internal_class): Also call
25869         mono_class_setup_mono_type() if we already have a `tb->type.type'.
25870
25871 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
25872
25873         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
25874         called during default (first) AppDomain creation. Keep track of
25875         Evidence when loading assemblies.
25876
25877 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
25878
25879         * opcodes.c, opcodes.h: reduce runtime relocations.
25880
25881 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
25882
25883         * culture-info.h, locales.c: fixes and chages to sue the new
25884         optimized format of the locale data.
25885         * culture-info-tables.h: regenerated.
25886
25887 2004-08-06  Geoff Norton <gnorton@customerdna.com>
25888         
25889         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
25890
25891 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
25892
25893         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
25894         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
25895         * domain-internals.h: icall declaration.
25896         * icall.c: icall registration.
25897         * object-internals.h: New fields in MonoAssembly for CAS.
25898
25899 2004-08-05  Duncan Mak  <duncan@ximian.com>
25900
25901         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
25902         CEE_LDELEM_ANY.
25903
25904 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
25905
25906         * reflection.c: fix to deal with object[] arrays in custom ctors
25907         (bug #62550).
25908
25909 2004-08-05  Martin Baulig  <martin@ximian.com>
25910
25911         * class.c (mono_class_array_element_size): Added support for
25912         generic instances and correctly handle "recursive" types.
25913
25914 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
25915
25916         * assembly.c: Fix warnings.
25917
25918 2004-08-04  Martin Baulig  <martin@ximian.com>
25919
25920         * class.c
25921         (mono_type_get_name_recurse): Added `gboolean include_arity'
25922         argument specifying whether or not we should include the generic
25923         arity in the type name.
25924         (_mono_type_get_name): New static function.
25925         (mono_class_setup_vtable): If we're a generic instance, don't
25926         include the generic arity in the names of explicit method
25927         implementations.        
25928
25929 2004-08-03  Martin Baulig  <martin@ximian.com>
25930
25931         * class.c (mono_type_get_name_recurse): Enclose the generic type
25932         arguments in `<', '>'.
25933
25934 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25935
25936         * gc.c: make GC warning messages use the trace API, they are just
25937         noise to most of the users.
25938
25939 2004-08-03  Martin Baulig  <martin@ximian.com>
25940
25941         * debug-mono-symfile.c (read_string): Correctly read the string.
25942
25943 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
25944
25945         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
25946         
25947         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
25948         icalls.
25949         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
25950
25951 2004-07-30  Martin Baulig  <martin@ximian.com>
25952
25953         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
25954         Reflect latest symbol writer changes.   
25955
25956 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
25957
25958         * object.c: always create an object if null is passed
25959         to Invoke() where a valuetype is expected.
25960
25961 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
25962
25963         * marshal.c (mono_marshal_init): make managed
25964         signatures match native ones better for 64bits.
25965
25966 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25967
25968         * appdomain.c: hack to build correctly the private bin path on windows.
25969         Fixes bug #61991.
25970
25971 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
25972
25973         * assembly.c: Load mscorlib from the correct framework directory
25974           (mono/<version>/mscorlib.dll).
25975         * appdomain.h: Added prototypes for new functions.
25976         * internals.h: Added some prototypes.
25977         * domain.c: When initializing the runtime, get from the executable and
25978           the configuration files the runtime version that the app supports.
25979           Added support methods for reading app.exe.config. Added list of versions
25980           supported by the JIT. Added two new methods: mono_init_from_assembly,
25981           which initializes the runtime and determines the required version from
25982           the provided exe file, and mono_init_version, which initializes
25983           the runtime using the provided version.
25984         * icall.c: Get machine.config from version-specific directory.
25985         * reflection.c: When generating an image, embed the version number
25986           of the current runtime.
25987
25988 2004-07-28  Dick Porter  <dick@ximian.com>
25989
25990         * socket-io.c
25991         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
25992         returned sockaddr size before creating the remote address object.
25993         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
25994         61608.
25995
25996 2004-07-28  Dick Porter  <dick@ximian.com>
25997
25998         * locales.c (string_invariant_compare_char): Fix invariant char
25999         compares between upper and lower cases.  Fixes bug 61458.
26000
26001 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
26002         
26003         * marshal.c: actually cache stelem.ref wrappers.
26004         
26005 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
26006
26007         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
26008         sections and remove the mono_cli_rva_map () function.
26009
26010 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26011
26012         * debug-mono-symfile.c: fix one more endianess issue, from a patch
26013         by Geoff Norton (<gnorton@customerdna.com>).
26014
26015 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26016
26017         * class.c: fix class loads for pointer types (typeof(int) !=
26018         typeof(int*)).
26019
26020 2004-07-27  Martin Baulig  <martin@ximian.com>
26021
26022         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
26023         reading the debugging information from an external ".mdb" file.
26024
26025 2004-07-24  Martin Baulig  <martin@ximian.com>
26026
26027         * reflection.c (mono_image_get_type_info): Only write a class
26028         layout entry if we actually have a size or a packing size.
26029
26030 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26031
26032         * reflection.c (type_get_fully_qualified_name): 
26033         insert cast to get type checking of ?: with non-gcc compilers
26034
26035 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26036
26037         * rand.c: use g_getenv for both lookups of
26038         MONO_EGD_SOCKET
26039
26040 2004-07-17  Martin Baulig  <martin@ximian.com>
26041
26042         * reflection.c (mono_reflection_bind_generic_method_parameters):
26043         Set `gmethod->reflection_info'.
26044
26045 2004-07-17  Martin Baulig  <martin@ximian.com>
26046
26047         * class.c (mono_class_create_from_typedef): Insert the newly
26048         created class into the hash table before computing the interfaces
26049         since we could be called recursively.
26050
26051 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
26052
26053         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
26054         function to implement stelem.ref in managed code
26055         * class-internals.h, debug-helpers.c: a new wrapper type
26056         for the above.
26057
26058 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26059
26060         * gc.c: allow GC handles to work even when no GC is compiled in.
26061         Fix part of bug #61134 (GetAddrOfPinnedObject).
26062
26063 2004-07-13  Peter Williams  <peter@newton.cx>
26064  
26065         * process.c (complete_path): Make sure we don't attempt to execute
26066         directories.
26067  
26068 2004-07-12  Geoff Norton <gnorton@customerdna.com>
26069
26070         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
26071           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
26072           and will add/subtract the hour if needed
26073
26074 2004-07-12  Martin Baulig  <martin@ximian.com>
26075
26076         * reflection.c (mono_field_get_object): If we have
26077         `field->generic_info', take the attributes from
26078         `field->generic_info->generic_type'.    
26079
26080 2004-07-12  Martin Baulig  <martin@ximian.com>
26081
26082         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26083         This function must be called before initializing the runtime.
26084         (mono_debug_init_1): New function; call this after initializing
26085         the runtime, but before loading the assembly.  It tells the
26086         debugger to load corlib and the builtin types.
26087
26088         * mono-debug-debugger.c: Did some larger changes in the debugging
26089         code; support recursive class declarations, make sure we actually
26090         add all classes.
26091
26092 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26093
26094         * debug-helpers.c: undo my previous patch and fixed the real issue in
26095         ../mini/exceptions-x86.c
26096
26097 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26098
26099         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26100         when no HOME env. variable was set and a NullRef was thrown in a .cctor
26101         called from other .cctors.
26102
26103 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26104
26105         * loader.c: Removed the mono_loader_wine_init hack now that we are
26106         doing a managed version of Windows.Forms.
26107
26108 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26109
26110         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26111         threadpool.c, threads.c: remove static data from rootset.
26112
26113 2004-07-09  Dick Porter  <dick@ximian.com>
26114
26115         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26116         Don't do any more processing if the matched length was 0.  It was
26117         increasing the size of the string before.  Fixes bug 61167.
26118
26119 2004-07-09  Dick Porter  <dick@ximian.com>
26120
26121         * socket-io.h:
26122         * socket-io.c
26123         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26124         Add support for SO_PEERCRED if its available.
26125
26126 2004-07-09  Peter Bartok <pbartok@novell.com>
26127         * loader.c: winelib.exe.so error message is now only displayed if
26128         MONO_DEBUG is set. To help us avoid questions when people are trying
26129         out the new Managed.Windows.Forms.
26130
26131 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26132
26133         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26134         for isinst and castclass wrappers.
26135
26136         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26137         to libmetadata from the JIT, so they could be used by the marshalling
26138         code and the interpreter.
26139
26140         * marshal.c: Register marshalling related JIT icalls here instead of
26141         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26142         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26143
26144         * metadata.h: Remove unneeded marshalling conversions.
26145
26146         * opcodes.c: Update for new opcodes.
26147         
26148 2004-07-08  Martin Baulig  <martin@ximian.com>
26149
26150         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26151         (mono_debug_get_domain_data): Make this function static.
26152
26153 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26154
26155         * gc.c, object.h: add nice GC handle API for embedders.
26156
26157 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26158
26159         * reflection.c: more changes for the new api
26160
26161         * object.c: When we reflect on a field w/ a constant value, it
26162         will not have a memory location, so we must access metadata. Also,
26163         allow easier reading of strings so that we can read them from
26164         the constant data.
26165
26166         * class.c (mono_class_layout_fields): no need for literal fields here.
26167
26168         * class-internals.h: api changes for const fields
26169
26170         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26171
26172 2004-07-06  Martin Baulig  <martin@ximian.com>
26173
26174         * mono-debug.h: Increment version number to 44.
26175
26176         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26177         now a gpointer, rewrote this whole method.
26178
26179         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26180         function.  Add information about the wrapper in a new "misc table".
26181
26182         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26183         for the new misc table.
26184
26185 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26186
26187         * metadata-internals.h image.c: Add a cache for helper signatures.
26188
26189         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26190
26191 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26192
26193         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26194         delegates from a delegate. Fixes #61033.
26195         
26196         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26197         marshalling of stringbuilder arrays. Fixes #59900.
26198
26199 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26200
26201         * icall.c: Add EnumBuilder:setup_enum_type icall.
26202
26203 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26204
26205         * icall.c: Added a new icall for the property version of
26206         OffsetOfStringData.
26207
26208 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26209
26210         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26211         it has a constant size across platforms.
26212
26213         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26214         stack trace.
26215
26216 2004-06-29  Martin Baulig  <martin@ximian.com>
26217
26218         * mono-debug.c (mono_debug_add_method): Protect the whole function
26219         in mono_debugger_lock(), not just parts of it.
26220
26221 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26222
26223         * reflection.c: make sure padding bytes in heaps are zeroed.
26224
26225 2004-06-24  David Waite  <mass@akuma.org>
26226
26227         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26228         image.c, loader.c, locales.c, marshal.c, metadata.c,
26229         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26230         string-icalls.c, threads.c: change to C90-style comments from C99 /
26231         C++ -style
26232
26233 2004-06-24  Dick Porter  <dick@ximian.com>
26234
26235         * threads.c
26236         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26237         return createdNew.  Fixes bug 60412.
26238
26239         * threads-types.h: 
26240         * icall.c: Add createdNew parameter to CreateMutex icall
26241
26242 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26243
26244         * reflection.c, object-internals.h: save default value in params.
26245
26246 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26247
26248         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26249         no need to build a new path combining that with the application base.
26250         Fixes bug #60442.
26251
26252 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26253
26254         * reflection.c: fixed minor standard compliance issues.
26255
26256 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26257
26258         * reflection.c: fixed issue with encoding some custom attributes
26259         (arrays in properties and fields, bug #60411).
26260
26261 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26262
26263         * reflection.c: fix start address when copying the public key token.
26264
26265 2004-06-23  Martin Baulig  <martin@ximian.com>
26266
26267         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26268         the `exc' object in a static object to put it into the GC's root set.
26269
26270 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26271
26272         * reflection.c: make mono_reflection_setup_internal_class ()
26273         callable a second time to setup a new parent class.
26274
26275 2004-06-23  Dick Porter  <dick@ximian.com>
26276
26277         * threads.c: Check for WAIT_IO_COMPLETION return values.
26278
26279 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26280
26281         * appdomain.c: Removed the g_free on the public key token. Now copy 
26282         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26283         * assembly.c: Added public key token string value when loading 
26284         assemblies. Fix bug #60439.
26285         * icall.c: Added missing informations (like public key) in 
26286         GetReferencedAssemblies. Fix #60519.
26287         * image.h: Changed definition for public key token from const char*
26288         public_tok_value to guchar public_key_token [17];
26289         * reflection.c: Updated for changes to public key token.
26290
26291 2004-06-22  Lluis Sanchez Gual
26292
26293         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26294         for the field in base classes.
26295
26296 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26297
26298         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26299         mark headers as not supported, they are installed only for use by the
26300         debugger.
26301
26302 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26303
26304         * *.c, *.h: avoid namespace pollution in public headers.
26305
26306 2004-06-21  Martin Baulig  <martin@ximian.com>
26307
26308         * exception.c (mono_get_exception_security): It's in
26309         "System.Security", not in "System".
26310
26311         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26312         the exception classes.
26313
26314 2004-06-21  Martin Baulig  <martin@ximian.com>
26315
26316         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26317         Protect the exception object from being finalized.
26318
26319 2004-06-21  Martin Baulig  <martin@ximian.com>
26320
26321         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26322         public function.
26323
26324 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26325
26326         * reflection.c: Load the assembly in mono_reflection_type_from_name,
26327         if it was not loaded before. Fix parts of #60439.
26328
26329 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26330
26331         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26332         code that was broken since Ben's change: wrappers are now
26333         dependent on the method signature only again.
26334
26335 2004-06-21  Martin Baulig  <martin@ximian.com>
26336
26337         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
26338         added interface support.
26339
26340 2004-06-21  Martin Baulig  <martin@ximian.com>
26341
26342         * class.c (mono_vtable_get_static_field_data): New public method.
26343
26344 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
26345
26346         * filewatcher.c : Windows build fix to be compliant with API changes.
26347
26348 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26349
26350         * class.h, class.c: more accessors.
26351         * metadata.h, metadata.c: prepare for hiding MonoType and
26352         MonoMethodSignature: people should use the accessors from now on
26353         outside of the tree.
26354
26355 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26356
26357         * *.c, *.h: more API cleanups.
26358
26359 2004-06-18  Jackson Harper  <jackson@ximian.com>
26360
26361         * assembly.c: Trace loading assemblies.
26362         * loader.c: Trace loading native libraries.
26363         * mono-config.c: Trace loading config files.
26364         
26365 2004-06-18  Dick Porter  <dick@ximian.com>
26366
26367         * locales.c: Tell ICU the lengths of strings, it can cope with
26368         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
26369
26370 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
26371
26372         * image.c: swapped name/filename;
26373
26374 2004-06-18  Martin Baulig  <martin@ximian.com>
26375
26376         * mono-debug-debugger.c (write_class): Write the parent class at
26377         the end of the header.
26378
26379 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26380
26381         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
26382
26383 2004-06-17  Raja R Harinath  <rharinath@novell.com>
26384
26385         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
26386         (bundle_obj): New conditional define.
26387         (BUILT_SOURCES): Remove.
26388         ($(bundle_srcs)): Make parallel-make safe.
26389         (libmonoruntime_la_LIBADD): Make unconditional.
26390         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
26391         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
26392
26393 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
26394
26395         * culture-info-tables.h: It was inconsistent with the latest
26396           supp info files.
26397
26398 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
26399
26400         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
26401         be loaded.
26402
26403         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
26404         with gcc 2.95.
26405
26406 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26407
26408         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
26409         cleaned up public header threads.h.
26410
26411 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26412
26413         * Makefile.am, *.c, *.h: more API cleanups.
26414
26415 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
26416
26417         * Makefile.am: removed monosn from compilation.
26418         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
26419         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
26420         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
26421         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
26422         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
26423         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
26424
26425 2004-06-15  Jackson Harper  <jackson@ximian.com>
26426
26427         * assembly.c: Make locales lower case when searching the GAC for
26428         assemblies. gacutil will always make locales lowercase when
26429         installing so this effectively makes them case insensitive.
26430         
26431 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
26432
26433         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
26434         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
26435           parameter which allows to choose whether the wait can be interrupted or 
26436           not. Also added the method mono_monitor_enter(), which locks the monitor
26437           using an infinite wait and without allowing interruption.
26438           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
26439           interrupted.
26440         * object.h: Added new fields in MonoThread. suspend_event holds the event
26441           used to susped/resume the thread. synch_lock is the lock object to use for
26442           modifying the thread state.
26443         * threads.c: Use the new synch_lock object for locking, instead of "this",
26444           which can generate deadlocks.
26445           Moved thread state change in Thread.Sleep and Thread.Join from managed
26446           to unmanaged code. This avoids a deadlock when the thread was suspended
26447           just after acquiring the thread lock.
26448           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
26449           Implemented Thread.Suspend using an event instead of ThreadSuspend,
26450           which is not fully implemented in the io-layer.
26451         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
26452
26453 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
26454
26455         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
26456         threads-types.h: more API cleanups.
26457
26458 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26459
26460         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
26461         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
26462         threadpool.c, threads.c: first pass at the exported API cleanup.
26463
26464 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
26465
26466         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
26467
26468 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26469
26470         * icall.c: added internalGetHome.
26471
26472 2004-06-14  Dick Porter  <dick@ximian.com>
26473
26474         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
26475         possible to return successfully when '.' or '..' were the only
26476         entries in a directory, but were skipped.  The MonoIOStat was not
26477         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
26478         Fixes bug 59574.
26479
26480 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26481
26482         * reflection.c: make binaries run on .Net 1.1 by default.
26483
26484 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26485
26486         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
26487
26488 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
26489
26490         * marshal.c: keep track of struct size with explicit layout
26491         (bug #59979).
26492
26493 2004-06-12  Martin Baulig  <martin@ximian.com>
26494
26495         * mono-debug-debugger.c: Comment out a debugging g_message().
26496
26497 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26498
26499         * reflection.c, reflection.h: do not free custom attrs that are cached.
26500         * icall.c: use braces to make code clearer.
26501
26502 2004-06-11  Martin Baulig  <martin@ximian.com>
26503
26504         * class.h (MonoInflatedField): New type.
26505         (MonoClassField): Replaced `MonoType *generic_type' with
26506         `MonoInflatedField *generic_info'.
26507
26508         * icall.c
26509         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
26510
26511 2004-06-11  Martin Baulig  <martin@ximian.com>
26512
26513         * reflection.c (mono_image_create_method_token): Correctly encode
26514         varargs methods.
26515
26516 2004-06-11  Martin Baulig  <martin@ximian.com>
26517
26518         * metadata.c (mono_metadata_parse_method_signature): When parsing
26519         a MethodDef which has VarArgs, also set sentinelpos if we don't
26520         have any parameters.
26521
26522 2004-06-11  Martin Baulig  <martin@ximian.com>
26523
26524         * verify.c (mono_method_verify): In CEE_CALL, use
26525         mono_method_get_signature() to get the method's signature, unless
26526         we're a PInvoke method.
26527
26528 2004-06-10  Jackson Harper  <jackson@ximian.com>
26529
26530         * assembly.c: Use <path>/lib/mono/gac for the extra paths
26531         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
26532         logical name as the supplied path is just a prefix to the gac not
26533         the direct path to it.
26534         
26535 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
26536
26537         * reflection.c: make the token for a created method match
26538         the token of the MethodBuilder it was created from
26539         (IKVM requires this behaviour now).
26540
26541 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
26542
26543         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
26544         reflection.c, socket-io.c: leak fixes.
26545
26546 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
26547
26548         * icall.c: handle sentinel pos in vararg methods in position different
26549         from 0.
26550
26551 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26552
26553         * culture-info-tables.h: freshly generated.
26554
26555 2004-06-09  Martin Baulig  <martin@ximian.com>
26556
26557         * loader.c (mono_get_method_constrained): Call `mono_class_init
26558         (constrained_class)'.   
26559
26560 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
26561
26562         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
26563         any methods. Fixes #59629.
26564
26565 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26566
26567         * culture-info-tables.h: reflecting locale-builder updates.
26568
26569 2004-06-08  Dick Porter  <dick@ximian.com>
26570
26571         * object.h:
26572         * locales.c: Fixed compile warnings, including a real bug in
26573         CompareInfo_internal_compare.
26574         
26575 2004-06-08  Dick Porter  <dick@ximian.com>
26576
26577         * locales.c
26578         (ves_icall_System_Globalization_CompareInfo_internal_index):
26579         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26580         Double-check the resuls of usearches, because ICU currently
26581         ignores most of the collator settings here.  Fixes bug 59720.
26582         
26583 2004-06-08  Dick Porter  <dick@ximian.com>
26584
26585         * locales.c
26586         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26587         Fix memory leak and segfault-causing typo.  No idea how this one
26588         lasted so long without being noticed.
26589
26590 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
26591
26592         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
26593         any methods. Fixes #59629.
26594
26595 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26596
26597         * assembly.c:
26598         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
26599         own the critical section before). Removed dead code (that's done
26600         in the preload hook).
26601
26602         (mono_assembly_load_with_partial_name): call the preload hook.
26603
26604 2004-06-08  Martin Baulig  <martin@ximian.com>
26605
26606         * metadata.c (mono_metadata_signature_alloc): Default
26607         `sentinelpos' to -1.
26608
26609         * reflection.c (mono_image_get_array_token): Likewise.
26610
26611 2004-06-08  Martin Baulig  <martin@ximian.com>
26612
26613         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
26614
26615         * metadata.c (mono_metadata_parse_method_signature): When parsing
26616         a MethodDef which has VarArgs, set sentinelpos.
26617
26618         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
26619         `gint16' since we're using -1 for non-varargs methods.
26620
26621         * reflection.c
26622         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
26623         (method_encode_signature): Added varargs support.
26624         (method_builder_encode_signature): Likewise.
26625         (mono_image_get_varargs_method_token): New static method.
26626         (mono_image_create_method_token): New public method; this is
26627         called via an icall instead of mono_image_create_token() when
26628         calling a varargs method.       
26629
26630 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
26631
26632         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
26633
26634 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26635
26636         * culture-info-tables.h : Reflecting the latest locale-builder that
26637           fixed empty array representation ({} to {0}).
26638
26639 2004-06-07  Jackson Harper  <jackson@ximian.com>
26640
26641         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
26642         looking up extra gac paths. This allows MONO_GAC_PATH to act
26643         exactly like a prefix.
26644         
26645 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26646
26647         * reflection.c (mono_reflection_type_from_name): Make a copy of the
26648         type name before modifying it. Fixes #59405.
26649
26650 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26651
26652         * culture-info.h: added fields for "all datetime patterns".
26653         * locales.c: (  ves_icall_System_Globalization_CultureInfo
26654           _construct_datetime_format ()): fill xxx_patterns fields.
26655         * object.h: added fields for "all datetime patterns" to
26656           MonoDateTimeFormatInfo.
26657         * culture-info-tables.h: reflecting locale-builder updates.
26658
26659 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26660
26661         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
26662         the event has no add and remove methods. Fixes #59629.
26663
26664 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
26665
26666         * object.c: Fixed possible integer overflow when allocating large
26667         strings.
26668
26669 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26670
26671         * culture-info-tables.h: reflecting locale-builder updates.
26672
26673 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26674
26675         * culture-info-tables.h: reflecting locale-builder updates.
26676
26677 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
26678
26679         * culture-info-tables.h: reflecting locale-builder updates.
26680
26681 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
26682
26683         * threads.c: Made Thread.Sleep abortable.
26684
26685 2004-06-02  Martin Baulig  <martin@ximian.com>
26686
26687         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
26688
26689         * debug-mono-symfile.h: Bumped symbol file version number to 37.
26690
26691 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
26692
26693         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
26694
26695 2004-05-30  Jackson Harper  <jackson@ximian.com>
26696
26697         * reflection.c: Do not hardcode assembly versions or public key
26698         tokens anymore. All of this except the corlib section was dead
26699         code anyways.
26700         
26701 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
26702
26703         * object.c (mono_runtime_invoke_array): Automatically create boxed
26704         objects for byref valuetypes if needed. Fixes #59300.
26705         
26706         * object.c (mono_method_return_message_restore): Handle 
26707         MONO_TYPE_OBJECT as well.
26708
26709 2004-05-28  Jackson Harper  <jackson@ximian.com>
26710
26711         * reflection.c: The modified type encoding was causing build
26712         problems. Reverted for now.
26713         
26714 2004-05-28  Jackson Harper  <jackson@ximian.com>
26715
26716         * reflection.c/h: Take an assembly ref so that we dont create
26717         fully qualified names when encoding types in the same assembly as
26718         the custom attribute being emitted.
26719         * appdomain.c: Increment version number.
26720         
26721 2004-05-26  Duncan Mak  <duncan@ximian.com>
26722
26723         * icall.c
26724         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
26725         Set the full version number (major, minor, build, revision).
26726
26727 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
26728
26729         * marshal.c (emit_struct_conv): increment src/dst after blit
26730         (mono_marshal_get_managed_wrapper,
26731         mono_marshal_get_native_wrapper): make sure we have marshalling
26732         info before marshalling params (info computation affects
26733         blittable)
26734
26735         * class.c (class_compute_field_layout): correctly deal with
26736         blittable
26737         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
26738         value types (as per what windows dows by default)
26739         (mono_class_setup_mono_type): System.ValueType is blittable
26740         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
26741         blittable
26742
26743         * marshal.c (mono_marshal_load_type_info): flag types  as
26744         non-blittable if the native layout doesn't match the managed
26745         layout
26746
26747 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26748
26749         * appdomain.c: don't add stuff in the private search path that is
26750         above the application base. If application base is not set, there's
26751         no private search path.
26752
26753 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
26754
26755         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
26756         byref struct arguments in native->managed marshalling.
26757
26758 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
26759
26760         * marshal.c (mono_marshal_get_runtime_invoke): correctly
26761         cache methods using signature (special case for methods
26762         that are value type or string class)
26763         
26764         * image.c (mono_image_close): clean up allocated GSList's
26765         in runtime_invoke_cache.
26766
26767 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26768
26769         * mono-config.c: set the correct path for mono_cfg_dir on windows when
26770         there's no MONO_CFG_DIR environment variable defined.
26771
26772 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26773
26774         * threads.c: windows version must be >= 0x0500 to include OpenThread.
26775
26776 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
26777
26778         * threadpool.c: Really wait for 500ms after the async call, even if the wait
26779           is interrumped.
26780         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
26781           before waiting for it, and call CloseHandle after the wait to unref it.
26782           This will make sure that handles are not disposed too early.
26783
26784 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26785
26786         * appdomain.c:
26787         * appdomain.h:
26788         * icall.c: removed
26789         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
26790         needed now.
26791
26792         * object.c: se the application_base only for the domain that runs
26793         Main. Fixes bug #59216,
26794
26795 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26796
26797         * appdomain.c:
26798         * object.c: only the domain in which Main is run have
26799         SetupInformation.ConfigurationFile set, so moved a few lines from
26800         appdomain.c to object.c.
26801
26802 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26803
26804         * appdomain.c: we tried to load [name].(dll|exe), but according
26805         to bug #57710, we must also try [culture]/[name].(dll|exe) and
26806         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
26807         There's a test case attached to bug #58922.
26808
26809 2004-05-27  Dick Porter  <dick@ximian.com>
26810
26811         * icall.c:
26812         * file-io.c: Implemented icalls for locking and unlocking regions
26813         in a file.
26814         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
26815         FALSE on error (fixes both compiler warning and real bug.)
26816
26817 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
26818
26819         * culture-info-tables.h: reflecting locale-builder updates.
26820
26821           (Added missing ChangeLog entry for 05/26)
26822
26823 2004-05-27  Jackson Harper  <jackson@ximian.com>
26824
26825         * locales.c: Fix some cut and paste errors.
26826         
26827 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26828
26829         * mono-config.c: set the correct path for config. directory on windows.
26830
26831 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
26832
26833         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
26834           on win32.
26835
26836 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
26837
26838         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
26839         from pinvoke functions.
26840         
26841         * marshal.c (mono_ftnptr_to_delegate): Implement this.
26842
26843 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
26844
26845         * culture-info-tables.h: reflecting locale-builder updates.
26846
26847 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
26848
26849         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
26850         #59086.
26851
26852 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
26853
26854         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
26855         * icall.c: Modified icalls for RNG.
26856         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
26857         Windows (CryptoAPI).
26858
26859 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
26860
26861         * locales.c: Fix build.
26862
26863 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
26864
26865         * culture-info-tables.h: reflecting locale-builder updates.
26866
26867 2004-05-25  Jackson Harper  <jackson@ximian.com>
26868
26869         * locales.c: When creating the current culture use the $LANGs
26870         specific culture. So DateTimeFormat and NumberFormat entries are created.
26871         
26872 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
26873
26874         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
26875         a char array as parameter.
26876
26877 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
26878
26879         * image.c: In mono_image_open(), always use an absolute path name to
26880           look for already loaded images.
26881
26882 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
26883
26884         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
26885         missing in the windows build (like older cygwin include files).
26886
26887 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
26888
26889         * icall.c: Fixed check for possible integer overflow in Buffer_
26890         BlockCopy icall. Replaced comments style // by /* */.
26891
26892 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
26893
26894         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
26895         
26896         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
26897         check after MONO_VTADDR. Fixes pinvoke2.exe.
26898
26899         * marshal.h marshal.c metadata.h: Add beginnings of support for
26900         ftnptr -> delegate marshalling.
26901
26902 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
26903
26904         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
26905         * threads.c: Fix warnings.
26906
26907 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
26908
26909         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
26910         * icall.c: Registered icalls for Suspend and Resume.
26911         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
26912           Thread.Abort.
26913         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
26914         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
26915         * process.c: Use WaitForSingleObjectEx.
26916         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
26917           checkpoints.
26918         * threads.c, threads.h: Make use of new Ex wait methods. Improved
26919           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
26920           for Suspend and Resume. Added new mono_thread_stop, used for stoping
26921           background threads. Added basic support for Abort in Windows.
26922           Start new threads using a managed delegate invoke wrapper. This wrapper
26923           has an interruption checkpoint that is needed since an interruption
26924           can be requested before the thread leaves the unmanaged code that starts 
26925           the thread.
26926         * marshal.c: Added interruption checkpoint after every native call, and
26927           also before managed calls for wrappers called from unmanaged code to
26928           go into managed code.
26929         * object.h: Added new field in MonoThread to keep track of interruption
26930           requests.
26931
26932 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
26933
26934         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
26935         calls.
26936
26937 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26938
26939         * appdomain.c:
26940         * assembly.c:
26941         * gc.c:
26942         * locales.c:
26943         * mono-config.c:
26944         * rand.c: getenv -> g_getenv (windows!)
26945
26946         * process.c: complete_path is also used on non-windows platforms.
26947
26948 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26949
26950         * icall.c: new signature for Process_Start.
26951
26952         * process.[ch]: new signature for Process_Start. If we're on windows
26953         and UseShellExecute is false, we have to search for the program by
26954         ourselves if we don't get a full path.
26955
26956 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
26957
26958         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
26959         marshalling and call CleanUpNativeData if needed. Fixes #58646.
26960
26961 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26962
26963         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
26964         Fixes bug #58373.
26965
26966 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26967
26968         * process.c: use double quotes to quote program name and arguments on
26969         windows. Fixes bug #58575.
26970
26971 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26972
26973         * file-io.c: don't return "." and ".." when using windows Find*File.
26974
26975 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
26976
26977         * marshal.c: Don't pass wrappers to message init because method 
26978         addressed used to lookup metadata. part of remoting[2|3] fix.
26979
26980 2004-05-15  Jackson Harper  <jackson@ximian.com>
26981
26982         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
26983         path is essentially the same as MONO_PATH except that it points to
26984         GACs instead of lib directories.
26985         * loader.h: The user gac is gone so we dont need function to
26986         enable/disable it.
26987         * mono-config.c: user gac option is now gone.
26988         
26989 2004-05-15  Jackson Harper  <jackson@ximian.com>
26990
26991         * culture-info.h: Make defines more consistent, add calendar data
26992         to the culture info table.
26993         * culture-info-tables.h: Add basic calendar data. Basically
26994         everyone gets default gregorian until all the data is
26995         updated.
26996         * locales.c: Use the new consistent defines. Set calendar data for
26997         culture info objects.
26998         * object.h: add a field for calendar data to CultureInfo
26999         
27000 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
27001
27002         * image.c: image->runtime_invoke_cache is keyed on signatures now.
27003         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
27004         a signature.
27005         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
27006         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
27007         an extra param that is the pointer of the method to invoke. The IL for
27008         the invoke method is no longer specific to the method, but to the
27009         signature of the method. Thus, we can share the same code for multiple
27010         methods. This reduces the number of methods that have to be compiled.
27011
27012 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
27013
27014         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
27015
27016         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27017
27018         * icall.c: Optimize Buffer.BlockCopy.
27019
27020 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27021
27022         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
27023         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
27024         quote). Changed them to "MMMM yyyy".
27025
27026 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
27027
27028         * rand.c
27029         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
27030
27031 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
27032
27033         * reflection.h: Updated after changes to managed structures.
27034
27035         * appdomain.c: Bump corlib version.
27036
27037 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27038
27039         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
27040         windows.
27041
27042 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27043
27044         * Makefile.am: link to ../os/libmonoos.la on windows.
27045
27046         * assembly.c:
27047                 -If MONO_DEBUG, warn about non-existing directories in
27048                 MONO_PATH.
27049                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
27050                 compile time variable.
27051                 -Removed init_default_path and call mono_set_rootdir from
27052                 libmonoos.a instead (windows only).
27053
27054         * assembly.h: declare mono_assembly_getrootdir().
27055
27056         * domain.c:
27057         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
27058
27059         * loader.c: s/getenv/g_getenv/
27060
27061 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
27062
27063         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27064
27065         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27066
27067         * metadata.h: Add new marshalling conversions.
27068
27069         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27070         function.
27071
27072         * reflection.c (mono_reflection_get_type): Lookup the type in all
27073         modules of a multi-module assembly. Fixes #58291.
27074
27075 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
27076
27077         * threads.c: Before aborting a background, set the StopRequested
27078         state.  This avoids throwing the Abort exception.
27079         In mono_thread_manage, don't continue with the shutdown until all
27080         aborted threads have actually stopped.
27081
27082 2004-05-10  Jackson Harper  <jackson@ximian.com>
27083
27084         * locales.c: Remove the modifier from culture names.
27085         
27086 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27087
27088         * Makefile.am: monosn is not installed any more. It has been deprecated
27089         in favor of sn.
27090
27091 2004-05-07  Jackson Harper  <jackson@ximian.com>
27092
27093         * locales.c
27094         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27095         Fix array construction, add bailout if the length is 0.
27096
27097 2004-05-07  Dick Porter  <dick@ximian.com>
27098
27099         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27100         machine doesn't have a DNS entry.  Patch by Urs Muff
27101         (umuff@quark.com), fixes bug 57928.
27102
27103 2004-05-06  Jackson Harper  <jackson@ximian.com>
27104
27105         * reflection.c: Handle null PublicTokens properly. alloc mem for
27106         assembly names culture so we dont crash when freeing it.
27107         
27108 2004-05-06  Jackson Harper  <jackson@ximian.com>
27109
27110         * assembly.c: Check the usergac when loading with partial names.
27111         
27112 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27113
27114         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27115         does nothing for now (not required for Linux/Windows) but the class
27116         library can call it (and a newer or modified runtime could need it).
27117         * icall.c: Registred icall.
27118
27119 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27120
27121         * loader.c: prints a message on module loading error we set MONO_DEBUG
27122         environment variable.
27123
27124 2004-05-05  Jackson Harper  <jackson@ximian.com>
27125
27126         * appdomain.c: Handle PublicKeyToken=null properly.
27127         
27128 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27129
27130         * environment.c|h: Added icall ves_icall_System_Environment_
27131         GetOSVersionString to get the current OS version as a string.
27132         * icall.c: Registred icall.
27133
27134 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27135
27136         * object.c: in mono_object_get_virtual_method(), take into account that
27137         non-virtual methods don't have a slot in the vtable. Check needed when
27138         the object is a proxy.
27139
27140 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27141
27142         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27143         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27144
27145         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27146
27147         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27148         passed when a valuetype is expected.
27149
27150         * object.c (mono_unhandled_exception): Only set the exit code if the
27151         exception happens in the main thread. Fixes thread5.exe.
27152
27153         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27154         invalid names. Fixes #58047.
27155
27156 2004-05-03  Jackson Harper  <jackson@ximian.com>
27157
27158         * assembly.c: This line was committed accidently and is unneeded.
27159         
27160 2004-05-03  Jackson Harper  <jackson@ximian.com>
27161
27162         * icall.c: Add new icall for Assembly::LoadWithPartialName
27163         * assembly.c/.h: new function that probes the GAC to load partial
27164         assembly names by Paolo Molaro.
27165         
27166 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27167
27168         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27169         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27170         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27171         full type name.
27172
27173 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27174
27175         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27176         * reflection.c: fix bug when parsing a full type name and Version is not
27177         the last thing in the string.
27178
27179 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27180
27181         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27182         crashes when it is freed.
27183
27184 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27185
27186         * assembly.c: print the compat warning to stderr.
27187
27188 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27189
27190         * assembly.c (mono_assembly_load_references): Add a compatibility
27191         hack to run old applications that might be still referencing the
27192         3300-based assemblies, only do this for System.xxx.
27193
27194 2004-05-01  Jackson Harper  <jackson@ximian.com>
27195
27196         * appdomain.c: If the culture is neutral we set it to "".
27197         
27198 2004-04-29  Jackson Harper  <jackson@ximian.com>
27199
27200         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27201
27202 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27203  
27204         * string-icalls.c: added low overhead function for copying chars
27205         * icall.c: added needed icall for the above function
27206  
27207 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27208
27209         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27210         Environment.GetLogicalDrives.
27211
27212 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27213
27214         * rand.c: try and talk to egd or prngd
27215         for random bytes if opening devices fail.
27216
27217 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27218
27219         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27220         alignment for the type using the native alignment of its members 
27221         instead of using klass->min_align.
27222
27223         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27224
27225 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27226
27227         * file-io.c:
27228         * socket-io.c: added check for sys/aio.h.
27229
27230 2004-04-28  Dick Porter  <dick@ximian.com>
27231
27232         * threads.c: Don't abort a thread thats already aborting, when
27233         terminating everything.
27234
27235 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27236
27237         * icall.c: added 2 new async calls for Socket.
27238
27239         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27240         IO on *nix systems.
27241
27242         * threadpool.c: removed unused variable.
27243
27244 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27245
27246         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27247
27248 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27249
27250         * locales.c: put back string_invariant_tolower () and
27251         string_invariant_toupper ().
27252
27253 2004-04-26 David Waite <mass@akuma.org>
27254
27255         * file-io.h:
27256         * socket-io.h:
27257         * threads.h:
27258         * unicode.h: remove comma from end of enumeration declarations
27259
27260 2004-04-26 David Waite <mass@akuma.org>
27261
27262         * debug-mono-symfile.h:
27263         * decimal.c:
27264         * mono_debug.h:
27265         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27266
27267
27268 2004-04-26  Jackson Harper  <jackson@ximian.com>
27269
27270         * appdomain.c: Increment version number.
27271         
27272 2004-04-26  Jackson Harper  <jackson@ximian.com>
27273
27274         * appdomain.c: Set assembly references public token value when
27275         PublicKeyToken is specified, not the hash_value. Free public token
27276         values when free assembly name data. Previously the public key
27277         token was hex decoded, however we are using hex encoded public key
27278         tokens, so this is not neccasary.
27279         * assembly.c: Lookup assemblies in the gac if their public token
27280         value is set. Add function to allow enabling user gac
27281         lookups. Specify whether or not the assembly was loaded from the
27282         GAC. Compare full assembly names when checking the cache for
27283         assemblies (Temporarily disabled see comment in code). Remove
27284         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27285         specifies trace-loader they get extra info to stdout on the
27286         loading of assemblies.
27287         * image.h: Add a field for an assembly references public token
27288         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27289         whether an assembly has been loaded from the GAC.
27290         * image.c: Remove a corlib -> mscorlib name mapping.
27291         * loader.h: Add function to enable/disable the user gac.
27292         * mono-config.c: Check if the usergac is enabled in the config
27293         file.
27294         * icall.c: New icall to determine whether or not an assembly has
27295         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27296         * tabldefs.h: Add constant for assemblyref flag that specifies a
27297         full public key is used instead of a public token.
27298         * reflection.c: Remove mscorlib -> corlib mappings. Set
27299         PublicTokenValue instead of hash value. This value is a hex
27300         string so it does not need to be expanded.
27301
27302 2004-04-26  Martin Baulig  <martin@ximian.com>
27303
27304         * mono-debug-debugger.c (mono_debugger_initialize): Set
27305         `mono_debugger_initialized' before calling mono_debug_lock().
27306
27307 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27308
27309         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27310           InternalToUpper/InternalToLower.
27311         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27312           removed invariant culture shortcut.  This is now done in managed code.
27313         * locales.c: (string_invariant_toupper/tolower) removed.
27314
27315 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27316
27317         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27318         Added Poll internal call.
27319
27320         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27321         call for Poll. Select was too heavy for polling a single socket.
27322
27323         * threadpool.[ch]: added mono_threadpool_cleanup.
27324         * threads.c: use it. Don't use Thread_Abort on windows.
27325
27326 2004-04-23  Martin Baulig  <martin@ximian.com>
27327
27328         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27329
27330 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
27331
27332         * icall.c: Registred new icalls for key pair protection and added an
27333         icall for Environment.GetFolderPath on Windows.
27334         * security.c|h: Added new icalls for key pair protection.
27335
27336 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27337
27338         * socket-io.c: don't display the non-supported family warning for known
27339         families. Now this is not displayed on windows when checking support
27340         for IPv4/IPv6.
27341
27342 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27343
27344         * class.c: don't display the layout warning for static fields.
27345
27346 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
27347
27348         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
27349         * locales.c, locales.h: Added new icalls for culture-specific
27350         Char.ToLower and Char.ToUpper.
27351
27352 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27353
27354         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
27355         by David Waite.
27356
27357 2004-04-20  Martin Baulig  <martin@ximian.com>
27358
27359         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
27360         of the type name before passing it to mono_reflection_type_from_name().
27361
27362 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
27363
27364         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
27365         encodings here. Fixes #56965.
27366
27367 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
27368
27369         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27370         fix test on strstr result not that I can see anything that
27371         relies on the result.
27372
27373 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
27374
27375         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
27376         Fixes #57081.
27377
27378         * marshal.c (mono_marshal_get_string_encoding): New helper function.
27379
27380         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
27381         function to determine which marshalling to use for strings. Fixes
27382         #56965.
27383
27384         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
27385
27386         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
27387
27388 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
27389
27390         * icall.c: #include mono-config.h
27391
27392 2004-04-15  Jackson Harper  <jackson@ximian.com>
27393
27394         * culture-info-tables.h: Fix date formats for en-US culture.
27395         
27396 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
27397
27398         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
27399         ThreadPool.SetMinThreads.
27400         * threadpool.c: Implemented ThreadPool.GetMinThreads and
27401         ThreadPool.SetMinThreads.
27402
27403 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27404
27405         * mono-config.c: also load the .config file in the directory
27406         where the assembly was found.
27407
27408 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
27409
27410         * assembly.c: load per-assembly config files.
27411         * icall.c: decrapified code to get the config dir and moved to
27412         mono-config.c.
27413         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
27414         per-assembly config files. When doing a dll map lookup give precedence
27415         to the per-assembly data.
27416
27417 2004-04-14  Martin Baulig  <martin@ximian.com>
27418
27419         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
27420         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
27421         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
27422
27423         * mono-debugger-debugger.c: While the debugger is locked, remember
27424         whether the symbol tables have changes and send one single
27425         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
27426
27427 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
27428
27429         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
27430
27431         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
27432         function.
27433
27434         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
27435         account when marshalling string arrays. Fixes #56965.
27436
27437 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
27438
27439         * icall.c: Add new icalls mapping for security.
27440         * security.c|h: Add internal calls for WindowsIdentity,
27441         WindowsImpersonationContext and WindowsPrincipal.
27442
27443 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
27444
27445         * class.c: Added comment to ensure the System.MonoDummy class
27446         is removed when no longer necessary
27447
27448 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
27449
27450         * appdomain.c: Pass arguments to the bootstraping exceptions to
27451         minimize JITed methods at boot
27452
27453         * metadata.c (mono_exception_from_name_two_strings): Allow for the
27454         second string to be null.
27455
27456         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27457         Change the protocol to minimize the JIT methods at startup.  Now
27458         it Returns the internal codepage, if the value of "int_code_page"
27459         is 1 at entry, and we can not compute a suitable code page
27460         number, returns the code page as a string.
27461
27462 2004-04-13  Jackson Harper  <jackson@ximian.com>
27463
27464         * culture-info-tables.h: Fix number of decimal digits for all
27465         english locales.
27466
27467 2004-04-13  Jackson Harper  <jackson@ximian.com>
27468
27469         * icall.c: Clairfy out of sync error message. It is not always
27470         your corlib that is out of sync.
27471
27472 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
27473
27474         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
27475         properties when only the set accessor is overriden. Fixes #55874.
27476
27477 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
27478
27479         * assembly.c (mono_assembly_load_references): Make this thread safe.
27480         Fixes #56327.
27481
27482 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
27483
27484         * monosn.c: Add missing initialization calls.
27485
27486 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
27487
27488         * locales.c:
27489         ves_icall_System_Globalization_CultureInfo_construct_number_format
27490         Fix g_assert so it compiles on fussier compilers re int/ptr
27491         mismatch
27492
27493 2004-04-08  Dick Porter  <dick@ximian.com>
27494
27495         * socket-io.h:
27496         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
27497         53992.  Also rearrange the code so that the internal calls return
27498         an error value and exceptions are thrown from managed code.
27499
27500         * icall.c: Add type info to the socket icalls.
27501
27502 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27503
27504         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
27505         owes me a beer.
27506
27507 2004-04-07  Martin Baulig  <martin@ximian.com>
27508
27509         * class.c (mono_class_from_generic_parameter): Don't default
27510         `klass->parent' to `mono_defaults.object_type'.
27511
27512 2004-04-07  Martin Baulig  <martin@ximian.com>
27513
27514         * reflection.c (mono_reflection_initialize_generic_parameter): Set
27515         `param->pklass->reflection_info'.       
27516
27517 2004-04-07  Jackson Harper  <jackson@ximian.com>
27518
27519         * culture-info-tables.h: Fix date separator symbol.
27520         
27521 2004-04-07  Martin Baulig  <martin@ximian.com>
27522
27523         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
27524         from System.Type to System.MonoType.
27525
27526 2004-04-07  Martin Baulig  <martin@ximian.com>
27527
27528         * reflection.h
27529         (MonoReflectionGenericParam): Added `has_reference_type' and
27530         `has_value_type' fields.
27531
27532         * reflection.c (mono_image_get_generic_param_info): Encode the
27533         correct flags if we have the `class' or `struct' constraint.
27534
27535 2004-04-07  Martin Baulig  <martin@ximian.com>
27536
27537         * reflection.h
27538         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
27539
27540 2004-04-07  Jackson Harper  <jackson@ximian.com>
27541
27542         * appdomain.c: Revert extra patches, just wanted to bump the
27543         version number.
27544         
27545 2004-04-07  Jackson Harper  <jackson@ximian.com>
27546
27547         * Makefile.am: Add culture-info private headers.
27548         * icall.c: Add new icalls for contructing locales.
27549         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
27550         * locales.h: Declare new culture info construction methods.
27551         * object.h: Add new fields used to avoid the CultureMap to
27552         MonoCultureInfo.
27553         * culture-info.h: Definition of structs used in the culture info
27554         tables.
27555         * culture-info-tables.h: Autogenerated tables that contain culture
27556         info data. This file was generated with the locale-builder tool.
27557         * appdomain.c: Incement corlib version number.
27558         
27559 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
27560
27561         * appdomain.c: (mono_runtime_init) move mono_thread_init
27562         to before mono_object_new calls so critical sections
27563         are initialized before use.
27564
27565 2004-04-07  Martin Baulig  <martin@ximian.com>
27566
27567         * icall.c
27568         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
27569         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
27570         (ves_icall_MonoGenericParam_initialize): Removed.
27571         (monogenericparam_icalls): Removed.
27572         (generictypeparambuilder_icalls): Added new table for
27573         System.Reflection.Emit.GenericTypeParameterBuilder.
27574
27575         * reflection.c
27576         (mono_reflection_define_generic_parameter): Removed.
27577         (mono_reflection_initialize_generic_parameter): This is now called
27578         from GenericTypeParameterBuilder's .ctor.
27579
27580 2004-04-06  Martin Baulig  <martin@ximian.com>
27581
27582         * class.c (mono_class_init): Don't inflate nested classes in a
27583         generic instance.
27584         (mono_type_get_name_recurse): Include the generic arguments for
27585         generic instances and generic type declarations.
27586         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
27587         (_mono_class_get_instantiation_name): Removed.
27588         (mono_class_create_generic): Always use `gklass->name' as our name.
27589
27590         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
27591
27592         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
27593         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
27594         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
27595         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
27596         closed generic methods here.
27597
27598         * reflection.c
27599         (mono_reflection_generic_inst_get_nested_types): Removed.
27600         (inflate_mono_method): Copy the generic parameters from the
27601         MonoMethodHeader into out MonoGenericMethod.
27602
27603 2004-04-06  Martin Baulig  <martin@ximian.com>
27604
27605         * row-indexes.h
27606         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
27607
27608         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
27609
27610         * reflection.c (build_compressed_metadata): If we have any entries
27611         in the GenericParam, MethodSpec or GenericParamConstraint tables,
27612         set the header version to 1.1.
27613
27614 2004-04-06  Martin Baulig  <martin@ximian.com>
27615
27616         * class.c (mono_class_init): If we're a generic instance,
27617         initialize our nested classes, too.
27618         (_mono_class_get_instantiation_name): Deal with the new `!%d'
27619         suffix. 
27620
27621 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27622
27623         * process.c: quote the argument passed to the shell on windows.
27624
27625 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
27626
27627         * threads.c (mono_alloc_special_static_data): Allow this to be
27628         called during startup.
27629
27630 2004-04-02  Martin Baulig  <martin@ximian.com>
27631
27632         * icall.c
27633         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
27634
27635 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
27636
27637         * icall.c: Fix build.
27638
27639 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
27640
27641         * Makefile.am: Added security.c|h.
27642         * icall.c: Added icall for get_UserName;
27643         * security.c: New file for security related icalls. Added function
27644         get_UserName for System.Environment (fix #56144).
27645         * security.h: New. Header file for security.c
27646
27647 2004-04-02  Dick Porter  <dick@ximian.com>
27648
27649         * icall.c: Deleted the icalls that were obsoleted some time ago
27650         by the ICU string code, and which were mixed into the icall
27651         rearranging.  Fixes bug 55969.
27652
27653         * string-icalls.h: 
27654         * string-icalls.c: Deleted the code that those icalls reference.
27655
27656 2004-04-01  Martin Baulig  <martin@ximian.com>
27657
27658         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
27659
27660         * class.c (mono_class_from_generic_parameter): Don't set 
27661         TYPE_ATTRIBUTE_INTERFACE.
27662         (my_mono_class_from_generic_parameter): Likewise.
27663
27664 2004-04-01  Martin Baulig  <martin@ximian.com>
27665
27666         * loader.c (find_method): Added an optional `MonoClass *ic'
27667         argument to search in a specific interface.
27668         (mono_get_method_constrained): New public function.
27669
27670 2004-04-01  Martin Baulig  <martin@ximian.com>
27671
27672         * reflection.c (mono_image_get_generic_field_token): Use the
27673         `handleref' cache here.
27674
27675 2004-04-01  Martin Baulig  <martin@ximian.com>
27676
27677         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
27678
27679         * reflection.c (create_generic_typespec): Use the `typespec' hash
27680         here, not the `typeref' one.    
27681
27682 2004-04-01  Martin Baulig  <martin@ximian.com>
27683
27684         * class.c (mono_class_inflate_generic_type): Moved the
27685         functionality into a new static inflate_generic_type() which
27686         returns NULL if it didn't do anything.  Only increment the
27687         `mono_stats.inflated_type_count' if we actually inflated
27688         something.
27689         (mono_class_get_full): Check the classes type to see whether we
27690         need to inflate it; also inflate MONO_TYPE_(M)VAR.
27691
27692 2004-04-01  Jackson Harper  <jackson@ximian.com>
27693
27694         * reflection.c: Set culture for assembly references.
27695         
27696 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
27697
27698         * reflection.[ch], icall.[ch], Fix support for pinning variables.
27699
27700 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27701
27702         * assembly.c:
27703         (do_mono_assembly_open): the critical section also covers
27704         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
27705
27706 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27707
27708         * threads.c:
27709         (mono_manage_threads): abort the background threads when finishing.
27710         Fixes bug #47232.
27711
27712 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27713
27714         * gc.c: only close the done_event handle if there was no timeout.
27715         C-ified comments.
27716
27717 2004-03-30  Martin Baulig  <martin@ximian.com>
27718
27719         * icall.c (icall_entries): It's called "System.Activator", not
27720         "System.Activation".    
27721
27722 2004-03-30  Martin Baulig  <martin@ximian.com>
27723
27724         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
27725         (mono_class_create_from_typespec): Likewise.
27726
27727 2004-03-30  Martin Baulig  <martin@ximian.com>
27728
27729         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
27730         `has_ctor_constraint' and `initialized'.
27731
27732 2004-03-30  Martin Baulig  <martin@ximian.com>
27733
27734         * reflection.c (encode_new_constraint): New static function to add
27735         the constructor constraint attribute to a type parameter.
27736         (encode_constraints): Call encode_new_constraint() if necessary.
27737
27738         * reflection.h
27739         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
27740
27741         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
27742         
27743 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
27744
27745         * reflection.c, icall.c: add support for pinning variables. 
27746
27747 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
27748
27749         * marshal.c (mono_marshal_get_managed_wrapper):
27750         init bool local with zero rather than null.
27751
27752 2004-03-29  Martin Baulig  <martin@ximian.com>
27753
27754         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
27755         the "official" behavior here.
27756         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
27757
27758 2004-03-29  Martin Baulig  <martin@ximian.com>
27759
27760         * icall.c: Reflect latest API changes.
27761
27762 2004-03-29  Martin Baulig  <martin@ximian.com>
27763
27764         * loader.c (mono_get_method_from_token): Also call
27765         mono_metadata_load_generic_params () for abstract and interface
27766         methods; replace the type arguments in the method signature with
27767         the ones which are loaded from the metadata.
27768
27769 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
27770
27771         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
27772         of the lock is not the current thread. MS.NET don't do it, in spite of
27773         what the documentation says. See bug #56157.
27774
27775 2004-03-28  Martin Baulig  <martin@ximian.com>
27776
27777         * class.c (mono_class_init): Don't call init_properties() and
27778         init_events() for generic instances; set `prop->parent' when
27779         inflating properties.
27780
27781         * reflection.c (mono_generic_inst_get_object): Call
27782         `mono_class_init (ginst->klass)'.
27783         (mono_type_get_object): Only create a MonoGenericInst if your
27784         generic type is a TypeBuilder.
27785         (do_mono_reflection_bind_generic_parameters): Only set
27786         `ginst->is_dynamic' if our generic type is a TypeBuilder.
27787
27788 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
27789
27790         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
27791         Fixes #56091.
27792
27793 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27794
27795         * icall.c: added Kill_internal icall.
27796         * process.[ch]: added Kill_internal icall.
27797
27798 2004-03-25  Martin Baulig  <martin@ximian.com>
27799
27800         * class.h (MonoStats): Added `generic_instance_count',
27801         `inflated_method_count', `inflated_type_count' and
27802         `generics_metadata_size'.       
27803
27804 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27805
27806         * reflection.c: no warnings now.
27807
27808 2004-03-25  Martin Baulig  <martin@ximian.com>
27809
27810         * class.c (mono_class_get_full): New public function; does a
27811         mono_class_get(), but also takes a `MonoGenericContext *'.
27812
27813         * loader.c (mono_field_from_memberref): Renamed to
27814         `field_from_memberref', made static and added `MonoGenericContext *'
27815         argument.
27816         (mono_field_from_token): Added `MonoGenericInst *' argument.
27817         (method_from_memberef): Likewise.
27818         (mono_get_method_from_token): Likewise.
27819         (mono_get_method_full): New public function; does a
27820         mono_get_method(), but also takes a `MonoGenericContext *'.
27821
27822         * verify.c (mono_method_verify): Get the method's generic context
27823         and pass it to mono_field_from_token(), mono_get_method_full() and
27824         mono_class_get_full().
27825
27826 2004-03-25  Martin Baulig  <martin@ximian.com>
27827
27828         * class.c (mono_class_inflate_generic_type): Take a
27829         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
27830         `MonoGenericMethod *'.
27831
27832 2004-03-25  Martin Baulig  <martin@ximian.com>
27833
27834         * loader.h (MonoMethodInflated): Store the MonoGenericContext
27835         instead of the MonoGenericMethod here.
27836
27837 2004-03-25  Martin Baulig  <martin@ximian.com>
27838
27839         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
27840         each time we create a new MonoGenericInst, we also create a new
27841         context which points back to us.
27842
27843         * class.c (inflate_method): Use `ginst->context' instead of
27844         creating a new context.
27845
27846         * loader.c (method_from_memberref): Use
27847         `klass->generic_inst->context' instead of creating a new context.
27848
27849 2004-03-25  Martin Baulig  <martin@ximian.com>
27850
27851         * class.h (MonoGenericContext): New struct.
27852         (MonoGenericMethod): Removed `generic_inst'.
27853
27854         * class.c (mono_class_inflate_generic_method): Take a
27855         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
27856
27857 2004-03-25  Martin Baulig  <martin@ximian.com>
27858
27859         * loader.h (MonoMethodInflated): New typedef.
27860
27861         * metadata.h (MonoMethodSignature): Removed `gen_method', make
27862         `generic_param_count' consume just 30 bits, added `is_inflated'
27863         and `has_type_parameters' flags (one bit each).
27864
27865         * class.c (mono_class_inflate_generic_method): Create a
27866         MonoMethodInflated instead of a MonoMethodNormal and set
27867         `is_inflated' in the method signature.
27868
27869         * class.h (MonoGenericMethod): Removed `generic_method'.
27870
27871 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
27872
27873         * image.c: Make sure the name of a MonoImage is always an absolute path.
27874           This fixes bug #54415.
27875
27876 2004-03-24  Martin Baulig  <martin@ximian.com>
27877
27878         * class.c (mono_class_setup_vtable): If we're a generic instance,
27879         use our generic type's vtable size.
27880
27881 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
27882
27883         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
27884         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
27885         problems.
27886
27887 2004-03-23  Martin Baulig  <martin@ximian.com>
27888
27889         * class.h (MonoDynamicGenericInst): Added `int count_events' and
27890         `MonoEvent *events'.
27891
27892         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
27893         (typebuilder_icalls): Added "get_event_info"; calls
27894         mono_reflection_event_builder_get_event_info(). 
27895
27896         * reflection.c (mono_reflection_generic_inst_initialize): Added
27897         `MonoArray *events'.
27898         (mono_reflection_event_builder_get_event_info): New function.
27899
27900 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
27901
27902         * object.h: add mono_type_initialization_init
27903
27904         * object.c (mono_runtime_class_init): 
27905         implement class constructor synchronization rules
27906         to cope with threading issues.  
27907         add mono_type_initialization_init
27908
27909         * appdomain.c (mono_runtime_init): call 
27910         mono_type_initialization_init
27911
27912         * class.h: removing initializing field from MonoVTable
27913
27914 2004-03-23  Martin Baulig  <martin@ximian.com>
27915
27916         * class.c (my_mono_class_from_generic_parameter): Use
27917         `param->name' if it's not NULL. 
27918
27919 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
27920
27921         * class.c: do not insert non-virtual methods in the vtable.
27922         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
27923         that means the method is non-virtual. This never would have
27924         happened before.
27925
27926 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
27927
27928         * profiler.c: Added lock for accessing coverage_hash.
27929
27930 2004-03-22  Martin Baulig  <martin@ximian.com>
27931
27932         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
27933         `method->method->signature->generic_param_count != 0' to make it
27934         work for interface methods.
27935
27936 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27937
27938         * process.c: quote the string passed to the shell using g_shell_quote.
27939
27940 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27941
27942         * threads.c:
27943         (mono_threads_manage): don't remove the finalizer thread and self
27944         from the threads hash table so that mono_thread_manage can be called
27945         more than once.
27946
27947 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27948
27949         * process.c: quote the arguments when UseShellExecute is true. Fixes
27950         bug #55790.
27951
27952 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27953
27954         * threads.c: set mono_thread_detach as a cleanup routine for every
27955         thread. This way it's always executed upon thread termination, either
27956         aborted or finished normally. No more xsp hangs!
27957
27958 2004-03-17  Martin Baulig  <martin@ximian.com>
27959
27960         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
27961         `int count_nested' and a `MonoType **nested'.
27962
27963         * reflection.c (mono_reflection_bind_generic_parameters): Moved
27964         most of the functionality into a new static
27965         do_mono_reflection_bind_generic_parameters() and don't take a
27966         `MonoType *nested_in' argument any more.  Don't compute nested
27967         types here.
27968         (mono_reflection_generic_inst_get_nested_types): New public method
27969         to get nested types.
27970
27971         * class.c (mono_class_create_generic): Set `klass->nested_in' if
27972         we're a nested class.
27973
27974         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
27975         mono_reflection_generic_inst_get_nested_types() to compute the
27976         nested types.
27977
27978 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
27979
27980         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
27981         descriptive error message under windows.
27982         
27983 2004-03-17  Martin Baulig  <martin@ximian.com>
27984
27985         * class.c (dup_type): Added `const MonoType *original' argument;
27986         copy the attrs from the original type.
27987
27988 2004-03-17  Martin Baulig  <martin@ximian.com>
27989
27990         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
27991         `m->generic_inst_cache' here.
27992
27993 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
27994
27995         * exception.h exception.c: Add stack_overflow_exception.
27996
27997 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27998
27999         * threadpool.c:
28000         (overlapped_callback): call SetEvent *after* invoking the callback.
28001         No need to call CloseHandle.
28002
28003 2004-03-16  Martin Baulig  <martin@ximian.com>
28004
28005         * reflection.c (mono_image_get_fieldref_token): Take a
28006         `MonoReflectionField *' instead of a `MonoClassField *' and a
28007         `MonoClass *'; store the `MonoReflectionField *' in the hash.
28008
28009 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28010
28011         * appdomain.c: don't add the culture to the filename we're looking for
28012         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
28013
28014 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28015
28016         * locales.c: don't ignore symbols when doing case insensitive compares.
28017         Thanks Dick! Fixes bug #54046.
28018
28019         * threads.c: surround 'threads' usage with enter/leave in
28020         mono_thread_manage.
28021
28022 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
28023
28024         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
28025         implicitly marshalled as [Out]. Fixes #55450.
28026
28027         (mono_marshal_get_runtime_invoke): Zero out the result if there is
28028         an exception.
28029
28030 2004-03-16  Martin Baulig  <martin@ximian.com>
28031
28032         * class.c (mono_class_from_generic_parameter): Use the actual
28033         parameter name. 
28034
28035 2004-03-16  Martin Baulig  <martin@ximian.com>
28036
28037         * reflection.c (type_get_signature_size): New static function.
28038         Compues the size of the type in a method signature.
28039         (method_get_signature_size): New static function; calls
28040         type_get_signature_size() to compute the actual size of the
28041         method's signature.
28042         (method_encode_signature): Use method_get_signature_size() to get
28043         the signature's size rather than using `nparams * 10'.
28044
28045 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28046
28047         * file-io.h: define here WapiOverlapped on windows. I don't want the
28048         regular OVERLAPPED one.
28049
28050         * file-io.c:
28051         * threadpool.c: somehow, BindIoCompletionCallback is not found.
28052         Disabling AIO on windows.
28053
28054 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28055
28056         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
28057         bug #55385.
28058
28059 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28060
28061         * appdomain.c: upgraded corlib version.
28062
28063         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28064         and BeginWrite. Allow opening files for asynchrnous operations.
28065
28066         * file-io.h: new struct that maps FileStreamAsyncResult.
28067         * icall.c: added new icalls.
28068         * process.[ch]: support setting child process environment variables
28069         and use the SHELL or COMSPEC when UseShellExecute is true.
28070
28071         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28072         callback for async. IO is here and also BindHandle.
28073
28074         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28075         from here.
28076
28077 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
28078
28079         * reflection.c (create_custom_attr): Allow len == 0.
28080
28081         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28082         computation on big-endian machines.
28083
28084 2004-03-13  Martin Baulig  <martin@ximian.com>
28085
28086         * class.h (MonoGenericInst): Added `int count_ifaces'.
28087
28088         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28089         `ginst->count_ifaces' instead `klass->interface_count' since we
28090         may get called before the vtable is created.
28091
28092         * loader.c (mono_method_get_param_names): If we're a generic
28093         instance, return and don't initialize the class.
28094
28095         * reflection.c (mono_reflection_setup_generic_class): Don't call
28096         ensure_runtime_vtable().
28097         (mono_reflection_bind_generic_parameters): Set
28098         `ginst->count_ifaces'.
28099
28100 2004-03-11  Jackson Harper <jackson@ximian.com>
28101
28102         * icall.c:
28103         * unicode.c:
28104         * unicode.h: Remove unused System.Char icalls.
28105         
28106 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28107
28108         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28109         code when we P/Invoke the first library in Windows.Forms, instead
28110         of when we first open the assembly.
28111
28112         * assembly.c: Drop the lookup from here.
28113
28114 2004-03-10  Martin Baulig  <martin@ximian.com>
28115
28116         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28117         class for properties, fields and events.  Finally fixes #54945.
28118
28119 2004-03-10  Martin Baulig  <martin@ximian.com>
28120
28121         * metadata.c (mono_metadata_class_equal): New static function;
28122         checks whether two generic instances or two generic parameters are
28123         equal.
28124         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28125         compare classes.        
28126
28127 2004-03-10  Martin Baulig  <martin@ximian.com>
28128
28129         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28130
28131         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28132         argument and write it into the `reflection_info' field.
28133
28134         * icall.c
28135         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28136         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28137
28138 2004-03-09  Jackson Harper  <jackson@ximian.com>
28139
28140         * char-conversions.h: use 8 bits for numeric data its all we need
28141         * icall.c: numeric data is only 8 bits now.
28142
28143 2004-03-09  Martin Baulig  <martin@ximian.com>
28144
28145         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28146
28147         * class.c (init_properties, init_events): Initialize the new
28148         `parent' field.
28149
28150         * reflection.c (typebuilder_setup_properties): Likewise.
28151         (typebuilder_setup_events): Likewise.
28152
28153         * reflection.h (MonoEventInfo): Replaced `parent with
28154         `declaring_type' and `reflected_type'.
28155
28156         * icall.c (ves_icall_get_property_info): Distinguish between
28157         declaring and reflected type.
28158         (ves_icall_get_event_info): Likewise.
28159
28160 2004-03-09  Martin Baulig  <martin@ximian.com>
28161
28162         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28163         (ves_icall_Type_GetField): Correctly set field->klass.
28164
28165 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28166
28167         * loader.h: Fix warning.
28168
28169 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28170
28171         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28172         library routine if present.  Notice that it will still continue
28173         executing even if its missing, for those working on the Gtk#
28174         edition of Windows.Forms.
28175
28176         * assembly.c (do_mono_assembly_open): If loading the
28177         System.Windows.Forms call mono_loader_wini_init.
28178
28179 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28180
28181         * class.h: Added MonoRemoteClass struct.
28182         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28183         function for MonoStrings.
28184         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28185         Added internal call for getting the proxy type.
28186         * marshal.c: Get the type of transparent proxies from its remote_class.
28187         Added methods that generate the IL for type checks and casts:
28188         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28189         mono_marshal_get_proxy_cancast.
28190         * marshal.h: Declaration of the previous new methods.
28191         * object.c: Added new moethods for creating and updating MonoRemoteClass
28192         instances: mono_remote_class, mono_upgrade_remote_class, 
28193         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28194         * verify.c: FIx transparent_proxy_fields layout.
28195         * appdomain.c: Bump corlib version.
28196
28197 2004-03-04  Jackson Harper  <jackson@ximian.com>
28198
28199         * icall.c: Add icall to access char conversion tables.
28200         * char-conversions.h: Character conversion tables.
28201         * Makefile.am: Add char-conversions.h private header file.
28202         
28203 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28204
28205         * appdomain.c (unload_thread_main): Increase unloading timeout to
28206         10 sec as a temporary workaround for Nant problems.
28207
28208 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28209
28210         * gc.c: Add checks for GC_enable and GC_disable.
28211
28212         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28213         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28214         (bug #54988).
28215         
28216 2004-02-27  Martin Baulig  <martin@ximian.com>
28217
28218         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28219         `MonoReflectionType *' instead of a `MonoType *'.
28220
28221 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28222
28223         * gc.c (run_finalize): Avoid finalizing the object representing the
28224         finalizer thread.
28225         (finalizer_thread): Fix warning.
28226
28227 2004-02-25  Martin Baulig  <martin@ximian.com>
28228
28229         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28230         argument for nested types.
28231         (mono_class_create_generic): Added support for nested generictypes.
28232
28233         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28234         `GList *nested'.
28235
28236         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28237
28238         * reflection.c (method_encode_signature): Increase the minimum
28239         value of `size' from 10 to 11.
28240         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28241         and `MonoType **types' arguments instead of the `MonoArray
28242         *types'; added `MonoType *nested_in'.  Recursively instantiate
28243         nested classes. 
28244
28245 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28246
28247         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28248         stack_overflow_ex members which are used by exception handling.
28249
28250         * appdomain.c (mono_runtime_init): Initialize the new members.
28251
28252         * gc.c (mono_gc_enable): New helper function.
28253         * gc.c (mono_gc_disable): New helper function.
28254
28255 2004-02-23  Martin Baulig  <martin@ximian.com>
28256
28257         * icall.c: I must have been really stupid - make it actually work
28258         this time ;-)
28259
28260 2004-02-23  Martin Baulig  <martin@ximian.com>
28261
28262         * loader.c (method_from_memberref): Only inflate the method if
28263         it's in another klass.
28264
28265 2004-02-23  Martin Baulig  <martin@ximian.com>
28266
28267         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28268         (mono_class_init): If we're a generic instance and an interface,
28269         compute `class->interface_id'; also create `class->interfaces'
28270         here and inflate them.
28271
28272         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28273         `ginst->is_open'.
28274         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28275
28276         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28277
28278 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28279
28280         * reflection.c (method_encode_code): Improved the error message
28281         generated by the exception.
28282
28283 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28284
28285         * icall.c: Martin did not do what he said in the ChangeLog for
28286         2004-02-18, but put back the changes for properties and events.
28287         Commenting those changes out again and adding comment to bug #54518.
28288         
28289         * process.c: removed warning.
28290
28291 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28292
28293         * marshal.c (emit_struct_conv): Print an error message instead of
28294         asserting when a type does not have the StructLayout attribute.
28295
28296 2004-02-20  Martin Baulig  <martin@ximian.com>
28297
28298         * reflection.c (mono_type_get_object): Also use the cache for
28299         generic instances.
28300         (mono_reflection_bind_generic_parameters): Always compute
28301         `ginst->ifaces'.        
28302
28303 2004-02-20  Martin Baulig  <martin@ximian.com>
28304
28305         * class.h (MonoGenericMethod): Removed `klass'.
28306
28307         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28308         *klass' argument.
28309
28310 2004-02-20  Martin Baulig  <martin@ximian.com>
28311
28312         * reflection.c (method_encode_methodspec): Actually use the
28313         uninflated signature for the memberref.
28314
28315 2004-02-20  Martin Baulig  <martin@ximian.com>
28316
28317         * class.h (MonoGenericMethod): Removed `declaring'.
28318
28319         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28320         is NULL, compute it here.
28321
28322 2004-02-20  Martin Baulig  <martin@ximian.com>
28323
28324         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28325
28326         * metadata.c (mono_metadata_generic_inst_hash): New method.
28327         (mono_metadata_generic_inst_equal): New method.
28328
28329         * reflection.c (mono_reflection_bind_generic_parameters): Use the
28330         `klass->image->generic_inst_cache' cache to avoid creating
28331         duplicate MonoGenericInst's.
28332
28333         * class.c (mono_class_inflate_generic_type): Use the cache.
28334
28335 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
28336
28337         * object.c: fixed gc descriptor calculation for embedded valuetypes.
28338
28339 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28340
28341         * icall.c: added Socket.WSAIoctl icall.
28342
28343         * socket-io.[ch]: implemented
28344         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
28345
28346 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
28347
28348         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
28349
28350 2004-02-18  Urs C Muff  <umuff@quark.com>
28351
28352         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
28353         this work on PPC and other big-endian architectures.
28354
28355         * debug-mono-symfile.h: Prepended the names of all the `guint32'
28356         fields with an underscore to make sure they're only accessed by
28357         the read32() macro.
28358
28359 2004-02-18  Martin Baulig  <martin@ximian.com>
28360
28361         * icall.c: Put the klass->refclass changes back for methods and
28362         fields, but not for properties and events.  We're currently not
28363         distinguishing between DeclaringType and ReflectedType for
28364         properties and events, that's what caused the regressions.
28365
28366 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28367
28368         * object.c:
28369         (mono_async_result_new): the handle can be NULL.
28370
28371         * threadpool.c: Use an event instead of a semaphore, don't initialize
28372         it until needed. This saves quite a few semaphores from being created
28373         when using the threadpool.
28374
28375 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
28376
28377         * object.c (mono_string_is_interned_lookup): Fix interning of long
28378         strings. Fixes #54473.
28379
28380         * domain.c (ldstr_equal): Optimize if the two strings are equal.
28381
28382         * icall.c: Revert the klass->refclass changes since they introduce
28383         regressions (bug #54518).
28384
28385 2004-02-18  Martin Baulig  <martin@ximian.com>
28386
28387         * class.c (mono_class_init): If we're a generic instance and don't
28388         come from a TypeBuilder, inflate our members here.
28389         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
28390         (mono_class_create_generic): New public method.
28391         (mono_class_initialize_generic): Removed.
28392         (get_instantiation_name): Renamed to
28393         _mono_class_get_instantiation_name() and made it public.
28394
28395 2004-02-18  Martin Baulig  <martin@ximian.com>
28396
28397         * class.c (mono_class_inflate_generic_type): Clear the new
28398         instance's `nginst->klass' when inflating a generic instance.
28399         (mono_class_is_subclass_of): Added (basic) support for generic
28400         instances.
28401
28402 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
28403
28404         * appdomain.h, domain.c: use a MonoCodeManager instead of a
28405         MonoMempool to hold compiled native code.
28406
28407 2004-02-17  Martin Baulig  <martin@ximian.com>
28408
28409         * class.h (MonoDynamicGenericInst): Added `count_properties' and
28410         `properties'.
28411
28412         * reflection.c (mono_reflection_generic_inst_initialize): Added
28413         `MonoArray *properties' argument.
28414
28415         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
28416
28417 2004-02-17  Martin Baulig  <martin@ximian.com>
28418
28419         * icall.c (ves_icall_Type_GetFields): Renamed to
28420         ves_icall_Type_GetFields_internal() and added a
28421         `MonoReflectionType *rtype' argument; pass it to
28422         mono_field_get_object() to set the field's "reflected" type.
28423         (ves_icall_Type_GetConstructors): Likewise.
28424         (ves_icall_Type_GetEvents): Likewise.
28425         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
28426         argument; pass it to mono_method_get_object() to set the method's
28427         "reflected" type.       
28428
28429 2004-02-17  Martin Baulig  <martin@ximian.com>
28430
28431         * class.h (MonoDynamicGenericInst): New type.
28432         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
28433
28434         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
28435         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
28436         (ves_icall_MonoGenericInst_GetFields): New interncall.
28437
28438         * class.c (mono_class_from_generic): Don't call
28439         mono_class_initialize_generic() if this is a dynamic instance;
28440         ie. it's being created from a TypeBuilder.
28441         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
28442         `class->byval_arg.type'.
28443
28444         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
28445         to `inflate_method' and made static.
28446         (mono_reflection_inflate_field): Removed.
28447         (mono_reflection_generic_inst_initialize): New public method.
28448
28449         * reflection.h (MonoReflectionGenericInst): Removed `methods',
28450         `ctors' and `fields'; added `initialized'.
28451
28452 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
28453
28454         * debug-helpers.c (mono_method_full_name): Fix output for empty
28455         namespaces.
28456
28457 2004-02-12  Martin Baulig  <martin@ximian.com>
28458
28459         * class.h (MonoClassField): Added `MonoType *generic_type'.
28460
28461         * reflection.c (mono_image_get_fieldref_token): Added support for
28462         instantiated generic types.
28463         (field_encode_inflated_field): Removed.
28464         (mono_image_get_inflated_field_token): Removed.
28465         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
28466
28467         * reflection.h (MonoReflectionInflatedField): Removed.
28468
28469 2004-02-12  Martin Baulig  <martin@ximian.com>
28470
28471         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
28472         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
28473
28474         * reflection.c (mono_image_get_methodspec_token): Take a
28475         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
28476         (mono_image_create_token): Check whether we have a
28477         `method->signature->gen_method' and call
28478         mono_image_get_methodspec_token() if appropriate.
28479         (inflated_method_get_object): Removed.
28480         (mono_reflection_bind_generic_method_parameters): Return a
28481         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
28482         (mono_reflection_inflate_method_or_ctor): Likewise.
28483
28484         * reflection.h (MonoReflectionInflatedMethod): Removed.
28485
28486 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
28487
28488         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
28489         for custom valuetype marshalling.
28490
28491         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
28492
28493 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28494
28495         * icall.c: fixed WSAGetLastError_internal name.
28496
28497 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
28498
28499         * threads.c (mono_thread_attach): Allow this to be called multiple
28500         times for a thread.
28501         
28502         * threads.c (build_wait_tids): Do not wait for ourselves.
28503
28504         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
28505         appdomain list is empty.
28506
28507         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
28508         memory returned by mono_string_builder_to_utf16, since it points into
28509         managed memory. Thanks to Bernie Solomon for noticing this.
28510
28511         * icall.c: Add AppDomainSetup icalls.
28512
28513         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
28514
28515         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
28516         types.
28517
28518         * reflection.c (reflection_methodbuilder_to_mono_method): Save
28519         custom attributes to the method_aux struct. Also fix array indexes etc.
28520
28521         * loader.c (mono_method_get_param_names): Make dynamic case work again.
28522         
28523 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
28524
28525         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
28526         (both static and runtime) and reduce startup time.
28527
28528 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
28529
28530         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
28531         AsAny marshalling conversion instead of crashing.
28532
28533         * marshal.c: Fix warnings.
28534
28535 2004-02-09  Martin Baulig  <martin@ximian.com>
28536
28537         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
28538
28539         * reflection.h (MonoReflectionInflatedMethod): Removed the
28540         `declaring' field, it's now in the unmanaged MonoGenericMethod.
28541
28542         * reflection.c (method_encode_methodspec): Removed the `method'
28543         argument; we get it from `gmethod->declaring'.
28544         (inflated_method_get_object): Removed the `declaring' argument.
28545
28546 2004-02-09  Martin Baulig  <martin@ximian.com>
28547
28548         * class.h (MonoGenericMethod): New type.
28549         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
28550         `generic_method'.
28551
28552         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
28553         a `MonoGenericMethod *gen_method' one.
28554
28555         * class.c (mono_class_inflate_generic_type): Take an additional
28556         `MonoGenericMethod * argument.  This is only non-NULL if we're
28557         inflating types for a generic method.   
28558         (mono_class_inflate_generic_signature): Renamed to
28559         inflate_generic_signature() and made static; take a
28560         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28561         (inflate_generic_header): Take a `MonoGenericMethod *' argument
28562         instead of a `MonoGenericInst *' one.
28563         (mono_class_inflate_generic_method): Likewise.
28564
28565         * reflection.c (encode_generic_method_sig): Take a
28566         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28567         (method_encode_methodspec): Likewise.
28568         (inflated_method_get_object): Likewise. 
28569
28570         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
28571         field with a `MonoGenericMethod *gmethod' one.  
28572
28573 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
28574
28575         * class.h (mono_class_has_parent): add parens to expansion
28576         so you can ! this.
28577
28578 2004-02-08  Martin Baulig  <martin@ximian.com>
28579
28580         * image.h (MonoImage): Removed `generics_cache'.
28581
28582         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
28583         instead of a `MonoType *' argument; removed the `inflate_methods'
28584         argument.  Don't inflate methods here.
28585
28586         * loader.c (find_method): If it's a generic instance, call
28587         mono_class_init() on the `sclass->generic_inst->generic_type'.
28588
28589         * metadata.c (mono_type_size): Make this work on uninitialized
28590         generic instances; call it on the `ginst->generic_type's class.
28591
28592         * reflection.c (mono_reflection_bind_generic_parameters): Call
28593         mono_class_from_generic() to create the `ginst->klass'.
28594
28595 2004-02-08  Martin Baulig  <martin@ximian.com>
28596
28597         * class.h (MonoClass): Changed type of `generic_inst' from
28598         `MonoType *' to `MonoGenericInst *'.
28599
28600 2004-02-08  Martin Baulig  <martin@ximian.com>
28601
28602         * icall.c (ves_icall_Type_BindGenericParameters): Just call
28603         mono_type_get_object(), this is now creating a `MonoGenericInst'
28604         for MONO_TYPE_GENERICINST.
28605         (ves_icall_MonoGenericInst_GetParentType): Likewise.
28606         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
28607
28608         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
28609         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
28610         (inflated_method_get_object): Added `MonoClass *refclass' argument.
28611         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
28612         and reflected type.
28613
28614         * reflection.h (MonoReflectionInflatedMethod): Removed
28615         `declaring_type' and `reflected_type'.
28616
28617 2004-02-08  Martin Baulig  <martin@ximian.com>
28618
28619         * class.h (MonoGenericInst): Added `MonoType *parent' and
28620         `MonoType **ifaces'.
28621
28622         * reflection.h (MonoReflectionGenericInst): Removed `klass',
28623         `parent' and `interfaces'.
28624
28625         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28626         `MonoType *' argument and return a `MonoType *'.
28627
28628         * icall.c
28629         (ves_icall_MonoGenericInst_GetParentType): New interncall.
28630         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
28631
28632 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28633
28634         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
28635         valuetype marshalling.
28636
28637 2004-02-06  Martin Baulig  <martin@ximian.com>
28638
28639         * class.c
28640         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
28641         (my_mono_class_from_generic_parameter): Likewise.
28642
28643 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28644
28645         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
28646         contents of the symbol files lazily.
28647
28648         * object.h (MonoThread): Add 'name' and 'name_len' fields.
28649
28650         * threads.h threads.c icall.c: New icalls for getting and setting the
28651         threads name.
28652
28653 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
28654
28655         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
28656         Raise an exception when the domain is not found.
28657
28658 2004-02-03  Martin Baulig  <martin@ximian.com>
28659
28660         * reflection.c (mono_image_get_methodspec_token): Use the
28661         uninflated signature; fixes gen-33.
28662
28663 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
28664
28665         * gc.c threads.c: Make the finalizer thread a normal managed thread so
28666         the finalizer code can use thread functionality.
28667
28668         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
28669         the finalizer thread.
28670
28671         * threads.c: Make some functions more robust.
28672
28673         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
28674
28675         * metadata.h: Add new marshalling conventions.
28676
28677         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
28678         stringbuilder marshalling. Fixes #53700.
28679
28680         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
28681
28682         * reflection.c (mono_image_get_type_info): Save declarative security
28683         info.
28684
28685         * reflection.c (mono_image_get_field_info): Handle uninitialized 
28686         unmanaged fields as well.
28687
28688         * appdomain.c: Bump corlib version.
28689
28690 2004-02-01  Martin Baulig  <martin@ximian.com>
28691
28692         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
28693         method type arguments.  
28694
28695 2004-01-30  Duncan Mak  <duncan@ximian.com>
28696
28697         * marshal.h: Add prototype for
28698         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
28699         and
28700         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
28701         fix the build.
28702
28703 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
28704
28705         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
28706         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
28707
28708 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28709
28710         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28711         custom marshalling of valuetypes.
28712
28713         * marshal.c: Fix some warnings.
28714
28715 2004-01-29  Martin Baulig  <martin@ximian.com>
28716
28717         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
28718         for generic method parameters.
28719
28720         * reflection.c (method_encode_methodspec): Write the uninflated
28721         signature into the methodspec table.
28722         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
28723         is always the uninflated method.
28724         (reflection_methodbuilder_to_mono_method): Copy the generic
28725         parameters from the MethodBuilder into `header->gen_params'.
28726
28727 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28728
28729         * class.c (mono_class_from_generic_parameter): Fix warning.
28730
28731 2004-01-27  Martin Baulig  <martin@ximian.com>
28732
28733         * class.c (mono_class_from_generic_parameter): Don't create
28734         `klass->methods' here.  
28735
28736 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
28737
28738         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
28739         extension since it does not work with libraries named lib<FOO>.dll.so.
28740
28741 2004-01-25  Martin Baulig  <martin@ximian.com>
28742
28743         * class.c (mono_class_inflate_generic_type): Added support for
28744         MONO_TYPE_GENERICINST.
28745
28746         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
28747         inflate methods on open constructed types.      
28748
28749 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28750
28751         * object.c: fire ProcessExit event in the root AppDomain after running
28752         Main. Fixes bug #53299.
28753
28754 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
28755
28756         * socket-io.c: include the new socket-wrappers.h header.
28757         Use the wrappers instead of the unix socket functions to make the code
28758         more clear.
28759
28760 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
28761
28762         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
28763
28764         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28765         Fixes #22532.
28766
28767 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
28768
28769         * reflection.c (mono_image_create_pefile): Handle the case when the
28770         entry point is not a MethodBuilder.
28771
28772         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28773         field to ReflectionMethod since it is not allways a builder.
28774
28775         * reflection.c (type_get_fully_qualified_name): New helper function to
28776         return the fully qualified name of a type.
28777
28778         * reflection.c (encode_marshal_blob): Always emit the fully qualified
28779         type name for custom marshallers.
28780
28781         * reflection.c (mono_marshal_spec_from_builder): Ditto.
28782
28783         * class.c (mono_class_setup_vtable): If a parent class already 
28784         implements an interface, use the implementing methods from that class.
28785         Fixes #53148.
28786
28787 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28788
28789         * threadpool.c: just return instead of ExitThread to allow for thread
28790         clean up earlier.
28791
28792 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
28793
28794         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
28795         when closing resource modules.
28796
28797         * reflection.c (mono_image_create_pefile): Handle the case when the
28798         entry point is not a MethodBuilder.
28799
28800         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28801         field to ReflectionMethod since it is not allways a builder.
28802
28803 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
28804
28805         * marshal.c (mono_marshal_get_managed_wrapper): 
28806         mono_marshal_alloc takes native int so CONV_I
28807         the arg for 64bits.
28808
28809 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
28810
28811         * reflection.c (fixup_cattrs): New function to fixup the methoddef
28812         tokens in the cattr table. Fixes #53108.
28813
28814 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28815
28816         * loader.c: don't trim ".dll" before looking up in the config file.
28817         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
28818
28819 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
28820
28821         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
28822         Return the module which contains the resource as well.
28823         (ves_icall_System_Reflection_Module_Close): New icall.
28824
28825         * appdomain.c: Bump corlib version number.
28826
28827         * image.c (mono_image_addref): New public function.
28828
28829         * assembly.c: Call mono_image_addref.
28830
28831         * reflection.c (mono_module_get_object): Increase reference count of 
28832         the image.
28833
28834         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28835         Fixes #22532.
28836
28837         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
28838         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
28839         proper exceptions on DllImport problems.
28840
28841 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
28842
28843         * class.c, metadata.c: eliminate CSIZE macro.
28844
28845 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
28846
28847         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
28848         * object.h: Added async_callback field in MonoAsyncResult.
28849         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
28850         * verify.c: Added async_callback in MonoAsyncResult layout.
28851
28852 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
28853
28854         * reflection.c (mono_reflection_get_custom_attrs): Add support
28855         for Modules.
28856
28857 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
28858
28859         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
28860         marshalling.
28861         (mono_marshal_method_from_wrapper): Add null pointer check.
28862
28863 2004-01-16  Martin Baulig  <martin@ximian.com>
28864
28865         * debug-mono-symfile.h: Set version number to 36 and reflect
28866         latest symbol writer changes.
28867
28868 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
28869
28870         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
28871         multi-dimensional arrays.
28872         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
28873         (mono_class_from_mono_type): Use bounded_array_class_get.
28874         
28875         * class.c (mono_bounded_array_class_get): New function which takes
28876         a 'bounded' bool argument to distinguish vectors from one dimensional
28877         arrays.
28878
28879         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
28880         bounded_array_class_get if the array has bounds.
28881
28882         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28883         Search modules loaded using AssemblyBuilder:AddModule as well.
28884
28885 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28886
28887         * appdomain.c: increased corlib version.
28888         * filewatcher.c: removed g_print.
28889         * icall.c:
28890         (get_property_info): only allocate what is actually requested.
28891         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
28892
28893 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28894
28895         * Makefile.am: added filewatcher.[ch]
28896         * filewatcher.[ch]: FileSystemWatcher runtime support.
28897         * icall.c: added new FSW icalls.
28898
28899 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
28900
28901         * string-icalls.c: fix stringbuilder regression as suggested by
28902         Iain McCoy <iain@mccoy.id.au>.
28903
28904 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
28905
28906         * process.c (process_read_stringtable_block): Recognize '007f' as
28907         a language neutral stringtable block.
28908
28909 2004-01-12  Patrik Torstensson
28910
28911         * object.h (MonoStringBuilder) : Changed layout to support our
28912         new stringbuilder class.
28913         * marshal.c: Change marshalling to support the new layout of 
28914         string builder.
28915         * appdomain.c: increased version number because new layout of
28916         string builder.
28917
28918 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
28919
28920         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
28921         assembly name as an string instead of an AssemblyName, since it is
28922         easier to extract info from it.
28923
28924         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
28925         the culture subdirectories too. Fixes #52231.
28926
28927 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28928
28929         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
28930         It takes 2 new parameters with an optional name for the method to look
28931         for and case ignoring info.
28932
28933         * threadpool.c: removed unused variable.
28934
28935 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28936
28937         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
28938         It takes 2 new parameters with an optional name for the property to look
28939         for and case ignoring info.
28940         Fixes bug #52753.
28941
28942 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
28943
28944         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
28945         Fix #52451.
28946
28947 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28948
28949         * appdomain.c:
28950         * assembly.c: escape the uri before passing it to g_filename_from_uri.
28951         Fixes bug #52630.
28952
28953 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
28954
28955         * reflection.c: Add support for more than one unmanaged resource.
28956
28957         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
28958         in field->def_value, as done in all other cases.
28959
28960         * reflection.c (mono_reflection_get_custom_attrs): Add support for
28961         TypeBuilders.
28962
28963         * reflection.c (mono_reflection_create_runtime_class): Remove 
28964         errorneous assignment to klass->element_class, since it is already
28965         done in mono_reflection_setup_internal_class.
28966
28967 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28968
28969         * gc.c: added missing LeaveCriticalSection.
28970         * icall.c: indented a couple of lines.
28971         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
28972         if we call EndInvoke inside a callback. Fixes bug #52601.
28973
28974 2004-01-07  Martin Baulig  <martin@ximian.com>
28975
28976         * mono-debug-debugger.h
28977         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
28978
28979 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
28980
28981         * appdomain.c: Use messages in NotImplementedException.
28982
28983         * exception.c (mono_get_exception_not_implemented): Now this takes
28984         a message argument.
28985
28986         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
28987         exception instead of g_asserting an aborting when something is not
28988         implemented.
28989
28990         Add some inline docs.
28991
28992 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
28993
28994         * reflection.h: Update after changes to object layout.
28995
28996         * reflection.c: Implement saving of unmanaged aka win32 resources.
28997
28998         * appdomain.c: Bump version number.
28999
29000         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
29001         Handle missing domains gracefully.
29002
29003 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
29004
29005         * file-io.c : On Windows, there are much more invalid_path_chars.
29006
29007 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
29008
29009         * class.h, object.c: prepare for GetType () speedup.
29010
29011 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
29012
29013         * profiler.c: workaround for --profile null reference exception on
29014           cygwin. Patch by Patrik Torstensson.
29015
29016 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
29017
29018         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
29019         make work for unaligned access.
29020
29021 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
29022
29023         * class.c: small cleanup (class->fields [i] -> field).
29024         * image.c: check address of metadata is valid.
29025
29026 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
29027
29028         * assembly.h assembly.c (mono_assembly_loaded): New public function to
29029         search the list of loaded assemblies.
29030
29031         * reflection.c (mono_reflection_type_from_name): Use 
29032         mono_assembly_loaded instead of mono_image_loaded.
29033
29034         * reflection.c: Fix warnings.
29035
29036 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
29037
29038         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
29039         is dynamic. This is needed since an assembly can contain both dynamic and
29040         non-dynamic images.
29041
29042         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
29043         assembly->dynamic.
29044
29045         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
29046
29047         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
29048         to store modules loaded using AddModule.
29049
29050         * reflection.c (mono_image_fill_file_table): Generalize this so it works
29051         on Modules.
29052
29053         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
29054
29055         * reflection.c (mono_image_fill_export_table_from_module): New function to
29056         fill out the EXPORTEDTYPES table from a module.
29057
29058         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
29059         into a separate function. Also handle loaded non-dynamic modules.
29060
29061         * reflection.c (mono_image_basic_init): Fix memory allocation.
29062
29063         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29064
29065         * assembly.c (mono_assembly_load_references): Make this public.
29066
29067 2003-12-19  Martin Baulig  <martin@ximian.com>
29068
29069         * class.c (mono_class_initialize_generic): Made this static, take
29070         a `MonoGenericInst *' instead of a `MonoClass *'.
29071         (mono_class_from_generic): Call mono_class_initialize_generic()
29072         unless we're already initialized or being called from
29073         do_mono_metadata_parse_generic_inst().
29074
29075         * class.h (MonoGenericInst): Added `initialized' and
29076         `init_pending' flags.
29077
29078         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29079         `mono_class_init (gklass)' or mono_class_initialize_generic()
29080         here; set `generic_inst->init_pending' while parsing the
29081         `type_argv'.
29082
29083 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
29084
29085         * locales.c: include string.h for memxxx prototypes
29086
29087 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
29088
29089         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29090         constructor when accessing literal fields.
29091
29092 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
29093
29094         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29095
29096         * reflection.c (assembly_add_resource_manifest): New function to fill
29097         the MANIFESTRESOURCE table.
29098
29099         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29100
29101         * reflection.h: Update to changes in class layout.
29102
29103         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29104         Reenable call to mono_runtime_is_shutting_down ().
29105
29106         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29107         determine if the runtime is shutting down.
29108
29109 2003-12-16  Jackson Harper <jackson@ximian.com>
29110
29111         * icall.c: comment out call to mono_runtime_is_shutting_down to
29112         fix build.
29113         
29114 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29115
29116         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29117         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29118
29119 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29120
29121         * reflection.c: move definition of swap_with_size
29122         to before its first call
29123
29124 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29125
29126         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29127
29128         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29129         icall.
29130
29131         * object.c: Fix warnings.
29132
29133         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29134         members if FlattenHierarchy is set.
29135
29136         * reflection.c (mono_image_add_decl_security): New function to emit
29137         declarative security.
29138
29139         * reflection.h reflection.c: Add support for declarative security.
29140
29141         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29142         
29143 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29144
29145         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29146         
29147         * appdomain.c verify.c: Moved corlib version checking into its own
29148         function in appdomain.c since it needs to create vtables etc.
29149
29150 2003-12-13  Patrik Torstensson <p@rxc.se>
29151
29152         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29153         instead of unwrapped server.
29154
29155 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29156
29157         * verify.c (check_corlib): Fix field index.
29158
29159 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29160
29161         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29162         GetGacPath icall.
29163
29164 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29165
29166         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29167         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29168         cope with sizeof(size_t) != sizeof(guint32).
29169
29170 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29171
29172         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29173         in case of failure.
29174
29175 2003-12-10  Mark Crichton <crichton@gimp.org>
29176
29177         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29178         in managed code.
29179
29180         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29181
29182 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29183
29184         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29185         marked as deleted.
29186
29187 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29188
29189         * verify.c (check_corlib): Handle the case when the version field is 
29190         initialized by a static constructor.
29191
29192 2003-12-08  Patrik Torstensson  <p@rxc.se>
29193
29194     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29195
29196 2003-12-08  Martin Baulig  <martin@ximian.com>
29197
29198         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29199         a MonoReflectionGenericParameter, also take the parameter index
29200         and name as arguments.
29201         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29202         (ves_icall_MonoGenericParam_initialize): New interncall.
29203         (ves_icall_Type_make_byref_type): New interncall.
29204
29205         * reflection.h (MonoReflectionGenericParam): Derive from
29206         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29207         `index' fields.
29208
29209         * reflection.c (mono_reflection_define_generic_parameter): Create
29210         and return a new MonoReflectionGenericParam; don't initialize the
29211         constraints here.
29212         (mono_reflection_initialize_generic_parameter): New public method;
29213         initializes the constraints and creates the `param->pklass'.
29214
29215 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29216
29217         * reflection.h reflection.c: Use the new fields 'num_types', 
29218         'num_fields' and 'num_methods' to track the number of types etc.
29219
29220         * verify.c (check_corlib): Check corlib version number.
29221
29222 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29223
29224         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29225         function works on all methods.
29226
29227 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29228
29229         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29230         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29231         the custom_type_info flag of the transparent proxy.
29232         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29233         objects that supports IRemotingTypeInfo.
29234         * object.h: Added custom_type_info field in transparent proxy.
29235
29236 2003-12-06  Martin Baulig  <martin@ximian.com>
29237
29238         * class.c (mono_class_create_from_generic): Removed.
29239         (mono_class_from_generic): Check `ginst->klass' before doing
29240         anything else.  This is important to fully support "recursive"
29241         generic types.
29242
29243         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29244         empty `generic_inst->klass' before doing anything else.
29245
29246 2003-12-06  Dick Porter  <dick@ximian.com>
29247
29248         * verify.c: 
29249         * object.h:
29250         * icall.c:
29251         * locales.c: Use C structs to access class fields.  Don't do a
29252         conversion between MonoString and UChar because both are
29253         platform-endian UTF-16.  Compare now takes startindex and count
29254         parameters.  Add a char overload for IndexOf.  Speed up the
29255         invariant string IndexOf.
29256
29257 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29258
29259         * Makefile.am (monosn_LDADD): Fix parallel build.
29260
29261 2003-12-04  Martin Baulig  <martin@ximian.com>
29262
29263         * icall.c
29264         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29265         (ves_icall_Type_make_array_type): New interncall.       
29266
29267 2003-12-04  Martin Baulig  <martin@ximian.com>
29268
29269         * locales.c: also change it in the !HAVE_ICU case.
29270
29271 2003-12-04  Dick Porter  <dick@ximian.com>
29272
29273         * icall.c:
29274         * locales.c: construct_compareinfo is now in CompareInfo, not
29275         CultureInfo.
29276
29277 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29278
29279         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29280         image->files array.
29281
29282         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29283         table as well.
29284
29285         * assembly.c (mono_assembly_load_references): Only load references
29286         once.
29287
29288         * class.c (mono_class_from_name): Avoid linear search of the 
29289         EXPORTEDTYPE table.
29290
29291         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29292
29293 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29294
29295         * image.h (MonoImage): Add 'field_cache' field.
29296
29297         * loader.c (mono_field_from_token): Cache field lookups.
29298         
29299         * reflection.c (mono_module_get_object): Fix name property.
29300
29301         * icall.c (ves_icall_get_enum_info): Update after changes to 
29302         mono_metadata_get_constant_index ().
29303
29304         * icall.c: Get rid of get_type_info icall, use a separate icall for
29305         each type property to avoid needless memory allocations. Fixes #51514.
29306
29307         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29308         to avoid needless binary searches.
29309
29310         * class.c (class_compute_field_layout): Move the initialization of
29311         field->def_value to mono_class_vtable ().
29312
29313         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29314         non-corlib types.
29315
29316         * object.c (mono_object_allocate): Make it inline.
29317
29318         * object.c (mono_object_allocate_spec): Make it inline.
29319         
29320 2003-12-02  Dick Porter  <dick@ximian.com>
29321
29322         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29323         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29324
29325 2003-12-01  Dick Porter  <dick@ximian.com>
29326
29327         * threads.c: Fix signature and call in CreateMutex and
29328         CreateEvent.
29329
29330 2003-12-01  Dick Porter  <dick@ximian.com>
29331
29332         * icall.c: 
29333         * locales.c: Implement string compares and searching
29334
29335         * object.h: Add extra Thread field
29336
29337 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
29338
29339         * reflection.c (fixup_method): Add support for MonoCMethod.
29340
29341 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
29342
29343         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
29344
29345         * reflection.c (assembly_name_to_aname): Allow extra characters in
29346         assembly names. Fixes #51468.
29347
29348 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
29349
29350         * exception.c (mono_exception_from_name_domain): New helper function.
29351
29352         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
29353         exception object in the correct domain.
29354
29355         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
29356         formatting + make a copy a the input data.
29357
29358         * loader.c (mono_get_method_from_token): Methods which contain
29359         native code do not have entries in the ImplMap.
29360
29361         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
29362         Thanks to Gonzalo for spotting this.
29363         
29364         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
29365         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
29366
29367         * assembly.h (mono_assembly_load_from): Split the second part of 
29368         assembly loading into a new public function.
29369
29370         * exception.h (mono_get_exception_bad_image_format): New function.
29371
29372 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
29373
29374         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29375         Enumerate all modules inside a dynamic assembly. Fixes #51293.
29376         
29377         * icall.c: Add new icall for creating dynamic methods.
29378
29379         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
29380
29381         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
29382
29383         * reflection.c (mono_reflection_create_dynamic_method): New icall to
29384         create a dynamic method.
29385
29386         * reflection.c (resolve_object): New helper function.
29387
29388         * reflection.c: Generalize ReflectionMethodBuilder and the functions
29389         which manipulate it so they can also work on dynamic methods.
29390
29391         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
29392         creating the MonoReflectionMethodAux structure if it is not needed.
29393         
29394         * reflection.h verify.c: Update after changes to object layout.
29395
29396         * reflection.c (method_builder_encode_signature): Fix compilation on
29397         gcc 2.95.x.
29398
29399 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
29400
29401         * appdomain.h: Added support for context static fields. Added static_data
29402           field to MonoAppContext and renamed thread_static_fields to a more
29403           generic special_static_fields in MonoAppDomain, since it can now contain
29404           context static fields.
29405         * domain.c: Updated hashtable name.
29406         * object.c: Replaced field_is_thread_static() for a more generic
29407           field_is_special_static() which also checks for context static attribute.
29408           In mono_class_vtable(), added support for static context fields.
29409         * threads.c: Changed methods that manage thread static fields to more
29410           generic methods so they can be reused both for thread and context static
29411           data.
29412         * threads.h: Declared some new methods.
29413
29414 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
29415
29416         * reflection.h: Update after changes to the managed types.
29417
29418         * reflection.c (encode_custom_modifiers): New helper function.
29419
29420         * reflection.c (method_encode_signature): Emit custom modifiers.
29421
29422         * reflection.c (field_encode_signature): Emit custom modifiers.
29423
29424 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
29425
29426         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
29427
29428         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
29429         implementation.
29430
29431         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
29432         icall.
29433
29434         * object.c (mono_field_get_value_object): New function.
29435
29436         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
29437         specific.
29438
29439 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
29440
29441         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
29442         return a preallocated out-of-memory exception instance.
29443
29444         * object.c (out_of_memory): Use the new function.
29445
29446         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
29447         flag is before the custom modifiers. Fixes #49802.
29448
29449 2003-11-16  Martin Baulig  <martin@ximian.com>
29450
29451         * class.c (mono_class_is_open_constructed_type): Implemented the
29452         MONO_TYPE_GENERICINST case.
29453
29454 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
29455
29456         * assembly.c (mono_assembly_fill_assembly_name): New function to
29457         fill out the MonoAssemblyName structure.
29458         (mono_assembly_open): Use the new function.
29459
29460         * icall.c (fill_reflection_assembly_name): New helper function.
29461
29462         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
29463         new function.
29464
29465         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
29466
29467 2003-11-15  Martin Baulig  <martin@ximian.com>
29468
29469         * class.c (mono_class_is_open_constructed_type): New public
29470         function; checks whether a type is an open constructed type,
29471         ie. whether it still contains type parameters.
29472         (mono_class_inflate_generic_type): If we're a type parameter and
29473         the inflated type is also a MONO_TYPE_(M)VAR, return the original
29474         type.
29475
29476         * class.h (MonoGenericInst): Added `guint32 is_open'.
29477
29478         * loader.c (method_from_methodspec): Check whether we're an open
29479         or closed constructed type and set `ginst->is_open'.
29480
29481         * reflection.c (mono_reflection_bind_generic_parameters): Check
29482         whether we're an open or closed constructed type and set
29483         `ginst->is_open'.
29484         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
29485         from open constructed types.
29486
29487 2003-11-15  Martin Baulig  <martin@ximian.com>
29488
29489         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29490         a generic instance (instead of a generic type declaration) with
29491         unbound generic parameters, bind them to our actual types.
29492
29493 2003-11-14  Martin Baulig  <martin@ximian.com>
29494
29495         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
29496
29497         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29498         an interface type, populate `res->interfaces' with instantiated
29499         versions of all the interfaces we inherit.
29500
29501 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
29502
29503         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
29504         when MONO_PATH is set but doesn't contain the install dir.
29505
29506 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29507
29508         * icall.c:
29509         (ves_icall_Type_GetInterfaces): don't return an interface twice when
29510         it's also implemented in base classes. Fixes bug #50927.
29511
29512 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
29513
29514         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
29515         if this method is called from a finalizer. Fixes #50913.
29516
29517 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
29518
29519         * threads.c: Implement VolatileRead/VolatileWrite
29520
29521         * icall.c: Add new icalls for VolatileRead/VolatileWrite
29522
29523 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29524
29525         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
29526         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
29527         2.95.3.
29528
29529         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
29530         from Peter Ross (pro@missioncriticalit.com).
29531         
29532 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
29533
29534         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
29535
29536 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29537
29538         * assembly.c (mono_assembly_load_references): Disable check because it
29539         triggers on older corlibs which lots of people have.
29540
29541 2003-11-12  Jackson Harper  <jackson@ximian.com>
29542
29543         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
29544         load corlib.dll if mscorlib.dll is not found.
29545         * assembly.h: Remove corlib name define.
29546         * class.c:
29547         * domain.c:
29548         * image.c: Change corlib name to mscorlib.
29549         
29550 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29551
29552         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
29553
29554 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
29555
29556         * appdomain.h: Added loader_optimization here to sync with the C#
29557         code, and add disallow_binding_redirects field.
29558
29559 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29560
29561         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
29562
29563         * reflection.c (mono_image_build_metadata): Fix crash on modules
29564         with no types.
29565
29566         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
29567
29568         * icall.c (ves_icall_get_method_info): Return callingConvention as
29569         well.
29570
29571         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
29572         namespaces from the EXPORTEDTYPE table as well.
29573
29574         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
29575         from all modules inside the assembly.
29576         
29577 2003-11-11  Martin Baulig  <martin@ximian.com>
29578
29579         * reflection.c (mono_reflection_bind_generic_parameters): Make
29580         this work for interfaces.
29581
29582 2003-11-11  Martin Baulig  <martin@ximian.com>
29583
29584         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
29585
29586 2003-11-11  Martin Baulig  <martin@ximian.com>
29587
29588         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
29589         "MonoInflatedMethod" and "MonoInflatedCtor".
29590
29591 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29592
29593         * reflection.c (resolution_scope_from_image): Use the assembly table
29594         from the manifest module, since other modules don't have it.
29595
29596         * debug-helpers.c (mono_type_full_name): New helper function.
29597
29598         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
29599
29600         * image.c (mono_image_load_file_for_image): New public function which
29601         is a replacement for the load_file_for_image in class.c.
29602
29603         * assembly.c (mono_assembly_load_module): A wrapper for the function
29604         above which does assembly association and reference loading too.
29605
29606         * class.c (mono_class_from_name): Call mono_assembly_load_module.
29607
29608 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29609
29610         * appdomain.c: not all of the attributes for the full assembly name
29611         are required and the order doesn't matter. Fixes bug #50787.
29612
29613 2003-11-10  Dick Porter  <dick@ximian.com>
29614
29615         * locales.c: Use platform-endian UTF16
29616
29617 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29618
29619         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29620         
29621 2003-11-10  Martin Baulig  <martin@ximian.com>
29622
29623         * metadata.c
29624         (mono_metadata_load_generic_params): Make this actually work.
29625
29626         * reflection.c (mono_reflection_bind_generic_parameters): If our
29627         parent is a generic instance, pass all the `types' to it, no
29628         matter whether it has the same number of type parameters or not.
29629
29630 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29631
29632         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29633
29634         * assembly.c (mono_assembly_load_references): Move the image<->assembly
29635         assignment code to this function so it gets called recursively for all
29636         modules.
29637
29638         * image.c (load_modules): Remove the assembly assignment since it is
29639         now done by mono_assembly_load_references.
29640         
29641         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29642         Add 'module' argument.
29643         (mono_module_get_types): New helper function.
29644         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
29645
29646 2003-11-08  Martin Baulig  <martin@ximian.com>
29647
29648         * class.c (mono_class_inflate_generic_method): Interface method
29649         don't have a header.
29650
29651         * reflection.c (mono_image_get_methodspec_token): Take an
29652         additional `MonoGenericInst *' argument instead of reading it from
29653         the header; this is necessary to support interfaces.
29654         (mono_image_create_token): Pass the `MonoGenericInst *' from the
29655         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
29656         (inflated_method_get_object): Take an additional `MonoGenericInst *'
29657         argument.
29658
29659         * reflection.h (MonoReflectionInflatedMethod): Added
29660         `MonoGenericInst *ginst'.
29661
29662 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
29663
29664         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
29665
29666 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
29667
29668         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
29669
29670 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
29671
29672         * reflection.c 
29673         (reflection_methodbuilder_from_method_builder):
29674         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
29675         initialize a ReflectionMethodBuilder structure.
29676         (mono_image_get_methodbuilder_token):
29677         (mono_image_get_ctorbuilder_token): New functions to emit memberref
29678         tokens which point to types in another module inside the same assembly.
29679
29680         * reflection.c: Use the new helper functions.
29681         
29682         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
29683
29684         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
29685         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
29686
29687         * reflection.c (resolution_scope_from_image): Emit a moduleref if
29688         neccesary.
29689
29690         * reflection.c (mono_image_build_metadata): Emit metadata only for the
29691         current module. Emit the manifest only for the main module.
29692
29693         * reflection.c (mono_image_create_token): Add assertion when a 
29694         memberref needs to be created.
29695
29696         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
29697
29698         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
29699         larger buffer for the custom attribute blob. Fixes #50637.
29700         
29701 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29702
29703         * threadpool.c: notify listener on async processing handles after
29704         invoking the async callback. Thanks to Zoltan.
29705
29706 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29707
29708         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
29709         avoid code duplication.
29710
29711         * reflection.h (MonoDynamicImage): New type which is currently unused,
29712         but will be used through the ref.emit code in place of 
29713         MonoDynamicAssembly.
29714
29715         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29716         object layout.
29717
29718         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
29719         a MonoDynamicImage instead of just a MonoImage.
29720         
29721         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
29722         icalls to ModuleBuilder but keep their semantics, so they will work
29723         with moduleb->assemblyb. This will change later.
29724         
29725 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29726
29727         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29728         object layout.
29729
29730         * reflection.c (mono_image_build_metadata): Avoid creation of a default
29731         main module, since it is now done by the managed code.
29732
29733 2003-11-03  Martin Baulig  <martin@ximian.com>
29734
29735         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
29736         `ginst->klass' here.
29737         (method_encode_methodspec): Don't use the `ginst->generic_method's
29738         klass if it's a generic instance, use `ginst->klass' in this case.
29739
29740 2003-11-03  Martin Baulig  <martin@ximian.com>
29741
29742         * reflection.c (mono_image_get_generic_method_param_info):
29743         Removed, use mono_image_get_generic_param_info() instead.
29744         (mono_image_get_type_info): Write the GenericParam table before
29745         the Method table.  This is neccessary because in the GenericParam
29746         table, type parameters of the class (ie. '!0' etc.) must come
29747         before the ones from its generic methods (ie. '!!0' etc).
29748
29749 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29750
29751         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
29752
29753 2003-11-02  Martin Baulig  <martin@ximian.com>
29754
29755         * reflection.c (create_generic_typespec): Take a
29756         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
29757         the generic parameters from it.
29758
29759 2003-11-02  Martin Baulig  <martin@ximian.com>
29760
29761         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
29762         instead of a `MonoClassField *' since we just need the type.
29763         (create_generic_typespec): New static function.  Creates a
29764         TypeSpec token for a generic type declaration.
29765         (mono_image_get_generic_field_token): New static function.
29766         (mono_image_create_token): If we're a FieldBuilder in a generic
29767         type declaration, call mono_image_get_generic_field_token() to get
29768         the token.
29769
29770 2003-11-02  Martin Baulig  <martin@ximian.com>
29771
29772         * reflection.h
29773         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
29774         `MonoReflectionGenericInst *declaring_type' and
29775         `MonoReflectionGenericInst *reflected_type' fields.
29776
29777         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
29778         `MonoReflectionGenericInst *declaring_type' and a
29779         `MonoReflectionGenericInst *reflected_type' argument instead of a
29780         single `MonoReflectionGenericInst *type' one.  Set
29781         `res->declaring_type' and `res->reflected_type' from them.
29782         (mono_reflection_inflate_field): Likewise.      
29783
29784 2003-11-02  Martin Baulig  <martin@ximian.com>
29785
29786         * class.c (mono_class_setup_vtable): Don't store generic methods
29787         in the vtable.  
29788
29789 2003-11-02  Martin Baulig  <martin@ximian.com>
29790
29791         * reflection.h (MonoReflectionGenericInst): Added
29792         `MonoReflectionType *declaring_type'.
29793
29794         * reflection.c (mono_reflection_bind_generic_parameters): Use
29795         `if (tb->parent)' instead of `klass->parent'.
29796
29797 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
29798
29799         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
29800         with an empty ASSEMBLY table.
29801
29802         * reflection.c (mono_image_build_metadata): Avoid using the same loop
29803         variable in the inner and outer loops.
29804
29805 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
29806
29807         * metadata.h (mono_metadata_make_token): Put parentheses around macro
29808         argument.
29809
29810         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
29811         
29812         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
29813         icalls. Instead, do everything in managed code. This is needed since
29814         it is hard to restore the original domain etc. in unmanaged code in the
29815         presence of undeniable exceptions.
29816
29817         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
29818         New icalls to push and pop appdomain refs.
29819
29820 2003-10-31  Martin Baulig  <martin@ximian.com>
29821
29822         * class.c (inflate_generic_type): Renamed to
29823         mono_class_inflate_generic_type() and made it public.
29824
29825         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
29826         New interncall.
29827
29828         * loader.c (mono_field_from_memberref): Also set the retklass for
29829         typespecs.
29830
29831         * fielder.c (mono_image_get_inflated_field_token): New static
29832         method; creates a metadata token for an inflated field.
29833         (mono_image_create_token, fixup_method): Added support for
29834         "MonoInflatedField".
29835         (fieldbuilder_to_mono_class_field): New static function.
29836         (mono_reflection_inflate_field): New public function.
29837
29838         * reflection.h
29839         (MonoReflectionGenericInst): Added `MonoArray *fields'.
29840         (MonoReflectionInflatedField): New typedef.     
29841
29842 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
29843
29844         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
29845         for Solaris and other platforms without s6_addr16
29846
29847 2003-10-30  Martin Baulig  <martin@ximian.com>
29848
29849         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
29850         argument instead of two.
29851         (mono_class_inflate_generic_signature): Likewise.
29852         (inflate_generic_header): Likewise.
29853         (mono_class_inflate_generic_method): Likewise.  In addition, if
29854         `ginst->klass' is set, it becomes the new `method->klass'.
29855
29856         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
29857         field.
29858
29859         * reflection.c (encode_generic_method_sig): Write a 0xa as the
29860         first byte. [FIXME]
29861         (method_encode_methodspec): If we have generic parameters, create
29862         a MethodSpec instead of a MethodRef.
29863         (fixup_method): Added support for "MonoInflatedMethod" and
29864         "MonoInflatedCtor".
29865         (mono_image_create_token): Added support for "MonoInflatedMethod"
29866         and "MonoInflatedCtor".
29867         (inflated_method_get_object): New static function; returns a
29868         managed "System.Reflection.MonoInflatedMethod" object.
29869         (mono_reflection_bind_generic_method_parameters): Return a
29870         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
29871         (mono_reflection_inflate_method_or_ctor): Likewise.
29872         (mono_image_get_generic_method_param_info): Initialize unused
29873         fields to zero.
29874         (mono_image_get_generic_param_info): Likewise.
29875
29876         * reflection.h (MonoReflectionInflatedMethod): New public
29877         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
29878         "S.R.MonoInflatedCtor" classes.
29879
29880         * loader.c (method_from_memberref): If we're a TypeSpec and it
29881         resolves to a generic instance, inflate the method.
29882
29883 2003-10-28  Dick Porter  <dick@ximian.com>
29884
29885         * object.c (mono_runtime_run_main): Convert command-line arguments
29886         into utf8, falling back to the user's locale encoding to do so.
29887
29888 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
29889
29890         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
29891         at this time.
29892
29893         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
29894
29895         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
29896         up icalls at method definition time. Partially fixes #33569.
29897
29898 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
29899
29900         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
29901         marshalling of arrays. Fixes #50116.
29902
29903         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
29904
29905         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
29906         points to a vtable in the dying appdomain.
29907
29908         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
29909         listeners into unmanaged code inside the lock.
29910
29911         * object.c (mono_class_vtable): Turn off typed allocation in non-root
29912         domains and add some comments.
29913
29914 2003-10-25  Martin Baulig  <martin@ximian.com>
29915
29916         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
29917
29918         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
29919
29920         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
29921         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
29922         currently parsing.  Create the generic class and store it in
29923         `generic_inst->klass' before parsing the type arguments.  This is
29924         required to support "recursive" definitions; see mcs/tests/gen-23.cs
29925         for an example.
29926         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
29927         to support recursive typespec entries.
29928
29929         * class.c (mono_class_setup_parent): If our parent is a generic
29930         instance, we may get called before it has its name set.
29931         (mono_class_from_generic): Splitted into
29932         mono_class_create_from_generic() and mono_class_initialize_generic().
29933
29934 2003-10-25  Martin Baulig  <martin@ximian.com>
29935
29936         * icall.c (ves_icall_Type_BindGenericParameters): Return a
29937         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
29938         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
29939         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
29940
29941         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
29942         (create_typespec): Likewise.
29943         (mono_reflection_bind_generic_parameters): Return a
29944         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
29945         (mono_reflection_inflate_method_or_ctor): New public function.
29946
29947         * reflection.h (MonoReflectionGenericInst): New typedef.        
29948
29949 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
29950
29951         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
29952         inside the domain lock. Fixes #49993.
29953         
29954         * object.c (mono_class_vtable): When typed allocation is used, 
29955         allocate vtables in the GC heap instead of in the mempool, since the
29956         vtables contain GC descriptors which are used by the collector even
29957         after the domain owning the mempool is unloaded.
29958
29959         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
29960
29961         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
29962         reflect what it does. Also invalidate mempools instead of freeing
29963         them if a define is set.
29964
29965         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
29966         of the appdomain.
29967         
29968         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
29969         hold the finalizable objects in this domain.
29970
29971         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
29972         appdomain.
29973
29974         * appdomain.c (mono_domain_set): New function to set the current
29975         appdomain, but only if it is not being unloaded.
29976
29977         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
29978         appdomain which is being unloaded.
29979         
29980         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
29981         unloading of the root appdomain.
29982
29983         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
29984         icall to execute a method in another appdomain. Intended as a 
29985         replacement for InternalSetDomain, which can confuse the code 
29986         generation in the JIT.
29987
29988         * appdomain.c (mono_domain_is_unloading): New function to determine
29989         whenever an appdomain is unloading.
29990
29991         * appdomain.c (mono_domain_unload): New function to correctly unload
29992         an appdomain.
29993
29994         * assembly.c (mono_assembly_load_references): Check that an assembly
29995         does not references itself.
29996
29997         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
29998         domain manually, it asks the finalizer thread to do it, then waits for
29999         the result. Also added a timeout.
30000
30001         * icall.c: Register the new icalls.
30002
30003         * threads.h threads.c: Export the mono_gc_stop_world and 
30004         mono_gc_start_world functions.
30005         
30006         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
30007         function to fill out the mempool with 0x2a.
30008
30009 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
30010
30011         * reflection.h (MonoReflectionMethodAux): New structure to store
30012         information which is rarely used, thus is not in the MonoMethod
30013         structure.
30014
30015         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
30016         store the aux info.
30017
30018         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
30019         and marshalling info into the aux structure.
30020
30021         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
30022         from the aux structure.
30023
30024         * loader.c (mono_method_get_param_names): Retrieve the param names from
30025         the aux structure.
30026         
30027 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
30028
30029         * exception.h exception.c: Add AppDomainUnloadedException && fix 
30030         warning.
30031
30032 2003-10-21  Dick Porter  <dick@ximian.com>
30033
30034         * socket-io.c
30035         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
30036         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
30037
30038 2003-10-21  Martin Baulig  <martin@ximian.com>
30039
30040         * reflection.c (mono_reflection_bind_generic_parameters):
30041         `klass->parent' is NULL for interfaces.
30042
30043 2003-10-21  Martin Baulig  <martin@ximian.com>
30044
30045         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30046
30047 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
30048
30049         * exception.c (mono_exception_from_name_msg): New helper function for
30050         creating exceptions and initializing their message field.
30051
30052         * exception.c: Simplify functions using the new helper.
30053
30054         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
30055         New function.
30056
30057         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
30058         mono_raise_exception, since otherwise gcc doesn't generate the function
30059         epilog for raise_exception, confusing the stack unwinding in the JIT.
30060         Fixes #45043.
30061
30062         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30063         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30064         Fixes #49499.
30065
30066 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30067
30068         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30069         utf8.
30070
30071 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
30072
30073         * icall.c: Removed GetUninitializedObject method because
30074           AllocateUninitializedClassInstance does the same.
30075
30076 2003-10-18  Martin Baulig  <martin@ximian.com>
30077
30078         * class.c (inflate_generic_signature): Renamed to
30079         mono_class_inflate_generic_signature() and made it public.
30080         (my_mono_class_from_generic_parameter): New static function; if we
30081         don't already have the generic parameter's MonoClass, create a
30082         very simple one which is just used internally in the runtime and
30083         not passed back to managed code.
30084
30085         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30086
30087         * metadata.h (MonoMethodSignature): Moved the
30088         `MonoGenericParam *gen_params' to the MonoMethodHeader.
30089         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30090
30091         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30092         ves_icall_MonoMethod_GetGenericArguments(); this is now an
30093         interncall on the MonoMethod class, not on MethodInfo.
30094         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30095         calling mono_reflection_bind_generic_method_parameters() directly.
30096
30097         * loader.c (mono_method_get_signature): If this is a MethodSpec;
30098         return the already computed `method->signature'.
30099         (method_from_methodspec): New static function to load a method
30100         from a MethodSpec entry.
30101         (mono_get_method_from_token): Call the new method_from_methodspec()
30102         for MethodSpec tokens.  
30103         (mono_get_method_from_token): If we're a generic method, load the
30104         type parameters.
30105
30106         * reflection.c (mono_image_get_memberref_token): Allow
30107         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30108         table.
30109         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30110         (mono_image_create_token): First check whether it's a generic
30111         method (so we'd need to create a MethodSpec), then do the other
30112         two alternatives.
30113         (mono_reflection_bind_generic_method_parameters): Return a
30114         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30115         called directly from the interncall.
30116
30117 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30118
30119         * reflection.c (load_public_key): Move loading of the public key
30120         into managed code.
30121
30122         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30123
30124         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30125         fields.
30126
30127         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30128         culture, hash_alg and public_key. Fixes #49555.
30129
30130 2003-10-17  Martin Baulig  <martin@ximian.com>
30131
30132         * class.h (MonoGenericInst): Moved this declaration here and added
30133         `MonoMethod *generic_method'.
30134
30135         * icall.c
30136         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30137         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30138
30139         * metadata.c (mono_metadata_type_equal): Two types of
30140         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30141         index; ie. don't compare the address of the `MonoGenericParam'
30142         structure.
30143         (mono_metadata_load_generic_params): Removed the `MonoMethod
30144         *method' argument.
30145
30146         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30147         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30148
30149         * reflection.c (method_encode_signature): Encode the number of
30150         generic parameters.
30151         (encode_generic_method_sig): New static function.
30152         (method_encode_methodspec): New static function; creates an entry
30153         in the MethodSpec table for a generic method.
30154         (mono_image_get_methodspec_token): New static function.
30155         (mono_image_create_token): Call mono_image_get_methodspec_token()
30156         for generic methods.
30157         (mono_reflection_bind_generic_method_parameters): New public
30158         function.  Instantiates a generic method.
30159
30160 2003-10-16  Martin Baulig  <martin@ximian.com>
30161
30162         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30163         *gen_params' here from MonoMethodHeader.
30164
30165         * metadata.c (mono_metadata_parse_method_signature): If we have
30166         generic parameters, initialize `method->gen_params' and then set
30167         the correct `type->data.generic_param' in all the parameters.
30168
30169 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30170
30171         * threads.c (mono_threads_get_default_stacksize): New function to 
30172         return the default stacksize.
30173
30174         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30175         termination of the finalizer thread, since the previous method had
30176         race conditions. Fixes #49628.
30177
30178         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30179         as for the other managed threads.
30180
30181 2003-10-16  Martin Baulig  <martin@ximian.com>
30182
30183         * class.c (inflate_generic_signature): Copy `generic_param_count'
30184         and `gen_params'.
30185
30186         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30187         New interncall.
30188
30189         * metadata.c (mono_metadata_parse_method_signature): Actually set
30190         the `method->generic_param_count' here.
30191         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30192
30193 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30194
30195         * object.h: Add a new field to TypedRef to simplify the implementation
30196         of the REFANY opcodes in the JIT.
30197
30198         * icall.c: Make use of the new field.
30199
30200         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30201         dynamically.
30202
30203 2003-10-15  Martin Baulig  <martin@ximian.com>
30204
30205         * class.c (mono_class_from_gen_param): Renamed to
30206         mono_class_from_generic_parameter() and moved most of the
30207         functionality from mono_reflection_define_generic_parameter()
30208         here; ie. we create a "real" class here.
30209         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30210         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30211         previously been called.
30212
30213         * class.h (MonoGenericParam): Moved the declaration of this struct
30214         here from metadata.h and added `MonoMethod *method'.
30215
30216         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30217         interncall.
30218
30219         * loader.c (mono_get_method_from_token): If we have any generic
30220         parameters, call mono_metadata_load_generic_params() to read them
30221         from the MONO_TABLE_GENERICPAR.
30222
30223         * metadata.c (mono_metadata_load_generic_params): Added
30224         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30225
30226         * metadata.h (MonoMethodSignature): Replaced
30227         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30228         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30229
30230         * reflection.c (mono_reflection_define_generic_parameter): Moved
30231         most of the functionality into the new
30232         mono_class_from_generic_parameter(); set the `method' field if
30233         we're a method parameter.       
30234
30235 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30236
30237         * marshal.c (emit_struct_conv): if native size is 0
30238         emit no code.
30239
30240 2003-10-14  Martin Baulig  <martin@ximian.com>
30241
30242         * icall.c: The generics API has changed in the spec since it was
30243         added to System.Type; these modifications make it match the spec
30244         again.
30245         (ves_icall_Type_GetGenericParameters): Renamed to
30246         `ves_icall_Type_GetGenericArguments'.
30247         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30248         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30249         `ves_icall_MonoType_get_HasGenericArguments'.
30250         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30251         `ves_icall_MonoType_get_IsGenericParameter'.
30252         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30253         this is no interncall anymore.
30254         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30255         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30256
30257 2003-10-14  Martin Baulig  <martin@ximian.com>
30258
30259         * reflection.c (mono_reflection_bind_generic_parameters): Also
30260         inflate generic methods if we're reading the class from IL.
30261
30262 2003-10-13  Martin Baulig  <martin@ximian.com>
30263
30264         * reflection.c (mono_reflection_define_generic_parameter): This
30265         method isn't called directly from the icall anymore; take a
30266         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30267         method generic parameters.
30268         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30269         (method_builder_encode_signature): Encode generic parameters.
30270         (mono_image_get_method_info): Write generic params to the
30271         MONO_TABLE_GENERICPARAM table.
30272
30273         * reflection.h (MonoReflectionMethodBuilder): Added
30274         `MonoArray *generic_params'.
30275
30276         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30277
30278         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30279         wrapper for mono_reflection_define_generic_parameter().
30280         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30281
30282 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30283
30284         * marshal.h: Add missing function to fix build.
30285
30286         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30287         the SetLastError pinvoke attribute.
30288
30289         * marshal.c (mono_marshal_set_last_error): New helper function called
30290         by the generated code.
30291         
30292         * marshal.c (mono_mb_emit_branch): New helper function.
30293
30294         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30295
30296         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30297         classes as parameters and return values of delegates. Fixes #29256. 
30298
30299 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30300
30301         * locales.c: use gint32 in non HAVE_ICU case
30302
30303 2003-10-11  Martin Baulig  <martin@ximian.com>
30304
30305         * mono-debug.c (mono_debug_add_method): Added a workaround for
30306         bug #48591.
30307
30308 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30309
30310         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30311         delegates passed to native code must use the STDCALL calling 
30312         convention. Fixes #35987.
30313
30314 2003-10-10  Martin Baulig  <martin@ximian.com>
30315
30316         * class.c (inflate_generic_type): If we're inflating for a generic
30317         type instance (and not for a generic method), return
30318         MONO_TYPE_MVAR unchanged.
30319
30320 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30321
30322         * string-icalls.c: Join ignores null strings in the source array.
30323         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30324         * threads.c: GetAvailableTheads is slightly more accurate.
30325
30326 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
30327
30328         * threads.h threads.c : add mono_threads_set_default_stacksize
30329         and pass default to CreateThread calls.
30330
30331 2003-10-09  Dick Porter  <dick@ximian.com>
30332
30333         * icall.c:
30334         * locales.h:
30335         * locales.c: Internal calls for constructing CultureInfo and
30336         related objects from libicu (if its available.)
30337
30338 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
30339
30340         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
30341
30342 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30343
30344         * threadpool.c: added an argument to async_invoke_thread that is the
30345         item to process, pass the MonoAsyncResult to the thread start function
30346         when creating a new thread. This way we don't need to acquire any lock
30347         when we're creating a new thread. Readded a semaphore for faster
30348         response times (instead of that Sleep i added).
30349
30350 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
30351
30352         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30353         get daylight change dates better on Windows, fix handling
30354         of platforms without tm_gmtoff.
30355
30356 2003-10-06  Martin Baulig  <martin@ximian.com>
30357
30358         * class.c (inflate_generic_method): Renamed to
30359         mono_class_inflate_generic_method() and made public.
30360         (mono_class_init): Don't inflate the generic methods here.
30361         (mono_class_from_generic): Added `gboolean inflate_methods'
30362         argument.  Inflate the methods here.
30363
30364         * loader.c (mono_method_get_param_names): Ignore instances of
30365         generic types for the moment.
30366
30367         * reflection.c (fixup_method): Added support for inflated methods.
30368         (mono_image_create_token): Use mono_image_get_methodref_token()
30369         for inflated methods.
30370         (mono_custom_attrs_from_param): Ignore instances of generic types
30371         for the moment.
30372         (mono_reflection_bind_generic_parameters): New public function.
30373         Moved all the functionality from
30374         ves_icall_Type_BindGenericParameters() here and added support for
30375         dynamic types.
30376         (mono_reflection_define_generic_parameter): Initialize
30377         `klass->methods' here.
30378
30379         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
30380         functionality into mono_reflection_define_generic_parameter().
30381         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
30382         TypeBuilder, return that TypeBuilder.
30383
30384 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30385
30386         * appdomain.c: removed mono_delegate_semaphore.
30387
30388         * threadpool.c:
30389         (mono_thread_pool_add): moved hash table creation inside and the thread 
30390         creation outside of the critical region.
30391         (mono_thread_pool_finish): removed obsolete code.
30392         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
30393         continue or exit the thread depending on the queue.
30394
30395 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
30396
30397         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
30398         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
30399         handle more bool marshalling options
30400
30401 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
30402
30403         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
30404         arrays of structs. Also add a more descriptive error message when
30405         a structure member is marshalled as LPArray.
30406
30407 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
30408
30409         * marshal.c (mono_marshal_get_native_wrapper): Add support for
30410         marshalling arrays of complex types. Fixes #29098. Also remove an
30411         usused and incomplete function.
30412
30413 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30414
30415         * gc.c: report heap_size - free_bytes as total memory allocated
30416         (bug#49362).
30417
30418 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
30419
30420         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
30421         fix timezone handling problems on Windows.
30422         
30423         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
30424         asserts when the year is outside the range handled by ms the functions.
30425
30426         * class.c (setup_interface_offsets): If the class is an interface,
30427         fill out its interface_offsets slot.
30428
30429 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30430
30431         * threadpool.c: mark threadpool threads as background.
30432
30433 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
30434
30435         * decimal.c - define DECINLINE to nothing if not using GCC
30436
30437 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
30438
30439         * assembly.c: More refcount fixes.
30440
30441 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30442
30443         * string-icalls.c: if we're not trimming, return the same string.
30444         When not splitting, don't create a new string.
30445
30446 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30447
30448         * image.c:
30449         (mono_image_open): increment the ref_count inside the critical section.
30450
30451 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
30452
30453         * image.c (mono_image_open): Fix reference counting bug.
30454
30455 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
30456
30457         * marshal.c (mono_marshal_type_size) struct alignment changed for 
30458         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
30459         64bits. Avoid leak in mono_marshal_get_native_wrapper when
30460         mono_lookup_pinvoke_call throws.        
30461
30462 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
30463
30464         * reflection.c (mono_reflection_parse_type): Fix #49114.
30465
30466         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
30467         temporary workaround for cygwin header problem.
30468
30469         * object.c (mono_object_isinst): Synchronize this with the code
30470         generated by the JIT for casts.
30471
30472 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
30473
30474         * reflection.c (encode_type): Fix #38332.
30475
30476 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
30477
30478         * marshal.c (mono_marshal_method_from_wrapper): New function to return
30479         the original method from the wrapper method.
30480
30481 2003-09-25  Martin Baulig  <martin@ximian.com>
30482
30483         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
30484         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
30485         (ves_icall_Type_get_IsGenericInstance): New interncall.
30486
30487 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
30488
30489         * object.c: fix cast warning in big endian code.
30490
30491 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
30492
30493         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
30494         
30495 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30496
30497         * assembly.c: don't call check_env from mono_assembly_load. It's
30498         already done once in mono_assemblies_init and may cause headaches when
30499         multiple threads are loading assemblies.
30500
30501 2003-09-19  Martin Baulig  <martin@ximian.com>
30502
30503         * reflection.c (mono_reflection_define_generic_parameter): Don't
30504         allocate `klass->methods', set `klass->flags' to
30505         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
30506
30507 2003-09-18  Martin Baulig  <martin@ximian.com>
30508
30509         * class.c (mono_class_init): Don't create `class->methods' if it's
30510         already initialized.
30511
30512         * metadata.c (mono_metadata_load_generic_params): Make this
30513         actually work.
30514
30515         * reflection.c (mono_reflection_define_generic_parameter): Set
30516         parent class and interfaces from the constraints.
30517
30518         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
30519         to keep this struct in sync with the declaration in TypeBuilder.cs.
30520
30521 2003-09-17  Martin Baulig  <martin@ximian.com>
30522
30523         * metadata.h (MonoType): Replaced the data's `int type_param'
30524         field with `MonoGenericParam *generic_param'.
30525         (MonoGenericParam): Added `MonoClass *klass'.
30526
30527         * class.c (mono_class_from_gen_param): Removed the
30528         `MonoImage *image' and `int type_num' arguments.
30529
30530         * metadata.c (mono_metadata_parse_generic_param): New static
30531         method; creates a MonoGenericParam which just contains the index.
30532         (do_mono_metadata_parse_type): Call
30533         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
30534         MONO_TYPE_MVAR.
30535
30536         * reflection.c (mono_image_typedef_or_ref): Generic type
30537         parameters may be in the same assembly, but never use a typedef
30538         for them.
30539         (mono_reflection_define_generic_parameter): We're now creating a
30540         "real" class for the type parameter; it's now safe to call
30541         mono_class_from_mono_type() on the class'es type, it'll do the
30542         right thing.
30543
30544 2003-09-16  Martin Baulig  <martin@ximian.com>
30545
30546         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
30547         `symfile->range_entry_size' and `symfile->class_entry_size' here;
30548         the `symfile' data structure must be fully initialized before it
30549         gets added to the table.
30550
30551 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
30552
30553         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
30554
30555         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
30556         class init trampolines.
30557
30558 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
30559
30560         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
30561         to the built-in profiler to turn off time and allocation profiling
30562         respectively.
30563
30564 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
30565
30566         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
30567         g_direct_equal.
30568
30569         * debug-helpers.c (mono_method_full_name): Print the wrapper type
30570         in human readable form.
30571
30572 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
30573
30574         * reflection.c icall.c: Fixed warnings.
30575
30576         * image.c (load_class_names): Use a temporary hash table to hold the
30577         namespaces in order to avoid doing many string comparisons.
30578
30579         * image.h: Fix typo.
30580
30581         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
30582         Pass NULL instead of g_direct_equal to the GHashTable constructor 
30583         since the NULL case is short-circuited inside g_hash_table_lookup, 
30584         leading to better performance.  
30585
30586         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
30587         obtain the first custom attribute for a given index. Depends on the
30588         CustomAttribute table being sorted by the parent field.
30589
30590         * reflection.c (mono_custom_attrs_from_index): Use the new function 
30591         for better performance.
30592
30593 2003-09-07  Martin Baulig  <martin@ximian.com>
30594
30595         * class.c (mono_class_init): If we're a generic instance, inflate
30596         all our methods instead of loading them from the image.
30597         (mono_class_from_generic): Set `class->methods = gklass->methods'.
30598
30599 2003-09-07  Martin Baulig  <martin@ximian.com>
30600
30601         * mono-debug-debugger.c: Added support for constructors.
30602
30603 2003-09-06  Martin Baulig  <martin@ximian.com>
30604
30605         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
30606         New interncall.
30607
30608         * reflection.c (mono_reflection_setup_generic_class): Call
30609         ensure_runtime_vtable() to create the vtable.
30610
30611 2003-09-05  Martin Baulig  <martin@ximian.com>
30612
30613         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
30614         MONO_TYPE_MVAR.
30615
30616 2003-09-04  Martin Baulig  <martin@ximian.com>
30617
30618         * reflection.c (mono_reflection_define_generic_parameter): Generic
30619         parameters start with zero.
30620
30621 2003-09-04  Martin Baulig  <martin@ximian.com>
30622
30623         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30624
30625         * reflection.h (MonoReflectionGenericParam): New typedef.
30626         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
30627         the generic parameters from the managed TypeBuilder.
30628
30629         * reflection.c (mono_reflection_define_generic_parameter): New function.
30630         (mono_reflection_create_runtime_class): Encode generic parameters.
30631         (mono_reflection_setup_generic_class): New function; this is
30632         called after adding adding all generic params to the TypeBuilder.
30633         (encode_type): Added MONO_TYPE_VAR.
30634
30635 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
30636
30637         * class.h class.c (mono_class_needs_cctor_run): Moved this method
30638         here from the JIT.
30639
30640         * assembly.h assembly.c: Moved the AOT loading code into an assembly
30641         load hook.
30642
30643 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
30644
30645         * reflection.h reflection.c class.h class.c: Delete duplicate 
30646         definition of mono_type_get_name () from reflection.c and export the
30647         one in class.c.
30648
30649         * class.c: Class loading fixes from Bernie Solomon 
30650         (bernard@ugsolutions.com).
30651
30652         * reflection.c: Endianness fixes from Bernie Solomon 
30653         (bernard@ugsolutions.com).
30654         
30655 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
30656
30657         * assembly.h assembly.c: Define a file format version for AOT
30658         libraries.
30659         
30660         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
30661
30662         * appdomain.h (MonoJitInfo): New field to determine whenever the
30663         code is domain neutral.
30664         
30665 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
30666
30667         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
30668
30669 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
30670
30671         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
30672         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
30673         Avoid caching the result since strings must be domain specific. Fixes
30674         #48050.
30675
30676 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
30677
30678         * marshal.c (mono_marshal_init): Make this callable multiple times
30679         since it is hard to find a correct place to call it.
30680
30681         * object.c (mono_runtime_class_init): Execute static constructors in
30682         the correct appdomain.
30683
30684         * image.c (build_guid_table): Handle the case when multiple images have
30685         the same GUID.
30686
30687 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30688
30689         * icall.c: added a couple of icalls for System.Web.
30690
30691 2003-08-28  Martin Baulig  <martin@ximian.com>
30692
30693         * icall.c (ves_icall_Type_BindGenericParameters): Use
30694         `klass->generic_inst' instead of `&klass->byval_arg' in the
30695         mono_type_get_object() call.  The returned type must be
30696         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
30697
30698 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
30699
30700         * NOTES: New file.
30701
30702         * object.c (mono_class_proxy_vtable): Make it thread safe.
30703
30704         * pedump.c: Fix warning.
30705
30706         * object.c appdomain.h: Get rid of metadata_section. 
30707         It is no longer needed and it was causing deadlocks with domain->lock.
30708
30709         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
30710
30711 2003-08-26  Martin Baulig  <martin@ximian.com>
30712
30713         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
30714
30715 2003-08-26  Martin Baulig  <martin@ximian.com>
30716
30717         * pedump.c (main): Call mono_metadata_init(),
30718         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
30719         and mono_loader_init().
30720
30721 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
30722
30723         * loader.h: Add missing include to fix build.
30724
30725         * image.h: mono_image_load_references is no more.
30726
30727         * assembly.c: Reworked assembly loading to make it really thread safe.
30728         After these changes, the assembly returned by mono_assembly_open is
30729         fully initialized, i.e. all its references assemblies are loaded.
30730
30731         * assembly.c (mono_image_load_references): Renamed to 
30732         mono_assembly_load_references, and made private, since clients no
30733         longer need to call it.
30734
30735         * class.c: Removed calls to mono_assembly_load_references, since it was
30736         a source of deadlocks.
30737
30738         * loader.h loader.c class.h class.c: Protect data structures using a 
30739         new lock, the loader lock.
30740
30741         * class.c (mono_class_setup_vtable): Create temporary hash tables and
30742         GPtrArrays only when needed.
30743
30744         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
30745         into empty structures by mcs. Fixes pinvoke7.cs.
30746         
30747         * domain.c (mono_init): Call a new initialization function.
30748
30749         * appdomain.c (mono_runtime_init): Call the new initializer function
30750         of the marshal module.
30751
30752         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
30753         inserted into empty structures by mcs. Fixes pinvoke7.cs.
30754
30755         * marshal.h marshal.c: Added locks around the wrapper caches to make
30756         this module thread safe.
30757
30758         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
30759         this argument. Fixes pinvoke1.exe.
30760
30761 2003-08-25  Lluis Sanchez <lluis@ximian.com>
30762
30763         * object.h: Added call_type field to MonoMethodMessage and the corresponding
30764         enumeration of values. Removed fields to store remote call output values in
30765         MonoAsyncResult. Not needed any more.
30766         * object.c: Initialize call_type and async_result fields in mono_message_init.
30767         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
30768         dispatching the message.
30769         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
30770         async call to finish. To do it use a message with EndInvoke call type.
30771
30772 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
30773
30774         * loader.h loader.c (mono_method_hash_marhal_info): New function which
30775         determines whenever a method has marshalling info.
30776
30777 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30778
30779         * assembly.c: fix the build on windows.
30780
30781 2003-08-22 Lluis Sanchez <lluis@ximian.com>
30782
30783         * object.cs: Fixed bug #47785.
30784
30785 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
30786
30787         * string-icalls.c (StringReplace): If their are no occurances of
30788         the old string found return a reference to the supplied
30789         string. This saves some memory and matches MS behavoir.
30790         
30791 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30792
30793         * socket-io.c: fixed compilation for systems that define AF_INET6
30794         and don't define SOL_IP/SOL_IPV6.
30795
30796 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
30797
30798         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
30799         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
30800
30801         * rawbuffer.c rawbuffer.h: Make this module thread safe.
30802
30803         * domain.c: Make this module thread safe.
30804
30805         * domain.c (mono_init): Call new initialization function.
30806
30807         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
30808         reference types too. Fixes #38812.
30809
30810         * image.c (mono_image_init): Fixed warnings.
30811
30812         * class.c (mono_class_from_typeref): Handle assembly load failure
30813         correctly.
30814
30815         * appdomain.c (add_assemblies_to_domain): Handle the case when
30816         the references of an assembly are not yet loaded.
30817
30818         * metadata.c image.c assembly.c: Moved initialization of global
30819         variables to a separate function called at startup since lazy 
30820         initialization of these variables is not thread safe.
30821         
30822         * image.c assembly.c: Made this module thread safe by adding locks in 
30823         the appropriate places.
30824
30825         * domain.c (mono_init): Call the new initialization functions of the
30826         three modules.
30827
30828 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
30829
30830         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
30831           make a direct call. It is proxy's work to make the call asynchronous.
30832           mono_delegate_end_invoke(): If the targe is a proxy, just collect
30833           the return values.
30834         * object.cs: mono_method_call_message_new(): read AsyncResult and
30835           state object from parameters list, if this info is requested.
30836         * object.h: Added fields to store remote call output values in
30837           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
30838
30839 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30840
30841         * object.h: add needed fields to MonoThread.
30842         * threads.c, threads.h: allow registering a function to cleanup data
30843         allocated per thread by the JIT.
30844
30845 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30846
30847         * loader.h: portability fix by Bernie Solomon
30848         * <bernard@ugsolutions.com>.
30849
30850 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
30851
30852         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
30853         return a MonoArray. This simplifies the code and also ensures that
30854         the cache allways contains an object reference as a value.
30855
30856         * icall.c (ves_icall_get_parameter_info): Simplified using the new
30857         function.
30858
30859 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30860
30861         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
30862         fixes a problem with byte ordering when getting the address family for
30863         a socket.
30864
30865 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
30866
30867         * .cvsignore: Added monosn.
30868
30869         * reflection.h reflection.c loader.c: Added support for parameter
30870         marshalling to dynamically created types. Fixes #47295.
30871
30872 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
30873
30874         * rand.c: remove useless warnings.
30875
30876 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
30877
30878         * class.c: implemented ldtoken for methods and fieldrefs.
30879
30880 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30881
30882         * threadpool.c: when mono_async_invoke was called, no one took care of
30883         monitoring the queue. So if the method invoked took some time and we
30884         got new async invoke requests after 500 ms (the thread created waited
30885         that long in WaitForSingleObject), the new async invoke was not called
30886         until the previous one finished.
30887
30888         This is fixed now. Thanks to Totte for helping with it.
30889
30890 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30891
30892         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
30893
30894 2003-08-11  Martin Baulig  <martin@ximian.com>
30895
30896         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
30897
30898 2003-08-06  Martin Baulig  <martin@ximian.com>
30899
30900         * mono-debug-debugger.c: Added support for static fields,
30901         properties and methods.
30902
30903 2003-08-06  Martin Baulig  <martin@ximian.com>
30904
30905         * mono-debug-debugger.c: Don't store the MonoString's vtable to
30906         make this work for applications with multiple application domains.
30907
30908 2003-08-04  Martin Baulig  <martin@ximian.com>
30909
30910         * mono-debug-debugger.c: Completely reworked the type support; the
30911         most important thing is that we're now just using one single
30912         `MonoType' instance per type.
30913
30914 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
30915
30916         * mono-endian.h, mono-endian.c, icall.c: Added icall
30917         ves_icall_System_Double_AssertEndianity to assert double word endianity
30918         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
30919
30920 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30921
30922         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
30923         support, icalls and fixes.
30924
30925 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
30926
30927         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
30928         classes that are a punctuation character in .NET is not the same a
30929         g_unichar_ispunct.
30930
30931 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30932
30933         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
30934
30935 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
30936
30937         * icall.c: Add new MemCopy internalcall.
30938         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
30939         Simplified code; It is not necessary to handle all the cases here,
30940         as the C# code takes care of it.  Only handle the case of the name
30941         resource embedded into the assembly.
30942
30943         Changed signature to return the data pointer and the size of the
30944         data. 
30945
30946 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
30947
30948         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
30949         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
30950
30951 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
30952
30953         * socket-io.c: ignore EINTR error in select.
30954
30955 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
30956
30957         * class.h, class.c: removed unused subclasses field in MonoClass.
30958
30959 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
30960
30961         * icall.c: improve fix of get_base_definition(). If the parent class
30962           doesn't have the mehod, look at the parent of the parent.
30963         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
30964           to check if a parameter is an in or out parameter
30965           (PARAM_ATTRIBUTE_IN is not set by default).
30966           mono_method_return_message_restore(): Use mono_class_value_size to
30967           get the size of a value type. mono_type_stack_size (parameterType)
30968           does not return the correct value if parameterType is byRef.
30969           mono_load_remote_field(), mono_load_remote_field_new(),
30970           mono_store_remote_field(), mono_store_remote_field_new():
30971           raise exception if the remote call returns an exception.
30972
30973 2003-07-28  Martin Baulig  <martin@ximian.com>
30974
30975         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
30976         method.  This is a wrapper around mono_runtime_invoke() which
30977         boxes the instance object if neccessary.
30978
30979 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30980
30981         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
30982         metadata.h, row-indexes.h, verify.c: first cut of generics support.
30983
30984 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
30985
30986         * icall.c: disable mcs bug workaround.
30987
30988 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
30989
30990         * object.c (mono_runtime_class_init): Take the metadata_section
30991         mutex before obtaining the domain mutex.
30992
30993         * appdomain.h: Added definition of metadata_section mutex here. 
30994
30995         * object.c: define metadata_mutex here.
30996
30997 2003-07-24  Ravi Pratap  <ravi@ximian.com>
30998
30999         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
31000         fixed.
31001
31002 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
31003
31004         * reflection.c: Fix bug #46669
31005
31006 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31007
31008         * exception.c:
31009         * exception.h:
31010         * icall.c:
31011         * object.h: fill in the type name for TypeLoadException.
31012
31013 2003-07-23  Ravi Pratap  <ravi@ximian.com>
31014
31015         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
31016         relationship between TypeBuilders while compiling corlib) and bug
31017         45993 (Array types returned from the runtime while compiling
31018         corlib were from the loaded corlib).
31019
31020 2003-07-22  Martin Baulig  <martin@ximian.com>
31021
31022         * mono-debug-debugger.c: Reworked the type support a bit more;
31023         distinguish between types and classes.
31024
31025 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
31026
31027         * icall.c: add IsArrayImpl icall.
31028
31029 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
31030
31031         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
31032         initializing real_size only once. Also fix bug #46602.
31033
31034 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
31035
31036         * object.c: Renamed mono_metadata_section to metadata_section.
31037
31038 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
31039
31040         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
31041           empty array if the type is an array. Fixed.
31042           ves_icall_MonoMethod_get_base_definition: if the base method
31043           is abstract, get the MethodInfo from the list of methods of
31044           the class.
31045         * reflection.c: ParameterInfo.PositionImpl should be zero-based
31046           and it was 1-based. Fixed in mono_param_get_objects.
31047
31048 2003-07-20  Martin Baulig  <martin@ximian.com>
31049
31050         * mono-debug.h: Set version number to 31.
31051         (mono_debug_init): Added `MonoDomain *' argument.
31052
31053         * mono-debug-debugger.c: Reworked the type support; explicitly
31054         tell the debugger about builtin types; pass the `klass' address to
31055         the debugger.
31056
31057 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
31058
31059         * image.c: Allow new metadata tables to be loaded without a
31060         warning. Also update the warning message to give the new constant value.
31061                 
31062 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31063
31064         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31065         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
31066         array type representation changes.
31067
31068 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31069
31070         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31071         on Environment.Exit () call.
31072
31073 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31074
31075         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31076         requires a matching corlib.
31077
31078 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31079
31080         * Changelog: My editor decided to add a CR to each line. Sorry about that.
31081           Committed again without the CRs.
31082         
31083 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31084
31085         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31086           getting it from the "this" socket instance. Did not work
31087           if the socket is a subclass of Socket.
31088           Also fixed bug #35371.
31089
31090 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31091
31092         * metadata.c: fixed size for TypedByRef.
31093         * loader.c: when searching for a method, consider the vararg amrker.
31094         * unicode.c, decimal.c: constify some arrays.
31095
31096 2003-07-15  Dick Porter  <dick@ximian.com>
31097
31098         * socket-io.c: Fixed compilation for gcc < 3.2.
31099
31100         Fixed compilation for machines that don't have AF_INET6 (thanks to
31101         Bernie Solomon <bernard@ugsolutions.com> for that part.)
31102
31103         Fixed compile warnings.
31104         
31105         Fixed formatting and line endings.
31106
31107 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31108
31109         * socket-io.h:
31110         * socket-io.c: Added IPv6 support.
31111
31112 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31113
31114         * class.c (mono_class_is_assignable_from): New function to implement
31115         the is_assignable_from logic. Used by mono_object_isinst, 
31116         Type::IsAssignableFrom () and the interpreter.
31117
31118         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31119         Object, even interfaces.
31120         
31121         * object.c (mono_object_isinst): Implement in terms of 
31122         is_assignable_from.
31123
31124         * icall.c (ves_icall_type_is_assignable_from): New icall.
31125
31126 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31127
31128         * domain.c (foreach_domain): fix compiler warning.
31129
31130 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31131
31132         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31133         not available on all plattforms
31134
31135 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31136
31137         * image.h image.c: Store the metadata version string in MonoImage.
31138         * icall.c: New icall to retrieve the image version.
31139         * reflection.c (create_dynamic_image): Fill in the image version field
31140         * reflection.c (build_compressed_metadata): Use the image version
31141         from the image structure.
31142
31143 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31144
31145         * appdomain.c: modified comment.
31146         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31147         That will be its last iteration when mono_gc_cleanup is called from
31148         mono_runtime_cleanup and before the domain is unloaded.
31149
31150         Fixes bug #45962.
31151
31152 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31153
31154         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31155         attributes.
31156
31157 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31158
31159         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31160         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31161         Bernie Solomon <bernard@ugsolutions.com>.
31162
31163 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31164
31165         * object.c, object.h: provide mono_object_new_fast() for faster
31166         allocation in some special cases.
31167
31168 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31169
31170         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31171         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31172
31173 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31174
31175         * threadpool.c: fix leaks.
31176
31177 2003-07-01  Dick Porter  <dick@ximian.com>
31178
31179         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31180         using MonoGHashTables.  Fixes threadpool bug posted to list.
31181
31182 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31183
31184         * image.h, image.c: added support to load an assembly from a byte array.
31185         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31186         assembly bundle support.
31187
31188 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31189
31190         * threadpool.c (mono_thread_pool_add): keep a reference to the
31191         AsyncResult to prevent GC
31192
31193 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31194
31195         * class.c: leak fix.
31196
31197 2003-06-25  Dick Porter  <dick@ximian.com>
31198
31199         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31200         for the async object, the WaitHandle object will close the handle.
31201         Fixes bug 45321.
31202
31203 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31204
31205         * class.c: in mono_array_class_get (), lookup from the hash with the
31206         same type we insert: this works around a bug in
31207         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31208         lluis. The real fix will have to wait for after the release.
31209
31210 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31211
31212         * icall.c: fix memory leak when getting type members.
31213
31214 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31215
31216         * reflection.c: added more pubtoken special cases.
31217
31218 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31219
31220         * class.c: handle field offset correctly when class size
31221         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31222
31223 2003-06-20  Martin Baulig  <martin@ximian.com>
31224
31225         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31226         *image' field.
31227
31228 2003-06-20  Martin Baulig  <martin@ximian.com>
31229
31230         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31231
31232 2003-06-20  Martin Baulig  <martin@ximian.com>
31233
31234         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31235         just distinguish between variables in registers and variables at
31236         an offset relative to a register.
31237
31238 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31239
31240         * icall.c: #ifdef out latest changes until mcs is fixed.
31241
31242 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31243
31244         * icall.c: return members in metadata order.
31245
31246 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31247
31248         * icall.c: avoid infinite loop in GetTimeZoneData.
31249
31250 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31251
31252         * icall.c: added Marshal.Prelink/All icalls.
31253
31254 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31255
31256         * object.c, object.h: fix warnings and do some overflow checking
31257         when creating arrays.
31258
31259 2003-06-17  Dick Porter  <dick@ximian.com>
31260
31261         * file-io.h:
31262         * file-io.c: File attributes need to be tweaked slightly when
31263         passed from the managed to the w32 world.
31264
31265 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31266         * profiler.h profiler-private.h profiler.c: Rework last patch
31267         based on suggestion by Paolo.
31268         
31269 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31270
31271         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31272         instruction level coverage data collection.
31273         * profiler.h profiler.c (: Added new callback function which can be
31274         used by the profiler to limit which functions should have coverage
31275         instrumentation.
31276         * profiler.c (mono_profiler_load): Call g_module_build_path to
31277         generate the file name of the profiler library.
31278
31279 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31280
31281         * profiler.c, profiler.h, profiler-private.h: added basic block 
31282         coverage profiling API.
31283
31284 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31285
31286         * reflection.c (mono_reflection_create_runtime_class): Add support
31287         for events in dynamically generated code.
31288
31289         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31290         not allocated.
31291
31292 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31293
31294         * icall.c: when getting timezone info, return reasonable values if we
31295         can't get the actual data.
31296
31297 2003-06-14  Dick Porter  <dick@ximian.com>
31298
31299         * threads.c (start_wrapper): Remove the reference to the thread
31300         object in the TLS data, so the thread object can be finalized.
31301         This won't be reached if the thread threw an uncaught exception,
31302         so those thread handles will stay referenced :-( (This is due to
31303         missing support for scanning thread-specific data in the Boehm GC
31304         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31305
31306 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31307
31308         * reflection.c: ensure streams and tables are first allocated with
31309         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31310
31311 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31312
31313         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31314
31315 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31316
31317         * reflection.c (mono_reflection_create_runtime_class): Add support for
31318         properties to dynamically created classes.
31319         * reflection.c: Fix a few places where non-MonoObjects were inserted
31320         into the tokens hashtable.
31321
31322 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31323
31324         * object.c: some support to handle out of memory exceptions.
31325
31326 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
31327
31328         * marshal.c (mono_marshal_get_native_wrapper): support reference
31329         return types
31330
31331 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31332
31333         * object.h, object.c: more portability stuff from Bernie Solomon.
31334         Unexport mono_object_allocate(). Added mono_object_unbox ().
31335         Set exitcode when an unhandled exception is thrown.
31336
31337 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
31338
31339         * marshal.c (mono_marshal_get_native_wrapper): use custom
31340         marshaler for return types.
31341
31342 2003-06-10  Dick Porter  <dick@ximian.com>
31343
31344         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
31345         ip_mreq is available
31346
31347 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
31348
31349         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
31350         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
31351         by Bernie Solomon <bernard@ugsolutions.com>.
31352
31353 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
31354
31355         * gc.c (mono_gc_init): Avoid error message on shutdown when
31356         GC_DONT_GC=1 is used.
31357
31358         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
31359         New icall to return the GUID of a module.
31360
31361 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31362
31363         * class.c: ensure instance size always includes the parent's size
31364         even whem class size is set explicitly (fixes bug#44294).
31365
31366 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31367
31368         * profiler.h, profiler.c: made the simple profiler thread-safe,
31369         get more accurate timing info. Allow the loading of an
31370         externally-developed profiler module.
31371
31372 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
31373
31374         * marshal.c (mono_marshal_get_native_wrapper): improved
31375         class/byref arguments.
31376         (mono_marshal_get_native_wrapper): better string marshaling support.
31377
31378 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
31379
31380         * class.c: ensure .pack and .size are handled correctly and
31381         simplified layout of static fields.
31382
31383 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
31384
31385         * appdomain.c
31386         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
31387
31388         * loader.c (mono_lookup_pinvoke_call): look for modules in the
31389         current directory (fix bug 44008)
31390
31391 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
31392
31393         * marshal.c (mono_marshal_get_native_wrapper): started support for
31394         custom marshalers.
31395         (mono_delegate_to_ftnptr): consider marshalling specifications
31396
31397 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
31398
31399         * reflection.c, reflection.h: emit custom marshal info.
31400
31401 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31402
31403         * object.c: free the GError.
31404         * icall.c: added CloseEvent_internal.
31405         * threads.[ch]:
31406         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
31407         call.
31408
31409 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
31410
31411         * loader.c (mono_method_get_signature): Add support for dynamic
31412         assemblies.
31413
31414 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
31415
31416         * reflection.c: fixed bug #43905.
31417
31418 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31419
31420         * class.c, domain.c, icall.c, metadata.h, object.h: support for
31421         handling TypedReference and ArgIterator.
31422         * loader.c, loader.h: added function to get signature at call site.
31423
31424 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31425
31426         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
31427         data readonly. Buglets and warning fixes. Some MethodSpec support.
31428
31429 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31430
31431         * class.h, class.c, object.c: remove relative numbering support.
31432
31433 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
31434
31435         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
31436         free the string, until we get a chance to fix Gtk#
31437
31438 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31439
31440         * marshal.c: revert last patch.
31441
31442 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
31443
31444         * icall.c: updates for new mono_class_vtable() not calling
31445         the type constructor anymore.
31446
31447 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31448
31449         * object.h, object.c: separate vtable creation from type
31450         initialization. Make running the .cctor thread safe.
31451
31452 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
31453
31454         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
31455
31456 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
31457
31458         * loader.c (mono_get_method): consider calling convention
31459
31460 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
31461
31462         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
31463         to return the invisible global type for a module.
31464
31465         * reflection.c (mono_image_build_metadata): Emit global fields too.
31466
31467 2003-05-20  Peter Williams  <peterw@ximian.com>
31468
31469         * loader.c (mono_lookup_internal_call): Add a few newlines.
31470
31471 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
31472
31473         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
31474         literal strings.
31475
31476         * appdomain.c (set_domain_search_path): Recalculate search path when
31477         AppDomainSetup.PrivateBinPath changes.
31478
31479         * object.c (mono_class_compute_gc_descriptor): It turns out some
31480         parts of the class libs (like System.Thread) holds pointers to
31481         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
31482         to treat native int a pointer type here.
31483         
31484 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
31485
31486         * appdomain.h, domain.c: add hashtable for jump target resolution.
31487
31488 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
31489
31490         * reflection.h reflection.c icall.c: Added new icalls 
31491         GetManifestResourceInfoInternal, GetModulesInternal and support
31492         infrastructure.
31493
31494 2003-05-16  Dick Porter  <dick@ximian.com>
31495
31496         * icall.c:
31497         * file-io.h:
31498         * file-io.c: Implement System.IO.MonoIO::GetTempPath
31499
31500 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
31501
31502         * object.c: mono_store_remote_field: little fix to previous patch.
31503
31504 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31505
31506         * class.c: add constructors to array classes.
31507         * icall.c: special case array construction for InternalInvoke (),
31508
31509 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
31510
31511         * class.h class.c reflection.c object.c: Added support for field
31512         defaults in dynamically generated classes.
31513
31514 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
31515
31516         * reflection.c: properly encode charset for ddlimport.
31517
31518 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
31519
31520         * threads.c: allow compiling without GC.
31521
31522 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31523
31524         * appdomain.h, object.c, object.h, threads.c, threads.h: added
31525         handling of thread static data.
31526
31527 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31528
31529         * reflection.h, reflection.c: added mono_custom_attrs_free ().
31530
31531 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
31532
31533         * class.c (mono_array_class_get): always set the serializable flags
31534         (mono_array_class_get): always set the SEALED attribute for array types
31535
31536 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
31537
31538         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
31539         attributes (fix for bug 42021).
31540
31541 2003-05-12  Dick Porter  <dick@ximian.com>
31542
31543         * gc.c: Don't run finalizers when the finalizer thread is
31544         finishing up, because the default domain has already been
31545         destroyed.
31546
31547 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
31548
31549         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
31550         value is null, we should throw an exception.   This is slightly
31551         different than the other conventions used for the constructor.
31552
31553 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31554
31555         * socket-io.c: fixed windows build.
31556
31557 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31558
31559         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
31560
31561 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
31562
31563         * object.c (mono_string_new_wrapper): Compatibility fix for MS
31564         compilers.
31565
31566 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
31567
31568         * class.c (mono_class_layout_fields): Add experimental GC aware
31569         auto layout facility. Requires class library changes to work correctly.
31570
31571         (mono_class_setup_vtable): Avoid overriding explicit interface
31572         method implementations. Fixes iface3.exe test.
31573
31574         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
31575         object reference.
31576         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
31577         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
31578
31579         * metadata.h: Add new type classification macro which determines
31580         whenever the type holds an object reference.
31581
31582 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
31583
31584         * marshal.c (mono_marshal_get_native_wrapper): cleanups
31585
31586 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
31587
31588         * gc.c (finalizer_thread): Work around a GC bug.
31589
31590 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
31591
31592         * marshal.c (emit_struct_conv): allow unions
31593
31594         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
31595
31596 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
31597
31598         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
31599
31600 2003-05-06  Martin Baulig  <martin@ximian.com>
31601
31602         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
31603
31604 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31605
31606         * socket-io.c:
31607         (Select_internal): allow NULLs, don't create arrays if not needed.
31608         Coupled with Socket.cs changes.
31609
31610         * threadpool.c:
31611         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
31612         register a finalizer for it that will close the semaphore handle. This
31613         fixes the leak and make Lupus' test run with > 4080 loops.
31614
31615 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
31616
31617         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
31618         Jerome Laban (bug #42287)
31619
31620 2003-05-02  Martin Baulig  <martin@ximian.com>
31621
31622         * debug-mono-symfile.h
31623         (MonoSymbolFile): Moved declaration into mono-debug.h.
31624         (MonoDebugMethodJitInfo): Likewise.
31625         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
31626         argument.
31627         (_mono_debug_address_from_il_offset): Take a
31628         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
31629
31630         * mono-debug.h
31631         (MonoDebugDomainData): New struct.
31632         (mono_debug_get_domain_data): New function.
31633         (mono_debug_add_method): Take an additional `MonoDomain *'
31634         argument.
31635         (mono_debug_source_location_from_address): Likewise.
31636         (mono_debug_il_offset_from_address): Likewise.
31637         (mono_debug_address_from_il_offset): Likewise.
31638
31639 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
31640
31641         * reflection.c: one more check for null type in custom attrs.
31642
31643 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31644
31645         * reflection.c: avoid warning (comparison is always false due to limited
31646         range of data type).
31647
31648 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31649
31650         * icall.c: throw an exception in Type.GetField if the argument 'name'
31651         is NULL.
31652
31653 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
31654
31655         * reflection.c: fixed handling of enums in named arguments to custom
31656         attributes (bug #42123).
31657
31658 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
31659
31660         * reflection.c: use the right array element type and handle
31661         a null for a Type argument, too.
31662
31663 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
31664
31665         * reflection.c: handle arrays as arguments to custom attributes.
31666
31667 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31668
31669         * reflection.c: handle a string value in a custom attr
31670         ctor that takes an object.
31671
31672 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
31673
31674         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
31675         (fix bug #42063)
31676
31677 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
31678
31679         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
31680
31681 2003-04-27  Martin Baulig  <martin@ximian.com>
31682
31683         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
31684         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
31685         MONO_DEBUGGER_EVENT_BREAKPOINT.
31686         (mono_breakpoint_trampoline_code): Removed.
31687         (mono_debugger_event_handler): The last argument is now a
31688         `guint32'.
31689         (mono_debugger_insert_breakpoint_full): Removed the
31690         `use_trampoline' argument.
31691         (mono_debugger_method_has_breakpoint): Likewise.
31692         (mono_debugger_trampoline_breakpoint_callback): Renamed to
31693         mono_debugger_breakpoint_callback(); take the method and
31694         breakpoint number as arguments.
31695
31696 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
31697
31698         * metadata.c: fix off by one when loading parameters attributes.
31699
31700 2003-04-24  Martin Baulig  <martin@ximian.com>
31701
31702         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
31703
31704 2003-04-24  Martin Baulig  <martin@ximian.com>
31705
31706         * mono-debug-debugger.c: Moved all code which interacts with the
31707         Mono Debugger here.
31708
31709         * debug-mono-symfile.c: This code now just deals with the symbol
31710         file itself, the debugger code is now in mono-debug-debugger.c.
31711
31712 2003-04-23  Martin Baulig  <martin@ximian.com>
31713
31714         * mono-debug.c (mono_debug_source_location_from_il_offset):
31715         New method; like mono_debug_source_location_from_address(), but
31716         takes an IL offset instead of a machine address.
31717
31718 2003-04-23  Martin Baulig  <martin@ximian.com>
31719
31720         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
31721         `line' field; this is now computed by the debugger.
31722
31723 2003-04-23  Martin Baulig  <martin@ximian.com>
31724
31725         * mono-debug.[ch]: New files.  This is the new debugging interface.
31726
31727         * mono-debug-debugger.[ch]: New files.  Moved all code which
31728         interacts with the Mono Debugger here.
31729
31730 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
31731
31732         * domain.c (mono_init): initialize mono_defaults.monitor_class
31733
31734 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
31735
31736         * reflection.c (method_encode_code): Add a spicy exception to help
31737         future compiler authors.
31738
31739 2003-04-21  Martin Baulig  <martin@ximian.com>
31740
31741         * icall.c
31742         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
31743         Make this work with relative pathnames; g_filename_to_uri() needs
31744         an absolute filename.
31745
31746 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
31747
31748         * icall.c: Track name changes in Object and ValueType.
31749
31750 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
31751
31752         * metadata.c (mono_type_stack_size): size should be a multiple of
31753         sizeof (gpointer)
31754
31755 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31756
31757         * gc.c:
31758         (internal_domain_finalize): moved into mono_domain_finalize. No need
31759         to create another thread because the finalizers will be run in the
31760         finalizer thread.
31761         
31762         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
31763         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
31764         to be run (MS does this too).
31765
31766 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
31767
31768         * object.c (mono_class_compute_gc_descriptor): Update comment.
31769
31770         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
31771
31772         * image.h: Add synchronized wrapper cache.
31773
31774         * image.c (do_mono_image_open): Initialize cache.
31775
31776         * reflection.c (create_dynamic_mono_image): Initialize cache.
31777
31778 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31779
31780         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
31781         ves_icall_System_Buffer_ByteLengthInternal.
31782
31783 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31784
31785         * reflection.c: setup klass->nested_in earlier. Allow
31786         a dash in the assembly name.
31787
31788 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
31789
31790         * metadata.c (mono_type_to_unmanaged): dont access
31791         type->data.klass for MONO_TYPE_OBJECT
31792         (mono_type_to_unmanaged): consider System.Delegate class
31793
31794 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
31795
31796         * class.c: just setup supertypes in the proper place instead of
31797         initializing the full element class for arrays.
31798
31799 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31800
31801         * class.c: ensure the element class of arrays is initialized.
31802         Setup the supertype info for array classes, too.
31803
31804 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
31805
31806         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
31807
31808 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31809
31810         * Makefile.am: re-added -m option when running cygpath. This way,
31811         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
31812         separator.
31813         * mono-config.c: same codepath for locating mono config file for WIN32
31814         and the rest.
31815         * assembly.c: if mono_assembly_setrootdir is called, don't override
31816         the value set.
31817
31818 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31819
31820         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
31821         MONO_ASSEMBLIES variable.
31822
31823 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
31824
31825         * icall.c: added Assembly::GetNamespaces() icall.
31826
31827 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31828
31829         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
31830
31831 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
31832
31833         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
31834         * object.c: fixed bug in the construction of vtable for proxies
31835
31836 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
31837
31838         * object.c (mono_array_new): Mark mono_array_new as an icall.
31839
31840 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31841
31842         * class.c: fixed test for public method when overriding interfaces.
31843         Closes bug #40970.
31844
31845 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31846
31847         * appdomain.h, domain.c: added mono_domain_foreach() to
31848         be able to access the currently loaded appdomains.
31849         * object.c: make string interning work across sppdomains.
31850         Mark some functions for use as icalls.
31851
31852 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
31853
31854         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
31855
31856         * reflection.h reflection.c: Allocate long living data using 
31857         GC_MALLOC_ATOMIC so the collector does not need to scan it.
31858
31859         * reflection.c: Double the allocation size in streams instead of
31860         increasing it, to prevent unneccesary copying on large assemblies.
31861         
31862         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
31863         creation if the assembly does not have the Run flag set.
31864
31865 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
31866
31867         * class.h: avoid the C++ keywords in header files (Jerome Laban
31868         spotted and fixed this).
31869
31870 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31871
31872         * object.c:
31873         (mono_unhandled_exception): fill in the arguments for the
31874         UnhandledException event. Only trigger that event for the default
31875         domain (as MS does).
31876
31877 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
31878
31879         * object.c: Improve typed allocation stuff based on suggestions from
31880         Paolo. Also turn it on if the GC library supports it.
31881
31882 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
31883
31884         * object.c object.h class.h: Added experimental typed allocation
31885         facility using the interfaces in gc_gcj.h.
31886
31887         * os/gc_wrapper.h: Added new include files.
31888         
31889 2003-04-03  Martin Baulig  <martin@ximian.com>
31890
31891         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
31892         which is not yet enabled by default.
31893
31894         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
31895         functions.
31896         (mono_gc_lock, mono_gc_unlock): New static functions.
31897
31898         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
31899         functions; stop/start the world for the garbage collector.  This
31900         is using the windows API; we need to complete the SuspendThread()/
31901         ResumeThread() implementation in the io-layer to make this work on Unix.
31902         (mono_gc_push_all_stacks): New public function; tells the garbage
31903         collector about the stack pointers from all managed threads.
31904
31905 2003-04-03  Martin Baulig  <martin@ximian.com>
31906
31907         * object.h (MonoThread): Added `gpointer stack_ptr'.
31908
31909         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
31910
31911 2003-04-03  Martin Baulig  <martin@ximian.com>
31912
31913         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
31914
31915 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
31916
31917         * reflection.c (typebuilder_setup_fields): Initialize field.first and
31918         field.last.
31919
31920 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
31921
31922         * loader.c (mono_lookup_internal_call): Report the corlib that is
31923         out of sync.
31924
31925 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
31926
31927         * icall.c (ves_icall_type_GetTypeCode): fixed check for
31928         System.DBNull (it's class not valuetype).
31929
31930 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31931
31932         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
31933         if the array method was already assigned a token (fixes bug#40646).
31934
31935 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
31936
31937         * reflection.c (mono_reflection_get_type): Attempt type resolve even
31938         if no assembly is given.
31939
31940 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
31941
31942         * metadata.h: Added the new tables.
31943
31944         * row-indexes.h: Added definitions for new tables.
31945
31946         * metadata.c: Add schemas for new tables, and add support for
31947         computing the sizes of them.
31948
31949         * class.c: Update for handling the new type cases.
31950
31951 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
31952
31953         * metadata.h (MONO_TYPE_IS_VOID): new macro
31954
31955 2003-03-31  Martin Baulig  <martin@ximian.com>
31956
31957         * threads.h (MonoThreadCallbacks): Added `thread_created'.
31958
31959         * threads.c (mono_thread_new_init): Call `thread_created' in the
31960         mono_thread_callbacks.
31961
31962 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
31963
31964         * loader.h: added marshalbyrefobject_class to mono_defaults
31965         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
31966         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
31967           generation of output parameters.
31968           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
31969         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
31970           contextbound and the target object belongs to the context of the caller.
31971         * object.h: added context and unwrapped_server variables in MonoRealProxy.
31972         * object.c: Implemented support for interfaces and abstract classes
31973           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
31974           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
31975
31976 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
31977
31978         * class.h class.c (mono_class_is_subclass_of): New function.
31979         
31980         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
31981         routines for most common case (calls from ArrayList::ToArray).
31982
31983         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
31984         routine so programs which call Environment::Exit() can be profiled.
31985
31986         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
31987         Added MONO_ARCH_SAVE_REGS.
31988
31989         * icall.c (ves_icall_type_is_subtype_of): Use new function.
31990
31991 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
31992
31993         * blob.h: Add a couple of new MonoType types definitions.
31994
31995         * tabledefs.h: Add a couple of new call convs.
31996
31997 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
31998
31999         * reflection.h (MonoReflectionDynamicAssembly): track changes in
32000         the layout of the class.
32001
32002         * reflection.c (alloc_table): double the size on overflow to avoid
32003         unnecessary copying.
32004
32005         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
32006         avoid filling out metadata tables and blobs. Also set mb->ilgen to
32007         null so it can be garbage collected.
32008         
32009 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
32010
32011         * reflection.c (mono_reflection_get_type): Return the resolved type
32012         only if it is in the assembly we searched.
32013
32014         * reflection.c (ensure_runtime_vtable): Initialize method slots.
32015
32016         * class.c (mono_class_setup_vtable): Set the slot of the overriding
32017         method.
32018
32019 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32020
32021         * appdomain.c:
32022         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
32023         the right one is 'file:///blah', but MS allows it.
32024         * assembly.c:
32025         (mono_assembly_open): allow 'file://blah'
32026
32027         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
32028
32029 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
32030
32031         * socket-io.c: fixes bug #40310.
32032
32033 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
32034
32035         * reflection.c (mono_reflection_parse_type): handle deeply nested
32036         types correctly.
32037
32038         * reflection.c (mono_image_create_token): Use unique token values
32039         since they will be put into a hash table.
32040
32041         * class.c (mono_class_setup_vtable): If a method occurs in more than
32042         one place in the vtable, and it gets overriden, then change the
32043         other occurances too.
32044
32045         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
32046         object as return type.
32047
32048 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32049
32050         * icall.c: Deleted "ToString" implementation for double and float
32051         because they are full implemented in managed code.
32052
32053 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32054
32055         * reflection.c, reflection.h: implemented and exported functions
32056         to retrieve info about custom attributes.
32057
32058 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32059
32060         * appdomain.c: moved Uri handling to assembly.c
32061         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32062         work when using a file Uri in *nix and windows.
32063
32064         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32065         GetReferencedAssemblies.
32066
32067 2003-03-18  Dick Porter  <dick@ximian.com>
32068
32069         * icall.c: Rename a couple of internal calls
32070
32071         * threads.c: Set the thread state to Stopped when a thread exits.
32072         Fixes bug 39377.
32073
32074 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
32075
32076         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32077         New icall.
32078
32079         * object.c (mono_class_vtable): fix warning.
32080
32081 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
32082
32083         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32084
32085         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32086         memory.
32087         (method_encode_clauses): Create exception info structures in the right
32088         order.
32089         (mono_reflection_setup_internal_class): Initialize supertypes field.
32090
32091         * class.c object.c: Handle interfaces which implement other interfaces 
32092         correctly.
32093
32094         * class.h class.c: Move the supertypes array initialization code into 
32095         a separate function so it can be used for dynamic types too. Also call
32096         it earlier, in mono_class_init(), since it can be used before the
32097         type is initialized.
32098
32099 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32100
32101         * Makefile.am:
32102         * assembly.c:
32103         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32104
32105         * appdomain.c:
32106         * appdomain.h:
32107         * marshal.c:
32108         * object.c: remove warnings.
32109
32110 2003-03-13  Martin Baulig  <martin@ximian.com>
32111
32112         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32113         (MonoDebugLexicalBlockEntry): New types.
32114
32115         * debug-mono-symfile.c
32116         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32117
32118 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32119
32120         * process.c: ret can be any non-zero value accroding to MS doc.
32121
32122 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32123
32124         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32125         fixing a warning for a miss-used prototype, would have cause
32126         random memory corruption.
32127
32128 2003-03-07  Martin Baulig  <martin@ximian.com>
32129
32130         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32131         getting really annoying ....
32132
32133 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32134
32135         * reflection.c (fixup_method): added support for array methods.
32136
32137 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32138
32139         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32140         (pointed out by Michael Adams).
32141
32142 2003-03-04  Dick Porter  <dick@ximian.com>
32143
32144         * icall.c: Temporarily reverted the Double and Single ToString()
32145         change, because it broke nunit.
32146
32147 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32148
32149         * object.h, threads.h: make include files compatible with C++
32150         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32151
32152 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32153
32154         * icall.c: Erased ToString helper functions for Double and Single.
32155         Now, that implementations ar all in managed code (Double and Single
32156         Formatters).
32157
32158 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32159
32160         * appdomain.c: Added method for initializing the default context of
32161         a domain. Added internal call for getting the default context.
32162         * appdomain.h: Added context variable in MonoDomain struct.
32163         * domain.c: mono_domain_set also sets the default context of the domain
32164         * icall.c: Mapped internal method InternalGetDefaultContext.
32165         * object.c: mono_object_get_virtual_method returns always a remoting
32166         wrapper if the object is a transparent proxy.
32167         mono_runtime_invoke_array: when creating an object by calling the
32168         constructor, if the created object is a proxy, then the constructor should
32169         be called using the a remoting wrapper.
32170
32171 2003-03-03  Dick Porter  <dick@ximian.com>
32172
32173         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32174         variable so it compiles on solaris.  Problem spotted by
32175         Christopher Taylor <ct@cs.clemson.edu>
32176
32177 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32178
32179         * appdomain.c:
32180         (get_info_from_assembly_name): don't leak value.
32181
32182         * icall.c:
32183         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32184         result.
32185
32186 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32187
32188         * assembly.c: export mono_image_load_references ().
32189         * class.c: handle function pointers. mono_class_from_name() now
32190         supports nested type names directly.
32191
32192 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32193
32194         * reflection.h reflection.c: Encode already created dynamic methods 
32195         and fields correctly as a DEF instead of a REF.
32196
32197         * reflection.c: Get rid of the force_ref argument to 
32198         mono_image_typedef_or_ref since it was wrong in the first place.
32199
32200         * string-icalls.c: add error checking to string constructors according
32201         to the MSDN docs.
32202
32203         * reflection.c: Emit types in the order their TypeBuilders were 
32204         created. Previously, a new table index was assigned to each type before
32205         the tables were emitted. This was wrong because the signature blob
32206         might already refer to a type by its original table index.
32207
32208 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32209
32210         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32211         change.
32212         
32213 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32214
32215         * Makefile.am: make assemblies dir have \ instead of / on windows.
32216
32217 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32218
32219         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32220         iterate over the NESTEDCLASS table using a linear search since the
32221         table is not guaranteed to be sorted by the secondary key.
32222
32223         * class.c (mono_class_create_from_typedef): fixed up call to
32224         mono_metadata_nesting_typedef.
32225         
32226 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32227
32228         * marshal.c (mono_string_to_byvalstr): clear the memory as
32229         suggested by Jerome Laban <jlaban@wanadoo.fr>
32230
32231 2003-02-26  Dick Porter  <dick@ximian.com>
32232
32233         * process.c: Cope with padding in .rsrc blocks
32234
32235 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32236
32237         * metadata.h: reverted the filter_len change, it breaks reflection
32238         
32239 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32240
32241         * metadata.h: added a new field to store the filter_len
32242         
32243
32244 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32245
32246         * reflection.c: handle custom attributes for types and members
32247         created with Reflection.Emit (bug#38422).
32248
32249 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32250
32251         * reflection.c: define RTSpecialName automatically for constructors for
32252         compatibility with MS.NET.
32253
32254         * reflection.c (mono_reflection_create_runtime_class): initialize
32255         nested_in field of dynamically created classes.
32256
32257 2003-02-22  Martin Baulig  <martin@ximian.com>
32258
32259         * debug-mono-symfile.h: Incremented version number.
32260
32261 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32262
32263         * object.h icall.c process.c: fix warnings.
32264
32265 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32266
32267         * appdomain.h appdomain.c:
32268         (mono_domain_try_type_resolve): split the 
32269         name_or_tb argument into a name and a tb argument.
32270         (mono_domain_has_type_resolve): new function to check whenever the
32271         application has registered a TypeResolve event handler.
32272         
32273         * icall.c reflection.h reflection.c: move the type resolve logic into
32274         mono_reflection_get_type () so it will be invoked when 
32275         Assembly::GetType () is called.
32276
32277         * reflection.c:
32278         (mono_reflection_get_type): renamed to get_type_internal.
32279         (mono_reflection_get_type): fixed type name generation so it works 
32280         for nested types too.
32281         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32282         costly type name generation if there is no resolve event handler.
32283
32284 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32285
32286         * class.c, image.c: load exported types from file references.
32287
32288 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32289
32290         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32291           used to cache the managed methods used to create proxies and make 
32292           remote invocation of methods.
32293         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32294           to be remotely created.
32295         * object.c: Modified the method mono_class_vtable(). It now initializes 
32296           the remote flag of the vtable. Modified mono_object_new_specific(), 
32297           so now it checks the remote flag.
32298         * icall.c: Added a couple of internal methods, one for enabling instance 
32299           creation interception for a type, and one for creating objects bypassing
32300           the remote check.
32301
32302 2003-02-18  Martin Baulig  <martin@ximian.com>
32303
32304         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32305         New interncall to get a method's metadata token.
32306
32307         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32308         New interncall for the debugger.
32309
32310 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32311
32312         * class.c (mono_class_setup_vtable): allocate supertype array
32313
32314 2003-02-18  Martin Baulig  <martin@ximian.com>
32315
32316         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32317
32318 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32319
32320         * reflection.c:
32321         (assembly_name_to_aname): jump over unknown properties (i've found
32322         something like: 'type, assembly, version=xxx, custom=null, public...',
32323         so now will ignore custom=null and still get the rest of the values).
32324
32325 2003-02-17  Dick Porter  <dick@ximian.com>
32326
32327         * threads.c: Have Thread.Start() wait for a semaphore to signal
32328         that the thread has set up all its local data.  This fixes bug
32329         34323, where Abort() raced the new thread's TLS data.
32330
32331         Also removes the handle_store() call from start_wrapper, because
32332         threads are now always created suspended and there is no longer a
32333         race between the parent and child threads to store the info.
32334
32335 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
32336
32337         * image.c: explain the #- heap issue in a message, hopefully
32338         avoiding FAQs on mono-list.
32339
32340 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32341
32342         * icall.c:
32343         (GetEntryAssembly): if the domain has not invoked
32344         AppDomain.ExecuteAssembly yet, return the assembly of the default
32345         AppDomain.
32346
32347 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
32348
32349         * class.c (mono_ldtoken): make it work in dynamic assemblies.
32350
32351 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
32352
32353         * metadata.c, reflection.c: simple speedup to type hash
32354         and equals code.
32355
32356 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
32357
32358         * image.c, image.h, class.c, assembly.c: move module loading
32359         to MonoImage. When loading metadata, consider alignemnet from
32360         the start of metadata, not from the metadata address in memory.
32361
32362 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
32363
32364         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
32365         AssemblyBuilder objects. Factored out custom attribute creation into
32366         a separate function.
32367         (create_custom_attr): new function to create custom attributes.
32368
32369 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
32370
32371         * Makefile.am: Got tired of typing the full pathname to pedump.
32372         Until there is another option, am installing this.
32373
32374 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
32375
32376         * class.c (class_compute_field_layout): always set field->parent 
32377         (mono_ldtoken): use mono_defaults.fieldhandle_class;
32378
32379 2003-02-11  Dick Porter  <dick@ximian.com>
32380
32381         * threads-types.h:
32382         * monitor.c: Rewrote Monitor, making lock much faster and
32383         Pulse/Wait work as specified.  Also uses much fewer handles, and only
32384         creates them as needed.
32385
32386         * exception.c: Added SynchronizationLockException
32387
32388         * threads.c: Deleted old Monitor implementation.  The new one is
32389         in a new file.
32390
32391 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
32392
32393         * class.c: handled TypedReference type code. Set the correct size for
32394         class data. Setup interface_offsets for interface classes, too.
32395
32396 2003-02-09  Martin Baulig  <martin@ximian.com>
32397
32398         * debug-mono-symfile.h: Reflect latest symbol writer changes.
32399
32400 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
32401
32402         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
32403         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
32404         * object.c: fixed mono_object_get_virtual_method () for interfaces.
32405         * verify.c: check for code that runs after the end of the method.
32406
32407 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32408
32409         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
32410         "System.Math::Round2".
32411         * sysmath.h: Added Floor, Round and Round2 definitions.
32412         * sysmath.c: Modified certain functions that were not 100% compliant
32413         with MS.NET (math precision) and added the implementation of Floor,
32414         Round and Round2.
32415
32416 2003-02-07  Martin Baulig  <martin@ximian.com>
32417
32418         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
32419
32420 2003-02-07  Martin Baulig  <martin@ximian.com>
32421
32422         * debug-mono-symfile.c: Reflected latest symwriter changes.
32423         (mono_debug_create_mono_symbol_file): Removed.
32424         (mono_debug_open_mono_symbol_file): Take an argument which
32425         specifies whether to create a dynamic symbol file.
32426
32427 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
32428
32429         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
32430
32431 2003-02-05  Martin Baulig  <martin@ximian.com>
32432
32433         * reflection.c (mono_image_build_metadata): Make this public,
32434         protect it against being called multiple times, don't create
32435         resources and don't build the compressed metadata here.
32436         (mono_image_create_pefile): Do this here.
32437
32438         * icall.c
32439         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
32440
32441 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32442
32443         * socket-io.c: fixed bug #36322.
32444
32445 2003-02-06  Piers Haken <piersh@friskit.com>
32446
32447         * appdomain.[ch]:
32448         * class.h:
32449         * debug-mono-symfile.c:
32450         * icall.c:
32451         * loader.c:
32452         * mono-config.c:
32453         * monosn.c:
32454         * reflection.c:
32455         * socket-io.c: warning cleanups
32456
32457 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
32458
32459         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
32460         function. works like remoting invoke, but does a check for the Proxy first.
32461
32462 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
32463
32464         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
32465
32466 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
32467
32468         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
32469         array of pointers.
32470         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
32471         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
32472
32473         * object.c (mono_store_remote_field_new): used by the new jit
32474         instead of mono_store_remote_field
32475         (mono_load_remote_field_new): used by the new jit
32476         instead of mono_load_remote_field
32477
32478 2003-02-05  Patrik Torstensson
32479
32480         * appdomain.c: changed unload to take the domain id instead
32481         of domain
32482         
32483         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
32484
32485
32486 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32487
32488         * appdomain.c: don't look for assemblies in ApplicationBase if
32489         PrivateBinPathProbe is set.
32490
32491 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32492
32493         * object.c: make the first argument in main_args contain the absolute
32494         path to the assembly. Fixes bug #37511.
32495
32496 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32497
32498         * icall.c: get correct UTC offset for countries not using daylight
32499         time saving. Fixes bug #30030.
32500
32501 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32502
32503         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
32504         and 1 are the family).
32505
32506 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
32507
32508         * icall.c (ves_icall_InternalExecute): removed wrong assertion
32509
32510         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
32511
32512 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
32513
32514         * reflection.c: added support for SignatureHelper tokens, which is
32515         needed by the Calli opcode.
32516
32517         * reflection.h: track changes to SignatureHelper class.
32518
32519         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
32520
32521 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32522
32523         * appdomain.c: fixed loading assemblies from PrivateBinPath.
32524
32525 2003-02-03  Patrik Torstensson
32526         * appdomain.[c|h], domain.c : 
32527          - Added support for getting a domain via domain id
32528          - Support for setting and getting domain from System.AppDomain 
32529            (used in cross appdomain channel)
32530          - Added support for get/set for a MonoAppContext on a thread 
32531            (Context class in System.Runtime.Remoting.Contexts),
32532          - Removed hack in Get/SetData and ExecuteAssembly.
32533         
32534         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
32535         the managed world to get control when a proxy is created.
32536
32537         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
32538         
32539 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
32540
32541         * icall.c
32542         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32543         Populate the codebase field as well.
32544
32545 2003-02-02  Martin Baulig  <martin@ximian.com>
32546
32547         * debug-mono-symfile.c
32548         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
32549         (mono_debug_symfile_add_method): Allow interncalls.
32550
32551 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32552
32553         * icall.c: throw parse exception if strtod fails or the string is empty.
32554
32555 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
32556
32557         * marshal.c: handle object type separately from defined
32558         class types.
32559
32560 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
32561
32562         * marshal.c: handle NATIVE_LPSTR for strings when it's
32563         explicitly specified.
32564
32565 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
32566
32567         * reflection.c, reflection.h, icall.c: setup the reflection
32568         handle cache for ModuleBuilders and AssemblyBuilders.
32569
32570 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
32571
32572         * reflection.c (reflection_methodbuilder_to_mono_method): set
32573         pinvoke flag
32574
32575 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32576
32577         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
32578
32579 2003-01-29  Dick Porter  <dick@ximian.com>
32580
32581         * threads.c: No need for the fake_thread kludge now that Thread
32582         doesn't run a class constructor
32583         
32584 2003-01-29  Dick Porter  <dick@ximian.com>
32585
32586         * threads.c: Use g_direct_hash instead of the rather bogus
32587         g_int_hash
32588
32589 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
32590
32591         * marshal.c (mono_marshal_get_native_wrapper): add check for null
32592         (fix pinvoke12.exe)
32593         (mono_marshal_get_struct_to_ptr): generate valid IL code
32594         (mono_marshal_get_ptr_to_struct): generate valid IL code
32595         (*): correctly set sig->pinvoke, we need to memdup the signature
32596         to do that
32597
32598 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32599
32600         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
32601         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
32602
32603 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32604
32605         * profiler.c: provide more callers information.
32606
32607 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
32608
32609         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
32610
32611         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
32612
32613         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
32614
32615 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32616
32617         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
32618         exception instead of going into an infinite loop on dates which it 
32619         can't yet handle.
32620
32621         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
32622         out-of-range exception if needed.
32623
32624         * class.c (mono_class_setup_vtable): allow a virtual method to provide
32625         an implementation for an interface method and to override an inherited
32626         method at the same time. 
32627         Imagine a scenario when a virtual method is used to override a
32628         virtual abstract method in a parent class, and this same method 
32629         provides an implementation for an method inherited from an interface. 
32630         In this case, the interface resolution code will set im->slot, which 
32631         means that the virtual method override pass will skip this method 
32632         which means a pointer to the abstract method inherited from the parent
32633         will remain in the vtable of this non-abstract class.
32634
32635         * class.c: (mono_class_setup_vtable): continue search for a real 
32636         method if only an abstract method is found.     
32637
32638 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32639
32640         * reflection.c: add size to encoding for ByValStr and ByValArray
32641         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
32642
32643 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32644
32645         * class.c (mono_class_setup_vtable): pass the override info as an
32646         argument.
32647
32648         * class.c (mono_class_setup_vtable): set the slot of overriding methods
32649         correctly.
32650         
32651         * reflection.c (ensure_runtime_vtable); add support for method 
32652         overrides.
32653         
32654 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32655
32656         * reflection.c (resolution_scope_from_image): Hack to work to work with
32657         dynamic assemblies.
32658
32659         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
32660         added a 'force_ref' argument to force this function to allways return 
32661         a TypeRef. This is needed by mono_image_get_memberref_token ().
32662         
32663 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32664
32665         * reflection.c (mono_image_get_type_info): interfaces really don't have
32666         a parent.
32667
32668         * reflection.c (mono_image_basic_init): fill out missing fields of
32669         image structure.
32670
32671         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
32672         dynamic assemblies. This is required so dynamic assemblies show up in
32673         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
32674         Type::GetType() etc. This is consistent with MS behaviour.
32675
32676         * image.c image.h reflection.c: add newly created classes to the name 
32677         cache so mono_class_get () will find them.      
32678
32679 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32680
32681         First part of changes to get IKVM.NET running under mono.
32682         
32683         * appdomain.h, appdomain.c: added new function 
32684         mono_domain_try_type_resolve() which will emit TypeResolve events. 
32685         This function will call AppDomain::DoTypeResolve to do the actual work.
32686
32687         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
32688         moved existing code dealing with dynamic tokens to a new function 
32689         called mono_reflection_lookup_dynamic_token (). This function will 
32690         raise TypeResolve events when appropriate. Since reflection.c is not 
32691         part of libmetadata, a new hook function called 
32692         mono_lookup_dynamic_token() is added to class.c which will call this.
32693
32694         * assembly.h assembly.c: make the invoke_load_hook function public,
32695         so it can be called for dynamic assemblies.
32696
32697         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
32698
32699         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
32700         type isn't found.
32701
32702         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
32703         MonoGHashTable, since it contains pointers to objects which the GC 
32704         needs to track.
32705
32706         * assembly.c (search_loaded): remove unused variable.
32707         
32708 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
32709
32710         * object.c: fixed issue exposed by gcc-generated IL programs
32711         that use RVA data for pointers.
32712
32713 2003-01-25  Martin Baulig  <martin@ximian.com>
32714
32715         * threads.c (start_wrapper): Moved the initialization of
32716         `start_func' above the mono_new_thread_init() call to which we
32717         pass it as argument.
32718
32719 2003-01-24  Martin Baulig  <martin@ximian.com>
32720
32721         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
32722         the MonoThread pointer.
32723
32724 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
32725
32726         * icall.c: Rename `PowImpl' to Pow.
32727
32728 2003-01-23  Dick Porter  <dick@ximian.com>
32729
32730         * threads.c (start_wrapper): Create a Thread object if needed, so
32731         the Main() thread can do the class initialisation in a subthread
32732         that has been set up to allow managed code execution.
32733
32734         Pass the thread ID instead of the MonoThread pointer to the thread
32735         start and attach callbacks.  This change is required, because the
32736         jit thread start callback must be called _before_ the Thread
32737         object can be created.
32738         
32739         (mono_thread_init): Removed much object creation code that is no
32740         longer needed.  No managed code is called from here now.
32741
32742         * object.c (mono_runtime_exec_managed_code): Create a subthread
32743         for Main, and call back to the runtime to use it.
32744         Set the exit code when Main exits.
32745
32746         * gc.c: Make sure domain finalisation happens in a subthread.
32747         Re-enable threaded GC, fixing bug 31333 (again).
32748
32749         * environment.c: System.Environment internall calls (so far just
32750         ExitCode is here, the others are still in icall.c)
32751
32752         * appdomain.c (mono_runtime_cleanup): All threads running managed
32753         code should have finished before mono_runtime_cleanup() is
32754         reached, so no need to clean up threads.
32755
32756 2003-01-22  Martin Baulig  <martin@ximian.com>
32757
32758         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
32759         `gpointer func' arguments.      
32760         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
32761         but added `MonoThread *thread' argument.
32762         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
32763
32764         * threads.c (mono_new_thread_init): Added `gpointer func' argument
32765         and pass it to the mono_thread_start_cb callback.
32766         (mono_install_thread_callbacks): New public function to install a
32767         set of callbacks which are set by the debugger.
32768         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
32769
32770 2003-01-22  Martin Baulig  <martin@ximian.com>
32771
32772         * Makefile.am: Install debug-mono-symfile.h.
32773
32774 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
32775
32776         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
32777
32778 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
32779
32780         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
32781         * class.c (mono_ptr_class_get): correctly set access levels of pointers
32782         (mono_array_class_get): correctly set access levels of arrays
32783
32784 2003-01-20      Patrik Torstensson
32785         * image.h (MonoAssemblyName): changed major, minor, build, revision
32786         from signed to unsigned.
32787
32788 2003-01-20  sean kasun <skasun@azstarnet.com>
32789
32790         * reflection.c (load_cattr_value): Now this handles
32791         MONO_TYPE_SZARRAY.  Fixes bug #35629
32792
32793 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
32794
32795         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
32796         integer value
32797
32798 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32799
32800         * decimal.c: fixed bug #26056.
32801
32802 2003-01-17  Martin Baulig  <martin@ximian.com>
32803
32804         * gc.c: Raise an ExecutionEngineException instead of using g_error().
32805
32806 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32807
32808         * exception.[ch]:
32809         (mono_get_exception_type_initialization): new function.
32810
32811         * object.c: throw a TypeInitializationException when an exception is
32812         thrown invoking the class constructor.
32813
32814 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32815
32816         * reflection.c: fixed attribute reading.
32817
32818 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32819
32820         * icall.c:
32821         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
32822         provided, look for the type in the calling assembly and then in
32823         mscorlib; if the assembly name is provided, only try that one.
32824
32825 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
32826
32827         * object.c: register the vtable before there is a chance it's
32828         queried again recursively.
32829
32830 2003-01-13  Duncan Mak  <duncan@ximian.com>
32831
32832         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
32833         gc-internal.h. 
32834         
32835 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
32836
32837         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
32838
32839 2003-01-11  Martin Baulig  <martin@ximian.com>
32840
32841         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
32842         this to 20 for the release.
32843
32844 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
32845
32846         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
32847
32848         * loader.c (mono_method_get_marshal_info): bug fix
32849
32850         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
32851         structures with explicit layout
32852
32853 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
32854
32855         * profiler.c: made the output more readable (and sorted). 
32856         Added caller information for the allocation profiler.
32857
32858 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
32859
32860         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
32861
32862 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32863
32864         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
32865         to get value types.
32866         
32867 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
32868
32869         * object.c, profiler.h, profiler.c, profiler-private.h:
32870         Added object allocation profiler.
32871
32872 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
32873
32874         * reflection.h, reflection.c: handle global methods.
32875         Compress blob entries.
32876
32877 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
32878
32879         * marshal.c: fix compilation.
32880
32881 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
32882
32883         * loader.c (mono_method_get_marshal_info): impl.
32884
32885         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
32886
32887 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32888
32889         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
32890         for reference types.
32891
32892 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
32893
32894         * loader.c: fixed off by one error in loaded parameter names.
32895
32896 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
32897
32898         * marshal.c (mono_marshal_get_icall_wrapper): like
32899         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
32900         instead of a MonoMethod.
32901
32902 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32903
32904         * decimal.c: fixed bug #36537.
32905
32906 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
32907
32908         * marshal.c: throw a missing method exception if a
32909         P/Invoke method is not found.
32910
32911 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
32912
32913         * icall.c: allow a null this for constructors.
32914
32915 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
32916
32917         * icall.c: raise the proper exceptions if the arguments to the
32918         internal Invoke are incorrect.
32919
32920 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
32921
32922         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
32923
32924 2003-01-03  Martin Baulig  <martin@ximian.com>
32925
32926         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
32927
32928 2002-12-31  Martin Baulig  <martin@ximian.com>
32929
32930         * debug-mono-symfile.c: Completely rewrote the type section.
32931         Instead of using individual malloc()ed fields, we use one big
32932         continuous memory area and offsets into this area.
32933         See the comments in the source code for details.
32934
32935 2002-12-30  Martin Baulig  <martin@ximian.com>
32936
32937         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
32938
32939 2002-12-30  Martin Baulig  <martin@ximian.com>
32940
32941         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
32942         line number table in this data blob instead of using an external
32943         pointer.
32944
32945 2002-12-28  Martin Baulig  <martin@ximian.com>
32946
32947         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
32948
32949 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
32950
32951         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
32952         as a boxed return type.
32953
32954 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
32955
32956         * appdomain.c
32957         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
32958         g_build_filename to properly get separators on the filename created.
32959
32960         * object.h: Small change, introduce MonoMarshalByRefObject to
32961         track the layout of that structure in the C# universe as we make
32962         changes there.
32963
32964 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
32965
32966         * object.c: removed assert to allow static fields on interfaces.
32967         * loader.c: a TypeSpec may be used for any type, not just arrays.
32968
32969 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
32970
32971         * class.c, class.h: added mono_class_array_element_size ().
32972         Ignore static methods in interfaces.
32973
32974 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32975
32976         * threads.c: fixed the build under cygwin.
32977
32978 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
32979
32980         * reflection.c: handle nullref constants. Allocate keys for
32981         reflection handles with the GC.
32982
32983 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32984
32985         * threads.c, threads.h: added mono_thread_get_abort_signal()
32986         to get a suitable signal for thread abort.
32987
32988 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32989
32990         * metadata.c: fix handling of ExportedType table.
32991
32992 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32993
32994         * icall.c: added WriteWindowsDebugString internal call.
32995
32996 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32997
32998         * reflection.h: added fields to match C# implementation.
32999
33000 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33001
33002         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
33003
33004 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
33005
33006         * gc.h, gc-internal.h: Rename header for GC internal calls to
33007         gc-internal.h from gc.h as to not clash with Boehm GC having its
33008         header installed as <gc.h> in outside include paths.
33009         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
33010         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
33011
33012 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33013
33014         * icall.c: assign minor, build and revision in FillName.
33015
33016 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
33017
33018         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
33019         Added support for running code generated by Reflection.Emit.
33020
33021 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33022
33023         * appdomain.c: check for NULL argument in LoadFrom.
33024
33025 2002-12-10  Dick Porter  <dick@ximian.com>
33026
33027         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
33028
33029 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33030
33031         * appdomain.c: fix buglet when building exe file name.  Handle full
33032         assembly name (needed after latest changes to AssemblyName).
33033         * image.c:
33034         (mono_image_close): free some hashtables.
33035
33036 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
33037
33038         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
33039         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
33040         on some systems (redhat 7.3) 
33041
33042 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
33043
33044         * threads.c: delete the critical section of a sync block,
33045         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
33046
33047 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
33048
33049         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
33050
33051 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33052
33053         * appdomain.[ch]: handle the assembly preload event to try loading the
33054         assemblies using the paths we have in the current domain.
33055
33056         * assembly.[ch]: created an assembly preload hook that is called to try
33057         loading the assembly by other means that the ones provided here.
33058
33059         * domain.c: initialize the domain search path.
33060
33061         From now on, assemblies (TODO: except corlib and System) are loaded
33062         according to these rules when using mono_assembly_load ():
33063
33064                 1. It tries to load the assembly from the ApplicationBase
33065                 of the current domain appending .dll and .exe (TODO: have to
33066                 try loading from name/name.dll and name/name.exe).
33067
33068                 2. It tries the search path specified in PrivateBinPath for the
33069                 current domain (if any).
33070
33071                 3. Previous behavior.
33072
33073 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33074
33075         * icall.c: implemented GetInterfaceMap() related icall.
33076         * domain.c, loader.h: load MethodInfo in mono_defaults.
33077
33078 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33079
33080         * gc.c: disable the finalizer thread for now, untill all the issues
33081         with it are resolved.
33082
33083 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33084
33085         * string-icalls.c: handle embedded nulls in string ctor when the
33086         length is specified.
33087
33088 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33089
33090         * class.c: look for explicit interface implementation in parent
33091         classes, too.
33092
33093 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
33094
33095         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
33096
33097 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33098
33099         * gc.c: protect handles with a critical section.
33100
33101 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33102
33103         * icall.c:
33104         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33105         parameters. If no assembly specified, try getting the type from all
33106         the assemblies in the current domain, else, load the assembly and get
33107         the type from it.
33108
33109 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33110
33111         * marshal.c: applied patch from Aleksey Demakov that fixes
33112         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33113
33114 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33115
33116         * icall.c: fixed get_location.
33117
33118 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33119
33120         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33121         declarations to make it work with older gcc. 
33122
33123         * loader.c (mono_get_method): set signature->pinvoke for native calls
33124
33125 2002-11-20  Dick Porter  <dick@ximian.com>
33126
33127         * threads.c (mono_thread_init): Set the main thread's handle
33128
33129 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33130
33131         * gc.c: allow compilation without GC support. Changed to match the
33132         mono coding style.
33133
33134 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33135
33136         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33137
33138 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33139
33140         * reflection.c: set a public key token on the core assemblies.
33141
33142 2002-11-18  Dick Porter  <dick@ximian.com>
33143
33144         * threads.c: Split out some thread initialisation so that other
33145         files can set the start callback function.
33146
33147         * gc.c: Run finalisers in a separate thread, to avoid stack
33148         overflow.  Fixes bug 31333.
33149
33150         * appdomain.c: Set up GC finalisation thread.
33151
33152         * reflection.c: 
33153         * object.c: 
33154         * domain.c: Use gc.h macros for GC_malloc
33155         
33156 2002-11-15  Dick Porter  <dick@ximian.com>
33157
33158         * threadpool.c: 
33159         * threads.c:
33160         * appdomain.c: Removed mono_runtime_init_with_attach(),
33161         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33162         merging the extra parameter with the existing function.  Removed
33163         unneeded code in mono_thread_attach().
33164
33165 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33166
33167         * image.c (mono_image_loaded_by_guid): a method to get loaded
33168         images by guid. 
33169         (load_metadata_ptrs): we store the guid as string.
33170
33171 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33172
33173         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33174
33175         * metadata.c (mono_guid_to_string): imported method form Zoltan
33176         Varga (slightly modified)
33177
33178         * assembly.c (mono_assembly_open): load precompiled code
33179
33180         * loader.h (MonoMethod): we store the method token for use in the
33181         aot compiler. 
33182
33183 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33184
33185         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33186         the hook function called when an assembly is loaded.
33187         
33188         * domain.c: Modified file.
33189         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33190
33191         Fixes bug #33196.
33192
33193 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33194
33195         * reflection.c: Map PEFileKind to the value expected by the WinNT
33196         image loader. 
33197
33198 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33199
33200         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33201         Read until the buffer is filled completely.
33202
33203 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33204
33205         * icall.c: implemented MonoType.InternalGetEvent ().
33206
33207 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33208
33209         * appdomain.c: implemented InitAppDomainSetup. Delayed
33210         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33211         the entry_assembly.
33212
33213         * assembly.c: base_dir is now an absolute path ending with
33214         G_DIR_SEPARATOR.
33215
33216         * icall.c: modified get_location according to the above changes.
33217
33218         * object.c: init AppDomain.SetupInformation for the default domain after
33219         we have the entry assembly.
33220
33221         * domain.c: when unloading a domain, setup = NULL.
33222
33223 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33224
33225         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33226
33227 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33228
33229         * object.h, object.c: introduced mono_object_get_virtual_method ()
33230         to lookup the method invoked on an object when a callvirt is done on
33231         a method.
33232         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33233
33234 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33235
33236         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33237         current domain when loaded an assembly and failed to load it.
33238
33239         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33240
33241 2002-10-31  Dick Porter  <dick@ximian.com>
33242
33243         * icall.c: 
33244         * file-io.h: 
33245         * file-io.c: Return the error status in a parameter, as the
33246         GetLastError() value has long since been blown away if we try and
33247         look it up in a subsequent internal call invocation.  Delete the
33248         GetLastError() internal call, because it's useless.
33249
33250 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33251
33252         * class.[ch]: added cast_class to fix bug 29517
33253
33254 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33255
33256         * marshal.c: create valid IL code in the filter clause:
33257         the new JIT is less forgiving:-)
33258
33259 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33260
33261         * icall.c: removed get_property internal call.
33262
33263 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33264
33265         * appdomain.h domain.c: Added an ID to appdomains.
33266         
33267         * threads.c threads.h icall.c: Implement icall
33268         Thread:GetDomainID(), and remove unused icall 
33269         CurrentThreadDomain_internal.
33270
33271 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33272
33273         * icall.c: Don't recurse through the base types in GetConstructor.
33274         Fixes bug #32063. 
33275
33276 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33277
33278         * mempool.h, mempool.c: added mono_mempool_empty() and
33279         mono_mempool_stats().
33280
33281 2002-10-23  Dick Porter  <dick@ximian.com>
33282
33283         * file-io.c: 
33284         * file-io.h: 
33285         * icall.c: Added MonoIO.GetFileType internal call
33286
33287 2002-10-17  Dick Porter  <dick@ximian.com>
33288
33289         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33290         delegate semaphore before waiting for all threads to finish,
33291         because new threads can also call async delegates.  Fixes bug
33292         32004.
33293
33294         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33295         of 3 seconds, in case another async job is queued.  (This part is
33296         needed because the bug fix reintroduced the 3s exit lag.)  This
33297         makes the mono_runtime_shutdown flag superfluous.
33298
33299 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33300
33301         * reflection.c: include ehader size in method section headers.
33302         Really check for suplicated modules entries.
33303
33304 2002-10-17  Martin Baulig  <martin@gnome.org>
33305
33306         * debug-mono-symfile.c: Added back support for locals.
33307
33308 2002-10-14  Martin Baulig  <martin@gnome.org>
33309
33310         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33311         MONO_TYPE_VOID.
33312
33313 2002-10-14  Martin Baulig  <martin@gnome.org>
33314
33315         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33316         mono_class_get() instead of looking in the class cache. 
33317
33318 2002-10-13  Martin Baulig  <martin@gnome.org>
33319
33320         * debug-mono-symfile.c: Set version number to 28, include the
33321         signature in method names.
33322
33323 2002-10-13  Martin Baulig  <martin@gnome.org>
33324
33325         * debug-mono-symfile.h: Set version number to 27.
33326
33327 2002-10-11  Martin Baulig  <martin@gnome.org>
33328
33329         * gc.c: Don't register/unregister NULL pointers as disappearing links.
33330
33331 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33332
33333         * metadata.c, metadata.h: added helper function to allocate signatures.
33334
33335 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33336
33337         * icall.c: added internal call to get the location of machine.config.
33338
33339 2002-10-08  Martin Baulig  <martin@gnome.org>
33340
33341         * debug-mono-symfile.c: Ignore classes with a pending init for the
33342         moment.
33343
33344 2002-10-03  Dick Porter  <dick@ximian.com>
33345
33346         * threads.c: Freebsd pthread_t is a pointer
33347
33348 2002-10-03  Dick Porter  <dick@ximian.com>
33349
33350         * socket-io.c: Implemented GetHostName_internal
33351
33352 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33353
33354         * mono-config.c:
33355         (mono_config_parse_file): don't leak the text.
33356
33357 2002-10-02  Martin Baulig  <martin@gnome.org>
33358
33359         * debug-mono-symfile.c: Added support for methods.
33360
33361 2002-10-01  Martin Baulig  <martin@gnome.org>
33362
33363         * debug-mono-symfile.c: Don't emit methods and line numbers for
33364         the dynamic symbol file, just write the type table.  We can easily
33365         have an external helper program which creates a symbol file for an
33366         IL file.        
33367
33368 2002-10-01  Dick Porter  <dick@ximian.com>
33369
33370         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
33371         Only add the handle to the cleanup array when we're about to
33372         launch the thread.  Bug 31425 deadlocked when the test was run on
33373         mono under w32.
33374
33375 2002-10-01  Martin Baulig  <martin@gnome.org>
33376
33377         * debug-mono-symfile.c: Added support for properties.
33378
33379 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33380
33381         * reflection.c: unaligned store fix from Mark Crichton
33382         <crichton@gimp.org>.
33383
33384 2002-09-27  Martin Baulig  <martin@gnome.org>
33385
33386         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
33387         New interncall.
33388
33389 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33390
33391         * assembly.h, assembly.c: use a sane API to hook into the assembly
33392         loading process instead of a useless special-purpouse hack
33393         (ngen needs a hook, too, for example).
33394
33395 2002-09-27  Dick Porter  <dick@ximian.com>
33396
33397         * threads.c (mono_thread_init): Call GetCurrentProcess() so
33398         io-layer can set up some process handle info.  Not needed on w32,
33399         but doesn't hurt either.
33400
33401         * process.c: Pass the program name in the second parameter to
33402         CreateProcess, so the path is searched.  Include the working
33403         directory. Implemented process name, process enumeration, and some
33404         process detail internal calls.
33405         
33406         * icall.c: Added internal calls for process lookup, and some
33407         process details
33408
33409 2002-09-26  Martin Baulig  <martin@gnome.org>
33410
33411         * assembly.c (mono_install_open_assembly_hook): New global
33412         function to install a function to be invoked each time a new
33413         assembly is loaded.
33414         (mono_assembly_open): Run this callback function if set.
33415
33416         * debug-mono-symfile.c: Put back line numbers for the dynamic
33417         symbol file and also record the .il file as source file.  This
33418         allows us to install the temporary symbol file as `file.dbg' just
33419         like a compiler-generated one.
33420
33421 2002-09-26  Nick Zigarovich <nick@chemlab.org>
33422
33423         * Corrected typo in gc.c (BOHEM vs BOEHM).
33424
33425 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33426
33427         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
33428         GetProperties. Also avoid calling g_slist_length in GetProperties and
33429         GetMethods.
33430
33431 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33432
33433         * reflection.c: avoid unaligned stores (bug spotted by
33434         Mark Crichton  <crichton@gimp.org>).
33435
33436 2002-09-25  Martin Baulig  <martin@gnome.org>
33437
33438         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
33439         instead of guint64 for addresses and added prologue/epilogue info.
33440
33441 2002-09-25  Martin Baulig  <martin@gnome.org>
33442
33443         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
33444         store line number info.  For the dynamic symbol file, we only need
33445         to provide the JIT generated dynamic line number info for the dynamic
33446         symbol file.
33447
33448 2002-09-25  Martin Baulig  <martin@gnome.org>
33449
33450         * debug-mono-symfile.h: Incremented version number.
33451
33452 2002-09-24  Martin Baulig  <martin@gnome.org>
33453
33454         * class.c (mono_debugger_class_init_func): New global function
33455         pointer variable.
33456         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
33457         call it.
33458
33459         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
33460         function.  This is called via the mono_debugger_class_init_func
33461         hook to add all types to the dynamic type table.
33462         (ves_icall_MonoDebugger_GetType): New interncall to get a class
33463         from its metadata token.
33464
33465         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
33466         New interncall for the debugger.
33467
33468 2002-09-24  Nick Drochak <ndrochak@gol.com>
33469
33470         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
33471         before using it in case it is null.
33472         
33473 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33474
33475         * metadata.c: allow custom modifiers in local var signatures
33476         (bug spotted by Zoltan Varga).
33477
33478 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33479
33480         * class.c: deal with the <Module> class that may have a NULL vtable.
33481         Eliminate warnings.
33482
33483 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33484
33485         * image.c, image.h: more strong name helpers.
33486         * monosn.c: more work: convert pem keys to cryptoapi format.
33487
33488 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33489
33490         * string-icalls.c: speedup IndexOf.
33491
33492 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33493
33494         * icall.c: updates from Zoltan.2.Varga@nokia.com.
33495
33496 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33497
33498         * icall.c: cleanup: use mono_object_domain ().
33499
33500 2002-09-23  Martin Baulig  <martin@gnome.org>
33501
33502         * debug-mono-symfile.c: Improved type support.
33503
33504 2002-09-22  Martin Baulig  <martin@gnome.org>
33505
33506         * debug-mono-symfile.c: Added support for reference types and strings.
33507
33508 2002-09-22  Martin Baulig  <martin@gnome.org>
33509
33510         * debug-mono-symfile.c: Started to work on the type table.
33511
33512 2002-09-21  Martin Baulig  <martin@gnome.org>
33513
33514         * debug-mono-symfile.c: Largely reworked the symbol table format.
33515         The symbol table is now incrementally updated each time a new
33516         method is added.  We're now also using our own magic and version
33517         so that you don't need to recompile all your classes if the
33518         dynamic table changes.
33519         (mono_debug_update_mono_symbol_file): Removed.
33520         (mono_debug_symfile_add_method): New function to add a method.
33521
33522 2002-09-21  Martin Baulig  <martin@gnome.org>
33523
33524         * icall.c
33525         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
33526         New interncall.
33527
33528         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
33529         New interncall to get a method from its metadata token.
33530
33531 2002-09-21  Martin Baulig  <martin@gnome.org>
33532
33533         * debug-mono-symfile.c: Create type table.
33534
33535 2002-09-20  Martin Baulig  <martin@gnome.org>
33536
33537         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
33538
33539 2002-09-20  Martin Baulig  <martin@gnome.org>
33540
33541         * debug-mono-symfile.c: Provide information about params and locals.
33542
33543 2002-09-20  Martin Baulig  <martin@gnome.org>
33544
33545         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
33546         New interncall.
33547
33548         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
33549         interncall to get a method from its metadata token.
33550
33551 2002-09-20  Martin Baulig  <martin@gnome.org>
33552
33553         * debug-mono-symfile.c: Added a few checks for method->header
33554         being non-NULL.  This should never happen, but for the moment
33555         let's use a g_warning() rather than a g_assert().
33556
33557 2002-09-19  Mark Crichton  <crichton@gimp.org>
33558
33559         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
33560         even if support for it isn't present.  Added an #ifdef to fix this.
33561
33562         * socket-io.c: Added checks back for Solaris support.
33563
33564 2002-09-19  Martin Baulig  <martin@gnome.org>
33565
33566         * debug-mono-symfile.c (read_string, write_string): Reflect latest
33567         changes in the symbol file format.
33568
33569 2002-09-18  Martin Baulig  <martin@gnome.org>
33570
33571         * debug-mono-symfile.c: Set version number to 21.
33572
33573 2002-09-18  Dick Porter  <dick@ximian.com>
33574
33575         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
33576         on netbsd.  Fixes bug 30051.
33577
33578 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33579
33580         * reflection.c:
33581         (set_version_from_string): little fix.
33582
33583 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33584
33585         * monosn.c, Makefile.am: added strong name utility.
33586         * reflection.h, reflection.c: implemented delayed signing,
33587         locale, version and hash id assembly attributes.
33588
33589 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33590
33591         * loader.c, metadata.c: load param attributes in signatures.
33592
33593 2002-09-16  Martin Baulig  <martin@gnome.org>
33594
33595         * debug-mono-symfile.c: Added string table with all method names.
33596
33597 2002-09-14  Martin Baulig  <martin@gnome.org>
33598
33599         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
33600         fast method lookup.
33601
33602 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33603
33604         * reflection.c: record the public key token of referenced assemblies.
33605
33606 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33607
33608         * image.c, image.h: added functions to get the strong name and the
33609         public key of an assembly.
33610         * pedump.c: use them.
33611
33612 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
33613
33614         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
33615
33616 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
33617
33618         * marshal.c (mono_marshal_get_managed_wrapper): Added
33619         MONO_TYPE_BOOLEAN 
33620
33621 2002-09-11  Martin Baulig  <martin@gnome.org>
33622
33623         * gc.c: Call GC_unregister_disappearing_link() on all links when
33624         finalizing them, this is necessary to aviod a crash in boehm's
33625         finalize handler.
33626
33627 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33628
33629         * gc.c: handle GetTarget for finalized objects spotted and fixed by
33630         nick@chemlab.org.
33631
33632 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33633
33634         * icall.c: implemented MonoType::Module.
33635         * reflection.c, reflection.h: mono_module_get_object () from
33636         Tomi Pakarinen <tomi.pakarinen@welho.com>.
33637
33638 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33639
33640         * icall.c: ignore overridden methods in GetMethods ().
33641         Fix for FieldInfo::SetValue().
33642         * object.c: handle float/double in runtime invoke.
33643
33644 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33645
33646         * object.c: allow a constructor to be called again on an object.
33647
33648 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33649
33650         * class.h, class.c: move field layout code to it's own function and
33651         export it. Get an interface id earlier. Move fields in MonoClass
33652         so they are more cache friendly and align the bitfields.
33653         * loader.c: temporary handle get_param_names() for a runtime method.
33654         * reflection.c, reflection.h: more code to handle runtime creation of
33655         types.
33656
33657 2002-09-09  Martin Baulig  <martin@gnome.org>
33658
33659         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
33660         signature with the pinvoke field being set for the actual call.
33661
33662 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33663
33664         * icall.c: removed some unused icalls. Start of map of glib charsets
33665         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
33666
33667 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33668
33669         * debug-helpers.c: break infinite loop (found and fixed by
33670         Holger Arnold <harnold@gmx.de>).
33671
33672 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33673
33674         * icall.c: target may be null in create_delegate.
33675
33676 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33677
33678         * marshal.c: handle a boolean return type.
33679
33680 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33681
33682         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
33683
33684 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33685
33686         * gc.c: fix weakreferences.
33687
33688 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33689
33690         * icall.c: added icall to get default codepage.
33691
33692 2002-09-03  Dick Porter  <dick@ximian.com>
33693
33694         * threads.h: 
33695         * threads.c: Use MonoThread instead of MonoObject where
33696         apropriate.
33697
33698         Store running thread objects in a hash table, so that we have all
33699         the info to hand when waiting for them to finish
33700         (means we don't need OpenThread() any more, so mingw builds should
33701         be fully functional again.)
33702
33703         * verify.c:
33704         * object.h: Added thread ID to MonoThread
33705
33706 2002-09-03  Martin Baulig  <martin@gnome.org>
33707
33708         * icall.c (System.Reflection.Assembly::get_location): New interncall.
33709
33710 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33711
33712         * icall.c: fixed leak in get_temp_path. Thanks lupus.
33713
33714 2002-09-03  Martin Baulig  <martin@gnome.org>
33715
33716         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
33717         argument to store the end address of the disassembled instruction.
33718
33719         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
33720         here from debug-symfile.h.
33721         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
33722         JIT into this struct.
33723         (MonoSymbolFile): Added `char *image_file' field.
33724         (MonoDebugGetMethodFunc): Removed.
33725         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
33726         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
33727         (mono_debug_find_method): New method.
33728
33729         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
33730         create a full symbol file.
33731         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
33732         and static symbol files.
33733         (mono_debug_find_method): The symbol file keeps an internal method hash,
33734         call this to get a MonoDebugMethodInfo from a MonoMethod.
33735
33736         * debug-symfile.[ch]: Removed.
33737
33738 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
33739
33740         * image.c (do_mono_image_open): Remove linker version check.
33741
33742 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
33743
33744         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
33745         wrappers for instance methods.
33746         
33747 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33748
33749         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
33750
33751 2002-08-28  Dick Porter  <dick@ximian.com>
33752
33753         * Makefile.am: Export HOST_CC for w32 builds
33754
33755 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33756
33757         * file-io.c process.c: MonoString are null terminated, no
33758         need for mono_string_to_utf16() anymore.
33759
33760 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33761
33762         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
33763
33764 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
33765
33766         * icall.c, reflection.h: speedup System.MonoType.
33767
33768 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33769
33770         * reflection.c: allow null as the value of a string argument in
33771         custom attributes constructors.
33772
33773 2002-08-27  Martin Baulig  <martin@gnome.org>
33774
33775         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
33776         `trampoline_address' field.
33777
33778 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
33779
33780         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
33781         check (fixes bug #29486) 
33782
33783 2002-08-27  Martin Baulig  <martin@gnome.org>
33784
33785         * debug-mono-symfile.c: Changed the file format in a way that allows us
33786         open it read-only and to use a specially malloced area for all the
33787         dynamic data.  We can now also generate a symbol file on-the-fly if we're
33788         debugging IL code and there is no MCS generated symbol file for it.
33789
33790 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33791
33792         * object.c: added a define for a good string and array
33793         creation speedup (not enabled by default because we need to deal with
33794         the synch stuff).
33795
33796 2002-08-26  Martin Baulig  <martin@gnome.org>
33797
33798         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
33799         function to create a dynamic symbol file.  This is used by the
33800         debugger to create a symbol file for IL code on-the-fly.
33801
33802 2002-08-26  Martin Baulig  <martin@gnome.org>
33803
33804         * loader.c (mono_lookup_pinvoke_call): Include the error message
33805         from g_module_error() in the error message.
33806
33807 2002-08-24  Martin Baulig  <martin@gnome.org>
33808
33809         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
33810         function to update the symbol file.  The symbol file is mmap()ed
33811         writable, but private.  This allows us to install the symbol file
33812         together with the assembly.
33813
33814 2002-08-24  Martin Baulig  <martin@gnome.org>
33815
33816         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
33817         but they can read the new symbol file format which mcs is now creating.
33818
33819         * debug-symfile.c (mono_debug_find_source_location): Moved to
33820         debug-mono-symfile.c; this is now operating on the new symbol file.
33821
33822 2002-08-23  Martin Baulig  <martin@gnome.org>
33823
33824         * debug-helpers.c (mono_method_desc_from_method): New function to get
33825         a MonoMethodDesc from a MonoMethod.
33826
33827 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33828
33829         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
33830         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
33831
33832 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
33833
33834         * string-icalls.[ch]: make helper methods static.
33835
33836 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33837
33838         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
33839         types to it and to SetValueInternal.
33840
33841         * object.c: Moved handle_enum label to its proper place. This was the
33842         f... bug! ;-)
33843
33844         This time i compiled mcs and gtk-sharp and they both work.
33845
33846 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33847
33848         * icall.c: reverted partially my previous patch until 
33849         object.c:set_value handles enums correcly.
33850
33851 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33852
33853         * icall.c:
33854         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
33855         (ves_icall_System_Environment_get_MachineName): removed warning when
33856         compiling under cygwin.
33857
33858 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33859
33860         * object.c: fixed field_get_value() for reference types.
33861
33862 2002-08-22  Dick Porter  <dick@ximian.com>
33863
33864         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
33865         Don't free a buffer while it's still needed.  Patch from Jonathan
33866         Liger <Jonathan.liger@wanadoo.fr>
33867
33868 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
33869
33870         * icall.c (ves_icall_System_Environment_get_Platform): Add new
33871         internal call.
33872
33873 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
33874
33875         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
33876         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
33877
33878         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
33879         we call unmanaged code which throws exceptions.
33880
33881 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33882
33883         * appdomain.h: added per-domain entry_assembly.
33884         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
33885         arguments.
33886         * icall.c: Assembly::GetEntryAssembly icall.
33887         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
33888         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
33889
33890 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33891
33892         * appdomain.h, gc.c: added mono_domain_finalize ().
33893
33894 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33895
33896         * object.c:
33897         (mono_print_unhandled_exception): changed g_warning by g_printerr
33898         because g_log has a 1024 characters limit (yeah, i got a big stack
33899         trace). Don't print exception name, that should be in ToString 
33900         returned string.
33901
33902 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33903
33904         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
33905         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
33906
33907 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33908
33909         * object.c:
33910         (mono_print_unhandled_exception): after previous commit, i realized
33911         that MS calls ToString on the exception. I changed this function to
33912         do that. This way we get stack_trace for free.
33913
33914 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33915
33916         * object.c:
33917         (mono_print_unhandled_exception): invoke Message property instead of
33918         getting 'message' field from Exception. Don't allocate memory for
33919         'trace' and 'message' if not needed.
33920
33921 2002-08-18  Dick Porter  <dick@ximian.com>
33922
33923         * unicode.c: Fix asserts to match Encoder.cs checks
33924
33925 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33926
33927         * marshal.c: fix unaligned store issue and a few wrong
33928         opcode argument types.
33929
33930 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33931
33932         * icall.c: added GetUninitializedObjectInternal internal call.
33933
33934 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
33935
33936         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
33937         to the right domain.
33938
33939 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
33940
33941         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
33942
33943         * class.c (class_compute_field_layout): set blittable to false for Strings
33944
33945         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
33946
33947 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33948
33949         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
33950         first chunk of code to create types at runtime. Code to
33951         handle ReflectedType/DeclaringType. Make reflection handles
33952         domain specific.
33953
33954 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33955
33956         * class.c: set correct name in arrays.
33957
33958 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
33959
33960         * appdomain.c (mono_domain_transfer_object): make it work with
33961         valuetypes. bug fixes.
33962
33963 2002-08-12  Dick Porter  <dick@ximian.com>
33964
33965         * object.h: Rename some parameters to avoid c++ keywords (Patch
33966         from Joseph Wenninger <kde@jowenn.at>)
33967
33968 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
33969
33970         * icall.c: added icall to implement Assembly.GetFile*.
33971
33972 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33973
33974         * reflection.h, reflection.c: code to embed managed resources.
33975
33976 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33977
33978         * class.c: move all the type size stuff into
33979         class_compute_field_layout().
33980
33981 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33982
33983         * class.c: ensure enums have always the correct instance size.
33984         * unicode.c: remove wrong assert.
33985
33986 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33987
33988         * assembly.c: fix mem corruption issue.
33989         * image.h, image.c: added mono_image_get_resource () to access
33990         managed resources.
33991         * icall.c: implemented Assembly.EntryPoint property and some
33992         Managed Resources related internalcalls.
33993
33994
33995 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33996
33997         * image.c, image.h: impemented mono_image_get_entry_point ().
33998         * appdomain.c: use mono_image_get_entry_point.
33999
34000 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34001
34002         * reflection.c: support the object type argument when loading
34003         custom attributes.
34004
34005 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
34006
34007         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
34008         String as return type.
34009
34010 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
34011
34012         * reflection.c: fix encoding of named args for custom attrs to match
34013         the ms implementation. Read them back when instantiating custom
34014         attributes.
34015
34016 2002-08-02  Radek Doulik  <rodo@ximian.com>
34017
34018         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
34019         by Dietmar as quick fix
34020         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
34021         16 as stack size, used on more places as quick fix before Dietmar
34022         will fix it properly
34023
34024 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34025
34026         * object.h, object.c: added accessors for fields and properties.
34027
34028 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34029
34030         * class.c, class.h: made mono_class_get_field_from_name ()
34031         loop on parent types.
34032         Added mono_class_get_property_from_name ().
34033
34034 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34035
34036         * class.c, class.h: move the code to setup the type vtable in its own
34037         function so that it can be reused also for types created at runtime.
34038         Eliminate the "class" identifier from the header file.
34039         * reflection.c: setup the vtable for enums so that we can create
34040         objects for use in SetConstant ().
34041
34042 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
34043
34044         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
34045         instead of the delegate itself as this pointer (bug #28383)
34046
34047 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
34048
34049         * marshal.c (mono_marshal_get_managed_wrapper): added return type
34050         conversions.
34051
34052 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34053
34054         * loader.c: don't set the pinvoke bit on icalls.
34055
34056 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
34057
34058         * debug-helpers.c (mono_method_full_name): only print a number to
34059         indicate wrapper type (so that the output is more readable in traces).
34060
34061 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
34062
34063         * class.c (mono_class_init): include method override patch from Paolo
34064
34065 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34066
34067         * icall.c: fixed GetTypeCode().
34068
34069 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
34070
34071         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34072         use real delegate invoke function to make it work with multicast
34073         delegates (fix bug# 28291).
34074
34075 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34076
34077         * object.c: load constant strings.
34078
34079 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34080
34081         * reflection.c: no magic numbers.
34082         * tabledefs.h: security action enum.
34083
34084 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34085
34086         * assembly.c: fix possible memory corruption.
34087
34088 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34089
34090         * reflection.h, reflection.c: added support for linking resources.
34091         * verify.c: check we have an updated corlib.
34092
34093 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
34094
34095         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34096         string arrays.
34097         (mono_marshal_string_array): null terminate unmanaged string arrays.
34098         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34099
34100 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34101
34102         * icall.c: Type.GetType () can now return also types from the
34103         calling assembly.
34104
34105 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34106
34107         * loader.h, loader.c: stack walking support.
34108         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34109         GetCallingAssembly.
34110
34111 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34112
34113         * marshal.c: added optimisations for blittable types 
34114
34115         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34116         (mono_class_setup_mono_type): set blittable attribute for single
34117         and double.
34118
34119         * marshal.c (mono_string_utf8_to_builder): impl.
34120         (mono_string_builder_to_utf8): impl.
34121         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34122
34123 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34124
34125         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34126         (mono_marshal_get_managed_wrapper): impl. byref types
34127
34128 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34129
34130         * icall.c:
34131         (search_method): don't display debug message. 
34132
34133 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34134
34135         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34136
34137 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34138
34139         * appdomain.c: set the missing filename when throwing exception.
34140
34141 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34142
34143         * metadata.c (mono_type_size): code cleanup
34144         (mono_type_stack_size): removed some test code
34145
34146 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34147
34148         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34149         mono_get_exception_file_not_found now.
34150
34151         * exception.c (mono_exception_from_name_two_strings): New version
34152         that will call a constructor with two string arguments. 
34153         (mono_get_exception_file_not_found): New helper routine, used to
34154         report file-not-found errors.
34155
34156 2002-07-20  Dick Porter  <dick@ximian.com>
34157
34158         * process.h:
34159         * process.c: Pass file handles to CreateProcess
34160         
34161         * icall.c:
34162         * file-io.h:
34163         * file-io.c: Implemented CreatePipe
34164
34165 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34166
34167         * metadata.c (mono_get_param_info): set alignment for value types
34168
34169 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34170
34171         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34172         Constify mono_domain_assembly_open().
34173         * loader.c: handle null namespace in icalls.
34174
34175 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34176
34177         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34178         (emit_str_to_ptr_conv): marshal object as structs
34179
34180         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34181
34182         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34183
34184 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34185
34186         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34187         (mono_marshal_get_native_wrapper): we an now return value types
34188
34189 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34190
34191         * verify.c: more checks implemented.
34192
34193 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34194
34195         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34196         (fix bug #27695)
34197         (mono_marshal_get_native_wrapper): allow byref arguments
34198         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34199         impl. PtrToStringXXX methods
34200         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34201         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34202         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34203         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34204         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34205
34206 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34207
34208         * reflection.c: fix buglet in parsing an assembly name.
34209
34210 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34211
34212         * marshal.c (emit_ptr_to_str_conv): first impl.
34213
34214 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34215
34216         * object.c, class.h: cache the vtable in the class as suggested by
34217         vargaz@freemail.hu (Zoltan Varga).
34218
34219 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34220
34221         * class.h, loader.c: added mono_field_from_token().
34222         * verify.c: first cut of type checking code.
34223
34224 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34225
34226         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34227
34228 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34229
34230         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34231         (fix bug #27782)
34232         (mono_marshal_get_remoting_invoke): impl.
34233         (mono_delegate_begin_invoke): impl.
34234         (mono_mb_emit_save_args): impl.
34235         (mono_delegate_end_invoke): impl.
34236         (mono_marshal_get_delegate_begin_invoke):
34237         (mono_marshal_get_delegate_end_invoke):
34238         (mono_marshal_get_delegate_invoke): generate a special name for
34239         those methods (including the signature) and associate them whith
34240         the delegate class. 
34241
34242 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34243
34244         * reflection.[ch]: 
34245         (mono_reflection_type_from_name): now it has a MonoImage parameter
34246         which is used as the default image to search the type in. If the image
34247         is NULL or getting the type from it fails, it defaults to corlib.
34248
34249         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34250         new parameter.
34251
34252 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34253
34254         * reflection.c: update the parameter table index.
34255
34256 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34257
34258         * domain.c: don't include the mark byte in the string hash.
34259
34260 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34261
34262         * icall.cs: icall for Type.GetTypeCode ().
34263         * verify: a couple of fixes and disabled local initialization checks.
34264
34265 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34266
34267         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34268
34269         * debug-helpers.c (mono_method_full_name): print the type of the
34270         runtime wrapper
34271
34272         * metadata.c (mono_signature_hash): a hash function for signatures
34273         (mono_signature_hash): better hash algorithm
34274
34275         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34276
34277         * debug-helpers.c (mono_method_full_name): this can now generate
34278         method names with signatures
34279
34280         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34281         method dont have this pointers.
34282
34283 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34284
34285         * reflection.c: fixup typebuilder tokens.
34286         * image.c: fix buglet.
34287         * marshal.h: remove whitespace.
34288         * metadata.h, metadata.c: reinstate code that was removed.
34289         * verify.c: handle catch directives and fix another couple of bugs.
34290
34291 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34292
34293         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34294         (mono_marshal_get_native_wrapper): make it comp. with the old code
34295         (mono_marshal_get_native_wrapper): support boolean
34296         (mono_marshal_get_managed_wrapper): support more types
34297
34298 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34299
34300         * class.c (class_compute_field_layout): compute class->blittable attribute.
34301
34302 2002-07-09  Dick Porter  <dick@ximian.com>
34303
34304         * threads.c: Make the thread cleaning up cope with threads that
34305         call ExitThread()
34306
34307 2002-07-08  Radek Doulik  <rodo@ximian.com>
34308
34309         * reflection.c (method_encode_code): use non-translated values to
34310         compute finally_start, this fixes exception handling on ppc, yay!
34311
34312         * decimal.h (struct signscale): fix endianess
34313
34314 2002-07-07  Radek Doulik  <rodo@ximian.com>
34315
34316         * reflection.c: swap box_val and not val
34317
34318 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34319
34320         * reflection.c, reflection.h: handle full assembly info in type name.
34321         Handle Type arguments when loading custom attributes.
34322         * icall.c: updated to use new mono_reflection_type_from_name () method.
34323
34324 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34325
34326         * loader.c:
34327         (method_from_memberref): also print assembly name when method not found.
34328
34329 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34330
34331         * icall.c:
34332         (ves_icall_TypeGetProperties): fixed bug #27473. 
34333
34334 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34335
34336         * reflection.c: display image name and token when cannot find the
34337         .ctor for an attribute.
34338
34339 2002-07-05  Martin Baulig  <martin@gnome.org>
34340
34341         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34342
34343 2002-07-04  Dick Porter  <dick@ximian.com>
34344
34345         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
34346         compile on mingw.  This will cause mingw builds to not wait for
34347         subthreads to terminate after the main thread does.  I've lodged a
34348         bug with the mingw developers for them to wrap OpenThread().
34349
34350 2002-07-03  Dick Porter  <dick@ximian.com>
34351
34352         * threads.c: Store thread IDs instead of handles, because
34353         GetCurrentThread() returns a pseudohandle and therefore stores
34354         useless values.  mono_thread_cleanup() continues checking the
34355         array of threads until it is empty, to cope with subthreads
34356         spawning new threads after the main thread has finished.
34357
34358         * profiler.h:
34359         * profiler.c:
34360         * profiler-private.h: Pass the thread ID to thread profiler
34361         functions, instead of a handle
34362
34363 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34364
34365         * verify.c: fixes to make it more usable.
34366         * pedump.c: added --verify code to verify IL code in an assembly.
34367
34368 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34369
34370         * reflection.c: turn errors into warnings to allow compiling corlib.
34371
34372 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34373
34374         * reflection.c: add special cases to compile corlib.
34375
34376 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34377
34378         * reflection.c: handle properties with only a set method.
34379
34380 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34381
34382         * opcodes.h: add enum with opcodes in opval order.
34383
34384 2002-07-01  Dick Porter  <dick@ximian.com>
34385         
34386         * object.h:
34387         * object.c (mono_runtime_run_main): Removed unneeded argument
34388
34389 2002-06-28  Martin Baulig  <martin@gnome.org>
34390
34391         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34392
34393 2002-06-27  Dick Porter  <dick@ximian.com>
34394
34395         * threads.c: Store the handle in both the parent thread and in the
34396         subthread, to minimise the time between starting a new thread and
34397         storing its ID.
34398
34399 2002-06-26  Dick Porter  <dick@ximian.com>
34400
34401         * appdomain.c (mono_runtime_cleanup): Close the socket library
34402         after all the threads have finished, not before
34403
34404 2002-06-26  Martin Baulig  <martin@gnome.org>
34405
34406         * debug-symfile.c (mono_debug_find_source_location): Added
34407         `guint32 *line_number' argument.  If it's not NULL, store the line number
34408         there and return the file name without the line number.
34409
34410 2002-06-25  Dick Porter  <dick@ximian.com>
34411
34412         * icall.c:
34413         * process.h:
34414         * process.c: Process forking and other support functions
34415
34416 2002-06-25  Dick Porter  <dick@ximian.com>
34417
34418         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
34419         things dont happen when the image is closed.
34420         (mono_image_lookup_resource): Walk the resource section looking
34421         for a particular entry
34422
34423         * cil-coff.h: PE resource section decoding
34424
34425 2002-06-25  Dick Porter  <dick@ximian.com>
34426         
34427         * assembly.h:
34428         * assembly.c: 
34429         (mono_assembly_foreach): Accessor functions to walk the list of
34430         loaded assemblies
34431         (mono_assembly_set_main):
34432         (mono_assembly_get_main): Process methods need to know which
34433         assembly is the "main" one
34434
34435         * object.c (mono_runtime_run_main): Record the main assembly
34436
34437         * debug-helpers.c: Fix typo
34438
34439 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
34440
34441         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
34442         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
34443
34444 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34445
34446         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
34447
34448 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
34449
34450         * image.c (do_mono_image_open): Initialize reference count,
34451         otherwise we leak the MonoImage.
34452
34453 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34454
34455         * reflection.c: small tweak to handle self-hosting.
34456
34457 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34458
34459         * reflection.c: fix type name parse code.
34460
34461 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34462
34463         * reflection.c: break out of the loop.
34464         * image.c: special case corlib.
34465
34466 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34467
34468         * reflection.c: add all the custom attrs at the end to ensure the
34469         ctors have been properly initialized when the attributes are defined
34470         in the current assembly.
34471
34472 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34473
34474         * reflection.c: handle correctly multiple-nested types.
34475
34476 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34477
34478         * row-indexes.h: fix typos.
34479         * reflection.c: adjust for typos and fix method_def_or_ref
34480         encoding in MethodImpl table.
34481
34482 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34483
34484         * reflection.c: fix entry point patching (thanks Serge!).
34485
34486 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
34487
34488         * verify.c: add check for System.Exception
34489
34490 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34491
34492         * image.c, class.c: minifix for code just c&p'ed.
34493         * reflection.c: warning fix.
34494         * object.h, loader.h, domain.c: load also StringBuilder.
34495
34496 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34497
34498         * marshal.h, marshal.c: some support code to handle complex marshaling.
34499
34500 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34501
34502         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
34503         Better signatures with vtable error dump.
34504
34505 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
34506
34507         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
34508
34509 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
34510
34511         * icall.c (ves_icall_Type_GetField): impl.
34512
34513 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34514
34515         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
34516         to retrieve a marshal description blob for a field or param.
34517
34518 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34519
34520         * reflection.h, reflection.c: change order of nested type emission
34521         to avoid table corruption. The NestedTypes table is sorted.
34522         * icall.c: change order of GetConstructor results to workaround mcs bug.
34523
34524 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34525
34526         * reflection.h, reflection.c: handle field and param marshal
34527         information.
34528
34529 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34530
34531         * icall.c, marshal.c marshal.h: more Marshal class implementation.
34532
34533 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34534
34535         * reflection.c: fix call convention.
34536
34537 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34538
34539         * reflection.h, reflection.c: mono_image_get_memberref_token()
34540         takes a type instead of a class, now. Added
34541         mono_image_get_array_token() to create tokens for the special
34542         multi-dim array methods.
34543
34544 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34545
34546         * assembly.c: handle modules (no assembly table). Split
34547         loading references in its own function.
34548         * class.c: handle moduleref resolution scope.
34549         * image.c, image.h: cache module name in image.
34550
34551 2002-06-07  Martin Baulig  <martin@gnome.org>
34552
34553         * reflection.c (mono_image_get_type_info): Only add a class layout entry
34554         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
34555
34556 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34557
34558         * icall.c: more signature fixes that used uint instead of int.
34559
34560 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34561
34562         * reflection.c: fixed signature of field refs.
34563
34564 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34565
34566         * class.c, reflection.c: handle typerefs of nested types
34567         (both on read and when writing files).
34568
34569 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34570
34571         * icall.c: fix method signatures that tried to workaround the previous
34572         typo, d'oh!
34573
34574 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34575
34576         * debug-helpers.c: fix typo.
34577
34578 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34579
34580         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
34581         rewrote the PE/COFF writing code (our programs are understood by the
34582         ms runtime, now).
34583
34584 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34585
34586         * gc.c, gc.h, icall.c: weakreference support.
34587
34588 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34589
34590         * Makefile.am, mono-config.c: use $(sysconfdir).
34591
34592 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34593
34594         * icall.c: changed default precision of Double.ToString() to 15.
34595         Fixed memory leak. Unified with Single.ToString.
34596
34597 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34598
34599         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
34600
34601 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34602
34603         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
34604         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
34605         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
34606         and myself.
34607
34608 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34609
34610         * debug-symfile.c, sysmath.c: yet more compilation fixes.
34611
34612 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34613
34614         * reflection.c, socket-io.c: more compilation fixes.
34615
34616 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34617
34618         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
34619         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
34620         unicode.c: warning and compiler compatibility fixes.
34621
34622 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34623
34624         * class.h, metadata.c: fixed warnings/compilation errors.
34625
34626 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34627
34628         * Makefile.am, mono-config.c, mono-config.h: configuration file
34629         support routines.
34630         * loader.c, loader.h: make Dll mapping configurable at runtime in the
34631         config file. Export methods to insert and lookup mappings.
34632
34633 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34634
34635         * reflection.c: handle types and boxed objects in custom attr
34636         constructors.
34637
34638 2002-05-30  Martin Baulig  <martin@gnome.org>
34639
34640         * debug-symfile.c
34641         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
34642
34643 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
34644
34645         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
34646         to lookup the implmap row for a P/Invoke method.
34647         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
34648         P/Invoke method from the runtime on an as needed basis.
34649
34650 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
34651
34652         * metadata.c (mono_metadata_parse_signature): impl.
34653
34654 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34655
34656         * class.c: handle .pack directive.
34657
34658 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34659
34660         * object.c: initialize static fields with RVA data.
34661
34662 2002-05-25  Martin Baulig  <martin@gnome.org>
34663
34664         * debug-symfile.c
34665         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
34666
34667 2002-05-24  Martin Baulig  <martin@gnome.org>
34668
34669         * debug-symfile.c
34670         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
34671         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
34672         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
34673
34674 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34675
34676         * object.c: special case string ctros in invoke.
34677         * gc.c: silly whitespace changes.
34678
34679 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
34680
34681         * threadpool.[ch]: impl. a threadpool that can
34682         be used by mint and mono.
34683
34684 2002-05-22  Martin Baulig  <martin@gnome.org>
34685
34686         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
34687         The first argument is now a `MonoReflectionModuleBuilder *', the return
34688         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
34689         `methods' field to get the method builder.  The `token' argument is the
34690         unfixed token.
34691
34692         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
34693         invalid characters instead of g_assert_not_reached()ing.  This seems
34694         to be the behaviour of mscorlib.
34695
34696 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
34697
34698         * object.c (mono_runtime_invoke_array): applied patch from Rachel
34699         Hestilow to fix bug #25104
34700
34701 2002-05-21  Martin Baulig  <martin@gnome.org>
34702
34703         * debug-symfile.c (mono_debug_find_source_location): New function.
34704         Looks up an IL offset in the line number table and returns the source
34705         location as a string.
34706
34707 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34708
34709         * icall.c:
34710         (mono_double_ToStringImpl): changed %f by %g until we have something
34711         better.
34712
34713 2002-05-21  Nick Drochak  <ndrochak@gol.com>
34714
34715         * icall.c : Use different name for Math.Pow's icall.  Needed to check
34716         parameters first in C#.
34717
34718 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34719
34720         * icall.c, reflection.h: added icall to get info about an event.
34721
34722 2002-05-20  Radek Doulik  <rodo@ximian.com>
34723
34724         * object.c (mono_value_box): don't use memcpy for boxing on BIG
34725         endian
34726         (mono_value_box): don't use memcpy for small sizes on
34727         architectures with unaligned access
34728
34729 2002-05-20  Martin Baulig  <martin@gnome.org>
34730
34731         * reflection.c (mono_reflection_setup_internal_class): Don't crash
34732         if `tb->parent == NULL'.
34733         (mono_reflection_create_internal_class): New function.  This is
34734         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
34735         for enum types.
34736
34737         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
34738         New interncall.
34739
34740 2002-05-19  Martin Baulig  <martin@gnome.org>
34741
34742         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
34743         argument to get the length, don't default to the array length.
34744
34745 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
34746
34747         * assembly.c (mono_assembly_setrootdir): New function used to
34748         override the MONO_ASSEMBLIES directory.
34749
34750 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34751
34752         * icall.c: ValueType_GetHashCode() initialize local var.
34753
34754 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34755
34756         * reflection.c: sort custom attributes table.
34757
34758 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34759
34760         * reflection.c: support named args in custom attributes (write support).
34761
34762 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34763
34764         * reflection.c: fix finally position calculation.
34765
34766 2002-05-15  Radek Doulik  <rodo@ximian.com>
34767
34768         * reflection.c: fixed endianess at many places
34769
34770         * icall.c (ves_icall_InitializeArray): comment out debug msg
34771
34772 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
34773
34774         * object.c (mono_unhandled_exception): new function to handle
34775         unhandled exceptions.
34776         (mono_unhandled_exception): call the UnhandledException event.
34777         (mono_runtime_delegate_invoke): impl.
34778
34779 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
34780
34781         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
34782         returns the RVA, not the direct pointer to the data. Handle the case
34783         when the class size is fixed.
34784
34785 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34786
34787         * reflection.c: fix some endianess issues.
34788
34789 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
34790
34791         * object.c (mono_runtime_invoke): is now able to catch exceptions.
34792
34793         * threads.c (mono_thread_init): added a callback which is invoked
34794         at thread start.
34795
34796 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34797         
34798         * icall.c: make GetHashCode return non-negative values.
34799
34800 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34801
34802         * object.c, icall.c, gc.c: revert to address-based hashcode.
34803
34804 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
34805
34806         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
34807
34808 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34809
34810         * icall.c, class.c: special case <Module>.
34811
34812 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
34813
34814         * icall.c: fix bug in GetNow().
34815
34816 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
34817
34818         * object.c (mono_runtime_class_init): make sure that we call all
34819         static class constructors.
34820
34821 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34822
34823         * reflection.c: sort methodsemantics table.
34824
34825 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34826
34827         * reflection.h, reflection.c: honour init locals setting.
34828
34829 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
34830
34831         * icall.c: copied Double ToStringImpl for Single ToStringImpl
34832
34833 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34834
34835         * reflection.c: support ContructorBuilders in attribute blob creation.
34836
34837 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34838
34839         * reflection.c: some changes to build a binary that can be run
34840         directly in windows.
34841
34842 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
34843
34844         * loader.c: print a big message when an icall can't be found.
34845
34846 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34847
34848         * string-icalls.c: fix bug 24248.
34849
34850 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34851
34852         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
34853         icall.c, reflection.h: separate assembly loading by pathname and by
34854         assembly name. Use the MONO_PATH env var to search for assemblies.
34855
34856 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34857
34858         * assembly.c, image.h: add some support for assemblies
34859         with multiple modules.
34860         * class.c, class.h: export mono_class_from_typeref().
34861         * loader.c: remove duplicated code and use mono_class_from_typeref(),
34862         instead.
34863
34864 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34865
34866         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
34867         documentation says (the ECMA one is correct).
34868
34869 2002-05-02  Dick Porter  <dick@ximian.com>
34870
34871         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
34872         Don't name the synchronisation mutex.
34873
34874 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
34875
34876         * rand.c
34877         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
34878         Make the prototypes match.
34879         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
34880         Same.
34881
34882         * icall.c
34883         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
34884         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
34885         all systems have tm.tm_zone, so use strftime() with %Z to print
34886         the timezone abreviation into a temp string.
34887
34888         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
34889         rather than mono_array_addr() on a MonoString on Big Endian
34890         machines.
34891
34892 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
34893
34894         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
34895         fix bug 24041
34896
34897 2002-04-30  Dick Porter  <dick@ximian.com>
34898
34899         * socket-io.c: Cope with SOCKET being an integer rather than a
34900         pointer now.
34901
34902         * threads.c: Added Thread_free_internal, to deal with thread
34903         handle cleanup.  Moved calls to handle_store() and handle_remove()
34904         to start_wrapper(), so each can only be called once.  Allocate
34905         synchronisation blocks with GC_malloc(), and use GC finalisation
34906         to close the handles.
34907
34908         * icall.c: added System.Threading.Thread::Thread_free_internal
34909
34910 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34911
34912         * icall.c: support Environment.Exit, CommandLineArgs().
34913
34914 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34915
34916         * object.c, object.h: added mono_runtime_run_main () and
34917         mono_runtime_get_main_args () for use in System.Environment.
34918
34919 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34920
34921         * gc.c: fix thinko, enable actual finalization since the jit is now
34922         fixed.
34923
34924 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34925
34926         * gc.c, object.c: take into account that an object may be offset wrt the address
34927         returned by GC_malloc().
34928
34929 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
34930
34931         * image.c: handle files without entries in the assembly table (modules).
34932
34933 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
34934
34935         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
34936         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
34937         allowed to be null when it's System.Object class setup.
34938
34939 2002-04-27  Martin Baulig  <martin@gnome.org>
34940
34941         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
34942         if `tb->parent == NULL' rather than crashing.
34943
34944 2002-04-28  Nick Drochak  <ndrochak@gol.com>
34945
34946         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
34947         calling acos() where asin() should have been called.
34948
34949 2002-04-26  Martin Baulig  <martin@gnome.org>
34950
34951         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
34952         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
34953         there's a subdirectory called `System', but we don't want to read that
34954         subdirectory as an assembly.
34955
34956 2002-04-25  Martin Baulig  <martin@gnome.org>
34957
34958         * debug-symfile.c: Reflect latest MonoString changes.
34959
34960 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34961
34962         * rand.c, rand.h: instance method icalls need to have an explicit
34963         this pointer as first argument in the C implementation.
34964
34965 2002-04-25  Nick Drochak <ndrochak@gol.com>
34966
34967         * icall.c: Fix typo in map for GetNonZeroBytes
34968
34969 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34970
34971         * string-icalls.c : String does now passes unit tests without any 
34972         errors, the following changes has been made:
34973         
34974         Implemented replace methods.
34975         Renaming of methods to (try) follow the standard.
34976         Fixed compare ordinal
34977         Made all memory allocated directly to function instead of via icall function.
34978         Small performance fix in is_in_array function
34979                         
34980  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
34981
34982         c (mono_string_Internal_ctor_charp_int_int):
34983         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
34984         sindex < 0, throw ArgumentOutOfRangeException instead of
34985         ArgumentNullException.
34986
34987         Added new check for length == 0, however
34988         I need to make it return String.Empty from the C code.
34989         
34990         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
34991         that calculate the length for us here.
34992         
34993         (mono_string_Internal_ctor_sbytep_int_int): Replaced
34994         mono_string_new_utf16 with mono_string_new, since value is utf8.
34995
34996 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34997
34998         * object.c: register the object for finalization if needed.
34999         Allocate one more char in the string for the terminating 0 char.
35000
35001 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35002
35003         * class.c, class.h, image.c: check if a type implemenst a destructor.
35004         Use the proper key for array class lookups.
35005         * icall.c: register the icalls in the System.GC class.
35006         * gc.c, gc.h: GC-related functions and icalls.
35007
35008 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35009
35010         * icall.c:
35011         * socket-io.c:
35012         * unicode.c: free some strings gotten from mono_string_to_utf8 and
35013         changed a couple of free () by g_free ().
35014
35015         * decimal.c: one-liner in the comments for decimal2string ().
35016
35017 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35018
35019         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
35020
35021 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35022
35023         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
35024         * object.c (mono_runtime_invoke_array) : handle null in params
35025
35026 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35027
35028         * string-icalls.c: fixed bug in split (one off bug)
35029
35030 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35031
35032         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
35033         * icalls.c: added String::Equals as internal method
35034
35035 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35036
35037         * threads.c: fixed bug in the double interlocked functions
35038
35039 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
35040
35041         * threads.c: implemented all of the new interlocked icalls.
35042         * string-icalls.c: fix a bug in insert.
35043         * icalls.c: added the icalls for interlocked, removed old string functions.
35044         
35045 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35046
35047         * loader.c: fix off-by-one error when reading argument names.
35048
35049 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35050
35051         * profiler.c: win32 counter implementation (untested).
35052         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
35053         (the latter needs testing and more complete impl. from win32 folks).
35054
35055 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
35056
35057         * object.c: mono_array_new_full workaround mono_array_class_get
35058         problem.
35059
35060 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35061
35062         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35063         * object.h (mono_string_chars): Changed casting type.
35064
35065 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35066
35067         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35068                            method signatures to use gunichar2 instead of gint16.
35069
35070 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
35071
35072         * object.h, object.c: domain-specific versions of mono_object_new and
35073         mono_array_new.
35074
35075 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
35076
35077         * object.c: changed String layout
35078
35079         * string-icalls.c (mono_string_Internal_ctor_chara): added
35080         internal string constructors.
35081
35082 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35083
35084         * threads.c: pass 'this' to the thread start routine.
35085
35086 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35087
35088         * string-icalls.c: fix IndexOf and LastIndexOf. Now
35089         InternalCompareStr don't call twice mono_string_cmp_char for the last
35090         character. Improved performance in mono_string_cmp_char.
35091
35092 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35093
35094         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35095         code into its own library: libmonoruntime.
35096
35097 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
35098
35099         * object.h, object.c: changed array format so that szarrays do not
35100         require a bounds structure.
35101         * icall.c, appdomain.c: support for new szarray format.
35102
35103 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35104
35105         * metadata.c: compare also the retuns type when comparing signatures:
35106         we didn't do this as an optimization since really overloaded methods
35107         must differ also in the arguments, but this doesn't work with
35108         low-level IL code (or when using explicit conversion operators: see
35109         bug#23498 for an example).
35110
35111 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35112
35113         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35114
35115 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35116
35117         * icall.c: make MonoType::GetElementType its own icall.
35118
35119 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35120
35121         * icall.c: remove MonoMethod_get_Name().
35122         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35123         object.
35124
35125 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35126
35127         * string-icalls.c: optimized a few methods.
35128
35129 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35130
35131         * icall.c: added all new string internal calls
35132         * string-icalls.c: added, new string internal call implementation.
35133         * object.c: added mono_string_new_size for allocating a string a size
35134
35135 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35136
35137         * object.c (mono_object_isinst): use the same code as in the
35138         optimized x86 version.
35139
35140 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35141
35142         * profiler.c: TSC-based timer code (faster and more accurate).
35143         Not hooked up in configure, yet (set USE_X86TSC to 1).
35144
35145 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35146
35147         * profiler.c, profiler.h: track time spent compiling methods.
35148         * threads.c: track thread creation/destruction.
35149
35150 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35151
35152         * profiler.c, profiler.h, profiler-private.h: profiling interface
35153         and sample implementation. Moved here so that it can be used also by
35154         the jit.
35155
35156 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35157
35158         * reflection.c, reflection.h: keep types and other handles separate in
35159         the hash tables for referred tokens. Add guid for modules.
35160
35161 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35162
35163         * assembly.c: fix bugs found with valgrind.
35164         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35165
35166 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35167
35168         * threads: added icall support for getting current domain for
35169                    the thread.
35170  
35171 2002-04-13  Martin Baulig  <martin@gnome.org>
35172
35173         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35174         (MonoDebugVarInfo): Added `index' field for register based addresses.
35175         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35176         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35177         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35178         `MonoDebugVarInfo *this_var'.
35179
35180         * debug-symfile.c (relocate_variable): New static function to write
35181         a location description for a local variable or method parameter.
35182
35183 2002-04-12  Martin Baulig  <martin@gnome.org>
35184
35185         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35186         stack offset and begin/end scope address of a local variable.
35187         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35188         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35189         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35190
35191         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35192         Added new relocation types for start/end scope of a local variable.
35193
35194 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35195
35196         * object.h: add mono_object_domain() macro.
35197         * reflection.c: handle typespecs.
35198         * icall.c: MonoMethod::get_Name() implementation.
35199
35200 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35201
35202         * icall.c: String::GetHashCode() icall implementation.
35203
35204 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35205
35206         * icall.c: String::IndexOfAny icall.
35207         * object.c, object.h: make array->max_length more useful.
35208         Intrduced mono_object_class() and mono_string_length() macros.
35209
35210 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35211
35212         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35213         instead of g_unichar_isdigit.
35214
35215 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35216
35217         * icall.c: Implement a simple Double.ToString().
35218
35219 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35220
35221         * appdomain.h: only io-layer.h is supposed to be included.
35222         * icall.c: explicitly import environ. Fix warning.
35223
35224 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35225
35226         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35227                 return true even if it's not Daylight Savings time.
35228                 Only return false for the case where the function isn't
35229                 implemented for a plaform (read Windows).
35230
35231 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35232
35233         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35234         data with a mutex.
35235
35236 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35237
35238         * mempool.c (mono_mempool_alloc): only use g_malloc when
35239         absolutely necessary.
35240
35241 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35242
35243         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35244
35245         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35246         (mono_class_proxy_vtable): use domain mempool
35247
35248 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35249
35250         * appdomain.h, appdomain.c: split initialization that requires the
35251         execution engine support into mono_runtime_init().
35252
35253 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35254
35255         * class.c (mono_class_init): don't include vtable inside MonoClass
35256         to save some memory, gather some statistics.
35257         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35258
35259 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35260
35261         * icall.c: internalcall implementation for ValueType.Equals().
35262
35263 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35264
35265         * object.c (mono_message_init): moved 
35266         (mono_runtime_exec_main): new arch. independent impl.
35267         (mono_runtime_invoke_array): new method - like
35268         mono_runtime_invoke, but you can pass an array of objects.
35269         (mono_remoting_invoke): new arch. independent impl.
35270         (mono_message_invoke): new arch. independent impl.
35271         (mono_runtime_class_init): new arch. independent impl.
35272         (mono_runtime_object_init): new arch. independent impl.
35273
35274 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35275
35276         * metadata.c, object.c, reflection.c: documented the exported
35277         functions.
35278
35279 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35280
35281         * icall.c: simpler code to pass the assembly builder data to corlib.
35282         Implement GetNestedTypes() internalcall.
35283
35284 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35285
35286         * class.c: warn if a type can't be loaded.
35287
35288 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35289
35290         * image.h: typedef MonoImageOpenStatus
35291         * types.h: removed unused file
35292         
35293 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35294
35295         * icall.c: Enum_ToObject accepts enum value arguments.
35296
35297 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35298
35299         * class.c: move initialization of properties, events and nested
35300         classes, so that they happen for interfaces, too.
35301
35302 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35303
35304         * icall.c: cleanup some ugly casts in Array_SetValue*.
35305
35306 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35307
35308         * icall.c: the values array fro enums is of the correct type, now.
35309         Implement (correctly) getFullName instead of assQualifiedName for
35310         MonoType.
35311         * reflection.h, reflection.c: added mono_type_get_name ().
35312
35313 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35314
35315         * assembly.c, image.h: for each MonoImage, record from wich assembly
35316         it was loaded.
35317         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35318         Make Type.Assembly work.
35319
35320 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35321
35322         * debug-symfile.h: use char* instead of gpointer to avoid
35323         unnecessary casts.
35324
35325         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35326
35327         * icall.c (ves_icall_InternalExecute): impl. FielSetter
35328         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35329
35330 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
35331
35332         * icall.c (mono_message_init): impl. (code cleanup)
35333         (ves_icall_InternalExecute): impl. FieldGetter
35334
35335         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
35336         defined we call all (non-static)methods through the vtable. 
35337
35338 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
35339
35340         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
35341         finalizer even though the memory is still referenced (and the chunk of
35342         memory is not freed).
35343
35344 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35345
35346         * assembly.c: fix brokeness.
35347
35348 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
35349
35350         * class.c: kill some warnings. Check explicit interface method
35351         implementation also without considering the namespace.
35352         Load also literal strings in static class data.
35353
35354 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
35355
35356         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
35357         (default_assembly_name_resolver): Make the resolver take the
35358         "base" directory where the assembly was originally defined, so we
35359         can load DLLs that are in the same directory as the assembly that
35360         is being referenced.
35361
35362 2002-03-28  Dick Porter  <dick@ximian.com>
35363
35364         * file-io.h: 
35365         * file-io.c:
35366         * socket-io.c: 
35367         * unicode.h: 
35368         * unicode.c: Warning cleanups
35369
35370 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
35371
35372         * object.h, reflection.h: use the correct type instead of MonoObject.
35373
35374 2002-03-28  Martin Baulig  <martin@gnome.org>
35375
35376         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
35377         (mono_debug_update_symbol_file): Initialize classes if necessary.
35378
35379 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35380
35381         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
35382         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
35383
35384 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
35385
35386         * assembly.h: fix function prototype.
35387         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
35388         * mono-endian.h: use const cast.
35389
35390 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35391
35392         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
35393
35394 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35395
35396         * loader.c: don't assert when a typeref can't be loaded, give
35397         a chance to the runtime to trow an exception instead.
35398         * loader.h: fix warning.
35399
35400 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35401
35402         * class.c (mono_class_proxy_vtable): added proxy support
35403
35404 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
35405
35406         * icall.c: removed last of PAL calls, added System.Environment
35407         * file-io.h, file-io.c: MonoIO implementation
35408         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
35409
35410 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35411
35412         * appdomain.c: do not use the byte marker in ldstr table lookup.
35413         * debug-helpers.c: allow two ':' to separate class and method name.
35414         * object.c: allocate arrays bounds with the GC, too.
35415         * verify: add a few more checks.
35416
35417 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
35418
35419         * reflection.c: output also literal strings. Allocate parameter data
35420         with GC_malloc() (thanks, Martin, for catching this!).
35421
35422 2002-03-26  Martin Baulig  <martin@gnome.org>
35423
35424         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
35425         include the `this' offset in the `param_offsets'.
35426
35427 2002-03-25  Martin Baulig  <martin@gnome.org>
35428
35429         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
35430         mono_debug_get_class() function to get the classes. Added new
35431         relocation types for arrays and strings.
35432         (mono_debug_get_class): New static function to search in all
35433         referenced assemblies for a metadata token.
35434
35435         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
35436
35437 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
35438
35439         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
35440         hold gc-allocated objects. Make the string heap a stream like the
35441         others. Removed duplicated code when writing stream info.
35442         Added asserts to catch possible buffer overflows. Set the sorted map
35443         for tables that need sorting. Added some documentation.
35444
35445 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
35446
35447         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
35448         for interned strings and vtables.
35449
35450 2002-03-24  Martin Baulig  <martin@gnome.org>
35451
35452         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
35453         it in the array since it was created with g_slist_prepend().
35454
35455 2002-03-24  Martin Baulig  <martin@gnome.org>
35456
35457         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
35458         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
35459         (mono_debug_method_from_token): Renamed to
35460         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
35461         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
35462
35463         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
35464         relocation types.
35465
35466         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
35467
35468 2002-03-24  Martin Baulig  <martin@gnome.org>
35469
35470         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
35471         (mono_debug_method_from_token): New func.
35472
35473         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
35474         New interncall, calls mono_debug_local_type_from_signature().
35475         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
35476         calls mono_debug_method_from_token().
35477
35478 2002-03-23  Martin Baulig  <martin@gnome.org>
35479
35480         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
35481         specifies the number of bytes to be converted, not the array size.
35482         Return the number of chars, not the number of bytes.
35483         (ves_icall_iconv_get_chars): The `byteCount' argument
35484         specifies the number of bytes to be converted, not the array size.
35485
35486 2002-03-23  Martin Baulig  <martin@gnome.org>
35487
35488         * reflection.h (MonoReflectionSigHelper): New type.
35489
35490         * reflection.c (mono_reflection_sighelper_get_signature_local),
35491         (mono_reflection_sighelper_get_signature_local): New functions.
35492
35493         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
35494         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
35495         interncalls.
35496
35497 2002-03-23  Martin Baulig  <martin@gnome.org>
35498
35499         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
35500         is_writeable is set.
35501         (mono_raw_buffer_update): New function to write the modified map
35502         back to disk.
35503
35504         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
35505
35506         * debug-symfile.c (mono_debug_update_symbol_file): Call
35507         mono_raw_buffer_update() when done writing.
35508
35509 2002-03-23  Martin Baulig  <martin@gnome.org>
35510
35511         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
35512
35513         * debug-symfile.c: Added support for arguments and local variables.
35514
35515 2002-03-23  Dick Porter  <dick@ximian.com>
35516
35517         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
35518         protected by ifdefs, hence breaking the w32 build.
35519
35520 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35521
35522         * object.c: implement is_interned() the right way.
35523
35524 2002-03-21  Martin Baulig  <martin@gnome.org>
35525
35526         * debug-symfile.[ch]: New files to handle debugging information
35527         files. There's also support to dynamically update these symbol
35528         files to include machine dependent information.
35529
35530 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
35531
35532         * threads.c (mono_thread_create): new function to create thread
35533         from C
35534
35535 2002-03-20  Martin Baulig  <martin@gnome.org>
35536
35537         * icall.c (ves_icall_InternalInvoke): Create a new object if the
35538         method is a constructor.
35539         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
35540         points to ves_icall_InternalInvoke().
35541
35542 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
35543
35544         * file-io.c: Flush shouldn't throw exceptions.
35545
35546 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
35547
35548         * file-io.c: FileStream flush support; FileSetLength now
35549         restores file pointer.
35550
35551 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35552
35553         * class.c: set image for pointer classes.
35554
35555 2002/03/19  Nick Drochak <ndrochak@gol.com>
35556
35557         * sysmath.c: Forgot one.
35558
35559 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
35560
35561         * sysmath.c: Avoid redefining existing names.
35562
35563 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
35564
35565         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
35566         handled by runtime as icall rather than dllimport from libm.so
35567         * file-io.c, file-io.h: fixed handle argument type.
35568
35569 2002-03-18  Dick Porter  <dick@ximian.com>
35570
35571         * reflection.c (mono_image_get_type_info): rename interface to
35572         iface, because of "#define interface struct" on windows.
35573
35574 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
35575
35576         * class.c, class.h: rename and export mono_ptr_class_get().
35577         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
35578         * reflection.c, reflection.h, icall.c: better/saner type name
35579         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
35580         method signatures.
35581
35582 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
35583
35584         * class.c (mono_class_init): removed hardcoded GHC_SLOT
35585
35586         * icall.c (ves_icall_InternalInvoke): impl.
35587
35588 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35589
35590         * reflection.c: output the interface map table, too.
35591
35592 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35593
35594         * class.c (class_compute_field_layout): separate computation of 
35595         static field layout
35596
35597 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
35598
35599         * icall.c: added System.Buffer support.
35600         * file-io.c: moved file icalls from PAL to FileStream.
35601
35602 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35603
35604         * icall.c (ves_icall_System_Object_GetHashCode): impl.
35605
35606 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
35607
35608         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
35609
35610 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35611
35612         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
35613
35614 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35615
35616         * debug-helpers.{c,h}: moved here from monograph some useful functions
35617         to locate a method by name/signature in a class or image. Included
35618         also a small and flexible IL disassembler.
35619
35620 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35621
35622         * reflection.c: fixup tokens in methods with small header size, too.
35623
35624 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
35625
35626         * object.c (mono_string_to_utf8): remove assert(!error), instead
35627         print a warning. 
35628
35629 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
35630
35631         * icall.c: update to the new mono_Array_class_get interface.
35632
35633 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35634
35635         * appdomain.c, object.c: Boehm-GC enable.
35636         * icall.c: make get_data_chunk() support split data requests.
35637         Ensure a class is initialized in more cases. Return only the first
35638         property found in GetProperties() or the compiler gets confused. 
35639         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
35640         * reflection.h, reflection.c: add fixup mechanism for field and method
35641         tokens. Initialize assembly->typeref in a single place. Output
35642         properties after events. Support custom attributes for events, too.
35643         Typo fix for paramter custom attrs.
35644
35645 2002-03-07  Martin Baulig  <martin@gnome.org>
35646
35647         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
35648
35649 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
35650
35651         * class.c (mono_array_class_get): fix. for multi. dim. arrays
35652
35653 2002-03-06  Martin Baulig  <martin@gnome.org>
35654
35655         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
35656         non-zero lower bounds. See testcases #F10-#F13.
35657
35658 2002-03-05  Martin Baulig  <martin@gnome.org>
35659
35660         * exception.c (mono_get_exception_argument_out_of_range): New exception.
35661
35662         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
35663         ves_icall_System_Array_GetValue(), only calculate the absolute array position
35664         here.
35665         (ves_icall_System_Array_SetValue): Likewise.
35666         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
35667         as argument and does the actual work. This function is used when copying a
35668         multi-dimensional array.
35669         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
35670         now do all the widening conversions of value types.
35671         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
35672
35673 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35674
35675         * class.c: remove some magic numbers and use the smbolic names,
35676         instead. Added init_events() to load event info at class init time.
35677         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
35678         and mono_metadata_methods_from_event().
35679         * reflection.h, reflection.c: added support for writing out the evnets
35680         related information.
35681
35682 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35683
35684         * reflection.h, icall.c: use a different method (GetInterfaces)
35685         to gather interface info and add isbyref, isprimitive and
35686         ispointer to the ves_icall_get_type_info() return value.
35687
35688 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35689
35690         * class.h: stared adding support for events.
35691         * icall.c: split find_members implementation. Added debug icall to get
35692         the address of an object.
35693         * reflection.c: handle TypeBuilders in mono_type_get_object().
35694
35695 2002-03-01  Martin Baulig  <martin@gnome.org>
35696
35697         * icall.c (ves_icall_System_Array_GetLength): This must throw an
35698         ArgumentOutOfRangeException(), not an ArgumentException().
35699         (ves_icall_System_Array_GetLowerBound): Likewise.
35700         (ves_icall_System_Array_GetValue): Improved argument checking.
35701         (ves_icall_System_Array_SetValue): Improved argument checking.
35702
35703 2002-03-01  Martin Baulig  <martin@gnome.org>
35704
35705         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
35706         called with invalid arguments rather than just dying with g_assert().
35707         (ves_icall_System_Array_SetValue): Likewise.
35708         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
35709         raise a NotImplementedException instead.
35710         (ves_icall_System_Array_GetLength): Added argument checking.
35711         (ves_icall_System_Array_GetLowerBound): Added argument checking.
35712
35713 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
35714
35715         * object.h (mono_assert): new macros mono_assert and
35716         mono_assert_not_reached
35717
35718 2002-02-28  Martin Baulig  <martin@gnome.org>
35719
35720         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
35721         and "System::String::IsInterned" to "System::String::_IsInterned".
35722
35723 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
35724
35725         * icall.c: remove hacks for typebuilder. Added icall to create a
35726         modified type from a tybebuilder.
35727         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
35728         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
35729         to create a backing MonoClass for a TypeBuilder.
35730
35731 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35732
35733         * class.c, class.h: more refactoring of class init.
35734         Export mono_class_setup_mono_type() and mono_class_setup_parent().
35735
35736 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
35737
35738         * marshal.c, marshal.h: start of marshaling interface.
35739
35740 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
35741
35742         * icall.c: fix order in assembly qualified name icall.
35743
35744 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
35745
35746         * class.c: do not free str, since we store it in the hash table.
35747         * reflection.h: add label field to MonoILExceptionInfo.
35748         * reflection.c: handle references to more than one assembly. Handle
35749         case when there isn't a module created in the assembly.
35750
35751 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35752
35753         * class.c: Fix typo. Start refactoring of class init code.
35754
35755 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35756
35757         * appdomain.c: exit with 1 on error.
35758         * class.c: we already have the name in MonoClassField.
35759         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
35760         MonoStreamHeader instead of an offset of image->raw_metadata.
35761
35762 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
35763
35764         * appdomain.c (mono_init): Be even more descriptive about the error.
35765
35766 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
35767
35768         * appdomain.c: give the user an informative message when corlib can't
35769         be loaded.
35770
35771 2002-02-26  Martin Baulig  <martin@gnome.org>
35772
35773         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
35774         New icall to get the time zone data.
35775
35776 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35777
35778         * reflection.c: set virtual and raw size of section correctly.
35779         * threads.c: transfer domain information to newly created threads.
35780
35781 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
35782
35783         * class.c: when instancing a class in a domain, load the default
35784         vaules for static fields from the constant table. Fix System.Enum to
35785         not be an enum.
35786         * icall.c: implement Object::GetType() internalcall. Implemented
35787         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
35788         Fixed checking of binding flags in find_members().
35789         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
35790         * reflection.c: handle enumerations when writing to the constant
35791         table. Use a different object cache for types.
35792
35793
35794 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
35795
35796         * object.c (mono_object_isinst): fix for arrays
35797
35798         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
35799
35800 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
35801
35802         * object.c: don't use mprotect ()  and fix intern pool hash table
35803         lookup for big endian systems.
35804
35805 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35806
35807         * icall.c: change type_is_subtype_of () signature.
35808
35809 2002-02-21  Mark Crichton  <crichton@gimp.org>
35810
35811         * rand.c, rand.h: Added random number generator for
35812         System.Security.Cryptography classes.
35813
35814         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
35815
35816         * icall.c: Added System.Security.Cryptography calls.
35817
35818 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
35819
35820         * class.c, icall.c, metadata.c: better support for pointer types.
35821         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
35822         * reflection.c: Add support for getting custom attrs for properties
35823         and simplify some code.
35824
35825 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35826
35827         * icall.c: change getToken () and add custom attribute GetBlob()helper
35828         method.
35829         * reflection.h: add custom attrs array to the reflection builder structures.
35830         * reflection.c: encode and emit custom attributes for all the relevant
35831         reflection objects. Cache fieldref and methodref tokens. Change
35832         mono_image_create_token() interface to take a MonoDynamicAssembly.
35833         More complete custom attributes decoder. Load custom attributes for
35834         Assembly, Field, Method and Constructor objects, too. Make the
35835         returned array an Attribute[] one, not object[]. Added
35836         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
35837         custom attribute constructor.
35838
35839 2002-02-20  Dick Porter  <dick@ximian.com>
35840
35841         * icall.c:
35842         * rawbuffer.c:
35843         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
35844         problem code out for now).
35845
35846 2002-02-19  Radek Doulik  <rodo@ximian.com>
35847
35848         * object.c (mono_ldstr): use hash table to avoid multiple swapping
35849
35850 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
35851
35852         * icall.c: register the GetCustomAttributes method.
35853         * object.c, object.h: add mono_string_new_len ().
35854         * reflection.h, reflection.c: added mono_runtime_invoke(),
35855         mono_install_runtime_invoke(). Added
35856         mono_reflection_get_custom_attrs () to load custom attributes and
35857         create the attribute objects.
35858
35859 2002-02-19  Dick Porter  <dick@ximian.com>
35860         * threads-dummy-types.c:
35861         * threads-dummy-types.h:
35862         * threads-dummy.c:
35863         * threads-dummy.h:
35864         * threads-pthread-types.c:
35865         * threads-pthread-types.h:
35866         * threads-pthread.c:
35867         * threads-pthread.h:  Deleted obsolete files
35868
35869 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
35870
35871         * class.c (mono_class_vtable): runtime init the class when we
35872         allocate static class data.
35873
35874         * icall.c (ves_icall_System_Array_SetValue): check for null values.
35875
35876         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
35877         and String - but we will need generic marshalling support in the
35878         future. 
35879         (mono_init): set the domain name in a ms compatible way
35880
35881         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
35882         String[].
35883
35884 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
35885
35886         * object.c (mono_array_clone): use alloca() instead of g_malloc  
35887         for sizes
35888
35889         * appdomain.c (mono_domain_unload): impl.
35890
35891 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
35892
35893         * appdomain.c, object.c: fix intern pool implementation.
35894         * class.c: fix alignment code.
35895
35896 2002-02-16  Radek Doulik  <rodo@ximian.com>
35897
35898         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
35899         and s2 > s1, just copy lower bytes to be compatible with little
35900         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
35901         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
35902
35903         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
35904         force big_endian to be 1 for big endian machines 
35905         (ves_icall_iconv_new_decoder): ditto
35906
35907 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
35908
35909         * socket-io.c (convert_sockopt_level_and_name): If the system
35910         doesn't define SOL_IP or SOL_TCP, get them by hand using
35911         getprotobyname() and caching the values (because this could be a
35912         slow operation).
35913         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
35914         Use the appropriate struct when the system does support it. Ie,
35915         not all systems have struct ip_mreqn so use struct ip_mreq when
35916         appropriate.
35917
35918 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
35919
35920         * reflection.c: handle finally clauses.
35921
35922 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
35923
35924         * socket-io.c: use g_snprintf() instead of snprintf.
35925
35926 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35927
35928         * reflection.c (mono_param_get_objects): Cast second argument to
35929         mono_method_get_param_names to a const char** to silence the
35930         compiler warning.
35931
35932         * appdomain.c (mono_domain_assembly_open): Put parens around the
35933         truth statement in the for-loop.
35934
35935         * unicode.c (iconv_convert): Got rid of a compiler warning about
35936         int i being unused when the system has a new iconv.
35937         (iconv_get_length): Same.
35938
35939         * image.c (load_class_names): Cast the second argument to
35940         g_hash_table_insert() to char* to hush compiler warnings about the
35941         arg being a const.
35942         (mono_image_open): Same here.
35943
35944         * socket-io.c: Don't conditionally include sys/filio.h or
35945         sys/sockio.h here anymore since we now get them from
35946         io-layer/io-layer.h
35947         (inet_pton): If the system doesn't support inet_aton, implement
35948         using inet_addr and also #define INADDR_NONE if it isn't defined
35949         by the system.
35950
35951 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
35952
35953         * metadata.c, metadata.h: added function to get packing and size info
35954         of a typedef.
35955         * reflection.h, reflection.c: handle field RVA data. Save info about
35956         the table layout if needed. Assign typedef indexes to all the types
35957         before dumping the info about them to avoid forward reference problems.
35958
35959 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
35960
35961         * socket-io.c (convert_sockopt_level_and_name): ifdef
35962         SO_ACCEPTCONN because it is not defined on my system (old debian)
35963
35964 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35965
35966         * opcode.c: use stddef.h to get NULL.
35967
35968 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35969
35970         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
35971         for FIONBIO, FIONREAD and SIOCATMARK.
35972         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
35973         define INADDR_NONE and besides, inet_addr() is deprecated and
35974         should not be used. Use inet_pton() instead - it also has the
35975         added bonus that it can easily handle IPv6 addresses as well.
35976         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
35977
35978 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35979
35980         * decimal.c: remove _MSC_VER conditional.
35981
35982 2002-02-13  Dick Porter  <dick@ximian.com>
35983
35984         * socket-io.c: 
35985         * icall.c: Internal calls for Blocking, Select, Shutdown,
35986         GetSocketOption and SetSocketOption
35987
35988 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35989
35990         * assembly.cs: better resolver: use it instead of some kludgy
35991         code.
35992
35993 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
35994
35995         * reflection.c: the best way to speed-up the compiler is to avoid
35996         infinite loops.
35997
35998 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
35999
36000         * class.c (mono_class_vtable): changed the object layout
36001         (obj->vtable->class). 
36002         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
36003
36004 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36005
36006         * assembly.c: look for assemblies in the assembly dir, too.
36007
36008 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36009
36010         * class.c: fix thinko in mono_class_from_type().
36011
36012 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36013
36014         * exception.h, exception.c: added TypeLoadException.
36015         * object.h, object.c: added mono_array_clone ().
36016         * icall.c: handle throwOnError in AssemblyGetType().
36017         Added Array.Clone().
36018         * opcode.h, opcode.c: use a single value for the opcode val.
36019         Compile fix for non-gcc compilers.
36020
36021 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
36022
36023         * opcodes.c, opcodes.h: export interesting info about opcodes.
36024
36025 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
36026
36027         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
36028         icalls. 
36029
36030         * class.c (class_compute_field_layout): set element_class for enums
36031         (mono_class_create_from_typedef): set element_class for normal classes
36032
36033         * icall.c (ves_icall_System_Enum_get_value): impl.
36034
36035         * class.c (mono_class_create_from_typedef): do not set valuetype
36036         flag for System.ValueType and System.Enum
36037
36038 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
36039
36040         * unicode.c (iconv_convert): fix big endian problem.
36041
36042 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36043
36044         * class.c: add asserts if we are ever going to scribble over memory.
36045         * socket-io.c: not all systems have AF_IRDA defined.
36046
36047 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
36048
36049         * class.c (class_compute_field_layout): do not consider static
36050         fields to compute alignment
36051
36052 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
36053
36054         * appdomain.c (mono_appdomain_get): impl.
36055         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
36056
36057 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36058
36059         * icall.c: ignore "file://" prefix when loading an assembly.
36060
36061 2002-01-23  Dick Porter  <dick@ximian.com>
36062
36063         * socket-io.c:
36064         * icall.c:
36065         * Makefile.am: Added socket support
36066
36067 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36068
36069         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36070         code back.  This should return the assemblies that are loaded by
36071         the runtime on behalf of an application domain. 
36072
36073         The current implementation is still broken, it just returns every
36074         assembly loaded, but until we get real applications domain this
36075         will do.
36076
36077 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
36078
36079         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36080         AppDomain object.
36081
36082 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36083
36084         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36085         the mono_class_from_name lookup.
36086         (ves_icall_get_parameter_info): ditto.
36087         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36088         method.
36089         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36090
36091 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36092
36093         * class.c: load also nested classes on class init.
36094         System.ValueType instance methods gets passed boxed
36095         values, unless methods in derived classed that get a pointer to the
36096         data.
36097         * icall.c: use better name parsing code in GetType().
36098         * image.c, image.h: add mono_image_loaded ().
36099         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36100         * reflection.c, reflection.h: added mono_reflection_parse_type().
36101
36102 2002-01-22  Veronica De Santis <veron78@interfree.it>
36103
36104         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36105         * threads.c : Added the implementation of internal calls for events
36106         * threads.h : Added prototypes of internal calls for events
36107         
36108 2002-01-21  Radek Doulik  <rodo@ximian.com>
36109
36110         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36111
36112 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36113
36114         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36115         (mono_class_value_size): use min_align
36116
36117 2002-01-20  Dick Porter  <dick@ximian.com>
36118
36119         * threads.h:
36120         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36121         so it compiles on w32.
36122
36123 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36124
36125         * metadata.c (mono_type_stack_size): impl.
36126
36127         * class.c (mono_class_get_field): impl. memberref token
36128
36129 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36130
36131         * icall.h : Added the internal calls mapping for CreateMutex_internal
36132                     and ReleaseMutex_internal.
36133         * threads.h : Added the prototype of mutexes internal calls.
36134         * threads.c : Added the implementations of mutexes internal calls.
36135
36136 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36137
36138         * metaparse.h: removed unused file.
36139         * reflection.c, reflection.h: added stream_data_align () function 
36140         to align data in streams and keep stream aligned. Add support for
36141         exception support in method headers.
36142
36143 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36144
36145         * unicode.c: make iconv_convert () return the number of bytess written
36146         in the output buffer.
36147
36148 2002-01-15  Dick Porter  <dick@ximian.com>
36149         * threads.c: Make the runtime's idea of infinite timeouts coincide
36150         with the class library's
36151
36152         Fix a particularly egregious bug in mono_thread_cleanup(). That
36153         code was so utterly bogus it must have been written on a Monday.
36154
36155 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36156
36157         * reflection.h: add subtypes field to TypeBuilder.
36158         * reflection.c: encode constants for literal fields.
36159         Handle subtypes. Fix user string token (and add a zero byte)
36160         at the end.
36161         
36162 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36163
36164         * class.c (mono_class_init): bug fix: assign slot numbers for
36165         abstract methods.
36166
36167 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36168
36169         * reflection.c: don't try to output a code RVA for abstract methods.
36170         Small fixes for method header format. Output parameter info to the
36171         ParamDef table. Save method overriding info to MethodImpl table.
36172         Fix property support. Allow typedef.extends to be a type in the
36173         building assembly.
36174         * verify.c: fix off-by-one error.
36175
36176 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36177
36178         * class.c: fix mono_class_from_mono_type () for szarray types.
36179         Remove unused cache check in mono_class_from_type_spec().
36180         * icall.c: *type_from_name () functions handle simple arrays and byref.
36181         * reflection.c: handle byref and szarray types. Handle methods without
36182         body (gets P/Invoke compilation working). Handle types and fields in
36183         get_token ().
36184         * reflection.h: add rank to MonoTypeInfo.
36185
36186 2002-01-10  Dick Porter  <dick@ximian.com>
36187
36188         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36189         internal calls
36190
36191 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36192
36193         * icall.c: initialize class in type_from_handle ().
36194         Loop also in parent classes for get_method ().
36195         * reflection.c: properly encode class and valuetype types.
36196         Start on encoding TypeBuilder types. Handle fieldrefs.
36197         Use correct length when registering a user string.
36198         Handle ConstructorBuilder and MonoMethod in get_token ().
36199         Make mono_type_get_object () aware of cached types.
36200         * object.c: back out change to mono_string_new ().
36201
36202 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36203         * object.c: mono_string_new should return a NULL when the string 
36204         passed in is NULL -- not try to deference it.
36205         
36206 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36207
36208         * icall.c: hack to make IsSubType work for TypeBuilders.
36209         * reflection.c: emit constructors before methods.
36210         Retrieve param names in mono_param_get_objects().
36211
36212 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36213
36214         * Makefile.am: fix list of headers and sources so automake 1.5
36215         doesn't complain. Removed \# at end of list.
36216
36217 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36218
36219         * reflection.c: get token for a method ref. Set return type of
36220         constructor to void.
36221         * loader.c: debug message.
36222         * class.c: typo fix.
36223
36224 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36225
36226         * icall.c: fix array init with rank > 1. FindMembers
36227         loops in parent class as well.
36228         * image.c: do not insert nested types in name cache.
36229         * reflection.c: warning fix.
36230         * reflection.h: add override method (for interface impl).
36231
36232 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36233
36234         * metadata.c: fix customattr decoding.
36235
36236 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36237
36238         * rawbuffer.cs: Added native Win32 implementation, avoids using
36239         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36240
36241 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36242
36243         * class.c: make the low-level routines handle the cache.
36244
36245 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36246
36247         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36248
36249 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36250
36251         * class.c: fix mono_array_element_size() for objects.
36252         * class.h, class.c: add properties to MonoClass and load them
36253         at init time.
36254         * icall.c: check with isinst() when assigning a value to an array
36255         instead of requiring the classes to match exactly.
36256         Implemented icall for System.Type::GetType().
36257         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36258         enums. Handle bindingflags when looking for methods and fields.
36259         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36260         and mono_metadata_methods_from_property().
36261         * reflection.h, reflection.c: added structures for propreties,
36262         parameters and enums. Implemented mono_property_get_object() and
36263         mono_param_get_objects().
36264
36265 2001-12-18  Dick Porter  <dick@ximian.com>
36266
36267         * file-io.c: Use mono_string_to_utf16() instead of
36268         mono_string_chars()
36269
36270         * object.c: Added mono_string_to_utf16(), which copies the non
36271         NULL-terminated MonoString into a new double-null-terminated
36272         buffer.
36273
36274 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36275
36276         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36277
36278 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36279
36280         * file-io.c: raise exceptions if handle is invalid.
36281
36282 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36283
36284         * assembly.c: yet another check for mscorlib.
36285         * class.c, class.h: load nesting info for classes.
36286         * icall.c: many new functions to support the Reflection classes.
36287         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36288         * reflection.h, reflection.c: mono_image_create_token(),
36289         mono_assembly_get_object(), mono_type_get_object(),
36290         mono_method_get_object(), mono_field_get_object(): methods to return
36291         objects that parallel the C representation of assemblies, types,
36292         methods, fields.
36293
36294 2001-12-11  Dick Porter  <dick@ximian.com>
36295
36296         * icall.c:
36297         * file-io.c: Internal calls for file IO.
36298
36299 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36300
36301         * tabledefs.h: missing FileAttributes.
36302         * verify.h, verify.c: use is_valid_string () to simplify and check for
36303         valid strings more correctly. Fix warnings and speeling.
36304         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36305         Check code: branches, maxstack, method calls.
36306
36307 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36308
36309         * object.c (mono_object_allocate): removed static, so that the jit
36310         can allocate value types.
36311
36312         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36313
36314 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36315
36316         * class.c: init enum types right away and register the
36317         token->MonoClass map in mono_class_create_from_typedef ().
36318         * verify.h, verify.c: first cut of the verifier.
36319         * pedump.c: add --verify switch to verify metadata tables.
36320         * tabledefs.h: add some missing enums.
36321
36322 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36323
36324         * class.c (mono_install_runtime_class_init): impl.
36325         (mono_class_init): renamed mono_class_metadata_init to
36326         mono_class_init, also removed the metadata_inited flag
36327
36328         * object.c (mono_object_isinst): use faster algorithm
36329
36330 2001-11-30  Radek Doulik  <rodo@ximian.com>
36331
36332         * mono-endian.h: reverted last change
36333         added function prototypes
36334
36335         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
36336         add mono-endian.c back
36337
36338         * mono-endian.c: returned back, as Paolo pointed out, it's needed
36339         for unaligned access, I've mistaked it with endianess. I am
36340         sorry.
36341         (mono_read16): fix reverted endianess
36342         (mono_read64): ditto
36343         (mono_read32): ditto
36344
36345 2001-11-30  Dick Porter  <dick@ximian.com>
36346
36347         * exception.c: Implement mono_exception_from_name()
36348
36349 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36350
36351         * metadata.h, metadata.c: remove params_size and locals_size and their
36352         calculation from the metadata code: they are only usefult to the
36353         interp.
36354
36355 2001-11-29  Radek Doulik  <rodo@ximian.com>
36356
36357         * object.c (mono_ldstr): swap bytes here, it's probably not the
36358         best place, but works for me now, I'll redo it once I know mono
36359         better, also note that I add PROT_WRITE and don't reset back, also
36360         note that it's only affects big endians, so x86 should be OK
36361
36362         * mono-endian.h (read16): use just glib macros for both endians
36363
36364         * mono-endian.c: removed as glib macros are used in in
36365         mono-endian.h so we don't need to care about endianess for read
36366         macros as glib does that for us already
36367
36368 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
36369
36370         * class.h, class.h: take minimum alignment into consideration so
36371         that the fields of a class remain aligned also when in an array.
36372
36373 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36374
36375         * loader.h, loader.c: add mono_method_get_param_names().
36376         * class.c: 0-init class fields.
36377
36378 2001-11-26  Dick Porter  <dick@ximian.com>
36379
36380         * icall.c:
36381         * threads-types.h:
36382         * threads.c: New file that handles System.Threading on all platforms
36383
36384         * object.c: 
36385         * object.h: Remove the synchronisation struct from MonoObject,
36386         replace it with a pointer that gets initialised on demand
36387
36388         * Makefile.am: Replace all the system-specific threading code with
36389         a single file that uses the new wrapper library
36390
36391 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
36392
36393         * class.c, class.h: add mono_install_trampoline() so that the runtime
36394         can register a function to create a trampoline: removes the ugly
36395         requirement that a runtime needed to export arch_create_jit_trampoline.
36396         * object.h, object.c: added mono_install_handler() so that the runtime
36397         can install an handler for exceptions generated in C code (with
36398         mono_raise_exception()). Added C struct for System.Delegate.
36399         * pedump.c: removed arch_create_jit_trampoline.
36400         * reflection.c: some cleanups to allow registering user strings and
36401         later getting a token for methodrefs and fieldrefs before the assembly
36402         is built.
36403         * row-indexes.h: updates and fixes from the new ECMA specs.
36404
36405 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
36406
36407         * class.h, class.c: add enum_basetype field to MonoClass.
36408         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
36409         to get index in the constant table reated to a field, param or
36410         property.
36411         * reflection.h, reflection.c: handle constructors. Set public-key and
36412         version number of the built assembly to 0.
36413         * row-indexes.h: update from new ECMA spec.
36414
36415 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36416
36417         * class.h, class.c: add a max_interface_id to MonoClass.
36418         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
36419         since it's used to do that. Added mono_type_type_from_obj().
36420         Make GetType() return NULL instead of segfaulting if the type was not
36421         found. Handle simple arrays in assQualifiedName.
36422         * object.h: add a struct to represent an Exception.
36423         * reflection.c: output call convention in method signature.
36424         Add code to support P/Invoke methods and fixed offsets for fields.
36425
36426 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
36427
36428         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
36429         the value.
36430         * icall.c: use mono_array_addr instead of array->vector: fixes the
36431         reflection image writing.
36432         * reflection.c: init call convention byte to 0 in method signature.
36433         Encode the property signature. Don't output property-related methods
36434         twice. Really process the properties for a type (don't cast a field to
36435         a property, my mom always told me that).
36436         Fix 64 bit issues in pointer alignment in a different and more
36437         readable way.
36438
36439 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
36440
36441         * loader.h: Removed type class from MonoDefaults, added monotype
36442
36443         * loader.c: Loaded MonoType, removed loading of Type
36444
36445         * icall.c (my_mono_new_object): Now returns a System.MonoType,
36446         and fills in System.Type._impl with a RuntimeTypeHandle rather
36447         than the actual MonoClass *
36448
36449         (ves_icall_type_from_handle): change from type_class to
36450         monotype_class
36451
36452         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
36453         implemented
36454
36455         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
36456         implemented
36457
36458         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
36459
36460         (ves_icall_System_Reflection_Assembly_GetType): implemented
36461
36462         (ves_icall_System_MonoType_assQualifiedName): implemented
36463
36464         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
36465
36466 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
36467
36468         * assembly.c (mono_assembly_open): Implement a cache for the
36469         assemblies. 
36470
36471         (mono_assembly_close): only destroy the assembly when the last
36472         reference is gone.
36473         
36474 2001-11-09  Dick Porter  <dick@ximian.com>
36475
36476         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
36477
36478 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
36479
36480         * class.c (mono_class_metadata_init): bug fix: compute the right slot
36481
36482 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36483
36484         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
36485         from Martin Weindel.
36486         * object.h: add mono_string_chars ().
36487
36488 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
36489
36490         * reflection.c (build_compressed_metadata): Eliminates warnings
36491         and uses 64-bit clean code.
36492
36493         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
36494         (mono_type_equal): Change signature to eliminate warnings.
36495
36496 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36497
36498         * icall.c, loader.c: remove the internalcall array constructors.
36499         Changes to match the new MonoArray structure.
36500         * object.h, object.c: an array object doesn't allocate an extra
36501         vector. Add mono_array_new_full () to create jagged arrays easily.
36502
36503 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36504
36505         * metadata.h, metadata.c: add mono_metadata_field_info () to
36506         retreive all the info about a field from vairous tables.
36507         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
36508         * class.h, class.c: augment MonoClassField with more info.
36509         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
36510         policy and load a field's RVA if needed.
36511
36512 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
36513
36514         * class.c (mono_class_metadata_init): create a trampoline for all
36515         virtual functions instead of actually compiling them.
36516
36517 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
36518
36519         * class.h, class.c: include name in MonoClassField.
36520         * class.c: fix fundamental type of System.Object and System.String.
36521         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
36522         tokens in ldtoken.
36523         * icall.c: remove internalcalls for the Reflection stuff that is now
36524         done in C# code.
36525         * loader.c: mono_field_from_memberref () implementation.
36526         * mono-endian.c: thinko (s/struct/union/g).
36527         * object.c, object.h: make the mono_string_* prototypes actually use
36528         MonoString instead of MonoObject.
36529         * reflection.c, reflection.h: updates for changes in the reflection
36530         code in corlib: we use C structures that map to the actual C# classes.
36531         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
36532         fat method header if needed and use the info from the ILGenerator for
36533         methods. Handle fields in types. Misc fixes.
36534
36535 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
36536
36537         * class.c (mono_class_metadata_init): bug fix: always allocate
36538         space for static class data
36539
36540 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
36541
36542         * class.c (mono_compute_relative_numbering): use relative
36543         numbering to support fast runtime type checks.
36544
36545 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
36546
36547         * class.c (mono_class_create_from_typeref): added debugging output
36548         to print class name when MonoDummy is returned instead of real class
36549
36550 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
36551
36552         * class.c (mono_class_metadata_init): interface offset table now
36553         contains pointers into the vtable - this is more efficient for the jit
36554
36555 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
36556
36557         * class.c (mono_class_metadata_init): use a temporary vtable (the
36558         old algorithm only worked for the interpreter, but not for the jit)
36559
36560 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
36561
36562         * loader.c (method_from_memberref): use mono_class_get to get the
36563         class of an array instead of using System.Array directly.
36564         (mono_get_method): also add MEMBERREF methods to the method cache
36565         which usefull for arrays.
36566
36567 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
36568
36569         * pedump.c (arch_compile_method): added to compute vtable entry
36570
36571         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
36572         number of interfaces.
36573         
36574         * class.h: merged MonoArrayClass into MonoClass
36575
36576         * class.c (mono_class_create_from_typedef): compute the vtable size and
36577         allocate space to include the vtable inside MonoClass
36578         (mono_class_metadata_init): initialize the vtable
36579
36580 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
36581
36582         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
36583         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
36584         * image.c: endian fixes by Laurent Rioux.
36585         * object.h, object.c: rename MonoStringObject to MonoString and
36586         MonoArrayObject to MonoArray. Change some function names to conform to
36587         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
36588         guint16* as first argument, so don't use char*.
36589         Provide macros to do the interesting things on arrays in a portable way.
36590         * threads-pthread.c: updates for the API changes and #include <sched.h>
36591         (required for sched_yield()).
36592         * icall.c: updates for the API changes above.
36593         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
36594         platforms that need them.
36595
36596 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36597
36598         * class.c: set the correct type for all the fundamental
36599         type when loading the class.
36600
36601 2001-10-05  Dick Porter  <dick@ximian.com>
36602
36603         * threads-pthread.c (pthread_mutex_timedlock): Simple
36604         compatibility version for C libraries that lack this call.
36605
36606 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36607
36608         * class.c: MonoTypes stored in MonoClass are stored as
36609         fundamental MonoTypes when the class represents a
36610         fundamental type (System.Int32, ...).
36611         The TypeHandle return by ldtoken is a MonoType*.
36612         * icall.c: ves_icall_get_data_chunk () write out all the
36613         PE/COFF stuff. Implement ves_icall_define_method (),
36614         ves_icall_set_method_body (), ves_icall_type_from_handle ().
36615         * image.c: properly skip unknown streams.
36616         * loader.h, loader.c: add type_class to mono_defaults.
36617         * metadata.c, metadata.h: export compute_size () as
36618         mono_metadata_compute_size () with a better interface.
36619         Typo and C&P fixes.
36620         * pedump.c: don't try to print the entry point RVA if there is no entry point.
36621         * reflection.c, reflection.h: many cleanups, fixes, output method
36622         signatures and headers, typedef and typeref info, compress the metadata
36623         tables, output all the heap streams, cli header etc.
36624         * row-indexes.h: typo fixes.
36625
36626 2001-10-04  Dick Porter  <dick@ximian.com>
36627
36628         * object.h: Add a synchronisation mutex struct to MonoObject
36629
36630         * object.c (mono_new_object): Initialise the object
36631         synchronisation mutexes
36632
36633         * icall.c: System.Threading.Monitor internal calls
36634         
36635         * threads-pthread.h:
36636         * threads-pthread.c: System.Threading.Monitor internal calls
36637
36638         * threads-types.h: New file, includes the system-specific thread
36639         structures
36640         
36641         * threads-pthread-types.h:
36642         * threads-pthread-types.c: New files, handle pthread-specific
36643         synchronisation types
36644
36645         * threads-dummy-types.h: 
36646         * threads-dummy-types.c: New files of dummy support for
36647         thread-specific types
36648
36649         * metadata.c:
36650         * image.c:
36651         * pedump.c: include mono-endian.h not endian.h
36652         
36653         * Makefile.am: More threads files.
36654         Name mono-endian.h not endian.h
36655
36656 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
36657
36658         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
36659         stuff and implement a few more bits.
36660         * icall.c: a field needs to be dereferenced twice. Do not use the same
36661         name for two variables in the same scope.
36662         * image.c, image.h: cleanups.
36663
36664 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
36665
36666         * class.c (mono_class_metadata_init): bug fix: compute the right size
36667
36668 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
36669
36670         * icall.c: implemented some of the Reflection internalcalls.
36671         * image.c, image.h: start writing out the PE/COFF image.
36672         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
36673         that does the reverse than decode_blob_size ().
36674         * object.c: use mono_metadata_encode_value (). Move here
36675         temporary implementation of mono_string_to_utf8 ().
36676         * rawbuffer.c: make malloc_map static.
36677
36678 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36679
36680         * metadata.c: fix type comparison for arrays.
36681         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
36682         Added a couple of new classes to monodefaults.
36683         * icall.c: added a couple of Reflection-related internalcalls.
36684         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
36685         Added a byval_arg MonoType to MonoClass.
36686
36687 2001-09-28  Dick Porter  <dick@ximian.com>
36688
36689         * icall.c:
36690         * threads-pthread.h: 
36691         * threads-pthread.c: Implemented internal calls for
36692         LocalDataStoreSlot operations.  Applied mutexes around all shared
36693         data.  Reworked the thread creation and Start() operations to
36694         avoid a race condition.
36695         
36696         * threads-dummy.h:
36697         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
36698
36699 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
36700
36701         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
36702
36703 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
36704
36705         * class.c, loader.c: warn and return NULL instead of erroring out.
36706         * icall.c: added System.AppDomain::getCurDomain().
36707         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
36708
36709 2001-09-25  Dick Porter  <dick@ximian.com>
36710
36711         * threads-pthread.h:
36712         * threads-pthread.c: Implemented timed thread joining and added
36713         System.Threading.Thread::Join_internal internal call
36714
36715         * icall.c: Added System.Threading.Thread::Join_internal internal call
36716
36717         * threads-dummy.h:
36718         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
36719
36720 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
36721
36722         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
36723         mono_string_intern () to implement the semantics of the ldstr opcode
36724         and the interning of System.Strings.
36725         * icall.c: provide hooks to make String::IsIntern and String::Intern
36726         internalcalls.
36727
36728 2001-09-23  Dick Porter  <dick@ximian.com>
36729
36730         * threads-dummy.c: 
36731         * threads-dummy.h: New files of dummy threading routines
36732
36733         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
36734         support code based on system specifics
36735
36736         Rename PTHREAD_LIBS to THREAD_LIBS
36737         
36738 2001-09-23  Dick Porter  <dick@ximian.com>
36739
36740         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
36741         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
36742         internal calls.
36743         (mono_thread_init): Set up a Thread object instance to return when
36744         the main thread calls Thread.CurrentThread
36745         (mono_thread_cleanup): Wait for all subthreads to exit
36746
36747         * icall.c: New internal calls for System.Threading.Thread::Sleep
36748         (including Schedule) and CurrentThread
36749
36750         * threads.h: New file, to insulate thread-specific stuff from the
36751         rest of the code
36752
36753 2001-09-21  Dick Porter  <dick@ximian.com>
36754
36755         * threads-pthread.h: 
36756         * threads-pthread.c: New file, for handling pthreads-style
36757         threading support.  Start() now starts a new thread and executes
36758         the ThreadStart delegate instance.
36759
36760         * icall.c: Added the internalcall for
36761         System.Threading.Thread::Start_internal
36762
36763         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
36764
36765 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
36766
36767         * loader.c: work around the different signatures for delegates
36768         constructors csc generates in compiled code vs the ones compiled in mscorlib.
36769
36770 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
36771
36772         * class.h, class.c: add mono_class_get_field_from_name ().
36773         * *: Fix C comments and other ANSI C issues.
36774
36775 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
36776
36777         * endian.h, assembly.c: fix some endianness issues.
36778
36779 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
36780
36781         * loader.h, load.c: add delegate_class to mono_defaults.
36782         Handle runtime provided methods in mono_get_method ().
36783
36784 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
36785
36786         * loader.c (mono_get_method): use pinvoke for internal call
36787
36788         * icall.c: use pinvoke for internal call
36789
36790         * loader.c (method_from_memberref): set the method name
36791
36792 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
36793
36794         * metadata.c: help the compiler generate better code for
36795         mono_class_from_mono_type ().
36796
36797 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
36798
36799         * class.c (mono_class_metadata_init): delayed computing of the
36800         class size to mono_class_metadata_init ()
36801
36802 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
36803
36804         * class.c, class.h: add an interfaces member to MonoClass.
36805         * image.c, image.h: add assembly_name field to MonoImage
36806         from the assembly table.
36807         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
36808
36809 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36810
36811         * class.c: Handle Array in mono_class_from_mono_type ().
36812         * metadata.c, pedump.c: some endian fixes.
36813
36814 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36815
36816         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
36817         * metadata.c: fix small problem introduced with the latest commit.
36818
36819 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
36820
36821         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
36822         We don't need a MonoMetadata pointer anymore to compare signatures in
36823         mono_metadata_signature_equal (), update callers.
36824         Reduced memory usage an number of allocations for MonoMethodHeader and
36825         MonoMethodSignature.
36826
36827 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
36828
36829         * metadata.c: added compare for szarray.
36830
36831 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
36832
36833         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
36834         and add a couple more types to it and mono_defaults. Give an hint on
36835         classes that need implementing in our corlib and are referenced
36836         in mscorlib.
36837
36838 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
36839
36840         * class.h, class.c: keep track if a class is also an Enum.
36841         * loader.c: Implement a couple more types for use in libffi
36842         marshalling. Gives better diagnostics when failing to dlopen
36843         a library. Set method->klass for P/Invoke methods, too.
36844
36845 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
36846
36847         * class.c, class.h: add a MonoType this_arg to MonoClass that
36848         represents a pointer to an object of the class' type that
36849         can be used by the interpreter and later the type cache.
36850         Add best guess alignment info for valuetype objects.
36851
36852 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
36853
36854         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
36855         into MonoType: one less level of indirection and allocation and
36856         simplifies quite a bit of code. Added cache for MonoTypes that are
36857         used frequently, so that we don't need to allocate them all the time.
36858
36859 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
36860
36861         * class.c (mono_class_create_from_typedef): System.Enum is also a
36862         value type, although it does not derive from System.ValueType
36863         (maybe a bug in the ms compiler?)
36864
36865         * metadata.c (mono_type_size): return the right size for value types
36866
36867         * loader.c (mono_get_method): only initialize method header if not abstract
36868
36869         * class.c (mono_class_from_mono_type): use mono_default values. 
36870
36871 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
36872
36873         * *: use MonoClass pointers instead of <type_tokens>
36874         
36875         * class.h: new flag: metadata_inited.
36876
36877         * class.c (mono_class_metadata_init): impl.
36878         (mono_class_instance_size): impl.
36879         (mono_class_data_size): impl.
36880
36881 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36882
36883         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
36884         MonoClass now has the name and name_space fields. 
36885         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
36886         mono_get_method () takes and optional MonoClass as argument.
36887         Removed mono_typedef_from_name() and added mono_class_token_from_name()
36888         instead that takes advantage of a map from class names to typedef
36889         tokens in MonoImage.
36890
36891 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
36892
36893         * metadata.c: zero is not a valid alignment boundary.
36894         Merge MONO_TYPE_VOID in default decoding code.
36895
36896 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
36897
36898         * image.h: merged MonoMetadata into MonoImage
36899
36900         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
36901         identify the type of elements.
36902
36903 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
36904
36905         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
36906         * cil-coff.h: split MonoMSDOSHeader and add size info.
36907         * image.c: add some consistency checks.
36908         * metadata.c: fix row size computation: one programmer
36909         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
36910         add explanation for the locator routine.
36911         Fix decoding of size in method header.
36912         
36913 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
36914
36915         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
36916         (g_concat_dir_and_file): Bring g_concat_dir_and_file
36917         function from gnome-libs.  This uses the right path separator
36918         based on the OS, and also works around a bug in some systems where
36919         a double slash is not allowed. 
36920         (default_assembly_name_resolver): Use g_concat_dir_and_file
36921         (mono_assembly_open): ditto.
36922
36923 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
36924
36925         * metadata.c (mono_metadata_signature_equal): impl.
36926
36927         * *: void is now a realy MonoType (instead of using NULL)
36928         
36929         * metadata.c (do_mono_metadata_parse_type): use
36930         mono_metadata_parse_type to parse void value.
36931
36932 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
36933
36934         * metadata.c, metadata.h: in the signature and method header store
36935         only the space required for holding the loca vars and incoming arguments.
36936
36937 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
36938
36939         * metadata.c (do_mono_metadata_parse_type): treat void like any
36940         other type (instead of assigning NULL);
36941
36942 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
36943
36944         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
36945
36946 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
36947
36948         * image.c (do_mono_image_open): added a cache for arrays.
36949
36950 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36951
36952         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
36953         decode a single column from a row in a metadata table and changes
36954         to take advantage of it in the typedef locator (gives a nice speed up).
36955         Store offset info for function params.
36956
36957 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
36958
36959         * image.h (MONO_IMAGE_IS_CORLIB): removed 
36960
36961 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
36962
36963         * assembly.c: how could mono_assembly_close () had ever worked?
36964         * metadata.c, metadata.h: provide offset info for local vars.
36965         Implement mono_type_size () to take care of alignment as well
36966         as size (it was mono_field_type_size in cli/class.c before).
36967
36968 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
36969
36970         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
36971
36972         * assembly.h (CORLIB_NAME): set to corlib.dll
36973
36974         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
36975
36976 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36977
36978         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
36979         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
36980         tokentype.h: massive namespace cleanup.
36981
36982 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36983
36984         * metadata.h, metadata.c: decode exception clauses when parsing method header.
36985
36986 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
36987
36988         * metadata.c (mono_metadata_free_type): added check for type !=
36989         NULL (void) before calling mono_metadata_free_type()
36990
36991 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
36992
36993         * metadata.h, row_indexes.h: added header with enumerations to use
36994         to index in the columns from tables in metadata and to decode coded
36995         tokens: we should start using this instead of embedding magic numbers
36996         all over the code.
36997
36998 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
36999
37000         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
37001         Move metadata_t info from cli_image_info_t to MonoImage, where
37002         it's easily accessible. Changed all the uses accordingly.
37003         Added the method and class caches to MonoImage.
37004         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
37005         and mono_metadata_decode_value () signature to be more consistent
37006         with the other parse functions (and simplify code). Taken advantage
37007         of zero-length array allocation with GCC. Removed reduntant (and
37008         wrong) MonoFieldType struct and use MonoParam instead. Changed
37009         mono_metadata_parse_field_type () to use common code for parsing.
37010         Added mono_metadata_typedef_from_field () and
37011         mono_metadata_typedef_from_method () to lookup a typedef index from a
37012         field or method token.
37013         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
37014
37015 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
37016
37017         * metadata.c (mono_metadata_parse_field_type): Implement. 
37018         (do_mono_metadata_parse_type): Split engine from
37019         mono_metadata_parse_type, so that we can create smaller structures
37020         for things that just have one pointer to the MonoType (look at
37021         the MonoFieldType)
37022
37023 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
37024
37025         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
37026         as Jan Gray found out, it is incorrect. 
37027
37028 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
37029
37030         * assembly.c: Implement asssembly loading.  This loads an image
37031         and loads all the referenced assemblies.  Come to think of it, we
37032         could always do lazy loading of the assemblies. 
37033
37034         * image.c (mono_image_open): Keep loaded images in a hashtable.
37035
37036         * image.h (MonoImage): Add reference count.
37037
37038 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
37039
37040         * assembly.c (mono_assembly_open): Keep track of the file name in
37041         case the assembly has no ASSEMBLY table.
37042
37043         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
37044         from get.c here.
37045
37046 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
37047
37048         * metadata.c, metadata.h: decode local vars in method header
37049         parse function. Change callers accordingly.
37050
37051 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
37052
37053         * metadata.h, cil-coff.h: protect against multiple inclusion.
37054         Added some new structures to hold information decoded from metadata:
37055         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
37056         and relevant decoding/free functions.
37057         * metadata.c: implement decoding functions. Add warning for out of bounds
37058         index in mono_metadata_locate(). Implement mono_get_method () to retreive
37059         all the info about a method signature and invocation. Remove check on
37060         uninitialized local var in parse_mh() and fix memory leak.
37061
37062 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
37063
37064         * metadata.h: More macros.
37065
37066         * tokentype.h: New file.
37067
37068 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37069
37070         * assembly.c: added a consistency check and initialize
37071         some structures with g_new0().
37072         * metadata.c: fixed a couple more bugs in table size computation
37073         and add other checks for out-of bound access to metadata.
37074
37075 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37076
37077         * metatada.c: fix bugs computing table sizes. Spew a
37078         warning when index in string heap is out of bounds.
37079
37080 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
37081
37082         * metadata.h: Add a couple of macros to manipulate tokens. 
37083
37084 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37085
37086         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37087         cli_section_tables).
37088
37089 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
37090
37091         * metadata.c (mono_metadata_user_string): New function, provides
37092         access to the UserString heap. 
37093
37094 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
37095
37096         * metadata.c: Add inline documentation.
37097
37098 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
37099
37100         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37101         files. 
37102
37103 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37104
37105         * typeattr.h: New file, TypeAttribute flags. 
37106
37107 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37108
37109         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37110         mono_assembly_ensure_section): Section loading code.
37111         (load_section_tables): Load the sections.
37112
37113         * mono/metadata/metadata.c (mono_metadata_locate_token,
37114         mono_metadata_locate): Functions to locate the information
37115         definition given a token or a table and an index.
37116         (mono_metadata_compute_table_bases): New.
37117         (compute_size): New function to compute the sizes of the various
37118         tables.
37119
37120         * mono/metadata/metadata.h: Finish listing the different index
37121         types. 
37122
37123         * mono/metadata/pedump.c: Improve to dump new information.
37124
37125 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37126
37127         * mono/metadata/metadata.c: Entered all the tables matching
37128         Beta2. 
37129
37130         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
37131
37132
37133
37134