2010-04-24 Mark Probst <mark.probst@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2010-04-24  Mark Probst  <mark.probst@gmail.com>
2
3         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
4         abstraction.
5
6 2010-04-24  Mark Probst  <mark.probst@gmail.com>
7
8         * sgen-gc.c: Remove more unneeded code.
9
10 2010-04-24  Mark Probst  <mark.probst@gmail.com>
11
12         * sgen-gc.c: Disable managed allocator and wbarrier when the
13         binary protocol is enabled.
14
15 2010-04-24  Mark Probst  <mark.probst@gmail.com>
16
17         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
18
19 2010-04-24  Mark Probst  <mark.probst@gmail.com>
20
21         * sgen-gc.c: Remove a few commented out and unneeded bits.
22
23 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
24
25         * threadpool.c: patch from Robert Nagy that fixes a nullref and
26         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
27
28 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
29
30         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
31         types.
32
33         Fixes #331126
34
35 2010-04-21  Mark Probst  <mark.probst@gmail.com>
36
37         * sgen-gc.c: Turn off semi-precise stack mark.
38
39 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
40
41         * reflection.c (mono_custom_attrs_from_index): Use right function
42         to free 'list' (i.e. g_list_free) if the verifier fails.
43
44 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
45
46                 * verify.c: Handle the case where mono_type_get_underlying_type_any
47                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
48                 and MONO_TYPE_VALUETYPE in those case.
49
50                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
51
52                 Hopefully Fixes #564253.
53
54 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
55
56         * domain-internals.h: made threadpool_jobs volatile.
57         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
58         all local jobs.
59         * threadpool.c:
60                 -When two threads try to initialize the socket IO pool,
61                 the second one waits until the intialization is finished
62                 instead of continuing right away.
63                 -Add checks for domain unload: no items added in this case.
64                 -Only measure the time every 10 elements added to the queue.
65                 This is an experiment since linux x86 gettimeofday() sucks.
66                 -Create new thread if there are none waiting for work items.
67                 -There was a missing decrement of the busy threads.
68                 -Make sure the local queue is cleaned up before exiting the
69                 thread when the program ends.
70
71 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
72
73         * reflection.c (mono_type_get_object): Normalize generics types
74         as to how managed code expect them to be. A generic instance over
75         the GTD arguments must have the same mirror as the GTD itself.
76
77         Fixes #473289.
78
79 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
80
81         * locales.c: Implement support for DISABLE_NORMALIZATION.
82
83 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
84
85         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
86         since it is not a MonoMethod.
87
88 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
89
90         * icall-def.h: Add get_RequiresElevatedPermissions icall to
91         System.Security.SecurityManager - used only by Moonlight
92         * security-core-clr.c|h: Add Elevated Trust/Permission support
93         for CoreCLR / Moonlight
94
95 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
96
97         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
98         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
99
100 2010-04-16  Marek Habersack  <mhabersack@novell.com>
101
102         * mono-perfcounters.c: added code for the "Mono
103         Memory/Total Physical Memory" performance counter.
104
105         * mono-perfcounters-def.h: added definition of the "Mono
106         Memory/Total Physical Memory" performance counter.
107
108 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
109
110         * class.c (mono_class_get_method_by_index): Return NULL
111         on type load failures.
112
113 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
114
115         * class.c (mono_class_from_typeref): Check if the supplied
116         image has an assembly bound to it.
117
118         Fixes #567884.
119
120 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
121
122         * loader.c (mono_method_get_signature_full): Use new function
123         inflate_generic_signature_checked to check for errors.
124
125         Fixes #560839.
126
127 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
128
129         * loader.c (inflate_generic_signature): Add _checked variant
130         and move this function to use it.
131
132 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
133
134         * class.c (mono_class_setup_vtable_general): Use error checking
135         version of mono_class_inflate_generic_method_full.
136
137         Fixes #596975.
138
139 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
140
141         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
142         error handling passing MonoError around.
143
144         Fixes #560336.
145
146 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
147
148         * socket-io.c: make GetHostByName ("") work on windows.
149         Fixes bug #456723.
150
151 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
152
153         * object-internals.h:
154         * threads.c: use a spin lock when accesing the per-thread appdomain
155         list.
156
157 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
158
159         * threads.c: no need to take the threads lock in push/pop appdomain.
160
161 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
162
163         * reflection.c (_mono_reflection_parse_type): MS supports
164         non-assembly-qualified types in a generic type parameter list
165         when enclosed in '[]' (which signals that they should be a fqn).
166
167         This breaks ECMA specs for how type names are encoded in cattr
168         blobs but F# does it.
169
170         Fixes #576342.
171
172 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
173
174         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
175         for instance methods/ctors.
176
177         Fixes #422113.
178
179 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
180
181         * reflection.c: Use the new verifier support for checking
182         custom attributes.
183
184         Fixes #595306.
185
186 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
187
188         * metadata-verify.c: Implement structural verification
189         of custom attributes. This check requires access to the
190         loader since to resolve the size of an enum we have to
191         look it up.
192         We don't check if named argumenments are encoded in a
193         compatible fashion to their underlying field/prop.
194         Maybe we should?
195
196         * verify-internals.h: Add two new cattr verification API.
197
198 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
199
200         * metadata-verify.c (decode_signature_header): Fix signature.
201
202 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
203
204         * verify.c (mono_verifier_is_enabled_for_method): Handle
205         assembly less images.
206
207         * verify.c (mono_verifier_is_class_full_trust): Ditto.
208
209 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
210
211         * loader.c (mono_method_signature_checked): Properly
212         init MonoError.
213
214         * loader.c (mono_method_signature): It's the calee
215         resposibility to init the error object.
216
217 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
218
219         * metadata-verify.c (decode_signature_header): Do proper
220         overflow checking.
221
222 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
223
224         * reflection.c: maintain the invariants required by
225         mono_class_layout_fields() also in typebuilder_setup_fields ().
226
227 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
228
229         * security-core-clr.c: Call mono_class_setup_methods in 
230         get_default_ctor before checking klass->methods. Fix typo in
231         comment
232
233 2010-04-10  Jb Evain  <jbevain@novell.com>
234
235         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
236         add .net 4.0 RTM version.
237
238 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
239
240         * reflection.c (resolve_object): Properly inflate generic
241         methods when a context is supplied.
242
243         Fixes #591226.
244
245 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
246
247         * verify.c (mono_method_verify): A switch op don't empty
248         the stack for the next one. Fixes a bug when running fsi
249         under --verify-all.
250
251 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
252
253         * metadata-verify.c (is_valid_standalonesig_blob): Accept
254         fields as valid standalone sig too. F# does generate them.
255
256         * metadata-verify.c (verify_typedef_table_full): Ignore
257         what <module> extends.
258
259 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
260
261         * verify.c (do_invoke_method): It's ok to do use call with
262         virtual, non-final methods if their class is sealed.
263
264 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
265
266         * icall.c (ves_icall_MonoField_GetValueInternal): This function
267         is a near identical copy of mono_field_get_value_object. So simply
268         call it.
269
270         * object.c (mono_field_get_value_object): Handle literal fields
271         on open generic classes.
272
273         Fixes #594942.
274
275 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
276
277         * reflection.c (mono_reflection_create_runtime_class): Setup
278         parent/supertype information again since it can be changed
279         without notice.
280
281 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
282
283         * verify.c (verify_type_compatibility_full): Properly handle
284         stores between arrays of primitives.
285
286         Fixes the verifier side of #555950.
287
288 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
289
290         class.c (mono_bounded_array_class_get): Properly init
291         cast_class to take the fact that uint[] and int[] can be
292         casted between each other.
293
294         Fixes #555950.
295
296 2010-04-07  Geoff Norton  <gnorton@novell.com>
297
298         * domain.c: Avoid a deadlock on osx.  Fixes #565765
299
300 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
301
302         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
303         builders. Fixes #594464.
304
305 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
306
307         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
308         waiting for all threads to suspend, as those threads can't be suspended.
309
310 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
311
312         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
313         to avoid crashes on newly created threads.
314
315 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
316
317         * file-io.c: reset the MonoIOStat structure in case of error.
318         Fixes bug #582667.
319
320 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
321
322         * class.c (print_implemented_interfaces): Print proper type name.
323
324         * class.c (mono_class_setup_vtable): Don't try that hard to produce
325         the override map for generic instances since it later ignored.
326
327         * class.c (mono_class_implement_interface_slow): Don't break for
328         dynamic generic instances.
329
330         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
331
332         * reflection.c (mono_reflection_method_get_handle): New method that
333         resolves a method handle.
334
335         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
336         case when we override methods from a dynamic generic instance interface.
337
338         Fixes #575941.
339
340 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
341
342         * threadpool.c: don't attempt to close the pipe when it has not been
343         created.
344
345 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
346
347         * threadpool.c: if there are no waiting threads, try to start a new
348         one. This fixes the not-so-random hangs in System.ServiceModel tests.
349         No need to use InterlockedCompareExchange to read volatile variables.
350
351 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
352
353         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
354         and reference types that point to the same class.
355
356         Fixes #565598.
357
358 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
359
360         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
361         when verifying compatibility between a generic instance and a generic
362         parameter.
363
364         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
365
366         * verify.c (stack_slot_stack_type_full_name): Improve verification type
367         name.
368
369         Fixes #587849.
370
371 2010-04-04  Mark Probst  <mark.probst@gmail.com>
372
373         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
374
375 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
376
377         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
378
379 2010-04-03  Marek Habersack  <mhabersack@novell.com>
380
381         * process.c: when cross-compiling with MinGW, force GetProcessId
382         lookup using GetProcAddress.
383
384 2010-04-02  Mark Probst  <mark.probst@gmail.com>
385
386         * sgen-gc.c: parse_environment_string_extract_number() must be
387         static.
388
389 2010-04-02  Mark Probst  <mark.probst@gmail.com>
390
391         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
392         gray_object_dequeue(), to make sure they're inlined.
393
394 2010-04-02  Mark Probst  <mark.probst@gmail.com>
395
396         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
397         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
398
399 2010-04-02  Jb Evain  <jbevain@novell.com>
400
401         * exception.c: remove dead code.
402
403 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
404
405         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
406         with mono-gc.h.
407
408 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
409
410         * sgen-gc.c: Make the nursery size adjustable by the
411         MONO_GC_PARAMS environment variable.
412
413         Code is contributed under MIT/X11 license.
414
415 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
416
417         * threadpool.c: threadpool threads wait is alertable.
418         Fixes bug #592964.
419         Reduced the stack size of the *poll_wait thread.
420
421 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
422
423         * exception.c|metadata-internals.h: Add new mono_get_exception_
424         field_access_msg and mono_get_exception_method_access_msg 
425         functions that accept a const char* parameter to provide more 
426         details when the exception is thrown.
427         * security-core-clr.c|h: Rework code to allow logging exceptions
428         (export MONO_LOG_MASK="security") and to supply more details in
429         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
430         mono_security_core_clr_is_field_access_allowed and 
431         mono_security_core_clr_is_call_allowed to return an exception,
432         with messages and logging, that can be emitted by method-to-ir.c
433
434 2010-04-01  Mark Probst  <mark.probst@gmail.com>
435
436         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
437         pinned object.
438
439 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
440
441         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
442         the assembly name is not well formed utf8. Fixes #567882.
443
444 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
445
446         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
447         the generic parameters from the builder. Fixes #473298.
448
449 2010-03-31  Miguel de Icaza  <miguel@novell.com>
450
451         * object.c (mono_class_proxy_vtable): Eliminate warning. 
452
453         * marshal.c (emit_marshal_boolean): Eliminate possible
454         uninitialized local warning. 
455
456 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
457
458         * class.c (mono_class_init): Postpone coreclr inheritance check
459         until the end of the initialization (so we can check up the 
460         default ctor manually for the core-clr inheritance rules).
461         * security-core-clr.c: Add the missing (undocumented) checks on
462         default constructors when verifying inheritance rules.
463
464 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
465
466         * domain-internals.h (MonoJitExceptionInfo): Add new field
467         handler_end to the data union. To be used to point the end
468         of a finally block.
469
470 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
471
472         * reflection.c: Add support for new v4 type
473         System.Reflection.MonoModule that is the concrete version
474         of Module which is abstract unver v4.
475
476 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
477
478         * class.c (mono_class_init): Don't set class failure after
479         inited = 1 is set. It must be done before.
480
481 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
482
483         * mono-config.c: Add support for OS "haiku"
484         * ChangeLog: Fix UTF-8 encoding
485
486         Code is contributed under MIT/X11 license.
487
488 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
489
490         * console-unix.c: fixed include logic for sys/ioctl.h.
491
492 2010-03-30  Mark Probst  <mark.probst@gmail.com>
493
494         * threads.c: Fix bitmap generation for TLS marking on 64 bit
495         systems.
496
497 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
498
499         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
500         unfinished/broken typebuilders.
501
502 2010-03-29  Mark Probst  <mark.probst@gmail.com>
503
504         * sgen-gc.c: Use the same heuristic for the LOS target that we use
505         for the minor section allowance.
506
507 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
508
509         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
510         "NoOptimization".
511
512 2010-03-29  Mark Probst  <mark.probst@gmail.com>
513
514         * sgen-gc.c: Count bytes allocated with heavy statistics.
515
516 2010-03-29  Mark Probst  <mark.probst@gmail.com>
517
518         * sgen-gc.c: More detailed time statistics.
519
520 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
521
522         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
523         fix the user defined mark interface to pass a pointer
524         to the object location and not the object itself.
525
526 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
527
528         * reflection.c (mono_method_body_get_object): Release
529         the method header before the call to CACHE_OBJECT since
530         this is a macro that returns.
531
532 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
533
534         * class.c (inflate_generic_type): mono_metadata_type_dup
535         already dupes array information, the g_memdup was just
536         leaking memory.
537
538 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
539
540         * verify.c: Add stack_peek function. Fix CEE_DUP
541         to not read from invalid memory if push did expand
542         the stack.
543
544 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
545
546         * verify.c: Remove old table verification code that has
547         been superseeded by the new metadata verifier.
548
549         * verify.h: Remove mono_image_verify_tables from the public
550         API.
551
552         * pedump.c: Fix for removed bits.
553
554 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
555
556         * verify.c: Allocate stack slows lazily to reduce stack usage
557         in case of methods with huge stacks. Reduces memory consumption
558         for mcs yyparse from 459Mb to 1.8Mb.
559
560 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
561
562         * threadpool.c: don't try executing items from domains being
563         unloaded. Fixes appdomain-async-invoke test.
564
565 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
566
567         * threadpool.c: spin while the threadpool initializes.
568         * mono-wsq.c: if the WSQ has not been initialized or has been shut
569         down, don't do anything.
570
571 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
572
573         * threads.c (mono_thread_create_internal): Set the GC type of the
574         threads_starting_up hash table.
575
576 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
577
578         * threadpool.c: reset 'state' to avoid returning non-null when the
579         event type is not found.
580
581 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
582
583         * sgen-gc.c: make copy_object () take the address of the
584         slot holding the reference. This allows saving memory stores
585         when not needed and it allows keeping track of oldspace->nursery
586         references for the card table code.
587
588 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
589
590         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
591
592         Code is contributed under MIT/X11 license.
593
594 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
595
596         * object.c, threads.c, threads-types.h, threads.h: make the
597         managed thread local storage references precisely tracked.
598
599 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
600
601         * threadpool.[ch]: reworked the threadpool:
602                 -Threadpool threads use a work-stealing queue. Adding a work
603                 item from a threadpool thread will queue it in the thread
604                 local queue without locking (in most cases).
605                 -epoll events are coalesced before being added to the IO
606                 queue.
607                 -Dynamically change the number of active threads
608                 -Changed the global queue to be more GC friendly
609
610         * class-internals.h: add 2 new performance counters for the number of
611         threads in the threadpool and the IO threadpool.
612
613         * object-internals.h: new field in MonoAsyncResult.
614         * icall-def.h: new internal call for queueing work items.
615
616         * Makefile.am: add 2 new files.
617
618         * appdomain.c: bump up corlib version.
619
620         * mono-wsq.[ch]: an implementation of a work-stealing queue.
621
622         * mono-perfcounters-def.h:
623         * mono-perfcounters.c: added 2 new performance counters.
624
625 2010-03-26  Mark Probst  <mark.probst@gmail.com>
626
627         * sgen-gc.c: More FIXME/TODO updates.
628
629 2010-03-25  Mark Probst  <mark.probst@gmail.com>
630
631         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
632         function mono_gc_invoke_with_gc_lock() which invokes a function
633         with the guarantee that no collection will occur during its execution.
634
635 2010-03-25  Mark Probst  <mark.probst@gmail.com>
636
637         * sgen-gc.c: Update a few comments.
638
639 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
640
641         * reflection.c: Add support for new v4 type
642         System.Reflection.MonoAssembly that is the concrete version
643         of Assembly which is abstract unver v4.
644
645 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
646
647         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
648         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
649
650         Expose a few macros that are needed for SR but not SRE to the
651         world (previous inside the SRE ifdef)
652
653 2010-03-24  Mark Probst  <mark.probst@gmail.com>
654
655         * sgen-gc.c (gc_register_current_thread): We need
656         stack_start_limit as well in the non-attribute pthread case.
657
658 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
659
660         * threads.c: Fix windows build.
661
662 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
663
664         * thread-types.h: Add mono_thread_resume_interruption.
665
666         * threads.c: Add mono_thread_resume_interruption, this
667         function should be called after the last protected handler
668         found at interruption time has finished.
669
670 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
671
672         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
673         Check MonoInternalThread's ::state instead of ::abort_exc
674         since the later can be lazily created.
675
676         This is specially problematic when running a finally block
677         under AbortRequested state. ResetAbort must work, but the
678         abort_exc object has not been created because interruption
679         has not began.
680
681 2010-03-22  Geoff Norton  <gnorton@novell.com>
682
683         * locales.c: Its possible for CFStringGetCStringPtr
684         to return null and not convert encodings.  Use
685         CFStringGetCString instead.
686
687 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
688
689         * class-internals.h, class.c, object.c: introduce compressed
690         interface bitmaps (for now only under small config): this saves
691         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
692         startups.
693
694 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
695
696         * mono-debug.c: don't try to get the method header, it causes a
697         deadlock and it is not used for anything anymore.
698
699 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
700
701         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
702         broken by the last change.
703
704 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
705
706         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
707         SOCK_RDM.
708         
709         Code is contributed under MIT/X11 license.
710
711 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
712
713         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
714         nursery.
715
716         Code is contributed under MIT/X11 license.
717
718 2010-03-19  Martin Baulig  <martin@ximian.com>
719
720         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
721         dummy field, containing an empty string.
722         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
723
724
725 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
726
727         * class.c: setup_interface_offsets() refactor to not call
728         mono_class_get_implemented_interfaces () more times than needed and
729         to reduce the runtime memory requirements to be O(num_interfaces)
730         instead of O(max_interface_id).
731
732 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
733
734         * mono-mlist.[ch]: add mono_mlist_set_next ().
735
736 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
737
738         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
739         associated changes to support holes in the protected range of a
740         try block.
741
742         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
743         retrieves the holes table from a given MonoJitInfo.
744
745 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
746
747         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
748         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
749         hide the contents of the MonoString and MonoArray structs from the
750         public API. Change the accessor macros to accessors functions where
751         needed. Adjusted the array API to allow for pointer-sized lengths and
752         starting positions, so 64 bit arrays can be optionally provided in an
753         API compatible way if needed on 64 bit systems.
754
755 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
756
757         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
758         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
759
760 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
761
762         * class-internals.h: remove the method header from MonoMethod since
763         from now on it will be transient. We have a header pointer for method
764         wrappers, since in that case we need to keep track of it. For this
765         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
766         structs now. The same happens with MonoMethodInflated.
767         * class.c: reset the sre_method flag for inflated method structures:
768         this makes the code that cares look at the header in the MonoMethodInflated
769         structure.
770         * loader.c: lookup the method header in the appropriate field now that
771         it is removed from MonoMethod.
772         * metadata-internals.h: add a flag to the method header to know if it
773         can be freed inside mono_metadata_free_mh ().
774         * method-builder.c: updates after moving the header field from
775         MonoMethod to MonoMethodWrapper.
776         * reflection.c: MonoMethods generated from Reflection.Emit use
777         MonoMethodWrapper structs if they need a method header now (later take
778         advantage of this and remove all the current unsafe uses of method_aux_hash).
779         * metadata.c: make method header parsing not leak when verification
780         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
781         These changes save a few hundred KB of runtime memory in a mcs
782         bootstrap or a monodevelop startup.
783
784 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
785
786         * verify.c: Improve error message.
787
788 2010-03-12  Jb Evain  <jbevain@novell.com>
789
790         * reflection.c (add_exported_type): populate the exported
791         table with the type's nested type.
792
793 2010-03-10  Mark Probst  <mark.probst@gmail.com>
794
795         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
796         can't read parentheses.
797
798 2010-03-10  Mark Probst  <mark.probst@gmail.com>
799
800         * threads.c (thread_cleanup): Add a guard to dereferencing
801         "thread" to avoid an unlikely race condition.
802
803 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
804
805         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
806         instead of an empty string.
807
808 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
809
810         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
811         convert to a boolean, recent gcc versions compile this differently.
812
813 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
814
815        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
816        inlined.
817
818 2010-03-09  Mark Probst  <mark.probst@gmail.com>
819
820         * sgen-gc.c (STRING_SIZE): Off by one.
821
822 2010-03-09  Mark Probst  <mark.probst@gmail.com>
823
824         * sgen-archdep.h: Fix the signal context register access for
825         AMD64.
826
827 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
828
829         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
830
831 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
832
833         * verify.c: Store the initial basic block returned by mono_basic_block_split
834         so we can release the whole list and not just the first one.
835
836 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
837
838         * verify.c, debug-helpers.c, profiler.c, loader.c,
839         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
840         MonoMethodHeader a transient entity.
841
842 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
843
844         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
845         uncontrolled growth of the gray stack.
846
847         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
848         added items are removed first, improving cache locality. Avoid freeing queue
849         segments in the fast path, use the list of segments as the free list, truncate
850         it to its max size at the start of collection.
851
852 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
853
854         * metadata-internals.h: more memory savings, both with small config and without.
855
856
857 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
858
859         * appdomain.c, domain-internals.h, domain.c, object.c:
860         make class_vtable_hash into an array to reduce memory usage.
861
862 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
863
864         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
865         object-internals.h, object.c, reflection.c, threadpool.c:
866         reduce resource usage when the small config is selected.
867         In particular, up to 64K of methods/fields/properties/events
868         are allowed and "other" methods in events are ignored.
869
870 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
871
872         * threads.c: reduce resource usage when compiled for a small config.
873
874 2010-03-05  Mark Probst  <mark.probst@gmail.com>
875
876         * sgen-gc.c: Also collect number of degraded-alloced objects with
877         heavy statistics.
878
879 2010-03-04  Geoff Norton  <gnorton@novell.com>
880
881         * assembly.c: Only support OSX bundling if the bundle is 
882         actually detectable.
883
884 2010-03-04  Geoff Norton  <gnorton@novell.com>
885
886         * loader.c: The marshal specs are freed at the end of the call
887         but it explicitly frees the strings as well as the container,
888         so we need to dup them too to avoid referencing free'd memory.
889
890 2010-03-04  Geoff Norton  <gnorton@novell.com>
891
892         * icall-def.h:
893         * icall.c: Add a new private internal icall to construct
894         an object from its type without running the ctor.
895
896 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
897
898         * profiler.c: allow multiple profiler engines to be loaded
899         at the same time.
900
901 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
902
903         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
904         profiler event to track object moves.
905
906 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
907
908         * object.c, profiler.c, profiler.h, string-icalls.c:
909         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
910
911 2010-03-03  Miguel de Icaza  <miguel@novell.com>
912
913         * decimal.c (mono_double2decimal): Add support for reducing the
914         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
915         expected.
916
917 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
918
919         * icall-def.h:
920         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
921
922 2010-03-03  Marek Habersack  <mhabersack@novell.com>
923
924         * mono-config.c (mono_config_parse_assembly_bindings): added -
925         parses assembly binding redirections from appdomain's config
926         file.
927
928         * metadata-internals.h: added definition of a new function -
929         mono_config_parse_assembly_bindings - to support parsing assembly
930         binding redirections defined in appdomain's config file.
931
932         * domain-internals.h: added two new fields to _MonoDomain - a list
933         of assembly bindings and a flag to parse the config file only
934         once.
935
936         * assembly.c (assembly_binding_maps_name): empty culture name and
937         NULL culture name are considered equal.
938         (mono_assembly_apply_binding): added support for domain specific
939         assembly binding redirections, read from the appdomain's
940         configuration file. Fixes bug #580185
941
942 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
943
944         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
945         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
946         support.
947
948 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
949
950         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
951         from this function. The new function receive the parent token instead of a type.
952
953         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
954         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
955         typebuilders. This make it possible to properly encode generic type builders since
956         their unmanaged type don't have generics data while unfinished.
957
958         Fixes #583655.
959
960 2010-03-02  Mark Probst  <mark.probst@gmail.com>
961
962         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
963         writing binary log files (can be enabled by #define'ing
964         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
965         bugs in longer running programs.
966
967 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
968
969         * metadata.c: added some API documentation.
970
971 2010-03-01  Robert Jordan  <robertj@gmx.net>
972
973         * filewatcher.h: Include glib.h to fix the MSVC build.
974
975 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
976
977         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
978         a GC handle instead. This is a bit slower to access, but avoids burdening the
979         GC with 100s of individual roots.
980
981         * reflection.c (mono_class_get_ref_info):
982         (mono_class_set_ref_info):
983         (mono_class_free_ref_info): New internal helper fuctions.
984
985         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
986         of accessing klass->reflection_info directly.
987
988         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
989         words.
990
991         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
992         the previous array.
993
994 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
995
996         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
997         needs an indirection.
998
999 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1000
1001         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
1002         so all generic sharing code is in one place.
1003
1004         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
1005         we don't call setup_interface_offsets () for unfinished types.
1006
1007 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1008
1009         * class.c (mono_class_generic_sharing_enabled): Move this to
1010         generic-sharing.c.
1011
1012         * image.c: Add an unload hook which is called before an image is unloaded.
1013
1014         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
1015         metadata.c having to depend on generic sharing.
1016
1017 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1018
1019         * class.c: reduce size of ridiculously large cache.
1020
1021 2010-02-26  Martin Baulig  <martin@ximian.com>
1022
1023         * mono-debug.h
1024         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
1025
1026         * threads.c (mono_thread_internal_reset_abort): New method; resets
1027         the abort, but doesn't throw any exception if no abort was requested.
1028
1029 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1030
1031         * class.c (get_implicit_generic_array_interfaces): Call
1032         mono_class_setup_interface_offsets () before accessing
1033         eclass->interface_offsets_count. This only shows up on platforms without IMT for
1034         some reason.
1035
1036 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1037
1038         * environment.c, environment.h, icall.c: make the GetOSVersionString()
1039         icall internal.
1040
1041 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
1042
1043         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
1044         direct access to the MonoType fields.
1045
1046 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1047
1048         * threads.h: Move some internal functions which were added to this header by
1049         mistake to threads-types.h.
1050
1051         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
1052
1053 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
1054
1055         * class-internals.h, class.h, object.h: make MonoRemoteClass
1056         and mono_remote_class() internal.
1057
1058 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1059
1060         * metadata-internals.h, class-internals.h, metadata.h: make the
1061         MonoType guts internal as well.
1062
1063 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
1064
1065         * reflection.h: the MonoTypeNameParse guts are internal now.
1066         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
1067         are internal now, provide accessors as needed.
1068         * metadata.h, metadata-internals.h: the MonoMethodSignature
1069         guts are internal now.
1070         * Makefile.am: mempool.h is an internal header now.
1071         * *.h, *.c: remove glib.h usage from the public headers.
1072
1073 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
1074
1075         * culture-info-table.h : regenerated.
1076
1077 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1078
1079         * metadata.c: Add mono_method_get_header_summary which returns minimal
1080         information about the header of a method. This is the information used
1081         by the inline oracle to reject methods.
1082
1083         This method doesn't decode local variables and doesn't cache it's result,
1084         so it should cause a minimal reduction in memory usage.
1085
1086         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1087         mono_method_get_header_summary.
1088
1089 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
1090
1091         * threads.c (mono_thread_exit): Make sure that the main thread is
1092         non-null before dereferencing it.
1093
1094 2010-02-21  Geoff Norton  <gnorton@novell.com>
1095
1096         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1097         locale.
1098         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
1099         before falling back to the posix lookup.
1100
1101 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
1102
1103         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1104         the DONT_MANAGE flag set.
1105
1106 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1107
1108         * domain.c: Remove old v1 version strings. Let the runtime
1109         default to 2.0 instead of failing because it can't find a
1110         working 1.0 instalation.
1111
1112 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1113
1114         * domain.c: Add v4 RC version string.
1115
1116 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1117
1118         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1119         of overflow checking function.
1120
1121 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1122
1123         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1124         generic methods.
1125
1126         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1127         cases for ParameterInfo.
1128
1129         Fixes #579493.
1130
1131 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1132
1133         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1134         have has_cctor set. Fixes #575946.
1135
1136 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1137
1138         * appdomain.c: display a warning if the parsing the config file
1139         produces any error.
1140         Skip the BOM in UTF-8 files.
1141         Copy the AppDomainSetup before setting the privateBinPath so that the
1142         correct configuration file is read.
1143
1144 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1145
1146         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1147         vtable trampoline per vtable slot index. Not used yet.
1148
1149 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1150
1151         * icall-def.h:
1152         * icall.c: add internal call that returns the system page size.
1153
1154 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1155
1156         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1157         'int' for system classes.
1158
1159 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1160
1161         * icall.c, icall-def.h: new icall to check for sufficient
1162         stack space.
1163
1164 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1165
1166         * reflection.c (ensure_complete_type): Check that reflection_info
1167         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1168
1169 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1170
1171         * attrdefs.h:
1172         * tabledefs.h: Add NoOptimization flag.
1173
1174 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1175
1176         * sgen-gc.c: Don't consider it a missing remset if the target
1177         object is pinned - we might have done the store but not added the
1178         remset yet.
1179
1180 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1181
1182         * sgen-gc.c: When checking for missing remsets, don't assert on
1183         the first one, but print them all and then assert.
1184
1185 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1186
1187         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1188
1189 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1190
1191         * console-unix.c: On OSX Control-Y is assigned to
1192         VDSUSP (non-Posix), the
1193         suspend-program-next-time-it-tries-to-read-input command (this is
1194         different than C-z, which suspends immediately).
1195
1196         Do the same thing that bash does and ignore this setting,
1197         making our repl/getline support pasting.
1198
1199 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1200
1201         * sgen-gc.c: Simple plausibility check for scan_starts.
1202
1203 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1204
1205         * sgen-gc.c: Round up when calculating the number of scan starts.
1206
1207 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1208
1209         * reflection.c: Export mono_get_object_from_blob.
1210
1211         * object-internals.h: Ditto.
1212
1213         * icall.c: New icall property_info_get_default_value to get the default
1214         value of a property. Since using this is not common, no caching is done.
1215
1216         * icall-def.h: Add new icall.
1217
1218 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1219
1220         * class.c: Add mono_class_get_property_default_value.
1221
1222         * class-internal.h: Export mono_class_get_property_default_value.
1223
1224 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1225
1226         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1227
1228 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1229
1230         * sgen-gc.c: introduced critical regions to allow some lockless
1231         operations and increase scalability.
1232
1233 2010-02-10  Geoff Norton  <gnorton@novell.com>
1234
1235         * reflection.c: Support building with DISABLE_REFLECTION
1236
1237 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1238
1239         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1240         Closes bug #566057.
1241
1242         * exception.c: fix typo in comment.
1243
1244 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1245
1246         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1247         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1248
1249         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1250
1251         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1252         the internal API.
1253
1254         Fixes #574434.
1255
1256 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1257
1258         * threads.c: Removed two assertions that were too strict.  Added a
1259         clarifying comment.  Fixes #577090.
1260
1261 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1262
1263         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1264         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1265
1266         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1267
1268         * verify.c (mono_type_get_stack_name): Fix a warning.
1269
1270 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1271
1272         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1273         mono_marshal_wrapper_info_from_wrapper.
1274
1275         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1276         mono_marshal_method_set_wrapper_data, and export.
1277
1278         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1279         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1280         by calling mono_marshal_get_wrapper_info ().
1281
1282         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1283         small objects which does no size checks.
1284
1285 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1286
1287         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1288
1289 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1290
1291         * verify.c (mono_method_verify): Use the new basic block formation pass
1292         to avoid verifying dead basic blocks. This is the same behavior as the
1293         runtime MS verifier.
1294
1295 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1296
1297         * mono-basic-block.c:
1298         * mono-basic-block.h: New implementation of a basic block formation pass.
1299         The formation pass does static liveness analysis as well to detect dead
1300         basic blocks.
1301
1302 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1303
1304         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1305         'this' argument in icalls.
1306
1307 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1308
1309         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1310
1311 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1312
1313         * object.c, domain.c: When using SGen, we must register
1314         vtable->type as a root if it's not a MonoType, because then it
1315         wasn't pin-alloced.
1316
1317 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1318
1319         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1320         at the start of nursery collections, because we might have had
1321         degraded allocations which changed next_data.
1322
1323 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1324
1325         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1326         custom attr so this function works in cross-compiling mode.
1327
1328 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1329
1330         * class.c (make_generic_param_class): Initialize interface offsets since we
1331         set klass->inited. Fixes #574819.
1332
1333 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1334
1335         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1336         calling the JIT domain cleanup hook.
1337
1338 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1339
1340         * pedump.c (main): Properly set the verifier mode when running the metadata
1341         verifier.
1342
1343 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1344
1345         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1346         overlapping fields now that we're called before has_references is set.
1347
1348         * pedump.c (dump_verify_info): Clear any loader error before verifying another
1349         method. Otherwise all sort of weird stuff happens.
1350
1351 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1352
1353         * object.c (mono_field_get_value_object): Handle nullable types correctly.
1354         Fixes #572874.
1355
1356 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
1357
1358         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
1359         Fixes #573322.
1360
1361 2010-01-23  Mark Probst  <mark.probst@gmail.com>
1362
1363         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
1364         pin_staging_area_index is greater than 0.
1365
1366 2010-01-22 Miguel de Icaza (miguel@novell.com)
1367
1368         * loader.c: Since we do nothing with the error returned, pass NULL
1369         to ignore the error.
1370
1371 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1372
1373         * reflection.c (typebuilder_setup_fields): Pretend field setup already
1374         happened before starting to encode the actual fields. This avoid ciclic
1375         dependencies and eventual crashes.
1376
1377         Fixes #572660.
1378
1379 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1380
1381         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
1382         atomic and remove the half-constructed hack in SGen.
1383
1384 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1385
1386         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
1387         has a recursive reference to itself.
1388
1389         Fixes #571863.
1390
1391 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1392
1393         * loader.c (mono_method_signature): Fix error message.
1394
1395 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1396
1397         * sgen-gc.c: Reuse to-space sections between nursery collections.
1398
1399 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1400
1401         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
1402         from the current assembly or mscorlib. Fixes bug #322957.
1403
1404 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
1405
1406         * marshal.c: Calculate the target class of the delegete invoke wrappers using
1407         get_wrapper_target_class.
1408
1409 2010-01-19  Mark Probst  <mark.probst@gmail.com>
1410
1411         * sgen-gc.c: Fix warnings.
1412
1413 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1414
1415         * verify.c (store_local): Better error message.
1416
1417 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1418
1419         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
1420         arguments.
1421
1422 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1423
1424         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
1425         function is generics variance aware.
1426
1427 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
1428
1429         * security-core-clr.c (mono_security_core_clr_can_access_internals):
1430         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
1431
1432 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
1433
1434         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
1435           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
1436
1437         Code is contributed under MIT/X11 license.
1438
1439 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
1440
1441         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
1442         on a GTD.
1443
1444 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
1445
1446         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
1447         return a point to a wrapper specific info structure describing the wrapper.
1448         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
1449  
1450 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1451  
1452         * sgen-gc.c: Make minor collection section allowance adaptive,
1453         depending on the amount of memory reclaimed in the last major
1454         collection.  If more memory was reclaimed (i.e. more garbage
1455         produced), do the next collection earlier.
1456
1457 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1458
1459         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
1460         to itself.
1461
1462         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
1463         the token as parameter.
1464
1465         * verify-internals.h: Ditto.
1466
1467         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
1468
1469         Fixes #571460.
1470
1471 2010-01-18  Mark Probst  <mark.probst@gmail.com>
1472
1473         * sgen-gc.c: Make store_remset_buffer_index long.
1474
1475 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1476
1477         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
1478
1479         Fixes #569579.
1480
1481 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
1482
1483         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
1484         off precise marking if it is available.
1485         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
1486
1487 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
1488
1489         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
1490
1491         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
1492         pinned objects.
1493
1494         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
1495         to the array allocator.
1496
1497 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1498
1499         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
1500         result of mono_compile_method (), it already includes an ftnptr.
1501
1502 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
1503
1504         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
1505
1506 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
1507
1508         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
1509         hash value which doesn't depend on glib/eglib versions.
1510         (mono_metadata_type_hash): Use it.
1511
1512         * object.c (mono_method_get_imt_slot): Ditto.
1513
1514 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
1515
1516         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
1517         independently of the GTD.
1518
1519         * class.c (mono_class_setup_fields): Fail if field has negative offset.
1520
1521         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
1522         to the upper limit since instance_size includes this amount.
1523
1524         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
1525
1526         Fixes #569544.
1527
1528 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
1529
1530         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
1531         with static methods.
1532
1533         * object.c (build_imt_slots): Avoid asserting when static methods are
1534         encountered in an interface.
1535
1536 2010-01-13  Mark Probst  <mark.probst@gmail.com>
1537
1538         * sgen-gc.c (to_space_expand): Fix assertion.
1539
1540 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
1541
1542         * string-icalls.c: missing declaration fixes.
1543         * sgen-gc.c: portability fixes.
1544
1545 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1546
1547         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
1548
1549         * class.c:
1550         * cominterop.c:
1551         * icall.c:
1552         * object.c: 
1553         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
1554
1555 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
1556
1557         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
1558         it can fail loading the type.
1559
1560         * class.c: Add mono_class_inflate_generic_class_checked.
1561
1562         * class.c:
1563         * verify.c:
1564         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
1565
1566 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
1567
1568         * loader.c (mono_method_signature_checked): New internal function taking an
1569         MonoError argument.
1570
1571         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
1572         Fixes build on rh 7.3.
1573
1574 2010-01-10  Aaron Bockover  <abockover@novell.com>
1575
1576         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
1577         at runtime in the same way as on Windows, which yields a relocatable
1578         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
1579         of the running mono process.
1580
1581         On TARGET_ARM, fallback () will always be executed.
1582
1583 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1584
1585         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
1586
1587 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1588
1589         * class.c (mono_class_is_assignable_from_slow): Support variant
1590         generic delegates.
1591
1592         * class.c (mono_class_implement_interface_slow): Support types with
1593         variant generic arguments.
1594
1595 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1596
1597         * verify.c: Remove some code duplication.
1598
1599 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1600
1601         * object.c: Update docs.
1602
1603 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1604
1605         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
1606
1607         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
1608         fallback trampoline as well.
1609
1610         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
1611         out argument that is set to TRUE if the match was direct. 
1612
1613         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
1614
1615         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
1616
1617 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1618
1619         * class.c: Add mono_class_interface_offset_with_variance function that does same
1620         as mono_class_interface_offset but takes variance into account.
1621
1622         * class-internal.h: Export mono_class_interface_offset_with_variance.
1623
1624         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
1625
1626 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1627
1628         * object.c:
1629         * icall.c:
1630         * class.c: Add some FIXME for due to variant generic arguments.
1631
1632         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
1633         can't use the simple bitfield check, so call mono_class_is_assignable_from if
1634         the bitfield check fails.
1635
1636 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1637
1638         * class.c (mono_class_is_assignable_from): Rework the generics variance code
1639         to be easier to read and fix bugs in the case a non generic type implements a variant
1640         interface.
1641
1642         * class.c (mono_class_has_variant_generic_params): Make non static.
1643
1644         * class-internals.h: Export mono_class_has_variant_generic_params as part of
1645         the private API.
1646
1647 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
1648
1649         * assembly.c: fix MONO_PATH debug output.
1650
1651 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
1652
1653         * culture-info-table.h : regenerated.
1654
1655 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1656
1657         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
1658         types that are meant to not have a parent.
1659
1660 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1661
1662         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
1663         from the image mempool, so it is not leaked.
1664
1665 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
1666
1667         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
1668
1669 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
1670
1671         * verify.c (verify_valuetype_layout_with_target): Fix case
1672         that can lead to infinite recursion. Fix bug #567861
1673
1674 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1675
1676         * pedump.c: Run code verifier even if image verification fails
1677         due to a failed type we. This allows more errors to be shown.
1678
1679 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1680
1681         * class.c (count_virtual_methods): Remove the assert and now
1682         fail properly.
1683         
1684         * class.c (setup_interface_offsets): This can fail now.
1685
1686         * class.c (mono_class_setup_vtable_general): Check for parent vtable
1687         errors. Check setup_interface_offsets errors.
1688
1689         * class.c (setup_interface_offsets): Simplify the return error logic
1690         and remove class_init_ok.
1691
1692         Fixes #560327.
1693
1694 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
1695
1696         * class.c (mono_class_init): Do class verification at the beginning. Add
1697         some asserts to avoid tripping into invalid memory.
1698
1699         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
1700         g_error and a decent message.
1701
1702         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
1703
1704         Fixes #567548.
1705
1706 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1707
1708         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
1709         as inline functions instead of defining them in mempool.c.
1710
1711         * metadata-internals.h (MonoImageSet): New structure representing a set of
1712         MonoImages, which own a collection of generic instances.
1713
1714         * metadata.c: Get rid of the global generic caches, instead assign each generic
1715         instance to the image set which consists of all the images referenced by the
1716         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
1717         the memory used by generic instances to be allocated from a per image-set mempool
1718         later.
1719
1720 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1721
1722         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
1723
1724 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1725
1726         * appdomain.c (zero_static_data): Fix a warning.
1727
1728         * locales.c (construct_culture_from_specific_name): Applied patch from
1729         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
1730         not found. Fixes #567900.
1731
1732 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
1733
1734         * loader.c (mono_method_get_signature_full): Remove two asserts.
1735         Return NULL instead so that the verifier can handle both cases 
1736         gracefully.
1737
1738 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1739
1740         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
1741         so we can properly fail types instead of crashing.
1742
1743         Fixes #567676.
1744
1745 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1746
1747         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
1748         generic method.
1749
1750 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1751
1752         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
1753
1754 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1755
1756         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
1757         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
1758         we can't remove it from it since we don't hold the lock.
1759         (mon_new): Free the orphaned events here when a mon structure is added to the
1760         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
1761         this down.
1762
1763 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1764
1765         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
1766         as max stack might be zero.
1767
1768         Fixes #562320.
1769
1770 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1771
1772         Rework all uses of mono_class_setup_methods to accept that it can fail now.
1773
1774         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
1775         instances if the GTD did.
1776
1777         * class.c (mono_class_setup_properties): Ditto.
1778
1779         * class.c (mono_class_setup_events): Ditto.
1780
1781         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
1782
1783         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
1784         error setting.
1785
1786         * class.c (mono_class_init): Fail if GTD did.
1787
1788         * cominterop.c:
1789         * generic-sharing.c:
1790         * icall.c:
1791         * loader.c:
1792         * object.c:
1793         * verify.c: Properly handle failure of mono_class_setup_methods.
1794
1795 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1796
1797         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
1798         mono_class_inflate_generic_method_full internal.
1799
1800         * class.c (inflate_generic_context): Now takes a MonoError argument.
1801
1802         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
1803         errors.
1804
1805 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1806
1807         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
1808         they cannot be patched. Partly fixes #564408.
1809
1810 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1811
1812         * metadata-internals.h, reflection.c: Use the
1813         MonoDynamicImage.handleref hash table only with unmanaged keys,
1814         and add a managed hash table handleref_managed for managed keys.
1815
1816 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1817
1818         * sgen-gc.c: Unset to-space bumper between collections.  It might
1819         become invalid due to degraded allocations.
1820
1821 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
1822
1823         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
1824         with the one from the original method.
1825
1826         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
1827         compatibility.
1828
1829         * verify-internals.h: Add new function to the internal API.
1830
1831 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
1832
1833         * culture-info-tables.h: regenerated it to include the Georgian culture.
1834
1835 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1836
1837         * sgen-gc.c: Include mono/utils/memcheck.h.
1838
1839         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
1840         instead of the current domain, since the two might not match if this is called
1841         from the debugger.
1842
1843         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
1844         domain which created this assembly.
1845
1846 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1847
1848         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
1849
1850 2009-12-17  Mark Probst  <mark.probst@gmail.com>
1851
1852         * sgen-gc.c: Managed implementation of the specialized generic
1853         store write barrier.
1854
1855 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
1856
1857         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
1858         A private virtual newslot method is used to implement an interface method without exposing
1859         it to users. When querying for public instance methods, such method would hide a public one
1860         on a parent type.
1861
1862         Fixes #564379.
1863
1864 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
1865
1866         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
1867         conventions.
1868
1869 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1870
1871         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
1872
1873 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1874
1875         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
1876         as they are no longer used.
1877         
1878          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
1879
1880         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
1881
1882 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1883
1884         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
1885         if the owner class has not been finished before returning reflection_info.      
1886
1887         Fixes #565127.
1888
1889 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
1890
1891         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
1892         param doesn't have custom attributes. Fixes #565117.
1893
1894         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
1895         #565120.
1896
1897 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
1898
1899         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
1900
1901 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
1902
1903         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
1904         same amount done by a core-clr enabled runtime.
1905
1906 2009-12-15  Marek Habersack  <mhabersack@novell.com>
1907
1908         * appdomain.c (mono_make_shadow_copy): make sure access mode of
1909         the target files is reset to writable by owner and readable by
1910         everyone else to prevent problems when updating shadow copies of
1911         files whose source is read-only. Fixes bug #556884
1912
1913 2009-12-15  Mark Probst  <mark.probst@gmail.com>
1914
1915         * class.c (mono_generic_class_get_class): Allocate the generic
1916         class via malloc again, so that it can be freed when any one of
1917         the images of its constituent types is closed.
1918
1919         * metadata.c: When closing an image, don't free generic insts and
1920         generic classes right away, but put them into a list for later
1921         freeing.
1922
1923         * image.c, metadata-internals.h: Store the free list and in the
1924         second pass of closing an image, free it.
1925
1926 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1927
1928         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
1929
1930         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
1931         types in type_hash.
1932
1933         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
1934
1935 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1936
1937         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
1938         user type.
1939
1940         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
1941         is used.
1942
1943 2009-12-14  Miguel de Icaza  <miguel@novell.com>
1944
1945         * verify.c (mono_method_verify): The Unused opcodes produce an
1946         InvalidProgramException on .NET
1947
1948 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
1949
1950         * loader.c (mono_method_get_header): Move assert after the verifier
1951         has been called on the method header.
1952
1953 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1954
1955         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
1956
1957         * appdomain.c: Bump corlib version.
1958
1959 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1960
1961         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
1962         types as well since otherwise generic instances would not return UT as arguments but
1963         their undelying system type.
1964
1965         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
1966         to reflect the fact that they can have now multiple different types.
1967
1968         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
1969
1970         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
1971
1972         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
1973
1974         * reflection.c (mono_reflection_register_with_runtime): Init super types
1975         if the image is not dynamic.
1976
1977         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
1978         check if the generic type definition is a TypeBuilder.
1979
1980         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
1981         doesn't belong to a dynamic image, skip initialization.
1982
1983         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
1984         base definition is not a dynamic type.
1985
1986 2009-12-11  Marek Habersack  <mhabersack@novell.com>
1987
1988         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
1989         mono_profiler_string_allocation
1990
1991         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
1992         if string profiling is enabled, call
1993         mono_profiler_string_allocation
1994
1995         * profiler.h: added two MonoProfileFlags -
1996         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
1997         installation functions for the hooks below.
1998
1999         * profiler-private.h, profiler.c: added two hooks:
2000         mono_profiler_string_allocation called whenever a string is
2001         allocated by InternalAllocateStr and mono_profiler_iomap called
2002         whenever IOMAP code performs an adjustement on a file path.
2003
2004 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
2005
2006         * boehm-gc.c: fixed race condition while getting the target of a
2007         disappearing link (bug #522233).
2008
2009 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2010
2011         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
2012         the error.
2013
2014 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2015
2016         * reflection.c: Add mono_reflection_register_with_runtime icall to
2017         allow a MonoGenericClass to register itself as the managed mirror of
2018         a given generic instance.
2019         This is a temporary workaround until all MGC instantiation happens in
2020         managed code.
2021
2022         * object-internals.h: Ditto.
2023
2024         * icall-def.h: Ditto.
2025
2026 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2027
2028         * sgen-gc.c (find_in_remsets): Also search the generic store
2029         remsets.
2030
2031 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2032
2033         * sgen-gc.c: Don't access class names in debugging code when
2034         unloading a domain, because they might not be valid anymore.
2035
2036 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2037
2038         * domain.c, domain-internals.h: New function mono_domain_unset().
2039
2040         * appdomain.c (unload_thread_main): Detach the thread again at the
2041         end.
2042
2043         * threads.c: When a thread exists or is detached, unset its domain
2044         so that it's NULL when, for example, a pthread destructor runs.
2045
2046         * sgen-gc.c: Assert that there is no domain set after a thread is
2047         done.
2048
2049 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2050
2051         * class.c (mono_generic_class_get_class),
2052         metadata.c (free_generic_class): Allocate generic MonoClass's from
2053         the image mempool, not via malloc.  The problem with malloc is
2054         that when unloading a domain those classes are freed before
2055         clearing the heap and SGen needs the classes.  Rewriting the
2056         unloading code to do the free later would be more work and there's
2057         no point in using malloc anyway.
2058
2059 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
2060
2061         * loader.c (mono_method_signature): Always call mono_loader_unlock 
2062         before returning.
2063
2064 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2065
2066         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
2067         user string blobs.
2068
2069         * verify-internals.h: Add new function to the internal API.
2070
2071         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
2072         check if it's a valid string.
2073
2074         * object.c (mono_ldstr): Ditto.
2075
2076         Fixes #561943.
2077
2078 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2079
2080         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
2081         from a method before returning it. This is the expected behavior.
2082
2083 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
2084
2085         * reflection.c (inflate_method): Handle the case of a regular system type.
2086
2087 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2088
2089         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2090         gathering code.
2091
2092         * mempool.c, mempool-internals.h: New function
2093         mono_mempool_get_bytes_allocated().
2094
2095         * Makefile.am: sgen-pinning-stats.c added.
2096
2097 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2098
2099         * sgen-gc.c (create_allocator): Only use the fast path if the
2100         object size is within the small object size limit.
2101
2102 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2103
2104         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2105         possibly adding padding to sizeof (GCMemSection).
2106
2107 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2108
2109         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2110         reference is not in the nursery.
2111
2112 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
2113
2114         * class.c (mono_class_from_typeref): Bounds check idx against the 
2115         assemblyref table.
2116
2117 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2118
2119         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2120         through the potential roots, then sort the results and find the
2121         pinned objects from there.
2122
2123         * Makefile.am: sgen-pinning.c added.
2124
2125 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2126
2127         * sgen-gc.c: Record generic stores in specialized remset buffers.
2128
2129 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2130
2131         * sgen-gc.c: Make pinned chunks the same size as major heap
2132         sections, and align them as well, so that we can check whether an
2133         object is in a pinned chunk or a major section in constant time.
2134
2135 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2136
2137         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2138
2139 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2140
2141         * sgen-gc.c: Make all major heap sections the same size (currently
2142         128k) and allocate them on aligned addresses.  Small heap sections
2143         give us better granularity with pinned objects - we can free up
2144         much more memory.
2145
2146 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2147
2148         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2149         output removed.
2150
2151 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2152
2153         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2154
2155         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2156         names in addition to the runtime generated one.
2157
2158         * mono/metadata/image.h: Add a function to take the real name of the assembly
2159         image.
2160
2161         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2162         use it instead of the runtime generated one.
2163
2164         Code is contributed under MIT/X11 license.
2165
2166 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2167
2168         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2169         before the other checks to prevent problems if the DateTime class is blittable.
2170         Hopefully fixes #559600.
2171
2172 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2173
2174         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2175         returns the largest string length that will not be put into the
2176         LOS.
2177
2178         * sgen-gc.c, gc-internal.h: New function that returns the largest
2179         object size that will not be put into the LOS.
2180
2181         * appdomain.c: Bump corlib version.
2182
2183 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2184
2185         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2186
2187         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2188
2189 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2190
2191         * reflection.c (inflate_method): Fix signature.
2192
2193         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2194         in managed code.
2195
2196 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2197
2198         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2199
2200 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2201
2202         * sgen-gc.c: Abstract to-space handling.
2203
2204 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2205
2206         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2207
2208         Fixes #559906.
2209
2210 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2211
2212         * sgen-gc.c: Only add references from outside the nursery to
2213         within the nursery to the global remset list.
2214
2215 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2216
2217         * appdomain.c (create_exceptions): Set the domain temporarily if
2218         necessary to avoid cross-domain references.
2219
2220 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2221
2222         * verify.c (get_stack_type): Return that the type is invalid instead of
2223         asserting.
2224
2225         * verify.c (mono_method_verify): Verify that all locals and arguments
2226         have valid stack types.
2227
2228         Fixes #559913.
2229
2230 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2231
2232         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2233         bounds checking overflow aware.
2234
2235         Fixes #559910.
2236
2237 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2238
2239         * verify.c (do_invoke_method): Check for invalid method signatures.
2240
2241         Fixes #553450.
2242
2243 2009-12-02  Jb Evain  <jbevain@novell.com>
2244
2245         * appdomain.c (MONO_CORLIB_VERSION): bump.
2246         * icall-def.h (get_base_definition): renamed to get_base_method
2247         and add a boolean argument indicating we want the original
2248         method definition, or the immediate base method.
2249         * icall.c: apply the get_base_definition to get_base_method change.
2250
2251 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2252
2253         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2254
2255         Fixes #558042.
2256
2257 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2258
2259         * class.c: remove asserts for invalid type token in
2260         mono_class_name_from_token(), mono_assembly_name_from_token() and
2261         mono_class_create_from_typedef () (fixes bug #553318).
2262
2263 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2264
2265         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2266         incorrect assemblies (bug #553322).
2267
2268 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2269
2270         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2271
2272         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2273
2274         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2275
2276         * class.c (inflate_generic_context): Ditto.
2277
2278         * loader.c (method_from_methodspec): Ditto.
2279
2280         Fixes #558230.
2281
2282 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2283
2284         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2285
2286         * class.c (mono_class_create_from_typespec): Ditto.
2287
2288         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2289
2290         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2291
2292         Fixes #558184.
2293
2294 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2295
2296         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2297
2298         * verify.c (verify_delegate_compatibility): Ditto.
2299
2300         * verify.c (do_newobj): Ditto.
2301
2302         Fixes #558046.
2303
2304 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2305
2306         * sgen-gc.c: Use a gray queue instead of requiring that gray
2307         objects are in a contiguous region.
2308
2309         * sgen-gray.c: The gray queue implementation.
2310
2311         * Makefile.am: sgen-gray.c added.
2312
2313 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2314
2315         * appdomain.c: When unloading a domain, zero its static data and
2316         perform a minor collection when using SGen.  That will get rid of
2317         all the remsets pointing into that domain's static data.
2318
2319         * sgen-gc.c: Allow remsets into static data.  By doing this we
2320         need less checks so we're more efficient.
2321
2322 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2323
2324         * verify.c (mono_method_verify): Check for catch clauses with broken
2325         types.
2326
2327         Fixes #558465.
2328
2329 2009-12-01  Jb Evain  <jbevain@novell.com>
2330
2331         * class.c (make_generic_param_class): set the namespace of
2332         the generic parameter class from its owner, if available.
2333
2334 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2335
2336         * verify.c (code_bounds_check): Do proper overflow checking.
2337
2338         * verify.c (mono_method_verify): The number of switch entries is
2339         an unsigned int. Properly bounds check it.
2340
2341         Fixes #558594.
2342
2343 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2344
2345         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2346         mono_metadata_method_has_param_attrs which only checks if a given param
2347         list has a non zero flags entry.
2348
2349         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2350         to inform how many params should we expect to decode.
2351
2352         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2353         as it's faster than mono_metadata_get_param_attrs.
2354
2355         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2356         add mono_metadata_method_has_param_attrs.
2357
2358 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2359
2360         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
2361         failures.
2362
2363         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
2364         is -1 but its class is broken.
2365
2366         Fixes #558522.
2367
2368 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2369
2370         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
2371         for parameter overflow.
2372
2373         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
2374         of mono_metadata_get_param_attrs.
2375
2376         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
2377         API.
2378
2379         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
2380
2381 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2382
2383         * class.c (mono_class_setup_fields): Check for fields with broken types.
2384
2385         Fixes #558741.
2386
2387 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
2388
2389         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
2390         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
2391         its TypeBuilder::CreateType ().
2392
2393         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
2394         if not needed.
2395
2396         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
2397         to make setup_interface_offsets happy.
2398
2399         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
2400         compilation now works.
2401
2402 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
2403
2404         * appdomain.c (create_exceptions): New helper function extracted from
2405         mono_runtime_init () to precreate objects used during exception handling.
2406         (mono_runtime_init): Call it.
2407         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
2408
2409 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
2410
2411         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
2412         compilation until the proper one is found.
2413
2414 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
2415
2416         * class.c (mono_class_setup_vtable_general): Cache the result of
2417         get_virtual_methods () since it can be slow because of the metadata
2418         optimization.
2419
2420         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
2421         from a MonoValueHashTable for now, since the later is based on an earlier
2422         version of hpj's internal probing code and seems to have serious collision
2423         issues.
2424
2425         * loader.c (mono_get_method_full): Update after the change above.
2426
2427 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2428
2429         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
2430
2431 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2432
2433         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
2434         the GTD instead of the DGC instead of crashing.
2435
2436         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
2437         required. Inflate fields if needed.
2438
2439         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
2440         finished. Renamed.
2441
2442 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
2443
2444         * class.c (check_interface_method_override): Check for NULL signatures and fail
2445         the type.
2446
2447         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
2448
2449         Fixes #553428.
2450
2451 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
2452
2453         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
2454         the MONO_METHOD_FLAGS column instead of decoding the whole row.
2455
2456 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2457
2458         * loader.c (field_from_memberref): Resolve the class first then the field
2459         signature. Remove a lot of duplicated code and make sure we don't pass valid
2460         values to mono_loader_set_error_field_load.
2461
2462         Fixes #553306.
2463
2464 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2465
2466         * class.c (inflate_generic_type): Change code to use new signature of
2467         mono_error_set_bad_image.
2468
2469         Fixes #558124.
2470
2471 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
2472
2473         * verify.c (mono_method_verify): Don't free ctx.params items if 
2474         we aborted while inflating the ctx.locals. Complete previous fix
2475
2476 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
2477
2478         * verify.c (mono_method_verify): Use the uninflated type name, 
2479         when the inflated is null, to report errors. Also take care when
2480         freeing, not to free everything since, in case of an error, some
2481         stuff would be copies (i.e. not allocated by the function itself)
2482         Fix bug #558145
2483
2484 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2485
2486         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
2487         or overflow. The caller must have done this check explicitly. This guard us
2488         from accessing invalid memory.
2489
2490         * verify.c (do_push_static_field): Check for stack overflow.
2491
2492         Fixes #553333.
2493
2494 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
2495
2496         * loader.c (find_method_in_class): Don't crash if the signature cannot
2497         be resolved.
2498
2499         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
2500         of asserting for the case of invalid params.
2501
2502         Fixes #553304.
2503
2504 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
2505
2506         * image.c (mono_image_load_module): Fix crash when a bad assembly
2507         has no module at all (fix bug #553412) and also replace the 
2508         g_assert with a return NULL (documented return value for failure)
2509
2510 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
2511
2512         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
2513
2514 2009-11-23  Miguel de Icaza  <miguel@novell.com>
2515
2516         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
2517         file attribute to managed code and avoid doing the mask/attribute
2518         checks here. 
2519
2520 2009-11-22  Miguel de Icaza  <miguel@novell.com>
2521
2522         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
2523         the managed world.
2524
2525         * icall-def.h: New entry points.
2526         
2527 2009-11-19  Mark Probst  <mark.probst@gmail.com>
2528
2529         * process.c: Don't put references to managed objects into a
2530         g_ptr_array.
2531
2532 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
2533
2534         * class.c (can_access_internals): Allow CoreCLR to participate in
2535         allowing (or not) [InternalsVisibleTo] between assemblies.
2536         * security-core-clr.c|h: Make sure that only trusted code (a 
2537         superset of platform code) can access the internals of platform
2538         code.
2539
2540 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
2541
2542         * reflection.c: use the correct base class to get the virtual method
2543         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
2544
2545 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
2546
2547         * security-core-clr.c (get_caller_no_reflection_related): 
2548         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
2549         it's still reflection and must be filtered correctly.
2550
2551 2009-11-16  Mark Probst  <mark.probst@gmail.com>
2552
2553         * object.c (compute_class_bitmap): Fix for large bitmaps.
2554
2555 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
2556
2557         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
2558
2559         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
2560         koush@koushikdutta.com). Disable GC_no_dls on android.
2561
2562 2009-11-12  Mark Probst  <mark.probst@gmail.com>
2563
2564         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
2565         tlab_next points outside the TLAB because the allocator was
2566         interrupted.
2567
2568 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2569
2570         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
2571
2572 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2573
2574         * object-internals.h: Change signature for mono_string_to_utf8_image.
2575
2576         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
2577         argument.
2578
2579         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
2580         exceptions due to mono_string_to_utf8.
2581
2582 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2583
2584         * object-internals.h: Change signature for mono_string_to_utf8_mp.
2585
2586         * object.c (mono_remote_class): Make sure all resources are released before
2587         raising an exception.
2588
2589         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
2590
2591 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2592
2593         * mono-perfcounters.c (network_get_impl): Change variable initialization
2594         ordering to fix potential memory leak in case of exceptions.
2595
2596         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
2597         encoded strings.
2598         
2599 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
2600
2601         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
2602         variable initialization ordering to fix potential memory leak in case
2603         of exceptions.
2604
2605 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
2606
2607         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
2608         needed.
2609
2610 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2611
2612         * appdomain.c: Fix shadow path code to better deal with exceptions.
2613
2614 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2615
2616         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
2617         exception in the middle of the runtime code.
2618
2619 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
2620
2621         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
2622         leak memory with broken envvar value.
2623
2624 2009-11-06  Mark Probst  <mark.probst@gmail.com>
2625
2626         * reflection.c (mono_reflection_setup_internal_class): Because
2627         nested classes are not added to the name cache, we must put them
2628         in the reflection_info_unregister_classes list.
2629
2630 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
2631
2632         * class.c: When CoreCLR is enabled don't call mono_init_com_types
2633         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
2634         platform (trusted) code. Instead we return a TypeLoadException to
2635         be thrown later. This is the exception thrown by Silverlight 2 if
2636         a type, inside application (user) code is marked with [ComImport]
2637
2638 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
2639
2640         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
2641         mono_is_debugger_attached () too.
2642
2643         * mono-debug.c (mono_is_debugger_attached): New helper function.
2644         (mono_set_is_debugger_attached): Ditto.
2645
2646 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2647
2648         * object-internals.h: Add mono_string_to_utf8_checked.
2649
2650         * object.c: Implement mono_string_to_utf8_checked.
2651
2652 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2653
2654         * class.c: Add missing check for load errors after every
2655         call to mono_class_setup_fields
2656
2657         Fixes #552282.
2658
2659 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2660
2661         metadata-verify.c (verify_tables_schema): Fix the error message.
2662
2663 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2664
2665         * metadata.c: Change event table schema to use TDOR for event type
2666         as this is what it's meant to be.
2667
2668         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
2669         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
2670         entry.
2671
2672         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
2673         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
2674         rows in MONO_TABLE_GENERICPARAM.
2675
2676         Fixes #552289.
2677
2678 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
2679
2680         * class.c (mono_image_add_to_name_cache): Assert on duplicate
2681         insertion.
2682
2683         * reflection.c (mono_reflection_setup_internal_class): Avoid
2684         registering a gc root the same MonoClass multiple times.
2685         Don't register nested types on the global scope as they should
2686         not be available there.
2687
2688 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2689
2690         * culture-info-tables.h: regenerated.
2691
2692 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2693
2694         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
2695
2696 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
2697
2698         * string-icalls.c|h: Remove string internal calls that are not 
2699         used anymore by the class libraries.
2700         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
2701         which is not used in the class librairies.
2702         * icall-def.h: Update tables.
2703
2704 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2705
2706         * class.h: Move mono_class_inflate_generic_type_checked...
2707
2708         * class-internals.h: to here and make it internal. We don't want to
2709         further expose MonoGenericContext. 
2710
2711 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2712
2713         * verify.c (mono_method_verify): Improve error message.
2714
2715 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2716
2717         * reflection.c (fieldref_encode_signature): If field_image is NULL then
2718         the token is already properly encoded. Fixs 4.0 build.
2719
2720 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2721
2722         * locales.c (construct_number_format): Check if the number index is
2723         valid before trying to use it, if not, just return.
2724         
2725 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
2726
2727         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
2728         since that loses the abort state. Fixes #539394.
2729
2730 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
2731
2732         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
2733         explicit this argument to the call signature.
2734         (mono_marshal_get_icall_wrapper): Ditto.
2735
2736 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2737
2738         * reflection.c (fieldref_encode_signature): Add new field_image parameter
2739         to indicate which assembly to use when resolving a custom-mod.
2740
2741         Fixes handling of volatile fields used across assemblies as reported in #551513.
2742
2743 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2744
2745         * loader.c: Improve error messages.
2746
2747 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2748
2749         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
2750         of interfaces. Fixes IKVM.
2751
2752         * class.c (mono_class_setup_vtable_general): Improve debug spew.
2753
2754 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2755
2756         * verify.c (verifier_inflate_type): Return the inflated type on success.
2757
2758 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
2759
2760         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
2761
2762         * threads.c (mono_thread_attach): Call the profiler thread start callback.
2763
2764         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
2765
2766         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
2767         flag set.
2768
2769         * profiler.c: Add new profiler callbacks for runtime invoke.
2770
2771         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
2772
2773 2009-11-01  Mark Probst  <mark.probst@gmail.com>
2774
2775         * sgen-gc.c: Keep track of the reason for a major collection and
2776         write it to the heap-dump file.
2777
2778 2009-10-31  Miguel de Icaza  <miguel@novell.com>
2779
2780         * threads.c: refactor the code that initializes the
2781         thread_start_args into a reusable function and use this in the two
2782         methods that start up threads.
2783
2784 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
2785
2786         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
2787         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
2788
2789 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
2790
2791         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
2792         Until now, we only had the per-cpu(core) counters.
2793
2794 2009-10-28  Mark Probst  <mark.probst@gmail.com>
2795
2796         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
2797         mono_gc_get_suspend_signal(), which returns the suspend signal
2798         number used by the GC.
2799
2800 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
2801
2802         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
2803
2804         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
2805         signalling start_notify.
2806
2807 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2808
2809         * appdomain.c: do not test the st_mode field for shadow-copies.
2810         Fixes bug #545276.
2811
2812 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2813
2814         * threadpool.[ch]: added hooks for thread start/finish and item
2815         processing begin/end. For monotouch use only.
2816
2817 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
2818
2819         * threads.c (mono_thread_get_name): New helper function.
2820
2821         * reflection.c (resolve_object): Set handle_class for strings too.
2822         (mono_reflection_create_custom_attr_data_args): New helper function to decode
2823         a cattr blob into a set of arrays and structures without creating the custom
2824         attributes themselves.
2825         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
2826
2827         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
2828
2829         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
2830         function.
2831
2832 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2833
2834         * verify.c: Replace calls to mono_class_inflate_generic_type with
2835         mono_class_inflate_generic_type_checked. Fixes #480005.
2836
2837 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2838
2839         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
2840         object since not all paths lead to callees initing it.
2841
2842 2009-10-23  Alp Toker  <alp@nuanti.com>
2843
2844         Fix embedding API breakage from r144688. mono-compiler.h is an internal
2845         header and should not be shipped:
2846
2847         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
2848         which is specific to the mono build. Not going to work.
2849
2850 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
2851
2852         * security-manager.c: Report if core-clr is active from
2853         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
2854         to allow Moonlight BCL to behave appropriately (both in browser
2855         and outside, e.g. smcs)
2856
2857 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
2858
2859         * mono-config.c: ignore UTF-8 BOM and report parser errors.
2860         Fixes bug #549108.
2861
2862 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2863
2864         * class.c: fix typo.
2865
2866 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
2867
2868         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
2869         a MonoError parameter.
2870
2871         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
2872         version that can does proper error handling.
2873
2874         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
2875
2876         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
2877
2878         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
2879
2880 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
2881
2882         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
2883         NO_UNALIGNED_ACCESS is defined.
2884
2885 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
2886
2887         * marshal.c (mono_string_builder_to_utf16): Applied patch from
2888         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
2889         Fixes #549173.
2890
2891 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2892
2893         * sgen-gc.c: Shorten sections whenever possible.
2894
2895 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2896
2897         * sgen-gc.c: Use our portable semaphore #defines.
2898
2899 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2900
2901         * sgen-gc.c: A debug option for dumping the heap layout to a file
2902         after each collection.
2903
2904 2009-10-21  Mark Probst  <mark.probst@gmail.com>
2905
2906         * sgen-gc.c: Make managed write barriers atomic via
2907         thread-restarts.
2908
2909 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
2910
2911         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
2912         methods. Fixes #543021.
2913
2914 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2915
2916         * socket-io.[ch]: fix VS build.
2917
2918 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2919
2920         * icall-def.h:
2921         * socket-io.[ch]: implemented SendFile.
2922
2923 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
2924
2925         * class.c (mono_class_create_from_typedef): Initialize class->element_class
2926         before the interfaces to avoid crashes later if class initialization fails.
2927         Fixes #548417.
2928
2929         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
2930         Fixes #548276.
2931
2932 2009-10-20  Marek Safar  <marek.safar@gmail.com>
2933
2934         * domain.c: Bump 4.0 version.
2935
2936 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
2937
2938         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
2939         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
2940         check since 'pubkey' can't be NULL at this stage
2941         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
2942         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
2943         initialization of 'iter'
2944
2945 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
2946
2947         * cominterop.c : Search the interface parts of vtable to find 
2948           method matches.  Fixes 547030.
2949
2950         Code is contributed under MIT/X11 license.
2951
2952 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
2953
2954         * marshal.c: BeginInvoke cannot be called on multicast delegates with
2955         multiple targets. Fixes bug #574426.
2956
2957 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2958
2959         * profiler.h: Put here the definition of
2960         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
2961         (and fix the build...).
2962
2963 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2964
2965         * profiler.c, profiler.h, profiler-private.h:
2966         Added support for different ways of getting call chains in stat mode.
2967
2968 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2969
2970         * object.c, object-internals.h: New function for computing the
2971         size of an array, factored out of mono_array_new_full().  Use
2972         SGen's functions for allocating arrays and vectors.
2973
2974         * sgen-gc.c, gc-internal.h: Special functions for allocating
2975         arrays and vectors without race conditions.  A managed array
2976         allocator method.
2977
2978         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
2979
2980 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2981
2982         * object.c, object.h, icall.c: Write barriers do the copying now,
2983         as well, so no need for an additional memcpy.
2984
2985         * sgen-gc.c: Lock when storing remsets.  Do the memory
2986         copying/moving in the write barriers.
2987
2988         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
2989
2990         * reflection.c: Added an assert.
2991
2992 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2993
2994         * threads.c, process.c: A few missing write barriers.
2995
2996 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
2997
2998         * mono-perfcounters.c, mono-perfcounters-def.h: Add
2999         network performance counters for bytes sent per second, bytes
3000         received per second, and bytes total per second.
3001
3002         Code is contributed under MIT/X11 license.
3003
3004 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3005
3006         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3007         Fix warning.
3008
3009 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3010
3011         * threads.c, object-internals.h, object.c: Move code for
3012         transferring an object to a different domain (via
3013         serialization/remoting) to object.c.
3014
3015         * object.c (call_unhandled_exception_delegate): If the exception
3016         is in a different domain than the delegate, transfer the exception
3017         to that domain.
3018
3019 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
3020
3021         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
3022         Fixes #322934.
3023
3024 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3025
3026         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
3027
3028 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3029
3030         * object.c (mono_method_return_message_restore): Handle the case
3031         where the argument is an instance of a generic type.  Fixes
3032         #544446.
3033
3034 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3035
3036         * object.c (set_value): Write barrier fix - we must pass the
3037         count, not the size.
3038
3039 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
3040
3041         * domain.c (mono_init_internal): Print a useful error message when encountering
3042         an old mscorlib, instead of crashing. Fixes #544307.
3043
3044 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3045
3046         * appdomain.c (copy_app_domain_setup): Fix a warning.
3047
3048         * debug-helpers.c (dis_one): Ditto.
3049
3050 2009-10-04  Mark Probst  <mark.probst@gmail.com>
3051
3052         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
3053         into the new domain, instead of referencing the original one.
3054
3055         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
3056         non-static.
3057
3058         * appdomain.c: Corlib version bump.
3059
3060 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3061
3062         * threadpool.c: one more...
3063
3064 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3065
3066         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
3067         threads to die because we're shutting down. delgate5.exe works again.
3068
3069 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
3070
3071         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
3072           ccw_interface_hash table when a ccw is finalized.
3073
3074         Code is contributed under MIT/X11 license.
3075
3076 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3077
3078         * assembly.c, domain.c, image.c, metadata-internals.h: Split
3079         domain and image unloading into two steps.  We must do this
3080         because clearing the domain in SGen requires the class metadata to
3081         be intact, but we need to free the mono_g_hash_tables in case a
3082         collection occurs during domain unloading and the roots would trip
3083         up the GC.
3084
3085 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3086
3087         * object-internals.h: Remove serialized culture fields from
3088         MonoInternalThread.
3089
3090         * icall-def.h, thread-types.h, threads.c: Remove serialized
3091         culture icalls.
3092
3093         * appdomain.c: Corlib version bump.
3094
3095 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3096
3097         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3098         Fixes #543133.
3099
3100 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3101
3102         * sgen-gc.c: Try to shorten the new section after a major
3103         allocation to avoid ever-growing sections.
3104
3105 2009-10-13  Martin Baulig  <martin@ximian.com>
3106
3107         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3108         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3109         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3110         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3111
3112         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3113
3114 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3115
3116         * threadpool.c: fixed the order in which 'completed' and the wait
3117         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
3118         No need to use the wait_handle field of ASyncCall. Make sure the
3119         threadpool is active when adding a job or queueing an idle thread.
3120
3121 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3122
3123         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3124
3125         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3126         when using --compile-all.
3127
3128 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3129
3130         * metadata.c (free_generic_class): Unregister the field_objects
3131         roots if we're using SGen.
3132
3133 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3134
3135         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3136         for GenericParamTableEntry.gparam.
3137
3138 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3139
3140         * marshal.c: don't create the handle when calling. It is created later
3141         if needed.
3142
3143 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3144
3145         * sgen-gc.c: Warning fixes.
3146
3147 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3148
3149         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3150         whole heap for cross-domain references before each collection.
3151
3152         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3153         object.
3154
3155         * threadpool-internals.h, threadpool.c: New function
3156         mono_thread_pool_is_queue_array() for checking whether a given
3157         array is used as a (cross-domain) queue by the thread pool code.
3158
3159 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3160
3161         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3162         searches the whole heap for objects containing a specific
3163         reference.  Only for debugging.
3164
3165 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3166
3167         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3168
3169         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3170         byte arrays between domains.
3171
3172 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3173
3174         * threadpool.c:
3175         * class-internals.h:
3176         * mono-perfcounters-def.h:
3177         * mono-perfcounters.c:
3178         -There is a list of idle threads
3179         -Each of those idle threads wait on their own WaitHandle instead
3180         of all of them using the same semaphore. When a new work item is
3181         added, the job is assigned directly to an idle thread or a newly
3182         created one if possible and then the handle for that thread is
3183         signaled. Compare that to the current approach where all the
3184         threads in the pool compete to dequeue a job from the same
3185         queue.
3186         -New struct ThreadPool that brings together the bunch of static
3187         variable for each threadpool (IO and regular).
3188         -New performance counters: # of items added and its rate per
3189         threadpool. The rate will be used later, perhaps together with
3190         other perf. counters, to decide when idle threads should exit.
3191
3192 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3193
3194         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3195         Fix typo on Windows build.      
3196         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3197         
3198         Code is contributed under MIT/X11 license.
3199
3200 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3201
3202         * object-internals.h: The Thread class is split up into Thread and
3203         InternalThread now.  We have exactly one InternalThread per
3204         thread, and at most one Thread per appdomain per thread.  Most
3205         data is stored in InternalThread.  All InternalThread objects live
3206         in the root domain.
3207
3208         * class-internals.h: Add internal_thread_class to MonoDefaults.
3209
3210         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3211         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3212         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3213         resulting from the split of the Thread class.
3214
3215         * gc-internal.h: Prototype for new function for checking whether a
3216         thread is the finalizer thread.
3217
3218         * appdomain.c: Corlib version bump.
3219
3220 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3221
3222         * appdomain.c|h: Add a mono_domain_try_unload method which is
3223         equivalent to mono_domain_unload, except that it returns an exception
3224         instead of throwing it. Make mono_domain_unload use the
3225         mono_domain_try_unload method to avoid code-duplication.
3226
3227 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3228
3229         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3230         a problem.
3231
3232 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3233
3234         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3235         aborting when a conversion is not implemented.
3236
3237 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3238
3239         * verify.c: when comparing culture strings, use g_ascii_strcmp
3240
3241         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3242         when comparing public key tokens to use memcmp on 16 bytes.   I do
3243         not believe this ever worked as advertised in the past.
3244
3245         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3246         which would have always failed earlier.
3247
3248 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3249
3250         * gc.c: Raise a NullArgumentException if the object passed is
3251         null.
3252
3253 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3254
3255         * image.c (mono_image_close): Atomically decrement the reference count and
3256         remove the image from the hash tables, to prevent another thread from seeing a
3257         dying MonoImage. Fixes #541194.
3258
3259 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3260
3261         * threadpool.c: actually use the minimum number of 'completion ports'
3262         (for us is just a potential worker thread).
3263
3264 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3265
3266         * threadpool.c: remove ares_htable. It does not make sense any more
3267         since the same objects are now stored in GC-tracked arrays while they are
3268         in the queue.
3269
3270 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3271
3272         * threadpool.c: increase the minimum length of the queues to 128.
3273         Remove warning.
3274
3275 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3276
3277         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3278         return the modified signature used by string ctors.
3279
3280 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3281
3282         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3283         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3284         method, to be used by full-aot.
3285
3286 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3287
3288         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3289         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3290         be known to be good.
3291
3292         * class.c (mono_class_init): Fail array types if their element type fails initialization
3293         as well.
3294
3295         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3296         initialization, additionally we request the element_type vtable to be initialized as well.
3297
3298         This is fine and should not increase the working set in any meaningful way since it's reasonable
3299         to assume       that most code will create an array and eventually populate it, which will require the
3300         type's vtable to be initialized.
3301
3302         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3303
3304 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3305
3306         * normalization-tables.h : regenerated.
3307
3308 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3309
3310         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3311         a leb128 encoding can take up to 5 bytes.
3312
3313 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3314
3315         * class.c (verify_class_overrides): Remove useless argument.
3316
3317         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3318         before interface enumeration as this is no longer required.
3319
3320 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3321
3322         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3323         used under mono_class_init context. This functions avoid any code path that
3324         calls mono_class_init, which leads it to be slow as some things like the interface
3325         bitmap are not available.
3326
3327         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3328         of it's own broken version. Fixes the verifier part of #538588.
3329
3330         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3331         API.
3332
3333 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3334
3335         * class.c (mono_class_init): Always set an exception in a class if
3336         vtable setup fails.  Fixes #538577.
3337
3338         * generic-sharing.c: Raise an exception if mono_class_vtable()
3339         returns NULL.
3340
3341 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3342
3343         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3344         methods of vtypes, as they could be incorrectly shared with static methods
3345         taking an IntPtr argument.
3346
3347 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3348
3349         * domain.c:
3350         * object.c:
3351         * class-internals.h: renamed waithandle_class to
3352         manualresetevent_class.
3353         * marshal.c: propagate the exception if a remoting BeginInvoke call
3354         fails.
3355
3356 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3357
3358         * object.c: Properly handle vtable failures.
3359
3360 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3361
3362         * socket-io.c: Assert on vtable failure.
3363
3364         * mono-mlist.c: Assert on vtable failure.
3365
3366 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3367
3368         * marshal.c: Assert on vtable failure.
3369
3370 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3371
3372         * icall.c: Properly handle vtable failures.
3373
3374 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3375
3376         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
3377
3378 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3379
3380         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
3381
3382         * console-unix.c (do_console_cancel_event): Same.
3383
3384 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3385
3386         * class-internals.h: Add mono_class_vtable_full function that allows control
3387         if an exception should be raised or not.
3388
3389         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
3390         to do what its documentation say, that is to return NULL and set exception_type on
3391         failure.
3392
3393         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
3394         and change the code to honor it.
3395
3396 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3397
3398         * verify.c: Fix typo in error message.
3399
3400 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
3401
3402         * security-core-clr.c: Fix default_platform_check so it can run
3403         the runtime coreclr tests (without an infinite recursion when
3404         throwing an exception).
3405
3406 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3407
3408         object.c (mono_delegate_ctor_with_method): Guard against null method.
3409
3410 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3411
3412         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
3413         that should be replaced with error handling later.
3414
3415 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3416
3417         * marshal.c (mono_delegate_end_invoke): Fix warning.
3418
3419 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3420
3421         * loader.c (mono_field_from_token): Properly handle invalid
3422         dynamic tokens.
3423
3424 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3425
3426         * pedump.c (verify_image_file): Skip types that can't be
3427         decoded.
3428
3429 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3430
3431         * verify.c: Look for recursive valuetypes only against the
3432         type been initialized as this is a lot simpler and works.
3433
3434 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
3435
3436         * verify.c: Ensure that fields are properly loaded before
3437         checking them.
3438
3439 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
3440
3441         * object.c (mono_object_get_virtual_method) : Call 
3442           mono_cominterop_get_invoke if the object is a COM object.
3443
3444         Code is contributed under MIT/X11 license.
3445
3446 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
3447
3448         * verify.c: Check for recursive valuetype definitions.
3449
3450 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
3451
3452         Use inheritance-aware interface offsets. Inherited types use the same offsets
3453         of their parents. This reduce offset duplication in case more than one type in
3454         the inheritance tree explicitly implements the same interface.
3455
3456         This also removes a source of vtable bubbles found in #532409. An abstract type
3457         isn't required to provide abstract methods to all interfaces it implements, which
3458         resulted in a bubble with the previous scheme as the child would get a non-full
3459         vtable from its parent. We fail all concrete types with vtable bubbles, so this
3460         should be fixed.
3461
3462         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
3463         it's expected to not cause any significant increase beyond that.
3464
3465         * class.c (setup_interface_offsets): Compute super class iface offsets
3466         first to force sharing.
3467
3468         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
3469         dumping only the relevant ones.
3470
3471         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
3472         methods a new slot regardless if they belong to an interface or not. This allows
3473         an inherited type to override the iface method separately from the class one.
3474
3475 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3476
3477         * threadpool.c: make the Sleep() alertable to prevent delays exiting
3478         applications that take less than 2s to execute.
3479         Bug #524984 fixed.
3480
3481 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
3482
3483         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
3484
3485         * object.c (mono_get_runtime_callbacks): New helper function to return
3486         the runtime callbacks.
3487
3488         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
3489         mono_get_runtime_build_info () as the display name.
3490         
3491 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
3492
3493         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
3494         argument, since NEWARR expects a native int. Fixes #481559.
3495
3496 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3497
3498         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
3499         against broken SRE methods.
3500
3501 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3502
3503         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
3504         a NULL variable. Abort early on failure.
3505
3506 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
3507
3508         * class.c (can_access_type): Fail visibility test for non nested
3509         types with nested visibility.
3510
3511 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
3512
3513         * assembly.c (parse_public_key): Avoid allocating (and not 
3514         freeing) the public key array when it's not requested by the 
3515         caller.
3516         * threads.c (mono_thread_manage, mono_thread_create_internal, 
3517         ves_icall_System_Threading_Thread_Thread_internal): Free 
3518         allocated memory on error.
3519
3520 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3521
3522         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
3523
3524 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3525
3526         * class.c (mono_class_setup_fields): Remove duplicated local variable
3527         named gklass.
3528         Rename gklass to gtd to reflect the fact that it points to the generic
3529         type definition.
3530         Remove the duplicated call to mono_class_setup_fields on gtd and move
3531         the error check to the beginning.
3532
3533 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
3534
3535         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
3536         Remove cruft of the previous patch.
3537
3538 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3539
3540         * metadata-verify.c (verify_method_table): Check for abstract + final.
3541         Fixes #534175.
3542
3543 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3544
3545         * verify.c (verify_class_fields): Check for duplicate fields.
3546
3547 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3548
3549         * metadata-verify.c: Verify the typeref table for duplicates.
3550
3551 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
3552
3553         This reverts r140936 and properly handles interfaces with static methods. The
3554         right fix is to ensure vtables without bubles which is an easier to verify
3555         constraint. We should avoid such special cases as of the reverted patch as those
3556         only make the runtime more brittle.
3557
3558         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
3559         static methods on interfaces.
3560
3561         * class.c (setup_interface_offsets): Use the number of virtual methods when
3562         calculating interface offsets instead of the number of methods. This way we
3563         avoid bubles on the layout.
3564
3565 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
3566
3567         * metadata-verify.c (verify_metadata_header): Some very smart
3568         obfuscators like to add extra stream headers. Ignore them.
3569
3570 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
3571
3572         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
3573         methods correctly.
3574
3575 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
3576
3577         * metadata-verify.c: Verify for duplicated types.
3578
3579 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
3580
3581         * metadata-verify.c (verify_typedef_table): Verify for nested types
3582         without an entry on the nested class table.
3583
3584 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
3585
3586         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
3587         <tom_hindle@sil.org>. Add locking around hash table accesses.
3588
3589 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3590
3591         * verify.c (mono_verifier_verify_class): Verify all interface if
3592         really are interfaces. Fixes #534184.
3593
3594 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
3595
3596         * pedump.c: Initialize all types during metadata validation so we report
3597         errors only detected as part of class initialization.
3598
3599 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
3600
3601         * metadata-verify.c (verify_method_table): PInvoke requires method to
3602         be static. Fixes #534189
3603
3604 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
3605
3606         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
3607         being NULL.
3608
3609 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3610
3611         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
3612         for holes or bad methods. Fixes #525314.
3613
3614 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3615
3616         * class.c (setup_interface_offsets): Don't allocate slot
3617         for the same interface multiple times. This creates bubbles
3618         that waster space and make vtable verification harder.
3619
3620         The same interface get a slot multiple times since we need
3621         to get the closure of all implemented interfaces, which means
3622         the same interface is reported multiple times.
3623
3624 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3625
3626         * verify.c (mono_verifier_verify_class): Don't check the fields
3627         of generic instances since the context on which they got expanded
3628         might lead to false positives.
3629
3630         Such thing happens when a generic type is inflated in the context
3631         of a generic method and the inflated type of a field turns into a
3632         generic method argument, which causes the checking code to think
3633         it's an invalid class when it's not.
3634
3635 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
3636
3637         * verify.c (mono_type_is_valid_in_context): Verify if type
3638         is NULL and remove duplicate test.
3639
3640 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3641
3642         * verify.c (mono_verifier_verify_class): Check fields for
3643         invalid generic arguments.
3644
3645 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3646
3647         * class.c (verify_class_overrides): Verify if for static
3648         and non virtual methods.
3649
3650 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3651
3652         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
3653         Check for errors after retrieving the vtable.
3654
3655 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3656
3657         * class.c (mono_class_setup_vtable_general): Verify
3658         if method overrides are valid before processing them.
3659
3660 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
3661
3662         * marshal.c (mono_array_to_lparray): Fix minimal build with
3663         cominterop disabled.
3664
3665         * marshal.c (mono_free_lparray): Same.
3666
3667 2009-08-21  Mark Probst  <mark.probst@gmail.com>
3668
3669         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
3670         the hash function for the ares_htable.
3671
3672 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
3673
3674         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
3675         bit for assembly flags. MS is ok with it but there is no spec anywhere
3676         on its mean
3677
3678 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3679
3680         * class.c (mono_class_create_from_typedef): Emit profiler events
3681         in all cases.
3682
3683 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3684
3685         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
3686         Release memory on failure.
3687
3688 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3689
3690         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
3691         to the internal API.
3692
3693         * metadata.c (get_constraints): Use a single-linked table as we don't
3694         traverse it backward. Fail and return FALSE if only of the contraint types
3695         is not found.
3696
3697         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
3698         to mono_metadata_load_generic_param_constraints except for having a return value.
3699         This has to be done since the later is part of the public API.
3700
3701         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
3702         and fail the type.
3703
3704         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
3705         and fail the method.
3706
3707 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3708
3709         * metadata-verify.c (is_valid_method_header): Add work-around to deal
3710         with MS broken behavior of emmitting EH section sizes without the
3711         header size added.
3712
3713 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3714
3715         * metadata.c (mono_type_create_from_typespec): Don't allocate image
3716         memory until we're sure that we'll need it. This avoids leaking for
3717         broken types or duplicated instantiation.
3718
3719 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3720
3721         * metadata-verify.c (is_valid_method_header): Fix stupid formating
3722         mistake.
3723
3724 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3725
3726         * metadata-verify.c (is_valid_method_header): Fix number of clauses
3727         and expected size calculation.
3728
3729 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3730
3731         * class.c (mono_class_get_field_idx): Add fixme for broken
3732         behavior for types with multiple fields with the same name.
3733         I would rather fix it, but have no idea on how to generate
3734         such artifact for testing.
3735
3736 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3737
3738         * verify.c (verifier_load_field): We should allow references to
3739         fields to be made using the generic type definition. It's up to
3740         the loader system to fail invalid ops.
3741
3742         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
3743         are invalid.
3744
3745 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3746
3747         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
3748
3749         * metadata-internals.h: Fix declaration of 
3750         mono_metadata_interfaces_from_typedef_full.
3751
3752         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
3753         heap_alloc_result parameter that controls if the result should be
3754         g_malloc'd.
3755
3756         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
3757         array be g_malloc'd and properly document this public API function.
3758
3759 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3760
3761         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
3762         remove METHOD_HEADER_TINY_FORMAT1.
3763
3764         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
3765
3766         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
3767
3768         Both spec and MS uses only 2 bits to enumerate the kind of header.
3769         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
3770         is superfluous, only used for tiny headers with odd code lengths.
3771
3772         This change also make sure that mono doesn't wronly interpret bit 2
3773         of fat header flags, which is currently reserved.
3774
3775 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3776
3777         * metadata.c (do_mono_metadata_parse_type): Do error
3778         checking for element types. Don't abort if presented
3779         with a broken type kind.
3780
3781 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3782
3783         * metadata.c (mono_metadata_parse_method_signature_full):
3784         Gracefully fail bad vararg signatures.
3785
3786 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3787
3788         * profiler.c:
3789         * class.c: Fix warnings for uninitialized variables.
3790
3791 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3792
3793         * icall.c: Fix _NSGetEnviron method declaration warning.
3794
3795 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3796
3797         * icall.c:
3798         * reflection.c: Make bitwise checks explicit.
3799
3800 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3801
3802         * debug-helpers.c:
3803         * marshal.c: Fix printf warnings.
3804
3805 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
3806
3807         * reflection.c (encode_cattr_value): Fix a warning.
3808
3809 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3810
3811         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
3812         of array bounds.
3813
3814 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3815
3816         * loader.c (mono_method_signature): Don't assert on broken
3817         signature. Print a more useful error message.
3818
3819 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3820
3821         * loader.c (mono_method_get_marshal_info): Assert if
3822         signature is invalid. Bounds check stores to the
3823         mspecs array;
3824
3825 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3826
3827         * loader.c (field_from_memberref): Fix warning.
3828
3829 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3830
3831         * loader.c (mono_method_get_param_names): Check if signature
3832         is null. Don't store beyond the size of the name array.
3833
3834 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3835
3836         * loader.c (mono_get_method_constrained): Check if signature
3837         is null.
3838
3839 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3840
3841         * loader.c (mono_loader_set_error_bad_image): Improve
3842         error messages.
3843
3844 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3845
3846         * loader.c (mono_get_method_full): Convert an assertion
3847         into a loader error.
3848
3849 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3850
3851         * class-internals.h, class.c: Better naming and documentation.
3852
3853 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
3854
3855         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
3856         obj is NULL.
3857
3858 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3859
3860         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
3861         parsing fails.
3862
3863 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3864
3865         * loader.c (mono_loader_error_prepare_exception): Handle missing field
3866         errors with no class set.
3867
3868         * loader.c (field_from_memberref): If the field signature is of the wrong
3869         type fail with a MissingFieldException instead of a BadImageException as
3870         this is the behavior observed on MS. 
3871
3872 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3873
3874         * loader.c (field_from_memberref): Don't crash if either the field
3875         signature or the typespec class are invalid.
3876
3877 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3878
3879         * verify.c (verifier_load_field): Don't allow field related
3880         ops to reference fields on generic type definition.
3881
3882 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3883
3884         * metadata-verify.c: Add new warning level for errors specified
3885         by ECMA 335 but that MS ignores.
3886
3887         * metadata-verify.c (verify_method_table): Make compiler controled
3888         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
3889         this check is safe because the end result will only be some visibility
3890         exceptions been thrown.
3891
3892 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3893
3894         * verify.c (get_boxable_mono_type): Don't allow the
3895         use of the generic type definition on boxed type positions.
3896
3897         Fixes #531237.
3898
3899 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3900
3901         * threadpool.c: Make sure no cross-domain references remain in
3902         ares_htable or the arrays that are thrown away when resizing.
3903
3904 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3905
3906         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
3907         list of classes for which we have to unregister reflection_info
3908         with the GC and which are not in the namespace cache.
3909
3910         * reflection.c (mono_reflection_initialize_generic_parameter): Add
3911         the class to the list.
3912
3913 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3914
3915         * domain.c (mono_domain_free): Unregister the GC roots in
3916         MonoDomain.
3917
3918 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
3919
3920         * reflection.c (mono_reflection_type_get_handle): Fix typo.
3921
3922 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
3923
3924         * class.c: Add mono_class_get_field_from_name_full which does
3925         the same as mono_class_get_field_from_name but does check field
3926         signature as well.
3927
3928         * class-internals.h: Export mono_class_get_field_from_name_full as
3929         part of the internal API.
3930
3931         * loader.c (field_from_memberref): Search fields by name and signature
3932         as it's valid to have two fields with same name but different types.
3933
3934         Fixes #528055.
3935
3936 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
3937
3938         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
3939
3940         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
3941
3942         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
3943         System.Type.
3944
3945 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
3946
3947         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
3948
3949         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
3950
3951 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3952
3953         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
3954         to sgen-scan-object.h, which can be included and parameterized via
3955         macros.
3956
3957         * Makefile.am: sgen-scan-object.h added.
3958
3959 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3960
3961         * gc.c: #define GC_dont_gc if we're compiling with SGen.
3962
3963 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3964
3965         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
3966         before clearing a domain in the GC.
3967
3968 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3969
3970         * exception.c (mono_exception_from_name_domain): Actually create
3971         the exception in the specified domain.
3972
3973         * appdomain.c (mono_domain_create_appdomain_internal): Create the
3974         OutOfMemoryException a bit later so that the domain is inialized
3975         "enough" that it works.
3976
3977 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3978
3979         * threads.c (thread_cleanup): Clean up the cached_culture_info
3980         array to prevent cross-domain references.
3981
3982 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
3983
3984         * metadata.c: more documentation for MonoType accessors.
3985
3986 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
3987
3988         Fix incorrect size definitions where the tail array isn't a list
3989         of pointers
3990         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
3991         define size.
3992         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
3993         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
3994         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
3995
3996 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3997
3998         * reflection.h:
3999         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
4000
4001 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4002
4003         * metadata.c:
4004         * loader.c:
4005         * metadata-internals.h:
4006         * method-builder.c:
4007         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
4008
4009 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4010
4011         * cominterop.c:
4012         * metadata.c:
4013         * metadata.h:
4014         * loader.c:
4015         * marshal.c:
4016         * reflection.c: #define for sizeof in MonoType and
4017         MonoMethodSignature.
4018
4019 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4020
4021         * domain.c:
4022         * domain-internals.h: add and use #define's instead of sizeof()
4023         for MonoJitInfo and MonoJitInfoTable.
4024
4025 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4026
4027         * object.c:
4028         * class.h: use #define instead of sizeof() for MonoRemoteClass.
4029
4030 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4031
4032         * metadata.c:
4033         * metadata.h:
4034         * object.c:
4035         * class-internals.h:
4036         * generic-sharing.c:
4037         * marshal.c: use a #define instead of sizeof() for a few
4038         structures that use a zero-length array.
4039
4040 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
4041
4042         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
4043         to handle inflated generic methods.
4044
4045         * appdomain.c: Bump corlib version.
4046
4047         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
4048         instances.
4049
4050         * reflection.c (fixup_method): Same
4051
4052         * reflection.c (resolve_object): Same.
4053
4054         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
4055         g_error and a decent message.
4056
4057 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
4058
4059         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
4060         from the object because it could not yet be available globally
4061         (it happens if the profiler tries to create a gchandle on the
4062         MonoThread object of a thread that is still registering itself
4063         with the runtime).
4064
4065 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
4066
4067         * reflection.c (mono_generic_class_get_object): Initialized the
4068         managed type arguments array.
4069
4070         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
4071
4072         * appdomain.c: Bump corlib version.
4073
4074 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
4075
4076         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
4077         #527902.
4078
4079 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
4080
4081         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4082         Avoid a crash if synch_cs is not set.
4083         
4084         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4085         Handle the case when the handle is 0.
4086
4087         * appdomain.c: Bump corlib version.
4088
4089 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
4090
4091         * reflection.c (mono_type_get_object): Fix a warning.
4092
4093 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4094
4095         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4096         descriptor here.  We assume it's already been computed.
4097
4098         * generic-sharing.c (instantiate_other_info): Compute the GC
4099         descriptor for info type MONO_RGCTX_INFO_KLASS.
4100
4101 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4102
4103         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4104         type, so don't use MONO_OBJECT_SETREF to set a field.
4105
4106 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4107
4108         * gc.c: We were missing one case where invoking a finalizer would
4109         not reset the domain.  Also, in the finalizer thread loop, assert
4110         that we're in the root domain.
4111
4112 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4113
4114         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4115         if the type is not an array.
4116
4117 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4118
4119         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4120         method bound to the declaring type of the method. Raise an exception
4121         if the type is not a generic param.
4122
4123 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4124
4125         * class.c (print_unimplemented_interface_method_info): Print the
4126         full type name.
4127
4128         * class.c (mono_class_setup_vtable_general): When dealing with a
4129         generic instance first check if the generic type definition is
4130         not broken.
4131
4132 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4133
4134         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4135
4136         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4137
4138         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4139
4140         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4141
4142         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4143
4144         Code is contributed under MIT/X11 license
4145
4146 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4147
4148         * verify.c: Fix naming of stelem and ldelem.
4149
4150 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4151
4152         * generic-sharing.c: Replace the templates lock with the loader
4153         lock because of very hard to resolve deadlock issues.
4154
4155 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4156
4157         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4158         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4159         directly. Fixes #525338.
4160
4161         * class.c (mono_class_get_vtable_size): New helper function.
4162
4163         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4164         the field belongs to the type. Fixes #525733.
4165
4166 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4167
4168         * sgen-gc.c: When we stop a thread and its stack top is not within
4169         its allocated stack (because it's in an altstack signal handler),
4170         restart it and stop it again, until it is.
4171
4172 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4173
4174         * sgen-gc.c: Take a thread's stack top and registers from the
4175         sigcontext in the suspend signal handler.
4176
4177         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4178         stuff to sgen-archdep.h.
4179
4180         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4181         caller, because have code in sgen-archdep.h to acquire that data.
4182
4183 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4184
4185         * profiler.c, profiler.h, profiler-private.h:
4186         Added support for keeping track of code chunks and buffers.
4187
4188 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4189
4190         * metadata-verify.c: Fix endianness problems on decoding functions.
4191         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4192
4193 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4194
4195         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4196         schema for vectors and one dimension SZARRAY.
4197
4198 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4199
4200         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4201         schema for vectors and one dimension SZARRAY.
4202
4203 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4204
4205         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4206         Interlocked.(Compare)Exchange with object arguments, which invoke
4207         write barriers.
4208
4209 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4210
4211         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4212         passed invalid arguments.   Fixes another crasher in the
4213         Silverlight test suite.
4214
4215         * class.c (mono_class_array_element_size): Return 0 for the size
4216         of the class;  This fixes the crasher exposed by :
4217
4218         typeof (void).MakeArrayType ();
4219
4220         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4221         if there is no method to dereference.    Put all the code that
4222         depends on this inside the if (method) block.
4223
4224         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4225         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4226
4227         With this change, we pass the test.
4228         
4229         * reflection.c (mono_reflection_sighelper_get_signature_local):
4230         Only dereference the assembly if it has been set.    Fixes a
4231         crasher exposed by #525328
4232
4233 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4234
4235         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4236         don't perform the store in mono_gc_wbarrier_generic_nostore().
4237         Remove the second argument (value), which is not needed.
4238
4239 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4240
4241         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4242         the build.
4243
4244         * boehm-gc.c: Ditto.
4245         
4246 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4247
4248         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4249         not perform the store itself.  Introduce
4250         mono_gc_wbarrier_generic_nostore(), which is the same as
4251         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4252         store.
4253
4254 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4255
4256         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4257         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4258         we still need the memcpy().
4259
4260 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4261
4262         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4263         so that big arrays are handled correctly.  Always use
4264         safe_object_get_size() to calculate array object sizes, which
4265         takes bounds into account.
4266
4267 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4268
4269         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4270         GC descriptor is computed before we use it.
4271
4272 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4273
4274         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4275         write barrier if necessary.
4276
4277 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4278
4279         * icall-def.h, icall.c, thread-types.h: New separate icall for
4280         VolatileWrite(object&,object) that uses a write barrier.
4281
4282         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4283         barriers in icalls which write to "ref" or "out" arguments.
4284
4285 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4286
4287         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4288         handler in a separate icall, to reduce the size of the wrappers.
4289
4290 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4291
4292         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4293
4294 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4295
4296         * metadata-verify.c (parse_field): Allow byref field.
4297
4298         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4299
4300         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4301
4302 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4303
4304         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4305         Fixes #522784.
4306
4307 2009-07-20  Robert Jordan  <robertj@gmx.net>
4308
4309         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4310         Fix invalid IL in valuetype handling (STOBJ must push the
4311         corresponding class). Fixes bug #523149.
4312
4313         Code is contributed under MIT/X11 license.
4314
4315 2009-07-20  Geoff Norton  <gnorton@novell.com>
4316
4317         * gc.c: Use proper semaphores where available on posix and darwin.
4318
4319 2009-07-19  Geoff Norton  <gnorton@novell.com>
4320
4321         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4322
4323 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4324
4325         * refletion.c (is_sre_usertype): Change name to is_usertype and
4326         invert it's result so it returns true if the type is an user type
4327         and not the opposite.
4328
4329         * reflection.c (is_*_type): Change all of those to use new macro
4330         check_corlib_type_cached that cached the type lookup so we don't
4331         need to do string comparisons all the type. Changed the signature
4332         to take a MonoClass instead.
4333
4334         * reflection.c: Change mono_image_create_token and resolve_object
4335         to use is_sre_* functions.
4336
4337 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4338
4339         * sgen-gc.c: Check for writes to the stack in the managed
4340         wbarrier as well.
4341
4342 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4343
4344         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4345         but put them on a list which is processed with the other thread's
4346         remsets.
4347
4348 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4349
4350         * sgen-gc.c: Fix and enable the internal allocator instead of
4351         using malloc/free (which causes deadlocks).
4352
4353 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4354
4355         * refletion.c: Fix builds with SRE disabled by adding a minimal
4356         implementation of mono_reflection_type_get_handle.
4357
4358 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4359
4360         * refletion.c: Make mono_reflection_type_get_handle non static.
4361
4362         * object-internals.h: Export mono_reflection_type_get_handle.
4363
4364         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
4365         unmanaged handle using mono_reflection_type_get_handle.
4366
4367 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4368
4369         * refletion.c: Replace all reads of MonoReflectionType::type with
4370         calls to mono_reflection_type_get_handle. Only the functions that
4371         deal with constructing TypeBuilder::type have not been changed
4372         because they have to deal with NULL values.
4373
4374         This is a first step into supporting reflection types that don't
4375         map directly into their unmanaged counterpart.
4376
4377 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4378
4379         * metadata-verify.c (parse_locals_signature): Don't complain
4380         on signature with zero locals since MS generates it and doesn't
4381         bother with.
4382
4383 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4384
4385         * reflection.c (mono_image_get_array_token): Resolve return
4386         type using mono_reflection_type_get_handle.
4387
4388         * reflection.c (mono_image_get_array_token): Resolve array method
4389         parent type using mono_reflection_type_get_handle.
4390
4391 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
4392
4393         * reflection.c (mono_image_basic_init): Applied patch from
4394         <Dax@daxxfiles.net>. Set the public key token from the assembly
4395         builder. Fixes #518909.
4396
4397         * appdomain.c: Bump corlib version.
4398
4399 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
4400
4401         * class.c (mono_class_needs_cctor_run): Make this return false if
4402         the class has no cctor.
4403
4404 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4405
4406         * sgen-gc.c: When the minor GC needs to allocate a new section,
4407         invoke the major GC afterwards.
4408
4409 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
4410
4411         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
4412           Applying the window_style field to the SHELLEXECUTEINFO struct.
4413
4414         Code is contributed under MIT/X11 license.
4415
4416 2009-07-13  Mark Probst  <mark.probst@gmail.com>
4417
4418         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
4419         locking earlier.  Fix it in the managed allocator by making sure
4420         that no thread is stopped there before the GC runs.  If we do stop
4421         a thread there, we restart it and let it run a but, until it stops
4422         somewhere else.
4423
4424         * gc-internal.h, gc.c: Function for getting the IP from a signal
4425         context via a function registered by mini.
4426
4427 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
4428
4429         * object-internals.h (MonoIntPtr): New structure describing a boxed
4430         IntPtr.
4431
4432         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
4433         returns. Fixes #519953.
4434
4435         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
4436
4437 2009-07-09  Mark Probst  <mark.probst@gmail.com>
4438
4439         * class-internals.h, generic-sharing.c: New RGCTX info type for
4440         getting a remoting invoke with check wrapper.
4441
4442 2009-07-07  Geoff Norton  <gnorton@novell.com>
4443
4444         * icall-def.h: Fix the enable-minimal build.
4445
4446 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4447
4448         * object-internals.h: Add MonoReflectionDerivedType.
4449
4450         * reflection.c: Implement support for PointerType.
4451         Fixed tons of warnings.
4452
4453 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4454
4455         * object-internals.h: Add MonoReflectionByRefType.
4456
4457         * reflection.c: Implement support for ByRefType.
4458
4459 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4460
4461         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
4462
4463         * object-internals.h: Add MonoReflectionArrayType and
4464         mono_reflection_create_unmanaged_type.
4465
4466         * reflection.c: Implement support for ArrayType.
4467
4468 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
4469
4470         * metadata-verify.c (is_valid_method_header): Parse EH block
4471         flags correctly.
4472
4473 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4474
4475         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
4476         processing the disappearing links, and process disappearing links
4477         in a loop until no new objects are copied.
4478
4479 2009-07-03  Mark Probst  <mark.probst@gmail.com>
4480
4481         * object.c (handle_enum): Invoke the write barrier when copying
4482         value type instances.
4483
4484         * sgen-gc.c: Register remsets for unmanaged write barriers only
4485         when the address written to is actually on the heap.  This makes
4486         set_value() in object.c work without requiring that the result be
4487         on the heap.
4488
4489 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
4490
4491         The runtime wrappers are all bound to a given type that must
4492         exist in the same image. For regular images we use the <Module>
4493         type, which is required to exist for all images.
4494
4495         The <Module> type can't be used for dynamic images because it
4496         might not exist at the time the wrapper is required, so we create
4497         a synthetic type to use instead.
4498
4499         The current code works because of the 2 stage setup of MonoClass,
4500         but once this is gone it will no longer work.
4501
4502         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
4503
4504         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
4505
4506         * object-internals.h: Export mono_image_set_wrappers_type icall
4507         as part of the internal API.
4508
4509         * marshal.c (get_wrapper_target_class): If the image is dynamic,
4510         use MonoDynamicImage::wrappers_type instead of the <Module> type.
4511
4512         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
4513         image wrappers_type to the provided value.
4514
4515 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
4516
4517         * appdomain.c (deregister_reflection_info_roots): No need
4518         to use the image lock here.
4519
4520 2009-07-02  Mark Probst  <mark.probst@gmail.com>
4521
4522         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
4523
4524 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
4525
4526         * threads.c: Store the thread start argument in a hash table instead of
4527         registering it as a root, as libgc doesn't support unregistering roots
4528         under windows, leading to 'too many root sets' errors when many threads
4529         are created.
4530
4531         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
4532         shutdown, they can still be referenced by the other dying objects.
4533         Fixes #514506.
4534
4535 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4536
4537         * socket-io.c: DontLinger does not allow LingerOptions.
4538
4539 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4540
4541         * metadata-verify.c: The spec doesn't mention that it's possible to add
4542         custom attribute to a generic parameter. Fixed.
4543
4544 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4545
4546         * class.c (inflate_generic_type): Don't crash while trying to output a message
4547         on why we're aborting.
4548
4549 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4550
4551         * socket-io.c: DontLinger can take an int or a boolean too.
4552
4553 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
4554
4555         * gc.c: check for a null argument to SuppressFinalize () and
4556         ReRegisterForFinalize ().
4557
4558 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
4559
4560         * loader.c (method_from_methodspec): Call into the verifier to check
4561         the signature.
4562
4563         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
4564
4565         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
4566         part of the internal API.
4567
4568 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4569
4570         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
4571         the signature.
4572
4573         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
4574
4575         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
4576         part of the internal API.
4577
4578 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4579
4580         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
4581         the signature.
4582
4583         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
4584         blob verification.
4585
4586         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4587         part of the internal API.
4588
4589 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4590
4591         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
4592         when doing basic verification. 
4593
4594         This check must be done since the runtime peeks into signatures in much
4595         more places than it does decoding so it makes sense to ensure that all
4596         pointers to blob objects are well formed.
4597
4598 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4599
4600         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
4601         Use proper overflow dectection. Fix usage of it.
4602
4603 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
4604
4605         * loader.c (field_from_memberref): Call into the verifier to check
4606         the signature.
4607
4608         * loader.c (mono_method_get_signature_full): Same.
4609
4610         * loader.c (method_from_memberref): Same.
4611
4612         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
4613
4614         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
4615         part of the internal API.
4616
4617 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4618
4619         * threadpool.c (mono_thread_pool_add): If the domain is unloading
4620         or unloaded, still return an AsyncResult, but don't add it to the
4621         threadpool.
4622
4623 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
4624
4625         * threads.c: fix missing colon when DEBUG is defined.
4626
4627 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4628
4629         * threadpool.c: Don't add new calls to a threadpool if the domain
4630         of the call is unloading or unloaded.  When dequeuing a job, null
4631         the reference in the queue.
4632
4633 2009-06-25  Mark Probst  <mark.probst@gmail.com>
4634
4635         * sgen-gc.c (null_link_in_range): Add the dislink for the old
4636         generation if an object was moved.
4637
4638 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
4639
4640         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
4641           parameters of type SAFEARRAY[VARIANT].
4642
4643         * reflection.c (encode_marshal_blob): Properly generate element type
4644           (SafeArraySubType marshal attribute option).
4645
4646         Code is contributed under MIT/X11 license.
4647
4648 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
4649
4650         * reflection.c: in mono_method_clear_object () really ensure all the
4651         objects are removed.
4652
4653 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4654
4655         * loader.c (mono_method_signature): Call into the verifier to check
4656         the method signature.
4657
4658         * metadata-verify.c (verify_method_table): Move signature verification
4659         to verify_method_table_full.
4660
4661         * metadata-verify.c: Add mono_verifier_verify_method_signature.
4662
4663         * verify-internals.h: Export mono_verifier_verify_method_signature as
4664         part of the internal API.
4665
4666 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4667
4668         * loader.c (mono_method_get_header): Call into the verifier to
4669         check the method header.
4670
4671         * metadata-verify.c: Add mono_verifier_verify_method_header.
4672
4673         * verify-internals.h: Export mono_verifier_verify_method_header as
4674         part of the internal API.
4675
4676 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4677
4678         * class.c (mono_class_find_enum_basetype): Call into the verifier to
4679         check the field signature. Replace an assert with an explicit check.
4680
4681         * class.c (mono_class_setup_fields): Call into the verifier to check
4682         the field signature.
4683
4684         * metadata-verify.c: Add mono_verifier_verify_field_signature.
4685
4686         * verify-internals.h: Export mono_verifier_verify_field_signature as
4687         part of the internal API.
4688
4689 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4690
4691         * class.c (mono_class_find_enum_basetype): Simplify this function
4692         by moving code outside of the loop and not decoding static fields.
4693
4694 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
4695
4696         * metadata-verify.c (verify_typedef_table): Check the extends
4697         token here. Move to here a flags check from verify_typedef_table_full.
4698
4699 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
4700
4701         * metadata-verify.c (is_valid_method_header): Fix a warning.
4702
4703         * metadata-internals.h (MonoImage): Remove the unused 
4704         static_rgctx_invoke_wrapper_cache.
4705
4706         * image.c marshal.c: Ditto.
4707
4708 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4709
4710         * image.c (do_mono_image_load): Enable table data verification.
4711
4712 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4713
4714         * metadata-verify.c (is_valid_constant): Fix nullref check.
4715
4716 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4717
4718         * metadata-verify.c (is_valid_constant): Fix string bounds check.
4719
4720 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4721
4722         * sgen-gc.c: Managed allocation with pthreads TLS.
4723
4724         * threads.c, threads-types.h: Functions for the JIT to tell the
4725         runtime whether it supports the MONO_TLS opcode.
4726
4727 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4728
4729         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
4730         without methods.
4731
4732 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4733
4734         * metadata-verify.c (is_valid_constant): Fix the string length check.
4735         Use safe overflow checking. Add decent error messages.
4736
4737 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4738
4739         * metadata-verify.c: Move remaininh blob checks to the offline
4740         verification path.
4741
4742 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4743
4744         * metadata-verify.c: Move more blob checks to the offline verification
4745         path.
4746
4747 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
4748
4749         * object-internals.h : Adding interrupt_on_stop field.
4750
4751         * threads.c (mono_thread_request_interruption) : On Windows exit the
4752           thread if interrupt_on_stop is set.
4753
4754         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
4755          Removing old interrupt logic and setting the interrupt_on_stop for the
4756          thread when calling accept.
4757
4758         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
4759          setting the interrupt_on_stop for the thread when calling accept.
4760
4761         Contributed under MIT/X11 license.
4762
4763 2009-06-20  Martin Baulig  <martin@ximian.com>
4764
4765         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
4766
4767 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
4768
4769         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
4770         running in no-exec mode.
4771
4772 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4773
4774         * metadata-verify.c (verify_method_table): Move header
4775         checking to verify_method_table_full.
4776
4777         * metata-verify.c (mono_verifier_verify_full_table_data):
4778         Call verify_method_table_full.
4779
4780 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4781
4782         * metadata-verify.c (verify_field_table): Move signature
4783         checking to verify_field_table_full.
4784
4785         * metata-verify.c (mono_verifier_verify_full_table_data):
4786         Call verify_field_table_full.
4787
4788 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4789
4790         * metadata-verify.c (verify_typedef_table): Move remaining
4791         stuff to verify_typedef_table_full.
4792
4793 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4794
4795         * metadata-verify.c: Kill is_corlib from VerifyContext.
4796         It is only used by the offline mode.
4797         So we better remove it from the runtime path.
4798
4799 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4800
4801         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
4802         function that perform the offline metadata verification steps.
4803
4804         * metadata-verify.c (verify_typedef_table): Move some checks to
4805         verify_typedef_table_full and make it been called by new function
4806         mono_verifier_verify_full_table_data.
4807
4808         * pedump.c: Call mono_verifier_verify_full_table_data.
4809
4810         * verify-internals.h: Export mono_verifier_verify_full_table_data as
4811         part of the internal API.
4812
4813 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4814
4815         * metadata-verify.c (typedef_is_system_object): Fix System.Object
4816         check.
4817
4818         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
4819         flags bits. SupportLastError was confused as bit 7 instead of 6.
4820
4821         * metadata-verify.c (verify_implmap_table): Fix import scope verification
4822         to check against the module ref table instead of module.
4823
4824         * metadata-verify.c (verify_implmap_table): Fix corlib check.
4825
4826         * pedump.c: Call mono_image_load_names.
4827
4828 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4829
4830         * image.c: Extract mono_image_load_names from do_mono_image_load.
4831
4832         * metadata-internals.h: Export mono_image_load_names as part of
4833         the internal API.
4834         
4835 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
4836
4837         * metadata.c (mono_metadata_cleanup): Free the generic method cache
4838         first, as it could reference data in the other caches.
4839
4840 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
4841
4842         * metadata-verify.c: Finished with method header verification.
4843
4844 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
4845
4846         * metadata-verify.c: Added more header verification code.
4847         Now only EH clauses are missing.
4848
4849 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
4850
4851         * marshal.c (get_runtime_invoke_type): Don't share primitive types
4852         for return values.
4853
4854 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
4855
4856         * metadata-verify.c: Initial method header verification.
4857
4858 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
4859
4860         * metadata-verify.c (verify_import_table): The IAT contents
4861         might end been patched by the windows DL when running with
4862         coree enabled.
4863
4864 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
4865
4866         * class.c (mono_class_from_typeref): If the enclosing type is not
4867         found return null instead of crashing. Fixes #508487.
4868
4869 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
4870
4871         * normalization-tables.h : updated to the latest unicode charcter
4872           data.
4873         * appdomain.c : bump corlib version.
4874
4875 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
4876
4877         * class.c (mono_class_from_name): Fix support for assembly references
4878         in the EXPORTEDTYPE table. Fixes #511704.
4879
4880 2009-06-13  Geoff Norton  <gnorton@novell.com>
4881
4882         * domain.c: Ensure that mono_domain_assembly_open actually opens the
4883         assembly in the target domain.
4884
4885 2009-06-12  Robert Jordan  <robertj@gmx.net>
4886
4887         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
4888         because "this" of the managed signature has become an
4889         ordinary parameter in the unmanaged signature.
4890
4891 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
4892
4893         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
4894         field for owner-less generic containers.
4895
4896         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
4897         image field of the owner-less generic containers created here.
4898
4899         * metadata.c (mono_metadata_load_generic_params): Ditto, the
4900         contain is ownerless until the caller sets its owner.
4901
4902         * metadata.c (type_in_image): Handle owner-less generic containers
4903         correctly.
4904         
4905 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4906
4907         * image.c (mono_image_close): Support debug_assembly_unload for
4908         dynamic images too.
4909
4910 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
4911
4912         * class.c: Fix some typos in comments.
4913
4914 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4915
4916         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
4917
4918         * threads.c (mono_thread_execute_interruption): Avoid creating the
4919         abort exception object while holding the synch_cs lock.
4920
4921 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4922
4923         * metadata-verify.c: Verify basic cattr content.
4924
4925 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
4926
4927         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
4928         nested types.
4929         
4930         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
4931         support for nested types. Fixes #511704.
4932
4933 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4934
4935         * metadata-verify.c: Verify methodspec signatures.
4936
4937 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4938
4939         * metadata-verify.c: Verify typespec signatures.
4940
4941 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
4942
4943         * metadata.c (free_inflated_method): Call 
4944         mono_marshal_free_inflated_wrappers (), which was missed earlier.
4945
4946 2009-06-08  Miguel de Icaza  <miguel@novell.com>
4947
4948         * mono-config.c: Small change to report the PPC64/ILP32 model.
4949
4950 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4951
4952         * metadata-verify.c (parse_type): Check szarray.
4953
4954 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4955
4956         * metadata-verify.c (parse_type): Check fnptr.
4957
4958 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4959
4960         * metadata-verify.c (parse_type): Check generic instances.
4961
4962 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4963
4964         * metadata-verify.c (parse_type): Check array shape.
4965
4966 2009-06-05  Robert Jordan  <robertj@gmx.net>
4967
4968         * class.c (mono_class_create_from_typedef): Check only for
4969         mscorlib's System.Array.
4970
4971 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
4972
4973         * metadata-verify.c (parse_type): Check pointer, class/valuetype
4974         and generic params. 
4975
4976         * metadata-verify.c (parse_field): Check the signature.
4977
4978 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
4979
4980         * metadata-verify.c: Implement locals signature check.
4981
4982 2009-06-04  Marek Safar  <marek.safar@gmail.com>
4983
4984         * domain.c: Add .NET 4.0 Beta 1 version.
4985
4986 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
4987
4988         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
4989           For QueryInterface on CCWs consider the base class
4990           interfaces as well.
4991
4992         Code is contributed under MIT/X11 license.
4993
4994 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4995
4996         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
4997
4998         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
4999         used.
5000
5001         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5002         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
5003
5004         * generic-sharing.c (inflate_other_data): Ditto.
5005         
5006 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5007
5008         * metadata-verify.c: Implement property signature check.
5009
5010 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5011
5012         * sgen-gc.h: Register saving support for PPC.
5013
5014 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5015
5016         * sgen-gc.c: Fixed a pthread TLS screwup.
5017
5018 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5019
5020         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
5021         supported.
5022
5023 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5024
5025         * sgen-gc.c: Disable TLA and managed allocation if the __thread
5026         keyword is not supported.
5027
5028 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5029
5030         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
5031         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
5032         the inflated method is freed. Fixes #508389.
5033
5034         The code is contributed under the MIT/X11 license.
5035         
5036 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
5037
5038         * marshal.c (get_wrapper_target_class): New helper function.
5039         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
5040         the <Module> class of the image. Fixes #509049.
5041
5042 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5043
5044         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
5045         Check if the thread was interrupted and proccess it straight away.
5046         Makes abortion much more responsive.
5047
5048 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5049
5050         * threads.c (mono_thread_execute_interruption): Use atomic cas with
5051         MonoThread::interruption_requested to match it's counterpart.
5052
5053         Fixes a hang in abort-stress-1 on a 2 core x86.
5054
5055         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
5056         Fix warning.
5057
5058 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5059
5060         Change MonoImage::name_cache to be protected by the image lock
5061         instead of the loader lock.
5062
5063         * appdomain.c (deregister_reflection_info_roots): Protect access
5064         to name_cache.
5065
5066         * class.c (mono_image_init_name_cache): Change from the loader lock
5067         to the image lock. Check if the cache wasn't already created.
5068
5069         * class.c: Change from the loader to the image lock.
5070
5071         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
5072         the code to hold the image lock while iterating over name_cache and
5073         not go into mono_array_new holding it.
5074
5075         * metadata-internals.h: Add a comment about this change.
5076
5077 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5078
5079         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5080         Under the 2.0 profile raise the loader error.
5081
5082         Fixes #508532.
5083
5084 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5085
5086         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5087         of ldind opcode for generic instances so we don't fail for direct wrappers.
5088         This only affect direct calls.
5089
5090 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5091
5092         * reflection.c (create_dynamic_mono_image): Fix warnings.
5093
5094         * generic-sharing.c (other_info_equal): Ditto.
5095         
5096 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5097
5098         * metadata-verify.c: Implement field signature check.
5099
5100 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5101
5102         * metadata-verify.c: Implement standalone signature check.
5103
5104 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5105
5106         * metadata-verify.c: Implement methodref signature check.
5107
5108 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5109
5110         * object-internals.h (MonoRuntimeCallbacks): New structure containing
5111         callbacks supplied by the runtime.
5112
5113         * object.c (mono_install_callbacks): New internal function to install
5114         the callbacks.
5115
5116         * object.c (mono_create_ftnptr): Move the implementation of this to
5117         mini/.
5118
5119         * object.c (mono_get_addr_from_ftnptr): Ditto.  
5120
5121 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5122
5123         * metadata-verify.c (parse_return_type): Proper byref check.
5124         * metadata-verify.c (is_valid_method_signature): Check for zero arity
5125         generic signatures and method params.
5126
5127 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5128
5129         * metadata-verify.c (decode_signature_header): Fix bounds check.
5130
5131         * metadata-verify.c (parse_custom_mods): Check custom mods.
5132
5133         * metadata-verify.c (parse_type): Do initial basic verification
5134         of valid values.
5135         
5136         * metadata-verify.c (is_valid_method_signature): Parse the generic
5137         param count.
5138
5139 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5140
5141         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5142         discarded based on their most specific definition so we set the method_slots
5143         array before checking if the method is acceptable or not.
5144
5145         Fixes #506757.
5146
5147 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5148
5149         * icall.c: Free the old array when resizing a mono_ptr_array.
5150
5151 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5152
5153         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5154         for the hashes whose keys are managed objects.
5155
5156 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5157
5158         * object-internals.h, threads.c: Set the execution context on
5159         thread start here, not in corlib.
5160
5161         * appdomain.c: Bump corlib version.
5162
5163 2009-05-27  Martin Baulig  <martin@ximian.com>
5164
5165         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5166         if `_mono_debug_using_mono_debugger' is set to make things work
5167         properly when embedding Mono.
5168
5169 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5170
5171         * class.c (mono_class_setup_fields): Don't mark simd types as having
5172         16 bytes alignment as the whole runtime doesn't support.
5173
5174 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5175
5176         * metadata-verify.c (safe_read): Use endian safe read macros.
5177
5178 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5179
5180         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5181         it is read-only when using full aot.
5182
5183 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5184
5185         * metadata-verify.c (is_valid_method_signature): Verify parts
5186         of the return type. Provide an error message in case of failure.
5187
5188 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5189
5190         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5191
5192 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5193
5194         * metadata-verify.c: Include the size prefix in the bounds check.
5195
5196 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5197
5198         * icall.c: Remove warnings.
5199
5200         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5201         prevent auto-detection based on GCC defines.
5202
5203         Add PS3
5204
5205         * metadata-verify.c: Do not include signal.h
5206
5207         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5208         messages.  Not sure why the g_assert_not_reached is not enough to
5209         quiet the compiler.
5210         
5211
5212         * appdomain.c: Remove code that is not used when
5213         DISABLE_SHADOW_COPY is set.
5214
5215         * image.c: use g_getenv
5216
5217 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5218
5219         * reflection.c: Remove code that it not used with
5220         DISABLE_REFLECTION_EMIT is defined.
5221
5222 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5223
5224         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5225         invoke wrappers.
5226
5227 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5228
5229         * socket-io.c
5230         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5231         the ifdef here and instead put that on io-layer
5232
5233 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5234
5235         * metadata-verify.c: Verify the generic param constraint table.
5236
5237 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5238
5239         * metadata-verify.c (verify_generic_param_table): Fix
5240         thinko on the valid flags bits for generic params.
5241
5242 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5243
5244         * metadata-verify.c: Verify the methodspec table.
5245
5246 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5247
5248         * metadata-verify.c: Verify the generic param table.
5249
5250 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5251
5252         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5253
5254 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5255
5256         * sgen-gc.c: Use generation enum more consistently and use the
5257         correct generation in mono_gc_register_for_finalization().
5258
5259 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5260
5261         * metadata-verify.c: Verify the nested class table.
5262
5263 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5264
5265         * metadata-verify.c: Verify the manifest resource table.
5266
5267 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5268
5269         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5270
5271 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5272
5273         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5274         wrappers, this is now done in the JIT.
5275         
5276         * class.c (mono_set_generic_sharing_supported): New internal function.
5277         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5278
5279 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5280
5281         * metadata-verify.c: Verify the exported type table.
5282
5283 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5284
5285         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5286
5287 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5288
5289         * metadata-verify.c: Verify the file table.
5290
5291 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5292
5293         * metadata-verify.c (verify_assembly_table): Fix an error message.
5294
5295         * metadata-verify.c: Verify the assemblyref table.
5296
5297 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5298
5299         * metadata-verify.c (verify_assembly_table): Fix the valid
5300         bits mask for flags.
5301
5302 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5303
5304         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5305         generic methods as well.
5306
5307 2009-05-15  Geoff Norton  <gnorton@novell.com>
5308
5309         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5310         use-case and is significantly more performant than the wapi layer.
5311
5312 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5313
5314         * metadata-verify.c: Verify the assembly table.
5315
5316 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5317
5318         * metadata-verify.c: Fix rows limit check.
5319
5320 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5321
5322         * metadata-verify.c: Verify the fieldrva table.
5323
5324 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5325
5326         * sgen.c: Speed up weak links and finalizers by grouping them by
5327         generation.
5328
5329 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5330
5331         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5332         free the old GCHandle (only applies to SGen).
5333
5334 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5335
5336         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5337         mono_metadata_load_generic_params () for non-generic methods.
5338
5339 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5340
5341         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5342         New function for returning a monitor's weak link if it has one.
5343
5344         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5345         one) when clearing a domain.  These can still be around because
5346         the object might not have been collected.
5347
5348 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5349
5350         * gc.c: Fix a warning.
5351
5352 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
5353
5354         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5355         prevous wait that resulted in a deadlock on Windows when initializing
5356         the runtime form DllMain. Also results in improved startup time.
5357         (finalizer_thread): Get rid of thread_started_event.
5358         * threads.c, threads-types.h (mono_thread_create_internal): Return the
5359         resulting MonoThread.
5360
5361         Contributed under MIT/X11 license.
5362
5363 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
5364
5365         * metadata-verify.c: Verify the implmap table.
5366         Don't require that #US and #Strings be present.
5367
5368 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
5369
5370         * security-core-clr.c: Delegate checks are done at creation time,
5371         not a invocation time. Fix exception for Telerik Silverlight demo
5372
5373 2009-05-11  Mark Probst  <mark.probst@gmail.com>
5374
5375         * sgen-gc.c (need_remove_object_for_domain): Remove the special
5376         case for the Thread class.
5377
5378         * threads.c: Do clean-up of abort exception/state in
5379         thread_cleanup() instead of Thread.free_internal().  Also clean up
5380         current_appcontext.  The reason we have to do that is because
5381         those references might point into another domain and if that
5382         domain is unloaded before the thread is finalized, they point to
5383         invalid data.
5384
5385 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
5386
5387         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
5388         stub signatures.
5389         
5390         Contributed unter MIT/X11 license.
5391
5392 2009-05-09  Miguel de Icaza  <miguel@novell.com>
5393
5394         * verify.c, metadata-verifier.c: Add support for disabling the
5395         verifier in some builds.
5396
5397         [ Sorry, my previous commit accidentally commited some work in
5398         progress ]
5399
5400 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
5401
5402         * class.c (mono_class_setup_fields): Set class->field.first for
5403         generic instances.
5404
5405 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5406
5407         * metadata-verify.c: Verify the typespec table.
5408
5409 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
5410
5411         * metadata-verify.c: Verify the module table.
5412
5413 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5414
5415         * metadata-verify.c: Verify the methodimpl table.
5416
5417 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
5418
5419         * metadata-verify.c: Verify the property table.
5420
5421 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
5422
5423         * debug-helpers.c (mono_method_desc_match): Add support for generic
5424         glob patterns.
5425
5426 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
5427
5428         * metadata-verify.c: Verify the propertymap table.
5429
5430 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
5431
5432         * metadata-verify.c: Verify the event table.
5433
5434         * metadata-verify.c (search_sorted_table): Fix offset
5435         calculation.
5436
5437 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
5438
5439         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
5440
5441 2009-05-01  Mark Probst  <mark.probst@gmail.com>
5442
5443         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
5444         because mono_delegate_free_ftnptr() needs it.
5445
5446 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5447
5448         * metadata-verify.c: Verify the eventmap table.
5449
5450 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5451
5452         * metadata-verify.c: Verify the standalonesig table.
5453
5454 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5455
5456         * metadata-verify.c: Verify the field layout table.
5457
5458 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5459
5460         * class.c (mono_type_get_name_recurse): Don't crash
5461         for ownerless generic params.
5462
5463         * debug-helpers.c (mono_type_get_desc): Correct the format
5464         for ownerless generic params.
5465
5466 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5467
5468         * metadata-verify.c: Verify the class layout table.
5469
5470 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
5471
5472         * metadata-verify.c: Verify the decl security table.
5473
5474 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5475
5476         * domain.c (mono_domain_set_internal_with_options): Don't do
5477         anything if the old domain is the same as the old one.  Fixes
5478         #499326.
5479
5480 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5481
5482         * appdomain.c: Deregister the reflection_info roots when unloading
5483         a domain.
5484
5485         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
5486         memory allocated by a domain and frees its disappearing links.
5487
5488         * boehm-gc.c, null-gc.c: Empty implementation of
5489         mono_gc_clear_domain().
5490
5491 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5492
5493         * appdomain.c (clear_cached_vtable): Free the static fields memory
5494         block.
5495
5496 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5497
5498         * gc.c: Set the correct domain when invoking finalizers.
5499
5500         * appdomain.c: Set the correct domain when creating threads.
5501
5502 2009-04-30  Mark Probst  <mark.probst@gmail.com>
5503
5504         * sgen-gc.c: Fix skip size for vectors.
5505
5506 2009-05-03  Martin Baulig  <martin@ximian.com>
5507
5508         * mono-debug-debugger.c
5509         (mono_debugger_check_breakpoints): Check class init handlers even
5510         if we don't have any method load handers.
5511
5512 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
5513
5514         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
5515         returning refonly assemblies if refonly is FALSE. Fixes #499013.
5516
5517 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5518
5519         * metadata-verify.c: Verify the field marshal table.
5520
5521 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
5522
5523         * metadata-verify.c: Verify the custom attribute table.
5524
5525 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5526
5527         * metadata-verify.c: Verify the constant table.
5528
5529 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5530
5531         * metadata-verify.c: Verify the memberef table.
5532
5533 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5534
5535         * metadata-verify.c (get_coded_index_token): Remove
5536         dead argument.
5537
5538 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5539
5540         * metadata-verify.c: Verify the interfaceimpl table.
5541
5542 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
5543
5544         * verify.c: Improve error message.
5545
5546         * debug-helpers.c (mono_type_get_desc): Harden the code that
5547         deals with VAR and MVAR.
5548
5549 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
5550
5551         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
5552         part of #498692.
5553
5554 2009-04-23 Tom Hindle <tom_hindle@sil.org>
5555
5556         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
5557         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
5558
5559 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
5560
5561         * security-core-clr.c: Avoid redundant checks for platform code, 
5562         e.g. check for method and for class (very common) and check
5563         for class and outer class (less common)...
5564
5565 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
5566
5567         * reflection.c: Avoid returning random cattrs for synthetic methods.
5568         Fixes #498545.
5569
5570 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5571
5572         * assembly.c: assemblies in the GAC should never be shadow-copied.
5573
5574 2009-04-26  Mark Probst  <mark.probst@gmail.com>
5575
5576         * domain.c, domain-internals.h: Disable
5577         track_resurrection_{objects,handles}_hash in MonoDomain if using
5578         SGen.
5579
5580 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5581
5582         * metadata-verify.c: Verify the param table.
5583
5584 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5585
5586         * metadata-verify.c (verify_typedef_table): Range check FieldList and
5587         MethodList.
5588
5589         * metadata-verify.c (verify_method_table): Proper check the ParamList
5590         field.
5591
5592 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5593
5594         * metadata-verify.c (verify_method_table): Check for runtime
5595         implemented functions such as delegate .ctors. Remove spurious
5596         printf.
5597         
5598 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
5599
5600         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
5601
5602 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5603
5604         Don't allocate MonoGenericInfo for ownerless generic params.
5605         * class-internals.h (MonoGenericParam::info): Move field to ...
5606         (MonoGenericParamFull): ... this.  New struct.
5607         (MonoGenericContainer::type_params): Change type to
5608         MonoGenericParamFull.
5609         (MonoGenericParam, MonoGenericContainer): Update accessors.
5610         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
5611         'info' field for ownerless generic param.
5612         (mono_metadata_load_generic_params): Update to changes.
5613         * reflection.c (mono_reflection_create_generic_class): Likewise.
5614         (reflection_methodbuilder_to_mono_method): Likewise.
5615         (mono_reflection_initialize_generic_parameter): Likewise.
5616
5617 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5618
5619         Don't use MonoGenericParamInfo for ownerless generic params.
5620         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
5621         use ParamInfo class at all.
5622         (mono_class_from_generic_parameter): Use them.
5623         (make_generic_param_class): Fix a couple of instances where 'pinfo
5624         == NULL' wasn't handle.
5625
5626 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5627
5628         * class.c (make_generic_param_class): Carve out of ...
5629         (mono_class_from_generic_parameter): ... here.
5630
5631 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
5632
5633         Simplify mono_class_from_generic_parameter
5634         * class-internals.h (MonoGenericParamInfo::token): New field.
5635         * metadata.c (mono_metadata_load_generic_params): Initialize it
5636         from metadata.
5637         * class.c (mono_class_from_generic_parameter): Use it instead of
5638         searching through metadata.
5639
5640 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5641
5642         * metadata-verify.c: Add verification of the method table.
5643
5644 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5645
5646         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
5647         Delegate::Invoke optimization.
5648
5649 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5650
5651         * appdomain.c (mono_domain_create_appdomain_internal): Free the
5652         string returned by get_shadow_assembly_location_base.
5653
5654         * appdomain.c (get_shadow_assembly_location_base): Add a comment
5655         about caller's ownership.
5656
5657 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
5658
5659         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
5660         reflection memory on domain unload.
5661
5662         * domain.c (mono_domain_free): Don't free refobject_hash, let the
5663         reflection cleanup code do it.
5664
5665         * domain-internals.h: Add mono_reflection_cleanup_domain.
5666
5667         This fixes a memory leak for managed mirrors of reflection objects
5668         on domain unload. 
5669
5670 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5671
5672         * metadata-verify.c: Implement more verification of the field table.
5673
5674 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
5675
5676         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
5677         doesn't try to parse the input assembly, which can be broken.
5678
5679 2009-04-23  Mark Probst  <mark.probst@gmail.com>
5680
5681         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
5682         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
5683         by using the lowest bit in the link to store whether the link is
5684         tracked.  Move the track_resurrection hashes into boehm-gc.c.
5685
5686 2009-04-22  Miguel de Icaza  <miguel@novell.com>
5687
5688         * Makefile.am: Split the console support in platform specific code
5689         and put together a framework for making this easy in the future so
5690         that we can start splitting code instead of having a mess of PLATFORM_WIN32
5691
5692 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5693
5694         * pedump.c: Fix a warning.
5695
5696 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5697
5698         * verify.c (mono_delegate_type_equal): Compare valuetypes using
5699         mono_class_from_mono_type to avoid bad interactions with the dual representation
5700         of the generic type definition.
5701
5702 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5703
5704         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
5705         get the MonoClass for the call context type as it might be a generic
5706         instance.
5707
5708         Fixes #491483.
5709
5710 2009-04-21  Mark Probst  <mark.probst@gmail.com>
5711
5712         * object-internals.h: The Thread object has no execution_context
5713         member anymore.
5714
5715         * threads.c, threadpool.c, threads-types.h: Accessor functions for
5716         the execution context.
5717
5718         * appdomain.c: Bump corlib version.
5719
5720 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5721
5722         * verify.c (do_newobj): Improve error message.
5723
5724 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5725
5726         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
5727         is nested in the filter block.
5728
5729         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
5730         block is not fully nested.
5731
5732         Fixes #495656.
5733
5734 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5735
5736         * verify.c (verify_type_compatibility_full): Compare MonoClass and
5737         not MonoType to check for equality of valuetypes as the generic type
5738         definition allows for two different encodings: the generic type definition
5739         class or a generic instance over the GTD arguments.
5740
5741         Fixes #496175.
5742
5743 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5744
5745         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
5746
5747         * verify.c (do_initobj): Improve error message.
5748
5749 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5750
5751         * metadata-verify.c: Enable pe verification as the issue with #496453
5752         is that the authenticode data directory have a different unspecified
5753         format. Ignore it for now.
5754
5755         * pedump.c: Run the metadata verifier together with the IL verifier.
5756
5757         Fixes ##496453.
5758
5759 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5760
5761         * metadata-verify.c: Temporarily disable pe verification due to #496453.
5762
5763 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5764
5765         * class.c (can_access_type): Check visibility against
5766         the element type for pointers and arrays.
5767
5768         Fixes #496150.
5769
5770 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5771
5772         * metadata-verify.c: Fix cli and table verification to use information
5773         from the MonoImage. A lot of duplicated code got killed.
5774
5775 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5776
5777
5778         This patch starts to integrate the metadata verifier with the runtime code.
5779
5780         This patch causes major regression in functionality for the metadata verifier
5781         as cli and table verification are disabled since they require to be ported to
5782         use MonoImage information.
5783
5784         * image.c (do_mono_image_load): Split the code in this function
5785         into mono_image_load_pe_data and mono_image_load_cli_data.
5786         Add     care_about_pecoff parameter to not load pecoff data.
5787         Call into the metadata verifier for pecoff and cli verification.
5788
5789         * image.c (mono_image_open_raw): New function that doesn't perform
5790         any parsing of the image contents.
5791         
5792         The reason for the 3 new functions is to give pedump better control
5793         into the interaction with the verifier.
5794
5795         * metadata-internals.h: Add new functions from image.c as part of the
5796         internal mono API.
5797
5798         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
5799         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
5800         to make those functions work together with the runtime.
5801
5802         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
5803         true if the image needs to be verified.
5804
5805         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
5806
5807         * pedump.c: Use new metadata verifier API.
5808
5809 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
5810
5811         * object.c (mono_install_vtable_trampoline): Make this receive a
5812         trampoline creation function instead of trampoline, allowing the JIT
5813         to use a different trampoline for each vtable.
5814
5815 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5816
5817         * object.c (mono_raise_exception): Don't reset the thread abort
5818         exception state here.
5819
5820 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5821
5822         * icall-def.h: New icall for getting the thread abort exception
5823         state for a thread.
5824
5825         * object.c, thread.c, object-internals.h: A thread's abort
5826         exception state is now a GC handle.  To get the object it stands
5827         for, we must move it into the current app domain, if it's
5828         different than the one where it originated from.
5829
5830         * appdomain.c: Bump corlib version.
5831
5832         * domain.c, domain-internals.h: New function for setting the
5833         domain and migrate the thread abort exception or not.
5834
5835 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5836
5837         * metadata-verify.c: Add initial verification of the
5838         field table.
5839
5840 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5841
5842         * metadata-verify.c: Add a macro to conditionally enable
5843         dumping of verification information. Add  make_coded_token
5844         and search_sorted_table to enable search sorted tables
5845         by a given coded token.
5846
5847 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5848
5849         * metadata-verify.c: Add array mapping from table index
5850         to description offset. Add get_col_offset and get_col_size
5851         functions.
5852
5853 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5854
5855         * metadata-verify.c: Add remaining table descriptions offsets.
5856         Add remaining coded index descriptions.
5857
5858 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5859
5860         * metadata-verify.c: Fixed constant table description.
5861         Fixed calculation of HasCustomAttribute coded index size.
5862         Fixed calculation of size for many table indexes. 
5863
5864 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5865
5866         * pedump.c (dump_metadata): Dump table offset instead
5867         of useless pointer in memory.
5868
5869 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5870
5871         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
5872
5873 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5874
5875         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
5876         a missing of for interface types.
5877
5878 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5879
5880         * metadata-verify.c (verify_pe_optional_header): Add comment of why
5881         the code is commented.
5882
5883         * metadata-verify.c (verify_resources_table): Remove spurious printf
5884         and don't fail if there are unmanaged resources. Gmcs generates a useless
5885         one     for all assemblies - I bet it's some MS compatibility junk.
5886
5887 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5888
5889         * metadata-verify.c (verify_typedef_table): Verify the extends field.
5890
5891         * metadata-verify.c (mono_image_verify): Add a is_corlib.
5892
5893         * verify-internals.h: Same.
5894
5895         * pedump.c: Fix for mono_image_verify new signature.
5896
5897 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5898
5899         * metadata-verify.c (verify_typedef_table): Verify for some invalid
5900         flags combinations.
5901
5902 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5903
5904         * metadata-verify.c (verify_module_table): Ignore the generation field.
5905
5906 2009-04-15  Martin Baulig  <martin@ximian.com>
5907
5908         * debug-mono-symfile.c
5909         (mono_debug_symfile_lookup_location): Don't print a warning for
5910         unknown extended opcodes if they're within 0x40 and 0x7f.
5911
5912 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
5913
5914         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
5915         invoke signatures returning an enum. Fixes #494847.
5916
5917 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5918
5919         * metadata-verify.c: Initial code to verify the typedef table.
5920
5921 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5922
5923         * verify.c (mono_method_verify): Don't fail if an unconditional branch
5924         with non empty stack happens before the beginning of a try block.
5925
5926         Fixes #494812.
5927
5928 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5929
5930         * metadata-verify.c: Verify typename and typenamespace fields of
5931         the typeref table.
5932
5933 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
5934
5935         * metadata-verify.c: Initial code to verify the typeref table.
5936
5937 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
5938
5939         * verify.c (verify_delegate_compatibility): Fix error message.
5940
5941 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
5942
5943         * security-core-clr.c: Fix typo
5944
5945 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5946
5947         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
5948         a MonoGHashTable to keep its values alive.
5949         (emit_marshal_boolean): Fix a warning.
5950
5951 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5952
5953         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
5954         not have any interface configured for IPv4/IPv6.
5955
5956 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5957
5958         * assembly.c: fix typo in error message.
5959
5960 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5961
5962         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
5963         allocating the location holding the this argument to prevent
5964         'too many root sets' errors.
5965
5966         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
5967         to mark fields as special static.
5968         (mono_field_static_get_value): Handle special static fields.
5969         (mono_field_static_set_value): Ditto.
5970
5971         * class-internals.h (struct _MonoClassField): Document this.
5972
5973 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5974
5975         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
5976           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
5977           case.  This will handle when managed code returns null to native code.
5978
5979         Code is contributed under MIT/X11 license.
5980
5981 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5982
5983         * object.c (build_imt_slots): Changing a free to a g_free to match
5984           the g_malloc0 in add_imt_builder_entry that allocated this memory.
5985
5986         Code is contributed under MIT/X11 license.
5987
5988 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5989
5990         * marshal.c (emit_marshal_boolean): Adding code to ensure that
5991           the correct TRUE value is passed through the marshaling layer.
5992
5993         Code is contributed under MIT/X11 license.
5994
5995 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
5996
5997         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
5998         correctly. Fixes #492330.
5999         
6000         * marshal.c: Fix the embedding of object pointers into JITted code in
6001         the native-to-managed wrappers by allocating some GC tracked memory, and
6002         embedding the address of that.
6003
6004 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
6005
6006         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
6007         pointers into the vtable.
6008
6009 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6010
6011         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
6012
6013         * verify.c (verify_ldftn_delegate): Improve error message.
6014
6015 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6016
6017         * reflection.c (my_mono_class_from_mono_type): Remove.
6018
6019 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6020
6021         Prepare to reduce memory usage of owner-less generic parameters (1/n)
6022         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
6023         and constraints fields into ...
6024         (MonoGenericParamInfo): ... this.
6025         (mono_generic_param_info, mono_generic_container_get_param_info):
6026         New accessors.
6027         * class.c, debug-helpers.c, icall.c: Update to changes.
6028         * metadata.c, reflection.c, verify.c: Likewise.
6029
6030 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
6031
6032         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
6033
6034         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
6035         
6036         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
6037         booleans with sbytes.
6038
6039 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6040
6041         * class.c (can_access_instantiation): Verify accesibility of element types
6042         for arrays and pointers.
6043
6044         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
6045
6046         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
6047
6048         Fixes #493068.
6049
6050 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6051
6052         * verify.c (do_invoke_method): Improve error messages.
6053
6054 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
6055
6056         * verify.c:  Fixing the MSVC build.
6057
6058         Code is contributed under MIT/X11 license.
6059
6060 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
6061
6062         * security-core-clr.c: Simplify get_reflection_caller not to call
6063         mono_method_get_last_managed (another stack walk) and adjust the
6064         callers to handle a (should not happen) NULL return value.
6065
6066 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6067
6068         Add accessors to some MonoGenericParam fields
6069         * class-internals.h (mono_generic_param_owner): New accessor.
6070         (mono_generic_param_num): Likewise.
6071         (mono_type_get_generic_param_owner): New helper.
6072         (mono_type_get_generic_param_num): New helper.
6073         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
6074
6075 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6076
6077         * class-internals.h (mono_generic_container_get_param): New wrapper.
6078         * class.c, icall.c, metadata.c, verify.c: Use it.
6079
6080 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6081
6082         Fix gtest-252.cs
6083         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6084         the standard case/loop.  In particular, don't complain about
6085         references to generic type definitions.
6086
6087 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
6088
6089         * debug-helpers.c (dis_one): Decode string arguments.
6090
6091 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6092
6093         * pedump.c (dump_verify_info): Dump type name correctly.
6094
6095 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6096
6097         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6098         are larger than code size.
6099
6100         This can happen in valid code if the try/catch block is not followed by any instruction
6101         and do a backward branch on the leave instruction.
6102
6103         Fixes #492494.
6104
6105 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
6106
6107         * security-core-clr.c: Fix typo while comparing second method names
6108         in can_avoid_corlib_reflection_delegate_optimization
6109
6110 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6111
6112         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6113
6114         Fixes #487738.
6115
6116 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6117
6118         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6119         a MVAR using a class context.
6120
6121         Fixes #490335.
6122
6123 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
6124
6125         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6126
6127         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6128
6129         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6130         functions supplied by the JIT for the SGEN GC.
6131
6132         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6133         
6134 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6135
6136         monitor.c (mono_monitor_try_enter_internal):
6137         Added calls to profile monitor contentions.
6138         Also duplicated a small piece of code (the "get the monitor" logic)
6139         from the fast path to the slow path, and changed the relevant goto
6140         statements, so that monitor acquisition events can be emitted from the
6141         slow path (this is by Paolo Molaro).
6142
6143 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6144
6145         * profiler.c, profiler.h, profiler-private.h:
6146         Added support for profiling monitor contentions.
6147
6148 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6149
6150         * metadata-verify.c: Verify the modules table.
6151
6152 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6153
6154         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6155         using the context of the method been verifier and not of the method been called.
6156
6157         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6158         safely inflate generic types. 
6159
6160 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6161
6162         * security-core-clr.c: Change the strategy for checking the 
6163         "reflection using delegates optimization" to avoid unneeded 
6164         attributes in multiple class libraries.
6165
6166 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6167
6168         * sgen-gc.c: Remove object element in the disappearing link struct
6169         by storing the object pointer in the link.
6170
6171 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6172
6173         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6174
6175 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6176
6177         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6178
6179         * verify.c (mono_method_verify): Do proper bounds checking of exception
6180         clause ranges.
6181
6182 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6183
6184         * loader.c (mono_field_from_token): Don't crash if the field parent could
6185         not be decoded.
6186
6187 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6188
6189         * sgen-gc.c: Execute critical finalizers after ordinary
6190         finalizers.
6191
6192         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6193         mono_defaults.
6194
6195 2009-03-31 Jb Evain <jbevain@novell.com>
6196
6197         * verify.c (do_ldstr): don't check if a string is in the user strings
6198         heap if the current image is dynamic.
6199
6200 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6201
6202         * sgen-gc.c: Wait until the last finalizer has executed when
6203         returning from WaitForPendingFinalizers.
6204
6205 2009-03-31  Martin Baulig  <martin@ximian.com>
6206
6207         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6208         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6209         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6210         (mono_debugger_event_create_appdomain): New function.
6211         (mono_debugger_event_unload_appdomain): New function.
6212
6213         * appdomain.c (mono_domain_create_appdomain_internal): Call
6214         mono_debugger_event_create_appdomain().
6215
6216 2009-03-31  Martin Baulig  <martin@ximian.com>
6217
6218         * mono-debug-debugger.c
6219         (mono_debugger_register_class_init_callback): Also register the
6220         class init callback if the class is already initialized to make
6221         things work with shadow copied assemblies.
6222
6223 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6224
6225         * security-core-clr.c
6226         (mono_security_core_clr_ensure_reflection_access_field): Let 
6227         critical code access the field (just like we do for methods). Use
6228         check_field_access helper.
6229         (mono_security_core_clr_ensure_reflection_access_method): Use 
6230         check_field_access helper.
6231
6232 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6233
6234         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6235         call the run-finalize function directly.
6236
6237         * gc.c, gc-internal.h: Make run_finalize() non-static.
6238
6239 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6240
6241         * sgen-gc.c: Use a separate struct for disappearing links.
6242
6243 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6244
6245         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6246         * MaxIOVectorLength enabled, just ignore them.
6247         Fixes bug #349688.
6248
6249 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6250
6251         * metadata-verify.c: Fix eglib build.
6252
6253 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6254
6255         * threads-types.h: Fix the win32 build.
6256
6257 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6258
6259         * class.c: move coreclr inheritance/override checks to 
6260         security-core.clr.c
6261         * security-core.clr.c|h: add code from class.c with additional
6262         documentation. Fix override check when the method is not critical.
6263
6264 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6265
6266         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6267         (match_class): Ditto.
6268
6269 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6270
6271         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6272
6273         * metadata-verify.c: Implement table layout row size calculation. Verify
6274         the total size of the tables.
6275
6276 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6277
6278         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6279
6280 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6281
6282         * appdomain.c:
6283         * console-io.[ch]: added new mono_console_init() to make sure that
6284         file descriptors 0, 1 and 2 are opened.
6285         Bug #489019 fixed.
6286
6287 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6288
6289         * appdomain.h: Export a new callback type and a new function to
6290         set this callback. This allow a mono host to provide it's own
6291         definition for "platform code".
6292         * metadata-internals.h: Add a core_clr_platform_code flag on 
6293         _MonoImage to (cache and) know if it is representing platform 
6294         code.
6295         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6296         on platform code images.
6297         * security-core-clr.c|h 
6298         (mono_security_set_core_clr_platform_callback): Allow the host
6299         to provide it's own platform check definition.
6300         (mono_security_core_clr_determine_platform_image): Detect if an 
6301         image is platform code (using the specified callback).
6302         (mono_security_core_clr_is_platform_image): Return cached value 
6303         for platform code.
6304
6305 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6306
6307         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6308         which has different parameter types for the 'tid' argument in windows and
6309         the io-layer.
6310
6311         * appdomain.c attach.c threads.c: Use the new helper.
6312
6313 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6314
6315         * metadata-verify.c: Verify valid table bits.
6316
6317 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6318
6319         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6320
6321         * metadata-verify.c: Add initial table schema verification.
6322
6323 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6324
6325         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6326         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6327         #488383.
6328
6329         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6330
6331         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6332
6333 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6334
6335         * security-core-clr.c: Add/update documentation
6336
6337 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6338
6339         * marshal.c (emit_marshal_object): Generate code to throw an exception
6340         instead of throwing it. Fixes #488670.
6341
6342 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6343
6344         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6345         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6346         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6347         and add a call to mono_security_core_clr_ensure_delegate_creation
6348         to do the extra checks required by CoreCLR.
6349         * security-core-clr.c|h: Add function to check delegate creation,
6350         both in the binding and accessibility, under CoreCLR.
6351
6352 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
6353
6354         * reflection.c (mono_reflection_create_dynamic_method): when 
6355         coreclr is enabled make sure that every resolved object are
6356         checked (e.g. field and method access).
6357         * security-core-clr.c|h: Add function to check objects resolved
6358         when a dynamic method is created.
6359
6360 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6361
6362         * metadata-verify.c: Cache directory rva translations.
6363
6364         * metadata-verify.c: Add cli-header and streams verification.
6365
6366 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6367
6368         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
6369         the wrong offset (8 instead of 6).
6370
6371 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6372
6373         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
6374         methods, return the native function address itself. Fixes
6375         #487758.
6376
6377 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6378
6379         * console-io.c: some of the values for control characters might not be
6380         present.
6381
6382 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
6383
6384         * exception.c|h: Add helpers to create [Field|Method]AccessException
6385         * icall.c: Add required coreclr check calls for field reflection.
6386         Move the existing (method) check logic into security-core-clr.c
6387         * security-core-clr.c: Add functions to check if the access of a
6388         field or method is allowed when reflecting under coreclr. This is
6389         mostly done using a stack walk to find the "real" caller: i.e. the
6390         code that is calling the reflection
6391
6392 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
6393
6394         * gc-internal.h: Change location of gc_wrapper.h
6395
6396 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
6397
6398         * class.c: Simplification to coreclr checks for overrides that
6399         makes it easier to set breakpoints.
6400
6401 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
6402
6403         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
6404         mono_security_core_clr_method_level): Avoid potential 
6405         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
6406         user/application code) and make it easier to set breakpoints
6407
6408 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6409
6410         * metadata-verify.c: Reject cli header tables that mono don't handle.
6411
6412 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6413
6414         * pedump.c: Fix CLI header dumping.
6415
6416 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
6417
6418         * metadata-verify.c: More CLI header verification.
6419
6420 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
6421
6422         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
6423
6424 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6425
6426         * metadata-verify.c: Initial verification of the CLI header.
6427
6428 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
6429
6430         * metadata-verify.c (verify_resources_table): Fix verification of zero
6431         sized resource section and id entries count.
6432
6433 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
6434
6435         * icall.c: Handle user types in many Type icalls. Fixes #486303.
6436
6437 2009-03-17  Jb Evain  <jbevain@novell.com>
6438
6439         * profiler.c: call mono_gc_base_init from mono_profiler_load.
6440
6441 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
6442
6443         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
6444         (mono_gc_make_descr_for_array): Ditto.
6445
6446 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
6447
6448         * verify.c (mono_verifier_is_class_full_trust): Add support for
6449         CoreCLR security mode where trusted assemblies are defined as
6450         "platform code".
6451
6452 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6453
6454         * metadata-verify.c: Add minimal PECOFF resource verification.
6455
6456 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6457
6458         * metadata-verify.c: Be less restrictive with some coff fields.
6459
6460 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
6461
6462         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
6463         params as boxed values on stack. Fixes #485706.
6464
6465 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6466
6467         * console-io.c: the termios values may vary in different flavors of unix.
6468
6469 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
6470
6471         * console-io.[ch]: return the entire set of control characters when
6472         initializing the terminal.
6473         * appdomain.c: bump corlib version.
6474
6475 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
6476
6477         * mono-perfcounters.c: added support for in-process custom
6478         performance counters.
6479
6480 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6481
6482         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
6483
6484 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6485
6486         * metadata-verify.c: Verify the data pointed by the import table. 
6487
6488 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
6489
6490         * metadata-verify.c (load_data_directories): Store data
6491         directory contents.
6492
6493         * metadata-verify.c: Verify the import table. 
6494
6495 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6496
6497         * metadata-verify.c: Verify data directories.
6498
6499 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
6500
6501         * metadata-verify.c: Check section header flags.
6502
6503 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
6504
6505         * appdomain.c: if the assembly name is a shadow-copied file, return
6506         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
6507         in mono_make_shadow_copy.
6508         * icall.c: if the assembly name is a shadow-copied file, replace it
6509         with the original assembly path.
6510
6511         Bug #484244 fixed. NUnit tests for corlib can be run without
6512         --noshadow now.
6513
6514 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
6515
6516         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
6517         entries when the table is reallocated.
6518
6519         * icall.c: Allocate the memory used by the mono_ptr_array macros using
6520         mono_gc_alloc_fixed () since it contains GC refs.
6521
6522 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
6523
6524         * reflection.c (ensure_complete_type): New helper function to call
6525         type resolve handlers for unfinished dynamic types.
6526         (resolve_object): Call it for MonoClassFields. Fixes #483852.
6527
6528 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
6529
6530         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
6531         #483247.
6532
6533 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
6534
6535         * appdomain.c (get_shadow_assembly_location): Fix memleak.
6536
6537 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
6538
6539         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
6540         between GCHandles of type WeakTrackResurrection and the objects they
6541         point to.
6542
6543         * gc.c: Partly implement the sematics of GCHandles of type 
6544         WeakTrackResurrection: these handles should only be cleared after the
6545         finalizer of the object they are pointing to has ran.
6546
6547 2009-03-06  Mark Probst  <mark.probst@gmail.com>
6548
6549         * icall.c: Partially revert r126631 because using the jump
6550         trampolines for generic shared methods makes it superfluous.
6551
6552 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
6553
6554         * threads.c (handle_store): Create the 'threads' hash table with the proper
6555         MONO_HASH_VALUE_GC type.
6556
6557 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
6558
6559         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
6560         FIRST_GC_TRACKED.
6561
6562         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
6563         and LAST_GC_TRACKED as a GC root.
6564
6565         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
6566
6567         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
6568         the static data even if it consists of 1 reference.
6569
6570         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
6571         if there is a GC descriptor.
6572
6573         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
6574         instead of through the GC since they contain no object references.
6575
6576 2009-03-05  Mark Probst  <mark.probst@gmail.com>
6577
6578         * generic-sharing.c (instantiate_other_info): Always return a jump
6579         trampoline for method code.
6580
6581 2009-03-05  Marek Habersack  <mhabersack@novell.com>
6582
6583         * culture-info-tables.h: generated to include the en-tt culture.
6584
6585 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6586
6587         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
6588         capture the thread context.
6589
6590         * object.c (mono_async_result_new): Cache the invoke wrappers to
6591         ExecutionContext::Capture.
6592
6593 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
6594
6595         * marshal.h: Add a prototype for what mono_compile_method returns
6596         for invoke wrappers.
6597
6598         * gc.c: Use the new prototype declaration.
6599
6600 2009-03-04  Geoff Norton  <gnorton@novell.com>
6601
6602         * boehm-gc.c: Add some MONO_LOG tracing for the GC
6603         * gc-internal.h:
6604         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
6605
6606 2009-03-04  Martin Baulig  <martin@ximian.com>
6607
6608         * mono-debug.h
6609         (mono_debugger_runtime_invoke): Removed.
6610
6611         * mono-debug-debugger.c
6612         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
6613
6614 2009-03-02  Martin Baulig  <martin@ximian.com>
6615
6616         * mono-debug.h
6617         (mono_debugger_unhandled_exception): Removed.
6618         (mono_debugger_handle_exception): Removed.
6619         (mono_debugger_throw_exception): Removed.
6620
6621         * mono-debug.c
6622         (mono_debug_debugger_version): Bump to 5.
6623
6624         * mono-debug-debugger.c: Moved the exception handling code to
6625         ../mini/debug-mini.c
6626
6627 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6628
6629         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
6630         finalize_objects_hash.
6631
6632         * gc.c: Use the separate lock to access the finalize_objects_hash field.
6633         
6634         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
6635         field.
6636
6637         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
6638         cache.
6639
6640         * image.c (mono_image_close): Free it.
6641         
6642         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
6643         allowing a creation of a wrapper which invokes its method using a CALLVIRT
6644         on the this argument.
6645
6646         * gc.c (run_finalize): Optimize the calling of the finalizers.
6647
6648 2009-03-03  Martin Baulig  <martin@ximian.com>
6649
6650         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
6651         of the `MonoGenericInst' changes.
6652
6653 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
6654
6655         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
6656         mono_array_class_get_cached to reduce locking contention. Extract
6657         a domain var.
6658
6659         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
6660         intermediary managed arrays. Use caching version of mono_array_new
6661         to allocate the result array.
6662
6663         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
6664
6665         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
6666
6667         * locales.c (create_names_array_idx):  Use mono_array_new_cached
6668         to reduce locking contention.
6669
6670 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
6671                 
6672         * object.c (mono_method_add_generic_virtual_invocation): Put back the
6673         thunk builder code for the non-interface case.
6674
6675 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
6676
6677         * object.c (get_generic_virtual_entries): New helper function to collect
6678         the virtual generic method instances which need to be added to an IMT
6679         thunk.
6680         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
6681         Instead of creating a new IMT thunk, reset the vtable slot to the
6682         trampoline, the thunk will be created the next time the trampoline is called.
6683         (build_imt_slots): Add support for virtual generic methods in interfaces by
6684         adding to the IMT thunk all the methods registered using 
6685         mono_method_add_generic_virtual_invocation ().
6686
6687         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
6688         (struct _MonoIMTCheckItem): Ditto.
6689
6690         * object.c (mono_method_add_generic_virtual_invocation): Take a
6691         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
6692         the IMT thunk to include all items.
6693         
6694         * object.c (mono_class_create_runtime_vtable): Add a missing
6695         mono_loader_unlock ().
6696
6697 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6698
6699         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6700
6701         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
6702
6703 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6704
6705         * object-internals.h: Rename _MonoReflectionEvent to
6706         MonoReflectionMonoEvent so it reflects the right managed type.
6707         Add a MonoReflectionEvent that correctly represents System.EventInfo.
6708
6709         * icall.c:
6710         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
6711         type.
6712
6713 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6714
6715         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
6716         intermediary managed arrays. Use caching version of mono_array_new
6717         to allocate the result array.
6718
6719 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6720
6721         * reflection.c: Use cached version of mono_array_new alongside
6722         the mono_reflection_get_custom_attrs_by_type call path.
6723
6724 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6725
6726         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
6727         intermediary managed arrays. Use caching version of mono_array_new
6728         to allocate the result array.
6729
6730         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
6731
6732 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6733
6734         * icall.c: Add small implementation of a growable stack bound array.
6735
6736         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
6737
6738         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
6739         intermediary managed arrays. Use caching version of mono_array_new
6740         to allocate the result array.
6741
6742 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
6743
6744         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
6745         helps Enum::CompareTo to be implemented without reboxing all enums
6746         to their underlying type.
6747 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
6748
6749         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
6750         since it acquires a global lock leading to scalability problems.
6751
6752         * profiler.c: Make the stat profiler work with multiple appdomains, this
6753         currently only works when no appdomains are unloaded.
6754
6755 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6756
6757         * appdomain.c: make the check to avoid copying when the assembly is
6758         already shadow copied actually work.
6759
6760 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
6761
6762         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6763
6764         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
6765         changes to the managed side.
6766
6767 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
6768
6769         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
6770         classes + a separate lock for it, as it is used frequently at runtime, not
6771         just during metadata loading/JIT compilation.
6772
6773         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
6774         for szarrays.
6775         
6776         * object-internals.h (mono_class_from_name_cached): New macro to cache
6777         the results of the lookup locally without having to declare a static
6778         variable to hold it.
6779         (mono_class_get_field_from_name_cached): Ditto.
6780         (mono_array_class_get_cached): Ditto.
6781
6782         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
6783         the new macros.
6784         
6785         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
6786         slower search in metadata.
6787
6788         * pedump.c: Fix a warning.
6789
6790 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
6791
6792         * reflection.c (encode_locals): Add checks for user types.
6793         (method_encode_clauses): Ditto.
6794         (method_encode_code): Ditto.
6795         (mono_image_create_token): Ditto.
6796
6797         * object-internals.h: Change the type of more fields from MonoReflectionType*
6798         to MonoObject*.
6799
6800 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
6801
6802         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
6803         the a thread does not suspend within 100ms.
6804
6805         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
6806         in addition to StopRequested as well.
6807
6808         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
6809
6810         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
6811         search the method_hash before inserting a new entry, to avoid crashes when
6812         the same method is inserted multiple times, causing the old 
6813         MonoDebugMethodInfo structure to be freed by the value dtor function.
6814
6815 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6816
6817         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
6818         SO_EXLUSIVEADDRUSE where available.
6819
6820 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
6821
6822         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
6823         runtime invoke wrappers, this time it is string ctor wrappers, which
6824         pass a dummy string as 'this' instead of their obj argument. Fixes
6825         #478473.
6826
6827 2009-02-21  Jb Evain  <jbevain@novell.com>
6828
6829         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
6830         only get create_culture once.
6831
6832 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
6833
6834         * reflection.c (mono_reflection_setup_internal_class): Move the user type
6835         check before the locking.
6836         
6837         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
6838         (mono_reflection_create_runtime_class): Ditto.
6839         (mono_reflection_sighelper_get_signature_local): Ditto.
6840         (mono_reflection_sighelper_get_signature_field): Ditto.
6841
6842         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
6843         is a System.MonoType object or similar.
6844         (monotype_cast): New helper function to cast a MonoObject to a 
6845         MonoReflectionType object.
6846
6847         * object-internals.h: Change MonoReflectionType* members in structures to
6848         MonoObject* members to force the usage of the monotype_cast () function.
6849
6850         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
6851         structures/arrays. This causes us to assert instead of crashing when 
6852         instances of user defined subclasses of System.Type are encountered.
6853
6854 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6855
6856         * cil-coff.h:
6857         * icall-def.h:
6858         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
6859         win32 resource loaded from a PE file.
6860
6861         * image.c: fix mono_image_lookup_resource.
6862
6863 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6864
6865         * icall-def.h:
6866         * threads-types.h:
6867         * threads.c: added internal call for WaitHandle.SignalAndWait.
6868
6869 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
6870
6871         * cominterop.c : Adding cominterop_type_from_handle and 
6872           registering it as an icall.  Replacing all references
6873           to type_from_handle.
6874
6875         Code is contributed under MIT/X11 license.
6876
6877 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6878
6879         * Makefile.am: Add lock-tracer.h and lock-trace.c.
6880
6881         * appdomain.c: Call the tracer init function.
6882
6883         * domain-internals.h: Enable the tracer for the domain locks.
6884
6885         * image.c: Enable the tracer for image locks.
6886
6887         * loader.c: Enable the trace for the loader lock.
6888
6889         * lock-tracer.h:
6890         * lock-tracer.c: Initial implementation of the lock trace utility.
6891         The tracer requires a compile time define to be enabled and a env var
6892         to be enabled at runtime.
6893
6894 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6895
6896         * domain.c (mono_domain_code_foreach): Improve documentation.
6897
6898 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6899
6900         * appdomain.c:
6901         * generic-sharing.c:
6902         * object.c:
6903         * reflection.c:  Adjust locking order to the new semantics where the loader lock
6904         comes first.
6905
6906 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
6907
6908         * domain.c: Add mono_domain_code_* functions that perform locking
6909         around the domain codeman.
6910
6911         * domain-internals.h: Export those functions.
6912
6913         * object.c: Use new functions instead of acquiring the domain lock.
6914
6915 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
6916
6917         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
6918         delegate. Fixes #477396.
6919
6920 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6921
6922         * reflection.c (create_custom_attr): Get rid of alloca.
6923
6924 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
6925
6926         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
6927           Adding exception handling for all CCW calls.
6928
6929         Code is contributed under MIT/X11 license.
6930
6931 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6932
6933         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
6934
6935         * marshal.c (emit_marshal_boolean): Add null checks to the new 
6936         native->managed marshalling code. Fixes #476247.
6937
6938 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6939
6940         * class.c (mono_class_get_vtable_entry): Move the addition of
6941         static rgctx invoke wrappers for vtable methods here, this simplifies
6942         a lot of code and causes fewer rgctx wrappers to be created.
6943
6944         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
6945         name of the statistics to begin with an uppercase.
6946
6947 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6948
6949         * reflection.c: Revert previous change as it breaks the build.
6950         
6951 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6952
6953         * verify.c: Properly handle SZARRAY element type.
6954
6955         Fixes #474271.
6956
6957 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6958
6959         * reflection.c (mono_image_create_method_token): Correctly encode
6960         MethodDef MemberRefParent token.
6961
6962         Fixes #472845.
6963
6964 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6965
6966         * image.c (mono_image_close): Delete the critical section before
6967         freeing the memory holding it.
6968
6969 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6970
6971         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
6972         Fixes #476257.
6973
6974 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6975
6976         * pedump.c (main): Call mono_marshal_init so pedump
6977         doesn't crash.
6978
6979 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6980
6981         * loader.c (method_from_memberref): Properly fix #474271 and
6982         don't break the runtime bad.
6983
6984 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6985
6986         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
6987         (mono_domain_alloc0): Ditto.
6988
6989 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6990
6991         * loader.c (method_from_memberref): Don't abort if the array
6992         method is not found. A regular loader failure is more informative
6993         and correct.
6994
6995         Fixes #474271.
6996
6997 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6998
6999         *loader.c: Guard MonoImage::method_cache/methodref_cache
7000         using the image lock instead of the loader lock.
7001
7002         * metadata.h: Add comments about which fields are protected by
7003         the image lock.
7004
7005 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7006
7007         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
7008
7009         * generic-sharing.c (mono_method_construct_object_context): Remove the
7010         wrapper_type == NONE assert, it is not needed.
7011
7012 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
7013
7014         * reflection.c (clear_cached_object): New helper function.
7015         (mono_method_clear_object): New function to clear the cached reflection
7016         objects for a dynamic method.
7017
7018         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
7019         Partly fixes # 463323.
7020         
7021 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7022
7023         * class.c:
7024         * loader.c:
7025         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
7026
7027 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7028
7029         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
7030         take the image lock instead of the loader lock.
7031
7032         * metadata-internals.h: Export new functions.
7033
7034 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7035
7036         * domain.c (app_config_parse): Remove another use of stat that is
7037         not necessary as g_file_get_contents already does the presence
7038         check. 
7039
7040 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7041
7042         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
7043
7044         * marshal.c: Move the bstr handling code to cominterop.c.
7045
7046         * marshal.c: Remove some COM interop code missed previously.
7047
7048 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7049
7050         More Paolo patches from the Wii port:
7051         
7052         * security.c: Remove ves_icall_System_Environment_get_UserName
7053         from here.
7054
7055         * icall.c: And put ves_icall_System_Environment_get_UserName
7056         here. 
7057
7058         * appdomain.c (mono_set_private_bin_path_from_config): Remove
7059         redundant call to stat that was only used to test for the file
7060         existence.   Patch from Paolo.
7061
7062         * gc.c (run_finalize): If COM is disabled, do not link in
7063         mono_marshal_free_ccw.
7064
7065         * generic-sharing.c: Use alloca.h here as well.
7066
7067 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
7068
7069         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
7070
7071 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7072
7073         * cominterop.c cominterop.h: New files.
7074
7075         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
7076         function/typedefs which are needed by cominterop.c global.
7077
7078 2009-02-12  Mark Probst  <mark.probst@gmail.com>
7079
7080         * generic-sharing.c: Don't take the loader lock to guard image
7081         mempool allocs.
7082
7083 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7084
7085         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7086         called without the loader lock which is required to guard MonoImage:tokens.
7087
7088 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7089
7090         * class.c:
7091         * metadata.c:
7092         * method-builder.c:
7093         * marshal.c:
7094         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7095
7096 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7097
7098         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7099         Rework the code to use regular mono_image_alloc/0.
7100
7101         * loader.c: Rework the code to use regular mono_image_alloc/0.
7102
7103         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7104
7105 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
7106
7107         * object-internals.h : Fixing a typo in the 
7108           MonoReflectionComVisibleAttribute struct.
7109
7110         * marshal.c (cominterop_com_visible): Check the implemented 
7111           interfaces for ComImport.
7112
7113         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
7114           assume that bools should be treated as VARIANTBOOLs.
7115
7116         * marshal.c (emit_marshal_boolean): Adding cases for 
7117           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7118
7119         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
7120           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7121
7122         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7123           should be treated as VARIANTBOOLs.    
7124
7125         Code is contributed under MIT/X11 license.
7126
7127 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7128
7129         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7130         allocation with the image lock.
7131
7132 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7133
7134         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7135         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7136
7137         * object.c: Add mono_string_to_utf8_image.
7138
7139         * object-internals.h: Export mono_string_to_utf8_image.
7140
7141         * reflection.c: Rework all explicit references to the the image mempool to go thought
7142         the mono_image_alloc set of functions.
7143
7144 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7145
7146         This patch is the third of a series to remove explicit reference of MonoImage::mempool
7147         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7148         and generics-sharing.c.
7149
7150         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7151         as first argument. Note that this function remains broken as it doesn't perform locking around the
7152         mempool allocation.
7153
7154         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7155
7156         * image.c: Add g_slist_append_image.
7157
7158         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7159         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7160
7161         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7162         Fix all related code to do the same.
7163
7164         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7165
7166         * metadata-internals.h: Fix the signatures.
7167
7168 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7169
7170         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7171         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7172         and similar to work using MonoImage.
7173
7174         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7175         MonoMemPool.
7176
7177         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7178
7179         * class.c (mono_metadata_signature_deep_dup): Same.
7180
7181         * class.c (inflate_generic_type): Same.
7182
7183         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7184
7185         * metadata.c (mono_metadata_signature_dup_full): Same.
7186
7187         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7188         mono_metadata_signature_dup_full.
7189
7190         * metadata.c (mono_metadata_type_dup): Same.
7191
7192         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7193
7194         * reflection.c: Same.
7195
7196         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7197
7198         * metadata-internals.h: Fix the signatures.
7199
7200         * class-internals.h: Same.
7201
7202 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7203
7204         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7205         and use mono_image_alloc set of functions instead. 
7206
7207         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7208         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7209         of a MonoMemPool.
7210
7211         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7212
7213         * class.c (g_list_prepend_mempool): Removed.
7214
7215         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7216
7217         * image.c: Add g_list_prepend_image.
7218
7219         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7220
7221         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7222
7223
7224 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7225
7226         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7227         mono_image_unlock.
7228
7229         * image.c (mono_image_init): Init the lock field.
7230  
7231         * image.c (mono_image_init): Cleanup the lock field.
7232
7233         * image.c: Add mono_image_(un)lock functions.
7234
7235 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7236
7237         * class.c, class-internals.h: mono_method_get_context_general()
7238         combines the functionality of mono_method_get_context() and
7239         mini_method_get_context().
7240
7241         * generic-sharing.c, domain-internals.h:
7242         mono_method_construct_object_context() and
7243         mono_domain_lookup_shared_generic() moved from mini.
7244
7245         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7246         method doesn't have the correct instantiation because it's shared
7247         generic code.  Fixes #473999.
7248
7249 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7250
7251         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7252
7253         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7254         
7255 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7256
7257         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7258
7259         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7260
7261         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7262         and recheck the cache for dups after it.
7263
7264         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7265
7266         Fixes one of the deadlocks found in #473150.
7267
7268 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7269
7270         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7271           For Win32, add additional break conditions for accept.
7272
7273         Code is contributed under MIT/X11 license.
7274
7275 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7276
7277         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7278         lazily initialize the native wrapper cache.
7279         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7280         cache, since they are different from the normal wrappers.
7281
7282         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7283
7284         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7285         AOT compiled native wrappers.
7286
7287 2009-02-09  Geoff Norton  <gnorton@novell.com>
7288
7289         * appdomain.h:
7290         * security-core-clr.c: Allow enabling core-clr from the embedding
7291         API.
7292
7293 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7294
7295         * socket-io.c: when requesting all the local ips, if there are no
7296         interfaces up and running, MS returns 127.0.0.1.
7297
7298 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7299
7300         * mono-perfcounters-def.h: processor time is an inverse time.
7301         Fixes bug #468625.
7302
7303 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7304
7305         * socket-io.c: an empty host name returns the list of local IPs.
7306         Fixes bug #386637 part 1/2.
7307
7308 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7309
7310         * verify.c (mono_class_interface_implements_interface): Call
7311         mono_class_setup_interfaces ().
7312         (merge_stacks): Ditto.
7313
7314 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7315
7316         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7317         klass->interfaces.
7318         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7319         (mono_generic_class_get_class): Ditto.
7320
7321 2009-02-06  U-QUACK\miguel  <miguel@quack>
7322
7323         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7324         they live in security.c
7325
7326         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7327         another bit from Paolo's code.
7328
7329 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7330
7331         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7332         methods which will be discarded by add_imt_builder_entry ().
7333
7334         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7335         need to be boxed.
7336
7337         * loader.c: Add a statistics for the size of the memberref signature cache.
7338         
7339         * loader.c (find_cached_memberref_sig): New helper function.
7340         (cache_memberref_sig): Ditto.
7341
7342         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7343         they will be parsed again for every generic instantiation, leading to unbounded
7344         memory growth.
7345
7346 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7347
7348         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7349         parameters of generic methods.
7350
7351         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7352         after the original method is copied to the inflated method.
7353         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7354
7355         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7356         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
7357
7358         * class.c metadata.c: Update after the changes above.
7359
7360 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7361
7362         * metadata-verify.c: Simplified error handling and added
7363         section table validation.
7364
7365 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7366
7367         * class-internals.h (MonoClassExt): New structure containing rarely used
7368         fields of MonoClass.
7369         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
7370         through a new 'ext' field.
7371
7372         * class.c (mono_class_alloc_ext): New helper function to allocate 
7373         class->ext.
7374
7375         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
7376
7377 2009-02-05  Mark Probst  <mark.probst@gmail.com>
7378
7379         * object.c (mono_object_get_virtual_method): Properly inflate
7380         generic methods.  Fixes #472692.
7381
7382 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7383
7384         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
7385         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
7386         for the parent type, the created type must be ready to be used on a generic
7387         instantiation.
7388         We fill this_arg/byval_arg if the parent is a generic instance to make sure
7389         we won't have duplicated entries in generic_inst_cache.
7390
7391         Fixes #469553.
7392
7393 2009-02-05  Miguel De Icaza  <miguel@novell.com>
7394
7395         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
7396         replace with plain BSD per the comments on the bug MONO77637.
7397
7398 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7399
7400         * class.c (mono_class_get_generic_class): New accessor function.
7401         (mono_class_get_generic_container): Ditto.
7402
7403         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
7404         fields, similar to the ones in MonoMethod.
7405
7406         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
7407         (mono_class_create_from_typedef): Set klass->is_generic if needed.
7408
7409         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
7410         
7411         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
7412         the same information as element_class->byval_arg.
7413
7414         * class.c reflection.c: Remove references to class->byval_arg.
7415
7416         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
7417         klass->enum_basetype directly.
7418
7419         * verify.c metadata.c object.c icall.c reflection.c: Use 
7420         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
7421         directly.
7422
7423 2009-02-04  Miguel de Icaza  <miguel@novell.com>
7424
7425         * icall-def.h: Remove internal calls for sockets when
7426         DISABLE_SOCKET is defined, file system writing features when the
7427         OS only support reading and not writing data and Policy support if
7428         the Policy is disabled.
7429         
7430         * image.c (do_mono_image_open): Apply Paolo's patches for using
7431         mono_file_map_ APIs here.
7432
7433         * assembly.c: Add support for platforms to avoid prefix
7434         auto-detection. 
7435
7436 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
7437
7438         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
7439         warning.
7440
7441         * class.c (mono_class_inflate_generic_class): New helper function.
7442
7443         * class.c: Use mono_class_inflate_generic_class in a few places. Add
7444         statistics for inflated methods/classes.
7445
7446         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
7447
7448         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
7449         the call is made from Delegate.CreateDelegate () for the invoke method of
7450         a delegate.
7451
7452         * loader.c: Add a statistics for the memory occupied by inflated signatures.
7453
7454         * metadata.c (mono_metadata_signature_size): New helper function.
7455
7456         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
7457         generic instances.
7458
7459         * metadata.c (inflated_method_in_image): Avoid calling 
7460         mono_method_signature () if the method does not already have a signature.
7461
7462 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7463
7464         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
7465         valuetype is compatible with target type, check by inheritance as a
7466         VT is not really compatible with System.ValueType, for example.
7467
7468         * verify.c (do_invoke_method): Improve error message.
7469
7470         * verify.c (do_box_value): If boxing a nullable, use the type argument
7471         on stack instead.
7472
7473         * verify.c (do_newobj): Improve error message.  
7474
7475         Fixes #469549.
7476
7477 2009-02-03  Miguel de Icaza  <miguel@novell.com>
7478
7479         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
7480
7481 2009-02-03  Mark Probst  <mark.probst@gmail.com>
7482
7483         * generic-sharing.c: Don't hold domain lock when calling
7484         instantiate_other_info().  Fixes #471958.
7485
7486         * domain-internals.h, loader.c: Describe locking policy of domain
7487         lock vs loader lock.
7488
7489 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7490
7491         * verify.c (mono_delegate_signature_equal): Make it possible to check
7492         first-arg-bound delegates to static method.
7493
7494         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
7495         static methods with the first arg bound.
7496
7497         Fixes #469529.
7498
7499 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7500
7501         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
7502         errors.
7503
7504         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
7505         under strict mode. Any type, when boxed can be seen as a reference type.
7506
7507         Fixes #469528.
7508
7509 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
7510
7511         * object.h: The lower bound of an array is a signed integer value.
7512         Introduce mono_array_lower_bound_t typedef. It should be used instead of
7513         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
7514
7515         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
7516         calculate the upper bound.
7517         
7518         Fixes #471252.
7519
7520 2009-02-02  Miguel de Icaza  <miguel@novell.com>
7521
7522         From Paolo's work, refactored, cleared up:
7523         
7524         * threadpool.c, icall.c: ifdef code that requires a working socket
7525         stack.
7526
7527         * metadata.c (mono_metadata_field_info): Do not attempt to return
7528         a value from a function declared as void.
7529
7530         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
7531         from the console stack.
7532
7533         * assembly.c: use strrchr instead of rindex.
7534
7535         * class.c, object.c, marshal.c, icall.c, reflection.c: include
7536         alloca.h on systems that have it.
7537
7538         * environment.c: Avoid code that uses stuff from
7539         HAVE_SYS_UTSNAME_H
7540         
7541         * appdomain.c: Include sys/time.h.
7542
7543         * console-io.c: include sys/ioctl.h if it is available.
7544
7545 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
7546
7547         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
7548
7549         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
7550         the method builder.
7551
7552         * marshal.c: Set mb->skip_visibility instead of setting it on the method
7553         after it was created and cached, as the later is not thread safe.
7554         
7555 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7556
7557         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
7558         called while the debugging module is not initialized. Fixes #471669.
7559
7560 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
7561
7562         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
7563
7564         Fixes #471255.
7565
7566 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7567
7568         * generic-sharing.c (lookup_or_register_other_info): Make sure the
7569         loader lock is not taken while the templates lock is held.  Fixes
7570         #471089.
7571
7572 2009-02-02  Mark Probst  <mark.probst@gmail.com>
7573
7574         * metadata.c (type_in_image): Added a check to fix a monodis
7575         crash.
7576
7577 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
7578
7579         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
7580         nullable arguments.
7581
7582         * object.c (mono_runtime_invoke_array): Ditto.
7583         
7584         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
7585         freeing wrappers of dynamic methods.
7586
7587         * loader.c (mono_free_method): Call it. Fixes #463323.
7588         
7589         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
7590         methods taking vtype/byref arguments, to fix yet another bug caused by
7591         the sharing of runtime invoke wrappers. Partly fixes #471259.
7592
7593 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
7594
7595         * debug-mono-symfile.c (check_line): Return NULL instead of returning
7596         <first file in file table>:1 when the IL offset does not have an associated
7597         line number.
7598
7599 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
7600
7601         * mono-debug.c (mono_debug_lookup_locals): New function to return local
7602         variable info for a method.
7603
7604         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
7605         
7606 2009-01-30  Jb Evain  <jbevain@novell.com>
7607
7608         * pedump.c: reuse code from monodis to make sure pedump honors
7609         MONO_PATH, which is needed to verify net_2_1 assemblies.
7610
7611 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
7612
7613         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
7614         there is no line number info.
7615
7616 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
7617
7618         Avoid some MonoType allocations
7619         * reflection.c (mono_reflection_initialize_generic_parameter):
7620         Reuse MonoType from param->pklass rather than allocating one.
7621         (mono_dynamic_image_free): Update to changes.
7622
7623 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7624
7625         Rearrange some code to improve consistency
7626         * reflection.c (mono_reflection_setup_generic_class): Move body ...
7627         (mono_reflection_initialize_generic_parameter): ... here.
7628
7629 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
7630
7631         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
7632         with type constraints as an experiment.
7633
7634         * boehm-gc.c (on_gc_notification): Update mono_stats.
7635
7636 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
7637
7638         Avoid some allocations
7639         * class-internals.h (_MonoGenericInst::type_argv): Convert from
7640         pointer to tail array to avoid extra allocation.
7641         * metadata.c (free_generic_inst): Update to changes.
7642         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
7643         on-stack struct.
7644
7645 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
7646
7647         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
7648         return TRUE if the two type objects are the same.
7649
7650 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7651
7652         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
7653         (mono_class_native_size): Use klass->marshal_info->min_align instead of
7654         klass->min_align, since klass->min_align contains the managed alignment,
7655         while the native alignment can be different, like for longs on x86.
7656         Fixes #469135.
7657
7658         * class-internals.h (MonoMarshalType): Add a min_align field.
7659
7660 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
7661
7662         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
7663         the 1.0 format.
7664
7665 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
7666
7667         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
7668         some comments about the usage of the used_regs field.
7669
7670         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
7671         Fixes #469217.
7672
7673 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
7674
7675         * appdomain.c: return NULL instead of throwing FileNotFoundException
7676         when LoadAssembly() fails.
7677
7678 2009-01-23  Mark Probst  <mark.probst@gmail.com>
7679
7680         * metadata.c (mono_metadata_generic_param_equal): Only compare the
7681         image if the owner is NULL.  Fixes the AOT failures.
7682
7683 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
7684
7685         * metadata.c (mono_metadata_load_generic_params): Initialize the 
7686         MonoGenericParam structure using memset so the image field is initialized
7687         as well.
7688
7689 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7690
7691         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
7692         a plain store.
7693
7694 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
7695
7696         * class.c (mono_class_setup_vtable_general): In the generic instance
7697         optimization, set method->slot for abstract virtual methods. Fixes part of
7698         #467834.
7699
7700 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
7701
7702         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
7703         which signals that the unloading has started but all appdomain services must
7704         remain operational.
7705
7706         * appdomain.c (mono_domain_unload): The initial state for unloading now
7707         is unloading_start and we switch to unloading after the managed call to
7708         AppDomain::DomainUnload has finished.
7709
7710         The new unloading state has to be created because managed code in the
7711         DomainUnload event can depend on things like the threadpool still working.
7712         The domain must remain fully functional while the event executes.
7713
7714         This shown as an issue due to Process::WaitForExit, which waits for
7715         async reads of stdout and stderr to complete. Since those are processed
7716         in the threadpool the code deadlocks because the DomainUnload callback 
7717         waits for the async read finished event, which should have been set by a
7718         threadpool job but has been discarded due to the domain been in unload
7719         state.
7720
7721 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7722
7723         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
7724         image must match.
7725
7726 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7727
7728         * reflection.c (resolve_object): For fields, inflate the class and
7729         then get the field in the inflated class.
7730
7731 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7732
7733         * object-internals.h (struct _MonoException): Added a comment
7734         explaining the new use of trace_ips.
7735
7736 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7737
7738         * generic-sharing.c (inflate_other_data): Inflate array methods
7739         correctly.
7740
7741         * loader.c, class-internals.h: Rename search_in_array_class() to
7742         mono_method_search_in_array_class() and make it non-static.
7743
7744 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7745
7746         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
7747         Hopefully fixes #458168.
7748
7749 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7750
7751         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
7752         as it is performed elsewhere.
7753
7754         Code is contributed under MIT/X11 license
7755
7756 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7757
7758         * mono-perfcounters-def.h: Add counters for asp.net requests total and
7759         requests queued.
7760         * object.c (mono_raise_exception): Increment the exceptions total
7761         counter when an exception is thrown.
7762         * class-internals.h: Add a location for storing the total number of
7763         asp.net requests served.
7764         * mono-perfcounters.c: Implement update support for asp.net counters
7765         from the class libraries. Implement read support for asp.net counters
7766         and exceptions total counter.
7767
7768 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7769
7770         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
7771         accessing klass->methods. Fixes #467385.
7772
7773 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7774
7775         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
7776         for byval arguments without an [Out] attribute. Fixes #467212.
7777
7778         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
7779         Fix compilation under android.
7780         
7781         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
7782         processed, scan them directly after they are copied, to achieve better locality
7783         and cache usage.
7784
7785         * socket-io.c: Applied patch from Koushik Dutta
7786         (koush@koushikdutta.com). Disable IPV6 when running under android.
7787
7788 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7789
7790         * icall.c (ves_icall_InternalExecute): Add write barriers.
7791
7792         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
7793         the GC code.
7794
7795         * sgen-gc.c: Implement write barriers in IL code.
7796
7797 2009-01-17  Geoff Norton  <gnorton@novell.com>
7798
7799         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
7800
7801 2009-01-17  Geoff Norton  <gnorton@novell.com>
7802
7803         * image.c: When unloading the image->references table, there can be gaps
7804         in it.  Ensure that we iterate every entry to avoid leaking assembly references
7805         when unloading an appdomain.
7806
7807 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
7808
7809         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
7810         speed up ptr-in-nursery checks.
7811
7812         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
7813         threads_lock () to prevent deadlocks.
7814
7815         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
7816         does not need to be scanned during minor collections, since writes to it
7817         must use write barriers.
7818
7819 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
7820
7821         * metadata-verify.c: Add pe nt header verification.
7822         
7823 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7824
7825         * gc.c: Fix a few warnings when using SGEN.
7826
7827 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
7828
7829         * metadata-verify.c: Add pe optional header verification.
7830
7831 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7832
7833         * sgen-gc.c: Add support for user defined marker functions, used by
7834         MonoGHashTable to avoid registering a GC root for every hash node.
7835
7836 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7837
7838         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
7839         non-pinned roots into separate hashes to avoid having to traverse them
7840         in functions which are only interested in one kind.
7841
7842 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
7843
7844         * metadata-verify.c: Add pe header machine field verification.
7845         
7846 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
7847
7848         * metadata-verify.c: Add pe header size verification.
7849
7850 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7851
7852         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
7853         using the GC, they don't contain references.
7854
7855         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
7856
7857 2009-01-13  Geoff Norton  <gnorton@novell.com>
7858
7859         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
7860         AppDomains created on the native side can be cleaned up on the native side.
7861
7862 2009-01-13  Geoff Norton  <gnorton@novell.com>
7863
7864         * appdomain.c: Ensure that we call mono_context_init for the embedding api
7865         as well as the managed api.
7866
7867 2009-01-13  Geoff Norton  <gnorton@novell.com>
7868
7869         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
7870         with a MonoAppDomain initialized against it.
7871
7872 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7873
7874         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
7875         
7876         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
7877
7878         * marshal.c: Avoid setting the exception clauses after a method has been entered 
7879         into the wrapper caches. Fixes #465700.
7880
7881         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
7882         method builder.
7883         (mono_mb_create_method): Set the clauses from the method builder.
7884
7885 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
7886
7887         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
7888         Patch from Makoto Kishimoto.
7889
7890 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7891
7892         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
7893         encoding them as ROOT_DESC_COMPLEX.
7894         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
7895
7896 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
7897
7898         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
7899         no longer point to the nursery.
7900
7901         * sgen-gc.c: Add a few comments/FIXMEs.
7902         
7903         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
7904
7905         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
7906         initialization of the various _method variables thread safe. Fixes
7907         #465377.
7908
7909 2009-01-12  Mark Probst  <mark.probst@gmail.com>
7910
7911         * domain.c, domain-internals.h: Remove the shared_generics_hash
7912         and its lookup functions.
7913
7914 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
7915
7916         * socket-io.c:  Fixing the MSVC build. 
7917
7918         Code is contributed under MIT/X11 license.
7919
7920 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
7921
7922         * metadata-verify.c: Add pe header watermark verification.
7923
7924 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7925
7926         * metadata-verify.c: Add lfanew verification.
7927
7928 2009-01-12  Jb Evain  <jbevain@novell.com>
7929
7930         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
7931         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
7932
7933 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
7934
7935         * socket-io.c: Fix the build.
7936
7937         * environment.c: Fix an #ifdef.
7938
7939 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7940
7941         * threadpool.c (async_invoke_thread): Handle the wait function returning
7942         WAIT_IO_COMPLETION as well.
7943         (async_invoke_io_thread): Ditto.
7944
7945 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
7946
7947         * threads.c: Fixing the Windows build.
7948
7949         Code is contributed under MIT/X11 license.
7950
7951 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7952  
7953         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
7954         interrupt a wait.
7955         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
7956         the thread to wait again.
7957
7958 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7959
7960         * metadata-verify.c: Initial skeleton of the metadata verifier.
7961
7962         * pedump.c: Add support for the metadata verifier.
7963
7964         * verify-internal.h: Export the whole assembly metadata verifier function.
7965
7966 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7967
7968         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
7969
7970 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7971
7972         * Makefile.am: Upgrade dtrace-prelink.sh location.
7973
7974 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
7975
7976         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
7977         well. Otherwise the shutdown deadlock that happens on unix will can happen
7978         as well.
7979         If the main thread code finishes too fast it's possible that the finalizer
7980         thread won't have executed yet, won't record itself as the finalizer thread
7981         and the shutdown sequence will wait on it forever.
7982
7983 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
7984
7985         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
7986         with MSVC.
7987
7988 2009-01-08  Miguel de Icaza  <miguel@novell.com>
7989
7990         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
7991         Robert Jordan for pointing this out.
7992
7993 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
7994
7995         * icall.c
7996         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
7997         ves_icall_System_IO_DriveInfo_GetDriveType.
7998
7999 2009-01-07  Miguel de Icaza  <miguel@novell.com>
8000
8001         * icall.c: Wrap calls to mono_strtod in CriticalSection
8002         invocations when using eglib, to work around #464316.
8003
8004 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8005
8006         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
8007         return value of GetCurrentDirectory to never access unitialized memory.
8008
8009 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8010
8011         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
8012         return value of GetCurrentDirectory and expand the buffer if needed.
8013
8014         Fixes #459094.
8015
8016 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
8017
8018         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
8019           Adding a call to mono_init_com_types.
8020
8021         Code is contributed under MIT/X11 license.
8022
8023 2009-01-07  Geoff Norton  <gnorton@novell.com>
8024
8025         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
8026         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
8027         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
8028         be the value of the ip buffer.
8029
8030 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8031
8032         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
8033         interfaces_packed here.
8034
8035         Fixes part of #463294.
8036
8037 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8038
8039         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
8040
8041         Fixes part of #463294.
8042
8043 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8044
8045         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
8046         is a boxed complex as well.
8047
8048         Fixes part of #463294.
8049
8050 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8051
8052         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
8053         control if a methodspec should be created for the generic method definition from external assemblies.
8054         Caching of methodspec is done using the handleref hash table.
8055
8056         Fixes #462592.
8057
8058 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
8059
8060         * loader.c (find_method): When searching the interfaces of a class
8061         check the transitive closure of implemented interfaces.
8062
8063         Fixes #463303.
8064
8065 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8066
8067         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
8068         
8069 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8070
8071         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
8072         interfaces calculation to fill_valuetype_array_derived_types.
8073
8074         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
8075         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
8076         for example.
8077
8078         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
8079         interfaces for valuetypes if needed.    
8080
8081         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8082         for their basetype as well. Types are array expanded if rank is > 0.
8083
8084         Fixes #400716.
8085
8086 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
8087
8088         * socket-io.h : Changing the signature of
8089           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8090           the blocking state.
8091
8092         * icall-def.h :  Changing the signature of
8093           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8094
8095         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8096           For Windows only.  Avoid blocking when calling accept by
8097           querying for a connection via select.  The loop also queries
8098           the thread state every 1000 micro seconds for the thread
8099           stop state.  This will avoid the process hanging on shutdown
8100           when using a TcpChannel that is never connected to.
8101
8102         Code is contributed under MIT/X11 license.
8103
8104 2008-12-30  Marek Safar  <marek.safar@gmail.com>
8105
8106         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8107
8108 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8109
8110         * class.c (get_implicit_generic_array_interfaces): Extract common
8111         code to a helper function making it a lot easier on the eyes.
8112
8113 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8114
8115         * class.c (get_implicit_generic_array_interfaces): If the internal
8116         enumerator is an interface inflate System.Object instead of itself.
8117
8118         Fixes #461261.
8119
8120 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
8121
8122         * object.c (mono_runtime_invoke_array): Don't assert with
8123         byref nullable types.
8124
8125         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8126         byref nullables we unbox the object and store it on the
8127         stack. 
8128         We can't use the boxed object since it is the T of Nullable<T>
8129         and the boxed representation of a nullable it's underlying type
8130         or null.
8131         We could cheat and create a boxed nullable and use the same
8132         machinery of other byref VTs but this feels like a hack and
8133         using the stack has the bonus of reducing heap pressure.
8134
8135         Fixes #461941.
8136
8137 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8138
8139         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8140         return value.
8141
8142         Fixes #461867.
8143
8144 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8145
8146         * icall-def.h : Adding an internal call definition for 
8147           System.Environment.internalBroadcastSettingChange.
8148
8149         * icall.c : Adding a Windows only implementation to broadcast a 
8150           WM_SETTINGCHANGE when an environment variable has changed.
8151
8152         Code is contributed under MIT/X11 license.
8153
8154 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8155
8156         * class.c, class-internals.h: Made
8157         mono_class_has_parent_and_ignore_generics() non-static.
8158
8159 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8160
8161         * image.c: deal with the mmap failing when loading an image.
8162
8163 2008-12-17  Geoff Norton  <gnorton@novell.com>
8164
8165         * threadpool.c: Ensure that the io_queue_lock is initialized
8166         in all circumstances, as we always attempt to cleanup against it.
8167
8168 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8169
8170         * icall.c (ves_icall_System_Environment_get_Platform): For
8171         compatibility reasons for existing client code we will keep
8172         returning 4 for a while.   
8173
8174         For how long will depend on the documentation being updated, and
8175         for us to give client code a chance to be updated.
8176
8177         This reverts the original decison on #433108 since we did not
8178         catch roughly 33 instances of the broken code in our own source
8179         code base, we did not catch failures on the buildbots, and QA did
8180         not bring this as a problem.
8181
8182         Only today I found some customer's code breaking due to our own
8183         class libraries not being fully updated and tracked it down to
8184         this change.  I am reverting it because if we could not even get
8185         our story straight in our own code base, how can we hope that our
8186         end user code be fixed?
8187
8188         As of this morning, our Wiki page that documents how to detect
8189         Unix had not been fixed.    
8190
8191 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8192
8193         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8194
8195         * class.c (mono_class_get_fields): Handle loading errors.
8196
8197 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8198
8199         * 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.
8200         
8201 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8202
8203         * mono-perfcounters.c: avoid warning.
8204
8205 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8206
8207         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8208         make sure all interfaces have MonoClass::interface_id set.
8209
8210         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8211         method table is property set.
8212
8213 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8214
8215         * class.c: New function mono_class_setup_interface_id that setup
8216         MonoClass::interface_id if needed.
8217
8218         * class-internals.h: Export new function.
8219
8220 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8221
8222         * class.c: Add code to sanity check the vtable after setup_vtable_general
8223         has done it's work.
8224
8225 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8226
8227         * icall.c: make Assembly.GetExecutingAssembly work properly when
8228         reflection is used to invoke the method.
8229         Bug #321781 fixed.
8230
8231 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8232
8233         * metadata/generic-sharing.c: Look for constraints in all type
8234         arguments, not just the first one.
8235
8236 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8237
8238         * appdomain.c: return the correct CodeBase for an Assembly instance
8239         that was loaded from the shadow-copy directories.
8240         Bug #458190 fixed.
8241
8242 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8243
8244         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8245
8246         * sgen-gc.c (check_object): New debugging helper function.
8247
8248         * object.c: Fix calls to mono_value_copy_array ().
8249
8250 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8251
8252         * class.c (mono_class_setup_fields): If working on an inflated class
8253         first check if the generic definition did init with success.
8254
8255         Fixes #445361.
8256
8257 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8258
8259         pedump.c (main): Fix a warning.
8260
8261 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8262
8263         * object-internals.h : Adding a definition for 
8264           MonoReflectionComVisibleAttribute.
8265
8266         * marshal.c (cominterop_com_visible) :  Method added to check the 
8267           ComVisible attribute of a class.
8268
8269         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8270           cominterop_raise_hr_exception added to consolidate common code 
8271           to raise hr exceptions.
8272
8273         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8274           if a managed class should support IDispatch.
8275
8276         * marshal.c 
8277           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8278           Added additional checks for managed object when getting 
8279           an IDispatch interface.
8280
8281         Code is contributed under MIT/X11 license.
8282
8283 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8284
8285         pedump.c (main): Handle mono_get_method () returning NULL. 
8286
8287 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8288
8289         * marshal.h: Fix a warning.
8290
8291 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8292
8293         * marshal.c : Adding cominterop_release_all_rcws to release all
8294           runtime callable wrappers held by the runtime.
8295
8296         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8297           
8298         Code is contributed under MIT/X11 license.
8299
8300 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8301
8302         * metadata.c (mono_image_alloc_lock): New helper function.
8303         (mono_image_alloc0_lock): Ditto.
8304
8305         * metadata.c: Use the alloc_lock () helper functions for allocating
8306         memory from the image mempool.
8307
8308 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8309
8310         * class.c (mono_class_from_generic_parameter): Document it's
8311         locking behavior. Fix double checked locking here, we stored in
8312         param->pklass a partially initialized MonoClass and no membar was used.
8313
8314 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8315
8316         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8317         (3) functions are present in the C library use them to do the
8318         job. If they are absent, make sure that the sum of int_part and
8319         dec_part is rounded before returning. This is necessary due to the
8320         division of dec_part by the power of 10 before the final addition
8321         is performed - if the result is not rounded in some cases it will
8322         yield invalid results.
8323
8324 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8325
8326         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8327         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8328         instruction instead of a pointer constant.
8329
8330 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8331
8332         * loader.c (mono_method_get_header): Do most of the work outside the
8333         loader lock, to avoid assembly load hook deadlocks.
8334
8335         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8336         (mono_metadata_parse_type_full): Ditto.
8337
8338 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8339
8340         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8341         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8342         funtions. Finally, use a lock to produce well ordered output.
8343
8344         The lock looks silly, as all calls to the corlib mempool should be guarded
8345         with the loader lock, but for some reason this fact doesn't help. 
8346
8347         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8348
8349 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8350
8351         * socket-io.c: 64 bit big-endian fixes.
8352
8353 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
8354
8355         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8356         targets that require strict compatibility between the types.
8357
8358         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
8359         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
8360         Kill the strict argument and create a new one valuetype_must_be_boxed.
8361
8362         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
8363         state that all valuetypes must be boxed.
8364
8365         Fixes #448560.
8366
8367 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
8368
8369         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
8370         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
8371
8372         Contributed under MIT/X11 license.
8373
8374 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
8375
8376         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
8377         the inflate_generic_type machinery should handle it.
8378
8379         This avoids a crash when the field's flags is zero and it's type is
8380         a primitive.
8381         What happens is that mono_metadata_parse_type_full will see that opt_attrs
8382         is zero and will return one of the cached built-in primitive types. Since
8383         those types live in read-only memory, the code that copies it crashes.  
8384
8385 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8386
8387         * object.c: Don't put function descriptors into generalized IMT
8388         thunks.
8389
8390 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8391
8392         * class.c: Enable generic code sharing on PPC64.
8393
8394 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8395
8396         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
8397         from mini/mini.c.
8398
8399         * generic-sharing.c: Allocate the method template slists from the
8400         image mempool so it doesn't leak.
8401
8402 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
8403
8404         * class.c (generic_array_methods): Release the linked list.
8405
8406 2008-11-27  Mark Probst  <mark.probst@gmail.com>
8407
8408         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
8409         invocation to g_utf16_to_utf8().
8410
8411 2008-11-26  Mark Probst  <mark.probst@gmail.com>
8412
8413         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
8414         arguments on big endian archs.
8415
8416 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8417
8418         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
8419         the type name (test added in corlib).
8420
8421 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
8422
8423         * pedump.c: initialize perf. counters. Fixes a segv.
8424
8425 2008-11-25  Martin Baulig  <martin@ximian.com>
8426
8427         * mono-debug-debugger.c
8428         (mono_debugger_runtime_invoke): Return the exception object if an
8429         exception was thrown.  Visual Studio displays the exception object
8430         in the locals window.
8431
8432 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8433
8434         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
8435         ftnptr.
8436
8437 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8438
8439         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
8440         MONO_TYPE_U are sizeof (gpointer), too.
8441
8442 2008-11-24  Mark Probst  <mark.probst@gmail.com>
8443
8444         * marshal.c (mono_type_native_stack_size): Fixed size and
8445         alignment for reference types.
8446
8447 2008-11-23  Mark Probst  <mark.probst@gmail.com>
8448
8449         * class.c (mono_class_generic_sharing_enabled): Disable generic
8450         code sharing for PPC64.
8451
8452 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
8453
8454         * icall.c (mono_method_get_equivalent_method): Make sure
8455         method->klass->methods is inited before looping over it.
8456
8457 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
8458
8459         * object.c: when calling ExecuteAssembly in a newly created domain,
8460         the configuration file and application base are already set up.
8461         Bug #446353 take 2 fixed.
8462
8463 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
8464
8465         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
8466         Fixes #444715. Fix a warning.
8467
8468 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
8469
8470         * appdomain.c: write the full path of the assembly to the .ini file
8471         created when "shadow-copying"
8472         Bug #446353 fixed.
8473
8474 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
8475
8476         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
8477         if signature==FALSE.
8478
8479 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8480
8481         * marshal.h : Fix the cygwin build.
8482            marshal.c:12442: undefined reference to `_IID_IMarshal'
8483           
8484         Code is contributed under MIT/X11 license.
8485
8486 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
8487
8488         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
8489           free threaded marshaler when QueryInterface is called on a COM callable
8490           wrapper requesting the IMarshal interface.
8491           
8492         Code is contributed under MIT/X11 license.
8493
8494 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
8495
8496         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
8497
8498         * reflection.c (mono_type_get_object): Special case the very common
8499         void type.
8500
8501         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
8502         hold typeof(void).
8503
8504 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
8505
8506         * process.h : Adding method declaration for
8507           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8508           
8509         * process.c : Adding implementation for
8510           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8511           
8512         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
8513           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
8514
8515         Code is contributed under MIT/X11 license.
8516
8517 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
8518
8519         * appdomain.c (unload_thread_main): Clean up threadpool by
8520         calling mono_thread_pool_remove_domain_jobs.
8521
8522         * domain-internals.h (struct _MonoDomain): Add new fields to
8523         help coordinate the cleanup of the threadpool.
8524
8525         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
8526         that cleans up the threadpool of all jobs associated with an appdomain.
8527         It does that by cleaning up the queues and making sure all active
8528         threads are accounted.
8529
8530         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
8531         unloaded or in the process of. Take this is such way that there is
8532         no race condition between another thread starting the unload and the
8533         current thread acknowledging it.
8534
8535         * threadpool.c (async_invoke_thread): Same.
8536
8537         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
8538         firing the new thread.
8539
8540         * threadpool.c (start_tpthread): Same.
8541
8542         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
8543
8544         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
8545
8546 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
8547
8548         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8549         Add support for DuplicateHandle.
8550         
8551         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8552         Add support for DuplicateHandle.
8553         
8554         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
8555         Add support for DuplicateHandle.
8556
8557         Code is contributed under MIT/X11 license.
8558
8559 2008-11-06  Mark Probst  <mark.probst@gmail.com>
8560
8561         * class-internals.h: Make min_align into a whole byte.
8562
8563         * class.c: Set min_align for SIMD types to 16.
8564
8565 2008-11-05  Geoff Norton  <gnorton@novell.com>
8566
8567         * attach.c: Default the attacher to enabled for all cases including
8568         embedded.
8569
8570 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
8571
8572         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
8573         change r117650.
8574
8575 2008-11-04  Mark Probst  <mark.probst@gmail.com>
8576
8577         * monitor.c, monitor.h: New function for querying offsets of
8578         members of MonoThreadsSync.
8579
8580 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
8581
8582         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
8583         to speed up this function and to avoid the boundless memory growth caused by
8584         the signature_dup () calls.
8585
8586 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
8587
8588         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
8589         wrapper.
8590
8591         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
8592         by 1 bit.
8593
8594         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
8595
8596 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8597
8598         * appdomain.c:
8599         * domain-internals.h: made mono_set_private_bin_path_from_config()
8600         "internal".
8601         * object.c: call the above function after setting the configuration
8602         file path for the root domain.
8603         Fixes bug #314478.
8604
8605 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
8606
8607         * assembly.c: when the assembly is loaded from an absolute path, end
8608         basedir with a directory separator.
8609         Bug #440781 fixed.
8610
8611 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8612
8613         * monitor.c (mono_monitor_get_fast_enter_method): If
8614         CompareExchange is not available, don't create the fastpath
8615         instead of asserting.  (The method is missing in the 1.1 profile.)
8616
8617 2008-10-30  Mark Probst  <mark.probst@gmail.com>
8618
8619         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
8620
8621         * monitor.c, monitor.h: Code for generating Monitor.Enter and
8622         Monitor.Exit IL fastpaths.
8623
8624 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8625
8626         * class.c (mono_class_create_from_typedef): Added Vector2ul.
8627
8628 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
8629
8630         * class.c (mono_class_create_from_typedef): Added Vector2l.
8631
8632 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
8633
8634         * class.c (mono_class_create_from_typedef): Added Vector2d.
8635
8636 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
8637
8638         * appdomain.c: translate \ into / for cache_path.
8639         * domain-internals.h: new mono_is_shadow_copy_enabled().
8640         * icall.c: (fill_reflection_assembly_name) do the same path
8641         manipulations that get_code_base does.
8642         (get_code_base) use mono_is_shadow_copy_enabled.
8643
8644 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
8645
8646         * appdomain.c: shadow-copied assemblies go to CachePath +
8647         ApplicationName when both are set. DynamicBase has nothing to do with
8648         shadow copies.
8649         Bug #406877 fixed.
8650
8651 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
8652
8653         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
8654         STANDALONESIG table.
8655
8656         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
8657         standalone signatures.
8658
8659         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
8660         comparison code: instead of comparing the signatures using a custom
8661         equals function, transform them to a common signature and compare that. This
8662         works better with AOT.
8663
8664 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
8665
8666         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
8667
8668         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
8669         call for generic instances.
8670         (mono_class_setup_properties): Call setup_properties () before accessing
8671         gklass->properties.
8672
8673         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8674         over the virtual methods of a class using metadata if possible, avoiding the
8675         creation of MonoMethod's for non-virtual methods.
8676         
8677         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8678         get_virtual_methods () to iterate over the virtual methods of classes.
8679
8680 2008-10-25  Martin Baulig  <martin@ximian.com>
8681
8682         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
8683
8684 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8685
8686         * class.c (mono_class_create_from_typedef): Added Vector4i.
8687
8688 2008-10-24  Mark Probst  <mark.probst@gmail.com>
8689
8690         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
8691         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
8692         special-casing applies to eliminate the call completely.
8693
8694 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
8695
8696         * class.c (mono_class_create_from_typedef): Added Vector8s.
8697
8698 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
8699
8700         * class.c (mono_class_create_from_typedef): Added Vector16sb.
8701
8702 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8703
8704         * icall.c: get rid of annoying warning.
8705
8706 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8707
8708         * threadpool.c: in 1.x, if you change the background status of the
8709         threadpool thread, it's not reset.
8710         Remove unnecessary calls to SetState.
8711
8712 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8713
8714         * threadpool.c: asynchronously create a set of idle threads upon first
8715         use of the threadpool. SetMinThreads will now start the appropriate
8716         number of idle threads if they are not already running. The default is
8717         1 threadpool thread per CPU. Increased the maximum number of threads
8718         per CPU to 10.
8719
8720 2008-10-22  Martin Baulig  <martin@ximian.com>
8721
8722         Revert r116521 from Zoltan, it breaks the debugger:
8723
8724         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8725         over the virtual methods of a class using metadata if possible, avoiding the
8726         creation of MonoMethod's for non-virtual methods.
8727         
8728         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8729         get_virtual_methods () to iterate over the virtual methods of classes.
8730
8731 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8732
8733         * threads.c: when creating a threadpool thread, set its state to
8734         'background'.
8735         * threadpool.c: reset the background state of a threadpool thread
8736         after finishing each work item
8737         Bug #437888 fixed.
8738
8739 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8740
8741         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
8742         
8743         * class.c (mono_class_setup_vtable_general): Add an optimized version for
8744         generic instances which works by inflating the methods in the container
8745         class's vtable.
8746
8747         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
8748         variant which doesn't make a copy if no inflation was done.
8749         (mono_class_setup_fields): Use it.
8750
8751         * metadata.c (mono_metadata_get_shared_type): New helper function to
8752         return a shared instance of a given MonoType.
8753
8754         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
8755         a copy of most non-generic types.
8756
8757 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
8758
8759         * threadpool.c: remove one more GetSystemInfo () call.
8760
8761 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
8762
8763         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
8764         use the code in mono-proclib.h to get processor information.
8765
8766 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8767
8768         * appdomain.c: fixed the logic that determines whether assemblies in a
8769         directory are "shadow-copied" or not. Bug #433483 fixed.
8770
8771 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8772
8773         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
8774         warning.
8775
8776 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8777
8778         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
8779         returning a vtype.
8780
8781         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
8782         reflection.c: Use mono_field_get_name () for accessing a field's name.
8783
8784         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
8785         class.c
8786
8787         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
8788         field.
8789
8790         * loader.c (find_method_in_class): Reenable the metadata optimization by
8791         not using it for generic instances.
8792
8793         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
8794         data/def_type fields from MonoClassField into a separate structure.
8795         (struct MonoClassField): Remove data/def_type fields.
8796         (struct _MonoClass): Add a 'field_def_values' array to store the default
8797         values/RVA for fields.
8798
8799         * class.c reflection.c: Update after the changes.
8800         
8801         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
8802         for accessing field->data.
8803
8804         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
8805
8806         * loader.c (find_method_in_class): Revert the last change for now as
8807         it breaks Mono.C5 unit tests.
8808
8809         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
8810         'field_generic_types' and 'field_objects' which contain the information
8811         previously stored in MonoInflatedField.
8812         (MonoInflatedField): Delete.
8813         (struct _MonoClassField): Delete 'generic_info' field.
8814
8815         * reflection.c: Store the information which was previously in 
8816         field->generic_info in MonoDynamicGenericClass instead.
8817
8818         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
8819         MonoClassField changes.
8820
8821 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
8822
8823         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
8824         store the value inside the data array of the MonoMethodWrapper.
8825         This saves memory, is faster and fixes the lifetime issues (methods
8826         were never removed from the hash previously). May also fix bug#436996.
8827
8828 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8829
8830         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
8831         generic instances, compute the type from the generic definition instead of
8832         looking in field->generic_info.
8833
8834         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
8835         for inflated fields, the only user was get_fieldref_token () which no
8836         longer needs it.
8837
8838         * class.c (mono_class_init): Revert the last change as it seems to cause
8839         crashes.
8840
8841         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
8842         bytes on 64 bit platforms.
8843
8844         * object.c (mono_class_create_runtime_vtable): Fix a warning.
8845         
8846         * object.c (mono_class_create_runtime_vtable): Don't initalize
8847         field->data/field->def_type here, it is done lazily by 
8848         mono_class_get_field_default_value ().
8849
8850         * icall.c (ves_icall_get_enum_info): Call 
8851         mono_class_get_field_default_value () instead of directly accessing
8852         field->data and field->def_type.
8853
8854         * object.c (get_default_field_value): Ditto.
8855
8856         * class.c (mono_field_get_data): Ditto.
8857         
8858         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
8859         call for generic instances.
8860
8861         * loader.c (find_method_in_class): If klass != from_class, then inflate
8862         the method with the context of from_class, since the caller assumes this.
8863
8864 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
8865
8866         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
8867         for accessing method->slot.
8868
8869 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
8870
8871         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
8872
8873 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
8874
8875         * class.c (mono_method_get_vtable_index): Use
8876         mono_method_get_vtable_slot () for accessing method->slot.
8877
8878         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
8879         accessing klass->methods.
8880
8881         * class.c (mono_method_get_vtable_slot): New helper function.
8882         (mono_class_get_vtable_entry): Ditto.
8883         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
8884         accessing method->slot.
8885
8886         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
8887         method to get_inflated_method ().
8888
8889         * class.c (mono_class_get_inflated_method): New helper method to obtain
8890         a method of an inflated class without calling setup_methods ().
8891         (mono_class_get_cctor): Use get_inflated_method.
8892
8893         * generic-sharing.c (mono_class_get_method_generic): Ditto.
8894         
8895         * marshal.c image.c: Lazily create all the marshal caches.
8896
8897         * image.c (mono_image_init): Move initialization of runtime_invoke
8898         caches to marshal.c.
8899
8900         * marshal.c (get_cache): New helper function to lazily initialize a 
8901         wrapper cache.
8902         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
8903
8904         * debug-helpers.c (mono_method_full_name): Include generic arguments.
8905
8906 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
8907
8908         * loader.c: fixed check for interface type.
8909
8910 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
8911
8912         * appdomain.c: check for NULL setup before it's referenced.
8913
8914 p
8915 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
8916
8917         * class.c: remove the unused old vtable setup code.
8918
8919 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
8920
8921         * class.c: don't depend on interface order in
8922         setup_interface_offsets (bug #435777).
8923         * reflection.c: sort the InterfaceImpl table (patch from
8924         Jb Evain  <jbevain@novell.com>).
8925
8926 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
8927
8928         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
8929         the low level assemblies lock.
8930
8931 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
8932
8933         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
8934         object.c, reflection.c, socket-io.c, threads.c: introduced
8935         mono_framework_version () to return the major framewrok version,
8936         changed the code that was using more complex patterns to use it.
8937         Return the correct value for PlatformID for OSX.
8938
8939 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
8940
8941         * icall-def.h, process.h, process.c: added an icall to get info about
8942         processes using mono-proclib.
8943
8944 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
8945
8946         * mono-perfcounters.c: use the mono-proclib functions to
8947         access process information.
8948
8949 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
8950
8951         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
8952         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
8953         reflection.c: remove rawbuffer usage: mmap support is more sanely
8954         provided by utils/mono-mmap.
8955
8956 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
8957
8958         * gc.c: use posix semaphores when possible so that
8959         mono_gc_finalize_notify() is signal safe.
8960
8961 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
8962
8963         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
8964         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
8965         be #ifdef-ed out, the linker will remove the rest.
8966
8967         * marshal.c: Implement DISABLE_COM.
8968
8969         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
8970
8971 2008-10-11  Miguel de Icaza  <miguel@novell.com>
8972
8973         * locales.c (string_invariant_compare_char): Optimization: do not
8974         call g_unichar_type unless we actually need the information.
8975
8976 2008-10-10  Mark Probst  <mark.probst@gmail.com>
8977
8978         * object.c, class-internals.h: Also create remoting trampolines
8979         for generic methods.  Pass the domain to the remoting trampoline
8980         creation function, too.
8981
8982 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
8983
8984         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
8985
8986 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8987
8988         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
8989         Vector4ui.
8990
8991 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8992
8993         * assembly.c:
8994         * locales.c: remove the use of g_strdown. Fixes bug #322313.
8995
8996 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
8997
8998         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
8999         for the least possible amount of time (extending the fix in r113458).
9000
9001 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9002
9003         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
9004
9005 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9006
9007         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
9008         as possible simd intrinsic types.
9009         Optimized the test to check for the common prefix first.
9010
9011 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
9012
9013         * class.c: back out part of a broken optimization committed on
9014         May 23th (bug #433908).
9015
9016 2008-10-09  Mark Probst  <mark.probst@gmail.com>
9017
9018         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
9019         Win32.  Should fix #432388 for most cases until we have the new
9020         profiler on Win32.
9021
9022 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9023
9024         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
9025         instead of using inst->id so the hash is stable for AOT.
9026
9027 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
9028
9029         * appdomain.c:
9030         * icall.c: create a .ini file for shadow-copied assemblies that
9031         contains the location of the original assembly. Use this to return the
9032         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
9033         Also fix the number of '/' for windows when returning the CodeBase.
9034         Fixes bug #430920.
9035
9036 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9037
9038         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
9039
9040         Code is contributed under MIT/X11 license.
9041
9042 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9043
9044         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
9045           if if the class vtable needs initialized.
9046
9047         Code is contributed under MIT/X11 license.
9048
9049 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9050
9051         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
9052           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
9053           STRING->BSTR, and CLASS->INTERFACE.
9054
9055         Code is contributed under MIT/X11 license.
9056
9057 2008-10-07  Marek Habersack  <mhabersack@novell.com>
9058
9059         * sysmath.h: changed the declaration of the
9060         ves_icall_System_Math_Round2 icall by adding an extra
9061         away_from_zero parameter.
9062
9063         * sysmath.c (ves_icall_System_Math_Round2): added support for
9064         away from zero rounding. The icall now takes an extra boolean
9065         parameter to signal that away from zero operation is requested.
9066
9067 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9068
9069         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
9070         the delegate klass so it can work with full-aot.
9071         (mono_marshal_get_delegate_end_invoke): Ditto.
9072         (mono_marshal_get_delegate_invoke): Ditto.
9073
9074 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
9075
9076         * gc.c, attach.h, attach.c: remove a bad pattern:
9077         add_finalizer_callback () is not implemented correctly, it can't
9078         without adding more overhead to the finalizer loop and it's not
9079         even needed, since we know exactly what we need to call, so there is
9080         no need to do so through an expensive function pointer.
9081
9082 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
9083
9084         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9085         for the no-gc case.
9086         * attach.c (mono_attach_init): Remove the #ifdef.
9087
9088 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
9089
9090         * attach.c (mono_attach_init): Don't use
9091         mono_gc_add_finalizer_thread_callback when compiling without GC.
9092         Fixes #432306.
9093         
9094         Code is contributed under MIT/X11 license.
9095
9096 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9097
9098         * class.c (mono_class_create_from_typedef): Remove the 
9099         #ifndef DISABLE_SIMD stuff.
9100
9101 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9102
9103         * class-internals.h (MonoClass): Added simd_type bit field.
9104
9105         * class.c (mono_class_create_from_typedef): Check if type is a simd
9106         intrinsic.
9107
9108 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9109
9110         * object.c (mono_method_add_generic_virtual_invocation): Only add
9111         instantiations to the thunk whose count is at least as large as
9112         the threshold.
9113
9114 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9115
9116         * icall.c: changed the Type of the exception thrown when trying to
9117         invoke a constructor on an abstract class. Part of the fix for bug
9118         #324185.
9119
9120 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9121
9122         * class.c, class-internals.h (mono_method_get_vtable_index): New
9123         function which returns the index into the vtable and properly
9124         handles inflated virtual generic methods.
9125
9126 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9127
9128         * object.c, domain.c, object-internals.h, domain-internals.h:
9129         Generalize IMT thunk machinery to also handle thunks for virtual
9130         generic method invokes.  When a virtual generic method is invoked
9131         more than a number of times we insert it into the thunk so that it
9132         can be called without lookup in unmanaged code.
9133
9134         * generic-sharing.c, class-internals.h: Fetching a
9135         MonoGenericInst* for a method from an (M)RGCTX.
9136
9137 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9138
9139         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9140         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9141         marshalling. Fixes #431304.
9142
9143 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9144
9145         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9146           handle when ref is specified without In or Out.
9147
9148         Code is contributed under MIT/X11 license.
9149
9150 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9151
9152         * loader.c (mono_get_method_constrained): Don't expand method with
9153         the class's context, because it's already a method of that class.
9154
9155 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9156
9157         * attach.c : should be correct build fix.
9158
9159 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9160
9161         * attach.c: Fix the previous change.
9162
9163 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9164
9165         * attach.c : quick w32 build fix.
9166
9167 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9168
9169         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9170         crashes MonoDevelop: #430455.
9171
9172 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9173
9174         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9175         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9176
9177         * domain.c: Remove initialization/cleanup of the removed fields.
9178
9179 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9180
9181         * class.c (mono_class_generic_sharing_enabled): Enable generic
9182         code sharing for PPC.
9183
9184 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9185
9186         * attach.c : Fixing the Windows builds.
9187
9188         Code is contributed under MIT/X11 license.
9189
9190 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9191
9192         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9193         the default generic sharing mode to 'all'.
9194
9195 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9196
9197         * generic-sharing.c, class-internals.h: New function for checking
9198         whether a method needs a static RGCTX invoke wrapper.  A few
9199         funtions moved from mini/generic-sharing.c.
9200
9201         * icall.c: New function used.
9202
9203 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9204
9205         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9206         Static RGCTX invoke wrapping applies to value type methods, too.
9207
9208         * class.c (mono_class_setup_vtable_general): In generic-shared
9209         value types, wrap methods with a static RGCTX invoke wrapper.
9210
9211 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9212
9213         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9214         osx build.
9215
9216 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9217
9218         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9219         register a callback which is called when the finalizer thread is woken
9220         up.
9221         (finalizer_thread): Call the callback if it exists.
9222
9223         * attach.h attach.c: New files, implementing the attach mechanism.
9224
9225         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9226         
9227         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9228         by the previous change.
9229
9230 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9231
9232         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9233         loader.c, marshal.c, metadata-internals.h, metadata.c,
9234         method-builder.c, object.c, reflection.c: introduced specific functions
9235         to allocate from the domain and image mempools and cleaned up most of
9236         the code to use them (still missing a few in reflection.c).
9237         Keep the loader bytes counter updated.
9238
9239 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9240
9241         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9242         loader-related counters.
9243
9244 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9245
9246         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9247         added more MS-compatible counters.
9248
9249 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9250
9251         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9252         class->blittable. Fixes #428217.
9253
9254 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9255
9256         * reflection.c (mono_image_get_field_on_inst_token): Call 
9257         field_encode_signature () since that handles custom modifiers too.
9258         Fixes #424663.
9259
9260 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9261
9262         * reflection.c (add_custom_modifiers): New helper function to merge custom
9263         modifiers stored in objects to a MonoType.
9264         (fieldref_encode_signature): Encode custom modifiers.
9265         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9266         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9267
9268 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9269
9270         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9271         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9272         64-bit IL only images because imports are not resolved for IL only images.
9273         Special thanks to Bill Holmes for finding this bug and testing the patch.
9274         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9275
9276         Contributed under MIT/X11 license.
9277
9278 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9279
9280         * mono-config.c (dllmap_start): Add support for the bits keyword
9281         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9282
9283 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9284
9285         * reflection.c (inflate_mono_method): When the class the method is
9286         to be inflated for is itself not inflated, just return the method.
9287
9288 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9289
9290         * mono-perfcounters.c: use more user friendly process instance names.
9291
9292 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9293
9294         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9295           handle "[in] ref" and "[in][out] ref" cases.
9296
9297         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9298           to mono_mb_create_method.  This was causing problems calling native to
9299           managed passing Variants by value.
9300
9301         Code is contributed under MIT/X11 license.
9302
9303 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9304
9305         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9306         before accessing the friend_assembly_names field.
9307
9308         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9309         times.
9310         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9311         called lazily when it is needed.
9312
9313         * metadata-internals.h (struct _MonoAssembly): Add 
9314         'friend_assembly_names_inited' flag.
9315
9316 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9317
9318         * mono-perfcounters-def.h: fix the types of a few counters.
9319         * mono-perfcounters.c: implemented the instance names getter
9320         and a few bugfixes.
9321
9322 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9323
9324         * culture-info-table.h : regenerated.
9325
9326 2008-09-17  Robert Jordan  <robertj@gmx.net>
9327
9328         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9329         context bound objects. Fixes #415577.
9330
9331         Code is contributed under MIT/X11 license.
9332
9333 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9334
9335         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9336         implementation (bug #423582).
9337
9338 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9339
9340         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9341         is not set. Fixes #426309.
9342
9343 2008-09-16  Jb Evain  <jbevain@novell.com>
9344
9345         * class.c (mono_class_from_name): fix the exported type look up
9346         when the type is defined in a referenced assembly.
9347
9348 2008-09-16  Jb Evain  <jbevain@novell.com>
9349
9350         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9351         increment the next index counter on each iteration to make that work
9352         for more than one type forwarder. Unmanaged part to fix #422929.
9353
9354 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9355
9356         * object-internals.h: enum ComInterfaceType in
9357         MonoInterfaceTypeAttribute is guint32, not guint16.
9358
9359 2008-09-12  Mark Probst  <mark.probst@gmail.com>
9360
9361         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
9362         writing code.
9363
9364 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9365
9366         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
9367         not gboolean.
9368
9369 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9370
9371         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
9372         Endianness fixes for MonoSymbolFileOffsetTable.
9373
9374 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9375
9376         * process.c (complete_path) : Removing quotes from the 
9377           input path.  The glib file routines do not handle file paths
9378           that have quotes around them.
9379
9380         Code is contributed under MIT/X11 license.
9381
9382 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9383
9384         * socket-io.h : Adding a comment to provide locations where 
9385           changes to MonoSocketAsyncResult need to be synced.
9386
9387         Code is contributed under MIT/X11 license.
9388
9389 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
9390
9391         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
9392         parameters as well. Fixes #425001.
9393
9394 2008-09-08  Miguel de Icaza  <miguel@novell.com>
9395
9396         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
9397         windows build.
9398
9399 2008-09-07  Miguel de Icaza  <miguel@novell.com>
9400
9401         * console-io.c: Add support for tracking the window size if it
9402         changes.
9403
9404         The setup is very simple: the TtySetup function will now return a
9405         pointer to a location in memory that tracks the current console
9406         size.  The managed code checks its current value every time its
9407         queried against the last value set, and updates accordingly.
9408
9409         With this setup we can work with multiple consoles, and we do not
9410         require to poke into managed code from a signal handler.
9411
9412         Additionally, the environment for COLUMNS and LINES is now handled
9413         in unmanaged code.
9414
9415         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
9416
9417 2008-09-07  Mark Probst  <mark.probst@gmail.com>
9418
9419         * marshal.c (mono_type_native_stack_size): Treat
9420         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
9421
9422 2008-09-04  Jb Evain  <jbevain@novell.com>
9423
9424         * class.c (mono_class_is_assignable_from): fix assignability of nullables
9425         to nullables.
9426
9427 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
9428
9429         * verify.c (verify_type_compatibility_full): Revert change
9430         to allow converting a native int to unmanaged pointer be verifiable
9431         under non-strict mode.
9432         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
9433
9434         * verify.c: Added some TODOs.
9435
9436 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
9437
9438         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
9439           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
9440           Changed to use GlobalAlloc for the memory returned on Windows platforms.
9441
9442         Code is contributed under MIT/X11 license.
9443
9444 2008-09-02  Jb Evain  <jbevain@novell.com>
9445
9446         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
9447
9448 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
9449
9450         reflection.c (typebuilder_setup_fields): Handle classes with
9451         explicit size.
9452
9453 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
9454
9455         class.c (mono_class_setup_events): Add memory barrier due to
9456         double checked locking.
9457         
9458         class.c (mono_class_setup_properties): Same.
9459
9460 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
9461
9462         * class.c (mono_class_is_assignable_from): Fix the build.
9463         
9464         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
9465         before accessing klass->interface_bitmap. Fixes #421744.
9466
9467 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
9468
9469         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
9470         the runtime into no-exec mode, useful when running the AOT compiler.
9471
9472         * appdomain.c gc.c object.c: Avoid executing managed code when running
9473         in no-exec mode.
9474         
9475         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
9476
9477         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
9478         special case when the mono_assembly_loaded () returns NULL because the 
9479         search hook is not installed.
9480
9481 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
9482
9483         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
9484         crashes in bstr marshalling on linux.
9485
9486 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9487
9488         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
9489         with more than one parameter.
9490
9491 2008-08-24  Miguel de Icaza  <miguel@novell.com>
9492
9493         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
9494         start/stop flow control as well when turning off ICANON (allows
9495         C-s and C-q to be read by Console.ReadKey).
9496
9497 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
9498
9499         * class.c (mono_class_init): Move the initialization of nested classes
9500         into mono_class_get_nested_types (). Fixes #418433.
9501
9502         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
9503         flag.
9504
9505         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
9506         iterating tough the nested classes of a class.
9507
9508 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
9509
9510         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
9511         on arm.
9512
9513 2008-08-22  Miguel de Icaza  <miguel@novell.com>
9514
9515         * console-io.c (sigcont_handler): Support signal chaining for
9516         SIGCONT.
9517
9518         (console_set_signal_handlers): Use best practices with sigaction,
9519         clear the structure before using it. 
9520
9521 2008-08-22  Robert Jordan  <robertj@gmx.net>
9522
9523         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
9524         Fix the Windows build.
9525
9526 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
9527
9528         * class.c (mono_class_generic_sharing_enabled): Make the default
9529         sharing mode 'corlib'.
9530
9531 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
9532
9533         * console-io.c (console_set_signal_handlers): Fix a warning.
9534
9535         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
9536         method normally, the JIT will take care of avoiding recursion.
9537
9538 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
9539
9540         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
9541
9542         Code is contributed under MIT/X11 license.
9543
9544 2008-08-20  Miguel de Icaza  <miguel@novell.com>
9545
9546         * console-io.c (sigcont_handler): We need to restore the entire
9547         termios state, not only the original settings, as things like echo
9548         can be controlled after this (Booish exposes this issue with its
9549         own ReadLine implementation).
9550
9551         Additionally, we need to set the terminal back into keypad_xmit
9552         mode.
9553         
9554         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
9555         string as a paramter as well.   Otherwise we get different
9556         keyboard sequences.
9557
9558 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
9559
9560         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
9561         delegates with byref out parameter passing. Fixes #351520.
9562
9563         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
9564         a generic context.
9565         (mono_type_get_desc): Add the type arguments for GENERICINST.
9566         (mono_method_full_name): Stringify the class name using mono_type_full_name
9567         so it picks up generic arguments.
9568
9569 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
9570
9571         * console-io.c: Removed debug output.
9572
9573 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
9574
9575         reflection.c (mono_reflection_create_runtime_class): Alloc
9576         the nested classes linked list using the dynamic image mempool.
9577         Fixes leak in corlib compilation.
9578
9579 2008-08-19  Miguel de Icaza  <miguel@novell.com>
9580
9581         * console-io.c: Fix incredibly annoying behavior on the console
9582         after resuming execution after control-z.   This affected every
9583         console application.
9584
9585 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
9586
9587         * mempool-internals.h: Header for mono private mempool functions. The first
9588         two function are for allocating glib linked lists using pools.
9589
9590         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
9591
9592         * Makefile.am: Added mempool-internals.h.
9593
9594 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
9595
9596         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
9597         (mono_domain_free): Ditto.
9598
9599         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
9600         be used by the JIT to store its domain-specific information, instead of putting
9601         it directly into MonoDomain.
9602
9603         * domain.c (mono_install_create_domain_hook): New helper function to install
9604         a hook which initializes domain->runtime_info.
9605
9606         * domain.c (mono_install_free_domain_hook): Ditto.
9607         
9608 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
9609
9610         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
9611         asserting if the ares parameter is null.
9612
9613         * mono-perfcounters.c: Fix warnings.
9614
9615         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
9616         is not needed, don't check for interruptions either.
9617         (mono_marshal_get_delegate_end_invoke): Ditto.
9618
9619 2008-08-15  Marek Habersack  <mhabersack@novell.com>
9620
9621         * mono-perfcounters.c (predef_readonly_counter): added support for
9622         reading the ASP.NET Requests Queued counter from another process.
9623
9624 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
9625
9626         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
9627         MonoImage to simplify the AOT code.
9628
9629 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
9630
9631         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
9632         marshalling. Fixes #416078.
9633
9634 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9635         
9636         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
9637         it is set, looking up the icall address is deferred to the JIT, since 
9638         in embedded scenarios, the icall might not be registered in the runtime
9639         doing the AOT compilation. Backported from the 2.0 branch.
9640
9641 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
9642
9643         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
9644         Fixes #415621.
9645
9646 2008-08-05  Marek Habersack  <mhabersack@novell.com>
9647
9648         * Makefile.am: added support for cross-compilation.
9649
9650 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
9651
9652         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
9653
9654 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9655
9656         * mono-perfcounters.c: jitted methods and jitted bytes counters.
9657
9658 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
9659
9660         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
9661         mono-perfcounters.c: performance counters implementation.
9662
9663 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
9664
9665         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
9666         to gpointer, letting the AOT code decide what to store in it.
9667
9668 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
9669
9670         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
9671           mono_class_setup_methods if the methods are not initialized.
9672
9673         Code is contributed under MIT/X11 license.
9674
9675 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9676
9677         * verify.c: Remove some debug code I commited by accident.
9678
9679         * verify.c (mono_method_is_valid_in_context): Change the return value
9680         to make possible to distinguish between invalid and unverifiable.
9681
9682         * verify.c (verifier_load_method): Don't return NULL for unverifiable
9683         methods.
9684
9685 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9686
9687         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
9688         constraints. Fixes regression in gtest-253.
9689
9690 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
9691
9692         * verify.c (mono_verifier_verify_class): Don't allow generic types
9693         with explicit layout.
9694
9695         * verify.c (mono_method_verify): Check locals and argument types.
9696
9697 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
9698
9699         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
9700         wait if the thread is in StopRequested state.
9701
9702         * class.c (mono_class_from_name): Refactor the module searching code into
9703         a separate function so it can be reused in the AOT case too.
9704
9705 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
9706
9707         * verify.c (mono_type_is_valid_in_context): Improve the error message.
9708         Check both the type and it's generic type definition for loader errors.
9709         
9710         * verify.c (mono_method_is_valid_in_context): Don't generate another
9711         error when a type errors occur, this leads to the wrong exception been
9712         thrown.
9713
9714 2008-07-28  Dick Porter  <dick@ximian.com>
9715
9716         * icall-def.h
9717         * process.c
9718         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
9719         New internal calls to duplicate and close a process handle.
9720
9721 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
9722
9723         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
9724
9725 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
9726
9727         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
9728
9729 2008-07-27  Robert Jordan  <robertj@gmx.net>
9730
9731         * class.c (mono_class_init): Don't compute class.has_finalize for
9732         valuetypes. Fixes #412477.
9733
9734 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
9735
9736         * verify.c: Implement constraint equivalence checking.
9737         This is required when a generic parameter is used as
9738         argument to a constrained one.
9739
9740         Fixes #410637.
9741
9742 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
9743
9744         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9745
9746         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
9747
9748         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
9749         synch with managed object layout.
9750
9751 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9752
9753         * verify.c (do_branch_op): Handle valuetypes and generic
9754         arguments properly.
9755
9756         * verify.c (do_cmp_op): Same.
9757
9758         Fixes #410383.
9759
9760 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9761
9762         * generic-sharing.c: Fix memory leaks.
9763
9764         * class.c, class-internals.h: Make
9765         mono_class_inflate_generic_type_with_mempool() non-static.
9766
9767 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9768
9769         * pedump.c (dump_verify_info): Dump full class name.
9770
9771 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9772
9773         * generic-sharing.c: Removed some old code that didn't do anything.
9774
9775 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
9776         * profiler.c: Added runtime_initialized_event,
9777         mono_profiler_install_runtime_initialized and
9778         mono_profiler_runtime_initialized. This new hook tells the profiler
9779         when the runtime is sufficiently initialized to be able to call
9780         mono_thread_attach on the root appdomain.
9781         * profiler.h, profiler-private.h: Likewise.
9782
9783 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9784
9785         * verify.c (do_cast): Do boxing for generic arguments as well.
9786
9787         * class.c (is_nesting_type): Drop generic instantiations before
9788         checking for nesting.
9789
9790         * class.c (can_access_instantiation): Allow access to generic
9791         arguments.
9792
9793 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9794
9795         * verify.c (verify_class_for_overlapping_reference_fields):
9796         On some cases, the field size might be zero, guard against that.
9797         Fix the explicit layout check to work as expected.
9798
9799 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
9800
9801         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
9802         mono_thread_resume () during shutdown, since the thread we want to abort
9803         might be suspended.
9804
9805 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
9806
9807         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
9808         warning.
9809
9810         * debug-mono-symfile.c: Fix a warning.
9811
9812         * mono-perfcounters.c (get_cpu_times): Fix a warning.
9813
9814         * object.c (mono_class_vtable): Check if exception_type is set, and return
9815         NULL as defined by the function comments.
9816
9817 2008-07-22  Mark Probst  <mark.probst@gmail.com>
9818
9819         * mempool.c: Use malloc for every single mempool allocation if the
9820         configure option is set.  This makes it easier to track mempool
9821         allocations with tools like Valgrind.
9822
9823 2008-07-22  Jb Evain  <jbevain@novell.com>
9824
9825         * reflection.c (create_dynamic_mono_image): emit the same
9826         metadata version that SL2 does when creating a SL2 image.
9827
9828 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
9829
9830         * icall-def.h:
9831         * icall.c: New icall System.Enum:get_hashcode. This function
9832         avoids the overhead of boxing the enum to the underlying type.
9833
9834 2008-07-21  Mark Probst  <mark.probst@gmail.com>
9835
9836         * reflection.c (mono_method_get_object): Don't let static RGCTX
9837         invoke wrappers get into MonoReflectionMethods.
9838
9839 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
9840
9841         * object-internals.h:
9842         * object.c: New mono_runtime_class_init_full function
9843         that makes throwing the exception optinal.
9844
9845         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
9846         for the case where the exception object is supplied.
9847
9848 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
9849
9850         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
9851         old ld versions.
9852
9853         Contributed under MIT/X11 license.
9854
9855 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
9856
9857         * string-icalls.c (ves_icall_System_String_InternalSplit):
9858         Optimize array allocation by caching the MonoClass of the
9859         array type.
9860
9861         * icall.c (ves_icall_Type_GetMethodsByName): Same.
9862
9863         * reflection.c (mono_param_get_objects): Same.
9864
9865 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
9866
9867         * icall-def.h:
9868         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
9869         It inflates the given type using the class context.
9870
9871 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
9872
9873         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
9874         the vtable if it already exists.
9875
9876         * object-internals.h: Add mono_class_try_get_vtable as part of the
9877         internal API.
9878
9879         * reflection.c (mono_type_get_object): Use the MonoObject from the
9880         vtable when possible. Reduces locking contention on reflection heavy
9881         code.
9882
9883 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
9884
9885         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
9886         g_bit_nth_msf () since that macro is not implemented in eglib.
9887
9888 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
9889
9890         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
9891         on platforms which do not support it.
9892
9893 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
9894
9895         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
9896
9897 2008-07-11  Martin Baulig  <martin@ximian.com>
9898
9899         * mono-debug-debugger.h
9900         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
9901
9902         * mono-debug-debugger.c
9903         (_mono_debugger_interruption_request): New global volatile variable.
9904         (mono_debugger_check_interruption): New public function.
9905
9906         * threads.c
9907         (mono_thread_current_check_pending_interrupt): Call
9908         mono_debugger_check_interruption().
9909         (mono_thread_interruption_checkpoint_request): Likewise.
9910
9911 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9912
9913         * verify.c: Add more type checks for loaded types. Verify the result
9914         handle from ldtoken.
9915
9916 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9917
9918         * loader.c (field_from_memberref): Don't crash if the field
9919         wasn't found.
9920
9921 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9922
9923         * verify.c: Verify if type and method instantiations
9924         don't have invalid VAR or MVAR arguments.
9925
9926 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9927
9928         * verify.c: Fix double free of function pointer list.
9929
9930 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9931
9932         * object.c (mono_string_to_utf8): Comment the new code as it
9933         breaks under eglib.
9934
9935 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
9936
9937         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
9938
9939 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
9940
9941         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
9942           is not throw too many times.
9943
9944         Code is contributed under MIT/X11 license.
9945
9946 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
9947
9948         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
9949         debugging is turned off.
9950
9951 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
9952
9953         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
9954
9955 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9956
9957         * class-internals.h, class.c: Added new generic sharing option:
9958         Share only stuff in System.Collections.Generic, which is now the
9959         default.
9960
9961 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9962
9963         * generic-sharing.c, class-internals.h: New function for getting a
9964         generic method in a generic class given the corresponding method
9965         for a different instantiation of the class.  Partly refactored
9966         from mini-trampolines.c.
9967
9968         * class.c: Make sure generic methods have a class_inst if they are
9969         part of a generic class.
9970
9971         * metadata.c (mono_type_stack_size_internal): Handle type
9972         variables.
9973
9974 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9975
9976         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
9977         Signifies whether information on the this/vtable/mrgctx variable
9978         is available.
9979
9980 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9981
9982         * object.c, object-internals.h, icall.c: New function
9983         mono_delegate_ctor_with_method(), which does the same as
9984         mono_delegate_ctor(), but takes an explicit method argument
9985         instead of taking the method from the jit info.
9986
9987         * marshal.c: When creating a delegate with an inflated method take
9988         the "this" argument as the target class for the castclass.
9989
9990 2008-07-03  Mark Probst  <mark.probst@gmail.com>
9991
9992         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
9993         mono_jit_info_table_find() to perform very badly in some cases.
9994
9995 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
9996
9997         * icall.c (type_from_typename): Handle 'string'.
9998
9999         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
10000         wrappers into the wrapper_hash, since the key is not a MonoMethod.
10001
10002 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
10003
10004         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
10005
10006         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
10007         number of available managed allocator types.
10008
10009         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
10010         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
10011
10012 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
10013
10014         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
10015         which is a low level lock protecting just the 'jit_code_hash' hash table.
10016
10017         * domain.c: Initialize+cleanup jit_code_hash_lock.
10018         
10019 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10020
10021         * coree.c (mono_load_coree): Set coree_module_handle global variable only
10022         after initialization.
10023
10024         * coree.h: Make MonoFixupExe internal.
10025
10026         Contributed under MIT/X11 license.
10027
10028 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10029
10030         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
10031         because that is platform independent. Check NumberOfRvaAndSizes in PE32
10032         as well.
10033         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
10034         image being loaded is a CLI image and _CorValidateImage gets called.
10035
10036         * coree.h: Add MonoLoadImage.
10037
10038         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
10039         instead of LoadLibrary.
10040
10041         Contributed under MIT/X11 license.
10042
10043 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
10044
10045         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
10046         for any primitive type.
10047
10048 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
10049
10050         * object.c (mono_array_new_specific): Optimize this and the other allocation
10051         functions a bit.
10052         
10053         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
10054         domains too if mono_dont_free_domains is set.
10055
10056         * domain-internals.h (mono_dont_free_domains): New internal option controlling
10057         whenever to free appdomain data after it has been unloaded.
10058
10059         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
10060         
10061 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
10062
10063         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
10064         (mono_method_get_equivalent_method): Fix a warning.
10065
10066         * object.c (mono_message_init): Avoid looking up array types for each call.
10067
10068 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
10069
10070         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
10071         call.
10072
10073         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
10074         even more.
10075
10076         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
10077         each iteration.
10078
10079         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
10080         fields of an enum.
10081
10082 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
10083
10084         * object.c (mono_value_box): Fix boxing of nullables.
10085
10086 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
10087
10088         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10089         mono_module_handle that is defined by the linker; no initialization required.
10090         * coree.h: Remove mono_module_handle, add __ImageBase, update
10091         mono_image_open_from_module_handle.
10092         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10093         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10094         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10095         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10096         to 4 GB away from image base address. IA64 version is not tested but was very
10097         easy to implement and should work if we ever need it.
10098         * domain.c (mono_init_internal): Avoid system error message boxes.
10099         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10100         with has_entry_point. Handle do_mono_image_load fauilre correctly.
10101         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10102         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10103         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10104
10105         Contributed under MIT/X11 license.
10106
10107 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10108
10109         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10110         as part of the private mono API.
10111         
10112         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10113         Do proper argument checking for methods that belong to generic classes.
10114         Do proper type resolution for GMFH/2.
10115         Fixes #377324.
10116         
10117 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10118
10119         * verify.c (do_switch): Fix a memory corruption bug with
10120         the jump index is out of bound.
10121
10122 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10123
10124         * verify.c: Disable debug code.
10125
10126 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10127
10128         * reflection.c (mono_image_get_methodbuilder_token): Use
10129         mono_image_get_methodspec_token_for_generic_method_definition
10130         instead of mono_image_get_memberref_token. We cache more memberef
10131         entries now.
10132
10133 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10134
10135         * verify.c: Inflate exception clause types.
10136         Fixes #402606.
10137         
10138 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10139
10140         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10141         name.
10142
10143         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10144
10145         * reflection.c (mono_image_create_method_token): Same.
10146
10147 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10148
10149         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10150         It does the same as mono_image_get_methodref_token but works on
10151         MethodBuilder.
10152
10153         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10154         and always generate a methodspec. This follows the old behavior and fixes
10155         the regressions in System.Core. 
10156
10157 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10158
10159         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10160         don't event mono_class_get () succeeds. Fixes #402182.
10161
10162 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10163
10164         * metadata-internals.h: Added MonoDynamicImage::methodspec
10165         hashtable to store methodspec tokens created for MethodBuilders.
10166
10167         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10168         MethodBuilders as open instantiations if a methodspec was requested.
10169
10170         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10171
10172         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10173
10174         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10175
10176         Fixes bug #349190.
10177
10178 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10179
10180         * loader.c (method_from_methodspec): Avoid crashing if the
10181         method lookup fails.
10182
10183 2008-06-20  Dick Porter  <dick@ximian.com>
10184
10185         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10186         classes being in a different assembly.  Fixes bug 399184.
10187
10188 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10189
10190         * loader.c (mono_loader_init): Make this callable multiple times.
10191         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10192         the runtime is initialized. Fixes #401755.
10193
10194 2008-06-19  Dick Porter  <dick@ximian.com>
10195
10196         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10197         Fixes bug 349688.
10198
10199 2008-06-19  Dick Porter  <dick@ximian.com>
10200
10201         * socket-io.c:
10202         * icall-def.h: Implement Socket generic Send() and Receive()
10203         methods.  Fixes bug 395168.
10204
10205 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10206
10207         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10208
10209         Contributed under MIT/X11 license.
10210
10211 2008-06-18  Martin Baulig  <martin@ximian.com>
10212
10213         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10214         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10215         set to 80.0.  The debugger <-> runtime interface is now frozen as
10216         well.   
10217
10218         * mono-debug.c
10219         (mono_debug_debugger_version): Bump to 4.
10220
10221 2008-06-18  Martin Baulig  <martin@ximian.com>
10222
10223         * debug-mono-symfile.c
10224         (load_symfile): Don't check the minor version.
10225
10226         * debug-mono-symfile.h: Bump the version number to 50.0.
10227
10228 2008-06-18  Martin Baulig  <martin@ximian.com>
10229
10230         * debug-mono-symfile.c
10231         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10232         minimum required version.
10233
10234 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10235
10236         * reflection.c (mono_custom_attrs_from_property): Fix support for
10237         retriveving cattrs of dynamic inflated generic types.
10238
10239         * reflection.c (mono_custom_attrs_from_event): Same.
10240
10241         * reflection.c (mono_custom_attrs_from_field): Same;
10242
10243         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10244
10245         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10246         Moved to metadata.c.
10247
10248         * metadata.c: New functions to retrive the equivalent field, event
10249         of property from the generic type definition.
10250
10251         * metadata-internals.h: Added new functions from metadata.c.
10252
10253 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10254
10255         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10256         to cached in a mempool is used.
10257
10258         * metadata.c (free_generic_class): In some situations field generic_info type
10259         is not properly dup'ed and leads to double free'ing.
10260
10261         Fixes #400643.
10262
10263 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10264
10265         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10266         this arguments (will be needed later for generic methods).
10267         Collect stats.
10268
10269 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10270
10271         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10272         Create a static RGCTX invoke wrapper for methods which require it.
10273
10274 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10275
10276         * object.c, class-internals.h: New function for checking whether
10277         an individual field is special static.
10278
10279 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10280
10281         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10282         linear search since the table is sorted.
10283
10284         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10285         Fixes #324180.
10286
10287 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10288
10289         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10290         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10291
10292         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10293
10294         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10295         
10296         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10297         InterlockedCompareExchange to query and modify 
10298         thread->interruption_requested.
10299
10300         * object-internals.h (struct _MonoThread): Change interruption_requested
10301         to a gint32 so it can be modified by atomic operations. Add 
10302         'critical_region_level' from the managed side, change small_id to a guint32,
10303         add new set of 'unused' fields.
10304
10305         * appdomain.c: Bump corlib version.
10306
10307 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10308
10309         * class.c (mono_class_from_name): Search modules as well. Fixes
10310         #322332.
10311
10312 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10313
10314         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10315         templates.  Templates are generalized with an additional type_argc
10316         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10317         have type_argc>0.
10318
10319         * domain-internals.h, domain.c: New hash table for looking up
10320         MRGCTXs.
10321
10322         * metadata.c, metadata-internals.h: Rename hash and equal
10323         functions for MonoGenericInst's and make them public.
10324
10325         * class-internals.h: New data structures for the MRGCTX.  Macros
10326         for distinguishing slots in the RGCTX and the MRGCTX.
10327
10328 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10329
10330         * object.c (mono_method_get_imt_slot): Put the same methods of
10331         different instantiations of the same generic interface in the same
10332         IMT slots, to make generic sharing simpler.
10333
10334 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10335
10336         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10337
10338         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10339         This function works just like mono_metadata_field_info, but
10340         accept a mempool as argument to be used allocating memory.
10341
10342         * marshal.c (mono_marshal_load_type_info): Use new function
10343         to load marshal data into image mempool.
10344
10345 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10346
10347         * class.c (mono_class_inflate_generic_type_with_mempool):
10348         This function allows to inflate a generic type using
10349         a mempool.
10350
10351         * class.c (inflate_generic_type): Take a mempool as argument
10352         and use it to do type dup'ing.
10353
10354         * class.c (mono_class_setup_fields): Field type for generic
10355         generic classes are allocated from the image mempool.
10356
10357         * metadata.c (free_generic_class): Inflated field type is
10358         now allocated in the image mempool.
10359
10360 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10361
10362         * threads.c (thread_cleanup): Free MonoThread::name.
10363
10364 2008-06-12  Marek Habersack  <mhabersack@novell.com>
10365
10366         * appdomain.c (ensure_directory_exists): avoid unnecessary
10367         mkdir(2) calls when the shadow directory already exists.
10368         (mono_make_shadow_copy): copy also satellite assemblies from the
10369         private bin directories.
10370
10371 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10372
10373         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
10374         
10375         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
10376         a page boundary. Fixes #396219.
10377
10378 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10379
10380         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
10381         due to double-checked locking.
10382
10383 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10384
10385         * assembly.c (build_assembly_name): Release memory on failure.
10386
10387         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
10388
10389 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10390
10391         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
10392         memory on failure.
10393
10394 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10395
10396         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
10397         memory on failure.
10398
10399 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10400
10401         * loader.c (field_from_memberref): Check if field signature type is equal
10402         to the non-inflated type of the field. Fixes #398980.
10403
10404 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10405
10406         * assembly.c (mono_assembly_load_from_full): Call 
10407         mono_assembly_load_friends () outside the assemblies lock, since it can
10408         acquire the loader lock. Fixes #323696.
10409
10410         * reflection.c (resolve_object): Inflate the inst with the context for
10411         FieldOnTypeBuilderInst. Fixes #399010.
10412
10413 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10414
10415         * reflection.c (mono_image_get_field_on_inst_token): Don't
10416         inflate the field to encode it's signature. If it's a
10417         VAR or MVAR it should stay that way in the signature.
10418         Fixes #399047.
10419
10420 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10421
10422         * reflection.c (resolve_object): Release memory of inflated types.
10423
10424 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10425
10426         * loader.c (mono_method_get_signature_full): Remove assert about
10427         loading a methodspec to a generic method. We have such methods, such as
10428         System.Threading.Interlocked::CompareExchange<T>.
10429         This assert was removed since it crashes the verifier when it checks
10430         methods calling CompareExchange<T>.
10431
10432 2008-06-10  Marek Safar  <marek.safar@gmail.com>
10433
10434         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
10435         of Type array and not MonoType.
10436
10437 2008-06-10  Marek Habersack  <mhabersack@novell.com>
10438
10439         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
10440         <lupus@ximian.com>
10441
10442 2008-06-10  Martin Baulig  <martin@ximian.com>
10443
10444         * debug-mono-symfile.h
10445         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
10446         changes to the file format, but we were generating incorrect
10447         source file indices in the line number table due to a bug, which
10448         made backtraces report an incorrect source file.
10449
10450 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10451
10452         * mono-debug.c: Moved mono_debug_free_method_jit_info from
10453         mini/debug-mini.c to here.
10454
10455         * mono-debug.c (il_offset_from_address): Free memory from find_method.
10456
10457         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
10458         use it to release structs returned by mono_debug_find_method.
10459
10460 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
10461
10462         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
10463         since it needs to set method->slot for all interface methods.
10464
10465 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10466
10467         * class-internals.h: Forgot to add.
10468
10469 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10470
10471         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
10472
10473         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
10474         Lookup the custom attributes from property_hash.
10475
10476         * reflection.c (mono_save_custom_attrs): Save the custom attributes
10477         in property_hash. Allocate all data using the image mempool.
10478
10479         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
10480         for dynamic_custom_attrs to checks if the image is dynamic.
10481
10482 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10483
10484         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
10485         assemblies array.
10486         
10487         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
10488         runtime functions while holding the domain assemblies lock.
10489
10490 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10491
10492         * verify.c: Reapplied the last bit of the reverted changes.
10493
10494 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
10495
10496         * verify.c: Reapplied more of the reverted changes.
10497
10498 2008-06-09  Martin Baulig  <martin@ximian.com>
10499
10500         * debug-mono-symfile.c (load_symfile): Check the major version
10501         first; if it's wrong, don't print the minor version in the error message.
10502
10503 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
10504
10505         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
10506         lock instead of the domain lock to avoid deadlocks, since the thread might
10507         already hold the loader lock.
10508
10509         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
10510         (mono_thread_attach): Ditto.
10511
10512         * monitor.c: Use a TLS variable for holding the current thread id instead
10513         of calling pthread_self ().
10514         (mono_monitor_init_tls): New internal function to initialize the TLS
10515         variable.
10516         (mono_monitor_try_enter_internal): Put the owner == id check after the
10517         owner == 0 check.
10518
10519         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
10520         missed optimizations when using gcc-4.3.
10521
10522 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
10523
10524         * reflection.c (mono_dynamic_image_free): Free the memory
10525         used by MonoGenericParam in MonoDynamicImage::gen_param.
10526
10527         * reflection.c (mono_reflection_setup_generic_class): Allocate
10528         container from mempool.
10529
10530         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
10531         container from mempool.
10532
10533 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10534
10535         * threads.c (mono_set_pending_exception): New internal function to set the
10536         pending exception of the current thread.
10537         (mono_thread_get_and_clear_pending_exception): Check for 
10538         thread->pending_exception as well.
10539
10540         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
10541
10542         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
10543         it can trigger a collection.
10544
10545 2008-06-06  Martin Baulig  <martin@ximian.com>
10546
10547         Merged the `debugger-kahalo' branch.
10548
10549         * mono-debug.h
10550         (MONO_DEBUGGER_VERSION): Bumped to 72.
10551
10552         * debug-mono-symfile.h
10553         (MonoSymbolFileMethodIndexEntry): Removed.
10554         (MonoSymbolFileMethodEntry): New public typedef.
10555         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
10556         (MonoSymbolFileSourceEntry): Remove everything except `index' and
10557         `data_offset'.
10558         (MonoSymbolFileMethodEntry): Removed.
10559         (MonoSymbolFileLexicalBlockEntry): Removed.
10560         (MonoSymbolFileLineNumberEntry): Removed.
10561         (MonoDebugLexicalBlockEntry): Removed.
10562         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
10563         removed `num_il_offsets' and `il_offsets'.
10564         (MonoSymbolFile): Replace `version' with `major_version' and
10565         `minor_version'.
10566         (MONO_SYMBOL_FILE_VERSION): Replace with
10567         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
10568         `MONO_SYMBOL_FILE_MINOR_VERSION'.
10569
10570         * debug-mono-symfile.c
10571         (mono_debug_symfile_lookup_location): Add support for the new line
10572         number table format.
10573
10574 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10575
10576         * metadata.c (free_generic_class): Release the inflated
10577         MonoClass of dynamic generic classes if it's not a generic
10578         type definition.
10579
10580 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10581
10582         * verify.c: Reapplied more of the reverted changes.
10583
10584 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10585
10586         * reflection.c (lookup_custom_attr): Clean the cached flag or
10587         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
10588         for SRE types.
10589
10590 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
10591
10592         * verify.c: Reapplied a small part of the reverted changes.
10593
10594 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
10595
10596         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10597
10598         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
10599         previously in managed code.
10600         (mono_monitor_exit): Ditto.
10601         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
10602
10603         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
10604         the managed definition.
10605
10606 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10607
10608         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
10609
10610 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10611
10612         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
10613         
10614         * monitor.c: Add some micro optimizations.
10615
10616         * icall.c (type_from_typename): Handle 'bool'.
10617
10618 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
10619
10620         * verify.c: Implement constructor verification per P III 1.8.1.4.
10621         Fixes #396716.
10622
10623 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
10624
10625         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
10626         holding the assemblies lock here too.
10627
10628 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10629
10630         * verify.c: Kill stack_top function.
10631
10632 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10633
10634         * verify.c: Kill stack_get function.
10635
10636 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10637
10638         * verify.c (mono_method_verify): Last change broke the build. Fixed.
10639
10640 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
10641
10642         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
10643         more reliable.
10644
10645         * verify.c (mono_method_verify): Inflate params and locals to avoid
10646         mismatch when checking for compatibility.
10647
10648 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
10649
10650         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
10651         Length prefix should be size in bytes. Fix bug #339530.
10652         
10653         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
10654         Length prefix should be size in bytes. Fix bug #339530.
10655
10656         Code is contributed under MIT/X11 license.
10657
10658 2008-06-05  Bill Holmes <billholmes54@gmail.com>
10659
10660         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
10661
10662         Contributed under MIT/X11 license.
10663
10664 2008-06-05  Martin Baulig  <martin@ximian.com>
10665
10666         * mono-debug-debugger.c
10667         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
10668
10669 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
10670
10671         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
10672         while holding the assemblies lock to prevent deadlocks. Handle the case
10673         where the search hook returns NULL but the assembly was still loaded.
10674         Fixes #323696.
10675
10676         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
10677         modify domain state.
10678
10679 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
10680
10681         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
10682         * Makefile.am (pedump_LDADD): Post-process object files and
10683         add dtrace-generated object file, if necessary.
10684
10685         Code is contributed under MIT/X11 license.
10686
10687 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10688
10689         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
10690
10691 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10692
10693         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
10694
10695 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10696
10697         * threads.c: Try to free everything from the delayed free table
10698         when shutting down threads, and set the variable to NULL after the
10699         table is freed so that calling
10700         mono_thread_hazardous_try_free_all() when shutting down the root
10701         domain doesn't crash.
10702
10703 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10704
10705         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
10706         the caller if resulting type was inflated.
10707
10708         * class.c (mono_class_create_from_typespec): Free the MonoType if it
10709         was inflated.
10710
10711         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
10712
10713
10714 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
10715
10716         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
10717         class library tests.
10718
10719         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
10720         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
10721         #396989.
10722
10723 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10724
10725         * domain.c, domain-internals.h: The JIT infos are now freed by the
10726         JIT info table code.  They are freed immediately if there only a
10727         single JIT info table in circulation.  If there is more, the free
10728         is delayed via a queue.
10729
10730         * threads.c, threads-types.h: New hazard pointer function for
10731         freeing all freeable delayed items in one sitting.
10732
10733 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10734
10735         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
10736
10737         * reflection.c (typebuilder_setup_properties): Same.
10738
10739         * reflection.c (typebuilder_setup_events): Same.
10740
10741 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10742
10743         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
10744         and use it for allocating memory.
10745
10746         * reflection.c (mono_marshal_spec_from_builder): Same.
10747
10748         * reflection.c: Change code to use new signatures.
10749
10750         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
10751
10752 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10753
10754         * decimal.c (rescale128): Put back one line which was accidently commented
10755         out.
10756         
10757         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
10758         to cause crashes.
10759
10760 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10761
10762         * reflection.c (mono_reflection_generic_class_initialize): Name must
10763         be always malloc'ed so we can free it later on. Do this for field, property
10764         and event.
10765
10766         * metadata.c (free_generic_class): Free field, property and event names.
10767
10768 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10769
10770         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
10771         instead of g_memdup.
10772
10773         * reflection.c (typebuilder_setup_fields): Same.
10774
10775 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10776
10777         * decimal.c (rescale128): Optimize this function a bit more.
10778
10779 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10780
10781         * metadata.c (free_generic_class): Release some memory from
10782         SRE generic classes.
10783
10784 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10785
10786         * reflection.c (mono_image_get_generic_field_token): No reference
10787         to name is kept, free it.
10788
10789         * reflection.c (mono_reflection_generic_class_initialize): Free
10790         more memory of the inflated field.
10791
10792 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10793
10794         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
10795         code.
10796
10797 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10798
10799         * reflection.c (mono_dynamic_image_free): Release memory used by
10800         MonoDynamicImage::array_methods elements.
10801
10802         * reflection.c (assembly_add_win32_resources): Release memory after
10803         encoding.
10804
10805 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10806
10807         * decimal.c (log2_32): Use an optimized version for this function too.
10808         
10809         * decimal.c (log2_64): Fix this on 32 bit machines.
10810
10811 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10812
10813         * class.c (mono_dup_array_type): Implement allocation using a mempool.
10814
10815         * class.c (mono_metadata_signature_deep_dup): Same.
10816
10817         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
10818         a mempool.
10819
10820         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
10821
10822         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
10823
10824         * metadata-internals.h: Added mono_metadata_signature_dup_full.
10825
10826         * class-internals.h: Update signatures to take a MonoMemPool.
10827
10828 2008-06-02  Dick Porter  <dick@ximian.com>
10829
10830         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
10831         * icall-def.h: Add
10832         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
10833         FormatMessage API to get the error text.  Fixes bug 321827.
10834
10835 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10836
10837         * decimal.c: Add some micro optimizations to make decimal operations faster.
10838
10839 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
10840
10841         * reflection.c (method_encode_clauses): Take a mempool
10842         as parameter and use it to allocate the clause array.
10843
10844         * reflection.c (mono_image_get_field_on_inst_token): Free
10845         the inflated type after encoding it.
10846
10847         * reflection.c (mono_dynamic_image_free): Free each element
10848         of MonoDynamicImage::gen_params.
10849
10850         * reflection.c (reflection_methodbuilder_to_mono_method):
10851         Allocate the generic param array from the mempool.
10852         Allocate signature params from the mempool.
10853
10854         * reflection.c (mono_reflection_generic_class_initialize):
10855         Free inflated fields after been used.
10856
10857 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
10858
10859         * icall.c: Reapply the memory leak fixes as they no
10860         longer make mono crash.
10861
10862 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
10863
10864         * reflection.c (mono_type_get_object): Don't store the suplied
10865         MonoType with type_hash. A caller which pass a type that
10866         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
10867         might end with a pointer to freed memory.
10868         The solution is to use byval_arg or this_arg from the associated
10869         MonoClass of the supplied type.
10870
10871 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
10872
10873         * icall.c: Revert the rest of the last change as it breaks the build too.
10874
10875 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10876
10877         * icall.c: Revert a leak fix as it's breaking the build.
10878
10879 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10880
10881         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
10882
10883 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10884
10885         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
10886
10887 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10888
10889         * icall.c: Fix some memory leaks.
10890
10891 2008-05-29  Dick Porter  <dick@ximian.com>
10892
10893         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
10894         async socket operations from the pending list when a socket
10895         closes.  Leaving it until the threadpool services the event
10896         exposes a race condition when a socket descriptor is reused.
10897         Fixes bug 377589.
10898
10899 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10900
10901         * object.c: Fix negative index check for array alocation.
10902
10903 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10904
10905         * icall.c, marshal.c: Delegate wrappers should skip visibility.
10906         This check is performed by the verifier for IL created delegates
10907         and by Delegate::CreateDelegate for programatically created ones.
10908         Fixes #372406.
10909
10910 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10911
10912         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
10913         Fix code to use mono_array_size_t instead of int.
10914
10915         Based on patch by Luis F. Ortiz.
10916         Contributed under X11 license.
10917         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10918
10919 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10920
10921         * icall.c: Added ves_icall_System_Array_GetLongLength and
10922         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
10923         arrays.
10924
10925         * icall.h: Export both new functions.
10926
10927         Based on patch by Luis F. Ortiz.
10928         Contributed under X11 license.
10929         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10930
10931 2008-05-28  Martin Baulig  <martin@ximian.com>
10932
10933         The debugger now requires exactly r103463.
10934
10935         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
10936         This version is not supported by the debugger, wait for 72.
10937
10938 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10939
10940         * object.h: Changed array related functions to use
10941         mono_array_size_t instead of guint32. Forgot to commit this file.
10942
10943         Patch by Luis F. Ortiz.
10944         Contributed under X11 license.
10945         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10946
10947
10948 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10949
10950         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
10951         don't define it. Use the number literal instead.
10952
10953 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10954
10955         * icall.c: Changed array related functions to use
10956         mono_array_size_t instead of guint32.
10957
10958         * icall.c (ves_icall_System_Array_GetLength): Check for length
10959         overflow under MONO_BIG_ARRAYS.
10960
10961         Based on patch by Luis F. Ortiz.
10962         Contributed under X11 license.
10963         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10964
10965 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10966
10967         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
10968
10969         Based on patch by Luis F. Ortiz.
10970         Contributed under X11 license.
10971         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10972
10973 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10974
10975         * object.c, object.h: Changed array related functions to use
10976         mono_array_size_t instead of guint32.
10977
10978         Patch by Luis F. Ortiz.
10979         Contributed under X11 license.
10980         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10981
10982 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10983
10984         * object.h: Introduced mono_array_size_t typedef. This must be used
10985         in all places an array length is expected. This is 64bits wide if
10986         MONO_BIG_ARRAYS is enabled.
10987
10988         Patch by Luis F. Ortiz.
10989         Contributed under X11 license.
10990         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10991
10992 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
10993
10994         * security-manager.c class.c: Set the class exception info by calling
10995         mono_class_set_failure ().
10996
10997         * class.c (mono_class_get_exception_data): New accessor function.
10998         (mono_class_set_failure): Store exception_data in the property hash.
10999
11000         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
11001         the struct as a property.
11002
11003         * loader.c (mono_get_method_full): Store the lookup result for method
11004         tokens in method_cache, the others in methodref_cache to decrease the memory
11005         usage of hash tables.
11006
11007         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
11008         (mono_image_init): method_cache is lazy inited now.
11009
11010         * metadata-internals.h (struct _MonoImage): Change method_cache to
11011         a MonoValueHashTable, add a separate methodref_cache.
11012
11013 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
11014
11015         * number-formatter.h: Fix tables to avoid arithemtic overflow in
11016           Double.ToString as exposed by Bug #383531.
11017
11018 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
11019
11020         * number-formatter.h: Make some tables static.
11021
11022         * class.c (mono_method_set_generic_container): New accessor function.
11023         (mono_method_get_generic_container): Ditto.
11024
11025         * class-internals.h (struct _MonoMethod): Remove rarely used 
11026         'generic_container' field, store it in the property hash instead. Add 
11027         'is_generic' boolean field instead.
11028
11029         * image.c (mono_image_init): Initialize property_hash.
11030         (mono_image_close): Destroy property_hash.
11031
11032         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
11033         hold rarely used fields of runtime structures belonging to this image.
11034
11035         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
11036         to get/set method->generic_container.
11037
11038         * loader.c (mono_get_method_from_token): Avoid loading the method header for
11039         generic methods.
11040
11041 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
11042
11043         * class.c (mono_class_inflate_generic_method_full): Don't increase
11044         mono_stats.inflated_method_count for methods found in the cache.
11045
11046         * threads.c (mono_thread_request_interruption): Add a comment about 
11047         QueueUserAPC ().
11048
11049 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
11050
11051         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
11052         interface_offsets_packed table.
11053         
11054         * class.c (mono_class_init): Remove some dead code.
11055
11056         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
11057         mono_class_setup_vtable () when CAS is active to detect security problems.
11058
11059 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
11060
11061         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
11062
11063         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
11064         parameters as it's irrelevant for delegate checking.
11065
11066 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
11067
11068         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
11069
11070         * class.c (mono_class_init): Control the creation of a generic vtable using
11071         a global which is true by default, but set to false by the runtime startup code.
11072         
11073         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
11074         Disabled for now since it breaks the embedding API.
11075         Move the setup of class->methods for arrays to mono_class_setup_methods ().
11076         (mono_class_setup_methods): Add a memory barrier.
11077
11078         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
11079         when mono_class_init () doesn't compute the generic vtable.
11080         
11081 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11082         * profiler.c: Added mono_profiler_install_statistical_call_chain,
11083         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11084         to support call chains (backtrace) in the stat profiler.
11085         * profiler.c, profiler-private.h: Likewise.
11086
11087 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11088
11089         * generic-sharing.c: Init generic class when a method of it is
11090         requested via a runtime generic context.
11091
11092 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11093
11094         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11095
11096         * reflection.c (mono_type_get_object): Add a FIXME.
11097
11098         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11099
11100         * class.c (mono_class_get_method_by_index): New helper function, returning an
11101         entry in the class->methods array.
11102
11103 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11104
11105         * class.c (mono_class_init): Only do the array optimization for szarrays. 
11106         Avoid creating a generic vtable for generic instances as well.
11107         (mono_class_get_method_from_name_flags): Don't search in the metadata for
11108         generic instances.
11109
11110 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
11111
11112         * loader.c (mono_get_method_constrained): Inflate the signature
11113         with class context. Fix #325283.
11114
11115 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11116
11117         * object.c (mono_class_create_runtime_vtable): Add a comment.
11118
11119         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11120         where needed.
11121         (setup_interface_offsets): Handle the case when this is called twice for arrays.
11122         (mono_class_setup_vtable_general): Add an assert.
11123         (mono_class_init): Avoid creating a generic vtable for arrays.
11124
11125         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11126         here, let mono_class_init () do that.
11127
11128         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11129         interfaces in mscorlib.
11130
11131         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11132         interfaces. Add some comments.
11133         (mono_class_init): Call mono_class_setup_methods () here since it is no
11134         longer called by mono_class_setup_vtable ().
11135
11136         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11137         not set in class->vtable.
11138         (mono_class_create_runtime_vtable): Reenable the disabled code.
11139
11140         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11141         now as it causes some test failures.
11142
11143         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11144         if using the vtable trampoline. Also remove some strange code which put the
11145         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11146         stuff as it is no longer needed.
11147
11148 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11149
11150         * pedump.c: Give make --verify all option check code as well.
11151         Using --verify code won't check for metadata now.
11152
11153 2008-05-19  Martin Baulig  <martin@ximian.com>
11154
11155         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11156
11157         * mono-debug.c
11158         (_mono_debug_using_mono_debugger): New global variable; it's set
11159         directly by the debugger, so mono_debug_using_mono_debugger() also
11160         works after attaching.
11161
11162 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11163
11164         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11165         as we do double checked locking on MonoClass::runtime_info and
11166         MonoClassRuntimeInfo::domain_vtables.
11167
11168 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11169
11170         * debug-helpers.c (print_field_value): Fix a warning.
11171
11172 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11173
11174         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11175         set in the AOT case.
11176
11177 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11178
11179         * class.c (mono_class_setup_vtable_general): Use memory barriers
11180         as we do double checked locking on MonoClass::vtable.
11181
11182 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11183
11184         * reflection.c (resolve_object): Inflate only if the generic context
11185         is not null. Fixes #389886.
11186
11187 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11188
11189         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11190         instead of g_free.
11191
11192         Code is contributed under MIT/X11 license.
11193
11194 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11195
11196         * class.c: Revert unrelated change.
11197
11198 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11199
11200         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11201         a generic instantiation, use mono_class_from_mono_type instead of playing
11202         with MonoType directly.
11203
11204 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11205
11206         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11207         checks must ignore generic instantiations, so mono_class_has_parent is not
11208         suitable. Fixes #390128.
11209
11210 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11211
11212         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11213         it to avoid registering tokens during metadata generation. Fixes #390023.
11214
11215 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11216
11217         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11218         consistent.
11219
11220         Contributed under MIT/X11 license.
11221
11222 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11223
11224         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11225         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11226         to fixup the EXE image.
11227         (mono_cleanup): Use mono_close_exe_image.
11228         (mono_close_exe_image): New function.
11229         * image.c: Include "marshal.h".
11230         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11231         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11232         counting when the image is loaded outside of mono_image_open_full. Set status
11233         based on GetLastError.
11234         * coree.c: Include required headers. Add init_from_coree.
11235         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11236         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11237         (_CorExeMain): Set init_from_coree.
11238         (CorExitProcess): Only call ExitProcess for now.
11239         (CorBindToRuntimeEx): New stub implementation.
11240         (CorBindToRuntime): New function.
11241         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11242         (MonoFixupExe): ILONLY executables require no fixups.
11243         (mono_set_act_ctx): New function to set activation context.
11244         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11245         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11246         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11247         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11248         as MONO_INTERNAL.
11249         * domain-internals.h: Add mono_close_exe_image.
11250
11251         Contributed under MIT/X11 license.
11252
11253 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11254
11255         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11256         size for generic param and event tables. Fixes #388977.
11257
11258 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11259
11260         * loader.c (mono_method_signature): Use memory barriers because of the double
11261         checked locking pattern.
11262
11263         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11264         aborting or aborted as well. Fixes #376391.
11265         
11266         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11267         existing runtime state in the Suspend handler during shutdown.
11268
11269 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11270
11271         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11272
11273         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11274         which are starting up or shutting down.
11275
11276         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11277         this function never returns if the runtime is already shutting down.
11278
11279         * icall.c (ves_icall_System_Environment_Exit): Update after 
11280         mono_threads_set_shutting_down () signature change.
11281         
11282 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11283
11284         * class.c: Added can_access_instantiation to verify if the instantiation
11285         is visible. Fix access check for nested types as they returned TRUE
11286         before doing type and generic instantiation visibility checks.
11287
11288 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11289
11290         * reflection.c (mono_reflection_create_generic_class): The created type
11291         must have a different container from its TypeBuilder. Otherwise they
11292         will end sharing generic arguments, which is wrong.
11293
11294         Due to the sharing, making a generic instance of the created type using
11295         the TypeBuider generic arguments resulted in the generic type definition
11296         been returned, which is wrong as well.
11297
11298         As a bonus the code was leaking the type_params array. This memory should
11299         be allocated from the image mempool.
11300
11301         This fixes bug #354047.
11302
11303 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11304
11305         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11306         to here         as they are now used in assembly.c new code.
11307         Added a skipverification flag to MonoAssembly.
11308         New internal function mono_assembly_has_skip_verification.
11309
11310         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11311         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11312         part of #387274.
11313
11314 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11315
11316         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11317         needed. Fixes #387034.
11318
11319         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11320
11321 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11322
11323         * assembly.c (mono_assembly_load_reference): Prevent crash while
11324         disassembling Silverlight 2.0 executables while we still do not
11325         have GACed libraries.
11326
11327 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11328
11329         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11330
11331 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11332
11333         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11334         of the dynamic case. Fixes #387404.
11335
11336 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11337
11338         *verify.c (mono_verifier_is_class_full_trust): If under
11339         verify_all and the verifier mode was not set, only
11340         gac and corlib types are fulltrust. This makes --verify-all
11341         usable to detect unverifiable code, which is the expected
11342         use case.
11343
11344 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11345
11346         * verify.h: Ops, commited the header with debug
11347         enabled.
11348
11349 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11350
11351         * verify.c (merge_stack): Use the new value on unverifiable
11352         stack merges.
11353
11354         * verify.c (verify_type_compatibility_full): Comparison
11355         of nullable types can't use mono_class_is_assignable_from.
11356
11357         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
11358         that makes all verification errors be reported.
11359
11360         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
11361         mono_method_verify.
11362
11363 2008-05-05  Robert Jordan  <robertj@gmx.net>
11364
11365         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
11366         support for value types. See #386415.
11367
11368         * object.c: comments.
11369
11370         Code is contributed under MIT/X11 license.
11371
11372 2008-05-05  Martin Baulig  <martin@ximian.com>
11373
11374         * debug-mono-symfile.h
11375         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
11376         for old pre-terrania symbol files.
11377
11378 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11379
11380         * mono-config.c: Add ppc64 architecture.
11381
11382         Code is contributed under MIT/X11 license.
11383
11384 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11385
11386         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
11387           PPC64 uses function descriptors as well.
11388
11389         Code is contributed under MIT/X11 license.
11390
11391 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
11392
11393         * object.c (compute_class_bitmap): Ignore literal static fields.
11394
11395         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
11396         var has an invalid format.
11397         (describe_ptr): Add some sanity checks for the vtable.
11398         (add_nursery_frag): Clear unused nursery fragments.
11399         (major_collection): Clear all remaining nursery fragments.
11400
11401 2008-05-03  Robert Jordan  <robertj@gmx.net>
11402
11403         * image.c, metadata-internals.h: add thunk_invoke_cache.
11404
11405         * marshal.c, marshal.h: implement
11406         mono_marshal_get_thunk_invoke_wrapper ().
11407
11408         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
11409
11410         Code is contributed under MIT/X11 license.
11411
11412 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11413
11414         * verify.c (do_leave): Empty the stack.
11415
11416 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
11417
11418         * class.c (mono_class_is_assignable_from): Variance
11419         doesn't work between reference and value types. For example,
11420         given type C<T+>, C<int32> is not assignable to C<object>.
11421         Break the argument checking loop on first error. 
11422
11423 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
11424
11425         * icall.c : base64_to_byte_array() needs some more strict
11426           check for sequence of '=' characters. Patch by Santa
11427           Marta (http://deee.g.hatena.ne.jp/santamarta).
11428
11429           Contributed under MIT/X11 license.
11430           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
11431
11432 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
11433
11434         * domain.c: Disable LoadLibrary support to fix Win32 build.
11435
11436         Code is contributed under MIT/X11 license.
11437
11438 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
11439
11440         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
11441         to help with cache behaviour.
11442
11443 2008-05-01  Miguel de Icaza  <miguel@novell.com>
11444
11445         * appdomain.c (mono_domain_from_appdomain): Add new accessor
11446         method. 
11447
11448 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
11449
11450         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
11451
11452 2008-05-01  Dick Porter  <dick@ximian.com>
11453
11454         * process.c (process_get_fileversion): Only pass 16 bits of
11455         language ID to VerLanguageName.  Fixes bug 381204.
11456
11457 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11458
11459         * verify.c (mono_method_verify): Fix the comparison
11460         operator for code bounds check.
11461
11462 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
11463
11464         * verify.c (mono_method_verify): Check the bounds of
11465         all access of the code array.
11466
11467 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
11468
11469         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
11470
11471 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
11472
11473         * image.c (mono_image_strong_name_position): Fix return value when the rva is
11474         not valid.
11475
11476 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
11477
11478         * loader.c (mono_get_method_from_token, mono_method_signature): Add
11479         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
11480         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
11481         fixup main EXE images when using mono.exe for mixed-mode assembly support.
11482         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
11483         mono_runtime_load.
11484         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
11485         runtime initialization from metadata.
11486         * assembly.c: Remove obsolete ceGetModuleFileNameA.
11487         (mono_set_rootdir): Use mono_get_module_file_name.
11488         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
11489         handles.
11490         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
11491         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
11492         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
11493         MonoCLIImageInfo. Add support for module handles.
11494         (load_cli_header): Update mono_cli_rva_image_map signature.
11495         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
11496         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
11497         (mono_image_rva_map): Add support for module handles.
11498         (mono_image_ensure_section_idx): Add support for module handles.
11499         (mono_image_close): Add support for module handles.
11500         (do_load_header): Add support for module handles.
11501         (mono_image_open_from_module_handle): New function for internal use.
11502         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
11503         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
11504         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
11505         handles.
11506         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
11507         * image.h: Add mono_image_fixup_vtable.
11508         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
11509         support.
11510         * coree.h: New file.
11511         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
11512         unsupported native code.
11513         (mono_marshal_set_callconv_from_modopt): New function splitted from
11514         mono_marshal_get_managed_wrapper.
11515         (mono_marshal_get_managed_wrapper): Use
11516         mono_marshal_set_callconv_from_modopt.
11517         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
11518         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
11519         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
11520         that results in a deadlock when the runtime is loaded in _CorDllMain.
11521         * Makefile.am: Add coree.c and coree.h.
11522
11523         Contributed under MIT/X11 license.
11524
11525 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11526
11527         * generic-sharing.c: Search for type arguments in array element
11528         types as well.
11529
11530 2008-04-28  Mark Probst  <mark.probst@gmail.com>
11531
11532         * class-internals.h, generic-sharing.c: New, small runtime generic context.
11533
11534         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
11535
11536         * object.c: Don't setup the RGCTX when the vtable is created,
11537         because we're setting it up lazily now.
11538
11539 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
11540
11541         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
11542         64 bit support.
11543
11544 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11545
11546         * verify.c (verify_class_for_overlapping_reference_fields): 
11547         If class is under fulltrust allow reference types to overllap
11548         if they have the same RVA.
11549
11550 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
11551
11552         * pedump.c: Added new flag valid-only, that makes the verifier
11553         behaves just like --security=validil. It won't fail type load
11554         due to unverifiable restrictions.
11555
11556 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11557
11558         * class-internals.h (struct MonoMethod): Added a verification_success
11559         field to cache verifier executions. Reduced MonoMethod:slot size by
11560         one bit.
11561
11562 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
11563
11564         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
11565         instead of a 'vt' argument to save an indirection and to allow these to be used
11566         for valuetypes.
11567         (scan_vtype): New helper function to scan an area using a gc descriptor.
11568         (mono_gc_wbarrier_value_copy): Implement this.
11569         (handle_remset): Add support for REMSET_VTYPE.
11570         (find_in_remset_loc): Ditto.
11571         (mono_gc_base_init): Allow some debugging options to be controlled through the
11572         use of the MONO_GC_DEBUG env variable.
11573         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
11574         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
11575
11576 2008-04-23  Martin Baulig  <martin@ximian.com>
11577
11578         * domain.c (mono_domain_create): Move the call to
11579         mono_debug_domain_create() down, after allocating the domain id.
11580
11581 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
11582
11583         verify.c (verify_class_for_overlapping_reference_fields): Skip
11584         static fields while verifying for overlapping fields as they
11585         don't matter at all.
11586
11587 2008-04-23  Marek Habersack  <mhabersack@novell.com>
11588
11589         * domain-internals.h: added a declaration of
11590         mono_make_shadow_copy.
11591
11592         * assembly.c (mono_assembly_open_full): shadow copying of
11593         assemblies moved to here, so that all the assemblies within the
11594         application domain's private binary directories can be
11595         processed. Fixes bug #380546
11596
11597         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
11598         mono_make_shadow_copy and made non-static. The decision whether
11599         to shadow-copy an assembly is made based on its location - it's
11600         copied if it's in one of the private application domain binary
11601         directories and its different to the target file in the shadow
11602         directory. Fixes bug #380546
11603
11604 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
11605
11606         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
11607
11608         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
11609         types.
11610
11611         * reflection.c (mono_image_create_token): Handle 
11612         Method/ConstructorOnTypeBuilderInst.
11613         (resolve_object): Ditto.
11614         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
11615         so it can be called from resolve_object. Also handle the case when the inflated
11616         class already has its methods setup.
11617
11618 2008-04-21  Martin Baulig  <martin@ximian.com>
11619
11620         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
11621
11622 2008-04-20  Geoff Norton  <gnorton@novell.com>
11623
11624         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
11625         pointer dereference.
11626
11627 2008-04-15  Marek Habersack  <mhabersack@novell.com>
11628
11629         * appdomain.c (try_load_from): if IOMAP is in effect, call the
11630         portability API to look up the assembly file. Fixes behavior in
11631         situations when the application has a bin/ directory, but the
11632         assembly search patch refers to Bin/ (and thus the requested file
11633         name is Bin/SomeLibrary.dll). Fixes bug #379888
11634
11635 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
11636
11637         verify.c (mono_type_is_generic_argument): Extracted this check
11638         from a dozen places to here.
11639
11640         verify.c: Fixed all issues related to boxing generic arguments
11641         and their constraints.
11642
11643 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
11644
11645         verify.c (mono_class_interface_implements_interface): Fix win32 build.
11646
11647 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
11648
11649         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
11650         isn't finished yet. Fixes #363447.
11651
11652 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
11653
11654         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
11655         Fixes #346419.
11656
11657 2008-04-13  Jb Evain  <jbevain@novell.com>
11658
11659         * domain.c: update the 2.1 profile versions.
11660         Merged from the Moonlight 2 branch.
11661
11662 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
11663
11664         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
11665         mscorlibs for the non-refonly case as well.
11666
11667         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
11668         in mono_assembly_load_from_full (). Fixes #378924.
11669
11670 2008-04-11  Geoff Norton  <gnorton@novell.com>
11671
11672         * icall.c: The global extern environ doesn't exist on Mac.  We
11673         need to call NSGetEnviron instead.
11674
11675 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11676
11677         verify.c: Add generic method constraint verification.
11678
11679 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11680
11681         class.c (mono_class_inflate_generic_method_full): Add a long
11682         explanation to the is_mb_open hack. Remove the FIXME.
11683
11684 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11685
11686         * verify.c (mono_method_verify): Mark all unknown opcodes
11687         as invalid. Mark jmp as unverifiable.
11688
11689 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11690
11691         * verify.c: Add code to do type constraint verification on class instances.
11692
11693         * verify.c (mono_verifier_verify_class): Use the type constraint 
11694         verification code.
11695
11696 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
11697
11698         * class.c (mono_class_get_field_default_value): Don't pass cindex
11699         as hint to mono_metadata_get_constant_index. The local is not initialized
11700         and should contain garbage most of the time. This could only work
11701         with a lot of luck.
11702
11703 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11704
11705         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
11706
11707 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11708
11709         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
11710
11711         * class.c (mono_class_from_generic_parameter): Save the token of the
11712         generic param in MonoClass::sizes.generic_param_token.
11713
11714         * reflection.c (mono_custom_attrs_from_class): If the class type is
11715         VAR or MVAR retrieve the attributes of the generic param.
11716
11717 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11718
11719         * class.c (mono_class_init): Do class verification if the verifier
11720         is enabled.
11721
11722 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11723
11724         * verify-internal.h: Added mono_verifier_verify_class.
11725
11726         * verify.c: Added mono_verifier_verify_class. It checks for
11727         classes with explicit layout that have overlapping reference fields.
11728
11729         * pedump.c: Init the verifier state prior to verification. Fixed
11730         command line arguments.
11731
11732 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11733
11734         * Makefile.am: Added verify-internals.h, hopefully fix the build.
11735
11736 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
11737
11738         * verify-internals.h: Fix a warning.
11739
11740 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11741
11742         * verify-internals.h: New header with the verifier configuration
11743         extracted from mini.c.
11744
11745         * verify.c: Implemented the new functions exported by verify-internals.h.
11746
11747 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11748
11749         * verify.c: Add proper verification of ckfinite.
11750
11751 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11752
11753         * verify.c (do_conversion): Improved error message to something
11754         more meanfull.
11755
11756         * verify.c (check_is_valid_type_for_field_ops): Fix to work
11757         with primitive types.
11758
11759 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11760
11761         * verify.c: Added tail prefix checking. Marked icall
11762         as unverifible.
11763
11764 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11765
11766         * verify.c: Fix the detection of branches to the middle
11767         of an instruction.
11768
11769 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
11770
11771         * verify.c: Implemented verification of volatile. and
11772         unaligned. prefix. Check if a type is valid after retrieving it.
11773
11774 2008-04-01  Dick Porter  <dick@ximian.com>
11775
11776         * process.c (process_get_fileversion): If there's no string block,
11777         set the file language to en_US.  Fixes the other new part of bug
11778         374600.
11779
11780 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
11781
11782         * class.c: New functions mono_method_can_access_field_full and
11783         mono_method_can_access_method_full. They perform type visibility
11784         and type site check.
11785
11786         * class-internal.h: Added exported functions.
11787
11788         * verify.c: Use new functions to implement proper visibility checks.
11789
11790 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
11791
11792         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
11793
11794 2008-03-28  Dick Porter  <dick@ximian.com>
11795
11796         * process.c (process_get_fileversion): Use the first language ID
11797         we see, rather than insisting on an invariant language.  Fixes bug
11798         374600.
11799
11800 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
11801
11802         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
11803         the streams to fix reading of invalid memory later.
11804
11805         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
11806         to ease debugging.
11807
11808 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
11809
11810         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
11811         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
11812
11813 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
11814         * threads.h: Added MonoThreadManageCallback type and
11815         mono_thread_set_manage_callback prototype
11816         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
11817         (used to store the mono_thread_manage callback).
11818         * threads.c: Added mono_thread_set_manage_callback, and handle
11819         "MonoThread->manage_callback" in build_wait_tids.
11820
11821 2008-03-26  Dick Porter  <dick@ximian.com>
11822
11823         * process.c (process_get_fileversion): Set FileVersionInfo strings
11824         to Empty when the resource doesn't have the particular info.
11825         Fixes bug 355717.
11826
11827 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
11828
11829         * verify.c (mono_method_verify): Proper prefix validation.
11830
11831 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
11832
11833         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
11834         itself in a separate argument instead of throwing them. Fixes #373448.
11835
11836         * appdomain.c: Bump corlib version.
11837
11838 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
11839
11840         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
11841
11842 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
11843
11844         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
11845         version macros.
11846
11847 2008-03-20  Mark Probst  <mark.probst@gmail.com>
11848
11849         * generic-sharing.c, class-internals.h: Code for putting
11850         reflection types into the runtime generic context.
11851
11852 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
11853
11854         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
11855         Fixes #340662. 
11856
11857
11858 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
11859
11860         * verify.c (VerifyContext): Added instruction prefix data to the struct.
11861
11862         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
11863
11864         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
11865
11866         * verify.c (do_cast): Let the result value keep the boxed status.
11867
11868         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
11869
11870 2008-03-17  Jb Evain  <jbevain@novell.com>
11871
11872         * reflection.c: when running on a 2.0 runtime, emit
11873         unconditionally the #~ header version as 2.0, and the
11874         CLI header version as 2.5, for symmetry's sake with csc.
11875
11876 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
11877
11878         * class.c: Remove the unused cache_interface_offsets stuff.
11879
11880         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
11881         profiler.c: Fix warnings.
11882
11883 2008-03-16  Mark Probst  <mark.probst@gmail.com>
11884
11885         * generic-sharing.c, class-internals.h: Support for putting
11886         methods into the runtime generic context.
11887
11888 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
11889
11890         * class.c (mono_class_setup_fields): Ignore calls made to this function for
11891         classes which are generic instances of not-yet finished typebuilders. Fixes
11892         #351172.
11893
11894         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
11895
11896 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
11897
11898         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
11899
11900         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
11901         field, replace it with a hash table in MonoDynamicImage.
11902
11903         * reflection.c (inflate_mono_method): Access the generic definition object from
11904         image->generic_def_objects instead of imethod->reflection_info.
11905
11906         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
11907
11908         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
11909         
11910         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
11911         function in reflection.c so it is easier to keep in sync with the dynamic image
11912         creation code.
11913
11914         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
11915         mono_image_close ().
11916
11917 2008-03-15  Mark Probst  <mark.probst@gmail.com>
11918
11919         * class.c (mono_class_generic_sharing_enabled): Disable generic
11920         sharing for all architectures except AMD64 and x86 to fix build.
11921
11922 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
11923
11924         * verify.c: Use the generic definition MonoGenericContext when available.
11925         Remove code for checking generics instance compatibility in favor of
11926         mono_class_is_assignable_from.
11927
11928 2008-03-14  Mark Probst  <mark.probst@gmail.com>
11929
11930         * marshal.c, marshal.h, metadata-internals.h, image.c,
11931         wrapper-types.h: New wrapper for invoking a shared static method
11932         without having to pass the runtime generic context argument.
11933
11934 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
11935
11936         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
11937
11938 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
11939
11940         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
11941         
11942         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
11943         create a token from a FieldOnTypeBuilderInst.
11944         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
11945         (resolve_object): Ditto.
11946
11947         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
11948         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
11949
11950 2008-03-14  Martin Baulig  <martin@ximian.com>
11951
11952         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
11953
11954         * debug-mono-symfile.h
11955         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
11956         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
11957
11958 2008-03-10  Martin Baulig  <martin@ximian.com>
11959
11960         * debug-mono-symfile.h
11961         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
11962         `lexical_block_table_offset'.
11963         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
11964         `lexical_blocks'.
11965         (MonoSymbolFile): Added `version'.
11966
11967         * mono-debug.h
11968         (MonoDebugLexicalBlockEntry): Removed.
11969         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
11970         `lexical_blocks'.
11971
11972         * mono-debug.c (mono_debug_add_method): Don't compute lexical
11973         blocks here; the debugger now does this internally.
11974
11975 2008-02-27  Martin Baulig  <martin@ximian.com>
11976
11977         * object.c (mono_runtime_exec_main): Call
11978         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
11979         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
11980
11981 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
11982
11983         * verify.c (verify_type_compatibility_full): Allow native int to be converted
11984         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
11985
11986 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
11987
11988         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
11989         ldftn with a virtual method.
11990
11991 2008-03-13  Geoff Norton  <gnorton@novell.com>
11992
11993         * decimal.c:  Only include memory.h if the platform has it.
11994
11995 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
11996
11997         * assembly.c, class.c, metadata-internals.h: make sure public key
11998         tokesns are compared in a case-insensitive way. Also, all
11999         the lookups in the GAC use a lowercase public key token
12000         (gaacutil already does the lowercasing on install). Fixes
12001         bug #369541.
12002
12003 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
12004
12005         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
12006         and return value.
12007
12008 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
12009
12010         * image.c: when someone loads a mscorlib from a file, return the
12011         currently loaded mscorlib (fixes bug #369253).
12012
12013 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12014
12015         * class.c: handle types with no parents by forcing them to have
12016         System.Object as a parent and marking them as broken (this currently
12017         allows the first part of bug #369173 to work as well, likely because
12018         we don't check for typeload exceptions everywhere yet).
12019
12020 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
12021
12022         * class.c: more complete check that types belong to corlib
12023         (fixes second part of bug #369173).
12024
12025 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
12026
12027         * generic-sharing.c:  Including glib.h for the MSVC builds to define
12028           "inline" to "__inline" before including mono-membar.h.
12029           
12030         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
12031           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
12032           MSVC builds.
12033
12034         Contributed under MIT/X11 license.
12035
12036 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12037
12038         * verify.c (do_invoke_method): Remove return type validation.
12039
12040         * verify.c (do_ret): Do return type validation at return site instead of
12041         call site.
12042
12043 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12044
12045         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
12046
12047         * verify.c: Some todos cleaned and improved a few error messages.
12048
12049 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
12050
12051         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
12052
12053 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12054
12055         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
12056         system types correctly.
12057
12058         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
12059         function.
12060
12061 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12062
12063         * assembly.c (build_assembly_name): Fix a warning.
12064
12065 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
12066
12067         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
12068         the called function takes an object type argument. Fixes storing or
12069         valuetypes across remoting as well as reducing memory usage.
12070         * image.c, metadata-internals.h: remove now unused ldfld_remote and
12071         stfld_remote wrapper caches.
12072
12073 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12074
12075         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
12076         is not found.
12077
12078         * reflection.c (mono_image_register_token): New helper function to save
12079         a token->object mapping.        
12080
12081         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12082         managed code.
12083
12084         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12085         one dimension arrays. Fixes #367670.
12086         (mono_reflection_get_type_internal): Ditto.
12087
12088 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12089
12090         * marshal.c: mono_load_remote_field_new() always returns object.
12091         so use the proper signature (fixes bug #366445).
12092
12093 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12094         
12095         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
12096         add an 'inline_failure' flag instead.
12097
12098 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12099
12100         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12101         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
12102         contains the location of "this", used for exception handling.
12103
12104 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12105
12106         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12107         their size on all platforms for perf reasons.
12108
12109 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12110
12111         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12112         object-internal.h
12113
12114         * object-internal.h: Same.
12115
12116 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12117
12118         * reflection.h: Fix the build I just broke.
12119
12120 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12121
12122         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12123         Test if a token is valid, this remove explicit usage of 
12124         MonoDynamicImage::tokens from the verifier code.
12125
12126         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12127
12128         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12129         instead of direct access to MonoDynamicImage::tokens.
12130
12131 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12132
12133         * verify.c (token_bounds_check): Fix the build I just broke.
12134
12135 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12136
12137         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12138
12139         * verify.c (verifier_load_method): Fixed the errors message.
12140
12141         * verify.c (mono_method_verify): Fixed a debug message.
12142
12143 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12144
12145         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12146         mono-perfcounters.h, class-internals.h: support for predefined
12147         writable counters, query of categories and counters, bugfixes.
12148
12149 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12150
12151         * verify.c (do_refanytype): Verify the refanytype opcode.
12152
12153         * verify.c (mono_method_verify): Use do_refanytype.
12154
12155 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12156
12157         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12158
12159         * verify.c (mono_method_verify): Use do_mkrefany.
12160
12161 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12162
12163         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12164         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12165         implementation.
12166
12167 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12168
12169         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12170         the type load exception.
12171
12172 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12173
12174         * verify.c: Added a few FIXME for method signatures
12175
12176         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12177         of mono_method_get_signature and get vararg call working. Removed unused
12178         checks for return value.
12179
12180         * verify.c (do_refanyval): Verify the refanyval opcode.
12181
12182         * verify.c (mono_method_verify): Implemented verification of arglist and
12183         use do_refanyval.
12184
12185 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12186
12187         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12188         vtypes to marshal.c.
12189
12190         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12191         it works for AOT as well.
12192
12193 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12194
12195         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12196         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12197         the system time is adjusted.
12198
12199 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12200
12201         * icall.c, icall-def.h: use the new time functions (fixes the
12202         non-monotonic behaviour of TickCount).
12203
12204 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12205
12206         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12207         it breaks the build.
12208         
12209         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12210         cattr is not finished yet.
12211
12212 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12213
12214         * verify.c: Proper token validation for field, method and type.
12215
12216 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12217
12218         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12219
12220         * loader.c (method_from_memberref): Generate type load error instead of method missing
12221         if the type is not found.
12222
12223 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12224
12225         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12226         some of the conversions caused the generation of a marshal directive exception.
12227
12228 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12229
12230         verify.c: Report which exception should be thrown by the JIT.
12231         Added a lot of FIXME notes.
12232
12233 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12234
12235         * generic-sharing.c: Runtime generic context slots are not
12236         instantiated on init anymore.  Instead, provide function to do the
12237         instantiating on demand.
12238
12239         * class-internals.h: Added vtable to runtime generic context.
12240         Macros for encoding direct and indirect slot offsets in one
12241         guint32.
12242
12243 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12244
12245         * object.c, generic-sharing.c: Moved some generic sharing code
12246         from object.c to generic-sharing.c.
12247
12248         * generic-sharing.c: Added support for extensible runtime generic
12249         context.
12250
12251         * metadata-internals.h: Two new hash tables in MonoImage for
12252         extensible runtime generic context support.
12253
12254         * domain.c: Unregister generic vtables upon domain unloading.
12255
12256         * image.c: Destroy new hash tables upon image unloading.
12257
12258         * metadata.c: Unregister generic subclasses upon image unloading.
12259
12260         * class-internals.h: New data structure for runtime generic
12261         context template.  New fields in the runtime generic context for
12262         extensible part.
12263
12264         * Makefile.am: Added generic-sharing.c.
12265
12266 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12267
12268         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12269         there is a pending loader exception, raise it.
12270
12271         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12272         same.
12273
12274         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12275         same.
12276
12277         Fixes #363450.
12278
12279 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12280
12281         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12282
12283         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12284         
12285         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12286         ref-only requests for compatibility with MS.
12287
12288 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12289
12290         * reflection.c (mono_custom_attrs_from_method): Don't silently
12291         return an empty list for generic method instances.
12292         (mono_custom_attrs_from_param): Likewise.
12293
12294 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12295             Raja R Harinath  <harinath@hurrynot.org>
12296
12297         Fix #354757
12298         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12299         * class.c (mono_class_inflate_generic_method_full): Initialize it
12300         when a fully-open method is instantiated.
12301         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12302         to new field.
12303         * reflection.c (inflate_mono_method): Don't create a temporary context.
12304
12305 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12306
12307         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12308         Compute correct value, to prepare for imethod->reflection_info going away.
12309
12310 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12311
12312         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12313
12314 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12315
12316         * verify.c: Implement skip visibility flag.
12317
12318 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12319
12320         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12321         which contains an extra field to tell the kind of exception that should be thrown.
12322
12323         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12324
12325 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12326
12327         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12328         'method' is updated.
12329
12330 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12331
12332         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12333         explicit layout as well. Fixes #360375.
12334
12335 2008-02-11  Geoff Norton  <gnorton@novell.com>
12336
12337         * loader.c: Guard and dereference against inflated generic methods
12338
12339 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12340
12341         * class.c: Include Retargetable spec in assembly name.
12342         * assembly.c: Always include PublicKeyToken spec in assembly name
12343         (with value "null" if assembly is not signed), and include
12344         Retargetable spec.
12345         * icall-def.h: Added icall for Assembly.get_fullname.
12346         * icall.c: Added icall returning the fullname of an assembly.
12347
12348 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12349
12350         * class.c (mono_class_setup_vtable_general): Add a missing call to
12351         mono_class_setup_methods () which is needed in the AOT case.
12352
12353 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
12354
12355         * verify.c (mono_type_get_stack_name): Added. Return the name for the
12356         stack type of the given MonoType.
12357
12358         * verify.c (verify_type_compatibility_full): Handle the void type.
12359
12360         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
12361         way stack merging works.
12362
12363         * verify.c (store_local): Improved verification message.
12364
12365         * verify.c (do_branch_op): If the merging is invalid, the method
12366         is unverifiable and not invalid. Improved error message.
12367
12368         * verify.c (merge_stacks): Properly merge a boxed valuetype and
12369         a reference type diferent than System.Object. Improved error
12370         message.
12371
12372 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
12373
12374         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
12375
12376         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
12377         type of an enum even if the argument is byref.
12378
12379         * verify.c: Replace all explicit uses of enumtype and enum_basetype
12380         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
12381
12382         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
12383
12384         *verify.c (verify_type_compatibility_full): Make enum types
12385         compatible with their base types.
12386
12387         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
12388         types are compatible for the special case of a boxed valuetype and
12389         System.Object.
12390
12391         * verify.c (verify_stack_type_compatibility): The function
12392         is_compatible_boxed_valuetype was extracted from here.
12393
12394         * verify.c (push_arg): Only set ctx->has_this_store if the method
12395         is not static.
12396
12397         * verify.c (do_ldelem): Fixed a typo in an error message and added
12398         strict check for mixing int32 and native int as the array type
12399         and ldelem type.
12400
12401         * verify.c (merge_stacks): Consider boxed valuetypes in the
12402         compatibility checks.
12403
12404 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
12405         * profiler.h: (MonoGCEvent): Added start-stop the world events.
12406
12407 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12408         *class.c: use_new_interface_vtable_code: renamed the env var to have
12409         a "MONO_" prefix, and fix the logic to enable it by default.
12410
12411 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
12412         *class.c:
12413         mono_class_setup_vtable_general: rewrote the way in which interface
12414         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
12415         makes the code more maintainable.
12416         For now the old code is still there, and can be activated setting
12417         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
12418
12419 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
12420
12421         * verify.c: guarded some debug functions around and #ifdef.
12422
12423         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
12424
12425 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
12426
12427         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
12428         changes for now since they seem to break too many things.
12429
12430 2008-02-05  Mark Probst  <mark.probst@gmail.com>
12431
12432         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
12433         mono_marshal_find_nonzero_bit_offset): Added macro and function
12434         for finding the byte- and bit-offset of a bitfield within a
12435         struct.
12436
12437 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
12438
12439         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
12440         (mono_marshal_get_struct_to_ptr): Ditto.
12441
12442         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
12443         cctor_signature.
12444
12445 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
12446
12447         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
12448         between methods for non-corlib types.
12449
12450 2008-02-02  Geoff Norton  <gnorton@novell.com>
12451
12452         * loader.c (mono_method_get_param_names): Populate the parameter name for 
12453         generic parameters as well. (Fixes #342536)
12454
12455 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
12456
12457         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
12458
12459         * verify.c (do_invoke_method): Fix for calling with byref structs.
12460
12461         * verify.c (do_cast): push a boxed value type based on the type token and not
12462         the type of stack.
12463
12464 2008-01-31  William Holmes  <billholmes54@gmail.com>
12465
12466         * process.c (process_module_string_read): Check the size returned form 
12467           VerQueryValue to avoid out of memory exception. 
12468
12469 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
12470
12471         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
12472         Handle properly modules which are not in the moduleref table. Fixes
12473         #356938.
12474
12475 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
12476
12477         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
12478         the dynamic case which is now in managed code.
12479         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
12480
12481         * marshal.c (mono_string_to_bstr): Fix a warning.
12482         (init_com_provider_ms): Ditto.
12483
12484         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
12485
12486         * exception.c (mono_get_exception_out_of_memory): New helper function.
12487
12488 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
12489
12490         * marshal.c: Add support for BSTR marshalling
12491         using other COM systems.
12492
12493         Code is contributed under MIT/X11 license.
12494
12495 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12496
12497         * object.c (mono_runtime_invoke_array): reverted previous
12498         commit as it breaks the build.
12499
12500 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12501
12502         * object.c (mono_runtime_invoke_array): Verify arguments for
12503         invalid types. Fixes #348522.
12504
12505 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
12506
12507         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
12508         non-final virtual calls using call. 
12509
12510         * verify.c (do_invoke): fixed some TODOs.
12511
12512         * verify.c (push_arg): set has_this_store for "ldarga 0".
12513
12514 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
12515
12516         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
12517         which belong to an inflated class. Fixes #356531.
12518
12519 2008-01-26  Robert Jordan  <robertj@gmx.net>
12520
12521         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
12522         which resort to FindFirstFile when a certain error condition
12523         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
12524         Code is contributed under MIT/X11 license.
12525
12526 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
12527
12528         * marshal.c (emit_marshal_string): Fix out string marshalling
12529         to use specified encoding. Fixes #323900.
12530
12531         Code is contributed under MIT/X11 license.
12532
12533 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
12534
12535         * class.c (mono_class_inflate_generic_method_full): Don't modify
12536         iresult->context after cache check.
12537
12538 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
12539
12540         * class.c (mono_class_inflate_generic_method_full): Change the
12541         struct assignments to memcpy for better visibility and add some comments.
12542
12543 2008-01-23  Dick Porter  <dick@ximian.com>
12544
12545         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
12546         procedure, and make it work on windows.
12547
12548 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
12549
12550         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
12551         a MonoReflectionTypeBuilder since it is always of that type.
12552
12553         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
12554
12555         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
12556
12557         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
12558         
12559         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
12560
12561         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
12562
12563         * reflection.c (mono_reflection_create_runtime_class): Remove already created
12564         instantiations from the type cache.
12565
12566 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12567
12568         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
12569
12570         * verify.c (do_unbox_value): push a controled mutability managed pointer.
12571
12572 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12573
12574         * verify.c (do_ldstr): added, verifies if the #US token is valid.
12575
12576         * verify.c (mono_method_verify): removed old TODO
12577
12578 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12579
12580         * verify.c (do_newobj): add visibility check.
12581
12582 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
12583
12584         * verify.c (do_load_function_ptr): add visibility check.
12585
12586 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
12587         *class.c:
12588         mono_generic_class_get_class: hook profiler events.
12589         mono_field_get_offset: added to support heap-shot in the new profiler.
12590         *class.h: exported mono_field_get_offset.
12591         * reflection.c:
12592         mono_reflection_setup_internal_class: hook profiler events.
12593
12594 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
12595
12596         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
12597         argument here too and use it to avoid checking for pending exceptions if 
12598         possible.
12599
12600 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
12601
12602         * assembly.c (build_assembly_name): add arg for passing the assembly
12603         flags. Do not consider a PublicKey with value "null" valid.
12604         (mono_assembly_name_parse_full): added boolean argument that will be
12605         set if the assembly name contains a PublicKeyToken spec. Added support
12606         for the Retargetable spec for which only Yes or No are allowed as valid
12607         value. Consider assembly name invalid if Retargetable spec is set, but
12608         either version, culture or public key (token) are not specified.
12609         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
12610         with implementation in assembly.c.
12611         * icall.c (fill_reflection_assembly_name): also copy assembly flags
12612         from MonoAssemblyName.
12613         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
12614         introduced argument for mono_assembly_name_parse_full to know if the
12615         assembly name has a PublicKeyToken spec, and if it has instruct
12616         fill_reflection_assembly_name to use default value for keyToken (if
12617         PublicKeyToken is null).
12618
12619 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12620
12621         * verify.c (mono_method_verify): fixed ovf ops with
12622         float values. They are unverifiable now.
12623
12624 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
12625
12626         * class.c (set_failure_from_loader_error): add BadImageException to the
12627         list of exceptions that can cause a type to fail to load.
12628
12629         * class.c (mono_class_get_exception_for_failure): same.
12630
12631 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
12632
12633         * verify.c (in_any_exception_block): added, check if offset
12634         is part of any exception handling clause.
12635
12636         * verify.c (get_stack_type): added VAR and MVAR types.
12637
12638         * verify.c (do_stobj): better error messages.
12639
12640         * verify.c (do_cpobj): added, check cpobj.
12641
12642         * verify.c (do_initobj): added, check initobj.
12643
12644         * verify.c (do_sizeof): added, check sizeof.
12645
12646         * verify.c (do_localloc): added, check localloc.
12647
12648         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
12649
12650 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
12651
12652         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
12653         save_lmf/restore_lmf opcodes.
12654
12655         * threads.c (mono_threads_install_notify_pending_exc): New function to
12656         install a callback notifying the JIT there is a pending exception on a thread.
12657         (mono_thread_request_interruption): Call the new callback.
12658         (mono_thread_get_and_clear_pending_exception): New function to return the
12659         exception pending on a thread.
12660
12661         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
12662         to turn off checking for pending exceptions.
12663         (mono_marshal_get_native_wrapper): Ditto.
12664
12665 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12666
12667         * threads-types.h: Get rid of the unnecessary extern declarations.
12668
12669 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
12670
12671         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
12672         return field from parent class if not private.
12673         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
12674         returns fields from parent class if they are not private.
12675         (method_nonpublic): added function to determine if a given method
12676         should be considered non-public. Returns false for private methods
12677         on parent class, and internal methods from parent on the 1.0 profile.
12678         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
12679         use method_nonpublic function to determine whether method should be
12680         returned.
12681         (property_accessor_public): use newly introduced method_nonpublic
12682         function to determine whether accessor is non-public. 
12683         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
12684         event from parent class if not private. Only return static event if
12685         Static flag is set, and only return static event from parent class if
12686         FlattenHierarchy flag is set.
12687         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
12688         include non-private events from parent class.
12689
12690 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
12691
12692         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
12693         warning.
12694
12695 2008-01-16  Wade Berrier <wberrier@novell.com>
12696
12697         * security.c: Add assembly.h header to appease some warnings
12698
12699 2008-01-16  Dick Porter  <dick@ximian.com>
12700
12701         * process.c (process_module_string_read): Remove trailing null
12702         when saving string.
12703
12704 2008-01-16  Mark Probst  <mark.probst@gmail.com>
12705
12706         * class-internals.h: A new data structure describing the layout of
12707         a runtime generic context (MonoRuntimeGenericContextTemplate).
12708
12709         * metadata-internals.h: Added a hash table to MonoDomain that maps
12710         from open generic classes to their runtime generic context
12711         templates.
12712
12713         * object.c: Building of the runtime generic context, including
12714         proper handling of generic type arguments of superclasses.
12715         Building of the runtime generic context according to the template.
12716
12717 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
12718
12719         * class.c (mono_class_setup_fields): Set field.count for generic instances.
12720         Fixes #350856.
12721
12722         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
12723         mono_portability_find_file (). Fixes #325466.
12724         (mono_image_get_public_key): Fix a warning.
12725
12726 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
12727
12728         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
12729         Fixes #353550.
12730         (mono_class_from_name_case): Ditto.
12731
12732 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
12733
12734         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
12735           common storage for the tables used in the System/NumberFormatter class.
12736
12737 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
12738
12739         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
12740
12741 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
12742
12743         * verify.c (get_boxable_mono_type): check if the token is valid.
12744
12745         * verify.c (set_stack_value): changed to add an error if an
12746         invalid type is set on stack. Changed all callers due to signature change.
12747
12748         * verify.c (do_stobj): implement stobj validation.
12749
12750 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
12751
12752         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
12753         set container->is_method, it was set earlier.
12754
12755         * metadata.c (type_in_image): Handle MVARs which belong to not finished
12756         generic methods.
12757
12758         * reflection.c (mono_reflection_initialize_generic_parameter): Set
12759         is_method of the generic container to TRUE for methods.
12760
12761 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12762
12763         * metadata.c (type_in_image): Handle type parameters properly.
12764
12765         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
12766         memory ownership of this structure.
12767
12768 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
12769
12770         * verify.c (get_boxable_mono_type): make typedref types been just
12771         unverifiable. check for void type.
12772
12773         * verify.c (do_unbox_any): added, verify opcode unbox.any.
12774
12775         * verify.c (do_load_function_ptr): accept method spec tokens.
12776
12777 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12778
12779         * marshal.c (mono_class_native_size): Always set *align even if this is called
12780         recursively.
12781
12782 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
12783
12784         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
12785         out-of-date.
12786
12787 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
12788
12789         * verify.c: removed some old unused tables. A huge bunch of small fixes
12790         to things found while testing the verifier with mono basic.
12791
12792         * verify.c (dump_stack_value): dump null literal flag to.
12793
12794         * verify.c (verify_type_compatibility_full): fix comparison
12795         for types that have a generic super type.
12796
12797         * verify.c (verify_stack_type_compatibility): fix compatibility
12798         between null literals and reference types. fix compatibility between
12799         boxed valuetypes and object. fix corner case test for enums.
12800
12801         * verify.c (do_cmp_op): proper verification of cgt.un in case
12802         of reference types.
12803
12804         * verify.c (do_invoke_method): fix error message.
12805
12806         * verify.c (do_store_indirect
12807
12808         * verify.c (check_is_valid_type_for_field_ops): proper verification
12809         of managed pointers to valuetypes and boxed valuetypes. proper verification
12810         of null literals.
12811
12812         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
12813         allow token to be a reference type.
12814
12815         * verify.c (do_cast): proper handling of boxes valuetypes.
12816
12817         * verify.c (do_stelem): proper handling of storing a boxed valuetype
12818         in object[].
12819
12820         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
12821         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
12822         fixed the decoding of unbox_any
12823
12824 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
12825
12826         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
12827
12828 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
12829
12830         * verify.c (do_newobj): do delegate verification.
12831
12832         * verify.c (verify_delegate_compatibility): perform delegate
12833         verification.
12834
12835         * verify.c (verify_ldftn_delegate): perform tests related to
12836         ldftn delegates.
12837
12838         * verify.c (mono_delegate_signature_equal): perform the
12839         slightly diferent signature comparison required by delegates.
12840
12841         * metadata.c (mono_metadata_type_equal_full): added and exported
12842         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
12843         allows signature only comparison.
12844
12845         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
12846         as MONO_INTERNAL.
12847
12848 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
12849
12850         * verify.c: added a bunch of stack_slot_* functions to
12851         make access to stack slot type easier. This is required to
12852         allow optional flags, like null literal, boxed value and
12853         this pointer.
12854         All access paths to IlStackDesc::stype have been changed 
12855         to use these new funcions.
12856         Removed a bunch of unused functions and cleared all warnings.
12857         This patch introduces the usage of the this pointer and 
12858         boxed value flags.
12859
12860 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
12861
12862         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
12863
12864 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
12865
12866         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
12867         match managed version.
12868
12869         * appdomain.c: Bump corlib version.
12870         
12871         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
12872         argument.
12873
12874 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
12875
12876         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
12877         Set public key token to zero-length byte array if assembly is not
12878         strongnamed.
12879
12880 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
12881
12882         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
12883         writing a vtype array elem.
12884
12885 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
12886
12887         * assembly.c (build_assembly_name): return FALSE if length of token is
12888         not 16 (if not "null").
12889         (mono_assembly_name_parse_full): return FALSE if value of version,
12890         culture, token or key is 0.
12891         * icall.c (fill_reflection_assembly_name): add boolean arguments to
12892         specify whether public key and public key token must be set to default
12893         value (zero-length byte array) if not available. Set versioncompat to
12894         SameMachine. If public key is available or the default is set, then
12895         set PublicKey flag.
12896         (ves_icall_System_Reflection_Assembly_FillName): if no public key
12897         is available, use empty byte array as default value. On the 2.0
12898         profile, use default value for public key token if not set.
12899         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
12900         profile, use default value for public key if not set. On the 2.0
12901         profile, use default value for public key token if not set.
12902         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
12903         default values for public key and public key token.
12904
12905 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
12906
12907         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
12908         field to keep it in synch with the managed object.
12909
12910         * marshal.c (emit_marshal_object): Add support for byref marshalling of
12911         delegates. Fixes #351520.
12912
12913         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
12914         contains defined memory.
12915         
12916         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
12917
12918         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
12919         
12920         * sgen-gc.c (check_consistency): New helper function to do a consistency check
12921         of the GC data structures.
12922
12923         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
12924
12925         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
12926         
12927         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
12928         barrier.
12929         (mono_array_clone_in_domain): Ditto.
12930         (mono_array_clone_in_domain): Ditto.
12931
12932         * threads.c (start_wrapper): Register the thread start argument as a GC root.
12933         (cache_culture): Use a write barrier.
12934
12935         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
12936         (ves_icall_get_property_info): Ditto.
12937
12938         * object.h (MONO_STRUCT_SETREF): New macro.
12939
12940         * class-internals.h (MonoStats): Add some GC statistics.
12941
12942         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
12943
12944 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
12945
12946         * exception.c (mono_exception_from_name_two_strings):
12947         Break from loop after method is found.
12948
12949 2008-01-04  Dick Porter  <dick@ximian.com>
12950
12951         * process.c (process_module_string_read): Rename variable to
12952         reflect correct usage, after fixing bug 345972.
12953
12954 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
12955
12956         * verify.c (mono_type_create_fnptr_from_mono_method): 
12957         created a MonoType function pointer instance to be used during
12958         verification. The verifier releases this memory at end.
12959
12960         * verify.c (mono_method_is_constructor): extracted repeated
12961         checks for constructor into a single class.
12962
12963         * verify.c (do_push_field): use new extracted method
12964         for constructor check.
12965
12966         * verify.c (do_newobj): same.
12967
12968         * verify.c (do_ldftn): renamed to do_load_function_ptr
12969         and make it verify ldvirtftn too.
12970
12971         * verify.c (mono_method_verify: proper verification
12972         of ldvirtftn. release created MonoMethod instances.
12973
12974 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
12975
12976         * verify.c (token_bounds_check): added.
12977
12978         * verify.c (do_ldftn): added.
12979
12980         * verify.c (mono_method_verify): proper verificartion of ldftn.
12981
12982 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
12983
12984         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
12985         than the table row count. It's the resposibility of the caller to
12986         make the bounds check and raise the correct error.
12987
12988         * metadata.c (mono_metadata_decode_row_col): Same.
12989
12990         * loader.c (mono_get_method_from_token): perform bounds check
12991         on token for methoddef table.
12992
12993 2007-12-29  Miguel de Icaza  <miguel@novell.com>
12994
12995         * icall.c
12996         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
12997         assert into a negative result, the managed code already coped with
12998         that.
12999
13000         Some folks on Windows reported this error. 
13001
13002 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
13003
13004         * appdomain.c: Bump corlib version.
13005         * icall.c:
13006         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
13007         CultureInfo.CreateCulture to create CultureInfo for name.
13008         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
13009         create CultureInfo for name. Fixes bug #347174.
13010
13011 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13012
13013         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
13014         flags.
13015
13016         * verify.c (is_valid_branch_instruction): allow branching to the
13017         first instruction of the protected block.
13018
13019         * verify.c (is_valid_cmp_branch_instruction): same.
13020
13021         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
13022         avoid double initialization.
13023
13024         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
13025         detect which cases the eval stack should just be copied.
13026
13027         * verify.c (mono_method_verify): check if the eval stack
13028         is empty when entering a protected block.
13029
13030 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13031
13032         * verify.c: added is_clause_in_range, is_clause_inside_range,
13033         is_clause_nested and verify_clause_relationship. They perform
13034         the verifications stated in P1 12.4.2.7.
13035
13036         * verify.c (mono_method_verify): remove some unused variables,
13037         add the new exception clause checks, add instruction border
13038         checks for protected block start/end, improved some error 
13039         messages and fixed a bug in the way invalid instruction access
13040         is detected.
13041
13042 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13043
13044         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
13045         from GC 7.0 if available.
13046
13047         * object.c: Remove an unused define.
13048         
13049         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
13050
13051         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
13052
13053         * null-gc.c (mono_gc_make_descr_for_array): Implement.
13054
13055         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
13056
13057         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
13058         to take the same arguments as the other make_descr functions.
13059
13060         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
13061
13062         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
13063         directly.
13064
13065         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
13066         mini.c.
13067
13068         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
13069         call to boehm-gc.c.
13070
13071         * boehm-gc.c (mono_gc_register_root): Fix a warning.
13072
13073         * null-gc.c (mono_gc_register_root): Fix a warning.
13074
13075         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
13076
13077         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
13078         (mono_gc_base_init): Call GC_init ().
13079
13080         * null-gc.c: Define mono_gc_register_root () as a no-op.
13081
13082         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13083
13084 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
13085
13086         * verify.c: add prototype for merge_stacks at top
13087
13088         * verify.c (do_switch): added.
13089
13090         * verify.c (merge_stacks): on some cases the stack merging
13091         was not happening properly. Unequal stack sizes at merge
13092         points should be invalid.
13093
13094         * verify.c (mono_method_verify): added more debug info on stack state.
13095         verify switch properly.
13096
13097 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
13098
13099         * method-builder.h: New file, moved the mono_mb_ declarations here from 
13100         marshal.h.
13101
13102         * boehm-gc.c marshal.c: Include method-builder.h.
13103
13104         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13105
13106         * marshal.c: Remove some code which is now in method-builder.c.
13107
13108 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13109
13110         * method-builder.c: New file, extraction of the method builder functionality 
13111         from marshal.c.
13112
13113         * marshal.c: Move the mb functions into method-builder.c.
13114
13115         * marshal.h marshal.c: Export some mono_mb_... functions.
13116
13117         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13118
13119         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13120         the caller.
13121
13122         * class.c (mono_class_get_full): Check the token type in the dynamic case.
13123
13124         * loader.c (mono_field_from_token): Ditto.      
13125
13126         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13127         type as well.
13128         
13129         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13130         Fixes #342565.
13131
13132         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13133         a helper function for setting it.
13134
13135         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13136
13137         
13138         * assembly.c: Significally simplify code now that referenced assemblies are 
13139         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13140
13141         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13142         #349952.
13143
13144 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13145
13146         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13147         instructions that were target of branches or are at protected block boundaries.
13148
13149         * verify.c (in_same_block): handle filter clauses.
13150
13151         * verify.c (is_valid_branch_instruction): added. checks the target of
13152         instructions br or brtrue/false.
13153
13154         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13155         binary branch instructions such as beq and bge.
13156
13157         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13158         and made it pin the instruction as been part of the exception block.
13159
13160         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13161         of in_same_block.
13162
13163         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13164         of in_same_block.
13165
13166         * verify.c (do_ret): ret from a protected block is unverifiable and
13167         not invalid.
13168
13169         * verify.c (do_static_branch): verify br and br.s instructions.
13170
13171         * verify.c (merge_stacks): add extra param to support detection
13172         of branches in the middle of instructions.
13173         
13174         * verify.c (mono_method_verify): verify branches and exception blocks
13175         that target the middle of instructions. Proper verification of br and br.s.
13176
13177 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13178
13179         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13180         skip_visibility field.
13181         (reflection_methodbuilder_from_dynamic_method): Ditto.
13182
13183         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13184         registrations. Fixes #348193.
13185
13186         * threads.h: Move the internal mono_thread_get_pending_exception () to
13187         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13188
13189 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13190
13191         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13192         icall registration. Fixes #348193.
13193
13194         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13195         for corlib classes into object. Fixes #349621.
13196
13197 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13198
13199         * icall.c (property_accessor_nonpublic): new function to determine
13200         whether an accessor allows a property to be considered non-public.
13201         Returns false for private accessor(s) from parent class, and internal
13202         accessor(s) from parent on 2.0 profile (and higher).
13203         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13204         to determine whether property should be included if NonPublic flag
13205         is set. Fixes bug #349078.
13206
13207 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13208
13209         * verify.c (init_stack_with_value): added.
13210
13211         * verify.c (mono_method_verify): extracted common
13212         code for exception initialization into init_stack_with_value.
13213
13214         * verify.c (mono_method_verify): initialize the exception
13215         for handler clauses as well.
13216
13217         * verify.c (mono_method_verify): fix the exception clause
13218         ordering rules, it should use handler end offset and not
13219         start offset.
13220
13221 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13222
13223         * rawbuffer.c: remove useless warning.
13224
13225 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13226
13227         * threads.h, threads-types.h: move functions to the correct header
13228         (fixes bug#349952).
13229
13230 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13231
13232         * verify.c (mono_method_verify): proper verification
13233         of exception handling clauses ranges and fallthru in
13234         and out of protected blocks.
13235
13236 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13237
13238         * verify.c (mono_method_verify): fixed compilation issue.
13239
13240 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13241
13242         * verify.c (mono_method_verify): a printf slipped in, changed
13243         to use verifier debug macro.
13244
13245 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13246
13247         * verify.c (is_correct_leave): check for filter clauses.
13248
13249         * verify.c (do_filter): added.
13250
13251         * verify.c (mono_method_verify): property verification of leave.
13252
13253
13254 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13255
13256         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13257         Win32 build, until we figure out how to do the proper thing on
13258         Win32.
13259
13260 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13261
13262         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13263         by the previous patch.
13264         
13265         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13266         the assembly resolve handler for refonly assemblies.
13267
13268 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13269
13270         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13271         Make sure only one thread is allowed to commence shutdown, and
13272         don't allow new threads to be started once shutdown is in
13273         progress.
13274
13275 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13276
13277         * verify.c (is_correct_endfilter): added.
13278
13279         * verify.c (is_unverifiable_endfilter): added.
13280
13281         * verify.c (do_endfilter): added.
13282
13283         * verify.c (mono_method_verify): property verification of endfilter
13284         and fixed a corner case or endfinally.
13285
13286 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13287
13288         * verify.h: new flags to support fail fast of unverifiable code and
13289         do non-strict verification. Non-strict verification is required to
13290         have MS runtime compatibility. There are a huge amount of unverifiable
13291         code that it accepts as verifiable. The strict mode verifies the code
13292         as the specs says.
13293         Non-strict mode will be required in cases where code needs to be
13294         accepted as verifiable but fails under strict mode.
13295
13296         * pedump.c: added support to fail fast and non-strict verification.
13297
13298         * verify.c: added support for both fail fast and non-strict verification.
13299
13300 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13301
13302         * verify.c (is_correct_endfinally): added.
13303
13304         * verify.c (mono_method_verify): property verification of endfinally.
13305
13306 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13307
13308         * verify.c (in_any_block): check for filter clauses.
13309
13310         * verify.c (is_correct_rethrow): added.
13311
13312         * verify.c (mono_method_verify): property verification of rethrow.
13313
13314         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13315
13316 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13317
13318         * verify.c (do_throw): added.
13319
13320         * verify.c (mono_method_verify): property verification of throw
13321
13322 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13323
13324         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13325         assemblies. Fixes #346425.
13326
13327 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13328
13329         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13330         FieldBuilders.
13331
13332         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13333
13334         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13335         prevent asserts when this is called with a token which might not be valid.
13336
13337         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13338         lookup_dynamic_token_class with valid_token == FALSE.
13339
13340         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13341
13342         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13343
13344         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13345         
13346 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13347
13348         * gc.c: Don't delay threadpool thread finalization unless Mono is
13349         shutting down.
13350
13351 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13352
13353         * threads.c: turn an assert into a non-fatal warning.
13354
13355 2007-12-09  Robert Jordan  <robertj@gmx.net>
13356
13357         * icall.c (GetVirtualMethod): Add missing argument validation.
13358
13359 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13360
13361         * verify.c (do_cast): added.
13362
13363         * verify.c (mono_method_verify): property verification of castclass and isinst.
13364
13365
13366 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13367
13368         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
13369
13370         * verify.c (do_stelem): added.
13371
13372         * verify.c (mono_method_verify): property verification of stelem.X.
13373
13374 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13375
13376         * class.c, class-internals.h: Introduce an environment variable
13377         (MONO_GENERIC_SHARING) through which the extent of generic code
13378         sharing can be controlled (share all classes, share only corlib
13379         classes, or share nothing).
13380
13381         * object.c: Only create runtime generic context for classes for
13382         which sharing is enabled.
13383
13384 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13385
13386         * verify.c (do_ldelem): refactor it to work with ldelem.any.
13387
13388         * verify.c (mono_method_verify): property verification of ldelem.any.
13389
13390 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13391
13392         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
13393         added ldelem.X opcodes.
13394
13395         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
13396
13397         * verify.c: proper verification of ldelem.X 
13398
13399 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
13400
13401         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
13402
13403 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13404
13405         * verify.c (mono_method_verify): null literal requires special handling,
13406         the value pushed on stack need to be flagged as so.
13407
13408         * verify.c (do_ldelema): Verify ldelema properly.
13409
13410 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
13411
13412         * verify.c: Verify ldlen properly.
13413
13414 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
13415
13416         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
13417         to the target object's type. Fixes #346160.
13418
13419 2007-12-05  Dick Porter  <dick@ximian.com>
13420
13421         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
13422         Solaris needs the same workaround as BSD-derived systems.  Fixes
13423         bug 323524, patch by Burkhard Linke
13424         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
13425
13426 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
13427
13428         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
13429         handle to use when error dialog is shown; otherwise, update mask
13430         to show no error dialog when an error occurs.
13431
13432 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
13433
13434         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
13435
13436         * class.c (mono_class_get_field_default_value): New helper function to initialize
13437         field->def_type and field->data.
13438
13439 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
13440
13441         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
13442         the general one.
13443
13444         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
13445
13446         * marshal.c: Avoid depending on delegate->method_info being set.
13447
13448         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
13449         
13450         * object.c (mono_delegate_ctor): Set delegate->method.
13451
13452         * object-internals.h (struct _MonoDelegate): Add 'method' field.
13453
13454         * appdomain.c: Bump corlib version.
13455
13456 2007-11-27  Raja R Harinath  <harinath@gmail.com>
13457
13458         * metadata.c (mono_generic_inst_equal_full): Short-circuit
13459         equality check if we're comparing canonicalized MonoGenericInsts.
13460
13461 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
13462
13463         * class.c (generic_array_methods): Call mono_class_setup_methods () before
13464         accessing class->methods.
13465
13466 2007-11-22  Dick Porter  <dick@ximian.com>
13467
13468         * threads.c: Ensure that the synch_cs is set before trying to use
13469         it.
13470
13471 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
13472
13473         * profiler.c: r89126 broke the statistial profiler, unbreak.
13474
13475 2007-11-22  Martin Baulig  <martin@ximian.com>
13476
13477         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
13478
13479         * mono-debug.c
13480         (mono_debug_debugger_version): Bump to 3.
13481         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
13482         -> mono_debugger_class_initialized().
13483
13484         * mono-debug-debugger.c
13485         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
13486
13487         * class.c
13488         (mono_debugger_start_class_init_func): Removed.
13489         (mono_debugger_class_loaded_methods_func): Added.
13490         (mono_class_setup_methods): Call it here.
13491
13492 2007-11-22  Martin Baulig  <martin@ximian.com>
13493
13494         * mono-debug.c
13495         (mono_debug_add_delegate_trampoline): New public method.
13496         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
13497
13498         * mono-debug.h
13499         (MonoSymbolTable): Added `global_data_table'.
13500         (MonoDebuggerTypeKind): Removed.
13501
13502 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
13503
13504         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
13505         these methods.
13506
13507         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13508         
13509 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
13510
13511         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
13512
13513 2007-11-20  Martin Baulig  <martin@ximian.com>
13514
13515         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
13516
13517         * mono-debug-debugger.c
13518         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
13519         (mono_debugger_remove_breakpoint): Likewise.
13520         (mono_debugger_check_breakpoints): Likewise.
13521         (mono_debugger_register_class_init_callback): New public method.
13522         (mono_debugger_remove_class_init_callback): Likewise.
13523         (mono_debugger_add_type): Likewise.
13524
13525         * mono-debug-debugger.h
13526         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
13527
13528 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
13529
13530         * class.c: more interface implementations needed for the
13531         array enumerator (fixes bug #341112).
13532
13533 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
13534
13535         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
13536         fix ParamName of ArgumentNullExceptions.
13537
13538 2007-11-17  Miguel de Icaza  <miguel@novell.com>
13539
13540         * reflection.c (mono_reflection_encode_sighelper): Generate the
13541         modopts and modreqs.   I have a useless test that crashes monodis,
13542         but that shows the code working.
13543
13544 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
13545
13546         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
13547         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
13548
13549 2007-11-15  Dick Porter  <dick@ximian.com>
13550
13551         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
13552         When joining a thread, it's the thread that's calling Join that
13553         gets WaitSleepJoin state not the target.  Fixes the standalone
13554         test case in bug 334740, and hopefully the whole bug too.
13555
13556 2007-11-15  Dick Porter  <dick@ximian.com>
13557
13558         * process.c: Read file version info from the files pointed at by
13559         process modules, not the current process.  Fixes bug 315969.
13560
13561         Use windows typedef names in some places to fix warnings on the
13562         windows build.
13563
13564 2007-11-15  Mark Probst  <mark.probst@gmail.com>
13565
13566         * image.c, metadata-internals.h: Added a generic_class_cache hash
13567         to MonoImage for looking up generic classes when sharing generics.
13568
13569 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13570
13571         * sgen-gc.c: warning cleanups.
13572
13573 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
13574
13575         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
13576         inherited properties.
13577
13578 2007-11-14  Mark Probst  <mark.probst@gmail.com>
13579
13580         * object.c, class-internals.h: Added more information to the
13581         runtime generic context.
13582
13583 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
13584
13585         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
13586         instead of just the target method. Generalize the abstract method handling to
13587         handle any non-static method.
13588
13589         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13590         mono_marshal_get_delegate_invoke () signature change.
13591
13592 2007-11-13  Mark Probst  <mark.probst@gmail.com>
13593
13594         * class.c, class-internals.h: Made
13595         mono_type_get_basic_type_from_generic () public.  Fixed member
13596         access check for shared generics.
13597
13598         * loader.c: Don't insert field into field cache if it's part of a
13599         non-inflated generic class.
13600
13601         * domain.c, domain-internals.h: The generic sharing context is now
13602         part of the jit info data structure.  Added two accessor
13603         functions.
13604
13605 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
13606
13607         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
13608         the array Get/Set/Address methods, since the JIT inlines them.
13609
13610         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
13611
13612         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
13613         (mono_image_init): Initialize runtime_invoke_direct_cache.      
13614
13615         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
13616         mono_marshal_get_delegate_invoke signature change.
13617
13618         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
13619         an additional argument. Add support for invoking abstract methods.
13620
13621         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
13622
13623         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
13624
13625 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13626
13627         * class.c: Do field layout for open generic classes as well.
13628
13629 2007-11-09  Mark Probst  <mark.probst@gmail.com>
13630
13631         * gc.c, gc-internal.h: Don't finalize threadpool threads with
13632         other objects, because the threadpool is still around.  Put them
13633         in a list instead and after finalizing all other objects in the
13634         root domain shut down the thread pool and then finalize the
13635         threads.  Fixes bug #337383.
13636
13637         * threads.c, thread-types.h: New mono_thread_create_internal()
13638         function for marking a thread with the threadpool flag before it
13639         started.  Set synch_cs to NULL after freeing it.
13640
13641         * threadpool.c: Mark threadpool threads before they start.
13642
13643 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
13644
13645         * reflection.h, reflection.c: don't export random functions
13646         and lazy load dbnull and missing objects.
13647
13648 2007-11-07  Jonathan Chambers <joncham@gmail.com>
13649
13650         * class.c: Initialize COM types if COM interfaces
13651         are present (not just COM classes).
13652         
13653         Code is contributed under MIT/X11 license.
13654
13655 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13656         * reflection.c:
13657         create_dynamic_mono_image: hook module profiler events (dynamic case).
13658         mono_image_basic_init: hook assembly profiler events (dynamic case).
13659
13660 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
13661         * profiler.c:
13662         simple_appdomain_unload: completely terminate the profiler
13663         instead of only processing the statistical samples.
13664         simple_shutdown: make sure this is really called exactly once,
13665         even in multithreaded applications, and always listen to
13666         appdomain events.
13667         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
13668         here, the "[un]load" functions will do it.
13669         Fixes bugs #333791 and #325261.
13670
13671 2007-11-07  Geoff Norton  <gnorton@novell.com>
13672
13673         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
13674         rather than depend on __APPLE__.
13675
13676 2007-11-07  Mark Probst  <mark.probst@gmail.com>
13677
13678         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
13679
13680 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
13681
13682         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
13683         UTF16 MonoString. Fix the crash from bug #335488
13684
13685 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
13686
13687         * marshal.c: Correct (for non-Win32 OS) length != size in 
13688         mono_string_from_bstr. Fix #339530.
13689
13690 2007-11-06  Geoff Norton  <gnorton@novell.com>
13691
13692         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
13693         to succeed
13694
13695 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
13696
13697         * process.c: Added run-time GetProcessId API detection for Windows.
13698
13699 2007-11-04  Miguel de Icaza  <miguel@novell.com>
13700
13701         * reflection.c  (mono_param_get_objects): If a parameter has the
13702         attribute [System.Runtime.InteropServices.Optional] we should
13703         set the DefaultValue of the ParameterInfo to be
13704         System.Reflection.Missing instead of DBNull.
13705
13706         See bug #339013.
13707
13708         (mono_get_reflection_missing_object): New method,
13709         returns the System.Reflection.Missing.Value singleton instance.
13710
13711 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
13712
13713         * culture-info-table.h : regenerated.
13714
13715 2007-11-02  Jonathan Chambers <joncham@gmail.com>
13716
13717         * icall.c: Use GetEnvironmentStrings on windows
13718         so we are using the same environment block as 
13719         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
13720         #333740.
13721         
13722         Code is contributed under MIT/X11 license.
13723
13724 2007-10-31  Martin Baulig  <martin@ximian.com>
13725
13726         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
13727
13728         * mono-debug-debugger.h
13729         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
13730
13731 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
13732
13733         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
13734         classes.
13735
13736 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
13737
13738         * culture-info-table.h : regenerated.
13739
13740 2007-10-30  Robert Jordan  <robertj@gmx.net>
13741
13742         * icall-def.h, icall.c:
13743         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
13744
13745         Code is contributed under MIT/X11 license.
13746
13747 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13748
13749         * class.c (mono_class_setup_vtable): Find the inflated methods in the
13750         inflated class instead of inflating them again.
13751         
13752         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
13753         dynamic case.
13754
13755         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
13756         Call setup_supertypes () after klass->parent is set.
13757         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
13758
13759         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
13760         for inflated instances of not yet created dynamic generic classes.
13761         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
13762         times from inflated_method.
13763         (methodbuilder_to_mono_method): Ditto.
13764
13765 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
13766
13767         * gc.c: code cleanup and removed old untested option of not creating the
13768         finalizer thread.
13769
13770 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13771
13772         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
13773         creating a jump trampoline for dynamic methods.
13774
13775 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
13776
13777         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
13778         generic TypeBuilders when called from another method of the same type (bug #335131).
13779
13780
13781 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
13782
13783         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
13784         doesn't seem to work perfectly.
13785         
13786         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
13787         called multiple times.
13788         (methodbuilder_to_mono_method): Ditto.
13789         (resolve_object): Inflate FieldBuilder's.
13790
13791 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13792
13793         * string-icalls.c, string-icalls.h, appdomain.c: patch from
13794         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
13795         RemoveEmptyEntries in the string.Split implementation (bug #322375).
13796
13797 2007-10-26  Dick Porter  <dick@ximian.com>
13798
13799         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
13800         Thread initialisation changes
13801
13802 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
13803
13804         * verify.c: fix compatibility check between arrays and System.Array
13805
13806 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
13807
13808         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
13809         too. Fixes #336999.
13810
13811 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
13812
13813         * object.c (mono_value_box): Use typed allocation here.
13814
13815 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
13816
13817         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
13818         trampoline instead of compiling the method right away.
13819
13820         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
13821
13822 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
13823
13824         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
13825         related fields for dynamic classes. Fixes #334493.
13826
13827 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
13828
13829         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
13830         
13831         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
13832
13833         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
13834         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
13835
13836         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
13837
13838         * reflection.c (create_generic_typespec): Initialize klass->generic_container
13839         if needed.
13840         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
13841
13842 2007-10-18  Jonathan Chambers <joncham@gmail.com>
13843
13844         * marshal.c: Use correct key when removing item
13845         from ccw_hash.
13846         
13847         Code is contributed under MIT/X11 license.
13848
13849 2007-10-17  William Holmes  <billholmes54@gmail.com>
13850
13851         *marshal.c: Adding a case to marshal booleans to U1
13852
13853         Code is contributed under MIT/X11 license.
13854
13855 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
13856
13857         * class.c (mono_class_from_name): Search the modules compromising dynamic
13858         assemblies. Fixes #331601.
13859
13860 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
13861
13862         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
13863         exception if the type name contains an assembly component. Fixes #334203.
13864
13865         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
13866         modules inside dynamic assemblies. Fixes #334200.
13867         
13868         * reflection.c: Set image->public_key and image->public_key_length;
13869
13870         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
13871         fields.
13872
13873         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
13874         
13875 2007-10-16  Mark Probst  <mark.probst@gmail.com>
13876
13877         * metadata.c: Implemented correct comparing of generic classes.
13878         An inflated generic class can be equal to a non-inflated one if it
13879         is inflated with generic type variables as type arguments.  Fixes
13880         bug #333798.
13881
13882 2007-10-15  Dick Porter  <dick@ximian.com>
13883
13884         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
13885         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
13886         81646.
13887
13888         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
13889         instead of a monitor lock.  This means that monitor_try_enter and
13890         co can set the thread state safely.
13891         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
13892         thread_interrupt_requested, so interrupt actually works.
13893
13894         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
13895         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
13896         state accessor function
13897
13898 2007-10-15  Martin Baulig  <martin@ximian.com>
13899
13900         * mono-debug.h
13901         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
13902         the debugger with the current runtime.
13903
13904 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
13905
13906         * object.c, object-internals.h: added the ability to set a single
13907         trampoline for all the slots in a vtable.
13908
13909 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13910
13911         * marshal.c: deal with a possible race condition during multicast
13912         delegate invocation.
13913
13914 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13915
13916         * class.c: ensure value type methods don't have the synchronized
13917         flag set.
13918
13919 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
13920
13921         * string-icalls.c, string-icalls.h: reverted unapproved patch that
13922         breaks the build.
13923
13924 2007-10-11  Joel Reed  <joelwreed@comcast.com>
13925
13926         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
13927         to take an options parameter so that empty entries can be removed during
13928         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
13929
13930 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13931
13932         * marshal.c: make sure we don't store the signature from a dynamic
13933         method into the runtime invoke cache (bug #327189).
13934
13935 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13936
13937         * marshal.c: make sure the wrapper methods are properly initialized.
13938
13939 2007-10-11  Mark Probst  <mark.probst@gmail.com>
13940
13941         * metadata.c, metadata-internals.h: Generalized
13942         mono_type_stack_size() to mono_type_stack_size_internal() which
13943         takes an additional argument specifying whether it allows open
13944         types.
13945
13946 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
13947
13948         * verify.c (do_invoke_method): handle typedbyref params
13949         correctly and check for unverifiable return values.
13950
13951         * verify.c (do_newobj): fix a warning.
13952
13953 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
13954
13955         * verify.c: don't tread typedbyref as allways unverifable,
13956         so uses, like (ld/st)loc.0 are valid. verify for the cases
13957         that it matters, like boxing related operations.
13958
13959 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
13960
13961         * verify.c: add verification of the newobj opcode. verification
13962         of delegate instantation still missing due ldftn and virldftn not
13963         pushing the function type on stack
13964
13965 2007-10-08  Mark Probst  <mark.probst@gmail.com>
13966
13967         * class-internals.h: Runtime generic context data structure
13968         definition.
13969
13970         * object.c: Initialization of runtime generic context at runtime
13971         vtable creation time.
13972
13973 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
13974         * class.c (mono_class_create_from_typedef,
13975         mono_class_from_generic_parameter, mono_ptr_class_get,
13976         mono_fnptr_class_get, mono_bounded_array_class_get)
13977         * domain.c (mono_domain_create, mono_domain_free)
13978         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
13979         * image.c (do_mono_image_load, mono_image_close):
13980         Hooked up load-unload profiler events.
13981
13982 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
13983
13984         * domain.c: track statistics about the actual amount of native code
13985         allocated.
13986
13987 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13988
13989         * class.c: the valuetype enumerators don't have the additional
13990         supertypes interfaces.
13991
13992 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13993
13994         * class.c: need more interfaces setup for the IEnumerator<T>
13995         object created for arrays (tests/ienumerator-interfaces.2.cs).
13996
13997 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
13998
13999         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
14000
14001 2007-10-05  Alp Toker  <alp@atoker.com>
14002
14003         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14004         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14005         #315863.
14006
14007 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14008
14009         * verify.c (verify_type_compatibility_full): verification of
14010         compatibility improved, validates correctly non-strict checks between
14011         native int and I4 types different than (unsigned)int32.
14012
14013         * verify.c (do_store_indirect): added, do all verification of
14014         ldind.X opcodes. 
14015
14016         * verify.c (get_load_indirect_mono_type): renamed to
14017         get_indirect_op_mono_type, as it now returns the MonoType for 
14018         ldind.X and stind.X opcodes.
14019
14020 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14021
14022         * reflection.c: Fix the encoding of generic type definition for
14023         TypeBuilders.
14024
14025         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
14026         mono_image_typedef_or_ref but allows to specify if typespec lookups should
14027         be made. Typespec check is done prior to typeref cache lookup.
14028
14029         * reflection.c (mono_image_typedef_or_ref): now just delegate to
14030         mono_image_typedef_or_ref_full.
14031
14032         * reflection.c (encode_generic_class): encode the generic class
14033         directly instead of calling encode_type.
14034
14035         * reflection.c (encode_type): encode the generic type definition
14036         MonoClass as a generic instantiation.
14037
14038         * reflection.c (create_typespec): cache typespec tokens in
14039         the assembly->typespec cache. Don't create typespec for a generic
14040         instance MonoClass. Create typespec for the generic type defintion.
14041
14042         * reflection.c (create_generic_typespec): encode the generic
14043         class directly instead of calling encode_type.
14044
14045         * reflection.c (mono_image_create_token): encode the generic
14046         type definition not using a typespec for MonoType instances.
14047
14048
14049 2007-10-04  Raja R Harinath  <rharinath@novell.com>
14050
14051         Fix #328812
14052         * class.c (mono_image_init_name_cache): Don't return nested
14053         'protected internal' classes.
14054         (mono_class_from_name_case): Likewise.
14055
14056 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
14057
14058         * icall-def.h, icall.c : get_bundled_machine_config() is now the
14059           common function used by both DefaultConfig in System.dll and
14060           InternalConfigurationHost in System.Configuration.dll.
14061
14062 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14063
14064         * class.c: automatically add to vectors only a few essential explicit
14065         generic interfaces. The rest of the interfaces that arrays should
14066         provide are currently implicitly added (but still not lazily, see the
14067         design in the discussion of bug#325495 for the details of what is
14068         needed for that). Additionally, implicit interfaces are assigned the
14069         same vtable slot as the explicit interfaces (as they are compatible):
14070         this enables huge memory savings since we don't need to instantiate
14071         as many memthods and as large vtables anymore. Also, Since
14072         GetEnumerator<T> returns an instance of a type that is required to
14073         support a similarly large set of interfaces as arrays, we add
14074         implicit interfaces and interface offset sharing support to those
14075         types, too. This change adds all the required interfaces so that
14076         the anonarray.cs test case in the bug report works (we don't add
14077         all the interfaces to arrays of arrays 3-level deep and more because
14078         of the memory requirements explained in the bug and since they are much
14079         less common: the lazy-loading support will enabled them to work, too).
14080
14081 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14082
14083         * verify.c (merge_stacks): major clean up, all type compatibility
14084         checks are done by verify_type_compatibility. This fix my earlier lack
14085         of understanding of the CLR type system and merge_stacks no longer looks
14086         scary.
14087
14088         * verify.c: fixed some bad spelling.
14089
14090 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14091
14092         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14093         a given stack slock.
14094         
14095         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14096         verify_type_compatibility_full. This removed a near indentical function and fixed
14097         handling of Int32 and IntPtr across all opcodes.
14098
14099 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14100
14101         * class.c: only vectors have the additional generic interfaces.
14102
14103 2007-10-01  Jonathan Chambers <joncham@gmail.com>
14104
14105         * mono-config.c: Use g_strcasecmp instead of
14106         strcasecmp like everywhere else to fix
14107         compilation with MSVC.
14108         
14109         Code is contributed under MIT/X11 license.
14110
14111 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14112
14113         * object.c, object-internals.h: refactored the IMT code to enable
14114         building a single slot at a time and lazily creating the IMT trampolines
14115         and thunks.
14116
14117 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
14118
14119         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14120
14121         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14122         Fixes #328501.
14123         
14124 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14125
14126         * loader.c (method_from_methodspec): Rearrange to avoid
14127         un-necessary exposition.  Don't assert out if the method's
14128         declaring type is a generic type definition.
14129
14130 2007-09-28  Martin Baulig  <martin@ximian.com>
14131
14132         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14133
14134 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14135
14136         * class-internals.h: optimize field layout of MonoClass to
14137         requires less cachelines at runtime and save a few bytes on 64 bit
14138         systems.
14139
14140 2007-09-28  Jb Evain  <jbevain@novell.com>
14141
14142         * reflection.c: when encoding type names in custom attributes,
14143         if the type is a closed generic type, its generic arguments
14144         have to be serialized as AssemblyQualifiedName, so that when
14145         they are deserialized, it's possible to re-create them properly.
14146         Fixes #329450.
14147
14148
14149 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14150
14151         * object.c, class-internals.h: added delegate-creation counter.
14152
14153 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14154
14155         * class.c: cleanup of the code that synthetizes interfaces for
14156         arrays in 2.0: saves quit a bit of corlib mempool memory.
14157         Code to fix bug #325495 ifdeffed out for now until the issues
14158         with memory usage and O(n^2) behaviour are fixed.
14159
14160 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14161
14162         * marshal.c: when possible, do not duplicate the name of the methods
14163         in the method builder and in the generated MonoMethod.
14164
14165 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14166         * verify.c: added support for type checking ldind_* opcodes.
14167
14168 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14169
14170         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14171         which is used to distinguish the fully open instantiation of a TypeBuilder
14172         with the rest. This temporary hack is required to restore the property that
14173         the fully open instantiation is the same type of the generic type definition.
14174
14175         * class-internals.h (mono_generic_class_is_generic_type_definition):
14176         new function as part of the internal API.
14177
14178         * class.c (inflate_generic_type): return NULL when the generic inst is
14179         fully open. The fully open generic type is now the same as the generic type
14180         definition for non TypeBuilder types.
14181
14182         * class.c (mono_generic_class_get_class): removed assert since it is
14183         no longer valid, gklass->cached_class can point to the generic type definition.
14184
14185         * class.c (mono_generic_class_is_generic_type_definition): new.
14186
14187         * metadata.c (mono_generic_class_hash): added is_tb_open field
14188         to the hash calculation.
14189
14190         * metadata.c (free_generic_class): if the generic class is associated
14191         with the generic type definition, its field will come from the mempool and
14192         must not be freed.
14193
14194         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14195         new, this function identifies the corner case of a TypeBuilder fully open
14196         instantiation.
14197
14198         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14199         for lookup. Set gclass->cached_class to be the container class in case of
14200         the fully open instantiation of non TypeBuilder types.
14201
14202         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14203         to compare generic classes.
14204
14205         * reflection.c (method_encode_methodspec): remove assert that
14206         no longer is valid.
14207
14208         * reflection.c (mono_reflection_generic_class_initialize): add
14209         an aditional assert to ensure the proper type is used.
14210
14211 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14212
14213         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14214         to enjoy it.
14215
14216 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14217
14218         * verify.c (push_arg): Fixed support for ldarga
14219         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14220         MonoType used as first arg in case of instance calls.
14221
14222 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14223
14224         * verify.c: Support for verifying VAR and MVAR types, 
14225
14226 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14227
14228         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14229         accessors correctly.
14230
14231 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14232
14233         * threads.c: support OSX and other systems in
14234         mono_thread_get_stack_bounds (bug #328026).
14235
14236 2007-09-25  Martin Baulig  <martin@ximian.com>
14237
14238         * mono-debug.h
14239         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14240
14241 2007-09-24  Martin Baulig  <martin@ximian.com>
14242
14243         * mono-debug.h
14244         (MonoDebugClassEntry): Moved the definition of this struct into
14245         mono-debug.c to make it private.
14246
14247         * mono-debug.c
14248         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14249         type table per symbol file, we don't need to store the symfile id
14250         any longer.
14251
14252 2007-09-24  Martin Baulig  <martin@ximian.com>
14253
14254         Create one type table per symbol file, since a `MonoClass *' gets
14255         invalid when its image is unloaded.
14256
14257         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14258         (MonoDebugHandle): Added `type_table'.
14259
14260 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14261
14262         * mempool.c, mempool.h: added mono_mempool_new_size () API
14263         to be able to specify a smaller initial size for the pool.
14264         Adjusted the code to slowly increase pool size before using
14265         the previous default size.
14266         * image.c: use a small initial size for image mempools.
14267
14268 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14269
14270         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14271         Fixes ##320990.
14272
14273         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14274         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14275
14276 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14277
14278         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14279         free. Fixes #327438.
14280
14281 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14282
14283         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14284         generic instantiations, etc.
14285         <MONO_TYPE_ARRAY>: Likewise.
14286
14287 2007-09-21  Martin Baulig  <martin@ximian.com>
14288
14289         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14290         these structs were never defined.
14291         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14292
14293 2007-09-21  Martin Baulig  <martin@ximian.com>
14294
14295         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14296
14297 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14298
14299         * image.c: removed the guid hash tables: we can get the same info
14300         without the additional memory usage hit (partially fixes also bug #327052).
14301
14302 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14303
14304         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14305         event to handle unloading methods. After the event is called, the
14306         corresponding MonoMethod* must be considered invalid.
14307         * loader.c (mono_free_method): call the new mono_profiler_method_free
14308         event.
14309
14310 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14311
14312         * domain-internals.h: New flag in MonoJitInfo which marks shared
14313         generic methods.  New hash table (shared_generics_hash) in
14314         MonoDomain to keep track of shared generic methods.  Prototypes
14315         for functions to register and lookup shared generic methods.
14316
14317         * domain.c: Support for registering and looking up shared generic
14318         methods via a hash table (shared_generics_hash) in MonoDomain.
14319
14320         * class-internals.h: New exception to signal failure of shared
14321         compilation of a generic method.  New counters for generics
14322         sharing in MonoStats.
14323
14324 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14325
14326         * image.c, metadata-internals.h: don't keep a file descriptor open
14327         for loaded assemblies (bug#325988).
14328
14329 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14330
14331         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14332         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14333         use the corresponding datatypes.
14334         (type_in_image): Update to changes.
14335         (CleanForImageUserData): Simplify.
14336         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14337         Avoid quadratic behaviour in handling the "stolen" list by
14338         separating the filter predicate out, and by prepending the stolen
14339         items rather than appending them.
14340         (steal_ginst_in_image): Likewise.
14341         (mono_metadata_clean_for_image): Update to changes.
14342
14343 2007-09-19  Martin Baulig  <martin@ximian.com>
14344
14345         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14346
14347 2007-09-19  Martin Baulig  <martin@ximian.com>
14348
14349         * mono-debug.c (mono_debug_cleanup): Don't call
14350         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14351
14352 2007-09-19  Raja R Harinath  <harinath@gmail.com>
14353
14354         Fix crash on 'make run-test' in mcs/errors
14355         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
14356         Avoid more potential allocations in mono_class_from_mono_type.
14357         (ginst_in_image): Update to changes.
14358         (gclass_in_image): Rearrange slightly.
14359
14360 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14361
14362         * class.c (mono_class_init): Move the code that sets up class->methods to 
14363         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
14364
14365         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
14366         canonical instance of an inflated generic signature.
14367         (mono_type_create_from_typespec): Remove an invalid free.
14368
14369         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
14370
14371 2007-09-18  Marek Habersack  <mhabersack@novell.com>
14372
14373         * domain-internals.h: added a declaration of the
14374         mono_assembly_load_full_nosearch internal function.
14375
14376         * assembly.c (mono_assembly_load_with_partial_name): use
14377         mono_try_assembly_resolve return value properly.
14378         (mono_assembly_load_full_nosearch): copied the function body from
14379         mono_assembly_load_full, without the code to invoke assembly
14380         search hooks.
14381         (mono_assembly_load_full): calls the above new function and if the
14382         assembly is not resolved, invokes the search hooks.
14383
14384         * appdomain.c (mono_runtime_init): restore the global postload
14385         assembly search handlers.
14386
14387 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14388
14389         * class.c (mono_class_init): Make sure class->methods and class->properties
14390         are never NULL in the generics case.
14391
14392         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
14393
14394 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
14395
14396         * metadata.c (free_generic_class): Disable some code to fix the build.
14397
14398         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
14399
14400         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
14401         from the image mempool.
14402
14403         * metadata.c (free_generic_class): Free more data from the inflated class.
14404
14405         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
14406
14407         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
14408         mempool.
14409         (mono_type_create_from_typespec): Ditto.
14410
14411         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
14412         MonoImage to the caller.
14413         (mono_init_internal): Save the opened image in a global variable.
14414         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
14415
14416         * reflection.c (resolve_object): Fix a leak.
14417
14418         * metadata.c: Fix the freeing of data in the generics caches.
14419         
14420         * metadata.c (free_generic_inst): Comment this out to fix the build.
14421         (free_generic_class): Ditto.
14422
14423         * metadata.c: Free cached generic methods, instantinations and classes when
14424         they are removed from the caches.
14425         (mono_metadata_free_type): Free the type itself.
14426
14427         * class.c: Free the result of mono_class_inflate_generic_type () in a few
14428         places.
14429
14430 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14431
14432         * boehm-gc.c: restrict managed allocs to __thread supporting
14433         architectures.
14434
14435 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
14436
14437         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
14438         (mono_generic_class_get_class): Fix a leak.
14439
14440         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
14441         mono_metadata_free_type ().
14442         (mono_metadata_inflate_generic_inst): Fix a leak.
14443
14444 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14445
14446         * mono-debug.c (free_header_data): Fix a leak missed earlier.
14447
14448         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
14449         mempool.
14450
14451         * mono-debug.c (mono_debug_close_image): Fix call to 
14452         g_hash_table_remove ().
14453
14454 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14455
14456         * icall-def.h: redirect all the string ctor to the managed
14457         CreateString () methods.
14458         * string-icalls.c, string-icalls.h: removed dead code for string
14459         ctors and icalls.
14460
14461 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14462
14463         * mono-debug.c: Fix memory leaks.
14464
14465 2007-09-14  Jonathan Chambers <joncham@gmail.com>
14466
14467         * threads-types.h: Implement mono_hazard_pointer_set and 
14468         mono_hazard_pointer_clear macros using do/while(0) to fix
14469         compilation with MSVC.
14470         
14471         Code is contributed under MIT/X11 license.
14472
14473 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
14474
14475         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
14476         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
14477
14478 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14479
14480         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
14481         icalls.
14482
14483 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14484
14485         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
14486         managed-code allocated as well.
14487
14488 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14489
14490         * class.c (mono_class_is_assignable_from): Add support for generic variance.
14491
14492 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
14493
14494         * boehm-gc.c: fixed the build after the AOT changes.
14495
14496 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
14497
14498         * wrapper-types.h: Add an ALLOC wrapper type.
14499
14500         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
14501         reference managed allocator methods.
14502
14503 2007-09-12  Marek Safar  <marek.safar@gmail.com>
14504
14505         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
14506         of Type array and not MonoType, a fix suggested by Hari.
14507         
14508 2007-09-12  Jonathan Chambers <joncham@gmail.com>
14509
14510         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
14511         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
14512         
14513         Code is contributed under MIT/X11 license.
14514
14515 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14516
14517         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
14518
14519 2007-09-12  Marek Habersack  <mhabersack@novell.com>
14520
14521         * image.c (do_mono_image_open): if assembly file fails to open and
14522         MONO_IOMAP is in effect, try to find the path in a
14523         case-insensitive way.
14524
14525         * appdomain.c (mono_runtime_init): do not install postload hooks -
14526         tests show that MS.NET doesn't use anything of that sort to
14527         trigger the AppDomain.AssemblyResolve event.
14528         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
14529         made non-static.
14530         (mono_runtime_init): init portability helpers here.
14531
14532         * assembly.c (mono_assembly_load_with_partial_name): if other   
14533         attempts fail, trigger the AppDomain.AssemblyResolve event handler
14534         to resolve the assembly.
14535
14536         * domain-internals.h: added mono_try_assembly_resolve and marked
14537         it as internal.
14538
14539 2007-09-11  Jb Evain  <jbevain@novell.com>
14540
14541         * object-internals.h (MonoReflectionDynamicMethod): add
14542         a `MonoReflectionType *owner` field. The owner is used
14543         * reflection.c:
14544         (mono_reflection_create_dynamic_method): use the owner of the dynamic
14545         method as the class declaring the dynamic method.
14546         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
14547         dynamic method to the declaring type of the methodbuilder.
14548
14549 2007-09-11  Mark Probst  <mark.probst@gmail.com>
14550
14551         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
14552         rules for calling methods via reflection.
14553
14554 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
14555
14556         * reflection.c (resolve_object): Add support for MonoGenericClass. 
14557         Inflate MonoType's.
14558
14559 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
14560
14561         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
14562         provide a managed method that does fast allocations without needing
14563         a managed->unmanaged transition. Boehm GC implementation currently
14564         enabled for ptrfree objects on sane architectures.
14565
14566 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14567
14568         * marshal.c, marshal.h: exported a couple of useful functions and
14569         added mono_mb_get_label () to easily handle backward branches.
14570
14571 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
14572
14573         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
14574
14575 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14576
14577         * loader.c (find_method): Fixed the regression introduced while
14578         fixing bug #81466.
14579
14580 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
14581
14582         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
14583         well.
14584         
14585         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
14586         icall.c reflection.c: Pass a MonoGenericContext argument to 
14587         mono_lookup_dynamic_token ().
14588
14589         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
14590         #82744.
14591         
14592 2007-09-09  Robert Jordan  <robertj@gmx.net>
14593
14594         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
14595         for generic methods.
14596
14597         * object.c (mono_object_get_virtual_method): Handle generic methods.
14598         Fixes bug #78882.
14599
14600         Code is contributed under MIT/X11 license.
14601
14602 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14603
14604         * image.c: fix locking in mono_image_load_file_for_image ().
14605
14606 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
14607
14608         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
14609         used only as a cache: added an icall to fill it.
14610
14611 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
14612
14613         * reflection.h: exposed mono_reflection_free_type_info
14614         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
14615         since mono_reflection_bind_generic_parameters makes a copy of it.
14616         * reflection.c (free_type_info): subinfos should be freed.
14617         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
14618         made non static.
14619         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
14620         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
14621         this fixes #82695 and #81726.
14622    
14623
14624 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
14625
14626         * process.h, process.c:  added support for user profile/info in
14627           ProcessStartInfo. For now only Windows works.
14628
14629 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14630
14631         * metadata.c: consider the generic arguments when comparing
14632         signatures (bug #82614).
14633
14634 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14635
14636         * cil-coff.h, image.c: updated assembly loader to cope with the
14637         PE32+ 64 bit file format.
14638
14639 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14640
14641         * assembly.c, class.c, domain.c, loader.c: remove useless
14642         inclusion of cil-coff.h.
14643
14644 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
14645
14646         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
14647         if interface is marked with CoClassAttribute. 
14648    
14649         Code is contributed under MIT/X11 license.
14650
14651 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14652
14653         * sgen-gc.c: ensure no object from the to space is copied again or finalized
14654         if it's seen twice in major collections.
14655
14656 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14657
14658         * sgen-gc.c: big objects are not copied to the gray area, but they
14659         need to be considered for scanning, too, if they are brought alive
14660         by an object ready for finalizations or a survived one.
14661
14662 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14663
14664         * sgen-gc.c: properly account the number of disappearing links when
14665         they are nullified.
14666
14667 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
14668
14669         * sgen-gc.c: share the code to scan the registered roots between the
14670         different types of collections.
14671
14672 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14673
14674         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
14675
14676 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
14677
14678         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
14679         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
14680
14681 2007-08-28  Mark Probst  <mark.probst@gmail.com>
14682
14683         * security-manager.c (mono_security_manager_get_methods):
14684         LinkDemandSecurityException now has 2 arguments instead of 3.
14685
14686 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
14687
14688         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
14689         platforms which need it.
14690
14691 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14692
14693         * sgen-gc.c: unregister thread data structures with a pthread_key_t
14694         dtor.
14695
14696 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
14697
14698         * threads.c: free the thread static data on thread exit.
14699
14700 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
14701
14702         * class.c: walk the hierarchy to find the generic definition for
14703         a class (fixes runtime part of bug #82498).
14704
14705 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14706
14707         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
14708         ...
14709
14710         * image.c (mono_image_close): Here. Hopefully fixes #82510.
14711
14712 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14713
14714         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
14715
14716 2007-08-24  Robert Jordan  <robertj@gmx.net>
14717
14718         * appdomain.c: don't perform the ':'->';' substitution on Win32.
14719
14720 2007-08-24  Jb Evain  <jbevain@novell.com>
14721
14722         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
14723         for byref types.
14724
14725 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14726
14727         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
14728         #82286.
14729
14730 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14731
14732         * assembly.c: Fix a warning.
14733         
14734 2007-08-23  Marek Habersack  <mhabersack@novell.com>
14735
14736         * appdomain.c: parse the <runtime> section looking for the probing
14737         element with the 'privatePath' attribute, which sets additional
14738         directories in which the runtime should look for assemblies.
14739
14740 2007-08-23  Robert Jordan  <robertj@gmx.net>
14741
14742         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
14743         Fixes #82499.
14744
14745 2007-08-23  Martin Baulig  <martin@ximian.com>
14746
14747         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
14748         _mono_debug_init_corlib() and remove it from the header file.
14749
14750 2007-08-23  Martin Baulig  <martin@ximian.com>
14751
14752         * mono-debug-debugger.c
14753         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
14754         don't notify the debugger about it.
14755
14756         * mono-debug-debugger.h
14757         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
14758
14759 2007-08-23  Robert Jordan  <robertj@gmx.net>
14760
14761         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
14762         Code is contributed under MIT/X11 license.
14763
14764 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14765
14766         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
14767
14768 2007-08-22  Martin Baulig  <martin@ximian.com>
14769
14770         * mono-debug.c: Store debugging info on a per-domain basis and
14771         free it on domain unload.  Add support for unloading symbol files.
14772
14773         * mono-debug.h
14774         (MonoDebugList): New typedef.
14775         (MonoSymbolTable):
14776         - add `data_tables and `type_table'.
14777         - replace 'symbol_files' and `num_symbol_files' with a
14778           `MonoDebugList *'.
14779         (mono_debug_data_table): Removed.
14780         (mono_debug_list_add): New public function.
14781         (mono_debug_list_remove): New public function.
14782         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
14783         (mono_debug_init_2_memory): Renamed into
14784         mono_debug_open_image_from_memory().
14785         (mono_debug_close_image): New public function.
14786         (mono_debug_domain_create): Likewise.
14787         (mono_debug_domain_unload): Likewise.
14788         (MONO_DEBUGGER_VERSION): Bump to 60.
14789
14790         * mono-debug-debugger.h
14791         (MonoDebuggerEvent):
14792         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
14793         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
14794         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
14795         - rename `THREAD_CREATED' and `THREAD_EXITED' into
14796           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
14797         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
14798           meaning.
14799         (mono_debugger_add_symbol_file): Removed.
14800         (mono_debugger_add_type): Removed.
14801         (mono_debugger_lookup_type): Removed.
14802         (mono_debugger_lookup_assembly): Removed.
14803
14804         * domain.c
14805         (mono_domain_create): Call mono_debug_domain_create().
14806         (mono_init_internal): Call mono_debug_init_corlib().
14807
14808         * assembly.c
14809         (mono_assembly_close): Call mono_debug_close_image().
14810
14811 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
14812
14813         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
14814         mmap call.
14815
14816 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14817
14818         * sgen-gc.c: ensure section->pin_queue_end is initialized
14819         correctly when non pinning objects in the section have been found.
14820
14821 2007-08-22  Marek Habersack  <mhabersack@novell.com>
14822
14823         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
14824         containing a list of directories separated by ':'. MSDN docs say
14825         the directories should be separated with ';'. Part of a bugfix for
14826         bug #81446
14827
14828 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
14829
14830         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
14831         it should MonoType and not MonoClass.
14832
14833 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
14834
14835         * culture-info-table.h : regenerated.
14836
14837 2007-08-20  William Holmes  <billholmes54@gmail.com>
14838
14839         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
14840          to call ReplaceFile Kernel32 on windows or in io-layer.
14841         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
14842         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
14843          as an internal call.
14844
14845         Code is contributed under MIT/X11 license.
14846
14847 2007-08-20  Jb Evain  <jbevain@novell.com>
14848
14849         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
14850         and MONO_EXCEPTION_FIELD_ACCESS.
14851
14852         * debug-helpers.[c|h]: new mono_field_full_name function.
14853
14854 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14855
14856         * class.c: Removed class_security_level() and moved it to
14857         security-core-clr.c.
14858
14859         * security-core-clr.c, security-core-clr.h: class_security_level()
14860         is now public and renamed to mono_security_core_clr_class_level().
14861         It also looks for security attributes in the classes a class is
14862         nested in.
14863
14864 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14865
14866         * security-core-clr.c, security-core-clr.h: CoreCLR security
14867         utility functions.
14868
14869         * Makefile.am: Added security-core-clr.[ch].
14870
14871         * security-manager.c, security-manager.h: Functions and enum for
14872         setting and getting the security mode.
14873
14874         * class.c: CoreCLR security checks.
14875
14876 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14877
14878         * icall-def.h, process.c, process.h: implemented icall to get
14879         user/system processor times.
14880
14881 2007-08-17  Mark Probst  <mark.probst@gmail.com>
14882
14883         * domain.c, threads.c, class-internals.h, domain-internals.h: New
14884         reader-lock-free jit_info_table.
14885
14886 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
14887
14888         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
14889
14890         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
14891
14892         * object-internals.h (MonoException): Add missing _data member.
14893
14894 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
14895
14896         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
14897         checking that only methods with matching qname or fqname are picked
14898         from implemented interfaces.
14899
14900 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14901
14902         * verify.c (do_newarr):added, do type verification of
14903         newarr ops, push the right value on the eval stack.
14904         * verify.c (mono_method_verify): use do_newarr
14905
14906
14907 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14908
14909         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
14910         factored the common code into get_boxable_mono_type, which
14911         is now using mono_type_get_full, this fixed byref related tests.
14912
14913 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14914
14915         * class.c: added mono_type_get_full, this function has the same
14916         behavior of mono_class_get_full but the returned MonoType has
14917         all metadata of the associated token in case of a typespec token.
14918         * class.c: added mono_type_retrieve_from_typespec, used by 
14919         mono_type_get_full to retrieve the token type.
14920         * class.c (mono_class_create_from_typespec): changed to use
14921         mono_type_retrieve_from_typespec.
14922         * class.c (mono_ldtoken): changed to use mono_type_get_full
14923         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
14924         * class-internals.h: exported mono_type_get_full for internal use.
14925
14926 2007-08-16  Jb Evain  <jbevain@novell.com>
14927
14928         * domain.c (supported_runtimes): add entry for
14929         the 'moonlight' runtime version.
14930
14931 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14932
14933         * verify.c (mono_method_verify): small typo sliped in.  
14934
14935 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14936
14937         * verify.c (do_unbox_value): added, do type verification of
14938         unboxing ops
14939         * verify.c (mono_method_verify): use do_unbox_value
14940
14941
14942 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14943
14944         * verify.c (dump_stack_value): fixed typo, was printing string
14945         instead of object on stack.
14946         * verify.c (do_box_value): moved the byref check up as it leads
14947         to invalid code and should be done earlier.
14948         * verify.c: improved error messages for and ldobj
14949
14950 2007-08-15  William Holmes  <billholmes54@gmail.com>
14951
14952         * marshal.c (emit_marshal_custom): Omit the call to 
14953           marshal_native_to_managed when calling native to managed 
14954           and the argument is specified as an out argument.
14955
14956         Code is contributed under MIT/X11 license.
14957
14958 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14959
14960         * verify.c: fixed the type checks for generics, function pointers and vectors.
14961         Added type verification for ldobj and ldtoken. The verifier
14962         would segfault if header or signature of a method contained references
14963         to non-existant types.
14964
14965 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
14966
14967         * marshal.c (cominterop_get_ccw): Patch from
14968         Bill Holmes to no walk up interface hierarchy. 
14969         All parent methods should be present in the interface for COM.
14970    
14971         Code is contributed under MIT/X11 license.
14972
14973 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
14974
14975         * marshal.c (emit_marshal_com_interface): Patch from
14976         Bill Holmes to handle COM Interfaces as return values
14977         for native->managed calls.
14978    
14979         Code is contributed under MIT/X11 license.
14980
14981 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
14982
14983         * marshal.c (cominterop_get_idispatch_for_object): Implement
14984         for runtime callable wrappers.
14985    
14986         Code is contributed under MIT/X11 license.
14987
14988 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
14989
14990         * pedump.c (main): changed from mono_init to mono_init_from_assembly
14991         so 2.0 types are accessible
14992
14993
14994 2007-08-13  Miguel de Icaza  <miguel@novell.com>
14995
14996         * domain.c (mono_init_internal): Call mono_assembly_load_friends
14997         once we load mscorlib.   Due to the order in which we initialize,
14998         the mono_assembly_load_full routine that loads mscorlib did not
14999         load friends.   We now load it once we load the
15000         mono_defaults.internals_visible_class class. 
15001
15002         * assembly.c: Expose the mono_load_friend_assemblies method.
15003
15004 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
15005
15006         * verify.c: improved the handling of boxing, better
15007         type checking for unary ops and conversion. Fix bug
15008         regarding managed pointer compatibility checking
15009
15010 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
15011
15012         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
15013
15014         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
15015
15016 2007-08-09  Raja R Harinath  <rharinath@novell.com>
15017
15018         * reflection.c (dup_type): Remove.
15019         * class.c (dup_type): Remove.
15020         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
15021         instead of the dodgy 'dup_type'.
15022         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
15023         handle the case where 'dup_type' needed the second argument.
15024
15025 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
15026
15027         * domain.c: Fix a warning.
15028
15029 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15030
15031         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
15032         checking that methods with the same fqname are not overridden
15033         with a method from an ancestor.
15034
15035 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
15036
15037         * threads.c (free_thread_static_data_helper): Avoid a crash if
15038         thread->static_data is not yet set.
15039
15040 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
15041
15042         * marshal.c: Use correct image when emitting
15043         native wrapper for COM calls.
15044    
15045         Code is contributed under MIT/X11 license.
15046
15047 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
15048
15049         * icall-def.h, security.c, security.h :
15050           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
15051
15052 2007-08-07  Martin Baulig  <martin@ximian.com>
15053
15054         * mono-debug-debugger.h
15055         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
15056
15057         * domain.c (mono_domain_free): Call
15058         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
15059
15060 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
15061
15062         * verify.c (check_underflow, check_overflow): error message now returns IL offset
15063         * verify.c (in_same_block): code should test if either offset is inside the clauses
15064         * verify.c (mono_method_verify): push the exception into the eval stack of exception
15065         and filter blocks
15066
15067 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15068
15069         * image.c (mono_image_close): Fix a leak.
15070
15071         * object.c (mono_runtime_invoke_array): Avoid using alloca.
15072
15073         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
15074
15075 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15076
15077         * domain.c, threads.c, threads-types.h: fix memory retention issue
15078         with thread static variables not being cleared on domain unload.
15079         Reuse thread static slots after domain unload.
15080
15081 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15082
15083         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15084         nullable type.
15085
15086         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15087         now done in mono_runtime_invoke_array.
15088
15089         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
15090         receiver is a nullable type.
15091
15092         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
15093         generic parameter.
15094
15095 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
15096
15097         * marshal.c: Implement COM Objects as return type for 
15098         managed->unmanaged calls. Added Release calls for COM Object
15099         out/return values in managed->unmanaged calls.
15100
15101         Code is contributed under MIT/X11 license.
15102
15103 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15104
15105         * threads.h, threads-type.h: move the hazard pointer declarations
15106         to the private header.
15107
15108 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15109
15110         * file-io.c, appdomain.c: memory leak fixes.
15111
15112 2007-08-02  Dick Porter  <dick@ximian.com>
15113
15114         * socket-io.c
15115         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15116         SO_REUSEADDR setting into io-layer/sockets.c.
15117
15118 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15119
15120         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15121         from Object when called on a generic parameter. Fixes #82211.
15122
15123 2007-08-01  Dick Porter  <dick@ximian.com>
15124
15125         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15126         Fixes bug 79250 yet again.
15127
15128 2007-07-30  Martin Baulig  <martin@ximian.com>
15129
15130         Merged the `debugger-dublin' branch.
15131
15132         * mono-debug.h
15133         (MonoDebugDataTable): New typedef.
15134         (MonoDebugMethodAddressList): New typedef.
15135         (MonoDebugWrapperData): Removed.
15136         (MonoDebugSymbolTable): Removed `current_data_table',
15137         `current_data_table_size', `current_data_table_offset'.
15138         (MonoDebugDataItemType): Moved into mono-debug.c.
15139         (MonoDebugMethodJitInfo): Remove `address'.
15140         (mono_debug_data_table): New global variable.
15141         (mono_debug_lookup_method_addresses): New public function.
15142         (mono_debug_find_method): Take a `MonoMethod *', not a
15143         `MonoDebugMethodInfo *'.
15144
15145         * mono-debug.c: Drop support for the old symbol tables.
15146
15147 2007-06-28  Martin Baulig  <martin@ximian.com>
15148
15149         * mono-debug.c (mono_debug_debugger_version): New public variable.
15150
15151 2007-07-31  William Holmes  <billholmes54@gmail.com>
15152
15153         * metadata.c Changed mono_type_create_from_typespec to not insert
15154           the type into the hash map until after
15155           do_mono_metadata_parse_type has completed.
15156         Fixes Bug #82194
15157         Code is contributed under MIT/X11 license.
15158
15159 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15160
15161         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15162         generic parameter. Fixes #82211.
15163
15164 2007-07-27  Jb Evain  <jbevain@novell.com>
15165
15166         * pedump.c (dump_metadata, dump_metadata_header): dump
15167         versions contained in the metadata header.
15168
15169 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15170
15171         * threads.c: register small_id_table with the GC.
15172
15173 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15174
15175         * threads.c, threads.h, class-internals.h, object-internals.h:
15176         Hazard pointers, to be used by lock-free parallel algorithms.
15177
15178 2007-07-26  Dick Porter  <dick@ximian.com>
15179
15180         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15181         routine on non-windows platforms, as I've not managed to think of
15182         a non-kludgy way of doing this.  Finishes off bug 78739.
15183
15184 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15185
15186         * object.c: properly setup interface_bitmap in proxy vtables.
15187
15188 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15189
15190         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15191         to create unique shadow copy target directories, use the domain's
15192         serial number instead. Each domain gets a unique target directory
15193         that way.
15194
15195         * domain.c (mono_domain_create): added code to increment domain
15196         shadow copy serial number and cache the value in the current
15197         domain structure.
15198
15199         * domain-internals.h (struct _MonoDomain): added a new field -
15200         shadow_serial to hold the serial number used in generation of
15201         shadow-copy directories. This is to make sure that the directory
15202         name is unique for each and every domain created. We avoid a race
15203         condition with overriding assemblies already in use by other app
15204         domains.
15205
15206 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15207
15208         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15209         binding generic parameters.
15210
15211 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15212
15213         * metadata.c (do_mono_metadata_parse_generic_class): Use
15214         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15215         error.
15216
15217 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15218
15219         * loader.c, class-internals.h, reflection.c: removed the per-method
15220         generics hashtable: we use the global one through the call of
15221         mono_class_inflate_generic_method ().
15222
15223 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15224
15225         * class.c, metadata.c, class-internals.h: introduce yet another
15226         generics global cache for inflated methods (fixes 98% of the perf
15227         issue in bug #81806).
15228
15229 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15230
15231         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15232         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15233         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15234         return a MonoGenericInst containing (a copy) of those types.
15235         (mono_metadata_inflate_generic_inst): Update to changes.
15236         (mono_metadata_parse_generic_inst): Likewise.
15237         (mono_get_shared_generic_inst): Likewise.
15238         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15239         (mono_reflection_bind_generic_method_parameters): Likewise.
15240         * metadata-internals.h: Likewise.
15241         * icall.c (free_generic_context): Kill.
15242         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15243
15244         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15245         mono_metadata_type_dup.
15246         * marshal.c (mono_mb_create_method): Likewise.
15247
15248         * metadata.c (mono_metadata_type_dup): Rename from
15249         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15250         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15251         * marshal.c, metadata-internals.h: Update to changes.
15252
15253 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15254
15255         * class.c: fixed a small leak for array classes and removed warning.
15256
15257 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15258
15259         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15260         Return 0x8000000 for return parameters. Fixes #82161.
15261
15262 2007-07-21  Marek Habersack  <grendello@gmail.com>
15263
15264         * appdomain.c (get_shadow_assembly_location): append the current
15265         ticks value to the path. Avoids overwriting the same assemblies by
15266         several threads at the same time.
15267
15268 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15269         and Raja R Harinath  <rharinath@novell.com>
15270
15271         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15272         Simplify slightly.
15273         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15274         property for testing if a method is a generic method definition.
15275
15276 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15277
15278         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15279
15280 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15281
15282         * verify.c: used function from private branch, reverted to the one in class.h 
15283
15284 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15285
15286         * verify.c: a typo slipped in and the code wont compile
15287
15288 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15289
15290         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15291         disabled box instruction as it is doing the wrong thing
15292         improved stack dump messages, now it is easier to debug type related issues
15293
15294
15295 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15296
15297         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15298
15299 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15300
15301         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15302         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15303         grouped with class and valuetype. This change will simply 
15304         the code as it should be handled just like unmanaged pointers.
15305
15306 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15307
15308         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15309
15310 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15311
15312         * verify.c: several stack merge issues fixed, reference comparisons now
15313         check the type size. strict type check now works correctly.
15314         added more uses of IS_MANAGED_POINTER macro.
15315         fixed issues pointed by running the test suite against .net.
15316         
15317
15318 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15319
15320         * class.c, loader.c, class-internals.h: Removed the
15321         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15322         defines.
15323
15324         * icall.c: Better error checking in some internal reflection
15325         methods.
15326
15327 2007-07-18  William Holmes  <billholmes54@gmail.com>
15328
15329         * filewatcher.c : removed unused variable 'filename' in 
15330           ves_icall_System_IO_FSW_SupportsFSW
15331
15332 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15333
15334         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15335         obsolete, removed.
15336
15337 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15338
15339         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15340         
15341         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15342
15343 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15344
15345         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15346         Implement generics support.
15347         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15348
15349         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15350         type_args and method_args arguments.
15351         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15352         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15353         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15354
15355 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
15356
15357         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
15358           It adds a rootimage parameter to mono_reflection_get_type_internal,
15359           adds new function mono_reflection_get_type_with_rootimage and use
15360           the rootimage to resolve the types instead of the current image
15361
15362 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15363
15364         * culture-info-table.h: Forgot to update after r78304.
15365
15366 2007-07-13  Raja R Harinath  <rharinath@novell.com>
15367
15368         * class.c (mono_class_is_open_constructed_type)
15369         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
15370
15371 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
15372
15373         * class.c (mono_bounded_array_class_get):  method fails if used with
15374         an incomplete TypeBuilder enum (no basetype field), fixed it by 
15375         avoiding calculating the size for such array as it cannot be instantiated.
15376         Fix bug #82015
15377
15378 2007-07-12  Raja R Harinath  <rharinath@novell.com>
15379
15380         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
15381         field.
15382         * metadata.c, reflection.c: Update to changes.
15383
15384 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
15385
15386         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
15387         mono_class_is_valid_enum, they are used to valide a enum when loading.
15388         * reflection.c: used new functions to throw TypeLoadException when and
15389         invalid enum is build with TypeBuilder. Fixes #82018
15390   
15391 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15392
15393         * object.c: forgot commit of mono_class_setup_methods () to access
15394         iface->methods.
15395         * object-internals.h: added a few more handy fields to
15396         MonoIMTCheckItem.
15397
15398 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
15399
15400         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
15401         iface->methods.
15402
15403 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15404
15405         * class-internals.h, object-internals.h, object.c: IMT-based
15406         interface invocation core from Massimiliano Mantione
15407         (massi@ximian.com) with a reworked arch-specific interface,
15408         bsearch implementation and a few bugfixes and memory savings by me.
15409
15410 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
15411
15412         * class.c (mono_class_create_from_typedef): mono would segfault if 
15413         an enum did not have a __value field. It now throws a TypeLoadException
15414         for such cases. Fix bug #82022
15415
15416 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15417
15418         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
15419
15420 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15421
15422         * class.c (mono_class_init): If a class is already inited but has
15423         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
15424
15425 2007-07-09  Mark Probst  <mark.probst@gmail.com>
15426
15427         * class.c: Properly handle the case of an unimplemented interface
15428         method.  Fixes: 81673.
15429
15430 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
15431
15432         * class-internals.h, object.c: cleanup patch from massi: use
15433         MonoVTable->interface_bitmap since the vtable interfaces offset array
15434         is going away.
15435
15436 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
15437
15438         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
15439         GetMDStreamVersion icall instead.
15440
15441 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
15442
15443         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
15444         not use mono_dl_build_path() with a full library name: makes
15445         fallbacks to libgaim and libfam work.
15446
15447 2007-07-06  William Holmes  <billholmes54@gmail.com>
15448
15449         * assembly.c: Added a continue statement in probe_for_partial_name when
15450          parse_assembly_directory_name fails.  Fixes : 82002
15451
15452 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
15453
15454         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
15455         and added a verification  for TYPEDBYREF.
15456         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
15457         make native int interchangeable with int32 and some small cleanup and formating.
15458         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
15459         handle byref of byref.
15460         * verify.c (push_local): handle byref of byref.
15461         * verify.c (do_binop): invalid mix of values is unverifiable
15462         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
15463         added visibility checks
15464         * verify.c (field related method): added visibility checks
15465         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
15466
15467 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
15468
15469         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
15470         string.
15471
15472 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
15473
15474         * profiler.c (mono_profiler_load): Fix an off-by-one error.
15475
15476         * marshal.c (emit_marshal_string): When returning a string from managed code,
15477         allways make a copy even for unicode strings. Fixes #81990.
15478
15479 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
15480
15481         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
15482         of byref generic inst types (bug #81997).
15483
15484 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
15485
15486         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
15487         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
15488
15489 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
15490
15491         * marshal.c (emit_marshal_string): Add support for unicode strings in
15492         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
15493
15494 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
15495
15496         * verify.c: field load/store are now verified, missing only access checks now
15497
15498 2007-06-28  Martin Baulig  <martin@ximian.com>
15499
15500         * mono-debug.c (mono_debug_debugger_version): New public variable.
15501
15502 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
15503
15504         * locales.c: When constructing DateTimeFormat or NumberFormat for
15505         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
15506         MonoCultureInfo contructed from the current locale is always
15507         read-only and has UseUserOverride set to true. All MonoCultureInfo
15508         instances returned for GetCultures have both IsReadOnly and
15509         UseUserOverride set to true. Fixes part of bug #81930.
15510
15511 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
15512
15513        * icall-def.h: Update System.__ComObject icalls
15514        * marshal.c: Avoid managed transition (and object creation)
15515        when looking up COM interface in RCW.
15516        * marshal.h: Ditto.
15517        
15518        Code is contributed under MIT/X11 license.
15519
15520 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
15521
15522         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
15523         to avoid crashes during assembly unloading.
15524
15525 2007-06-22  Raja R Harinath  <rharinath@novell.com>
15526
15527         Fix MethodInfo.IsGenericMethodDefinition
15528         * reflection.c (mono_reflection_bind_generic_method_parameters):
15529         Rearrange code to ensure we always uses a generic method definition.
15530         * class.c (mono_class_inflate_generic_method_full): Set
15531         'generic_container' field only for generic method definitions.
15532         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15533         Use presense of 'generic_container' field as indication of being a
15534         generic method definition.
15535
15536 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
15537
15538         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15539
15540         * object-internals.h: Reflect changes in the layout of the managed Delegate
15541         class.
15542         
15543         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
15544         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
15545         runtime memory used by the dynamic method. Fixes #77146.
15546
15547 2007-06-21  Dick Porter  <dick@ximian.com>
15548
15549         * file-io.h: 
15550         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
15551         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
15552         81767.
15553
15554 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15555
15556         * reflection.c (method_encode_methodspec): Add a tripwire.
15557         * class.c (inflate_generic_type): The fully open generic type is
15558         not the same as the generic type definition.
15559
15560 2007-06-21  Martin Baulig  <martin@ximian.com>
15561
15562         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
15563
15564         * mono-debug-debugger.h
15565         (MonoDebuggerBreakpointInfo): Removed.
15566         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
15567         (mono_debugger_remove_breakpoint): Likewise.
15568         (mono_debugger_breakpoint_callback): Likewise.
15569         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
15570
15571 2007-06-21  Raja R Harinath  <rharinath@novell.com>
15572
15573         * metadata.c (mono_metadata_lookup_generic_class): The fully open
15574         generic type is not the same as the generic type definition.
15575         * class.c (mono_generic_class_get_class): Likewise.
15576
15577 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
15578
15579         * icall.c: The second argument to 
15580         System.Reflection.MethodBase.GetMethodFromHandleInternalType
15581         is a MonoType not a MonoClass.
15582
15583 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15584
15585         * verify.c: support for function pointers in the verifier
15586
15587 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
15588
15589         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
15590
15591 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
15592
15593         * assembly.c: removed Mono.Data.SqliteClient from the list of
15594         forward-compatible assemblies as it breaks the ABI (bug #81899).
15595
15596 2007-06-19  Raja R Harinath  <rharinath@novell.com>
15597
15598         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
15599         lookup/update with the loader lock.
15600         * reflection.c (mono_class_bind_generic_parameters): No need to
15601         protect mono_metadata_lookup_* with the loader lock.
15602         * class.c (inflate_generic_type): Likewise.
15603         
15604         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
15605         on a generic instantiated type.
15606
15607 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
15608
15609         *verify.c: produce meanfull error messages on verification error
15610         *verify.c: fixed some cases of verification errors reported as validation errors
15611         *pedump.c: fixed the error name array, now it shows validation errors properly
15612         *verify.h: fixed the contant that should be used for verification errors
15613
15614 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
15615
15616         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
15617         for bug #77596, 81858 and 80743 (generics data structures on domain
15618         unload).
15619
15620 2007-06-15  Raja R Harinath  <rharinath@novell.com>
15621
15622         Avoid allocating 'MonoGenericContext' on the heap.
15623         * class-internals (_MonoMethodInflated::context): Make field
15624         inline, not a pointer.
15625         * loader.c (method_from_methodspec): Allocate 'new_context' on the
15626         stack.  Use the context embedded within the inflated method as the
15627         hash key, rather than 'new_context'.
15628         * class.c (inflate_generic_context): Simplify.  Return a struct
15629         rather than allocating on the heap.
15630         (mono_class_inflate_generic_method_full): Update to changes.  Now,
15631         doesn't salt away a copy of the context -- simplifying the
15632         lifetime rules of a 'MonoGenericContext *'.
15633         (mono_method_get_context): Return pointer to embedded context.
15634         (setup_generic_array_ifaces): Allocate temporary context on stack.
15635         * reflection.c (inflate_mono_method): Likewise.
15636         (mono_reflection_bind_generic_method_parameters): Likewise.
15637         Use the context embedded within the inflated method as the hash key.
15638
15639         Avoid a source of allocation of 'MonoGenericContext'.
15640         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
15641         and 'cached_context' fields into embedded 'MonoGenericContext' field.
15642         * class.c: Update to changes.
15643         (mono_generic_class_get_context): Simplify drastically.  Now just
15644         returns a pointer to the field.
15645         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
15646         argument as a const pointer.
15647         (mono_metadata_generic_context_equal): Likewise.
15648         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
15649         Update to changes.
15650
15651 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
15652
15653         * verify.c improved the handling of brtrue/brfalse, factored out common code
15654
15655 2007-06-14  Raja R Harinath  <rharinath@novell.com>
15656
15657         Kill MonoGenericMethod.
15658         * class-internals.h (MonoGenericContext::method_inst): Rename from
15659         'gmethod' and convert to a MonoGenericInst.
15660         (MonoGenericMethod): Remove.
15661         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
15662         * loader.c (method_from_methodspec): Update to changes.  Use a
15663         MonoGenericContext as the key to the hashtable.
15664         * metadata.c (mono_metadata_generic_context_equal): Rename from 
15665         'mono_metadata_generic_method_equal' and take MonoGenericContext.
15666         (mono_metadata_generic_context_hash): Likewise from
15667         'mono_metadata_generic_method_hash'.  Change hash function.
15668         (mono_metadata_load_generic_params): Update to changes.
15669         (mono_get_shared_generic_method): Remove.
15670         * metadata-internals.h (mono_get_shared_generic_method): Remove.
15671         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
15672         (inflate_generic_context): Likewise.
15673         (mono_class_inflate_generic_method_full): Likewise.
15674         (setup_generic_array_ifaces): Likewise.
15675         (mono_class_create_from_typespec): Likewise.
15676         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
15677         (method_encode_methodspec): Update callsite.
15678         (reflection_methodbuilder_to_mono_method): Update to changes.
15679         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
15680         MonoGenericContext as the key to the hashtable.
15681         (inflate_mono_method): Update to changes.
15682
15683         * class-internals.h (MonoGenericMethod::container): Remove.
15684         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
15685
15686 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
15687
15688         * profiler-private.h, profiler.c, profiler.h: added API to profile
15689         exception events.
15690
15691 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15692
15693         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
15694
15695 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
15696
15697         * verify.c: method invocation is now validated, now we verify parameter types on stack.
15698         Fixed overflow and underflow not aborting the verification process.
15699
15700 2007-06-13  Mark Probst  <mark.probst@gmail.com>
15701
15702         * class-internals.h (MonoStats): Added stats entries for dynamic
15703         code allocations.
15704
15705 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
15706
15707         * loader.c (mono_free_method): Free header->locals and header->clauses.
15708
15709         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
15710         dynamic case.
15711
15712         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
15713
15714         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
15715
15716 2007-06-12  Raja R Harinath  <rharinath@novell.com>
15717
15718         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
15719         the tables.
15720
15721 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15722
15723         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
15724
15725 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15726
15727         MonoGenericMethod on a diet
15728         * class-internals.h (_MonoMethodInflated::reflection_info): Move
15729         here ...
15730         (_MonoGenericMethod::reflection_info): ... from here.
15731         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
15732         Update to changes.
15733         * reflection.c (inflate_mono_method): Likewise.
15734         (mono_reflection_bind_generic_method_parameters): Likewise.
15735
15736 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15737
15738         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
15739         *verify.c: factored long ldarg forms to share code with short forms
15740
15741 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15742
15743         *verify.c: fixed code formating factored some duplicate code
15744         into a new function
15745
15746         *verify.h: fixed binary incompatibility introduced earlier
15747
15748         *pedump.c: fixed formating
15749
15750 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15751
15752         Fix assertion when disassembling Mono.C5.dll
15753         * loader.c (method_from_methodspec): Avoid inflating a method
15754         twice with the same context.  If the methodref is inflated, use
15755         the declaring method instead.
15756
15757         * class.c (mono_class_from_generic_parameter): Fix case similar to
15758         bug #81830 handled below, but for method containers.
15759
15760 2007-06-10  Raja R Harinath  <harinath@gmail.com>
15761
15762         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
15763         get_shared_generic_class.  Directly inflate the instance.
15764         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
15765         (inflate_generic_class): Delete.
15766         (get_shared_generic_class): Delete.  Move setting of
15767         'cached_class' and 'cached_context' ...
15768         * metadata.c (mono_metadata_lookup_generic_class): ... here.
15769
15770         * metadata.c (mono_metadata_lookup_generic_class): Change
15771         signature to take the components of a MonoGenericClass rather than
15772         an allocated MonoGenericClass.  Change semantics to be intern-like.
15773         * reflection.c (mono_class_bind_generic_parameters): Update to
15774         changes.  Make locking region tighter.
15775         * class.c (inflate_generic_class): Update to changes.
15776         (get_shared_generic_class): Likewise.
15777         * metadata-internals.h: Likewise.
15778
15779         * reflection.c (mono_class_bind_generic_parameters): Take and
15780         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
15781         (mono_reflection_bind_generic_parameters): Use
15782         'mono_class_bind_generic_parameters' rather than duplicate the code.
15783         * class.c (mono_bounded_array_class_get): Update to changes.
15784         * object-internals.h: Likewise.
15785
15786         * reflection.c (mono_class_bind_generic_parameters): Only support
15787         parameterizing generic type definitions.  Remove support for other
15788         open types.
15789
15790 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
15791
15792         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
15793
15794         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
15795         in the dynamic case.
15796
15797 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
15798
15799         * threads.c: When cleaning up thread, reset the Background bit.
15800         Fixes bug #81720.
15801
15802 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
15803
15804        * metadata.c: Move variable declarations to top of scope.
15805        * verify.c: Move variable declarations to top of scope.
15806
15807        Code is contributed under MIT/X11 license.
15808
15809 2007-06-08  Raja R Harinath  <rharinath@novell.com>
15810
15811         * reflection.c (mono_class_bind_generic_parameters): Replace
15812         open-coded loop with mono_metadata_inflate_generic_inst.
15813
15814         * class.c (get_shared_generic_class): Don't call
15815         mono_get_shared_generic_inst.  Use the container's own
15816         'class_inst'.
15817
15818         * metadata.c (mono_metadata_load_generic_params): Move
15819         initialization of 'context' field here from ...
15820         * class.c (mono_class_create_from_typedef): ... here, and ...
15821         * loader.c (mono_get_method_from_token): ... here.
15822
15823         * class.c (get_shared_generic_class): Rename from
15824         mono_get_shared_generic_class and make static.
15825         (mono_get_shared_generic_inst): Move to metadata.c.
15826         * loader.c (mono_get_shared_generic_method): Likewise.
15827         * class-internals.h, metadata-internals.h: Update to changes.
15828
15829         Fix #81830
15830         * class.c (mono_class_from_generic_parameter): Don't assume a
15831         generic container owner exists.  Generic containers from monodis
15832         don't have any.
15833
15834 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
15835
15836         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
15837         * verify.h: new typedefs to returns the non-verifiable status
15838         * verify.c: initial implementation of generics, stack merging and object compatibility check
15839
15840 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15841
15842         * class.c, image.c, class-internals.h (MonoImage): class_cache is
15843         a MonoInternalHashTable again (fixed bug in internal hash table
15844         code).
15845
15846 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15847
15848         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
15849         MonoInternalHashTable again (fixed bug in internal hash table
15850         code).
15851
15852 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15853
15854         * class.c, image.c, class-internals.h, domain.c,
15855         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
15856         changes.  Have to figure out what makes them break the SWF
15857         regression.
15858
15859 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15860
15861         * class.c, image.c, class-internals.h (MonoImage): class_cache is
15862         a MonoInternalHashTable now.
15863
15864 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15865
15866         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
15867         MonoInternalHashTable now.
15868
15869 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
15870
15871         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
15872         invoke_impl code.
15873
15874         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
15875
15876         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
15877         dependent trampoline.
15878
15879         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15880
15881         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
15882
15883 2007-05-29  Robert Jordan  <robertj@gmx.net>
15884
15885         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
15886
15887 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
15888
15889         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
15890
15891 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
15892
15893        * marshal.c: Fix interface lookup loops for
15894        cominterop_get_com_slot_for_method and 
15895        cominterop_get_method_interface. Only need to lookup
15896        if type is a class, else use interface type method is on.
15897
15898        Code is contributed under MIT/X11 license.
15899
15900 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
15901
15902         * reflection.c: HasSecurity can be present even if no specially 
15903         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
15904         SecurityAttribute). Fix CAS regression tests on buildbot.
15905
15906 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
15907
15908        * appdomain.c: Add configure checks for header files.
15909        * image.c: Add configure checks for header files.
15910        * file-io.c: Add configure checks for header files.
15911        * debug-mono-symfile.c: Add configure checks for header files.
15912        * threadpool.c: Add configure checks for header files.
15913        * console-io.c: Add configure checks for header files.
15914        * profiler.c: Add configure checks for header files.
15915        * rawbuffer.c: Add configure checks for header files.
15916        * icall.c: Add configure checks for header files.
15917        * rand.c: Add configure checks for header files.
15918        * socket-io.c: Add configure checks for header files.
15919
15920        Code is contributed under MIT/X11 license.
15921
15922 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
15923
15924         * reflection.c (mono_custom_attrs_from_builders): Remove the 
15925         assertion as it breaks the build.
15926         
15927         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
15928
15929         * reflection.c (lookup_custom_attr): Make a copy here too.
15930
15931         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
15932         dynamic images.
15933
15934         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
15935         images.
15936
15937         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
15938         info.
15939
15940 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
15941
15942         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
15943         (load_cattr_value): Ditto.
15944
15945 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
15946
15947         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
15948
15949 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
15950
15951         * threads.c: In "start_wrapper", set apartment_state to MTA if
15952         apartment_state is Unknown and we're running on 2.0 profile or
15953         higher.
15954         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
15955         to main method, then set apartment_state to Unknown on 1.0 profile,
15956         and MTA on 2.0 profile.
15957
15958 2007-05-16  Jb Evain  <jb@nurv.fr>
15959
15960         * class-internals.h (MonoDefaults): Add an attribute_class and
15961           customattribute_data_class.
15962         * domain.c (mono_init_internal): Populate them.
15963         * reflection.c: Use them to remove duplicates. Make a vew
15964         MonoClass variables `static'.
15965
15966 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
15967
15968         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
15969         step in implementing IMT, so that all isinst checks now can go
15970         through the bitmap.
15971         This was needed because vtables for TransparentProxy need to look
15972         like the vtable of the "target" class, so they need to point to
15973         its interface bitmap directly.
15974
15975         * object.c: inside "mono_class_create_runtime_vtable" and
15976         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
15977
15978 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15979
15980         * object-internals.h
15981           culture-info.h : added territory field in MonoCulture and
15982           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
15983         * locales.c : fill territory field above too.
15984         * culture-info-table.h : regenerated.
15985
15986 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
15987
15988         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
15989         Fixes #81599.
15990
15991 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
15992
15993         * object.c: Always initialize apartment, even if 
15994         there is no custom attributes on entry point.
15995         
15996         Code is contributed under MIT/X11 license.
15997
15998 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
15999
16000         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
16001         * metadata.c: If no encoding is set, check for unicode
16002         on class.
16003         
16004         Code is contributed under MIT/X11 license.
16005
16006 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16007
16008         * threads.c: Handle if mono_thread_current returns NULL 
16009         
16010         Code is contributed under MIT/X11 license.
16011
16012 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16013
16014         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
16015         in start_wrapper. Added mono_thread_init_apartment_state and
16016         mono_thread_cleanup_apartment_state.
16017         * object.c: Initialize thread apartment state on main thread
16018         by checking for STAThreadAttribute on entry point.
16019         * object-internals.h: Add apartment_state field to MonoThread.
16020         * threads-types.h: Add unmanaged definition of 
16021         System.Threading.ApartmentState, MonoThreadApartmentState.
16022         
16023         Code is contributed under MIT/X11 license.
16024         
16025 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
16026
16027         * class.c: Fix windows build.
16028         * class-internals.h: Fix windows build.
16029         
16030         Code is contributed under MIT/X11 license.
16031
16032 2007-05-08  Robert Jordan  <robertj@gmx.net>
16033
16034         * process.c (CreateProcess_internal):
16035         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
16036         .CreateNoWindow was specified. Fixes #81496.
16037
16038 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16039
16040         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
16041         step in implementing IMT, replaced it with two compact arrays
16042         (interfaces_packed and interface_offsets_packed) and a bitmap that
16043         is used for isinst checks (interface_bitmap).
16044
16045         * class.c: (compare_interface_ids): compare function to pass to
16046         bsearch when looking for an interface with a given id.
16047         (mono_class_interface_offset): reimplemented using bsearch on
16048         interfaces_packed, getting the offset from interface_offsets_packed.
16049         (print_implemented_interfaces): utility debugging function.
16050         (setup_interface_offsets): reworked to initialize interfaces_packed,
16051         interface_offsets_packed and interface_bitmap.
16052
16053         * object.c: replaced all accesses to "MonoClass.interface_offsets"
16054         with uses of interfaces_packed and interface_offsets_packed.
16055
16056 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16057
16058         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
16059         mono_class_interface_offset prototype to wrap all accesses to
16060         "MonoClass.interface_offsets".
16061
16062         * class.c: Implemented mono_class_interface_offset, and wrapped all
16063         accesses to "MonoClass.interface_offsets".
16064
16065         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
16066         "MonoClass.interface_offsets".
16067
16068 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16069
16070         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
16071         GetMethodFromHandle overloads (bug #78637).
16072
16073 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16074
16075         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
16076         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
16077
16078 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
16079
16080         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
16081         #81498.
16082
16083         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16084         gracefully.
16085         (mono_custom_attrs_from_index): Ditto.
16086
16087         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
16088         Fixes #81501.
16089
16090 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
16091
16092         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16093         is now allocated from a mempool.
16094
16095 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
16096
16097         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16098         caller holds threads_lock, leading to deadlocks. Fixes #81476.
16099
16100 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
16101
16102         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16103         mono_loader_clear_error () too late. Fixes #81463.
16104
16105 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
16106
16107         * culture-info-table.h : regenerated.
16108
16109 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
16110
16111         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16112         is missing.
16113
16114 2007-04-25  Dick Porter  <dick@ximian.com>
16115
16116         * Makefile.am: Put the mingw enforced-optimisation back into the
16117         PLATFORM_WIN32 section.
16118
16119 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
16120
16121         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16122         patch.
16123
16124         * image.c (mono_image_load_module): New API function to load a module reference.
16125
16126         * image.c (load_modules): Load modules lazily. Fixes #80812.
16127
16128         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16129         
16130         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16131
16132         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16133         to mono_image_load_module_dynamic.
16134
16135 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16136
16137         * marshal.c: Fix calling convention for CCW on non-windows
16138         platforms. STDCALL on windows, CDECL everywhere else to work 
16139         with XPCOM and MainWin COM.
16140         
16141         Code is contributed under MIT/X11 license.
16142
16143 2007-04-23  Martin Baulig  <martin@ximian.com>
16144
16145         Fix #80969.
16146
16147         * loader.c
16148         (method_from_memberref): Added `gboolean *used_context' argument.
16149         (mono_get_method_from_token): Likewise.
16150         (mono_get_method_full): Don't insert the method in the cache when
16151         `used_context' is true.
16152
16153 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16154
16155         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16156
16157         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16158         create new MonoTypes for returned types.
16159         * class.c (mono_generic_class_get_class): Export mono-internal.
16160         * class-internals.h: Update to changes.
16161
16162 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16163
16164         * threadpool.c, threadpool.h, icall-def.h: patch from
16165         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16166
16167 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16168
16169         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16170         
16171         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16172
16173         * threads.c (mono_thread_get_stack_bounds): New helper function.
16174
16175         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16176         Correctly compute stack bounds when attaching. Fixes #81394.
16177
16178 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16179
16180         * reflection.c: fix handling of doubles in custom attributes
16181         for the arm-fpa format (bug #81368).
16182
16183 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16184
16185         * reflection.c (assembly_add_win32_resources): Mildly relax an
16186         bounds check to let the end pointer point just past the end of the
16187         allocated buffer.  (may fix #81384)
16188
16189 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16190
16191         * culture-info-table.h : regenerated.
16192
16193 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16194
16195         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16196         the thread is aborted early.
16197
16198 2007-04-05  Dick Porter  <dick@ximian.com>
16199
16200         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16201         FindFirstFile()/FindNextFile() to find entries.  This lets the
16202         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16203         81038.
16204
16205         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16206         the parameters of
16207         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16208
16209 2007-04-04  Martin Baulig  <martin@ximian.com>
16210
16211         * debug-helpers.c
16212         (mono_method_desc_full_match): Add support for nested classes.
16213
16214 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16215
16216         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16217
16218 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16219
16220         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16221         waiting for too many threads.
16222
16223 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16224
16225         * environment.c: Fix return value check on uname so we can get the 
16226         executing version on Solaris operating systems.
16227
16228 2007-03-28  Jb Evain  <jbevain@gmail.com>
16229
16230         * class.c (mono_type_get_name_recurse): Complete the
16231         fix for the creation of assembly qualified names for
16232         pointer types. Fixes #81208.
16233
16234 2007-03-27  Dick Porter  <dick@ximian.com>
16235
16236         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16237         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16238         changed.
16239
16240         * threads.c
16241         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16242         the value of ReleaseMutex().
16243
16244 2007-03-27  Dick Porter  <dick@ximian.com>
16245
16246         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16247         in little-endian order, not network endian, so must be converted
16248         to host endian here.  Fixes bug 80593.
16249
16250 2007-03-22  Jb Evain  <jbevain@gmail.com>
16251
16252         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16253         qualified names for pointer types. Fixes #81208.
16254
16255 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16256
16257         * marshal.c: Add support for PreserveSigAttribute. 
16258         
16259         Code is contributed under MIT/X11 license.
16260
16261 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16262
16263         * process.c: Fix endianness issues. Fixes #81126.
16264
16265         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16266         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16267
16268         * image.c (mono_image_lookup_resource): Make this work on big-endian
16269         machines.Change API contract so the caller needs to free the return value.
16270         
16271         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16272         API change.
16273         
16274 2007-03-14  Martin Baulig  <martin@ximian.com>
16275
16276         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16277         mono_type_get_desc() as well.
16278
16279 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16280
16281         * icall.c:  Fix environ access in VS.  
16282         
16283 2007-03-13  Alp Toker  <alp@atoker.com>
16284
16285         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16286         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16287         #63841.
16288
16289 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16290
16291         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16292         circular references among dynamic methods. Fixes #81091.
16293
16294         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16295
16296 2007-03-09  Martin Baulig  <martin@ximian.com>
16297
16298         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16299
16300 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16301
16302         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16303         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16304         
16305         Code is contributed under MIT/X11 license.
16306         
16307 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16308
16309         * loader.c: Reapply patch for bug #79424.
16310
16311 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16312
16313         * metadata.c (mono_type_to_unmanaged): Only convert object to
16314         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16315
16316 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16317
16318         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16319         (and incorrectly set) is_reference field from MonoGenericInst.
16320
16321 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16322
16323         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16324         a little earlier.
16325
16326         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16327
16328         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16329
16330 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16331
16332         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16333         FileOptions.1 value to mean "temporary", map that to
16334         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16335
16336         Fixes 80688
16337
16338 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16339
16340         * appdomain.c: implement MS .Net style shadow copying. Copies of
16341         the assemblies are made in a subdirectory of the dynamic base
16342         directory, the assembly names are preserved.
16343         Copy .mdb and .config files along with the assemblies being shadowed.
16344
16345 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16346
16347         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16348         (emit_marshal_handleref): Ditto.
16349
16350         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16351         on Visual C++. Fixes #80671.
16352
16353 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16354
16355         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16356         for clone operations.
16357
16358 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16359
16360         * marshal.c: Fix warnings.
16361
16362 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
16363
16364         * loader.c: allow case-insensitive matching of the dll name
16365         in dllmap handling when prefixed with "i:".
16366
16367 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
16368
16369         * threads.c: Fix #ifdef for dummy_apc function for VS.
16370
16371 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16372
16373         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
16374
16375 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
16376         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
16377         giving precedence to the methods with a fully qualified name
16378         (InterfaceName.MethodName) when building the interface sections
16379         of the vtable.
16380
16381 2007-02-16  Dick Porter  <dick@ximian.com>
16382
16383         * threadpool.c (append_job): Fix fast-path array handling, so it's
16384         less likely the array will grow exponentially when the load is
16385         heavy.
16386
16387 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16388
16389         * metadata-internals.h, loader.c: fix dllmap lookup order
16390         for non-function maps, too, and prepare for fallback code.
16391
16392 2007-02-12  Robert Jordan  <robertj@gmx.net>
16393
16394         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
16395         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
16396         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
16397         GlobalFree. Fixes a part of bug #77075.
16398
16399 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
16400
16401         * loader.c: implemented typedef parent in field memberref.
16402
16403 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
16404
16405         * marshal.c: Fix warnings and remember to call Release on
16406         IUnknown of RCW.
16407         
16408         Code is contributed under MIT/X11 license.
16409
16410 2007-02-10  Miguel de Icaza  <miguel@novell.com>
16411
16412         * class-internals.h: Add MonoHandleRef definition, and
16413         handleref_class to mono_defaults. 
16414
16415         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
16416         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
16417
16418         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
16419         (do nothing on this stage)
16420         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
16421         (emit_marshal_handleref): New method, used for argument handling
16422         of HandleRefs. 
16423
16424 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
16425
16426         * class.c (mono_class_setup_parent): Lazily init com types.
16427         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
16428         init com types.
16429         * object.c (mono_remote_class_vtable): Lazily init com types.
16430         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
16431         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
16432         * domain-internals.h: Expose mono_init_com_types.
16433         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
16434         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
16435         Add support for COM Callable Wrapper marshalling.
16436         * marshal.h: Add icall definitions.
16437         * gc.c: Handle freeing of CCWs in finalizer code.
16438         
16439         Code is contributed under MIT/X11 license.
16440
16441 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
16442
16443         * reflection.c: changed all the signature encoding code to use
16444         a variable-sized buffer.
16445
16446 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16447
16448         * marshal.c: locking fixes: never take the loader lock
16449         or other runtime locks when holding the marshal lock
16450         (fixes bug#80664).
16451
16452 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
16453
16454         * marshal.c: make the delegate function pointer mapping
16455         work for the moving GC.
16456
16457 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
16458
16459         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
16460         for bug #80618.
16461
16462 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
16463
16464         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
16465         gmodule.
16466
16467 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
16468
16469         * threadpool.c: made the code moving-GC safe.
16470
16471 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
16472
16473         * assembly.c, boehm-gc.c, class-internals.h, class.c,
16474         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
16475         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
16476         warning cleanup.
16477         * reflection.c: warning cleanup, some threading and moving GC fixes.
16478
16479 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
16480
16481         * class.c, loader.c: create the needed Set/Get/Address array methods
16482         as well as the .ctors in mono_class_init (), fixes bug #80567.
16483
16484 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
16485
16486         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
16487         we doesn't decrease its alignment. Should fix the sparc build.
16488
16489 2007-01-24  Dick Porter  <dick@ximian.com>
16490
16491         * socket-io.c
16492         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
16493         Create the returned object if we need to ignore an unsupported
16494         socket option.  Fixes a segfault reported by Atsushi.
16495
16496 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
16497
16498         * class.c, object.c: restrict GC-tracked fields to
16499         UIntPtr fields used inside corlib, so we provide better
16500         type info to the GC and also allow broken packing as in
16501         bug #80580.
16502
16503 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
16504
16505         * sgen-gc.c: removed duplicated function.
16506
16507 2007-01-19  Miguel de Icaza  <miguel@novell.com>
16508
16509         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
16510         value that means that the value is not supported, but that we
16511         should not return a failure, but instead report this as a
16512         successful operation.
16513
16514 2007-01-19  Raja R Harinath  <rharinath@novell.com>
16515
16516         Fix tests/bug79956.2.il
16517         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
16518         (mono_generic_class_get_class): If the generic definition in an
16519         enum, copy over other fields related to it.
16520
16521 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
16522
16523         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
16524         genericinst enums (bug #79215).
16525
16526 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
16527         * class.c: Fix bug 80307.
16528
16529 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
16530
16531         * image.c: if the file table is not present, try to load
16532         all the modules, since we don't have info about them
16533         having or not metadata (bug #80517).
16534         * assembly.c: allow mono_assembly_load_references () to
16535         work for netmodules.
16536
16537 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16538
16539         * image.c, metadata-internals.h, object.c: execute module
16540         cctors when running on the 2 runtime if present (bug #80487).
16541
16542 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
16543
16544         * icall.c: optimized InitializeArray() on bigendian.
16545
16546 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
16547
16548         * icall.c: fix for the broken ARM FPA double format.
16549
16550 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
16551
16552         * icall.c: handle endian issues for r4 and r8 types, too, in
16553         the InitializeArray() icall.
16554
16555 2007-01-15  Miguel de Icaza  <miguel@novell.com>
16556
16557         * loader.c (mono_loader_error_prepare_exception): Clear the error
16558         once we have extracted the information from it, do this before we
16559         call into the JIT's class loading mechanisms.
16560
16561         * object.c (mono_class_create_runtime_vtable): Do not clear the
16562         loader error before calling mono_class_get_exception_for_failure
16563         as the loader error is needed inside
16564         mono_class_get_exception_for_failure to throw the error (thinko).
16565
16566         Fixes #80521
16567         
16568 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
16569
16570         * reflection.c: align fields rva data so it's faster to load at
16571         runtime.
16572
16573 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16574
16575         Prepare to simplify GenericMethod handling.
16576         * class-internals.h (mono_method_get_context): New accessor function.
16577         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
16578         rather than directly accessing '->context' field.
16579
16580         * class-internals.h (_MonoGenericParam.method): Move ...
16581         (_MonoGenericContainer): ... here.  Add into union with klass field.
16582         * class.c, icall.c, loader.c, metadata.c, reflection.c:
16583         Update to changes.
16584
16585 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
16586
16587         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
16588         the wrapper type enum and reduce relocations.
16589
16590 2007-01-12  Raja R Harinath  <rharinath@novell.com>
16591
16592         * reflection.c (inflate_mono_method): Reuse method instantiation
16593         from the generic method, if available.
16594
16595 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16596
16597         * marshal.c (emit_marshal_variant): Fix conv_arg
16598         type in last commit, based on whether parameter is byref.
16599         
16600 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16601
16602         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
16603         marshalling.
16604         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
16605         MONO_TYPE_OBJECT back for VARIANT support.
16606
16607 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
16608
16609         * marshal.c, marshal.h, icall-def.h: Implement 
16610         Marshal.ReAllocCoTaskMem.
16611
16612 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
16613
16614         * marshal.c: memory retention fixes: use the proper
16615         image cache for runtime_invoke method lookups.
16616
16617 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
16618
16619         * mempool.c: added code to help debug mempool allocations.
16620
16621 2007-01-11  Dick Porter  <dick@ximian.com>
16622
16623         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
16624         support (experimenting with faking it with IP_MTU_DISCOVER for
16625         systems that don't have IP_DONTFRAGMENT.)
16626         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
16627         icall.
16628
16629         * icall-def.h: new System.Net.Sockets.Disconnect icall.
16630
16631         * socket-io.h: Add new fields to MonoSocketAsyncResult
16632         corresponding to the new ones in Socket.cs.
16633
16634 2007-01-11  Raja R Harinath  <rharinath@novell.com>
16635
16636         Fix IronPython regression mentioned in #80249
16637         * metadata.c (do_mono_metadata_parse_generic_class): Clear
16638         'cached_context' field, since it may have been initialized as a
16639         side-effect of metadata parsing.
16640
16641         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
16642         (_MonoGenericClass.cached_class): Move here and rename from lone
16643         remaining field of ...
16644         (_MonoInflatedGenericClass): ... this.  Remove.
16645         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
16646         to changes.
16647
16648         Fix mcs/tests/test-128.cs regression.
16649         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
16650         2007-01-10 change below.
16651         [MONO_TYPE_OBJECT]: Recurse into array case.
16652
16653 2007-01-11  Raja R Harinath  <harinath@gmail.com>
16654
16655         * class-internals.h (mono_get_inflated_generic_class): Remove.
16656         * class.c (mono_get_inflated_generic_class): Remove.
16657         (mono_generic_class_get_class): Rename from
16658         mono_class_create_generic.
16659         (mono_class_from_mono_type) [GENERICINST]: Use it.
16660         * reflection.c, metadata.c: Update to changes.  Use
16661         'mono_class_from_mono_type'.
16662
16663 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
16664
16665         * reflection.c: use passed type when encoding an array element
16666         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
16667
16668 2007-01-09  Robert Jordan  <robertj@gmx.net>
16669
16670         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
16671         result arguments (someDelegate.EndInvoke (unrelatedAres)).
16672         Fixes bug #80392.
16673
16674 2007-01-09  Raja R Harinath  <rharinath@novell.com>
16675
16676         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
16677
16678         * object.c (set_value): Avoid aliasing between type->data.klass
16679         and type->data.generic_class.
16680
16681         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
16682
16683 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16684
16685         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
16686         between type->data.klass and type->data.generic_class.
16687
16688 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
16689
16690         * marshal.c: In MS.NET, StringBuilder objects are not copied by
16691         value in out parameters.
16692
16693 2007-01-08  Raja R Harinath  <rharinath@novell.com>
16694
16695         Simplify invariant for MonoGenericClass::klass field.
16696         * class.c (mono_class_create_generic): Verify 'klass' is null.
16697         * metadata.c (do_mono_metadata_parse_generic_class): Don't
16698         initialize 'klass' field.
16699
16700 2007-01-05  Raja R Harinath  <rharinath@novell.com>
16701
16702         Ongoing work to avoid redundant data and simplify invariants.
16703         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
16704         'generic_class', and change type to a GenericInst.
16705         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
16706         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16707
16708 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
16709
16710         * class.c : skip io-layer under PLATFORM_WIN32.
16711
16712 2007-01-03  Tor Lillqvist  <tml@novell.com>
16713
16714         Fix #80305: In a bundled executable, look in the bundled exe
16715         assembly to determine the runtime version. Add the possibility to
16716         bundle also the machine.config file.
16717         
16718         * assembly.c (mono_assembly_open_from_bundle): Make
16719         non-static. Allow being called even if we have no bundled
16720         assemblies, and return NULL right away in that case.
16721
16722         * domain-internals.h: Declare mono_assembly_open_from_bundle()
16723         here.
16724
16725         * domain.c (app_config_parse): Take an assembly exe file name as
16726         parameter instead of a config file name. Check for a bundled
16727         config file for that assembly by calling
16728         mono_config_string_for_assembly_file() (see below) before looking
16729         for one in the file system.
16730         (get_runtimes_from_exe): Corrsponding change to call of
16731         app_config_parse().
16732         (get_runtimes_from_exe): Check for bundled assembly exe file first
16733         by calling mono_assembly_open_from_bundle(). If no bundled
16734         assembly exe file is found, call mono_image_open() as before to
16735         look it up in the file system.
16736
16737         * mono-config.c: Add variable bundled_machinec_onfig.
16738         (mono_config_string_for_assembly_file): New function.
16739         (mono_config_for_assembly): Move code snippet that looks for a
16740         bundled assembly .config file into the above new function. Call
16741         it.
16742         (mono_register_machine_config, mono_get_machine_config): New
16743         functions to set and retrieve
16744
16745         * assembly.h: Declare mono_register_machine_config().
16746
16747         * mono-config.h: Declare mono_get_machine_config() and
16748         mono_config_string_for_assembly_file().
16749
16750         * icall.c: No declaration of environ necessary on Win32. It is
16751         declared (as a macro expanding to a function call) in stdlib.h.
16752         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
16753         New internal mono function. Returns the value of
16754         mono_get_machine_config() as a Mono string.
16755
16756         * icall-def.h: Add get_bundled_machine_config().
16757
16758 2007-01-04  Raja R Harinath  <rharinath@novell.com>
16759
16760         Remove redundant field
16761         * class-internals.h (_MonoGenericContext.container): Remove field.
16762         * loader.c (mono_method_get_signature_full): Don't parse a
16763         "container" for a signature parse when the signature is inflated
16764         immediately.
16765         (method_from_methodspec): Likewise, for a generic_inst.
16766         * class.c, metadata.c, reflection.c: Update to changes.
16767
16768 2006-01-04  Raja R Harinath  <rharinath@novell.com>
16769
16770         * class-internals.h (_MonoGenericClass): Rename 'context' field to
16771         'cached_context', and change semantics -- it starts off NULL, and
16772         is initialized on demand.
16773         * class.c (mono_generic_class_get_context): New accessor to
16774         replace 'context' field accesses.
16775         (mono_class_get_context): New helper.
16776         (*): Update to changes.
16777         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
16778
16779 2007-01-03  Miguel de Icaza  <miguel@novell.com>
16780
16781         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
16782         before the memcpy.   Fixes Marshal2 regression.
16783
16784 2007-01-02  Jb Evain  <jbevain@gmail.com>
16785
16786         * blob.h: add a MONO_TYPE_ENUM definition
16787         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
16788         fix the encoding of arrays of enums in custom attributes.
16789
16790         Fixes #79666.
16791
16792 2007-01-01  Miguel de Icaza  <miguel@novell.com>
16793
16794         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
16795         string is null terminated, but only cut the string short if it
16796         overflows the buffer.   
16797         
16798         (mono_string_to_byvalstr): Also fix this routine.   The code here
16799         was not properly terminating a string (it was only terminated
16800         because of the previous catch-all memset). 
16801
16802         I left the memset, because I do not know if applications expect
16803         the runtime to clear this region. 
16804
16805         Fixes #79944.
16806
16807         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
16808         Clear the error before returning to unmanaged code to prevent the
16809         runtime from being confused later on (fixes  80420).
16810         (ves_icall_type_from_name): Always call mono_loader_clear_error
16811         after parsing a type that could have failed.
16812         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
16813
16814         * loader.c (mono_loader_clear_error): Fix indentation.
16815
16816 2006-12-28  Martin Baulig  <martin@ximian.com>
16817
16818         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
16819
16820 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
16821
16822         * reflection.c: patch from Rolf Bjarne Kvinge to fix
16823         getting a token for an EnumBuilder.
16824
16825 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
16826
16827         * reflection.c: be more careful in case resource generation
16828         fails to create the data array.
16829
16830 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
16831
16832         * sgen-gc.c: write barrier for clone and fix unregister handles.
16833
16834 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
16835
16836         * reflection.c: some fixes needed in the generics code for the moving GC.
16837
16838 2006-12-22  Robert Jordan  <robertj@gmx.net>
16839
16840         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
16841         account. Fixes bug #80299.
16842
16843 2006-12-21  Raja R Harinath  <rharinath@novell.com>
16844
16845         Fix WaitHandle usage in delegates.
16846         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
16847         * object.c (mono_wait_handle_new): Use the property set method to
16848         initialize the handle.
16849         (mono_wait_handle_get_handle): New.
16850         * threadpool.c (mono_async_invoke): Use it.
16851         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
16852         Likewise.
16853         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
16854
16855 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
16856
16857         * marshal.c (emit_marshal): Call emit_marshal_variant and
16858         emit_marshal_com_interface when applicable.
16859         (emit_marshal_variant, emit_marshal_com_interface): Add
16860         methods for this case and remove if's from emit_marshal_object.
16861         
16862 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
16863
16864         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
16865
16866 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
16867
16868         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
16869         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
16870         and GlobalFree on Windows. Remove FIXME.
16871
16872 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
16873
16874         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
16875         implementation for managed objects.
16876
16877 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
16878
16879         * object.c: implemented code to be used for checking
16880         that no reference field overlaps with non-references.
16881
16882 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16883
16884         * threadpool.c: fix queue code to be compatible with the
16885         moving GC.
16886
16887 2006-12-18  Miguel de Icaza  <miguel@novell.com>
16888
16889         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
16890         in structures by throwing ArgumentNullException.
16891
16892         (emit_marshal_safehandle): Also when they are null parameters.
16893
16894         (emit_marshal_safehandle): Add support for ref
16895         SafeHandles parameters
16896
16897 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16898
16899         * profiler.c: updated to use the mono-dl API instead of
16900         gmodule.
16901
16902 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16903
16904         * profiler.c: updated to use the mono-dl dynamic loading
16905         API instead of gmodule.
16906
16907 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
16908
16909         * profiler.c: use readlink, older versions of glib don't have
16910         g_file_read_link ().
16911
16912 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16913
16914         * profiler.c: try to detect the path to mono if libc fails to provide
16915         a useful name (bug #80286).
16916
16917 2006-12-16  Raja R Harinath  <rharinath@novell.com>
16918
16919         Fix #80242
16920         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
16921         instance, use the generic type definition instead.
16922         (ves_icall_Type_GetNestedTypes): Likewise.
16923         * class.c (mono_class_create_generic): Always set the
16924         nested_classes of a generic instance to NULL, even if the generic
16925         type definition has nested types.
16926
16927 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
16928
16929         * marshal.c (mono_string_from_bstr): Revert previous Windows change
16930         and fix on Linux.
16931         
16932 2006-12-15  Miguel de Icaza  <miguel@novell.com>
16933
16934         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
16935         my arguments were in the wrong order.   I also fixed the Windows
16936         version which seems to have had the same issue.
16937
16938         (mono_free_bstr): On Unix, this is g_free.
16939         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
16940         conversions (for the tests in corlib to pass).
16941
16942 2006-12-14  Miguel de Icaza  <miguel@novell.com>
16943
16944         * marshal.c (emit_ptr_to_object_conv): For now, ignore
16945         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
16946         exception if a ref SafeHandle in a struct has changed).
16947         
16948         (emit_struct_conv): Do not perform layout checks for classes
16949         derived from SafeHandle, as those are specially handled. 
16950
16951         (emit_object_to_ptr_conv): Add support for
16952         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
16953
16954         (emit_marshal_safehandle): Implement conversion of return values
16955         of safehandles (MARSHAL_ACTION_CONV_RESULT).
16956         
16957         * threads.c: WaitHandle now is compiled with two different handles
16958         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
16959         for 2.0.
16960         
16961         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
16962         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
16963         these routines to cope with both kinds of fields.
16964
16965 2006-12-12  Miguel de Icaza  <miguel@novell.com>
16966
16967         * metadata.c (mono_type_to_unmanaged): Handle the case where
16968         type->data.klass is a SafeHandle, and in that case, return the
16969         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
16970         MONO_MARSHAL_CONV_SAFEHANDLE. 
16971
16972 2006-12-11  Miguel de Icaza  <miguel@novell.com>
16973
16974         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
16975         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
16976         calling emit_marshal_object.
16977
16978         (emit_marshal_safehandle): Implement marshalling of
16979         SafeHandle parameters (no ref support yet).
16980
16981         (MarshalAction): Document the defines as I implement
16982         them for SafeHandle.
16983
16984         (emit_marshal_object): indentation police.
16985
16986         * class-internals.h: Define MonoSafeHandle.
16987         Add safehandle_class to MonoDefaults type.
16988
16989         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
16990         list of classes to check for fields. 
16991
16992         * domain.c (mono_init_internal): Add SafeHandle to the list of
16993         mono_defaults loaded.
16994
16995 2006-12-15  Raja R Harinath  <rharinath@novell.com>
16996
16997         Fix #80253
16998         * reflection.c (mono_reflection_bind_generic_parameters): If the
16999         generic type definition is a type builder, ensure that it is fully
17000         initialized before instantiating it.  Kill some dead code.
17001
17002 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17003
17004         * object.c: clear the loader_error () before loading
17005         more metadata stuff (bug #80258).
17006
17007 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
17008
17009         * icall.c, icall-defs.h: type modifiers icalls for
17010         parameters and properties.
17011
17012 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
17013
17014         * object.c, icall.c: fixed warnings.
17015
17016 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17017
17018         * marshal.c: fixed a couple of leaks and coding style in a few places.
17019
17020 2006-12-08  Dick Porter  <dick@ximian.com>
17021
17022         * process.c: Cope with NULL ProcessStartInfo arguments on windows
17023         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
17024         80173.
17025
17026 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17027
17028         * process.c: ProcessStartInfo may have only filename set and
17029         arguments can be NULL.
17030
17031 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17032
17033         * icall.c: fix leak found by Robert Jordan.
17034
17035 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17036
17037         * marshal.c, marshal.h: generate managed method to access an element
17038         of a multi-dimensional array.
17039
17040 2006-11-30  Paolo Molaro (lupus@ximian.com)
17041
17042         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
17043
17044 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17045
17046         * icall.c: back out GetFields () fix until the serialization code is
17047         fixed to not depend on the incorrect behaviour.
17048
17049 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17050
17051         * profiler.c: provide defaults if none are set.
17052
17053 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17054
17055         * Makefile.am, attrdefs.h: new public header file with
17056         constants for attributes for use by embedders.
17057
17058 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17059
17060         * icall.c: GetFields () fix for bug #80064.
17061
17062 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
17063
17064         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
17065         removed long unused icalls.
17066
17067 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
17068   
17069         * marshal.c: 
17070                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
17071                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
17072                 can be generated without a delegate class.
17073                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
17074         
17075         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17076
17077 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17078
17079         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
17080         #80069.
17081
17082 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17083
17084         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17085         icall-def.h: added icalls needed by System.GC.
17086
17087 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17088
17089         * loader.c: ensure the class in catch clauses is handled
17090         correctly for generics methods (fixes bug#79980).
17091
17092 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17093
17094         * monitor.h, monitor.c: added mono_locks_dump () function
17095         to help debug deadlocks involving managed locks.
17096
17097 2006-11-13  Dick Porter  <dick@ximian.com>
17098
17099         * file-io.c (get_file_attributes): If the file is a symlink try
17100         and get the stat data for the target, but also add the
17101         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
17102         the specs for the windows symlink support, but will probably have
17103         to be reworked when I have test data from a vista machine.  Fixes
17104         bug 79887.
17105
17106 2006-11-13  Dick Porter  <dick@ximian.com>
17107
17108         * gc.c (mono_domain_finalize): 
17109         * marshal.c (mono_delegate_begin_invoke): 
17110         * threadpool.c (socket_io_init, mono_thread_pool_init)
17111         (mono_thread_pool_finish): 
17112         * monitor.c (mono_monitor_try_enter_internal): 
17113         * threads.c (mono_thread_resume, mono_thread_init)
17114         (mono_thread_suspend_all_other_threads)
17115         (mono_thread_execute_interruption): 
17116         * appdomain.c (mono_domain_unload): Check for NULL error returns
17117         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
17118         75733.
17119
17120 2006-11-11  Miguel de Icaza  <miguel@novell.com>
17121
17122         * process.c
17123         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17124         Only close the handle if the value of the handle is not
17125         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17126         robust.
17127
17128         Improvement for #75733, so that we do not run into this problem. 
17129
17130         
17131         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17132         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17133         internal variables.  Fixes #79462 
17134         
17135
17136 2006-11-09  Dick Porter  <dick@ximian.com>
17137
17138         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17139         Use poll() not select().  Fixes bug 79397.
17140
17141 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17142
17143         Fix #79872
17144         * assembly.c (mono_assembly_load_from_full): Check that the given
17145         image has an assembly manifest.
17146
17147 2006-11-09  Ankit Jain  <jankit@novell.com>
17148
17149         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17150         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17151         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17152
17153 2006-11-07  Dick Porter  <dick@ximian.com>
17154
17155         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17156         Put the old resolver behaviour back for pre-2.0 profiles.
17157
17158 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17159
17160         * threadpool.c: precise GC and locking fixes.
17161
17162 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17163
17164         * class.c: don't load types that have an explicit unaligned
17165         managed reference. Provide better info in the TypeLoad exception.
17166         Part of the fix for bug #79744.
17167         * object.c: use the correct check for class type load issues.
17168
17169 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17170
17171         * class.c: enforce alignment of fields with managed references
17172         even when Pack=1 is forced by the user (bug #77788).
17173
17174 2006-11-03  Dick Porter  <dick@ximian.com>
17175
17176         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17177         If the address reverse lookup fails, return it as the hostname
17178         anyway.  Fixes bug 79721.
17179
17180 2006-11-03  Dick Porter  <dick@ximian.com>
17181
17182         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17183         Fix build on Windows.
17184
17185 2006-11-02  Dick Porter  <dick@ximian.com>
17186
17187         * icall-def.h: 
17188         * object-internals.h: 
17189         * exception.c (mono_get_exception_thread_interrupted): 
17190         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17191         Fixes bug 74525.
17192
17193         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17194         Check for pending Thread.Interrupt.
17195
17196 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17197         * loader.c: Fixed bug 79684.
17198
17199 2006-10-27  Dick Porter  <dick@ximian.com>
17200
17201         * file-io.c (get_file_attributes): Force symlinks to directories
17202         to be returned as a regular file.  Fixes bug 79733.
17203 2006-10-26  Dick Porter  <dick@ximian.com>
17204
17205         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17206         CreateFile to open a directory then we need to set the
17207         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17208
17209 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17210
17211         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17212         friends.
17213
17214 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17215
17216         * sgengc.c: small cleanup of timer code.
17217
17218 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17219
17220         * sgen-gc.c: fix some warnings and start adding support for
17221         complete object removal on domain unload.
17222
17223 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17224
17225         * assembly.c: build_assembly_name should not consider a version
17226         number without build or revision number invalid. Fixes bug #79715.
17227
17228 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17229
17230         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17231         call kernel32 function OutputDebugString directly.
17232         
17233         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17234         
17235 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17236
17237         * reflection.c: small cleanup, using a function to insert a MonoString
17238         in the string heap.
17239
17240 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17241
17242         * reflection.c: moving GC fixes.
17243
17244 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17245
17246         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17247         all the objects with finalizers belonging to an unloading appdomain.
17248
17249 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17250
17251         * sgen-gc.c: added ability to allocate even when the nursery is fully
17252         pinned and fixed a couple of bugs.
17253
17254 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17255
17256         * threads.h: Revert the last change for now.
17257
17258         * threads.h (mono_thread_get_pending_exception): Rename this to
17259         mono_thread_get_undeniable_exception ().
17260
17261 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17262
17263         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17264         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17265         when fname does not refer to valid assembly. This result in a more
17266         meaningful error message.
17267         * exception.c: added mono_get_exception_bad_image_format2 which 
17268         constructs a BadImageFormatException using the ctor taking a custom
17269         message and the file name. Passing in a NULL msg results in a default
17270         message.
17271         * exception.h: define mono_get_exception_bad_image_format2 function.
17272         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17273         when file name pointed to an invalid IL image. Use 
17274         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17275         as this results in a more meaningful error message.
17276
17277 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17278
17279         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17280         #79465.
17281
17282 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17283
17284         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17285         consistency with the other _size functions.
17286         (mono_type_stack_size): Ditto.
17287
17288         * class.c object.c icall.c: Fix warnings caused by the above change.
17289
17290         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17291
17292         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17293
17294         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17295
17296 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17297
17298         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17299         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17300         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17301         threadpool.h, threads-types.h: mark more internal functions.
17302
17303 2006-10-11  Dick Porter  <dick@ximian.com>
17304
17305         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17306         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17307         reproduce the bug even before applying the fix.)
17308
17309 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17310
17311         * reflection.c: allow retrieving attributes for arguments in generic
17312         methods (bug #79241).
17313
17314 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17315
17316         * debug-mono-symfile.c: properly check fopen () result (found by
17317         coverity).
17318
17319 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17320
17321         * reflection.c: make error message clearer and fixed two
17322         issuelets found by Coverity.
17323
17324 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17325
17326         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17327
17328 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17329
17330         * object-internals.h, gc-internal.h, profiler-private.h:
17331         mark internal functions.
17332
17333 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17334
17335         * reflection.c: put data in the text section.
17336         * icall.c: recognize more types in type_from_typename ().
17337         * process.c, marshal.c: added some GC FIXMEs.
17338
17339 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17340
17341         * loader.c: check for NULL before initializing.
17342
17343 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17344
17345         * gc.c (finalizer_thread): Use a non-alertable wait here.
17346
17347         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17348         until the correct solution is found.
17349
17350 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17351
17352         * reflection.c (mono_module_get_object): Avoid an assert when operating on
17353         modules with no metadata. Fixes #79596.
17354
17355         * image.c (load_metadata_ptrs): Put back the error message when
17356         the #- heap is encountered since the support is not complete yet.
17357
17358 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17359
17360         * gc.c: do not allow the user to SuppressFinalize () a
17361         delegate because it would leak the trampoline if present.
17362
17363 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17364
17365         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
17366         PropertyPtr table.
17367
17368 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
17369
17370         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
17371
17372         * metadata.c (mono_metadata_get_param_attrs): Ditto.
17373
17374         * row-indexes.h: Add definitions for *Ptr tables.
17375
17376         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
17377
17378         * metadata.c (mono_metadata_translate_token_index): New helper function to
17379         translate table indexes used in uncompressed metadata.
17380         (mono_metadata_decode_table_row): Ditto.
17381         (mono_metadata_decode_table_row_col): Ditto.
17382
17383         * metadata.c: Add table schema for *Ptr tables.
17384
17385         * class.c loader.c: Use the new helper function to access the affected metadata
17386         tables.
17387         
17388         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
17389         #38532.
17390         
17391 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
17392
17393         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
17394         sequences which can be unbounded in size. Fixes #79583.
17395
17396 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
17397
17398         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
17399         static initialization.
17400
17401         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
17402
17403         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
17404
17405         * domain.c (mono_domain_free): Free up type_init_exception_hash.
17406
17407         * object.c (mono_runtime_class_init): Implement correct semantics when a static
17408         ctor fails, i.e. throw the same exception on subsequent accesses.
17409         
17410 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
17411
17412         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
17413         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
17414         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
17415         Handle marshalling of interfaces and VARIANTs contained in structs.
17416         
17417         Code is contributed under MIT/X11 license.
17418         
17419 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
17420
17421         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
17422         
17423         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
17424         mempool.
17425
17426 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17427
17428         * console-io.c: ignore previous SIGINT handler.
17429
17430 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
17431
17432         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
17433         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
17434         #79460, #79461, #79485.
17435
17436         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
17437
17438         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
17439         #79217.
17440
17441 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
17442
17443         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
17444         could be generated from it.
17445
17446 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
17447
17448         * rand.c: fix read loop to correctly handle EINTR.
17449
17450 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17451
17452         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
17453         internal calls are defined to keep methods closer to the declaring
17454         type and allow a significant reduction in runtime relocations and
17455         memory usage.
17456
17457 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
17458
17459         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
17460         exception message to have FileNotFoundException use the default
17461         assembly load error message. Fixes bug #79426.
17462         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
17463
17464 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17465
17466         * threadpool.c: (start_thread_or_queue) use the root domain when
17467         creating the thread instead of the async object one.
17468
17469 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
17470
17471         * class.c, object.c, class-internals.h, reflection.c:
17472         for arrays, store element_size inside MonoClass (speedup
17473         for array object creation).
17474
17475 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
17476
17477         * icall.c: fixed CodeBase to use the file name and not the module
17478         name (bug #79365).
17479
17480 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17481
17482         * mono-debug.c, mono-debug.h: export find_method as
17483         mono_debug_find_method ().
17484
17485 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17486
17487         * debug-helpers.c, class-internals.h: added a few functions useful
17488         when debugging under gdb.
17489
17490 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17491
17492         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
17493         characters that need special handling.
17494
17495 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
17496
17497         * mono-config.c: make the os/cpu specification more flexible,
17498         allowing lists and negation.
17499
17500 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
17501
17502         * marshal.c: COM Interop fixes. Handle case where method->klass.
17503         is interface. Handle BSTR/MonoString when null. Use CDECL as 
17504         calling convention on non-windows platforms. This is for
17505         compatibility with XPCOM and MainWin COM.
17506         
17507         Code is contributed under MIT/X11 license.
17508         
17509
17510 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
17511
17512         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
17513         correctly. Fixes #79217.
17514
17515         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
17516
17517 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
17518
17519         * mono-config.c: allow both an os and cpu attribute for dllmap
17520         and dllentry elemnets to enable a single config file to be used
17521         for multiple architectures.
17522
17523 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
17524
17525         * loader.c: MonoLoaderError was cleared too soon on load failure.
17526         Fixes bug #79424.
17527
17528 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
17529
17530         * icall.c: use the defining class vtable when accessing a
17531         static field, not a pobblibly derived class.
17532
17533 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
17534
17535         * icall.c string-icalls.c: Remove references to unicode.h.
17536
17537         * unicode.h unicode.c Makefile.am: Remove these unused source files.
17538
17539         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
17540
17541         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
17542         indicating the image where custom marshaller types should be looked up.
17543         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
17544         custom marshallers, instead of corlib. Fixes #79425.
17545
17546 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
17547
17548         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
17549
17550 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
17551
17552         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
17553         Implement Environment.ProcessorCount.
17554         
17555         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
17556         Implement Environment.ProcessorCount.
17557         
17558         * icall.c: 
17559         Add Environment.ProcessorCount icall.
17560         
17561         Patch by Jason McFall.
17562
17563 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17564
17565         * assembly.c: don't append .exe/.dll when the filename already contains
17566         one of those extensions.
17567
17568 2006-09-12  Martin Baulig  <martin@ximian.com>
17569
17570         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
17571         to array interfaces.
17572
17573 2006-09-11  Martin Baulig  <martin@ximian.com>
17574
17575         * reflection.c (mono_image_build_metadata): Create the
17576         MethodImpl's after emitting all types and methods, so we don't
17577         need another fixup pass for them.
17578
17579 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
17580
17581         * class.c (mono_class_from_name_case): Fix regression introduced by the last
17582         change.
17583
17584 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
17585
17586         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
17587         unload.
17588
17589 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
17590
17591         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
17592         args is not set. Fixes #78926.
17593
17594 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
17595
17596         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
17597
17598         * image.c (load_class_names): Move this to class.c, and rename it to 
17599         'mono_image_init_name_cache'.
17600         (load_modules): Fix a warning.
17601
17602         * class.c icall.c image.c: Initialize image->name_cache lazily.
17603
17604         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
17605         on its name using information in the AOT file.
17606
17607         * class.c (mono_class_from_name): Use the new hook function.
17608
17609 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
17610
17611         * reflection.c (mono_param_get_objects): Handle enum default parameter values
17612         correctly.
17613
17614         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
17615         Fixes #79289.
17616         
17617 2006-09-06  Martin Baulig  <martin@ximian.com>
17618
17619         * icall.c (mono_lookup_internal_call): Small fix.
17620
17621 2006-09-05  Raja R Harinath  <rharinath@novell.com>
17622
17623         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
17624         double g_free.
17625
17626 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
17627
17628         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
17629         when --debug is specified.
17630
17631 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
17632
17633         * class.c (setup_generic_array_ifaces): Fix a warning.
17634
17635 2006-09-04  Miguel de Icaza  <miguel@novell.com>
17636
17637         * Temporarily remove the patch to assemly.c that checks the
17638         assembly versions as it breaks our gacutil.
17639
17640 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
17641
17642         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
17643
17644         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
17645         a net 1.0 runtime.
17646
17647         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
17648         created using the default ctor. Fixes #79152.
17649         (mono_string_builder_to_utf16): Ditto.
17650
17651 2006-09-01  Martin Baulig  <martin@ximian.com>
17652
17653         Fix handling of the generic array interfaces.
17654
17655         * class-internals.h
17656         (MonoDefaults): Removed `generic_array_class' and added
17657         `generic_ilist' class.
17658
17659         * class.c
17660         (mono_bounded_array_class_get): Add the new generic array interfaces.
17661         (setup_generic_array_ifaces): New static method; create vtable
17662         entries for each method in the generic array interfaces.
17663
17664         * metadata.c
17665         (select_container): Allow "parent-less" generic methods.
17666
17667         * marshal.c
17668         (mono_marshal_get_generic_array_helper): New public method.
17669
17670         * icall.c
17671         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
17672         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
17673         moved the interncall into System.Array.
17674
17675 2006-09-01  Raja R Harinath  <rharinath@novell.com>
17676
17677         A few more cases of avoiding work on types with ->byref set.
17678         Has the real fix for #79238
17679         * icall.c (is_generic_parameter): New helper.
17680         (ves_icall_Type_GetGenericParameterPosition): Use it.
17681         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
17682         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
17683         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17684         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
17685         reference types.
17686         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
17687         reference types.
17688         (ves_icall_Type_get_IsGenericInstance): Likewise.
17689         (ves_icall_Type_get_IsGenericType): Likewise.
17690
17691 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
17692
17693         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
17694         class if possible.
17695
17696         * mempool.h (mono_mempool_get_allocated): New helper function.
17697
17698         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
17699         change.
17700
17701         * mempool.c: Fix warnings and the calculation of stats.
17702
17703         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
17704
17705         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
17706
17707         * loader.c (mono_get_method_from_token): Update method_count stat.
17708
17709         * class-internals.h (MonoStats): Add some stats.
17710
17711 2006-08-31 Robert Jordan  <robertj@gmx.net>
17712
17713         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
17714         with managed variants.
17715         All code is contributed under the MIT/X11 license.
17716         
17717 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
17718
17719         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
17720         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
17721
17722         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
17723
17724         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
17725         with cycles in classes.
17726
17727         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
17728
17729         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
17730         missing a [MarshalAs] directive. Fixes #79203.
17731
17732         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
17733         klass->marshal_info. Fixes #79217.
17734
17735 2006-08-30  Martin Baulig  <martin@ximian.com>
17736
17737         Committing a patch from Joachim Ante <joe@otee.dk>:
17738         Add support for binary data symbol stores.
17739
17740         * debug-mono-symfile.c
17741         (mono_debug_open_mono_symbol_file): Renamed into
17742         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
17743         arguments.
17744
17745         * mono-debug.c
17746         (mono_debug_open_image): Added `raw_contents' and `size' args.
17747         (mono_debug_init_2_memory): New public function.
17748
17749 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
17750
17751         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
17752
17753 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17754
17755         * appdomain.c: implement support for ShadowCopyFiles.
17756
17757 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
17758
17759         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
17760         when value is NULL (and should remove CID #51).
17761
17762 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17763
17764         * image.c: moved 2 functions to ../utils.
17765
17766 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
17767
17768         * gc.c: cope with the target object of a GC handle being NULL
17769         (bug #78877).
17770
17771 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
17772
17773         * class.c: recursively check parent's explicit implementations
17774         of interface methods (fixes bug #79125).
17775
17776 2006-08-19  Miguel de Icaza  <miguel@novell.com>
17777
17778         * filewatcher.c: Avoid warnings when building, do not redefine
17779         constants that are defined.
17780
17781         Remove warnings.
17782
17783 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17784
17785         * image.c: don't fail when the link points to an absolute path.
17786
17787 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
17788
17789         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
17790         Fix CID #3.
17791
17792 2006-08-17  Miguel de Icaza  <miguel@novell.com>
17793
17794         * image.c (full_path): A new method used to obtain the actual path
17795         of an assembly even in the presence of symbolic links.  
17796
17797         This is necessary for the case where we are running a binary that
17798         has been GACed, but we are using the "published" path name
17799         ($prefix/mono/1.0/blah.exe) which happens to point to the real
17800         file in the GAC.
17801
17802         This was the source of the failure for the `xsp' command with the
17803         recent AppDomain changes, as far as the runtime was concerned,
17804         there were two different assemblies: $prefix/mono/1.0/blah.exe and
17805         $prefix/mono/gac/blah/version/blah.exe.
17806
17807         (do_mono_image_open): use full path
17808
17809 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17810
17811         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
17812
17813 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
17814
17815         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
17816         domain_id is supplied. Fix CID #241 and corlib's unit tests.
17817
17818 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17819
17820         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
17821         small structures. Fixes #78990.
17822
17823 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17824
17825         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
17826
17827         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
17828
17829 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17830
17831         * appdomain.c:
17832         * marshal.c: don't load all the assemblies from a domain into newly
17833         created ones. The new domains might have different rules and load
17834         assemblies from different locations. Fixes bug #76757.
17835
17836         Patch by Lluis. Conflicts resolved by Brian Crowell.
17837
17838 2006-08-16  Alp Toker  <alp@atoker.com>
17839
17840         * socket-io.c: First half of the fix for #79084.
17841         Set sa_size to the length of the content, not that of the struct.
17842         Don't add NULL suffix to the content, this should be done in
17843         managed code if needed.
17844
17845 2006-08-14  Raja R Harinath  <rharinath@novell.com>
17846
17847         Fix part of #79012
17848         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
17849         mono_metadata_parse_type returns NULL.
17850
17851 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
17852
17853         * normalization-tables.h : new file for string normalization data.
17854         * locales.c, locales.h, icall.c :
17855           added load_normalization_resource() for string normalization,
17856           and icall as well.
17857         * Makefile.am : added normalization-tables.h to the sources.
17858
17859 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
17860
17861         * marshal.c: Add more helper functions to reduce code duplication and use them
17862         everywhere.
17863
17864 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
17865
17866         * marshal.c: Fix non-x86 stdcall warnings.
17867         
17868         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
17869         them everywhere.
17870
17871 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
17872
17873         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
17874         type check on multi-dimensional arrays. Fixes #79000.
17875
17876 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
17877
17878         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
17879         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
17880         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
17881         * class-internals.h: add is_com_object to class structure.
17882         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
17883         null checks to COM object marshalling. Fix .ctor call on RCW.
17884         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
17885         
17886         All code is contributed under the MIT/X11 license.
17887
17888 2006-08-09  Dick Porter  <dick@ximian.com>
17889
17890         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
17891         racing mono_monitor_allocator_lock() somewhere, so don't delete
17892         the critical section for now.  Found by running and exiting
17893         monodevelop.
17894
17895 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
17896
17897         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
17898         (ves_icall_System_ComObject_FindInterface): Ditto.
17899         (ves_icall_System_ComObject_CacheInterface): Ditto.
17900
17901         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
17902         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
17903
17904 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17905
17906         * threadpool.c: treat pipes from process asynchronous reads as sockets
17907         when reading from them, so we get select/poll or epoll to wait for
17908         data.
17909
17910 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
17911
17912         * loader.c: Fix a typo (CID #233) in the null check.
17913
17914 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
17915
17916         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
17917         Hopefully fixes #78949.
17918         
17919         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
17920         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
17921         bytes. Fixes #78972.
17922
17923 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17924
17925         * filewatcher.c: we need to set errno here.
17926
17927 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17928
17929         * filewatcher.c: let Win32Exception get the error value.
17930
17931 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17932
17933         * filewatcher.c: translate errno into win32 errors for Win32Exception
17934         to know what happened.
17935
17936 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
17937
17938         * threadpool.c: Fix more warnings.
17939
17940         * assembly.c (search_loaded): Fix warnings.
17941
17942         * threadpool.c (mono_thread_pool_finish): Fix warnings.
17943         (mono_async_invoke): Ditto.
17944
17945 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
17946
17947         * object.c (mono_remote_class_vtable): Need to create proxy vtable
17948         entries for __ComObject type in addition to ComImport types.
17949         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
17950         about hash table.
17951         
17952         All code is contributed under the MIT/X11 license.
17953
17954 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17955
17956         * image.c: avoid tentative loading of modulerefs that contain
17957         no metadata (P/Invoke library names).
17958
17959 2006-07-28  Dick Porter  <dick@ximian.com>
17960
17961         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
17962         mono_loader_lock() somewhere, so don't delete the critical section
17963         for now.  Found by running and exiting monodevelop.
17964
17965 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17966
17967         * filewatcher.c: define the inotify syscalls when we're building on
17968         linux and have sys/syscall.h. The build system might not have support
17969         for inotify but the target system might have it.
17970
17971 2006-07-26  Miguel de Icaza  <miguel@novell.com>
17972
17973         * domain.c: Documentation updates.
17974
17975         * loader.c (mono_free_method): Do not release the method
17976         information if we are being profiled, as profilers will use this
17977         information at shut down to present some data to the user.
17978
17979         This is needed so that the profiler does not crash, as the
17980         profiler tends to keep MonoMethods around, and they might become
17981         invalid if we free these.
17982
17983         (mono_get_method_constrained): Return the original CIL stream
17984         method as well, so verification can be performed against it.
17985
17986 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17987
17988         * filewatcher.[ch]: support for inotify file system watcher.
17989         * icall.c: add new internal calls for the inotify file system watcher.
17990
17991 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17992
17993         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
17994         #78888.
17995
17996 2006-07-20  Dick Porter  <dick@ximian.com>
17997
17998         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
17999         warning.
18000
18001 2006-07-20  Dick Porter  <dick@ximian.com>
18002
18003         * threads.c (start_wrapper): Do the thread cleanup while we still
18004         hold a reference to its object.  Fixes bug 78123.
18005
18006 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
18007
18008         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
18009         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
18010           "managed-to-managed".
18011         * icall.c: Redirect string constructors that take sbyte* to
18012           ves_icall_System_String_ctor_RedirectToCreateString.
18013         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
18014           to CreateString () methods with matching signature.
18015         * reflection.c: Use original security informations for
18016           MONO_WRAPPER_MANAGED_TO_MANAGED.
18017         * security-manager.c: Use original security informations for
18018           MONO_WRAPPER_MANAGED_TO_MANAGED.
18019         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
18020           that is a placeholder and only its address should be used.
18021         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
18022           that is a placeholder and only its address should be used.
18023
18024 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
18025
18026         Begin implementing COM Interop.
18027         * appdomain.c: Increment corlib version.
18028         * class.c: Set ComImport classes' parent to __ComObject.
18029         * loader.c: Mark cominterop methods as such.
18030         * domain.c: Add __ComObject class to MonoDefaults structure.
18031         * image.c: Add 2 hashtables to the image for COM Interop related methods
18032         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
18033         using the mempool allocator
18034         
18035         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
18036         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
18037         declaration for mono_metadata_type_dup_mp.
18038         
18039         * debug-helpers.c: Added strings for two additional wrapper types
18040         * object.c: Create proxy objects for ComImport classes
18041         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
18042         and added __ComObject class to MonoDefaults structure.
18043         
18044         * object-internals.h: Finish MonoRealProxy definition, and add definition of
18045         MonoComInteropProxy and MonoComObject.
18046         
18047         * marshal.c: Added support for COM Interop
18048         (signature_cominterop): Converts managed signature to corresponding
18049         unmanaged COM signature.
18050         (cominterop_get_function_pointer): gets unmanaged function pointer via
18051         COM object vtable
18052         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
18053         (cominterop_get_method_interface): returns interface type that method is defined on
18054         (mono_mb_emit_cominterop_call): emits native call to function pointer
18055         gotten from vtable
18056         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
18057         that matches signature of unmanaged function.
18058         (cominterop_get_native_wrapper): wrapper around adjusted method call.
18059         (cominterop_get_invoke): forwards call from proxy to __ComObject
18060         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
18061         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
18062         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
18063         
18064         * marshal.h: Added Marshal icall declarations.
18065         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
18066         so we can access them in finalizer
18067         
18068 2006-07-14  Dick Porter  <dick@ximian.com>
18069
18070         * object.c (mono_type_initialization_cleanup): Fix a race
18071         condition by temporarily commenting out the critical section
18072         deletion.
18073
18074 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
18075
18076         * reflection.c (create_custom_attr): Fix some warnings.
18077         (create_custom_attr_data): Ditto.
18078         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
18079         types. Fixes #78855.
18080
18081 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
18082
18083         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18084
18085         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18086
18087 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
18088
18089         * reflection.c (resolve_object): Add support for DynamicMethod.
18090
18091         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18092         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18093
18094 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
18095
18096         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
18097         don't leak GPtrArray's pdata has we have no use (nor free) for it.
18098
18099 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
18100
18101         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18102         Fixes #77888.
18103
18104 2006-06-30  Raja R Harinath  <rharinath@novell.com>
18105
18106         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18107         slightly: remove a shadow local variable.
18108
18109 2006-06-29  Raja R Harinath  <rharinath@novell.com>
18110
18111         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18112         definition that introduces the virtual function slot.
18113         Also fix Coverity #105.
18114
18115 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
18116
18117         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18118         for dynamic assemblies. Fixes #78724.
18119
18120 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
18121
18122         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18123         Fixes #78722.
18124
18125 2006-06-21  Martin Baulig  <martin@ximian.com>
18126
18127         * reflection.c
18128         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18129         fixes #76484.
18130
18131 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18132
18133         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18134
18135 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18136
18137         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18138         nor TYPEREFs.
18139         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18140         Inflate result if necessary.
18141         (mono_class_get_full): Remove old version.  Rename from
18142         'mono_class_get' and add 'context' argument.  Pass it to
18143         ..._create_from_typespec.
18144         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18145         (mono_ldtoken): Revert change below.
18146
18147 2006-06-20  Martin Baulig  <martin@ximian.com>
18148
18149         * class.c (mono_ldtoken): Don't pass the generic context to
18150         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18151
18152 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18153
18154         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18155         and later freeing it. Fixes #78638.
18156
18157 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18158
18159         * icall.c (mono_class_get_throw): Revert over-zealous error
18160         throwing, the caller for mono_class_get_throw will cope with
18161         errors when classes are not properly initialized already.
18162
18163         The code still copes with loader exceptions though.
18164
18165         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18166         
18167 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18168
18169         Fixes the `make run1' version of RuntimeAbort (to be commited,
18170         source is in Bugzilla).
18171         
18172         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18173         FALSE on class loading failure instead of returning true.
18174
18175         * class.c (mono_class_create_from_typedef): It is possible for
18176         mono_metadata_interfaces_from_typedef_full to fail if a class is
18177         not found, cope with this.
18178         
18179
18180 2006-06-14  Dick Porter  <dick@ximian.com>
18181
18182         * socket-io.c: 
18183         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18184         4.1.1
18185
18186 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18187
18188         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18189
18190 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18191
18192         * icall.c: Another fix for building mono in Visual Studio.
18193
18194 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18195
18196         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18197         
18198 2006-06-09  Martin Baulig  <martin@ximian.com>
18199
18200         * debug-mono-symfile.c: Put this back and really fix it this
18201         time. Sorry for all the trouble.
18202
18203 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18204
18205         * icall.c (mono_class_get_throw): Fix a warning.
18206         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18207         ReflectionTypeLoadException if needed. Fixes #78606.
18208
18209         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18210         (mono_class_init): Ditto.
18211
18212         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18213         ref_only exceptions.
18214         (mono_loader_clear_error): Make this work even if there is no error.
18215
18216 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18217
18218         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18219         Marshal.GetComSlotForMethodInfo using internal call.
18220
18221 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18222
18223         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18224         a function for signalling it.
18225
18226         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18227         a referenced assembly is not found.
18228
18229         * loader.c (mono_loader_error_prepare_exception): Add support for 
18230         LOADER_ERROR_ASSEMBLY. Fix formatting.
18231
18232 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18233
18234         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18235         for VARIANT marshalling on windows and increment corlib version
18236         since Variant struct was added.
18237
18238 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18239
18240         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18241         stack trace line information:
18242
18243         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18244         (Martin) when looking up B which is between A and C, return A not C.
18245
18246         Bug is #78573.
18247
18248         Thanks to Alexander Olk for tracking this down.
18249
18250 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18251
18252         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18253         
18254         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18255         avoid clobbering its value.
18256         (mono_string_to_lpstr): Fix a warning on windows.
18257
18258 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18259
18260         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18261
18262         * reflection.c loader.c: Removed references to 'dummy' flag.
18263
18264         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18265
18266         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18267         it gets GC tracking.
18268
18269         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18270         GC tracking.
18271         
18272         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18273
18274         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18275
18276         * appdomain.c: Bump corlib version.
18277
18278 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18279
18280         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18281         CEE_STIND_REF when working with object references.
18282
18283 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18284
18285         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18286         Fixes #78539.
18287
18288 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18289
18290         * loader.c (method_from_memberref): Fix argument value for
18291         mono_loader_set_error_method_load (I was passing the MonoClass
18292         instead of the class name char *).
18293
18294 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18295
18296         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18297         CEE_STIND_REF when working with object references.
18298
18299 2006-05-30  Martin Baulig  <martin@ximian.com>
18300
18301         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18302         mono_method_full_name() change and replace the ':' with a '.'
18303         here.
18304
18305 2006-05-30  Martin Baulig  <martin@ximian.com>
18306
18307         * debug-mono-symfile.c
18308         (mono_debug_symfile_lookup_location): Fix the algorithm:
18309         when looking up B which is between A and C, return A not C.
18310
18311 2006-05-29  Martin Baulig  <martin@ximian.com>
18312
18313         * mono-debug.h
18314         (MonoDebugMethodInfo): Make the typedef public.
18315         (MonoDebugSourceLocation): New public struct.
18316
18317         * mono-debug.c
18318         (mono_debug_source_location_from_address): Removed.
18319         (mono_debug_source_location_from_il_offset): Removed.
18320         (mono_debug_il_offset_from_address): Removed.
18321         (mono_debug_address_from_il_offset): Removed.
18322         (mono_debug_lookup_method): New public function.
18323         (mono_debug_lookup_source_location): New public function; replaces
18324         the old mono_debug_source_location_from_*() functions; see the
18325         inline documentation.
18326         (mono_debug_free_source_location): New public function.
18327         (mono_debug_print_stack_frame): New public function; see the
18328         inline documentation.
18329
18330         * debug-mono-symfile.c
18331         (mono_debug_find_source_location): Renamed into
18332         mono_debug_symfile_lookup_location(); only take a
18333         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18334         documentation.
18335         (mono_debug_find_method): Renamed into
18336         mono_debug_symfile_lookup_method().
18337
18338 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18339
18340         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18341         returned by mono_image_open_full ().
18342
18343         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18344         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18345         #78517.
18346
18347         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18348         #78518.
18349
18350 2006-05-27  Miguel de Icaza  <miguel@novell.com>
18351
18352         * class.c (mono_class_from_typeref): handle missing images
18353         earlier, deals with bug #78418.   Refactor code; 
18354
18355         Fix a warning introduced in my previous commit (some stale code
18356         from before I revisited my patch).
18357
18358         * class.c (mono_class_create_from_typedef): On failure, remove the
18359         class from the MonoImage->class_cache as the class is not
18360         initialized;   Fixes the leak pointed out by Paolo.
18361
18362 2006-05-25  Dick Porter  <dick@ximian.com>
18363
18364         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
18365         DeleteCriticalSections until I figure out which one may still be
18366         sometimes locked when mono_thread_cleanup is called.
18367
18368 2006-05-24  Dick Porter  <dick@ximian.com>
18369
18370         * threads.c (mono_thread_cleanup): Move the threading cleanup out
18371         of mono_thread_manage and back into its own function, so it can be
18372         called after the finalizer thread has finished.
18373
18374         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
18375
18376 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
18377
18378         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
18379         Fixes #78495.
18380
18381         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
18382         with non-blittable elements.
18383         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
18384
18385 2006-05-24  Martin Baulig  <martin@ximian.com>
18386
18387         * mono-debug-debugger.h (MonoDebuggerEvent): Added
18388         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
18389
18390         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
18391         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
18392         `mono_debugger_event_handler' to NULL.
18393
18394 2006-05-24  Martin Baulig  <martin@ximian.com>
18395
18396         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
18397
18398 2006-05-24  Martin Baulig  <martin@ximian.com>
18399
18400         * mono-debug-debugger.h
18401         (mono_debugger_create_notification_function): Added
18402         `MonoCodeManager *' argument.
18403
18404 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
18405
18406         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
18407
18408 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
18409
18410         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
18411         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
18412         implementation.
18413
18414 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
18415
18416         * icall.c: precise GC support: objects can't be stored in unmanaged
18417         memory anymore, even if they are kept alive by other references: since
18418         they can move the GC needs to be able to always find them.
18419
18420 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
18421
18422         * object.c: precise GC support for static fields. Support
18423         for moving GCs: write barriers and pinned allocation for interned
18424         strings.
18425
18426 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
18427
18428         * domain.c, domain-internals.h: precise GC support for the MonoDomain
18429         structure.
18430
18431 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
18432
18433         * class.c, gc.c: sgen and precise GC updates.
18434
18435 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
18436
18437         * marshal.h, marshal.c: added write barrier wrapper and precise type
18438         fixes.
18439
18440 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
18441
18442         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
18443         support.
18444
18445 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
18446
18447         * reflection.c: precise and sgen GC updates.
18448
18449 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
18450
18451         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
18452
18453 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
18454
18455         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
18456
18457 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
18458
18459         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
18460         MONO_TYPE_OBJECT. Fixes #78462.
18461
18462 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
18463
18464         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
18465         and blittable types.
18466
18467 2006-05-17  Miguel de Icaza  <miguel@novell.com>
18468
18469         * class.c (mono_class_get_exception_for_failure): Implement parts
18470         of a TODO: if the loader error is set (instead of the class
18471         error), we return a Loader exception that can be properly thrown
18472         elsewhere.
18473
18474         This was exposed by some Winforms 2.0 code that I tried to run
18475         (Atsushi pointed me to it).
18476
18477 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
18478
18479         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
18480         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
18481         
18482         * marshal.c (emit_marshal_vtype): Add limited support for 
18483         UnmanagedType.LPStruct. Fixes #78427.
18484
18485         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
18486         Applied a patch from kangaroo to fix #77523.
18487
18488 2006-05-17  Martin Baulig  <martin@ximian.com>
18489
18490         * threads.c
18491         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
18492         (debugger_thread_created): Removed.
18493         (debugger_thread_exited): Removed.
18494
18495 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
18496
18497         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18498
18499         * object-internals.h (MonoReflectionResource): Sync with managed version.
18500
18501 2006-05-12  Wade Berrier <wberrier@novell.com>
18502
18503         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
18504
18505 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
18506
18507         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
18508         functions try to allocate from the image mempool.
18509
18510 2006-05-12  Dick Porter  <dick@ximian.com>
18511
18512         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
18513
18514 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
18515
18516         * object.c: The FieldGetter and FieldSetter methods require the full
18517         name of the class, not only the name. Fixes bug #78277.
18518
18519 2006-05-11  Miguel de Icaza  <miguel@novell.com>
18520
18521         * loader.c (method_from_memberref): Do not pass the NULL klass to
18522         mono_loader_set_error_() methods.  Pass the non-NULL value
18523         (class). 
18524
18525 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
18526
18527         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
18528         (mono_assembly_close): Null out assembly->image->references after freeing it.
18529
18530         * image.c (mono_image_close): Free image->references.
18531         
18532         * reflection.c (mono_image_basic_init): Fix a small memory leak.
18533
18534 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18535
18536         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
18537         before checking if it's NULL (g_assert).
18538
18539 2006-05-10  Martin Baulig  <martin@ximian.com>
18540
18541         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
18542         I thought I already killed that two months ago, but now it somehow reappeared.
18543
18544 2006-05-10  Martin Baulig  <martin@ximian.com>
18545
18546         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
18547
18548 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
18549
18550         * reflection.c: Allocate memory for dynamically created methods in the image
18551         mempools.
18552
18553 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
18554
18555         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
18556         don't use the ad pointer before checking if it's NULL (g_assert).
18557
18558 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
18559
18560         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
18561         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
18562
18563         * marshal.c: Allocate all signatures from mempools.
18564
18565         * marshal.c: Allocate some more signatures from mempools.
18566
18567 2006-05-09  Miguel de Icaza  <miguel@novell.com>
18568
18569         * object.c (mono_load_remote_field): The code used to provide a
18570         temporary variable for returning results if the user did not
18571         provide a result pointer.  But our temporary variable was allocted
18572         on the satck.
18573
18574         Fix calling code to always pass a result area.   Coverity ID 103.
18575
18576 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
18577
18578         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
18579         value, not the old. Fixes #78312.
18580         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
18581
18582         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
18583         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
18584         per-image cache.
18585
18586         * assembly.c (mono_assembly_close): Free image->references.
18587
18588         * assembly.c (mono_assembly_names_equal): Fix a warning.
18589         (mono_assemblies_cleanup): Cleanup more global data.
18590
18591         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
18592
18593         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
18594         ptr_cache and image->modules.
18595
18596         * image.c (mono_image_init): Allocate array_cache lazily.
18597         
18598 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18599
18600         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
18601         behavior was changed recently and has bad side effects.
18602
18603 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
18604
18605         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
18606         
18607         * assembly.c (mono_assembly_close): Remove a debug printf.
18608
18609         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
18610
18611         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
18612         to also allow for temporary references between mono_image_open ()/close ().
18613
18614         * domain.c (get_runtimes_from_exe): Add a FIXME.        
18615
18616 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
18617
18618         * marshal.c: Fix support for dynamic methods.
18619
18620         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
18621
18622         * marshal.c (mono_marshal_cleanup): New cleanup function.
18623
18624         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
18625         image mempools.
18626
18627         * class.c (mono_class_init): Fix leaking class->nested_classes.
18628
18629         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
18630
18631         * image.c (mono_image_init): Initialize the new cashes.
18632
18633         * image.c (mono_image_close): Destroy the new cashes.
18634
18635         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
18636
18637         * mempool.c (mono_mempool_strdup): New helper function.
18638
18639         * class-internals.h: Add prototype for mono_loader_unlock ().
18640
18641         * domain.c (mono_jit_info_table_find): Fix a warning.
18642         (mono_debugger_check_runtime_version): Ditto.
18643
18644         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
18645         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
18646         functions to these modules.
18647
18648         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
18649         metadata modules.
18650         
18651         * marshal.c (mono_free_bstr): Fix a warning.
18652
18653         * assembly.c (mono_assembly_open_full): Fix another small leak.
18654
18655         * object.c: Fix some unload leaks in the remoting code.
18656
18657         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
18658         function.
18659
18660         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
18661
18662         * reflection.c: Fix some unload leaks in dynamic assemblies.
18663
18664 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
18665
18666         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
18667         * marshal.h: Add BSTR support on Win32
18668         * icall.c: Add BSTR icalls
18669         * metadata.h: Add BSTR enums
18670
18671 2006-04-28  Miguel de Icaza  <miguel@novell.com>
18672
18673         Work to catch the crash from #76795 and turn it into an
18674         exception.   As I stubbed out pieces of the VisualBasic support,
18675         I found a number of places where the code was failing and I added
18676         checks to those places. 
18677         
18678         * metadata.c (do_mono_metadata_parse_generic_class): Make this
18679         function return a status code.  If we fail to parse the signature
18680         from mono_metadata_parse_generic_inst, return FALSE.
18681
18682         * loader.c (mono_get_method_from_token): If we fail to load the
18683         method (mono_class_get) return NULL.   
18684
18685         * (method_from_memberref): Return NULL if we are unable to parse
18686         the method signature
18687
18688         (mono_loader_error_prepare_exception): Since we now use the
18689         loader_error flag internally to stop processing, and obtaining
18690         exceptions that might be thrown will walk this code path the
18691         proper way of going from a MonoLoaderError into a
18692         MonoException was convoluted.   This new routine encapsulates the
18693         process of turning the error into an exception and *clearing* the
18694         error afterwards.
18695         
18696 2006-04-27  Miguel de Icaza  <miguel@novell.com>
18697
18698         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
18699         with missing assemblies), and to cope with:
18700
18701                 * Missing fieldref from a non-existing assembly.
18702                 * Missing methodref from a non-existing assembly.
18703
18704         The first batch of work to address *some* of the issues from 76661.
18705         
18706         * object.c (mono_class_create_runtime_vtable): If we fail to
18707         initialize the class raise the exception here. 
18708
18709         * metadata.c (mono_class_get_overrides_full): If any methods fail
18710         to load return the failure to the caller.
18711
18712         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
18713         flagging assemblies that failed to load.   
18714
18715         Do not crash if we are unable to load the assembly.
18716
18717         (mono_assembly_close): Do nothing with REFERENCE_MISSING
18718         assemblies. 
18719
18720         * loader.c (mono_loader_set_error_type_load): Change the
18721         convention to always pass unallocated strings, so we make our own
18722         copies (I know our own code had duplicated strings before, but
18723         this keeps the normal conventions).
18724         (method_from_memberref): Call mono_loader_set_error_method_load
18725         for all possible failures of loading the class. 
18726         Remove assert, turn into a loader error.
18727
18728         (mono_loader_error_to_exception): Move this routine from mini
18729         (mini_loader_error_to_exception) there was no need to have that in
18730         mini. 
18731
18732         * class.c (mono_class_from_typeref): If we were not able to load
18733         the assembly with mono_assembly_load_reference, call the
18734         mono_loader_set_error_type_load to register the problem.
18735
18736         (mono_class_setup_fields): If we fail to load the type from
18737         mono_metadata_parse_type_full, call mono_class_set_failure and
18738         break from the loop.
18739
18740         If class->exception_type is set, we do not layout the fields as
18741         that might crash the runtime, and instead return (from breaking
18742         from the previous loop).
18743
18744         (mono_class_setup_vtable): This now returns a boolean indicating
18745         whether the table was properly setup.   The decision is driven by
18746         mono_class_get_overrides_full which might run into non-existing
18747         methods. 
18748         
18749         (mono_class_init): Returns TRUE on success or FALSE if there was a
18750         problem in loading the type (incorrect assemblies, missing
18751         assemblies, methods, etc).
18752
18753         When we call mono_class_setup_fields we also check for a potential
18754         error inside this call (either a class exception or a general
18755         loader exception).
18756
18757         (mono_class_create_from_typedef): If the parent fails to load
18758         (calling mono_class_get_full) return NULL.
18759         
18760         ** Important **
18761
18762         calls to mono_metadata_parse_type_full should be checked
18763         everywhere and set the mono_class_set_failure
18764         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
18765
18766         The current patch checks the places where my manually constructed
18767         tests show the errors are showing up, but we should do it
18768         everywhere. 
18769
18770         ** Important2 **
18771
18772         mono_class_init return values should be tested everywhere, like
18773         the previous case this is something that we should audit
18774         everywhere and not only on the cases exposed by the tests I
18775         created. 
18776
18777 2006-04-26  Miguel de Icaza  <miguel@novell.com>
18778
18779         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
18780         boolean parameter and instead pass the information on `options'
18781         parameter (FileOptions).
18782
18783         * icall.c: Register the new signature for MonoIO.Open.
18784
18785         * debug-helpers.c (dis_one): Trying to understand how coverity
18786         works.  Fix Run 5, item 78.
18787
18788 2006-04-26  Dick Porter  <dick@ximian.com>
18789
18790         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
18791         dereference.
18792
18793 2006-04-25  Martin Baulig  <martin@ximian.com>
18794
18795         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
18796
18797         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
18798         debugger_thread_created().
18799         (debugger_gc_push_all_stacks): Don't handle the main thread in any
18800         special way.
18801         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
18802         (mono_debugger_finalize_threads): New function; undo the effects
18803         of mono_debugger_init_threads().
18804         (mono_debugger_create_all_threads): Removed.
18805
18806 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
18807
18808         * image.c (mono_image_close): Tidy up trace messages.
18809
18810         * assembly.c (mono_assembly_close): Ditto.
18811
18812         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
18813         no longer references an already freed assembly. Fixes #78168.
18814
18815 2006-04-21  Dick Porter  <dick@ximian.com>
18816
18817         * threads.c (mono_thread_detach): Fix reference counting when
18818         detaching threads.
18819
18820 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
18821
18822         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
18823         #78155.
18824
18825 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
18826
18827         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
18828         (mono_type_to_stind): Ditto.
18829
18830         * marshal.c: Use the new helper functions to simplify code.
18831
18832         * image.c (mono_image_close): Add some code for help debug assembly unloading
18833         problems.
18834
18835         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
18836         image mempool.
18837
18838         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
18839         assembly was already loaded in another appdomain. Fixes #78083.
18840
18841 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
18842
18843         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
18844         referenced assemblies.
18845         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
18846
18847         * domain.c (mono_domain_free): Add a trace message.
18848
18849         * appdomain.c (add_assemblies_to_domain): Ditto.        
18850
18851         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
18852         field.  
18853
18854 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
18855
18856         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
18857
18858 2006-04-12  Martin Baulig  <martin@ximian.com>
18859
18860         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
18861         `USE_INCLUDED_LIBGC'.   
18862
18863 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
18864
18865         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
18866         the patch contains ../ and a small directory name later. Hopefully fixes
18867         #78035.
18868
18869 2006-04-10  Martin Baulig  <martin@ximian.com>
18870
18871         Clean up the debugger's thread-handling code.
18872
18873         The debugger's thread-handling code has been moved from
18874         ../mini/debug-debugger.c to threads.c.  We now iterate directly
18875         over the `threads' hash, keep track of exiting threads and also
18876         use proper locking.
18877
18878         We can now debug XSP and XSP based applications with the debugger.
18879
18880         * object-internals.h (MonoThread): Added `gpointer end_stack'.
18881
18882         * threads.h
18883         (MonoThreadCallbacks): Removed; this was only used by the debugger.
18884         (mono_install_thread_callbacks): Likewise.      
18885
18886         * threads.c (mono_thread_callbacks): Removed.
18887         (debugger_thread_created, debugger_thread_exited): New static functions.
18888         (start_wrapper): Call debugger_thread_created().
18889         (thread_cleanup): Call debugger_thread_exited().
18890         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
18891         (mono_debugger_init_threads): New public function.
18892         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
18893         iterate directly over the `threads' hash and also use proper locking.
18894
18895         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
18896
18897         * mono-debug-debugger.h
18898         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
18899
18900 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
18901
18902         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
18903         argument type=array. Fixes #78057.
18904
18905 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
18906
18907         * culture-info-table.h : regenerated. Fixed bug #69652.
18908
18909 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
18910
18911         * loader.c metadata.c: Reapply a variant r59116.
18912         
18913         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
18914
18915         * class.c (mono_class_setup_interface_offsets): New internal function.
18916
18917         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
18918         interfaces too. Fixes #77398.
18919
18920         * reflection.c (encode_cattr_value): Add support for 
18921         parameter type=object, argument type=array.
18922         (load_cattr_value): Ditto. Fixes #77916.
18923
18924         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
18925         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
18926
18927         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
18928         a byval char array and CharSet is Ansi.
18929
18930         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
18931
18932 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
18933
18934         * metadata.c: Add some locking comments.
18935         
18936         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
18937         mempool.
18938         (mono_metadata_free_method_signature): Don't free the signature itself.
18939
18940         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
18941
18942         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
18943         reference the same MonoImage.
18944         (mono_assembly_load_from_full): Add an assert.
18945
18946 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
18947
18948         * image.c (mono_image_close): Don't put the image we are about to free into the
18949         loaded_images_guid_hash.
18950
18951         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
18952         to reduce code duplication.
18953
18954         * marshal.c: Register the native functions called by this module as icalls, to
18955         somewhat centralize the creation of MonoMethodSignature's.
18956
18957         * loader.c (mono_method_signature): Add a cache for method signatures.
18958
18959         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
18960         the parameter attributes of a method.
18961         (mono_metadata_parse_method_signature_full): Refactored the computation of
18962         parameter attributes into a separate function. Also avoid one allocation in
18963         most cases.
18964
18965         * assembly.c (mono_assembly_close): Ditto.
18966
18967         * image.c (mono_image_close): Log trace messages with INFO level.
18968
18969         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
18970
18971         * image.c reflection.c: Correct reference counting of image modules.
18972         
18973         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
18974         of this function from the image mempool.
18975         
18976         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
18977         to allow more cached types to be used.
18978
18979         * mono-debug.c (mono_debug_add_method): Appled patch from
18980         David S. Miller  <davem@sunset.davemloft.net>: Access 
18981         minfo->lexical_blocks[] entry elements using read32().
18982
18983 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
18984
18985         * loader.c (mono_free_method): No longer free the method header for non-dynamic
18986         methods as it is allocated from the mempool.
18987
18988         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
18989         image mempool.
18990
18991         * metadata-internals.h: Add comments describing the reference counting scheme
18992         used for MonoImage and MonoAssembly.
18993
18994         * image.c assembly.c reflection.c: Rework reference counting of images and 
18995         assemblies so they are freed when the runtime is shut down. Free some 
18996         additional memory structures when an image is unloaded.
18997         
18998 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
18999
19000         * class.c loader.c reflection.c: Allocate more data structures in
19001         the image mempool.
19002
19003 2006-03-31  Miguel de Icaza  <miguel@novell.com>
19004
19005         * icall.c
19006         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
19007         build on pre glib 2.4 systems.
19008
19009 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
19010
19011         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
19012
19013         * icall.c: Fix some warnings.
19014
19015 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
19016
19017         * culture-info-table.h : regenerated.
19018
19019 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
19020
19021         * threads.c, object-internals.h, verify.c: changed the culture caching
19022         code to use a normal MonoArray for storage so the GC can keep track of
19023         them easily. Fixed bits of the cache logic, too and simplified the
19024         code.
19025
19026 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
19027
19028         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
19029         thread for non-Boehm GCs.
19030
19031 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
19032
19033         * domain.c, object.c, domain-internals.h: reduce the amount of memory
19034         needed to keep track of the data for static fields.
19035
19036 2006-03-29  Raja R Harinath  <rharinath@novell.com>
19037
19038         Fix #75172
19039         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
19040         for interface classes.  Use 'num_methods' instead.
19041         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
19042         before using '->vtable_size' field.
19043
19044 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
19045
19046         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
19047         doesn't contain managed pointers, so use a normal hashtable.
19048
19049 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
19050
19051         * reflection.c, class-internals.h, domain.c: fixed handling of types
19052         used as values for objects in custom attributes (bug #77915):
19053
19054 2006-03-24  Martin Baulig  <martin@ximian.com>
19055
19056         * class.c (mono_class_setup_fields): Added support for generic
19057         instances; fixes #77580.
19058
19059 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19060
19061         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
19062
19063 2006-03-24  Dick Porter  <dick@ximian.com>
19064
19065         * file-io.c (get_file_attributes): More stat macro breakage.
19066         Fixes bug 77759.
19067
19068 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
19069
19070         * profiler.c: added the file=filename option in the default profiler
19071         to output the profile data to filename.
19072
19073 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19074
19075         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
19076         bug #77877.
19077
19078 2006-03-22  Martin Baulig  <martin@ximian.com>
19079
19080         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
19081         allocated `MonoClassField *' in `fb->handle'.
19082
19083 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19084
19085         * class.c, image.c, metadata-internals.h: implemented new mechanism to
19086         allocate interface ID to save memory and allow better ID reuse on
19087         appdomain unload. setup_generic_vtable () removal from Martin.
19088
19089 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19090
19091         * object.h, appdomain.c, domain.c, exception.c, icall.c,
19092         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19093         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19094         write barriers for reference stores with managed objects accessed with
19095         C structures in the runtime and in embedding programs.
19096
19097 2006-03-20  Raja R Harinath  <rharinath@novell.com>
19098
19099         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19100         'interface_id' and 'max_interface_id' fields of MonoClasses
19101         representing open generic types.
19102
19103 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19104
19105         * object.h, object.c, icall.c: added functions to deal with
19106         storing valuetypes that contain references in managed objects.
19107         * reflection.c, string-icalls.c, threads.c, marshal.c: small
19108         fixes and comments around uses of mono_array_addr ().
19109
19110 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19111
19112         * object.h, icall.c, monitor.c: object.GetHashCode ()
19113         implementation that supports the moving garbage collector.
19114
19115 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19116
19117         * icall.c, threads-types.h, threads.c: implemented finalizer for
19118         LocalDataStoreSlot.
19119
19120 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
19121
19122         * metadata.c (mono_type_size): Add a fixme.
19123         (mono_type_stack_size): Ditto.
19124
19125         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19126         'type_forwarders' field.
19127
19128         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19129         attribute from net 2.0.
19130
19131         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19132         from class.c.
19133
19134         * class.c (mono_class_setup_fields): Fix a warning.
19135         
19136         * class.c (mono_class_from_name): Add support for assemblyref entries
19137         in the EXPORTEDTYPE table.
19138
19139         * reflection.c: Add support for handling type forwarders under net 2.0.
19140
19141         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19142         
19143 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19144
19145         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19146         overwriting entries in ModuleBuild->types, also clean up the code
19147         a little. Fixes #77774.
19148
19149 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19150
19151         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19152         load friend assembly info when present.
19153
19154 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19155
19156         Fix crasher on gtest-158.cs.
19157         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19158         the return value if the MonoClass we want is yet in an
19159         inconsistent state.
19160         * class.c (mono_class_create_from_typedef): Add an comment
19161         explaining an order dependency between mono_class_setup_parent and
19162         mono_class_setup_mono_type.
19163
19164 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19165
19166         * class.c: documentation updates and events bug fix.
19167
19168 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19169
19170         * class.c: some cleanup, locking fixes.
19171
19172 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19173
19174         * class.c: fix the generics code to setup nested
19175         type info to the instantiated type (bug #77770).
19176
19177 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19178
19179         * marshal.c: fixed a few type correctness issues.
19180
19181 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19182
19183         * loader.c: the Set/Get/Addrtess array methods should be public.
19184
19185 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19186
19187         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19188         
19189         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19190         info->wrapper.
19191
19192 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19193
19194         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19195
19196         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19197
19198         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19199         (mono_mempool_alloc0): Ditto.
19200
19201 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19202
19203         * socket-io.c:
19204         (create_object_from_sockaddr): it was allocating 4 extra bytes
19205         for the AF_UNIX data. Fixes bug #77747.
19206
19207 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19208
19209         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19210
19211 2006-03-09  Dick Porter  <dick@ximian.com>
19212
19213         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19214         Fixes bug 76966 again.
19215
19216 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19217
19218         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19219         names from r57532
19220         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19221
19222 2006-03-07  Martin Baulig  <martin@ximian.com>
19223
19224         * object.c
19225         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19226
19227 2006-03-07  Martin Baulig  <martin@ximian.com>
19228
19229         * class.c
19230         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19231         regression introduced in r56970; see gtest-252.cs.
19232
19233         * loader.c (mono_get_method_constrained): Correctly handle generic
19234         methods; see gtest-253.cs.
19235
19236 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19237
19238         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19239
19240 2006-03-04  Martin Baulig  <martin@ximian.com>
19241
19242         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19243         compute the parent type at runtime, just like we're already doing
19244         it for interfaces.
19245
19246         * reflection.c
19247         (mono_reflection_bind_generic_parameters): Don't compute the
19248         parent type anymore.
19249
19250         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19251
19252 2006-03-04  Martin Baulig  <martin@ximian.com>
19253
19254         * mono-debug-debugger.h
19255         (mono_debugger_create_notification_function): Allocate memory at
19256         runtime and return a pointer to it.
19257
19258 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19259
19260         * assembly.c: Fix windows build.
19261         
19262         * assembly.c: Fix build.
19263
19264         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19265
19266         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19267         
19268 2006-03-03  Dick Porter  <dick@ximian.com>
19269
19270         * process.c
19271         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19272         Check parameters before dereferencing them.  Fixes Aaron's part of
19273         bug 77393.
19274
19275 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19276
19277         Fix performance regression.
19278         * loader.c (find_method_in_class): Add 'from_class' argument.
19279         Rename 'klass' argument to 'in_class'.  The signature is compared
19280         against the method in 'in_class', and the corresponding method is
19281         returned from 'from_class'.
19282         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19283         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19284         type definition and generic instantiation in parallel.
19285         (mono_get_method_constrained): Update to changes.
19286
19287 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19288
19289         * threads.c: make sure the domain is correct, too when doing
19290         mono_thread_attach ().
19291
19292 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19293
19294         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19295         windows. Fixes #77683.
19296
19297 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19298
19299         * object.h, *: introduced specific way to set elements of an array
19300         of references to be used as write barrier. Still need to audit the
19301         uses of mono_array_addr.
19302
19303 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19304
19305         * object-internals.h: New field to cache the assmebly name, patch
19306         from Tambet Ingo (tambet@ximian.com)
19307
19308 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19309
19310         * decimal.h, class-internals.h, metadata-internals.h,
19311         file-io.h: mark a few function declarations as internal, to
19312         reduce the number of PLT entries.
19313
19314 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19315
19316         * file-io.c: fix typo in warning message.
19317
19318 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19319
19320         * loader.c: on unix, lookup the "*A" version of a function
19321         if charset is auto as a second option before failing.
19322
19323 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19324
19325         * class.h (mono_class_inflate_generic_method): Revert to two
19326         argument version.
19327         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19328         (mono_class_inflate_generic_method_full): Add.
19329         * class.c (mono_class_inflate_generic_method_full): Rename from
19330         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19331         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19332         * loader.c, reflection.c: Update to changes.
19333
19334 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19335
19336         * icall.c: const fixes and small improvements.
19337
19338 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19339
19340         * threadpool.c: for asynchronous connect(), enable the same workaround
19341         for BSD 6 as for the Mac. Fixes bug #77637.
19342
19343 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19344
19345         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19346         formatted classes. Fixes #77524.
19347
19348 2006-02-24  Raja R Harinath  <rharinath@novell.com>
19349
19350         * class.c (inflate_generic_type): Add a couple more
19351         micro-optimizations.
19352         (inflate_generic_context): Don't use the 'gmethod' from
19353         'inflate_with'.
19354         (mono_class_inflate_generic_method): If the method has generic
19355         parameters, but the passed-in context doesn't have a 'gmethod',
19356         create one.  Use the possibly simplified generic instantiation
19357         from the declaring class instead of the one passed in.
19358
19359 2006-02-24  Raja R Harinath  <harinath@gmail.com>
19360
19361         Make generic method signature and method header handling lazy.
19362         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
19363         (inflate_generic_header): Likewise.
19364         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
19365         parameter to avoid inflating types.
19366         (mono_get_inflated_method): Empty out.
19367         * class.h (mono_class_inflate_generic_method): Update to changes.
19368         * loader.c (mono_get_method_from_token): Don't parse signature for
19369         generic methods, nor methods of generic classes.
19370         (mono_method_signature): Rename from 'mono_method_signature'.
19371         Inflate signature on demand.
19372         (mono_method_get_header): Inflate method header on demand.
19373         * reflection.c: Update to changes.
19374
19375 2006-02-23  Raja R Harinath  <rharinath@novell.com>
19376
19377         * metadata.c (mono_metadata_inflate_generic_inst): If the
19378         instantiation is closed, don't bother expanding it in the new
19379         context.
19380         * class.c (inflate_generic_class): If the generic instantiation
19381         doesn't change after inflation, return the argument itself.
19382         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
19383         Add bounds checks.
19384         (inflate_generic_context): If neither the generic class nor the
19385         generic method instantiations change, return the original context.
19386         * reflection.c (mono_method_get_object): Do
19387         'mono_get_inflated_method' before accessing the ->klass field.
19388         (inflate_mono_method): Don't create a MonoGenericMethod unless
19389         necessary.
19390         (inflate_method): Don't pass a constructed type as the declaring
19391         type of a methodbuilder.
19392
19393 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
19394
19395         * object.c: fix memory overwrite.
19396
19397 2006-02-22  Dick Porter  <dick@ximian.com>
19398
19399         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
19400         it doesn't work any more.
19401         (mono_threads_request_thread_dump): Fix unused variable warnings.
19402
19403 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19404
19405         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
19406         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
19407         the public header file.
19408
19409 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
19410
19411         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
19412
19413 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
19414
19415         * class-internals.h, object.c: reduce the size of MonoVTable
19416         and store the interface_offsets array at negative offsets.
19417
19418 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
19419
19420         * metadata.c: tweak table descriptors data structures to reduce
19421         size and runtime relocations.
19422
19423 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19424
19425         * marshal.c: fix some types and opcodes to be type-safe
19426         in marshaling wrappers.
19427
19428 2006-02-21  Ankit Jain  <jankit@novell.com>
19429
19430         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
19431
19432 2006-02-21  Raja R Harinath  <rharinath@novell.com>
19433
19434         * metadata.c (get_constraints): Relax debugging checks for monodis.
19435
19436 2006-02-21  Ankit Jain  <jankit@novell.com>
19437
19438         * metadata.c (mono_metadata_load_generic_params): Move the code
19439         checking for ambiguous generic params from here to mono/dis/get.c
19440         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
19441
19442 2006-02-21  Raja R Harinath  <harinath@gmail.com>
19443
19444         Fix assertion triggered when compiling nemerle.
19445         * class.c (mono_get_shared_generic_inst): Rename from
19446         get_shared_inst and make non-static.
19447         * loader.c (mono_get_shared_generic_method): New.  Used to create
19448         the MonoGenericContext-equivalent of a MonoGenericContainer.
19449         (mono_get_method_from_token): Initialize the 'context' field of
19450         the created MonoGenericContainer.
19451         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
19452         * metadata.c (get_constraints): Add sanity check.
19453         * class-internals.h: Add new internal methods.
19454
19455         * reflection.c (verify_safe_for_managed_space): New sanity check.
19456         Currently checks that owner-less generic parameters aren't allowed
19457         in managed space.
19458         (mono_type_get_object): Use it.
19459         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
19460         that are now in mono_type_get_object.
19461         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
19462
19463 2006-02-19  Raja R Harinath  <harinath@gmail.com>
19464
19465         * metadata.c (mono_type_create_from_typespec): Rename from
19466         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
19467         argument and caching of types in the generic container.
19468         (unwrap_arrays, find_generic_param): Remove.
19469         * metadata-internals.h: Update.
19470         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
19471
19472 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
19473
19474         * class.c (mono_class_get_exception_for_failure): Fix a warning.
19475
19476         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
19477         return values. Fixes #77581.
19478
19479         * class.c (mono_fnptr_class_get): Switch name and name_space.
19480
19481         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
19482         classes and add support for [In, Out] attributes.
19483         (mono_marshal_free_asany): Ditto. Fixes #77524.
19484
19485 2006-02-18  Raja R Harinath  <harinath@gmail.com>
19486
19487         * class.c (mono_class_from_generic_parameter): Make more robust to
19488         incomplete MonoGenericContainers from monodis.
19489
19490 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19491
19492         * class-internals.h: added some more exception types.
19493         * class.c, metadata.c: added a few checks to handle missing
19494         types.
19495
19496 2006-02-17  Raja R Harinath  <rharinath@novell.com>
19497
19498         Use owner-less generic-params some more.
19499         * class.c (my_mono_class_from_generic_parameter): Remove.
19500         (mono_class_from_generic_parameter): Handle null image,
19501         param->name and param->owner.
19502         (mono_class_from_mono_type): Update.
19503         (mono_class_create_from_typespec): Remove 'container' parameter.
19504         If that parameter is non-null, the result is always inflated by
19505         'mono_class_get_full' anyway.
19506         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
19507         parameter.
19508         (mono_class_get_full): Update.
19509
19510         * class.c (inflate_generic_type) [GENERICINST]: If the generic
19511         instance is not open, don't bother inflating.
19512         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
19513         parse metadata for inflated classes.
19514         (_mono_class_get): Change GenericContext* parameter to
19515         GenericContainer*.
19516         (mono_class_create_from_typespec): Likewise.  Simplify, and
19517         implement trivially.  All the cases are handled in
19518         mono_class_from_mono_type.  Don't inflate returned class.
19519         (mono_class_get_full): Delegate GENERICINST optimization to
19520         inflate_generic_type.
19521         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
19522
19523 2006-02-16  Dick Porter  <dick@ximian.com>
19524
19525         * socket-io.c (create_object_from_sockaddr): Fix typo.
19526         (create_sockaddr_from_object): Check array lengths before
19527         potentially accessing items off the end.
19528         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
19529         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
19530         (ves_icall_System_Net_Sockets_Socket_Send_internal)
19531         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
19532         length checks to avoid wraparound overflows.
19533         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
19534         contents of the array of sockets
19535         (hostent_to_IPHostEntry2)
19536         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
19537         Check return value of inet_ntop ().
19538         (addrinfo_to_IPHostEntry): Fix typo
19539
19540 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19541
19542         Type metadata parsing doesn't use generic-instantiation information.
19543         * metadata.c (mono_metadata_parse_array_full): Change
19544         MonoGenericContext* parameter to MonoGenericContainer*.
19545         (mono_metadata_parse_type_full): Likewise.
19546         (mono_type_create_from_typespec_full): Likewise.
19547         (mono_metadata_parse_mh_full): Likewise.
19548         (mono_metadata_parse_generic_inst): Likewise.
19549         (do_mono_metadata_parse_generic_class): Likewise.
19550         (do_mono_metadata_parse_type): Likewise.
19551         * metadata-internals.h: Update to changes.
19552         * class.c (mono_class_find_enum_basetype): Likewise.
19553         (mono_class_setup_fields): Likewise.
19554         (mono_class_create_from_typespec): Likewise.
19555         * loader.c (method_from_methodspec): Likewise.
19556         (mono_get_method_from_token): Likewise.
19557         (mono_method_get_header): Likewise.
19558
19559 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
19560
19561         * marshal.c: handle additional GENERICINST case (patch from
19562         Thong Nguyen <tum@veridicus.com>).
19563         Fix a few cases where LDIND_I/STIND_I was used for references.
19564
19565 2006-02-16  Raja R Harinath  <rharinath@novell.com>
19566
19567         * reflection.c (mono_reflection_get_token): Remove unused variable.
19568
19569 2006-02-16  Martin Baulig  <martin@ximian.com>
19570
19571         * reflection.c (mono_reflection_get_token): Add support for fields
19572         in instantiated generic types.
19573
19574         * icall.c
19575         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
19576
19577 2006-02-15  Martin Baulig  <martin@ximian.com>
19578
19579         * icall.c
19580         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
19581         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
19582         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
19583         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
19584
19585 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
19586
19587         * class.c, metadata.c, metadata.h, object.c, icall.c,
19588         marshal.c: changed mono_type_get_underlying_type () to do
19589         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
19590         Fixed handling of instantiated generic valuetypes (bug #75479).
19591
19592 2006-02-15  Raja R Harinath  <rharinath@novell.com>
19593
19594         * metadata.c (mono_metadata_decode_signed_value): Simplify.
19595         Delegate to mono_metadata_decode_value, and work on the returned value.
19596
19597         * icall.c (ves_icall_MonoType_GetGenericArguments):
19598         Add consistency check here too.
19599         
19600 2006-02-15  Ankit Jain  <jankit@novell.com>
19601
19602         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
19603         char/short etc.
19604
19605 2006-02-15  Ankit Jain  <jankit@novell.com>
19606
19607         * metadata.c (mono_metadata_decode_signed_value): New function to decode
19608         signed values, used only for representing lower bounds of arrays.
19609         (mono_metadata_parse_array_full): Use new
19610         mono_metadata_decode_signed_value to decode lower bounds.
19611
19612 2006-02-14  Martin Baulig  <martin@ximian.com>
19613
19614         * reflection.c
19615         (mono_reflection_get_token): Support "MonoGenericMethod" and
19616         "MonoGenericCMethod" and allow generic instances / methods.
19617
19618 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
19619
19620         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
19621         to obtain the terminal size using an ioctl.
19622
19623         * object.c (mono_nullable_init): Revert this as nullable reference
19624         types are not valid.
19625         (mono_nullable_box): Ditto.
19626
19627 2006-02-09  Dick Porter  <dick@ximian.com>
19628
19629         * threads.c (mono_thread_detach): Drop a reference to the thread
19630         we're detaching.
19631
19632 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
19633
19634         * object.c (mono_nullable_init): Handle nullable reference types.
19635         (mono_nullable_box): Ditto. Fixes #77446.
19636
19637 2006-02-07  Martin Baulig  <martin@ximian.com>
19638
19639         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
19640
19641 2006-02-07  Ankit Jain  <jankit@novell.com>
19642
19643         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
19644         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
19645         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
19646         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
19647         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
19648         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
19649
19650 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
19651
19652         * class.c (mono_class_create_generic): Set type_token as well.
19653
19654         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
19655         compatible with MS.
19656
19657 2006-02-02  Martin Baulig  <martin@ximian.com>
19658
19659         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
19660         has never been used so far.
19661
19662 2006-02-02  Martin Baulig  <martin@ximian.com>
19663
19664         * mono-debug-debugger.h: Changed comment at the top of this file;
19665         the header is not installed, but it's safe to #include it from
19666         within the JIT.
19667
19668         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
19669         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
19670
19671 2006-02-02  Martin Baulig  <martin@ximian.com>
19672
19673         * mono-debug.h
19674         (MonoSymbolTable): Removed the `metadata_info' field.
19675
19676         * mono-debug.c
19677         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
19678
19679         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19680         (mono_debugger_add_builtin_types): Removed.
19681         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
19682         (mono_debugger_create_notification_function): We now operate on a
19683         pre-allocated area; take a `gpointer' and return `void'.
19684
19685         * mono-debug-debugger.c
19686         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
19687         (mono_debugger_add_builtin_types): Removed.
19688
19689 2006-02-02  Martin Baulig  <martin@ximian.com>
19690
19691         * threads.c (mono_debugger_create_all_threads): New public method.
19692
19693 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
19694
19695         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
19696         breaks on several platforms.
19697
19698 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
19699
19700         * assembly.c: the VS.NET build doesn't supply default values for
19701         MONO_ASSEMBLIES and MONO_CFG_DIR.
19702
19703 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
19704
19705         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
19706         helper function.
19707
19708         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
19709
19710         * loader.c (method_from_memberref): Fix a warning.
19711
19712         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
19713
19714         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
19715         with explicit layout. Fixes #77433.
19716
19717 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
19718
19719         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
19720         max_interface_id is initialized before using it. Fixes #77398.
19721         (ves_icall_Type_GetInterfaces): Ditto.
19722
19723 2006-01-30  Raja R Harinath  <rharinath@novell.com>
19724
19725         * metadata.c (mono_metadata_parse_method_signature_full): Don't
19726         allocate memory for parameter attributes when parsing memberref
19727         signatures.
19728         * loader.c (mono_loader_set_error_method_load): Don't warn.
19729         (method_from_memberref): Ensure MissingMethodException gets thrown
19730         if method is not found.  Make warning more informative.
19731
19732 2006-01-29  Raja R Harinath  <harinath@gmail.com>
19733
19734         Fix #77397
19735         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
19736         return true if is byref.
19737         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
19738         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
19739         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
19740
19741 2006-01-27  Raja R Harinath  <rharinath@novell.com>
19742
19743         Fix tests/find-method.2.il
19744         * loader.c (find_method, find_method_in_class): Remove is_inflated
19745         argument.  Revert 2006-01-18 change.
19746         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
19747         is generic, search for method in its generic definition.
19748         * class.c (mono_class_setup_vtable_general): Print generic
19749         arguments of generic types in debugging printf.
19750
19751 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
19752
19753         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
19754
19755         * threads.c (mono_threads_request_thread_dump): New helper function.
19756
19757 2006-01-25  Raja R Harinath  <rharinath@novell.com>
19758
19759         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
19760
19761 2006-01-25  Ankit Jain  <jankit@novell.com>
19762
19763         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
19764         move definition to ..
19765         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
19766         
19767 2006-01-25  Ankit Jain  <jankit@novell.com>
19768             Raja R Harinath  <rharinath@novell.com>
19769
19770         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
19771         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
19772         as necessary.
19773
19774 2006-01-25  Martin Baulig  <martin@ximian.com>
19775
19776         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
19777         `MonoDebuggerThread' into debug-debugger.c.
19778
19779 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
19780
19781         * profiler.c: fix printing of data.
19782
19783 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
19784
19785         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
19786           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
19787
19788 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
19789
19790         * object.c: fix deadlock related to string interning.
19791
19792 2006-01-23  Martin Baulig  <martin@ximian.com>
19793
19794         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19795
19796         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
19797
19798 2006-01-23  Martin Baulig  <martin@ximian.com>
19799
19800         * mono-debug.h: Moved the prototypes of some functions which are
19801         used by the JIT here from mono-debug-debugger.h.
19802
19803 2006-01-21  Martin Baulig  <martin@ximian.com>
19804
19805         * Makefile.am: Don't install mono-debug-debugger.h.
19806
19807 2006-01-21  Martin Baulig  <martin@ximian.com>
19808
19809         * mono-debug-debugger.h: Enforce the private status of this header
19810         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
19811         Moved some stuff from mono-debugger-jit-wrapper.h here.
19812
19813 2006-01-20  Raja R Harinath  <rharinath@novell.com>
19814
19815         * class.c (mono_class_from_typeref): Add a sanity test to help
19816         catch lack of assembly load/search hooks.
19817
19818 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
19819
19820         * marshal.c (emit_struct_conv): Relax the fields with same offset
19821         check even more. Fixes #77230.
19822
19823 2006-01-18  Martin Baulig  <martin@ximian.com>
19824
19825         * loader.c (find_method_in_class): Added `gboolean is_inflated'
19826         argument; if false, we compare the uninstantiated signatures.
19827         (method_from_memberref): Compare the uninstantiated signatures;
19828         fixes #76417.
19829
19830 2006-01-18  Robert Jordan  <robertj@gmx.net>
19831
19832         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
19833         Clear the weak link. Fixes bug #77170.
19834
19835         * gc.c (mono_gchandle_free):
19836         Reflect *-gc.c changes (tiny optimization).
19837
19838 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
19839
19840         * metadata.c (mono_metadata_signature_dup): Applied patch from
19841         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
19842         Fixes #77288.
19843
19844 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
19845
19846         * marshal.c (emit_struct_conv): Allow fields with the same offset when
19847         marshalling from native to managed code. Fixes #77230.
19848
19849 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19850
19851         * threadpool.c: fix problem (Mac only) when more than one asynchronous
19852         connect. Fixes bug #77020.
19853
19854 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
19855
19856         * class.c: fixed id assignement for nested interfaces (bug #77275).
19857         Added also better info for --print-vtable debugging.
19858
19859 2006-01-12  Martin Baulig  <martin@ximian.com>
19860
19861         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
19862         interfaces on-the-fly; fixes #76625.
19863
19864         * class-internals.h
19865         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
19866         don't need that anymore.
19867
19868 2006-01-12  Miguel de Icaza  <miguel@novell.com>
19869
19870         * socket-io.c
19871         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
19872         To avoid initing the nested_classes when not needed I turned the
19873         PeerCredData as a toplevel internal class, as it has to be shared
19874         anyways. 
19875
19876         Fixes the CASA issue.
19877
19878 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
19879
19880         * domain.c: Accessors for MonoJitInfo
19881
19882         * profiler-private.h: Add jitinfo to the end jit hook
19883
19884         * profiler.[ch]: Define new hooks, called after jitting which give
19885         the MonoJitInfo that was compiled
19886
19887 2006-01-10  Martin Baulig  <martin@ximian.com>
19888
19889         * class.c (mono_class_setup_events): Add support for generic
19890         classes; fixes #76440.
19891
19892 2006-01-06  Raja R Harinath  <rharinath@novell.com>
19893
19894         Fix #77160.
19895         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
19896         on passed-in method.
19897
19898 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
19899
19900         * object.c (mono_runtime_invoke_array): Add Nullable support.
19901
19902         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
19903
19904 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
19905
19906         * file-io.c: Don't consider sockets as directory and avoid an endless
19907         loop. Fix bug #76966.
19908
19909 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
19910
19911         * object.c (mono_nullable_init): New helper function.
19912         (mono_nullable_box): Ditto.
19913
19914         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
19915
19916         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
19917
19918         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
19919         
19920 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
19921
19922         * class.c (mono_class_is_assignable_from): Make T assignable to 
19923         Nullable<T>.
19924
19925 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
19926
19927         * appdomain.c: Bump corlib version to 46.
19928         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
19929         serialization purpose) and changed ves_icall_System_Reflection_
19930         Assembly_get_code_base signature to accept a boolean (to escape, or 
19931         not, the assembly code base).
19932
19933 2005-12-23  Dick Porter  <dick@ximian.com>
19934
19935         * icall.c: 
19936         * threads-types.h: 
19937         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
19938         CreateEvent icall now returns "created" boolean parameter.
19939
19940 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
19941
19942         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
19943         #76967.
19944
19945         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
19946         when attr_klass is an interface. Fixes #77045.
19947
19948 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
19949
19950         * marshal.c (emit_struct_conv): Fix previous patch.
19951         
19952         * marshal.c (emit_struct_conv): Add a check for fields with the same
19953         offset.
19954
19955 2005-12-20  Raja R Harinath  <rharinath@novell.com>
19956
19957         Fix regression in Mono.C5.
19958         * class.c (mono_class_create_generic): If 'klass' is an interface
19959         set up the interface offsets.
19960         (mono_class_is_assignable_from): Don't throw away generic arguments.
19961
19962 2005-12-19  Raja R Harinath  <rharinath@novell.com>
19963
19964         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
19965         type parameters.
19966
19967 2005-12-15  Raja R Harinath  <rharinath@novell.com>
19968
19969         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
19970         dead store.
19971         (do_mono_metadata_parse_generic_class): Don't pass the current
19972         generic context when parsing the type being instantiated: it
19973         cannot use it, anyway.
19974
19975         * loader.c (method_from_memberref): Don't inflate a signature if
19976         it doesn't contain any type parameters.
19977
19978 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
19979
19980         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
19981
19982 2005-12-14  Martin Baulig  <martin@ximian.com>
19983
19984         * class.c
19985         (mono_type_get_name_recurse): Don't return null for type
19986         parameters and open generic classes.
19987         (mono_class_setup_methods): Don't exclude generic instances.
19988         (mono_get_unique_iid): Use different IDs for different
19989         instantiations of the same generic type.
19990         (mono_class_setup_vtable): Only use setup_generic_vtable() for
19991         open generic instances; create a normal vtable for closed generic
19992         instances.
19993         (mono_class_setup_vtable_general): We're now also called for
19994         closed generic instances.
19995
19996         * reflection.c
19997         (mono_reflection_bind_generic_parameters): Correctly use
19998         mono_metadata_lookup_generic_inst() everywhere.
19999
20000 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
20001
20002         * object.c (mono_class_create_runtime_vtable): Call 
20003         mono_class_setup_vtable ().
20004
20005         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
20006         function.
20007         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
20008         #76959.
20009
20010         * loader.c (mono_loader_set_error_type_load): Print the type load
20011         warnings to the console so they are more visible to the user.
20012         (mono_loader_set_error_method_load): Ditto.
20013
20014         * reflection.c (ensure_runtime_vtable): Revert the last change as it
20015         is still broken.
20016         
20017         * reflection.c (ensure_runtime_vtable): Fix build.
20018
20019         * reflection.c (ensure_runtime_vtable): Disable an optimization which
20020         doesn't work in all cases.
20021
20022 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
20023
20024         * object.c (mono_array_new_full): Treat a single dimensional array
20025         with 0 lower bounds as an szarray. Fixes #76973.
20026
20027         * reflection.c (custom_attr_visible): Really fix this.
20028
20029 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
20030
20031         * reflection.c (custom_attr_visible): Allow nested public attributes
20032         as well.
20033
20034         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
20035         interface check.
20036
20037 2005-12-12  Raja R Harinath  <harinath@gmail.com>
20038
20039         * class.c (set_generic_param_owner): Delete.
20040         (mono_class_create_from_typedef): Don't set ->owner field of
20041         generic parameters to "param containers" of enclosing classes.
20042         * reflection.c (mono_reflection_initialize_generic_parameter):
20043         Likewise.
20044
20045 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
20046
20047         * reflection.c (custom_attr_visible): Fix build.
20048
20049 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
20050
20051         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
20052         private attributes.
20053         
20054         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
20055         handling of null parameter defaults.
20056
20057 2005-12-09  Raja R Harinath  <rharinath@novell.com>
20058
20059         * class.c (mono_class_from_generic_parameter): Don't set
20060         klass->generic_container.
20061         (my_mono_class_from_generic_parameter): Likewise.
20062
20063 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
20064
20065         * reflection.c (load_public_key): Fix a warning.
20066         (method_encode_code): Fix unaligned accesses.
20067
20068 2005-12-07  Martin Baulig  <martin@ximian.com>
20069
20070         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
20071
20072         * reflection.c
20073         (write_generic_param_entry): Encode our custom attrs.
20074
20075         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
20076
20077 2005-12-07  Martin Baulig  <martin@ximian.com>
20078
20079         * reflection.c (encode_new_constraint): Removed; we don't use the
20080         `NewConstraintAttribute' anymore.
20081
20082 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
20083
20084         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20085         not fire a TypeResolve event when Assembly.GetType () is called.
20086
20087 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
20088
20089         Beginning of support for nullable types in the runtime. Parts of
20090         this patch are from Martin.
20091
20092         * appdomain.c (MONO_CORLIB_VERSION): Bump
20093
20094         * domain.c (mono_init_internal): get the nullable type
20095
20096         * class.c (mono_class_is_nullable): New method
20097         (mono_class_get_nullable_param): New mehod
20098         (mono_class_create_generic): In types T? set cast_class to T
20099
20100         * class-internals.h (MonoDefaults): new nullable default class
20101         (mono_class_get_nullable_param, mono_class_get_nullable_param):
20102         new methods.
20103
20104 2005-12-05  Raja R Harinath  <rharinath@novell.com>
20105
20106         * metadata.c (select_container): New.  Refactor code to select the
20107         appropriate GenericContainer given the type of generic parameter
20108         we are looking for.
20109         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20110         not a MonoGenericContext.  Use select_container.  Update parameters.
20111         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20112         and MONO_TYPE_MVAR.
20113         (unwrap_arrays): Remove duplicate tests.
20114         (find_generic_param): Rename from 'has_same_context'.  Now walks a
20115         generic instantiated class to find any arguments that are generic
20116         parameters.
20117         (mono_type_create_from_typespec_full): Use find_generic_param to
20118         avoid evicting some generic instantiations from the typespec
20119         cache.
20120
20121 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20122
20123         * reflection.c: fixed writing of doubles on ARM FPA.
20124
20125 2005-12-02  Robert Jordan  <robertj@gmx.net>
20126
20127         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20128
20129 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20130
20131         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20132         least on SUSE 10 they are not the same (on debian, they are just the
20133         same thing).
20134
20135 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20136
20137         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20138         DeclaringType for VARs and MVARs.
20139         * class.c (set_generic_param_owner): Fix initialization of owner
20140         fields.
20141
20142 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20143
20144         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20145
20146 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20147
20148         * threadpool.c: workaround for a bug that shows up on the Mac:
20149         select()+connect() on a blocking socket is not like it should
20150         be, so we proceed to connect() in that case, wasting the I/O
20151         threadpool thread until connect succeedes. Fixes bug #75436.
20152
20153 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20154
20155         * threadpool.c: fix typo when setting file descriptor states.
20156
20157 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20158
20159         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20160         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20161         create a temporary signature container.
20162         (mono_metadata_parse_generic_param): Update to changes.
20163         (mono_type_create_from_typespec_full): Update to changes.
20164         * loader.c (method_from_memberref): Don't use a
20165         MonoGenericContainer while parsing a memberref signature.
20166         (method_from_methodspec): Remove dead-store of the 'container'
20167         variable.  It's overwritten before use.
20168
20169         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20170         checks tighter.
20171         (mono_metadata_parse_generic_param): Likewise.
20172         * loader.c (find_method_in_class): Does not need a
20173         MonoGenericContainer.  Use 'mono_method_signature' rather than
20174         'mono_method_signature_full'.
20175         (find_method, mono_get_method_constrained, method_from_memberref):
20176         Update to changes.
20177
20178         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20179         owner-less generic-parameters are never evicted from the typespec
20180         cache.
20181
20182         * loader.c (method_from_memberref): Don't use the current context
20183         when parsing signatures.
20184         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20185
20186         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20187         side-effects in g_assert.
20188         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20189         that we don't potentially lose information.
20190
20191 2005-11-26  Dick Porter  <dick@ximian.com>
20192
20193         * icall.c:
20194         * threads.c: icalls to implement basic (ie, not named)
20195         System.Threading.Semaphore.
20196
20197 2005-11-24  Dick Porter  <dick@ximian.com>
20198
20199         * process.c
20200         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20201         Use GetProcessId() if it's available.
20202
20203 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20204
20205         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20206
20207 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20208             Ankit Jain  <jankit@novell.com>
20209
20210         * loader.c (mono_get_method_from_token): Initialize 'method' field
20211         of all generic parameters before parsing the signature.  Remove
20212         code that "fixed"-up MVAR references.
20213
20214 2005-11-23  Ankit Jain  <jankit@novell.com>
20215
20216         * metadata.c (mono_metadata_has_generic_params):
20217         (mono_metadata_load_generic_param_constraints):
20218         (mono_metadata_load_generic_params): Move duplicate code ...
20219         (mono_metadata_get_generic_param_row): ... here. Returns the
20220         first row-id in GenericParam table for a given owner (token).
20221         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20222         prototype.
20223
20224 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20225             Ankit Jain  <jankit@novell.com>
20226
20227         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20228         comparing VARs too.
20229         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20230         type->data.generic_param only if the type is an MVAR.
20231         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20232         leak owner-less VARs and MVARs into managed space.
20233
20234 2005-11-21  Martin Baulig  <martin@ximian.com>
20235
20236         * class-internals.h
20237         (MonoMethod): Moved the `generic_container' here from
20238         `MonoMethodNormal' since we now also need it for
20239         `MonoMethodPInvoke';
20240         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20241         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20242         an union containing both `MonoMethodNormal' and
20243         `MonoMethodPInvoke'.
20244
20245         * loader.c
20246         (mono_get_method_from_token): Allow implementing generic methods
20247         as interncalls.
20248
20249         * threads.c
20250         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20251         icall.
20252
20253 2005-11-17  Dick Porter  <dick@ximian.com>
20254
20255         * icall.c: 
20256         * process.h: 
20257         * process.c: Split the Process Start_internal icall into
20258         ShellExecuteEx_internal and CreateProcess_internal, which are
20259         called depending on whether UseShellExecute is true.  Fixes bug
20260         76670.
20261
20262         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20263
20264 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20265
20266         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20267         'msize' parameters, use the information in 'mspec' instead.
20268         (emit_object_to_ptr_conv): Ditto.
20269
20270         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20271         fields out of order. Fixes #76733.
20272
20273 2005-11-17  Ankit Jain  <jankit@novell.com>
20274
20275         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20276
20277 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20278
20279         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20280           bug #76575.
20281
20282 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20283
20284         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20285         for types with non-auto layout. Fixes #76717.
20286
20287 2005-11-16  Ankit Jain  <jankit@novell.com>
20288
20289         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20290         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20291         if generic_context is null.
20292           (mono_metadata_generic_param_equal): param->owner can be null.
20293           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20294         null.
20295
20296 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20297
20298         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20299         the correct value.
20300
20301 2005-11-15  Martin Baulig  <martin@ximian.com>
20302
20303         * object.c (set_value): Use mono_class_from_mono_type() instead of
20304         the hack for generic instances; fixes #76136.
20305
20306 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20307
20308         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20309         fields.
20310
20311         * image.c (load_metadata_ptrs): Initialize the new fields.
20312
20313         * reflection.c (create_dynamic_mono_image): Ditto.
20314
20315         * reflection.c (build_compressed_metadata): Use the new fields.
20316
20317         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20318         icall.
20319
20320         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20321         icall.
20322         
20323 2005-11-15  Ankit Jain  <jankit@novell.com>
20324             Raja R Harinath  <harinath@gmail.com>
20325
20326         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20327         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20328         new per-generic_container cache if the cached MonoType's context matches
20329         the current context.
20330           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20331         to the expected context.
20332           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20333
20334 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20335
20336         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20337         we changed the signature of an icall.
20338         * icall.c: Modify to mono_double_ParseImpl return true/false 
20339         depending on the success, instead of throwing the exception. This will
20340         help us in Double.TryParse methods.
20341         
20342 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20343
20344         * marshal.c (emit_marshal_object): Throw an exception when
20345         marshalling 'object' instead of crashing. Fixes #76696.
20346
20347 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20348
20349         * class-internals.h: Add prototype for mono_type_get_full_name ().
20350
20351 2005-11-11  Dick Porter  <dick@ximian.com>
20352
20353         * threads.c (mono_thread_manage): Make sure the main thread has
20354         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
20355
20356 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20357
20358         * loader.c (mono_loader_set_error_type_load): Log a warning to the
20359         console about the missing type.
20360         (mono_loader_set_error_method_load): Ditto.
20361
20362 2005-11-09  Miguel de Icaza  <miguel@novell.com>
20363
20364         * mono-config.c (mono_get_config_dir): Set the system defaults if
20365         none is specified.
20366
20367         * assembly.c (mono_set_dirs): New API entry point to set the
20368         assembly and the config directory in one call
20369
20370 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
20371
20372         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
20373         the ftnptr was created from a delegate in a domain other than the
20374         current domain. Fixes #75377.
20375
20376         * exception.h exception.c: Add mono_get_exception_not_supported ().
20377
20378 2005-11-08  Martin Baulig  <martin@ximian.com>
20379
20380         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
20381
20382 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
20383
20384         * security-manager.h: Added definitions to deal with strongname key 
20385         pairs bigger (and smaller) than 1024 bits.
20386         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
20387         adjust wrt the public key length being used.
20388
20389 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
20390
20391         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
20392           Windows build (r51396-51397).
20393
20394 2005-11-03  Martin Baulig  <martin@ximian.com>
20395
20396         * class.c (mono_class_setup_vtable_general): Also add generic
20397         methods to the vtable; fixes #76581.
20398
20399 2005-11-01  Miguel de Icaza  <miguel@novell.com>
20400
20401         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
20402         sure that we lookup GetString method from the System.Text.Encoding
20403         class, not the derived class or we get an empty method.
20404
20405         Fixed class #76612.
20406
20407 2005-10-25  Miguel de Icaza  <miguel@novell.com>
20408
20409         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
20410         if it has been previously set (embedders). 
20411
20412         Make mono_set_rootdir available also on Unix.
20413
20414 005-10-24  Robert Jordan  <robertj@gmx.net>
20415
20416         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
20417
20418 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
20419
20420         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
20421         only calls which are made to native code use this flag.
20422
20423         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
20424
20425 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
20426
20427         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
20428         Add support for FieldBuilders.
20429
20430 2005-10-29  Martin Baulig  <martin@ximian.com>
20431
20432         * mono-debug.c
20433         (mono_debug_using_mono_debugger): New public method; returns
20434         whether we're running inside the debugger.
20435
20436 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
20437
20438         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
20439         for Method/Constructor/FieldBuilders.
20440
20441 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
20442
20443         * reflection.c (module_add_cattrs): Save custom attributes for global methods
20444         and fields as well.
20445
20446 2005-10-26  Martin Baulig  <martin@ximian.com>
20447
20448         * mono-debug-debugger.c
20449         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
20450
20451 2005-10-24  Raja R Harinath  <harinath@gmail.com>
20452
20453         * icall.c (base64_to_byte_array): Don't pass an out-of-range
20454         integer to isspace.
20455
20456 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
20457
20458         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
20459         when passing valuetypes byref. Fixes #76502.
20460
20461 2005-10-19  Jackson Harper  <jackson@ximian.com>
20462
20463         * profiler.c: Don't put a . in front of types that are not in a
20464         namespace.
20465
20466 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
20467
20468         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
20469
20470 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
20471
20472         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
20473         #76436.
20474         (mono_marshal_get_ldflda_wrapper): Fix a warning.
20475
20476 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20477
20478         * assembly.c metadata-internals.h icall.c: Define an additional
20479         parameter for mono_assembly_name_parse_full, so we can avoid creating
20480         S.R.AssemblyName.Version when no version info wasn't passed.
20481         
20482 2005-10-09  Miguel de Icaza  <miguel@novell.com>
20483
20484         * class.c (mono_type_get_full_name): Reimplement method that was
20485         removed. 
20486
20487         * image.c: Some docs
20488
20489 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
20490
20491         * profiler.c (output_newobj_profile): Fix printing of Total memory
20492         on x86.
20493
20494 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20495
20496         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
20497
20498 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
20499
20500         * threads.c: remove debug output.
20501
20502 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
20503
20504         * threads.c (mono_thread_manage): Fix crashes if more than 64
20505         threads need to be aborted. Hopefully fixes #75899.
20506
20507         * assembly.c (mono_stringify_assembly_name): New helper function.
20508
20509         * class.c: Use mono_stringify_assembly_name instead of the similar
20510         static function.
20511
20512         * assembly.h assembly.c: Add support for calling a postload search 
20513         hook if an assembly cannot be loaded.
20514
20515         * appdomain.c: Register new search hooks which call the AssemblyResolve
20516         events in AppDomain. Fixes #75231
20517
20518 2005-10-07  Martin Baulig  <martin@ximian.com>
20519
20520         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
20521         methods without debug info.
20522
20523 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
20524
20525         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
20526         wrappers.
20527
20528 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20529
20530         * file-io.c: now that we return symlinks, use lstat and, when the file
20531         is a symbolic link, stat, to get the file attributes. Also avoid the
20532         conversion to/from utf16/external.
20533
20534 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
20535
20536         * class.c (mono_class_layout_fields): Compute klass->has_references
20537         correctly if an embedded valuetype is not yet initialized. Fixes
20538         #76331.
20539
20540 2005-10-04  Martin Baulig  <martin@ximian.com>
20541
20542         * metadata.c
20543         (mono_metadata_load_generic_param_constraints): New public
20544         function; splitted the constraints loading out from
20545         mono_metadata_load_generic_params().
20546
20547         * class.c (mono_class_create_from_typedef): Call
20548         mono_metadata_load_generic_param_constraints() after setting up
20549         the type and creating our parent; fixes #75329.
20550
20551 2005-10-04  Martin Baulig  <martin@ximian.com>
20552
20553         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
20554         non-dynamic parent classes.
20555
20556 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
20557
20558         * file-io.c : win32 build fix (ETXTBSY seems not found).
20559
20560 2005-10-04  Martin Baulig  <martin@ximian.com>
20561
20562         * reflection.c
20563         (mono_image_get_methodspec_token): Make the cache actually work;
20564         fixes #75974.
20565
20566 2005-10-04  Martin Baulig  <martin@ximian.com>
20567
20568         * class.c (mono_class_name_from_token): Removed the unneccessary
20569         `MonoGenericContext *' argument.
20570
20571 2005-10-04  Martin Baulig  <martin@ximian.com>
20572
20573         * loader.c
20574         (method_from_methodspec): Make the caching work again; fixes the
20575         performance regression from #76262.
20576
20577 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20578
20579         * file-io.c:
20580         * file-io.h:
20581         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
20582         GetFileSystemEntries that performs the same work but without going
20583         into io-layer, locking, etc.
20584
20585 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
20586
20587         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
20588         ThreadState_Stopped as well. Fixes #76047.
20589
20590 2005-09-29  Martin Baulig  <martin@ximian.com>
20591
20592         * class.c
20593         (inflate_generic_context): If the new context has a `gmethod', set
20594         its `container' that that gmethod's `container'.
20595
20596         * metadata.c
20597         (mono_metadata_parse_generic_param): Simplify things;
20598         `generic_container = generic_context->container;' is just fine.
20599
20600         * loader.c (method_from_methodspec): Code cleanups.
20601
20602 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
20603
20604         * decimal.c: fix warning (and let gcc generate correct
20605         code on ARM with optimizations).
20606
20607 2005-09-28  Martin Baulig  <martin@ximian.com>
20608
20609         * loader.c
20610         (method_from_memberref): Added `MonoGenericContext *class_context'
20611         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
20612         (method_from_methodspec): If we're a memberref, use the enclosing
20613         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
20614
20615 2005-09-28  Martin Baulig  <martin@ximian.com>
20616
20617         * object.c (mono_runtime_invoke_array): Added support for
20618         MONO_TYPE_GENERICINST; fixes #75917.
20619
20620 2005-09-27  Martin Baulig  <martin@ximian.com>
20621
20622         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
20623         `k->byval_arg.type' to determine the actual type.
20624
20625         * loader.c (method_from_methodspec): Removed some hacks.
20626
20627 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
20628
20629         * class-internals.h (mono_field_is_deleted): Do the test for
20630         rtspecialname before we check the actual name of the field. This
20631         prevents us from dereferencing a pointer into the string table,
20632         saving us from accessing a few pages
20633
20634         * *.c: Replace the use of {Enter,Leave}CriticalSection with
20635         macros. This will allow a deadlock debugger to easily be plugged
20636         in.
20637
20638 2005-09-27  Martin Baulig  <martin@ximian.com>
20639
20640         * loader.c (method_from_methodspec): Create a "signature"
20641         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
20642
20643 2005-09-27  Martin Baulig  <martin@ximian.com>
20644
20645         * class.c
20646         (inflate_generic_class): Correctly set the new context's
20647         container.
20648
20649         * loader.c
20650         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
20651         instead of a `MonoGenericContext *'.
20652         (mono_method_signature_full): Take a `MonoGenericContainer *'
20653         instead of a `MonoGenericContext *'.
20654
20655         * metadata.c
20656         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
20657         instead of a `MonoGenericContext *'.
20658         (mono_metadata_parse_method_signature_full): Likewise.
20659
20660 2005-09-26  Martin Baulig  <martin@ximian.com>
20661
20662         * class.c
20663         (mono_class_from_generic_parameter): Set `klass->generic_container'
20664         (mono_class_from_generic_parameter): Likewise.
20665         (mono_bounded_array_class_get): We inherit the generic container
20666         from the element class.
20667
20668         * loader.c
20669         (find_method, find_method_in_class): Take a `MonoGenericContext *'
20670         argument rather than computing it here.
20671         (method_from_memberref): Correctly set the generic context before
20672         parsing the signature.  Fixes #75681.
20673
20674 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
20675
20676         * object.c (mono_class_has_special_static_fields): Fix warnings.
20677
20678 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20679
20680         * assembly.c: Add parse_public_key function, to
20681         par the public keys. Also added mono_assembly_name_parse_full,
20682         to define it the parsed key should be freed or not.
20683         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
20684         to parse a long format assembly name.
20685         * metadata-internals.h: Keep mono_assembly_name_parse_full as
20686         private, since calling it to preserve the key requires
20687         freeing it manually.
20688         
20689 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
20690
20691         * locales.c : removed HAVE_ICU part.
20692
20693 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
20694
20695         * object.c (mono_class_create_runtime_vtable): Avoid calling 
20696         field_is_special_static if the klass has no special static fields.
20697
20698         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
20699         (MonoCachedClassInfo): Likewise.
20700
20701         * object.c (mono_class_has_special_static_fields): New helper function.
20702
20703 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20704
20705         * class.c (mono_class_create_from_typedef): Don't call 
20706         interfaces_from_typedef_full for enums.
20707         (mono_class_create_from_typedef): Compute the base types of enums directly
20708         without calling mono_class_setup_fields ().
20709         (mono_class_find_enum_basetype): New helper function.
20710
20711         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
20712         one place inside the string heap.
20713         
20714 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
20715
20716         * class.c: locking fixes, code cleanups, some docs added.
20717         Allocate some data structures in the image mempool.
20718
20719 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20720
20721         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20722         the example code.
20723         
20724 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
20725
20726         * class-internals.h, class.c, reflection.c: reduce memory taken by
20727         MonoClass.
20728
20729 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
20730
20731         * metadata.c, metadata.h, loader.h: documentation updates, code and
20732         API cleanups.
20733
20734 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20735
20736         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20737         the example code.
20738
20739         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
20740         page faults caused by the runtime while reading metadata.
20741
20742 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20743
20744         * socket-io.c: the field names were changed 3 months ago and no one
20745         realized until bug #76077 got filed!
20746
20747 2005-09-20  Martin Baulig  <martin@ximian.com>
20748
20749         * icall.c (assembly_icalls): Removed some unused debugger icalls.
20750
20751 2005-09-20  Martin Baulig  <martin@ximian.com>
20752
20753         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
20754         write the rank into the class entry.
20755
20756 2005-09-20  Martin Baulig  <martin@ximian.com>
20757
20758         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
20759
20760 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
20761
20762         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20763
20764         * icall.c (custom_attrs_defined_internal): New icall.
20765
20766         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
20767         function.
20768         (mono_custom_attrs_construct_by_type): New helper function.
20769
20770 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
20771
20772         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
20773         terminate the resulting string. Fixes #76123.
20774
20775 2005-09-16  Martin Baulig  <martin@ximian.com>
20776
20777         * mono-debug.c
20778         (mono_debug_add_method): Ignore inflated methods for the moment.
20779
20780 2005-09-14  Martin Baulig  <martin@ximian.com>
20781
20782         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
20783
20784 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
20785
20786         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
20787         return a success/failure indication.
20788         (mono_metadata_interfaces_from_typedef_full): Ditto.
20789         (get_constraints): Ditto.
20790
20791 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
20792
20793         * marshal.c (emit_marshal_array): Fix handling of null arrays.
20794         
20795         * marshal.c (emit_marshal_array): Add support for returning string
20796         arrays from delegates. Fixes #76063.
20797
20798         * marshal.c: Use the emit_ldloc/stloc macros where possible.
20799
20800 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
20801
20802         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
20803         icall.
20804
20805 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
20806
20807         * reflection.c icall.c: Fix after mono_get_exception_type_load
20808         signature change.
20809
20810         * assembly.c (mono_assembly_get_assemblyref): New helper function.
20811         (mono_assembly_load_reference): Use the new helper.
20812
20813         * class-internals.h (MonoLoaderError): New structure containing 
20814         information about type loading errors.
20815
20816         * class-internals.h loader.c: Add APIs to store per-thread loader
20817         error information.
20818
20819         * loader.c class.c: Set the loader error if needed.
20820
20821         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
20822
20823 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
20824
20825         * decimal.c: fixed to handle the broken ARM fp format.
20826
20827 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
20828
20829         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
20830         broken.
20831
20832 2005-09-06  Martin Baulig  <martin@ximian.com>
20833
20834         * domain.c (supported_runtimes): Added v2.0.50727.
20835
20836 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
20837
20838         * culture-info.h: reduce the size of some structures.
20839
20840 2005-09-05  Martin Baulig  <martin@ximian.com>
20841
20842         Reflect latest API changes in the August CTP.
20843
20844         * icall.c
20845         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
20846         ("MonoType.HasGenericArguments"): Removed.
20847         ("MonoMethod.BindGenericParameters"): Renamed to
20848         "MakeGenericMethod".
20849         ("MethodBuilder.BindGenericParameters"): Renamed to
20850         "MakeGenericMethod".    
20851
20852 2005-09-05  Martin Baulig  <martin@ximian.com>
20853
20854         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
20855
20856 2005-09-05  Martin Baulig  <martin@ximian.com>
20857
20858         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20859
20860         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
20861         generic_container is non-NULL.
20862
20863 2005-09-05  Martin Baulig  <martin@ximian.com>
20864
20865         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20866
20867         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
20868
20869 2005-08-29  Michal Moskal  <malekith@nemerle.org>
20870
20871         * reflection.c (encode_locals,
20872         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
20873         for large generic types.
20874
20875 2005-09-05  Martin Baulig  <martin@ximian.com>
20876
20877         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20878
20879         * class.c (mono_dup_array_type): New public method.
20880         (mono_metadata_signature_deep_dup): New public method.
20881         (dup_type): Correctly duplicate array and function types.
20882
20883 2005-09-05  Martin Baulig  <martin@ximian.com>
20884
20885         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20886
20887         * reflection.c (get_default_param_value_blobs): Handle generic types
20888         and generic methods.
20889
20890 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
20891
20892         * class.c: Fixed error reporting (method/class were inversed) for 
20893         inheritance demands.
20894         * security-manager.c|h: Added the AppDomain when calling the managed
20895         System.Security.SecurityManager.InheritanceDemand method.
20896
20897 2005-09-01  Raja R Harinath  <rharinath@novell.com>
20898
20899         * reflection.c (encode_marshal_blob): 'marshaltype' and
20900         'marshaltyperef' are alternate sources for the custom marshaler
20901         name.
20902
20903 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
20904
20905         * class.c: fix creation of array classes with rank == 1
20906         (patch by Ankit Jain <jankit@novell.com>).
20907
20908 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
20909
20910         * object.c: fix check for creating the bound data for arrays vs
20911         szarrays.
20912
20913 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20914
20915         * object.c: configuration file name is now based on the executable name,
20916         not the image name. Fixes bug #75931.
20917
20918 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
20919
20920         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
20921         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
20922
20923 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
20924
20925         * rand.c: Use wincrypt.h instead of WinCrypt.h.
20926
20927 2005-08-24  Ankit Jain  <jankit@novell.com>
20928             Raja R Harinath  <rharinath@novell.com>
20929
20930         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
20931           called by it recursively.
20932           (mono_class_init): Remove special case in pending_init handling, since it's
20933           superseded by the fix to mono_class_from_typeref.
20934
20935 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
20936
20937         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
20938         BROKEN_THREAD_START stuff.
20939
20940 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
20941
20942         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
20943         trampoline.
20944
20945         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
20946         
20947         * object.c (mono_delegate_ctor): Replace the original function address with
20948         a delegate trampoline.
20949
20950 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
20951
20952         * icall.c: add boolean argument to base64_to_byte_array and 
20953         InternalFromBase64String to control whether a whitespace-only string
20954         is allowed (or should casue a FormatException to be thrown). We need
20955         this as the behavior has changed between MS.NET 1.x and 2.0, and we
20956         to match the MS behaviour in both profiles.
20957         * appdomain.c: Bump corlib version.
20958
20959 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20960
20961         This patch implements a big portion of publisher policy
20962         support, used to bind assembly versions and redirect
20963         one assembly from version A to version B.
20964
20965         * assembly.c:
20966         New GSList loaded_assembly_bindings, for storing the cached
20967         assembly bindings.
20968         (assembly_binding_maps_name): New static function for checking if a 
20969         assembly binding information maps an assembly name.
20970         (mono_assembly_binding_info_free): New function for freeing
20971         assembly binding information resources.
20972         (get_publisher_policy_info): New static function for retrieving 
20973         assembly binding information from a MonoImage.
20974         (compare_versions): New static function for comparing an assembly
20975         binding information data and the version of an assembly name.
20976         (check_policy_versions): New static function for checking if an
20977         assembly binding info mapping an assembly name is valid for it.
20978         (mono_assembly_load_publisher_policy): New static function for
20979         loading the 'policy.major.minor.MyAssembly' image for an assembly
20980         with an assembly name 'aname'.
20981         (mono_assembly_bind_version): New static function for updating
20982         assembly redirection.
20983         (mono_assembly_apply_binding): New static function for applying
20984         assembly binding.
20985         (search_binding_loaded): New static function for searching 
20986         loaded assembly binding infos in the cache domain.
20987         (mono_assembly_load_full): Don't apply assembly binding for
20988         reflection only assemblies.
20989
20990         * metadata-internals.h: Add MonoAssemblyBindingInfo,
20991         which contains information about assembly binding. Also
20992         declare signature for mono_config_parse_publisher_policy ()
20993         function, used to retrieve pub policy info.
20994         
20995         * mono-config.c:
20996         (publisher_policy_start): New static function used to parse publisher 
20997         policy config files.
20998         (publisher_policy_parser): New static MonoParseHandler containing 
20999         the functions used when parsing config files.
21000         (mono_config_parse_publisher_policy): New function for parsing
21001         publisher policy files.
21002         
21003 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
21004
21005         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
21006
21007         * marshal.c (mono_delegate_free_ftnptr): Ditto.
21008
21009         * object.c (mono_get_addr_from_ftnptr): New helper function.
21010
21011         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
21012
21013         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21014
21015 2005-08-19  Dick Porter  <dick@ximian.com>
21016
21017         * threads.c, threads.h, appdomain.c, appdomain.h,
21018         profiler-private.h, monitor.c, object.c, object-internals.h,
21019         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
21020         store the thread ID, so it can hold a 64 bit value if needed.
21021
21022 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
21023
21024         * reflection.c (mono_reflection_create_dynamic_method): Store the
21025         handle class into the method references as well so ldtoken works in
21026         dynamic methods.
21027
21028         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
21029         types.
21030
21031 2005-08-19  Ankit Jain <jankit@novell.com>
21032
21033         Fix #75847.
21034         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
21035           here rather than using the method signature of a arbitrary function
21036           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
21037           two arguments.
21038           Hack done with Harinath.
21039
21040 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21041
21042         * threadpool.c: disable printing stack traces when we get a exception
21043         in a threadpool thread. I need to do more testing to figure out which
21044         cases actually print this. Fixes bug #75828.
21045
21046 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21047
21048         * icall.c: there might be ignored whitespace after the last '='. This
21049         fixes length computation and bug #75840.
21050
21051 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
21052
21053         * assembly.c (mono_assembly_load_full): Consider .exe extension as
21054         well. Fixes #75809.
21055
21056         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
21057         #75784.
21058         
21059         * reflection.c (create_custom_attr_data): Ditto.
21060
21061 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
21062
21063         * locales.c, culture-info.h : removed RegionLCIDMap.
21064         * culture-info-tables.h : regenerated.
21065
21066 2005-08-16  Martin Baulig  <martin@ximian.com>
21067
21068         * class.c (mono_type_get_name_recurse): Small fix.
21069
21070 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
21071
21072         * locales.c : indentation fixie.
21073
21074 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
21075
21076         * object-internals.h,
21077           locales.h,
21078           locales.c,
21079           culture-info.h,
21080           icall.c : added RegionInfo table support.
21081         * culture-info-table.h : regenerated for region support.
21082
21083 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
21084
21085         * reflection.c (resolve_object): handle all kinds of MonoMethod
21086         including generic ones
21087
21088 2005-08-12  Ankit Jain <jankit@novell.com>
21089
21090         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21091           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
21092
21093 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
21094
21095         * process.c: Don't close a thread handle when it's NULL. This is a
21096         workaround for bug #75733.
21097
21098 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
21099
21100         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21101
21102 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
21103
21104         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21105
21106 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21107
21108         * threadpool.c: if a work item in the thread pool has a callback that
21109         catches a exception, don't propagate it after invoking the callback.
21110         Fixes bug #75336.
21111
21112 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
21113
21114         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21115
21116         * class-internals.h (MonoCachedClassInfo): Add some new fields.
21117
21118         * class.c (mono_class_init): Load field info lazily in the AOT case.    
21119
21120         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21121
21122 2005-08-03  Ankit Jain  <jankit@novell.com>
21123
21124         Fix #75683.
21125         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21126           PInvoke calling convention is 0.
21127
21128 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21129
21130         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21131         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21132
21133 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21134
21135         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21136         to handle threads not started by the GC (patch by Michael Meeks
21137         <michael.meeks@novell.com>).
21138
21139 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21140
21141         * reflection.c: Make buffer used in emitting types larger for some
21142         big generic types (patch by Michal Moskal).
21143
21144 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21145
21146         * mono-debug.c: Fix some (not all) alignment problems.
21147
21148 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21149
21150         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21151         Invoke mono_image_load_from_data_full passing the refonly
21152         parameter.
21153
21154         * assembly.c
21155         (mono_assembly_open_from_bundle): Add the refonly argument, 
21156         in order to pass it to other methods it calls to.
21157         (do_mono_assembly_open): Add the refonly argument, in order 
21158         to pass it to other methods it calls to.
21159         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21160         the refonly parameter to it.
21161
21162         * image.c: Add loaded_images_refonly_hash and
21163         loaded_images_refonly_guid_hash to cache the reflection
21164         only loaded images.
21165         (mono_images_init): Initialize the hash tables used for
21166         caching the reflection only images.
21167         (load_modules): Invoke mono_image_open_full passing the refonly
21168         parameter to load the modules the correct way.
21169         (build_guid_table): Add the refonly argument, to re-build the 
21170         correct hash table.
21171         (do_mono_image_open): Added the refonly argument, in order to
21172         define it for the loaded image.
21173         (mono_image_loaded_full): New function, which receives an
21174         additional parameter to look for the image in the refonly or
21175         non-refonly section.
21176         (mono_image_loaded): Updated, using mono_image_loaded_full.
21177         (mono_image_loaded_by_guid_full): The same case that happens
21178         with mono_image_loaded_full.
21179         (mono_image_loaded_by_guid): Likewise.
21180         (register_image): Use the ref_only variable inside MonoImage
21181         to decide in which hash table store the current image.
21182         (mono_image_open_from_data_full): Rename
21183         mono_image_open_from_data to mono_image_open_from_data_full,
21184         adding the refonly argument, to define the ref_only variable 
21185         inside MonoImage.
21186         (mono_image_open_from_data): Return 
21187         mono_image_open_from_data_full.
21188         (mono_image_open_full): Rename mono_image_open to
21189         mono_image_open_full, receiving the new refonly argument,
21190         to pass it to inner methods.
21191         (mono_pe_file_open): Update this function, to open
21192         a MonoImage as a non-refonly image.
21193         (mono_image_close): Use the refonly variable inside
21194         MonoImage to remove the image from the correct caches.
21195
21196         * image.h: Add the signatures of mono_image_open_full,
21197         mono_image_open_from_data_full, mono_image_loaded_full,
21198         mono_image_loaded_by_guid_full.
21199
21200         * metadata-internals.h: Add the ref_only field to 
21201         MonoImage.
21202         
21203 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21204
21205         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21206         Fix the last behavior, which used to load the assemblies and
21207         extract MonoReflectionAssemblyName information, instead of
21208         extract it from the metadata tables. Needed for Reflection
21209         Only assemblies.
21210         
21211 2005-07-29  Martin Baulig  <martin@ximian.com>
21212
21213         * mono-debug-debugger.c
21214         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21215         not initialized.
21216
21217         * mono-debug.c
21218         (mono_debug_address_from_il_offset): Check whether we have
21219         debugging support before attempting to take the lock.
21220         (mono_debug_source_location_from_address): Likewise.
21221         (mono_debug_source_location_from_il_offset): Likewise.
21222         (mono_debug_il_offset_from_address): Likewise.
21223         (mono_debug_address_from_il_offset): Likewise.
21224
21225 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21226
21227         * class.c (mono_class_from_name_case): Add support for dynamic images.
21228         Fixes #75650.
21229
21230         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21231         for #75479.
21232
21233 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21234         
21235         * reflection.c (mono_method_get_object): Fix warning.
21236
21237 2005-07-28  Martin Baulig  <martin@ximian.com>
21238
21239         * mono-debug.c
21240         (mono_debug_add_wrapper): Also write the wrapper type.
21241
21242 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21243
21244         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21245         
21246         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21247         data indicates the class has none.
21248
21249 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21250
21251         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21252         loader lock with the debugger lock. Prevents deadlocks for beagle.
21253
21254         Beagle can now run on an smp box for a weekend without any
21255         issues. Woohoo!
21256
21257 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21258
21259         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21260         in a module. Fixes #75629.
21261
21262 2005-07-26  Martin Baulig  <martin@ximian.com>
21263
21264         * mono-debug.c (mono_debug_add_wrapper): New static method.
21265         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21266         interncall or a wrapper.
21267
21268         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21269         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21270         (MONO_DEBUGGER_VERSION): Bump to 51.
21271
21272         * mono-debug-debugger.c
21273         (mono_debugger_add_type): Removed this empty function.
21274         (mono_debugger_add_method): Likewise.
21275
21276 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21277
21278         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21279         before accessing method->slot.
21280
21281 2005-07-21  Jb Evain  <jbevain@gmail.com>
21282
21283         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21284         Fixes #75010.
21285
21286 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21287
21288         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21289         #75587.
21290
21291 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21292
21293         * image.h image.c: Add mono_image_get_guid () API function.
21294
21295 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21296
21297         There were issues when multiple threads tried to load
21298         assemblies. A deadlock was created between assemblies_mutex and
21299         mono_domain_assemblies_lock. This fixes the issue by making the
21300         assembly ref counting be lock free. See bug 75586.
21301         
21302         * image.c (mono_image_close): The add ref function here was using
21303         Interlocked operations while the unref was using a mutex and a
21304         --. I don't think this was ever a bug that would be exposed in a
21305         non-pendantic way (ie, by an embedder doing a ref on one thread
21306         and an unref on another), but for the sake of correctness, this is
21307         now Interlocked.
21308
21309         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21310         (mono_assembly_load_reference): Call mono_assembly_addref rather
21311         than touching the refcount ourselves.
21312         (mono_assembly_close): Use InterlockedDecrement to unref the
21313         assembly. Don't acquire the lock unless it is actually needed.
21314
21315 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21316
21317         * class.c (mono_class_layout_fields): Fix calculation of has_references
21318         for generic types.
21319
21320 2005-07-12  Martin Baulig  <martin@ximian.com>
21321
21322         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21323
21324         * metadata.c
21325         (mono_type_hash): Provide better hashing for generic instances.
21326         (mono_generic_inst_hash): Improve hashing.
21327         (mono_generic_class_hash): Likewise.
21328
21329         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21330         generic instances.
21331
21332 2005-07-12  Martin Baulig  <martin@ximian.com>
21333
21334         * reflection.c (mono_reflection_create_runtime_class): Remove the
21335         hack for generic type definitions and non-`Run' assemblies.
21336         (mono_reflection_bind_generic_parameters): Also use
21337         `klass->wastypebuilder' to check for TypeBuilders.
21338
21339 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21340
21341         * class.c (mono_class_layout_fields): Fix calculation of has_references
21342         for generic types.
21343
21344         * class.c (inflate_generic_class): Fix a leak.
21345         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21346         for generic types.
21347
21348 2005-07-11  Martin Baulig  <martin@ximian.com>
21349
21350         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21351         on error.
21352
21353 2005-07-11  Martin Baulig  <martin@ximian.com>
21354
21355         * loader.c (find_method): Also lookup in
21356         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
21357
21358 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21359
21360         * appdomain.c (mono_domain_unload): Don't free the error message
21361         before passing it to mono_get_exception_...
21362
21363         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
21364         
21365 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
21366
21367         * threads.c: try to better guess an available RT signal (bug #75387).
21368
21369 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21370
21371         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
21372         and CACHE_OBJECT.
21373
21374 2005-07-07  Martin Baulig  <martin@ximian.com>
21375
21376         * class.c (mono_type_get_name_full): Return NULL for
21377         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
21378         fixes #75408.
21379
21380 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21381
21382         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
21383         exit the appdomain as well being aborted.
21384
21385         * threadpool.c: Create all threadpool threads inside the root appdomain, and
21386         change back to the root domain after calling managed code. This enables
21387         appdomains using threadpools to be unloaded.
21388
21389 2005-07-07  Martin Baulig  <martin@ximian.com>
21390
21391         * class-internals.h
21392         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
21393         into `MonoDynamicGenericClass' since we only need it for dynamic
21394         types.
21395
21396         * reflection.c (mono_class_bind_generic_parameters): We don't need
21397         to compute the `parent' here.
21398
21399 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
21400
21401         * culture-info-table.h : regenerated.
21402
21403 2005-07-06  Martin Baulig  <martin@ximian.com>
21404
21405         * icall.c
21406         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
21407
21408         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
21409
21410 2005-07-06  Martin Baulig  <martin@ximian.com>
21411
21412         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
21413         we're doing a signature-only comparision; fixes #74945.
21414
21415 2005-07-06  Martin Baulig  <martin@ximian.com>
21416
21417         * class-internals.h (MonoGenericClass): Moved some things out into
21418         a new `MonoInflatedGenericClass' type.  
21419         (MonoInflatedGenericClass): New type; the `klass' of a
21420         `MonoGenericClass' is now computed lazyly in
21421         mono_get_inflated_generic_class().      
21422
21423         * class.c (mono_get_inflated_generic_class): New public function.
21424         (mono_class_inflate_generic_method): Removed the unused
21425         `MonoClass *' argument.
21426         (setup_generic_vtable): Don't call mono_get_inflated_method() on
21427         all the methods.
21428         (mono_class_create_generic): Make this static and merge it with
21429         mono_class_create_generic_2(); we're now called automatically from
21430         mono_get_inflated_generic_class().
21431
21432         * loader.c (mono_method_signature): Call
21433         mono_get_inflated_method() here.
21434
21435 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
21436
21437         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
21438         type of fields with RVA.
21439
21440         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
21441         for this pseudo class.
21442         (my_mono_class_from_generic_parameter): Likewise.
21443         (mono_class_init): Allow interfaces to have cctors.
21444
21445 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21446
21447         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
21448         lazily for AOT methods.
21449
21450 2005-07-05  Martin Baulig  <martin@ximian.com>
21451
21452         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
21453         returns FALSE for a successful match, not TRUE.
21454
21455 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
21456
21457         * loader.c (mono_method_get_index): Optimize this a bit.
21458
21459 2005-07-04  Martin Baulig  <martin@ximian.com>
21460
21461         * class.c
21462         (class_compute_field_layout): Move the check for generic type
21463         definitions into mono_class_layout_fields().  Fixes #74684.
21464         (mono_class_from_generic_parameter): Correctly compute
21465         `klass->parent'; fixes #75457.
21466
21467         * reflection.c (register_assembly, register_module): Make sure
21468         `domain->rejobject_hash' is already created.
21469
21470 2005-07-02  Martin Baulig  <martin@ximian.com>
21471
21472         * class-internals.h
21473         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
21474         `MonoDynamicGenericClass'.      
21475
21476 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
21477
21478         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
21479         returned by a field getter is null, since null is a valid value.
21480
21481 2005-07-01  Martin Baulig  <martin@ximian.com>
21482
21483         * reflection.c (mono_reflection_generic_class_initialize): Update
21484         the `dgclass->fields [i].parent' to the correct class.
21485         (mono_image_get_fieldref_token): Use the declaring type, not the
21486         reflected type.
21487
21488 2005-07-01  Martin Baulig  <martin@ximian.com>
21489
21490         * loader.c (find_method): Also look in the interfaces; fixes #75429.
21491
21492 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
21493
21494         * threads.c (thread_cleanup): assert that thread != NULL
21495         (wait_for_tids_or_state_change): We were using the wrong variable
21496         when accessing wait->threads. `i' was always out of the bounds of
21497         the array.
21498
21499 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21500
21501         * loader.c: map user32 and kernel32 to libMonoSupportW
21502
21503 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
21504
21505         * appdomain.c (unload_thread_main): Mark this as WINAPI.
21506
21507 2005-06-28  Martin Baulig  <martin@ximian.com>
21508
21509         * loader.c (method_from_methodspec): Fix #75334.
21510
21511 2005-06-28  Martin Baulig  <martin@ximian.com>
21512
21513         Fix #74953 - Arrays now implement the generic IList<T> interface
21514         on the 2.0 platform.
21515
21516         * class-internals.h (MonoDefaults): Added `generic_array_class'.
21517
21518         * reflection.c (mono_class_bind_generic_parameters): New public
21519         function; similar to mono_reflection_bind_generic_parameters(),
21520         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
21521
21522         * domain.c (mono_init_internal): Try to initialize.
21523         `mono_defaults.generic_array_class' here; this'll only succeed if
21524         we're using the 2.0 corlib.
21525
21526         * icall.c
21527         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
21528         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
21529         (mono_lookup_internal_call): Added support for nested classes.
21530
21531         * loader.c
21532         (mono_get_method_from_token): Set `result->signature->pinvoke' if
21533         we're an interncall and have generic arguments.
21534
21535         * class.c
21536         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
21537         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
21538         instance of System.Array.InternalArray<T> for arrays, so they
21539         implement the generic IList<T> interface.
21540
21541 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
21542
21543         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
21544         (chastamar@yahoo.com). Fixes #75374.    
21545
21546 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
21547
21548         * culture-info-table.h: regenerated.
21549
21550 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21551
21552         * icall.c: handle spaces correctly for base64 strings.
21553
21554 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
21555
21556         * *.c: Kill some warnings.
21557
21558 2005-06-23  Duncan Mak  <duncan@novell.com>
21559
21560         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
21561         that this builds on Solaris 10 (x86).
21562
21563 2005-06-23  Martin Baulig  <martin@ximian.com>
21564
21565         * class.c
21566         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
21567         generic type definitions.
21568
21569 2005-06-23  Martin Baulig  <martin@ximian.com>
21570
21571         Fix #75331.
21572
21573         * metadata.c (mono_class_get_overrides): Renamed to
21574         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
21575         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
21576         pass it to mono_get_method_full().
21577
21578 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
21579
21580         * reflection.c (mono_reflection_create_runtime_class): take the
21581         mono_domain_lock in this method. Prevents deadlocks
21582
21583 2005-06-22  Martin Baulig  <martin@ximian.com>
21584
21585         * loader.c (method_from_methodspec): Fix #75330.
21586
21587 2005-06-22  Martin Baulig  <martin@ximian.com>
21588
21589         * reflection.c (type_get_qualified_name): Use
21590         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
21591         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
21592         argument; use it if we don't have an assembly name.
21593
21594 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
21595
21596         * object.c: In mono_message_init, set "copy out" flag for in
21597         parameters with the [Out] flag.
21598
21599 2005-06-21  Martin Baulig  <martin@ximian.com>
21600
21601         * class.c
21602         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
21603         and MONO_TYPE_PTR.
21604
21605 2005-06-21  Martin Baulig  <martin@ximian.com>
21606
21607         * class.c (mono_class_init): Don't initialize `class->fields' for
21608         generic instances since they're initialized again in
21609         compute_field_layout(). 
21610         (compute_field_layout): Set the field's `generic_info' here; fix
21611         #75320. 
21612
21613 2005-06-21  Martin Baulig  <martin@ximian.com>
21614
21615         * class-internals.h
21616         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
21617
21618         * metadata.c (mono_metadata_generic_method_equal): Also
21619         distinguish the `generic_class'; fixes #75334.
21620
21621 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21622
21623         * domain.c:
21624         * appdomain.c:
21625         * domain-internals.h:
21626         * reflection.c: 'domain_assemblies' field is now protected by its own
21627         lock. Don't call into managed code to run the AssemblyLoad event if we
21628         now there are no registered delegates for it.
21629
21630 2005-06-20  Martin Baulig  <martin@ximian.com>
21631
21632         * class.c (mono_class_is_assignable_from): Use a custom version of
21633         mono_class_has_parent() to make things work for generic instances;
21634         fix #75300.
21635
21636 2005-06-20  Martin Baulig  <martin@ximian.com>
21637
21638         * loader.c (method_from_methodspec): Apply a patch from
21639         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
21640
21641 2005-06-20  Martin Baulig  <martin@ximian.com>
21642
21643         * class.c (mono_class_init): Reverted Zoltan's last change; it
21644         breaks generics.
21645
21646 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
21647
21648         * threads.c (wait_for_tids_or_state_change): Add missing locking.
21649
21650 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21651
21652         * socket-io.c: fix the index in the socket array for writable/error
21653         sockets. Fixes bug #75306.
21654
21655 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
21656
21657         * class.c (mono_class_init): Allow interfaces to have static ctors.
21658
21659 2005-06-17  Martin Baulig  <martin@ximian.com>
21660
21661         * loader.c (method_from_methodspec): Use `context->container' when
21662         parsing the `gmethod->inst'.
21663
21664 2005-06-17  Martin Baulig  <martin@ximian.com>
21665
21666         * class.c (mono_type_get_name_recurse): Don't add the assembly
21667         name for type arguments.
21668
21669 2005-06-15  Martin Baulig  <martin@ximian.com>
21670
21671         * reflection.c (mono_image_get_inflated_method_token): Encode
21672         correct klass; fixes #75260.
21673
21674 2005-06-13 Michal Moskal <malekith@nemerle.org>
21675
21676         * icall.c: Make GetCorrespondingMethod/Constructor take
21677         MonoReflectionMethod method not MonoMethod. Removed
21678         MonoType.GetCorrespondingField, and make
21679         MonoGenericType.GetCorrespondingField take name not
21680         MonoClassField.
21681
21682 2005-06-13  Michal Moskal <malekith@nemerle.org>
21683
21684         * reflection.c (field_encode_signature, encode_locals):
21685          Make sizes of buffers for types larger (for big generic types).
21686          (create_generic_typespec,
21687          mono_reflection_sighelper_get_signature_local,
21688          mono_reflection_sighelper_get_signature_field):
21689          Add asserts for too small buffers.
21690
21691 2005-06-15  Martin Baulig  <martin@ximian.com>
21692
21693         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
21694         if our parent is not a dynamic type.
21695
21696 2005-06-15  Martin Baulig  <martin@ximian.com>
21697
21698         * class-internals.h (MonoTypeNameFormat): New enum.
21699
21700         * class.c
21701         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
21702         (mono_type_get_full_name): Removed.
21703         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
21704         argument instead of the boolean's.
21705
21706         * icall.c (ves_icall_System_MonoType_getFullName):
21707         Added `gboolean assembly_qualified'.    
21708
21709         * reflection.h
21710         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
21711
21712         * reflection.c (mono_reflection_parse_type): Parse the new type
21713         name format.
21714
21715 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21716
21717         * icall.c: no need to convert from utf16 to utf8 and then back again
21718         after the call to GetLogicalDrives.
21719
21720 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21721
21722         * icall.c: frombase64. Fix problems exposed by new tests.
21723
21724 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21725
21726         * icall.c: added internal calls for converting char [] and strings in
21727         base64 into byte [].
21728
21729 2005-06-10  Martin Baulig  <martin@ximian.com>
21730
21731         * class.c (mono_class_create_generic_2): Read the nested classes
21732         from the metadata rather than from `gklass->nested_classes' since
21733         `gklass' might not be initialized yet.
21734
21735 2005-06-09  Duncan Mak  <duncan@novell.com>
21736
21737         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
21738         all public headers. Fixes #74919.
21739
21740 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
21741
21742         * domain.c: The key for proxy_vtable_hash is now a pointer
21743         array. Added new GHashFunc and GCompareFunc functions for this.
21744
21745         * class.h: The list of interfaces in MonoRemoteClass is known in
21746         advance and can't grow (we create a new MonoRemoteClass if needed),
21747         so now the interface array can be allocated together with
21748         MonoRemoteClass.
21749         
21750         * object.c: Added a new method create_remote_class_key.
21751         Fixed mono_remote_class so it does not depend on
21752         mono_upgrade_remote_class.
21753         Removed extend_interface_array.
21754         Added new method clone_remote_class(), which makes a copy of a remote
21755         class and adds a new interface or class to it.
21756         mono_upgrade_remote_class() now creates a new remote class (or gets
21757         it from the cache) if an vtable upgrade is needed. In this way
21758         we make sure that other objects sharing the same remote class
21759         don't get the new vtable with unwanted interfaces.
21760         
21761         * object-internals.h:
21762         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
21763         
21764         * marshal.c: Track changes in mono_upgrade_remote_class().
21765
21766 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
21767         * icall.c: Add runtime methods for obtaining members of inflated
21768         class, which were created from supplied non-inflated members. It
21769         is used in internal Get{Method,Constructor,Field} methods in
21770         System.Type
21771
21772 2005-06-09  Martin Baulig  <martin@ximian.com>
21773
21774         * reflection.c
21775         (mono_reflection_bind_generic_method_parameters): Fix #75169.
21776
21777 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21778         * reflection.c (mono_image_basic_init): Define
21779         Version in MonoDynamicAssembly. 
21780         
21781 2005-06-08  Martin Baulig  <martin@ximian.com>
21782
21783         Fix #75136.
21784
21785         * loader.c
21786         (mono_method_signature_full): New public method; takes a
21787         `MonoGenericContext *'.
21788         (find_method): Use mono_method_signature_full() and pass the
21789         klass'es context to it.
21790
21791         * class.c (mono_class_is_inflated_method): Use
21792         mono_method_signature_full() and pass the context to it.
21793
21794 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
21795
21796         * object.c: add proper locking in mono_remote_class_vtable(),
21797         fixes possible memory corruption.
21798
21799 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
21800
21801         * marshal.c (mono_remoting_marshal_init): set
21802         initialized after initialization.
21803
21804 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21805
21806         * locales.c : hush.
21807
21808 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
21809
21810         * object.c (extend_interface_array): fix really silly
21811         memory corrupting / comparison bug.
21812
21813 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21814
21815         * reflection.c: Functions added to support the creation
21816         of CustomAttributeData, which includes Attribute data
21817         used by ReflectionOnly methods.
21818
21819         * reflection.h:  mono_reflection_get_custom_attrs_data and
21820          mono_custom_attrs_data_construct added (functions exposed).
21821
21822          * icall.c: Added mono_reflection_get_custom_attrs_data
21823          as icall.
21824         
21825 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
21826
21827         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
21828         lupus's request.
21829
21830 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
21831
21832         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
21833
21834         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
21835         dynamic DllImportAttribute.
21836
21837         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
21838         dynamic DllImportAttribute.
21839
21840         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
21841         Fixes #75162.
21842
21843 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21844
21845         * threads.c: avoid segfault when an unstarted thread is aborted.
21846
21847 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
21848
21849         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
21850         Returns the name and version of the runtime for reporting.
21851
21852 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21853
21854         * appdomain.c: bump corlib version.
21855         * object-internals.h: new field in MonoReflectionAssembly.
21856
21857 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21858
21859         * object-internals.h: Carlos forgot to add this field.
21860
21861 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21862
21863         * icall.c: Added create_version to create instances
21864         of Version of MonoReflectionAssemblyName. This change helps
21865         the AssemblyName tests to keep running fine.
21866         
21867 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
21868   
21869         * object.c (mono_method_return_message_restore): A somehow less
21870         intrusive fix for #75138.
21871
21872 2005-06-03  Raja R Harinath  <rharinath@novell.com>
21873
21874         * object.c (mono_method_return_message_restore): Fix computation
21875         of expected number of out args.
21876
21877 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
21878
21879         * reflection.c (mono_image_get_method_info): Fix the case when the
21880         charset is empty.
21881
21882 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
21883
21884         * object.c: Added missing null check in
21885           mono_method_return_message_restore.
21886
21887 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
21888
21889         * reflection.c (mono_image_get_method_info): Handle the case when
21890         dllentry is empty.
21891
21892 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
21893
21894         * object.c: When creating the vtable for a proxy, take into account
21895         all inherited interfaces, not only the ones registered in
21896         iclass->interfaces. This fixs bug #74996.
21897         Also, in mono_method_return_message_restore, verify that the array
21898         of out args has the expected lengh.
21899
21900 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21901
21902         * socket-io.c: update the timeout in Poll when the call is interrupte.
21903
21904 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21905
21906         * socket-io.c: support abort/suspend in Select_internal after last
21907         change.
21908
21909 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21910
21911         * threadpool.c: remove warning.
21912
21913 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21914
21915         * icall.c:
21916         * socket-io.[ch]: Select_internal uses poll() now when available, thus
21917         removing the 1024 limit from select(). Runtime part of the fix for
21918         bug #71203.
21919
21920 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21921
21922         * socket-io.c: when resolving the addresses for the same
21923         host returned by gethostname(), get the local IPs from the interface
21924         list. Loopback addresses are discarded if the are interfaces up with
21925         non-loopback ones. Fixes bug #63265.
21926
21927 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
21928
21929         * appdomain.c, verify.c, object-internals.h, reflection.c:
21930         bumped corlib number to 36, and added new extra_flags field
21931         to ReflectionMethodBuilder and friends.  Fixes #75060.
21932
21933 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
21934
21935         * gc.c: register a new weak link only if the object is non-null
21936         (fixes bug#75047).
21937
21938 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21939
21940         * culture-info.h : short time pattern too.
21941
21942 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21943
21944         * culture-info.h : expand long time pattern string length.
21945
21946 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21947
21948         * culture-info-table.h : update (more French date format; #72788).
21949
21950 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
21951
21952         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
21953         the method is static. Fixes #75029.
21954
21955 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
21956
21957         * reflection.c: Update the table_idx field of method builders after
21958         saving the module, since it can change. This is a workaround for
21959         bug #74914. 
21960
21961 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21962
21963         * culture-info-table.h : update (additional French date format).
21964
21965 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
21966
21967         * icall.c (ves_icall_type_Equals): Revert last change.
21968         
21969         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
21970
21971         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
21972
21973 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
21974
21975         * class-internals.h: Added executioncontext_class field to 
21976         MonoDefaults structure.
21977         * domain.c: Cache System.Threading.ExecutionContext class in 
21978         mono_defaults.
21979         * object.c: Capture the ExecutionContext for asynchroneous calls in
21980          mono_async_result_new.
21981         * object-internals.h: Added execution_context and original_context 
21982         fields to MonoAsyncResult. Added execution_context to MonoThread.
21983         * security-manager.c|.h: Added mono_get_context_capture_method to 
21984         return the capture method (if required by the security manager or by
21985         the framework version used).
21986         * threadpool.c: Apply capture (if present) ExecutionContext in 
21987         mono_async_invoke and revert to original context after it completes.
21988
21989 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
21990
21991         * culture-info-table.h : updated (real hacky solution for zh-CHT).
21992
21993 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
21994
21995         * culture-info-table.h : zh-CHT related workaround.
21996
21997 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
21998
21999         * marshal.c (emit_marshal_custom): Add some error checking and call the
22000         methods in the ICustomMarshaler interface. Fixes #74875.
22001         
22002         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
22003         native->managed wrappers.
22004
22005 2005-05-12  Martin Baulig  <martin@ximian.com>
22006
22007         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
22008         here and use the loader lock.
22009
22010         * mono-debug.c: Properly lock when the debugger is not attached.
22011         (mono_debug_init): Release the initial lock if we're not running
22012         in the debugger.
22013
22014 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22015
22016         * marshal.c (emit_marshal_custom): Pass through NULL values without
22017         calling the custom marshalling routines.
22018
22019         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
22020         conversion in structures. Fixes #74882.
22021
22022 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
22023
22024         * culture-info-table.h : zh-* cultures were missing.
22025
22026 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
22027
22028         * threads.c: Added a new event background_change_event which is signaled
22029         when a thread changes its background mode.
22030         Moved here several checks previously done in managed code. The checks
22031         require the thread lock, and using the thread lock in managed code
22032         can result in deadlocks.
22033         Merged Start_internal and Thread_internal into a single method. Now 
22034         Thread_internal does all work of creating and starting a thread.
22035         Added icalls for setting and getting the state of the object. Moved from
22036         managed code to avoid locking there.
22037         Added wait_for_tids_or_state_change() which is called instad of
22038         wait_for_tids when waiting for non-backround threads to end. This method
22039         will return if one of the threads ends or the background_change_event
22040         is signaled.
22041         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
22042         the background mode. This method signals the background_change_event
22043         event.
22044         * icall.c:
22045         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
22046         removed Start_internal.
22047         
22048 2005-05-11  Martin Baulig  <martin@ximian.com>
22049
22050         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
22051         to order of some fields to get proper alignment on 64-bit machines.
22052
22053 2005-05-11  Martin Baulig  <martin@ximian.com>
22054
22055         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
22056         changes as they're broken and completely fuck up the debugger.
22057
22058         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
22059
22060 2005-05-10  Martin Baulig  <martin@ximian.com>
22061
22062         * reflection.c (mono_reflection_generic_class_initialize): Don't
22063         call mono_class_setup_parent() here.
22064
22065 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22066
22067         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
22068         send/receive timeout use an integer in milliseconds. We were using a
22069         struct timeval.
22070
22071 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22072
22073         * locales.c:
22074         (internal_get_cultures): reserve the first slot of the array for the
22075         InvariantCulture, which will be filled in managed code.
22076
22077 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
22078
22079         * reflection.c (mono_image_fill_module_table): Initialize the
22080         GENERATION field as well.
22081
22082 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22083
22084         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22085         Monitor.Enter on the object.
22086
22087 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
22088
22089         * threads.c: Enable the wait for running threads when exiting.
22090         * icall.c: Suspend all threads before exiting.
22091
22092 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
22093
22094         * assembly.c (mono_assembly_load_reference): Fix warning.
22095
22096 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22097
22098         * threadpool.c: changed the default number of threads per cpu. From now
22099         on, the default will be 20 + (5 * number of cpus) instead of 50.
22100
22101 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
22102
22103         * loader.c (mono_method_get_signature_full): Add locking here.
22104
22105 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
22106
22107         * appdomain.c: Moved methods for parsing and freeing assembly
22108         names to assembly.c.
22109         * assembly.c, domain-internals.h: Created public methods for parsing
22110         assembly names. Fixed mono_assembly_load_with_partial_name:
22111         it now finds the best match, taking into account the version,
22112         token and culture specified in the partial name. Also return
22113         the latest version if no version information is specified.
22114
22115 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22116
22117         * threadpool.c: replace check for SocketAsyncCall class.
22118
22119 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22120
22121         * threadpool-internals.h:
22122         * Makefile.am: added threadpool-internals.h
22123
22124         * threadpool.c: call mono_unhandled_exception on exceptions not handled
22125         that happen in threadpool threads (tested on MS).
22126         (mono_thread_pool_remove_socket): new function that dispatch any pending
22127         AIO call on a socket that is closing. By now only epoll really needs it,
22128         as select/poll wake up when the socket closes.
22129
22130
22131         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22132
22133 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22134
22135         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22136
22137 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22138
22139         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22140
22141 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22142
22143         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22144         has an abort request, convert it into a suspend request.
22145
22146 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22147
22148         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22149         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22150         is not supported yet.
22151
22152 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22153
22154         * image.c: register assemblies loaded from data (bundles) in the loaded
22155         assemblies hash. Fixes bug #74772.
22156
22157 2005-04-29  Martin Baulig  <martin@ximian.com>
22158
22159         * class.c (mono_type_get_name_recurse): Update to the new naming
22160         schema from the latest .NET 2.x beta2.
22161         (mono_class_setup_vtable_general): If we're a generic instance,
22162         copy the vtable from our generic type definition and inflate all
22163         the methods in it.
22164
22165         * loader.c (find_method): Update to the new naming schema from the
22166         latest .NET 2.x beta2.
22167
22168 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22169
22170         * class.c (mono_class_init): Add a mono_loader_unlock to the
22171         #74734 fix.
22172
22173 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22174
22175         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22176         suspend_all_other_threads () call for the time being, since it can hang.
22177
22178         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22179         the background threads to exit, since it can also hang.
22180
22181         * class.c (mono_class_init): Applied patch from Ankit Jain 
22182         (radical@gmail.com). Avoid pending init errors when a field refers
22183         to a nested class using a typeref. Fixes #74734.
22184
22185         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22186         this for dynamic modules.
22187
22188 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22189
22190         * threads.c: don't wait for threads that are in the process of aborting
22191         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22192         and waiting for background threads to finish. This makes xsp and
22193         mod-mono-server exit without random length delays and/or hangs.
22194
22195 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22196
22197         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22198
22199 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22200
22201         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22202         dynamic types to prevent infinite loops. Fixes #74727.
22203
22204         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22205         ..._is_assignable_to.
22206
22207 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22208
22209         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22210
22211 2005-04-25  Martin Baulig  <martin@ximian.com>
22212
22213         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22214
22215         * domain.c
22216         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22217
22218         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22219
22220         * reflection.c (build_compressed_metadata): Set metadata header
22221         version to 2.0.
22222
22223 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22224
22225         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22226         number into an integral and a decimal part. Fixes #70473.
22227
22228         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22229
22230 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22231
22232         * culture-info-table.h : reflected the latest locale-builder output.
22233
22234 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22235
22236         * threadpool.c: check for SuspendRequested too when deciding if
22237         mono_thread_interruption_checkpoint should be called.
22238
22239 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22240
22241         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22242         * threads.c: remove interruption_mutex and use Interlocked instead. When
22243         suspending all the threads, wait for all the suspended events at once.
22244         If we're shutting down and get an APC that is going to be queued,
22245         call mono_thread_execute_interruption immediately, as the thread might
22246         be sleeping on a pthread condition or mutex.
22247
22248         * icall.c: call mono_runtime_set_shutting_down before suspending the
22249         threads.
22250
22251         Fixes bug #74693. And now xsp is happier when exiting.
22252
22253 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22254
22255         * loader.c (mono_stack_walk): Fix #74690.
22256
22257 2005-04-22  Martin Baulig  <martin@ximian.com>
22258
22259         * mono-debug.h (MonoDebugMethodJitInfo): Added
22260         `MonoDebugMethodJitInfo *jit'.
22261
22262         * mono-debug.c (mono_debug_read_method): Cache the
22263         MonoDebugMethodJitInfo in `address->jit'.
22264         (mono_debug_free_method_jit_info): New public method.
22265
22266 2005-04-22  Martin Baulig  <martin@ximian.com>
22267
22268         * class.c (mono_class_is_assignable_from): Disallow
22269         type parameter -> interface.
22270
22271 2005-04-21  Dick Porter  <dick@ximian.com>
22272
22273         * threads.c (mono_thread_create): Turn an assertion into an error.
22274
22275 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22276
22277         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22278         
22279         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22280         Fix some gcc 4.0 warnings.
22281
22282 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22283
22284         * file-io.c: fix alt dir separator char on unix systems
22285         and cleanup (fixes bug #71214).
22286
22287 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22288
22289         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22290         a call to a remote domain, since the method may be an
22291         interface method in the client domain. This fixes bug #74192.
22292
22293 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22294
22295         * threadpool.c: recv/send are now performed before going back to managed
22296         code to save one transition.
22297
22298 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22299
22300         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22301
22302         * metadata/threadpool.c: removed hack to workaround the bug above.
22303
22304         Fixes bug #74618.
22305
22306 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22307
22308         * reflection.c reflection.h: Fix handling of parameter defaults in
22309         dynamic methods. Also fixes handling of parameter attributes.
22310         Fixes #74609.
22311
22312         * mono-debug.c (mono_debug_close_image): Fix warning.
22313
22314 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22315
22316         * socket-io.h: replaced old unused field with new 'blocking'.
22317         * threadpool.c: restore socket blocking state on windows(tm).
22318
22319 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22320
22321         * icall.c: don't return the codebase in the AssemblyName[] returned by
22322         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22323         * object-internals.h: Removed FIXME (fields were presents) and fixed
22324         versioncompat declaration.
22325
22326 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22327
22328         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22329         not closed, so don't cleanup when it happens.
22330
22331 2005-04-13  Chris Toshok  <toshok@ximian.com>
22332
22333         * mono-debug-debugger.h: change prototype for
22334         mono_debugger_lookup_type.
22335
22336         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22337         this function, although it should probably be named
22338         mono_debugger_init_type.
22339
22340 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22341
22342         * threadpool.c: fix non-AIO case.
22343
22344 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22345
22346         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22347         the built-in profiler to measure just JIT compilation times.
22348
22349 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22350
22351         * threadpool.c: the epollfd might be closed by another thread at
22352         any time, so ignore EBADF at treat it as a "we're closing" sign.
22353
22354 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22355
22356         * threadpool.c: release the semaphores with a count equals to the number
22357         of working threads in both IO and regular pools. Fixed typo that messed
22358         up the count of IO pool threads. Don't initialize the pipe handles if
22359         we're using epoll.
22360
22361 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22362
22363         * threadpool.c: some systems don't like a NULL when deleting the socket
22364         from epoll.
22365
22366 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22367
22368         * threadpool.c: fix semaphore allocation.
22369
22370 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22371
22372         * threadpool.c: added epoll() based implementation for asynchronous IO
22373         that is used instead of the default poll() when available.
22374         It can be disabled by setting MONO_DISABLE_AIO.
22375
22376 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22377
22378         * threadpool.c: windows needs 'closesocket' and instead of returning
22379         0 when the stream is closed while in select, it returns -1. Fixes bug
22380         #74573.
22381
22382 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
22383
22384         * class.c (class_compute_field_layout): Fix the regression caused by
22385         the previous try.
22386
22387 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22388
22389         * threadpool.c: separate pool for socket async. IO.
22390         * threadpool.h: mono_max_worker_threads is not a global any more.
22391
22392 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
22393
22394         * class.c (class_compute_field_layout): Fix #74549.
22395
22396 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22397
22398         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
22399         use 2 connected sockets instead.
22400
22401 2005-04-08  Miguel de Icaza  <miguel@novell.com>
22402
22403         * mono-config.c: Add new entry point for mkbundle
22404         mono_config_parse_memory. 
22405
22406 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22407
22408         * threadpool.c: removed another unused function.
22409
22410 2005-04-08  Ankit Jain  <radical@corewars.org>
22411
22412         * reflection.c (get_default_param_value_blobs): Add 'types'
22413         parameter to get the types encoded in the constant table.
22414         (mono_param_get_objects): Use the type from the constant table,
22415         not the type of the parameter, when creating default values.
22416         Handle null default values correctly.
22417
22418 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22419
22420         * file-io.c:
22421         * file-io.h:
22422         * threadpool.c:
22423         * threadpool.h:
22424         * icall.c:
22425         * socket-io.c: removed dead code for async IO.
22426
22427 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22428
22429         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
22430
22431         * threadpool.c: intercept socket async. calls and pass them to a thread
22432         that is polling and dispatching the job items to the threadpool as
22433         socket become ready. Fixes bugs #71217, #71933.
22434
22435         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
22436         between char and short/ushort arrays.
22437
22438         * socket-io.c: remove dead code.
22439
22440 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22441
22442         * locales.c,
22443           icall.c : removed InternalToUpper_Comp() and
22444           InternalToLower_Comp().
22445
22446 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
22447
22448         * char-conversions.h : The tables were incorrectly generated. Should
22449           be generated against invariant culture.
22450
22451 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
22452
22453         * object.c (mono_runtime_invoke_array): Fix return value when 
22454         passing pre-created valuetype objects to ctors.
22455
22456         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
22457         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
22458         Fixes #74338.
22459
22460 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
22461
22462         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
22463         only used with --security and hides the wrong corlib version error.
22464
22465 2005-03-30  Joshua Tauberer  <tauberer@for.net>
22466
22467         * class.c: Changed mono_class_name_from_token so that types
22468         outside of a namespace don't have an initial period.  Improved
22469         the g_warning message used in _mono_class_get when loading
22470         fails.
22471         * assembly.c: In mono_assembly_load_reference, when an assembly
22472         can't be found, "No such file or directory" is misleading and
22473         unhelpful because a few paths were checked for the presence of
22474         the assembly.  When that happens (ENOENT), display a nicer
22475         message indicating the directories that were searched.  In all
22476         cases, the warning is made easier to read for non-hackers.
22477
22478 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
22479
22480         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
22481         project/solution.
22482         * appdomain.h|domain.c: Removed inline from functions.
22483         * appdomain.c: Reduced warnings when compiling on windows.
22484         * icall.c: Fixed output_debug declaration to gunichar2*.
22485         * mono-config.c: Reduced warnings when compiling on windows.
22486         * rand.c: Added missing "windows.h". Added missing return value.
22487         * rawbuffer.c: Added missing winsock2.h for windows.
22488         * sysmath.h: Added mono-compiler.h header to allow/ease 
22489         compilation with non-GCC compilers.
22490         * threads.c: Fixed declarations to compile with VS.NET C compiler.
22491         Removed cast warnings.
22492
22493         Adapted from the work of J Lothian (for VC6).
22494
22495 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
22496
22497         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
22498         from default_path.
22499
22500 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
22501
22502         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
22503         the 2.0 profile.
22504
22505 2005-03-27  Raja R Harinath  <harinath@gmail.com>
22506
22507         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
22508         has to be in $(exec_prefix).  $(prefix) is for arch-independent
22509         stuff, and it would probably use $(prefix)/share rather than
22510         $(prefix)/lib.
22511
22512 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22513
22514         * console-io.c: added 2 includes that might be missing.
22515
22516 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
22517
22518         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
22519         profile.
22520
22521         * reflection.c (create_custom_attr): Allocate the params array using
22522         alloca so it gets GC tracking.
22523
22524 2005-03-23  Chris Toshok  <toshok@ximian.com>
22525
22526         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
22527         out some spew.
22528
22529 2005-03-24  Raja R Harinath  <rharinath@novell.com>
22530
22531         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
22532         changes to pick up any changes in prefix, etc.
22533
22534 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22535
22536         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
22537         
22538         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
22539         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
22540
22541 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
22542
22543         * class-internals.h object-internals.h class.c reflection.c: Extend the
22544         mono_lookup_dynamic_token () function to return the class of the
22545         token as well. 
22546
22547         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
22548         well. Fixes #73848.
22549
22550 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
22551
22552         * security-manager.c: Skip inheritance checks for intra-corlib
22553         class inheritance and method overrides. This skips a lot of checks
22554         and (anyway) permissions cannot work until corlib is loaded.
22555
22556 2005-03-23  Martin Baulig  <martin@ximian.com>
22557
22558         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
22559         MONO_TYPE_GENERICINST.  
22560
22561 2005-03-23  Martin Baulig  <martin@ximian.com>
22562
22563         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
22564
22565 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22566
22567         * class.c: added locking comments to some functions.
22568         Cache the interface offsets arrays (saves about 20 KB
22569         of runtime memory in a typical app).
22570         Reduce the time overhead in mono_class_setup_supertypes ().
22571
22572 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
22573
22574         * icall.c: speedup and fix leaks in GetMethodsByName and
22575         GetPropertiesByName.
22576
22577 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22578
22579         * reflection.c: some locking fixes.
22580
22581 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22582
22583         * metadata.c: added missing break in case statement.
22584
22585 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
22586
22587         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22588         typedbyref return values. Fixes #73941.
22589
22590 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
22591
22592         * security-manager.c|h: Added demandunmanaged method and 
22593         suppressunmanagedcodesecurity class to MonoSecurityManager.
22594         Renamed aptc class to allowpartiallytrustedcallers.
22595
22596 2005-03-17  Martin Baulig  <martin@ximian.com>
22597
22598         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
22599
22600 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22601
22602         * file-io.c: disabled file async. IO using aio_*. It uses the
22603         threadpool now. Workaround for bug #73718.
22604
22605 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22606
22607         * assembly.h, mono-config.c: added code to deal with bundled configs
22608         for bundled assemblies.
22609
22610 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
22611
22612         * *.c, private.h: cleanup, removing old private.h header file.
22613
22614 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
22615
22616         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
22617         and throw_on_unmappable_char attributes.
22618
22619 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
22620
22621         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
22622         _ProcessName_internal.
22623
22624 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
22625
22626         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
22627         #73631.
22628
22629         * icall.c threads.c threads-types.h: Remove slothash icalls as they
22630         are no longer used.
22631
22632 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
22633
22634         * object.c (compute_class_bitmap): Add support for generics. Fixes
22635         #73527.
22636
22637 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22638
22639         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
22640
22641 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22642
22643         * filewatcher.c: commented out the code for windows watcher, as we don't
22644         use it (we use the managed implementation instead).
22645
22646 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
22647
22648         * object-internals.h (MonoThread): Remove 'unused1' field.
22649
22650         * appdomain.c: Bump corlib version.
22651
22652         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
22653
22654         * reflection.c (mono_reflection_create_runtime_class): Remove the
22655         AssemblyBuilder.Save optimization since it causes too many problems.
22656
22657 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
22658
22659         * exception.c|h: Added mono_get_exception_reflection_type_load to
22660         create a ReflectionTypeLoadException object.
22661         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
22662         to return NULL is a InheritanceDemand fails during reflection. Updated
22663         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
22664         ReflectionTypeLoadException if an InheritanceDemand fails during 
22665         reflection. Added icall mapping for GetLinkDemandSecurity.
22666         * security-manager.c|h: Added ves_icall_System_Security_
22667         SecurityManager_GetLinkDemandSecurity internal call to return the
22668         class and methods permissions set for a LinkDemand. Removed unused
22669         fields in MonoSecurityManager.
22670
22671 2005-03-10  Martin Baulig  <martin@ximian.com>
22672
22673         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
22674         it's a generic instance.
22675
22676 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
22677
22678         * reflection.c (mono_get_object_from_blob): Applied patch from
22679         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
22680
22681         * class.c (mono_class_is_assignable_from): Another try at fixing 
22682         #73469 without breaking anything.
22683
22684 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
22685
22686         * class.c: (mono_class_is_assignable_from): Revert the last changes
22687         since they don't work with generics.
22688         
22689         * class.c (mono_class_is_assignable_from): Fix build bustage.
22690
22691         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
22692         the managed IsAssignableFrom method. Fixes #73469.
22693
22694         * reflection.c (mono_reflection_call_is_assignable_from): New helper
22695         function.
22696
22697 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
22698
22699         * object.c (mono_load_remote_field_new): Fix returning uninitialized
22700         memory when the remoting callback does not sets the out arguments.
22701         Fixes #73007.
22702
22703         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
22704         by mistake.
22705
22706         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
22707
22708         * object-internals.h (MonoStackFrame): Sync with managed object layout.
22709
22710         * appdomain.c: Bump corlib version.
22711
22712 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
22713
22714         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
22715         function.
22716
22717         * threads.c (mono_thread_attach): Detect threads which are not started
22718         by the GC pthread wrappers.
22719
22720 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
22721
22722         * icall.c: Added new icall for RNG.
22723         * rand.c|h: Added new icall to open the RNG. This allows to share a 
22724         single handle on Linux to access /dev/urandom and fix #73183.
22725
22726 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
22727
22728         * object.c: setting the new vtable in a transparent proxy object must
22729         not change the GC descriptor.
22730
22731 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22732
22733         * object.c: fixed compilation without GCJ support.
22734         * reflection.c: for runtime-created types ensure klass->has_references
22735         is correct (bug #73215).
22736
22737 2005-03-02  Martin Baulig  <martin@ximian.com>
22738
22739         * class.c (mono_class_is_assignable_from): Make this work if
22740         `oklass' is a generic instance; fixes #72831.
22741
22742 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22743
22744         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
22745         with hasthis set.
22746         
22747         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
22748
22749         * marshal.c: Reorganize native->managed marshalling code to also use
22750         the emit_marshal_... functions.
22751
22752 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22753
22754         * object.c: typed allocs have issues with bitmap sizes > 30,
22755         so check for max_set >= 30.
22756
22757 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22758
22759         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
22760         managed code. Fixes #73012.
22761
22762         * metadata.h (MonoMarshalSpec): Add elem_mult field.
22763
22764         * metadata.c reflection.c: Load/Emit elem_mult as well.
22765         
22766         * metadata.h (MonoMarshalSpec): Add comment.
22767
22768         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
22769
22770         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
22771         num_elem to -1 if not given.
22772
22773         * object-internals.h (MonoReflectionMarshal): Add has_size field.
22774
22775         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
22776         given values.
22777
22778 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
22779
22780         * null-gc.c (mono_gc_free_fixed): Was not compilable.
22781
22782 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
22783
22784         * reflection.c (encode_marshal_blob): Encode param_num field as well.
22785
22786         * object-internals.h (MonoReflectionMarshal): Add param_num field.
22787
22788 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22789
22790         * object.c: generalized the reference bitmap creation
22791         and added hooks for the new GC.
22792         * class-internals.c: removed the gc_bitmap field from MonoClass.
22793
22794 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22795
22796         * domain.c: help the compiler to produce better code
22797         in mono_jit_info_table_find ().
22798
22799 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22800
22801         * object.c: make all allocations look typed.
22802
22803 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22804
22805         * socket-io.c: load Mono.Posix if it's not loaded already
22806         (fixes bug#73033).
22807
22808 2005-02-24  Martin Baulig  <martin@ximian.com>
22809
22810         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
22811         * reflection.c (dup_type): Likewise.
22812
22813 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
22814
22815         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
22816         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
22817
22818 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22819
22820         * domain.c, threads.c, object-internals.h: make the critical thread
22821         local vars use the fast access mode (even when we're compiled in
22822         a lib). Provide accessors to be used by the jit during codegen.
22823
22824 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22825
22826         * appdomain.c: Changed hook functios behavior to include
22827         support for the reflection only assemblies. Some icalls were changed
22828         to support the mentioned assemblies too. Signatures of static methods
22829         try_assembly_resolve and real_load now have an additional parameter:
22830         refonly.
22831
22832         * assembly.c: General changes to mono_assembly_ methods to support
22833         reflection only api. Functions mono_assembly_open, mono_assembly_load,
22834         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
22835         suffix, to support an additional gbool parameter to specify whether
22836         the assembli is reflection only or not. Created some new hook functions 
22837         to add support for reflection only assemblies. Signatures of static 
22838         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
22839         have now an additional parameter: refonly.
22840
22841         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
22842         indicating whether the assembly is reflection only or not.
22843
22844         * exception.c: Add mono_get_exception_invalid_operation.
22845
22846         * icall.c: Throw an InvalidOperationException when trying to invoke
22847         a property/method/event, or trying to set/get the value of a field.
22848         Also add an icall to retrieve the ref_only flag to the
22849         MonoReflectionAssembly.
22850
22851 2005-02-23  Chris Toshok  <toshok@ximian.com>
22852
22853         Part of fix for #72827.
22854         * mono-debug.c (mono_debug_add_method): add lexical block data to
22855         the info we write.  Kind of a hack at the moment - we copy the
22856         lexical block info from the MonoDebugMethodInfo to the
22857         MonoDebugMethodJitInfo here, before writing it.
22858         (mono_debug_read_method): read the lexical block info.
22859
22860         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
22861
22862         * debug-mono-symfile.h: add lexical block support.
22863
22864         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
22865         support.
22866
22867 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
22868
22869         * loader.c (mono_lookup_pinvoke_call): Fix warning.
22870
22871         * object.c (mono_runtime_free_method): Call mono_free_method () and
22872         put the TODOs there.
22873
22874         * loader.c (mono_free_method): Free up most memory allocated for 
22875         dynamic methods.
22876
22877 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
22878
22879         * reflection.c: properly flag a Type argument to a
22880         named custom attr value (bug #72248).
22881
22882 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22883
22884         * reflection.c: reduce code duplication in named custom
22885         attribute encoding.
22886
22887 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
22888
22889         * reflection.c: properly encode custom attrs of type object
22890         (bug #72649).
22891
22892 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
22893
22894         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
22895
22896 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
22897
22898         * socket-io.c: load System.dll if it's not loaded already
22899         (bug #72850 and #70477).
22900
22901 2005-02-21  Martin Baulig  <martin@ximian.com>
22902
22903         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22904         generic instances.
22905
22906 2005-02-21  Martin Baulig  <martin@ximian.com>
22907
22908         * reflection.c (mono_image_build_metadata): We also need to
22909         "fixup" the MethodImpl table after we computed the final method
22910         indices.  Call fixup_methodimpl() to do that.
22911         (fixup_methodimpl): New private method.
22912
22913 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22914
22915         * assembly.c: special case mscorlib.dll (bug#72536),
22916         patch from Carlos Alberto Cortez.
22917
22918 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
22919
22920         * threads-types.h threads.c: Fix build bustage.
22921
22922         * threads.c: Use a union for long<->double conversions.
22923
22924         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
22925         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
22926
22927         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
22928         containing the checkpoint call with NOT_TAKEN.
22929         
22930         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
22931         checkpoint before pushing the arguments, so they won't have to be
22932         spilled to stack.
22933
22934 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22935
22936         * domain.c, assembly.c, domain-internals.h: make some data
22937         const and relocation-free.
22938
22939 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
22940
22941         * object.c, appdomain.c, class-internals.h: introduce the
22942         MonoClassRuntimeInfo structure to hold the info needed to
22943         use a class at runtime. Made mono_class_vtable() lock-free
22944         for all the appdomains.
22945
22946 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
22947
22948         * metadata-internals.h, image.c: introduce a per-image mempool to
22949         be used for memory that has the same lifetime as the image.
22950
22951 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
22952
22953         * domain.c: In mono_init_internal(), instead of selecting the first
22954         runtime version supported by an executable, get a list of all
22955         supported versions and select the one for which an mscorlib exists
22956         (since even if the runtime supports a given version, it doesn't mean
22957         that the framework for that version is installed).
22958         Modified get_runtimes_from_exe to support this behavior.
22959         In supported_runtimes, added information about additional system
22960         assembly versions.
22961         
22962         * assembly.c: Added support for more than one system assembly version
22963         per runtime version. Updated the assembly list.
22964         In mono_assembly_remap_version, removed the initial version check,
22965         since we don't know to which version we need to compare until we
22966         get the version set on which the assembly is based.
22967         Moved the code for loading corlib into the new method
22968         mono_assembly_load_corlib(), so it can be used by the initialization
22969         code.
22970         
22971         * domain-internals.h: Updated data structures and added declaration
22972         for mono_assembly_load_corlib.
22973
22974 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22975
22976         * reflection.c (resolve_object): Fix the creation of the signature in 
22977         the SignatureHelper case.
22978
22979         * assembly.c (mono_assembly_remap_version): Fix binary search.
22980         
22981 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
22982  
22983         * class.c: Added inheritance check when a method is overloaded (from a
22984         virtual method or when implementing an interface) and when a class is
22985         inherited. Added functions to set a failure for a class and to 
22986         retreive the exception from a failure.
22987         * class-internals.h: Added fields to MonoClass to keep the exception
22988         information status for inheritance (or other exceptions) to be thrown
22989         later (i.e. not at load time).
22990         * object.c: Throw the inheritance SecurityException when a type is to 
22991         be created with either class or method inheritance violations.
22992         * reflection.c|h: Fix when getting declsec from a class. Removed 
22993         unrequired code for class. Improved sanity in parameter naming.
22994         * security-manager.c|h: Added functions to check for class and method
22995         inheritance.
22996
22997 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22998
22999         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
23000         and has_finalize in dynamic types as well.
23001
23002 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
23003
23004         * culture-info-table.h : fixed currency format for en-GB (and so on).
23005
23006 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
23007
23008         * gc.c: ensure the GC handles never have 0 as a value.
23009
23010 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23011
23012         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
23013         a pointer to a struct to unmanaged code. Fixes #72625.
23014
23015 2005-02-16  Martin Baulig  <martin@ximian.com>
23016
23017         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
23018
23019 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23020
23021         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
23022
23023 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23024
23025         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
23026
23027         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
23028         UnmanagedFunctionPointerAttribute, use it for determining calling convention
23029         etc. Fixes #71471.
23030
23031         * reflection.c (mono_custom_attrs_get_attr): New helper function.
23032
23033         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
23034
23035 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
23036
23037         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
23038         changes to make the current context a field in MonoThread.
23039
23040 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23041
23042         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
23043         the last change.
23044         
23045         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
23046         extracted from mono_marshal_get_native_wrapper.
23047
23048         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
23049         to create wrappers around native functions.
23050
23051         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
23052         delegates for arbitrary function pointers. Fixes #71472.
23053
23054 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23055
23056         * threads.c: cleaned up the code a little.
23057
23058 2005-02-15  Martin Baulig  <martin@ximian.com>
23059
23060         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
23061         the data table.
23062
23063         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
23064         allocate larger chunks if needed.
23065
23066 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23067
23068         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
23069         in by mistake.
23070
23071 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
23072
23073         * domain.c: keep the domains in an array and ensure the domain ids
23074         are kept small, so they can be used as indexes to domain-specific data
23075         with a small memory overhead.
23076
23077 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23078
23079         * icall.c: Handle byref types in Type icalls. Fixes #72544.
23080
23081 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23082
23083         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23084
23085 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
23086
23087         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23088
23089         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23090         values.
23091
23092         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23093         
23094 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
23095
23096         * domain-internals.h: add the hashtable here.
23097
23098         * class-internals.h: Remove `info' from MonoMethod
23099
23100         * domain.c: Add a new hashtable, jit_trampoline_hash
23101
23102 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23103
23104         * object.c: don't set the value of static fields
23105         (fixes bug#72494).
23106
23107 2005-02-11  Martin Baulig  <martin@ximian.com>
23108
23109         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23110         (mono_debug_add_method): Silently ignore the method if it's too big.
23111         (mono_debug_add_type): Likewise.
23112
23113 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23114
23115         * threads.c, appdomain.c: remove #ifdefs from the code.
23116
23117 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
23118
23119         * metadata-internals.h: Added flags to MonoAssembly to cache the most
23120         common security informations. This allows us to stay in unmanaged code
23121         when doing LinkDemand and it's special cases (except for the first 
23122         time for initialization). The flags a very much used with --security.
23123         * reflection.c|h: Added code to get declarative security attributes 
23124         for LinkDemand and InheritanceDemand. This required to refactor the
23125         existing code for Demand.
23126         * security-manager.c|h: Added new method fields for the special cases
23127         of LinkDemand.
23128
23129 2005-02-10  Martin Baulig  <martin@ximian.com>
23130
23131         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23132         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23133
23134 2005-02-10  Martin Baulig  <martin@ximian.com>
23135
23136         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23137         debugging code; this is almost a complete rewrite.
23138
23139         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23140
23141 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23142
23143         * domain.c, object.h: expose mono_string_equal () and 
23144         mono_string_hash ().
23145         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23146         it's implemented in managed code.
23147
23148 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23149
23150         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23151         lo leak objects between appdomains.
23152
23153 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23154
23155         * assembly.c: old compilers compilation fix from 
23156         robertj@gmx.net (Robert Jordan).
23157
23158 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23159
23160         * class-internals.h: Little reminder for the future.
23161
23162         * debug-helpers.c: Fix up wrapper_type_names
23163
23164 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23165
23166         * image.c, metadata-internals.h: when loading an image from a file,
23167         mmap all of it and use the same codepaths as when using a
23168         in-memory image: the code is simpler and we use less memory
23169         (both writable and readonly).
23170
23171 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23172
23173         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23174         API to alloc runtime data structures that need to be tracked by the
23175         GC and contain pointers.
23176         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23177         make the code more readable and eventually use a different GC.
23178
23179 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23180
23181         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23182         for out arguments.
23183         
23184 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23185
23186         * object.c: In release_type_locks(), don't release the cctor lock
23187         if it has already been released. This fixes a crash in the
23188         thread5 test.
23189
23190 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23191
23192         * gc.c, marshal.c, icall.c: register a delegate for finalization
23193         only when the native function pointer has been allocated for it.
23194
23195 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23196
23197         * object.c: cleaned up some code, allocate objects that are
23198         pointer free with the atomic malloc variant. Allocate memory
23199         for static data from the mempool if it's pointer-free.
23200         Allocate the bounds array at the end of the array data, when needed.
23201         * object-internals.h, object.h: move a private function in a private
23202         header.
23203         * class.c: handle missing case in tracking references in fields.
23204
23205 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23206
23207         * class.c, class-internals.h: keep track if a type has
23208         reference fields in either the instance or static fields.
23209
23210 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23211
23212         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23213         and renamed to MonoRuntimeInfo. Added fields to store the expected
23214         framework assembly version. Changed mono_get_framework_version and
23215         mono_get_runtime_version for a single mono_get_runtime_info method.
23216         
23217         * assembly.c: Added method to remap system assembly versions to the
23218         current executing runtime version. Removed old mapping code.
23219         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23220         
23221         * icall.c, reflection.c: Track api changes.
23222
23223 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23224
23225         * loader.c (method_from_memberref): Improve error reporting,
23226         produce the class name instead of the typeref/typedef index. 
23227
23228 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23229
23230         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23231
23232 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23233
23234         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23235         stdcall and charset name mangling.  Reorganize the code and add
23236         some tracing stuff.
23237
23238 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23239
23240         * monodiet.c: More iters!
23241
23242         * marshal.c: Iter usage.
23243
23244         * icall.c: Iter usage.
23245
23246         * object.c: Use iters.
23247
23248         * debug-helpers.c: More iters
23249
23250 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23251
23252         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23253         under win32.
23254
23255 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23256
23257         * mono-debug-debugger.c: use iters
23258
23259         * class.c, class-internals.h: mono_class_setup_events is static
23260         now
23261
23262         * All callers: use iters
23263
23264 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23265
23266         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23267         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23268
23269 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23270
23271         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23272
23273         * marshal.h: Add prototypes for ldfld/stfld_remote.
23274
23275         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23276         this is called during startup.
23277         
23278 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23279
23280         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23281         MonoThreadsSync struct private in monitor.c. Changed the way
23282         MonoThreadsSync is allocated so it's faster and there is no
23283         need to keep track of it with a finalizer and it uses less memory.
23284         This also finally allows us to allocate mono objects as ptrfree when
23285         there are no reference fields.
23286
23287 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23288
23289         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23290         disappearing link to the GC interface and use them to simplify
23291         the gchandles code.
23292
23293 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23294
23295         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23296         stfld_remote which call mono_load/store_field_new. This allows methods
23297         calling ldfld/stfld wrappers to be AOTed.
23298
23299         * console-io.c: Include sys/filio.h under solaris.
23300         
23301         * console-io.c: Include curses.h if needed correctly.
23302
23303 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23304         
23305         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23306         method->klass as well.
23307
23308         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23309
23310         * class.c (mono_class_init): Switch on lazy initialization of 
23311         methods.
23312
23313         * class.c (mono_class_get_finalizer): Handle the case when the 
23314         finalizer is inherited.
23315
23316 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23317
23318         * console-io.c: <curses.h> is needed by term.h on solaris.
23319
23320 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23321
23322         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23323         mono_class_setup_properties where possible. Remove this ftn from
23324         the header file, and make it static.
23325
23326 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23327
23328         * loader.c: Add missing setup_... call.
23329
23330         * class.c: Add missing setup_... calls.
23331
23332         * class.c (mono_class_init): Switch on lazy initialization of 
23333         the generic vtable.
23334         
23335         * class.c (mono_class_init): Fix generics broken by the recent changes.
23336
23337         * monodiet.c (handle_type): Add missing setup_... calls.
23338
23339         * class.c: Back out garbage in previous patch.
23340         
23341         * class.c: Add missing setup_... calls.
23342
23343         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23344         mono_class_setup_methods () if possible.
23345
23346         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23347
23348         * class-internals.h (MonoCachedClassInfo): New structure.
23349
23350         * class.c: Initialize properties and events fields of MonoClass lazily.
23351
23352         * class.c: Add infrastructure for lazily initializing the methods and
23353         vtable fields of MonoClass. Not yet used.
23354
23355         * class.c (mono_class_get_finalizer): New helper function.
23356
23357         * class.c: Add infrastructure for loading some class related data from
23358         an AOT file.
23359
23360         * object.c: Add infrastructure for initializing the vtable from data
23361         in the AOT file.
23362
23363         * gc.c (run_finalize): Use mono_class_get_finalizer ().
23364
23365         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
23366         appropriate initialization function before accessing parts of the
23367         MonoClass structure.
23368
23369         * marshal.c: Fix warnings.
23370         
23371         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
23372
23373         * mono-debug-debugger.c (get_exception_message): Use 
23374         mono_class_get_method_from_name_flags ().
23375
23376 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
23377
23378         * reflection.c, appdomain.c: Replace a few manual searches that
23379         Zoltan missed. (Paolo approved this part of my initial patch).
23380
23381 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
23382
23383         * profiler.c: disable recording statistical events at report time.
23384
23385 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23386
23387         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
23388         to byteswap arrays of enum values, too (bug #72080).
23389
23390 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
23391
23392         * appdomain.c (set_domain_search_path): Allow this to be called if
23393         domain->setup is not yet set.
23394
23395         * loader.c (mono_method_get_index): New helper function.
23396
23397         * loader.c reflection.c: Use mono_method_get_index ().
23398
23399         * class.c (mono_class_get_method_from_name_flags): New helper method.
23400
23401         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
23402         this.
23403
23404         * class.c (mono_class_get_cctor): New helper method.
23405
23406         * string-icalls.c object.c class.c marshal.c reflection.c: Use
23407         mono_class_get_method () to look up methods.
23408
23409 2005-02-01  Miguel de Icaza  <miguel@novell.com>
23410
23411         * console-io.c: Fix the build, this should work on Windows.
23412
23413 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
23414
23415         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
23416         be set to null to keep things valid
23417
23418 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23419
23420         * icall.c: added Console 2.0 icalls.
23421         * Makefile.am: added console-io.[ch]
23422         * console-io.[ch]: internal calls for Console 2.0 API.
23423
23424 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23425
23426         * class.c: make sure we consider all the interfaces
23427         when calculating max_interface_id (bug found by
23428         Jeroen Frijters running ikvm).
23429
23430 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
23431
23432         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
23433         valuetype fields to null.
23434
23435         * object.c (set_value): Ditto. Fixes #71669.    
23436
23437 2005-01-31  Martin Baulig  <martin@ximian.com>
23438
23439         * metadata.c (mono_metadata_has_generic_params): New public
23440         function; checks whether something is a generic method.
23441
23442 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
23443
23444         * appdomain.c: fix infinite recursion when adding assemblies.
23445
23446 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
23447
23448         * object.c: Fix small typo to return all items for Environment.
23449         GetCommandLineArgs.
23450
23451 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23452
23453         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
23454         reflection.c: more domain and assembly-unload related fixes
23455         and memory leaks plugs.
23456
23457 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
23458
23459         * 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.
23460
23461 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
23462
23463         * loader.c (mono_method_signature): Make this method lazy
23464         (mono_get_method_from_token): Don't computate the signature here.
23465
23466         Doing this saves quite a bit of memory. I got 90 kb on starting up
23467         monodoc. It should also save some disk reads on startup.
23468
23469         * *: MonoMethod->signature might be NULL now. You *MUST* use
23470         mono_method_signature.
23471
23472 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
23473
23474         * object.c (mono_runtime_get_main_args): Return an array from the
23475         current domain here. Fixes #71938.
23476
23477 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
23478
23479         * monitor.c: formatting changes to comply with the
23480         mono coding style and remove #ifdefs from the code.
23481
23482 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23483
23484         * metadata.c, private.h: remove some unneeded data
23485         and use a more compact representation for table schemas.
23486
23487 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
23488
23489         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
23490         to get a better distribution in hash tables.
23491         * *.c: use mono_aligned_addr_hash() where appropriate.
23492         * assembly.c: make var static.
23493
23494 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
23495
23496         * domain-internals.h: Put MonoJitInfo on a diet.
23497
23498         * domain.c: Fix a warning.
23499
23500 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23501
23502         * gc.c: rework the gc handles code to reuse handles
23503         when freed.
23504
23505 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23506
23507         * domain.c: fixed long standing bug in mono_string_equal() which
23508         was brought to light with the ldstr changes.
23509
23510 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
23511
23512         * reflection.c: Remove warning by adding missing include for marshal.h
23513
23514 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23515
23516         * domain.c, object.c: change the ldstr_table to hold
23517         MonoString* as keys: makes the runtime isinterned lookup
23518         faster and simplifies memory management.
23519
23520 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
23521  
23522         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
23523         possible to add imperative security checks before calling the icall.
23524         * reflection.c: Return security attributes on the original MonoMethod
23525         (and not the wrapped one). This fix permissions on icalls.
23526
23527 2005-01-25  Dick Porter  <dick@ximian.com>
23528
23529         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
23530         the check for mktime() support actually test the mktime() return
23531         value.  "Fixes" bug 71682, though the output is still different to
23532         MS.
23533
23534 2005-01-25  Martin Baulig  <martin@ximian.com>
23535
23536         * class.c (mono_class_is_assignable_from): Make this work for
23537         generic instances.
23538
23539 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
23540
23541         * marshal.c (mono_string_utf8_to_builder)
23542         (mono_string_builder_to_utf16): We might not have ownership of the
23543         string. In thise case, we need to create a new buffer.
23544
23545         * object-internals.h (mono_stringbuilder_capacity): sb->str might
23546         be null, in which case, use the default capacity.
23547
23548 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23549
23550         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
23551         GC events to the profiler.
23552
23553 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23554
23555         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
23556         if you don't want the GC to run.
23557
23558 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
23559
23560         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
23561         start providing a GC API and keeping different implementations in
23562         their own file.
23563         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
23564
23565 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
23566
23567         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
23568         mmap rather than allocating a huge buffer.
23569         (mono_debug_close_mono_symbol_file): Free the buffer allocated
23570         above.
23571
23572 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
23573
23574         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
23575         and CheckExecutionRights.
23576         * reflection.c|h: Keep the index of the declarative security to be 
23577         used, instead of the pointer, when AOT compiler is used. Also add 
23578         class initialization when requesting demands.
23579         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
23580         CheckExecutionRights. Both properties are now FALSE by default, and
23581         unmodifiable, unless the --security option is used.
23582
23583 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23584
23585         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
23586         reflection.c: properly refcount images and assemblies, many leaks fixed.
23587
23588 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23589
23590         * threadpool.c: increase the timeout for threads in the thread pool to
23591         10s.  Fixes bug #67159.
23592
23593 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
23594
23595         * class-internals.h: Sun's compiler insists on explicit
23596         signed on bit fields to handle then correctly.
23597
23598 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
23599
23600         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
23601         Make the size of the array fit only the number of invalid path
23602         chars that we have.
23603
23604         * class.c (_mono_class_get): Improve the error reporting when a
23605         class referenced is not found, to assist debugging. 
23606
23607 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
23608
23609         * threads.c: fix off-by-one error.
23610         * domain.c: free data allocated in the domain.
23611
23612 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23613
23614         * reflection.c (mono_method_body_get_object): Fill out exception info
23615         as well.
23616
23617         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
23618         structure.
23619         
23620 2005-01-19  Martin Baulig  <martin@ximian.com>
23621
23622         * loader.c (mono_get_method_constrained): Make this work again.
23623
23624 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
23625
23626         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
23627         guint16 to match the managed side.
23628
23629         * reflection.c (mono_reflection_body_get_object): Fill out local
23630         variables array.
23631
23632         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
23633         as well.
23634
23635         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
23636         'local_var_sig_token'.
23637
23638 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
23639
23640         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
23641         System.Drawing.
23642
23643         * reflection.c (mono_method_body_get_object): Handle abstract and
23644         runtime methods.
23645
23646 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
23647
23648         * marshal.c, loader.c, class-internals.h, reflection.c:
23649         store the emthod data for a wrapper in an array instead of a list.
23650
23651 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
23652
23653         * marshal.c: change the code to allocate memory more
23654         conservatively for method wrappers.
23655
23656 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
23657
23658         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
23659         fields from MonoClass to the marshal info structure where they belong.
23660
23661 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23662
23663         * class.c, object.c, class-internals.h, marshal.c: rearrange
23664         some fields and tweak some types to lower memory usage.
23665
23666 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
23667
23668         * threads.c (signal_thread_state_change): Handle the case when the
23669         target thread is the current thread.
23670
23671         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
23672
23673         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
23674         emit_ptr_to_object_conv. 
23675
23676         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
23677         marshalling. Fixes #71352.
23678
23679 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23680
23681         * metadata.h, blob.h: move table enum to blob.h so it can be included
23682         in any header.
23683         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
23684         cut the size of MonoImage/MonoDynamicImage.
23685
23686 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
23687
23688         * profiler.c (mono_profiler_install_simple): Fix default arguments.
23689
23690 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
23691
23692         * reflection.c, reflection.h, icall.c: add a function to check
23693         if an attribute type is defined for a metadata object.
23694
23695 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
23696
23697         * object-internals.h: Added some needed fields from StringBuilder class.
23698         * marshal.c: Set the maxCapacity when creating a StringBuilder.
23699
23700 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
23701
23702         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
23703         threads before shutting down the runtime.
23704
23705         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
23706
23707 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23708
23709         * object-internal.h, threads.c: implement stacksize and 
23710         parameterized thread start functionality (requires
23711         matching corlib). Marked broken code for later removal.
23712
23713 2005-01-12  Martin Baulig  <martin@ximian.com>
23714
23715         * class-internals.h (MonoGenericClass): Moved the `initialized'
23716         flag to MonoDynamicGenericClass, removed `init_pending'.
23717         (MonoGenericInst): Added `is_reference' flag.
23718
23719 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
23720
23721         * reflection.c (mono_image_create_pefile): Only set the pe_offset
23722         inside the MSDOS header. Fixes #71201.
23723
23724         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
23725         gc thread.
23726         (mono_domain_finalize): Ditto.
23727
23728 2005-01-12  Martin Baulig  <martin@ximian.com>
23729
23730         * class.c (mono_get_shared_generic_class): Use the cache for
23731         non-dynamic generic classes.
23732
23733         * class-internals.h (mono_class_create_generic_2): Removed
23734         function prototype, this function is now static inside class.c.
23735
23736         * class.c (mono_class_create_generic_2): Made this static, only
23737         call it from mono_class_init() and mono_class_setup_parent().
23738         (collect_implemented_interfaces_aux): Call mono_class_init() on
23739         the interfaces we collect.
23740         (mono_class_setup_vtable): Call mono_class_init (class->parent).
23741
23742 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23743
23744         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
23745         it a real thread handle.
23746
23747         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
23748         MonoJitExceptionInfo, since each catch clause needs its own variable.
23749         
23750 2005-01-11  Dick Porter  <dick@ximian.com>
23751
23752         * image.c (mono_pe_file_open): New variant on mono_image_open()
23753         that does not set up the CLI metadata; used for FileVersionInfo so
23754         it can get the data for windows binaries too.
23755         
23756         * process.c (process_read_string_block): Don't read off the end of
23757         the StringTable block.
23758
23759         These both fix bug 70766.
23760
23761 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
23762
23763         * gc.c: set some fields to NULL at GC cleanup time.
23764         * threads.c: if we quit the main thread, call exit ().
23765
23766 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23767
23768         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
23769
23770 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
23771
23772         * threads.h, threads.c, object.c: added accessor and settor for
23773         main_thread. Handle it specially when exiting from it: wait
23774         for other foreground threads to exit.
23775
23776 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
23777
23778         * process.c, verify.c: remove some bloat.
23779
23780 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
23781
23782         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
23783         the calling convention to cdecl under win32.
23784
23785 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
23786
23787         * object.c (mono_object_get_size): New function to get the size of
23788         an object instance.
23789
23790         * profiler.c (simple_allocation): Use above.
23791
23792 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
23793
23794         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
23795         ves_icall_System_AppDomain_getRootDomain (as it's not required to
23796         get an appdomain by it's id and we can't assume the root's id is 0).
23797         * domain-internals.h: Change the function prototype to match.
23798         * icall.c: Change the icall table for AppDomain.
23799
23800 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
23801
23802         * locales.c (string_invariant_compare_char): Only compute
23803         GUnicodeTypes in the case where we need them.  Test for ordinality
23804         first and return if so.
23805
23806         From the commit:
23807
23808                 /*
23809                  * FIXME: here we must use the information from c1type and c2type
23810                  * to find out the proper collation, even on the InvariantCulture, the
23811                  * sorting is not done by computing the unicode values, but their
23812                  * actual sort order.
23813                  */
23814
23815 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23816
23817         * loader.c: for P/Invoke methods, allow the "Internal" shared
23818         library name to refer to the calling process symbol namespace.
23819
23820 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
23821
23822         * Makefile.am: Add the security manager to the build.
23823         * security-manager.c|h: New. Initialization of the security manager.
23824
23825 2005-01-07  Dick Porter  <dick@ximian.com>
23826
23827         * threads.c: 
23828         * monitor.c: Update thread state during Monitor and WaitHandle
23829         waits.  Fixes bug 71031.
23830
23831 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
23832
23833         * reflection.c (property_encode_signature): Correctly handle when the
23834         property has no methods.
23835
23836 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
23837
23838         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
23839         
23840         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
23841         fields from mb, not rmb. Fixes #71017.
23842
23843         * marshal.c (emit_ptr_to_str_conv): Add support for 
23844         ByValTStr -> string conversion. Fixes #71015.
23845
23846         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
23847
23848         * mempool.c (mono_mempool_contains_addr): New helper function.
23849
23850 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
23851
23852         * metadata.c (mono_metadata_compute_size): Fix size calculation of
23853         HasSematics encoded fields.
23854         
23855         * metadata.c (mono_type_to_unmanaged): Improve error message for 
23856         invalid string marshalling.
23857
23858         * metadata.c: Fix warnings.
23859         
23860 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23861
23862         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
23863         profiler support.
23864
23865 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
23866
23867         * domain.c object.c domain-internals.h: Revert part of r38077 since the
23868         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
23869         tests.
23870
23871 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
23872
23873         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
23874         so methods containing these can be AOTed.
23875
23876 2005-01-03  Martin Baulig  <martin@ximian.com>
23877
23878         * loader.c (find_method): Removed the hack for generic instances.
23879         (method_from_memberref): If our parent is a generic instance, pass
23880         its generic type definition to find_method() and then inflate the
23881         method.
23882         (mono_get_method_constrained): Pass the generic type definition to
23883         find_method() and inflate the method later.
23884
23885         * class-internals.h (MonoStats): Added `generic_class_count'.
23886
23887         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
23888         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
23889
23890         * reflection.c (mono_custom_attrs_from_params): Don't ignore
23891         generic type definitions.
23892
23893 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
23894
23895         * loader.c icall.c: Fix warnings.
23896
23897 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
23898
23899         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
23900         blittable types. Fixes #70864.
23901
23902 2004-12-29  Martin Baulig  <martin@ximian.com>
23903
23904         * icall.c
23905         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
23906
23907         * reflection.c (mono_method_get_object): Create a
23908         "System.Reflection.MonoGenericMethod" for inflated methods; don't
23909         call mono_get_inflated_method().
23910
23911         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
23912
23913 2004-12-27  Martin Baulig  <martin@ximian.com>
23914
23915         * class-internals.h (MonoMethod): Added `is_inflated' flag.
23916         (MonoMethodInflated): Added `inflated' field.
23917
23918         * class.c (mono_class_inflate_generic_method): Don't really
23919         inflate the method here; just set the `is_inflated' flag in the
23920         MonoMethod.
23921         (mono_class_get_inflated_method): Actually inflate the method here
23922         if it's not already inflated; we use the MonoMethodInflated's new
23923         `inflated' field as a cache.
23924
23925 2004-12-26  Martin Baulig  <martin@ximian.com>
23926
23927         * class.c
23928         (inflate_generic_class): Moved some code out of inflate_generic_type().
23929         (mono_class_inflate_generic_method): If we're already inflated,
23930         inflate the context and use the declaring method; ie. make sure
23931         the declaring method of an inflated method is always the generic
23932         method definition.
23933         (mono_class_create_from_typedef): Create
23934         `class->generic_container->context->gclass'.
23935
23936 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
23937
23938         * metadata-internals.h, marshal.c, reflection.c: More
23939         MonoGHashTable->GHashTable.
23940
23941         * domain-internals.h, class.c: Change MonoGHashTable's into
23942         GHashTables for some cases where no gc stuff is used
23943
23944         All users: update apis
23945
23946 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
23947
23948         * metadata.c (builtin_types): Make this `const'. Makes this get
23949         put into the shareable section.
23950         (mono_metadata_init): Casts to make gcc happy.
23951
23952 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
23953
23954         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
23955
23956 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
23957
23958         * icall.c: Added an internal call to retrieve the position and length
23959         of assembly-level declarative security attributes (RequestMinimum, 
23960         RequestOptional and RequestRefuse). This is used by the Assembly class
23961         to re-create the corresponding permission sets.
23962
23963 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
23964
23965         * marshal.c: fix the stelemref wrapper to be type correct
23966         (and faster).
23967
23968 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
23969
23970         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
23971         to do key & 0x7fffffff. Hashtable already does this. It just
23972         results in longer code.
23973
23974 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
23975
23976         * appdomain.c: Bump corlib version.
23977         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
23978         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
23979         * reflection.c|h: Add functions to get declarative security infos
23980         (blob position and length) for assemblies, classes and methods.
23981
23982 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
23983
23984         * reflection.c: sort the constant table (bug #70693).
23985
23986 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
23987
23988         * object-internals.h, threads.c, domain.c: add accessors for
23989         the MonoThread and MonoDomain tls keys.
23990
23991 2004-12-18  Martin Baulig  <martin@ximian.com>
23992
23993         * class.c (inflate_generic_type): If we're inflating a generic
23994         instance, set `ngclass->context->container = context->container';
23995         ie. the container we inflated into.
23996
23997         * metadata.c (mono_metadata_parse_generic_param): Reflect above
23998         inflate_generic_type() changes.
23999
24000 2004-12-17  Martin Baulig  <martin@ximian.com>
24001
24002         * class-internals.h
24003         (MonoGenericClass): Replaced `MonoType *generic_type' with
24004         `MonoClass *generic_class'.  Removed `dynamic_info'; if
24005         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
24006         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
24007
24008 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
24009
24010         * exception.c (mono_exception_from_token): New helper function.
24011
24012 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
24013
24014         * assembly.c (mono_assembly_load_with_partial_name): Call 
24015         mono_assembly_loaded before invoking the preload hooks. Fixes
24016         #70564.
24017
24018         * object-internals.h (MonoThread): Change culture_info and 
24019         ui_culture_info into an array.
24020
24021         * threads.c: Cache culture info objects from more than one appdomain.
24022
24023         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
24024         current UI culture.
24025
24026 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
24027
24028         * threads.h threads.c appdomain.c: Clear the culture_info field of
24029         all threads during unloading if they point to an object in the dying
24030         appdomain.
24031
24032 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
24033
24034         * culture-info.h (TextInfoEntry): New struct
24035         * object-internals.h: sync with managed
24036         * locales.c: fill the `text_info_data' field
24037         * culture-info-tables.h: update
24038
24039 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24040
24041         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
24042         collector.
24043
24044 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
24045
24046         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
24047         (ves_icall_ModuleBuilder_getMethodToken): Ditto
24048
24049 2004-12-12  Martin Baulig  <martin@ximian.com>
24050
24051         * mono-debug-debugger.c (write_type): If we're an enum and the
24052         builtin types have already been initialized, call mono_class_init().
24053
24054 2004-12-11  Martin Baulig  <martin@ximian.com>
24055
24056         * metadata.c (mono_metadata_load_generic_params): Added
24057         `MonoGenericContainer *parent_container' argument; automatically
24058         compute `container->is_method'; pass the correct owner to
24059         get_constraints().      
24060
24061         * reflection.c (compare_genericparam): Sort the GenericParam table
24062         according to increasing owners. 
24063
24064 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
24065
24066         * profiler.c: allow disabling the default profiler.
24067
24068 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
24069
24070         * decimal.c, icall.c: allow disabling System.Decimal support.
24071
24072 2004-12-09  Marek Safar <marek.safar@seznam.cz>
24073
24074         * reflection.c: Add support for null attribute arguments.
24075
24076 2004-12-09  Martin Baulig  <martin@ximian.com>
24077
24078         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
24079         names to get rid of compiler warnings.
24080
24081 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24082
24083         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
24084         mono_marshal_load_type_info (). Fixes #69625.
24085         (mono_marshal_get_ptr_to_struct): Likewise.
24086
24087 2004-12-08  Martin Baulig  <martin@ximian.com>
24088
24089         * mono-debug.h: Bumped version number to 47.
24090
24091         * mono-debug-debugger.c
24092         (mono_debugger_event_handler, mono_debugger_event): Take two
24093         guint64 arguments insteed of a gpointer and a guint32.  
24094
24095 2004-12-08  Martin Baulig  <martin@ximian.com>
24096
24097         * debug-mono-symfile.h
24098         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24099         `address' to `native_offset'.
24100
24101 2004-12-08  Martin Baulig  <martin@ximian.com>
24102
24103         * class.c (mono_class_create_from_typespec): Only inflate if we
24104         either have `context->gclass' or `context->gmethod'.
24105
24106 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24107
24108         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24109
24110         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24111
24112         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24113
24114         * reflection.c (mono_assembly_get_object): Remove the workaround put
24115         in for the release.
24116         
24117         * appdomain.c: Use the corlib_internal field from MonoAssembly.
24118
24119         * appdomain.c: Bump corlib version.
24120
24121         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24122         be visible in other appdomains.
24123
24124 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24125
24126         * threads.c: Interlocked inc and dec for longs were messed up,
24127         use a KISS based impl for this. Fixes 70234
24128
24129 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24130
24131         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24132
24133 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24134
24135         * icall.c: fix to follow policy not to allow struct
24136         arguments in icalls.
24137
24138 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24139
24140         * process.c: make the patch that handles spaces in file paths work
24141         on mono/windows too.
24142
24143 2004-12-06  Martin Baulig  <martin@ximian.com>
24144
24145         * class.c (mono_class_create_generic): Call
24146         mono_class_setup_supertypes() if we're dynamic.
24147         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24148
24149 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24150
24151         * object-internals.h: Add new fields to MonoThread.
24152
24153         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24154
24155         * icall.c threads-types.h threads.c: Add new icalls.
24156
24157         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24158
24159         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24160         managed side.
24161
24162         * appdomain.c: Bump corlib version.
24163
24164         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24165         internal assemblies. Fixes #69181.
24166
24167 2004-12-05  Martin Baulig  <martin@ximian.com>
24168
24169         * class.c (mono_class_inflate_generic_signature): Make this a
24170         no-op if `context' is NULL or we don't have any type parameters;
24171         also copy `sentinelpos'.        
24172
24173 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24174
24175         * image.c: Add unbox_wrapper_cache.
24176
24177         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24178
24179         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24180         function generator.
24181         
24182         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24183         Fixes #70173.
24184
24185         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24186         
24187 2004-12-04  Martin Baulig  <martin@ximian.com>
24188
24189         * loader.c (mono_method_get_signature_full): New public function;
24190         like mono_method_get_signature(), but with an additional
24191         `MonoGenericContext *' argument.
24192
24193         * class.c (mono_class_inflate_generic_signature): Formerly known
24194         as inflate_generic_signature(); make this public.
24195
24196 2004-12-04  Martin Baulig  <martin@ximian.com>
24197
24198         * metadata.c
24199         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24200         instead of a `MonoGenericContainer *'.  
24201         (mono_metadata_parse_array_full): Likewise.
24202         (mono_metadata_parse_signature_full): Likewise.
24203         (mono_metadata_parse_method_signature_full): Likewise.
24204         (mono_metadata_parse_generic_inst): Likewise.
24205         (mono_metadata_parse_generic_param): Likewise.
24206         (mono_metadata_parse_mh_full): Likewise.
24207         (mono_type_create_from_typespec_full): Likewise.
24208
24209 2004-12-03  Martin Baulig  <martin@ximian.com>
24210
24211         * class-internals.h (MonoGenericContainer): Replaced the
24212         `MonoGenericContext * pointer with a `MonoGenericContext'
24213         structure and made it the first element.
24214
24215 2004-12-03  Martin Baulig  <martin@ximian.com>
24216
24217         * class.c
24218         (inflate_generic_type): Set the `context->container' when creating
24219         a new MonoGenericContext.
24220         (mono_class_inflate_generic_method): Likewise.
24221         (mono_class_create_from_typespec): Just use `context->container'
24222         to get the container.
24223
24224         * loader.c (method_from_methodspec): Set `context->parent' from
24225         `context->container' - and if that's a method container, use its
24226         parent.  Also set the `context->container' when creating a new
24227         MonoGenericContext.
24228         (mono_get_method_from_token): Use just `context->container' to get
24229         the container.
24230
24231         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24232         `gclass->context->container'.
24233
24234         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24235         the `context->container' when creating a new MonoGenericContext.
24236
24237 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24238
24239         * reflection.c (compare_genericparam): Sort params with identical
24240         owner by their number. Fixes gen-111 on sparc.
24241
24242 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24243
24244         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24245         around the domain changes.
24246
24247         * appdomain.c (mono_domain_unload): Handle the case when the thread
24248         calling Unload is itself being aborted during unloading. Fixes #70022.
24249
24250         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24251
24252         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24253         checkpoint_func as an icall so it gets a wrapper.
24254         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24255         in the cross-appdomain wrappers too.
24256
24257         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24258
24259         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24260
24261         * reflection.c: Fix some memory leaks.
24262         
24263 2004-12-02  Martin Baulig  <martin@ximian.com>
24264
24265         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24266
24267         * metadata.c (generic_class_cache): New static hashtable.
24268         (mono_metadata_lookup_generic_class): New public method.
24269
24270 2004-12-02  Martin Baulig  <martin@ximian.com>
24271
24272         * class.c (mono_class_create_from_typedef): Call
24273         mono_class_setup_parent() and mono_class_create_mono_type() before
24274         parsing the interfaces.
24275
24276 2004-12-02  Martin Baulig  <martin@ximian.com>
24277
24278         * metadata.c (generic_inst_cache): New static hashtable.
24279         (mono_metadata_lookup_generic_inst): New public function.
24280         (mono_metadata_inflate_generic_inst): New public function.
24281         (mono_metadata_parse_generic_inst): New public function.
24282         (do_mono_metadata_parse_generic_class): Use the new
24283         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24284         since this'll also use the cache.
24285
24286         * reflection.c (mono_reflection_bind_generic_method_parameters):
24287         Use mono_metadata_lookup_generic_inst() to use the new cache.
24288
24289         * class.c (inflate_mono_type): Use
24290         mono_metadata_inflate_generic_inst() to inflate a generic
24291         instance; this'll also use the new cache.
24292
24293         * loader.c (method_from_methodspec): Use
24294         mono_metadata_parse_generic_inst() and
24295         mono_metadata_inflate_generic_inst() rather than parsing it
24296         manually, so we can use the new cache.
24297
24298 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24299
24300         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24301         the wait times out.
24302
24303 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24304
24305         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24306         iter->args based on whether parameters are passed in registers (i.e.
24307         MONO_ARCH_REGPARMS is defined)
24308
24309 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24310
24311         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24312         the exception message. Fixes #70070.
24313         (method_from_methodspec): Fix warnings.
24314
24315 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24316
24317         * process.c: (complete_path) return the path quoted
24318
24319 2004-12-01  Martin Baulig  <martin@ximian.com>
24320
24321         * class-internals.h (MonoGenericInst): New structure.
24322         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24323         `is_open' with `MonoGenericInst *inst'.
24324         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24325         `is_open' with `MonoGenericInst *inst'.
24326
24327 2004-11-30  Martin Baulig  <martin@ximian.com>
24328
24329         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24330
24331         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24332         to `generic_class_cache'.
24333
24334         * metadata.c
24335         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24336         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24337         (mono_generic_inst_is_valuetype): Renamed to
24338         mono_generic_class_is_valuetype().
24339
24340         * class-internals.h
24341         (MonoGenericInst): Renamed to MonoGenericClass.
24342         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24343         (MonoClass): Renamed `generic_inst' to `generic_class'.
24344         (MonoGenericContext): Renamed `ginst' to `gclass'.
24345
24346         * object-internals.h
24347         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24348
24349         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24350         mono_reflection_generic_class_initialize().
24351
24352         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24353         now known as "System.Reflection.MonoGenericClass".
24354         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24355
24356 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
24357
24358         * class-internals.h: Added a flag field to MonoClass to cache the
24359         declarative security attributes actions associated with the class.
24360         * domain-internals.h: Added booleans to MonoJitInfo to cache the
24361         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
24362         applicable to the JITted method.
24363         * reflection.c|h: Added functions to extract (as flags) which security
24364         actions are available (declaratively) for a method, class or assembly.
24365         * metadata.c|h: Added functions to search the declarative security
24366         table in the metadata.
24367         
24368 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
24369
24370         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
24371         EXPORTEDTYPES are already in the class name cache, so there is no
24372         need to add extra code here to look at them. Just removes a bit of
24373         cruft.
24374
24375         (ves_icall_System_Environment_get_TickCount): No need for #if
24376         WINDOWS. We already have the code in io-layer.
24377
24378 2004-11-28  Martin Baulig  <martin@ximian.com>
24379
24380         * loader.c
24381         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
24382         Fixes gen-112.cs.
24383
24384 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
24385
24386         * assembly.c (do_mono_assembly_open): Instead of having a
24387         conditional WITH_BUNDLE, incorporate support for bundles here, by
24388         having a global `bundles' variable holding a pointer to the actual
24389         bundles. 
24390
24391         (mono_register_bundled_assemblies): New API call used by the
24392         bundle code. 
24393
24394         See mkbundle.1 for details.
24395         
24396 2004-11-27  Martin Baulig  <martin@ximian.com>
24397
24398         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
24399         the vtable for generic methods.
24400
24401 2004-11-26  Martin Baulig  <martin@ximian.com>
24402
24403         * metadata.c
24404         (mono_metadata_generic_method_hash): New public function.
24405         (mono_metadata_generic_method_equal): Likewise.
24406
24407         * class-internals.h
24408         (MonoGenericContainer): Added `GHashTable *method_hash'.
24409
24410         * reflection.c (ReflectionMethodBuilder): Added
24411         `MonoGenericContainer *generic_container'.
24412         (reflection_methodbuilder_to_mono_method): Don't create a new
24413         MonoGenericContainer each time we're called.
24414         (mono_reflection_bind_generic_method_parameters): Use
24415         `container->method_hash' to cache the results so we don't create a
24416         different method if we're called several times with the same
24417         arguments.
24418
24419         * loader.c (method_from_methodspec): Use the new
24420         `container->method_hash' here, too.
24421
24422 2004-11-26  Martin Baulig  <martin@ximian.com>
24423
24424         * class.c (inflate_generic_signature): Correctly compute
24425         `res->has_type_parameters'.
24426         (mono_class_vtable): Use the `has_type_parameters' flag to
24427         determine whether we're a generic method.
24428
24429         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
24430
24431 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
24432
24433         * object.c (mono_runtime_run_main): Fix a small memory leak.
24434
24435 2004-11-25  Martin Baulig  <martin@ximian.com>
24436
24437         * class.c (set_generic_param_owner): Fixed the loop.
24438
24439 2004-11-25  Martin Baulig  <martin@ximian.com>
24440
24441         * object.c (mono_class_vtable): Don't create any JIT wrappers for
24442         generic methods.
24443
24444 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
24445
24446         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
24447         names. Fixes #69787.
24448
24449 2004-11-24  Martin Baulig  <martin@ximian.com>
24450
24451         * class.c (mono_class_create_generic_2): If we don't have a
24452         `ginst->parent', inflate `gklass->parent' to get our parent.
24453
24454 2004-11-24  Martin Baulig  <martin@ximian.com>
24455
24456         * reflection.c (compare_genericparam): Correctly sort the
24457         GenericParam table; fixes #69779.
24458
24459 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
24460
24461         * reflection.c: When writing a PE file, don't create a huge
24462         buffer in memory. Just write the arrays we have to the file.
24463         This reduces memory usage.
24464
24465         * metadata-internals.h: MonoDynamicStream pefile is no longer used
24466         globally.
24467
24468 2004-11-17  Martin Baulig  <martin@ximian.com>
24469
24470         * class.c (mono_class_init): Don't setup `class->parent' for
24471         dynamic instances; moved this to mono_class_generic_2().
24472         (mono_class_create_generic): Also set `klass->inited' for dynamic
24473         generic instances.
24474         (mono_class_create_generic_2): Don't do anything for dynamic
24475         generic instances.  Set `klass->parent' here and also call
24476         mono_class_setup_parent() here. 
24477
24478         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
24479         `MonoType *parent' argument; set `ginst->parent' before calling
24480         mono_class_create_generic_2(), so we set the correct parent.
24481
24482 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
24483
24484         * reflection.c: allow getting attributes from ModuleBuilder
24485         (used by ikvm).
24486
24487 2004-11-17  Martin Baulig  <martin@ximian.com>
24488
24489         * class.c (mono_class_create_from_typedef): If a type parameter is
24490         inherited from an outer class, set its owner to that class.
24491
24492 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
24493
24494         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
24495           for (int*) written size. This fixes bug #69592.
24496
24497 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
24498
24499         * icall.c: Added IsAuthenticodePresnet internal call.
24500         * image.c|h: New function that check a MonoImage for an Authenticode
24501         signature in the certificate PE data directory.
24502         * security.c|h: New internal call to ask the runtime if an 
24503         Authenticode signature seems referenced in the PE header.
24504
24505 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
24506
24507         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
24508
24509         * reflection.c (mono_image_create_pefile): Free the assembly streams
24510         after writing out the assembly file.
24511
24512         * object.c (mono_runtime_run_main): Fix small memory leak.
24513
24514         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
24515         property access modifiers. Fixes #69389.
24516
24517 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
24518
24519         * domain.c, object.c, object-internals.h, domain-internals.h,
24520         object.h, marshal.c: keep dynamic code info per domain.
24521
24522 2004-11-15  Martin Baulig  <martin@ximian.com>
24523
24524         * class.c (mono_type_get_name_recurse): Put type arguments in
24525         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
24526         see bug #68387.
24527
24528 2004-11-15  Martin Baulig  <martin@ximian.com>
24529
24530         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
24531         (mono_class_setup_vtable): When computing `the_cname' for a
24532         generic instance, don't include the namespace since we'd otherwise
24533         add it twice.
24534
24535 2004-11-15  Martin Baulig  <martin@ximian.com>
24536
24537         * class.c (mono_class_create_generic): Changed return type to void.
24538         (mono_class_create_generic_2): New public function; setup
24539         `class->method', `class->field' and `class->interfaces' here
24540         instead of in mono_class_init().
24541
24542         * class.h (mono_class_create_generic): Moved to class-internals.h.
24543
24544 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
24545
24546         * reflection.c (mono_image_create_pefile): take a file HANDLE.
24547         rather than writing to memory, write to this file. Right now,
24548         we are just writting into a buffer, and copying that. However
24549         we can avoid the buffer later.
24550
24551         (mono_dynamic_stream_reset): new function
24552
24553         * icall.c, object-internals.h: update for the above.
24554
24555 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
24556
24557         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
24558         have been using gc'd memory. First it is slower, unlikely
24559         the comment in the source code said, secondly, it increases
24560         our footprint to do it in the gc.
24561
24562         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
24563         the method so that it does not have to copy to managed code.
24564
24565 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
24566
24567         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
24568
24569 2004-11-12  Martin Baulig  <martin@localhost>
24570
24571         * reflection.c (mono_image_create_token): Allow generic method
24572         definitions here, since they may appear in an `.override'; see
24573         gen-98/gen-99 for an example.
24574
24575 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
24576
24577         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
24578         #69365.
24579
24580         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
24581         descriptive.
24582
24583 2004-11-11  Martin Baulig  <martin@ximian.com>
24584
24585         * class.c (mono_class_setup_vtable): In an explicit interface
24586         implementation, the method name now includes the arity.
24587
24588 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
24589
24590         * object.c (mono_array_full_copy): Fix warning.
24591
24592 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
24593
24594         * appdomain.c: Removed look_for_method_by_name(). Use the new method
24595         mono_class_get_method_from_name() instead.
24596         
24597         * class-internals.h: Added two new types of wrappers. 
24598         Added MonoRemotingTarget enum. Added new trampoline function type, which
24599         takes an additional MonoRemotingTarget value as parameter, so it is
24600         possible to request a trampoline for a specific target.
24601         
24602         * class.c: Added new mono_class_get_method_from_name() method.
24603         
24604         * class.h: In MonoRemoteClass, we can have now to vtables, one for
24605         general remoting sinks and one specific for cross domain calls.
24606         
24607         * debug-helpers.c: Added new wrapper names.
24608         
24609         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
24610         of a remote class.
24611         
24612         * image.c: Porperly delete value objects form the remoting invoke hashtable.
24613         
24614         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
24615         with several other methods (mono_marshal_get_xappdomain_dispatch,
24616         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
24617         and others) can generate a fast remoting wrapper for cross domain calls.
24618         More information can be found in docs/remoting.
24619         Other changes: Removed mono_find_method_by_name, and used
24620         mono_class_get_method_from_name instead.
24621         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
24622         is stored in the remoting invoke hashtable.
24623         
24624         * marshal.h: published the new method for getting the xdomain wrapper,
24625         and also added a method for getting the adequate wrapper for a given
24626         method and target.
24627         
24628         * object-internals.h, object.c: Added a couple of methods for capying and
24629         cloning arrays.
24630         Modified mono_install_remoting_trampoline, which takes the new remoting
24631         trampoline that has a remoting target as parameter.
24632         mono_class_proxy_vtable now also takes a remoting target as parameter, and
24633         will return the most suitable vtable for the target.
24634         Added mono_remote_class_vtable, which returns the vtable of a remote class
24635         (which can be the normal remoting vtable or the xdomain vtable).
24636         
24637         * threads.c: the xdomain invoke and dispatch wrappers must also be
24638         protected against interruptions.
24639
24640 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24641
24642         * icall.c: use memmove in BlockCopyInternal when the source and
24643         destination arrays are the same.
24644
24645 2004-11-09  Martin Baulig  <martin@ximian.com>
24646
24647         * class-internals.h (MonoGenericContainer): Removed `method' and
24648         `signature', replaced them with `is_method' and `is_signature'
24649         flags.  Added `context'.
24650
24651         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
24652         instead of a `MonoGenericContainer *'.
24653
24654         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
24655         for dynamic type parameters.
24656         (mono_metadata_load_generic_params): Setup `container->context'.
24657
24658         * reflection.c (mono_reflection_setup_generic_class): Setup
24659         `tb->generic_container->context'.
24660         (do_mono_reflection_bind_generic_parameters): Use
24661         mono_class_inflate_generic_type() to correctly inflate types,
24662         rather than using our own hack just for MONO_TYPE_VAR.
24663
24664 2004-11-09  Martin Baulig  <martin@ximian.com>
24665
24666         * class.c (mono_class_inflate_generic_method): Small fix; don't
24667         crash here.
24668
24669         * icall.c
24670         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
24671         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
24672         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
24673         (ves_icall_Type_BindGenericParameters): Likewise.
24674         (ves_icall_Type_get_IsGenericInstance): Likewise.
24675         (ves_icall_Type_GetGenericParameterPosition): Likewise.
24676         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
24677         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
24678         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
24679
24680 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
24681
24682         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
24683         assembly versions and public key tokens. Fixes #69113.
24684
24685 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
24686
24687         * metadata.c: fix bug introduced with the type cache changes
24688         on 2004-11-06.
24689
24690 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
24691
24692         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
24693         the MonoClass pointer instead of the token in exception clauses.
24694         * reflection.c: updates for the above and make the code not depend
24695         on the structure of MonoExceptionClause.
24696
24697 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
24698
24699         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24700         Add support for dynamic assemblies. Fixes #69114.
24701
24702         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
24703
24704 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
24705
24706         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
24707         since most only those methods use it. the code member of
24708         MonoMethodPInvoke was dead, so that can be removed too. Also,
24709         remove inline_count (again, not used), and move slot so that it
24710         can share bits with some other flags. This saves 8 bytes in the
24711         structure and gives us about 50 kb back for mcs helloworld.cs
24712
24713         * *.[ch]: Do naming changes for the above.
24714
24715         * loader.c (mono_method_get_header): Lazily init the header
24716         on first access.
24717         (mono_get_method_from_token): don't init the header here
24718         (mono_free_method): the header may never be allocated
24719
24720         Overall, this saves 150 kb of unmanaged allocations
24721         for mcs helloworld.cs. That accounts for 10% of the unmanaged
24722         memory at runtime.
24723         
24724         * loader.c, loader.h (mono_method_get_header): new accessor.
24725
24726         * *.[ch]: use the above method. Prepares us to lazily load
24727         the header.
24728
24729         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
24730         three warnings, which are actual bugs (see 69206).
24731
24732         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
24733         unused. Saves a cool 4 bytes / method.
24734
24735 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
24736
24737         * metadata.c (builtin_types): Add types for System.Object here.
24738         (mono_metadata_parse_type_full): Cache MonoType*'s that are
24739         for a class or valuetype from klass->this_arg or klass->byval_arg.
24740
24741         On mcs for a hello world, this gets us down from 21836 MonoType's
24742         to 14560.
24743
24744         (mono_metadata_free_type): Account for the above change.
24745
24746 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
24747
24748         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
24749         exception instead of asserting if name is null.
24750         (ves_icall_System_AppDomain_GetData): Ditto.
24751
24752 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
24753
24754         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
24755         EnumBuilder.
24756
24757         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
24758         Return NULL when the domain does not have entry_assembly set.
24759
24760         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
24761         Add a 'resource_modules' argument.
24762         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
24763
24764         * reflection.c (mono_reflection_create_runtime_class): Move setting
24765         of wastypebuilder here, so mono_get_type_object () returns a MonoType
24766         for enums too.
24767
24768         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
24769         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
24770         Throw an ArgumentNullException if 'ptr' is null.
24771
24772         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
24773         assemblies here. Fixes #69020.
24774
24775 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
24776
24777         * reflection.c (build_compressed_metadata): Fix the previous patch for
24778         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
24779         the stack.
24780
24781 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
24782
24783         * assembly.c (mono_assembly_names_equal): Allow a match if one of
24784         the cultures is false. Fixes #69090.
24785
24786         * reflection.c (build_compressed_metadata): Fix invalid memory read 
24787         detected by valgrind.
24788         
24789         * reflection.c (mono_reflection_get_type): Avoid triggering a 
24790         TypeResolve multiple times for the same type. Fixes #65577.
24791
24792 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
24793
24794         * marshal.c: Avoid using ldftn to call managed functions. It is
24795         much slower than just a call.
24796
24797         * reflection.c (mono_module_get_object): free the basename we
24798         allocate here from glib.
24799         
24800         * reflection.c (ensure_runtime_vtable): make sure to free
24801         overrides.  Also, we were allocating an array of MonoMethod not an
24802         array of MonoMethod*.
24803
24804         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
24805
24806         * image.c (mono_image_close): free image->guid here.
24807
24808 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
24809
24810         * reflection.c: Fix some spec conformance issues with the PE file
24811         structures so mcs compiled apps run on the Net 2.0 beta.
24812
24813 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
24814
24815         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
24816         Implement this. Fixes #67264.
24817
24818         * debug-helpers.h debug-helpers.c marshal.c: Move 
24819         mono_find_method_by_name to debug-helpers.c.
24820
24821 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
24822
24823         * object.c (mono_release_type_locks): type_initialization_hash is
24824         a GHashTable.
24825
24826         * reflection.c object.c object-internals.h: Fix warnings.
24827
24828         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
24829         without accessors. Fixes #61561.
24830
24831         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
24832         application base from the root domain if not set. Fixes #65641.
24833         (mono_runtime_init): Fix warning.
24834
24835 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24836
24837         * appdomain.c: call mono_thread_pool_init.
24838         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
24839         of worker threads based on the number of CPUs and the environment
24840         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
24841         for non-windows (windows) systems.
24842
24843 2004-10-27  Chris Toshok  <toshok@ximian.com>
24844
24845         * mono-debug-debugger.c (write_class): don't call mono_class_init
24846         here, as even with the check for (!klass->init_pending), we get
24847         into a situation where we're hitting cycles in class
24848         initialization.  Fixes #68816.
24849
24850 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
24851
24852         * image.c: Avoid overwriting values in the loaded_images_hash when an
24853         assembly is loaded multiple times. Fixes #61152.
24854
24855         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
24856         so multiple satellite assemblies for the same name can be loaded.
24857         Fixes #68259.
24858
24859         * mono_domain_assembly_preload: Actually return the loaded assembly, 
24860         not NULL.
24861
24862         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
24863         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
24864
24865         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
24866         pending finalizers are not invoked after the appdomain has been 
24867         unloaded. Fixes #67862.
24868
24869 2004-10-22  Martin Baulig  <martin@ximian.com>
24870
24871         * mono-debug-debugger.c
24872         (mono_debugger_runtime_invoke): Don't box valuetypes.
24873
24874 2004-10-22  Chris Toshok  <toshok@ximian.com>
24875
24876         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
24877         don't hide private methods.
24878
24879 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
24880
24881         * icall.c: Allows the runtime to "share" (when known) the public key
24882         token of an assembly. This avoid the need to recalculate the token 
24883         (from the public key) in managed code.
24884
24885 2004-10-21  Chris Toshok  <toshok@ximian.com>
24886
24887         * debug-helpers.c (append_class_name): argh, revert last patch.
24888         
24889 2004-10-21  Chris Toshok  <toshok@ximian.com>
24890
24891         * debug-helpers.c (append_class_name): use '+' as the delimiter,
24892         not '/', so that it matches what the debugger uses to look up
24893         methods.
24894
24895 2004-10-21  Martin Baulig  <martin@ximian.com>
24896
24897         * mono-debug-debugger.c (mono_debugger_throw_exception): New
24898         public method; this is called each time an exception is thrown and
24899         allows the debugger to use exception catch points.
24900
24901 2004-10-21  Martin Baulig  <martin@ximian.com>
24902
24903         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
24904         the stack pointer and the exception object in some struct and pass
24905         that to the debugger.
24906
24907 2004-10-21  Chris Toshok  <toshok@ximian.com>
24908
24909         * mono-debug-debugger.c (do_write_class): add instance/static
24910         event support.  We don't expose "raise" or "other" yet.
24911         (event_is_static): new method.
24912
24913 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
24914
24915         * mono-debug-debugger.c
24916         (mono_debugger_handle_exception): Remove
24917         bogus return value for fussy compilers.
24918
24919 2004-10-20  Martin Baulig  <martin@ximian.com>
24920
24921         * mono-debug-debugger.c
24922         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
24923         (mono_debugger_handled_exception): Likewise.
24924
24925 2004-10-20  Martin Baulig  <martin@ximian.com>
24926
24927         * mono-debug-debugger.h (MonoDebuggerEvent): Added
24928         MONO_DEBUGGER_EVENT_EXCEPTION.
24929
24930         * mono-debug-debugger.c (mono_debugger_handle_exception): New
24931         public function to send the debugger a notification for an
24932         exception and inform it about a catch/finally clause.
24933
24934 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
24935
24936         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
24937         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
24938         fix 2.95 build. 
24939
24940         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
24941
24942 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
24943
24944         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
24945         marshalled as [In,Out]. Fixes #58325.
24946
24947 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
24948
24949         * reflection.c (mono_method_body_get_object): Implement some fields.
24950
24951 2004-10-12  Martin Baulig  <martin@ximian.com>
24952
24953         * reflection.c (mono_reflection_bind_generic_parameters): Small
24954         fix, correctly retrieve our parent from a generic instance.
24955
24956 2004-10-12  Martin Baulig  <martin@ximian.com>
24957
24958         * metadata.c (mono_metadata_generic_param_equal): We always have
24959         an owner.
24960
24961         * class.c
24962         (mono_class_from_generic_parameter): We need to have an owner.
24963         (my_mono_class_from_generic_parameter): Likewise.
24964
24965         * reflection.c (mono_reflection_setup_generic_class): Renamed to
24966         mono_reflection_create_generic_class() and added a new
24967         mono_reflection_setup_generic_class().  
24968         (mono_reflection_initialize_generic_param): If we're a nested
24969         generic type and inherited from the containing class, set our
24970         owner to the outer class.
24971
24972 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
24973
24974         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
24975
24976         * reflection.c (mono_method_body_get_object): New function to create
24977         a MethodBody object.
24978
24979         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
24980
24981 2004-10-11  Martin Baulig  <martin@ximian.com>
24982
24983         * metadata.c (_mono_metadata_type_equal): Renamed to
24984         do_mono_metadata_type_equal() and made static.
24985
24986 2004-10-11  Martin Baulig  <martin@ximian.com>
24987
24988         * appdomain.c: Bump corlib version number to 28.
24989
24990 2004-10-10  Martin Baulig  <martin@ximian.com>
24991
24992         * class-internals.h
24993         (MonoGenericInst): Added `MonoGenericContainer *container'.
24994         (MonoGenericMethod): Likewise.
24995         (MonoGenericContext): Likewise.
24996         (MonoGenericParam): Added `MonoGenericContainer *owner'.
24997
24998         * metadata.c
24999         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
25000         (do_mono_metadata_parse_generic_inst): Likewise.
25001         (mono_metadata_parse_type_full): New public method.  This is the actual
25002         mono_metadata_parse_type() implementation - with an additional
25003         `MonoGenericContainer *' argument.
25004         (mono_metadata_parse_array_full): Likewise.
25005         (mono_metadata_parse_signature_full): Likewise.
25006         (mono_metadata_parse_method_signature_full): Likewise.
25007         (mono_metadata_parse_mh_full): Likewise.
25008         (mono_type_create_from_typespec): Likewise.
25009         (mono_metadata_interfaces_from_typedef_full): New public method;
25010         this is similar to the other _full() methods, but we take a
25011         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
25012         (mono_metadata_parse_generic_param): Take an additional
25013         `MonoGenericContainer *' argument and lookup the MonoGenericParam
25014         from that container.
25015         (mono_metadata_generic_param_equal): New static method to compare
25016         two type parameters.
25017         (_mono_metadata_type_equal): New static method; takes an
25018         additional `gboolean signature_only' argument - if true, we don't
25019         compare the owners of generic parameters.
25020         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
25021         with a TRUE argument - do a signature-only comparision.
25022
25023         * loader.c: Use the new _full() methods and pass the
25024         MonoGenericContainer to them.
25025
25026         * object-internals.h (MonoReflectionTypeBuilder): Added
25027         `MonoGenericContainer *generic_container' field.
25028         (MonoReflectionMethodBuilder): Likewise.
25029
25030 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
25031
25032         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
25033         case initial images of dynamic assemblies.
25034
25035         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
25036
25037         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
25038
25039         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
25040         length of event->other array.
25041         (typebuilder_setup_events): Ditto.
25042
25043         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
25044         'assembly_by_name' and add an 'assemblies' list.
25045
25046         * assembly.h assembly.c: Add a new search hook for determining whenever
25047         an assembly is already loaded. Use this instead of searching in the
25048         loaded_assemblies list.
25049
25050         * domain.c appdomain.c: Implement the new search hook so loaded 
25051         assemblies are now scoped by appdomain. Fixes #67727.
25052
25053 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
25054
25055         * threads.c (mono_thread_attach): Initialize synch_lock field so
25056         mono_thread_detach works again.
25057
25058         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
25059         'lib' too. Fixes #63130.
25060
25061 2004-10-06  Jackson Harper  <jackson@ximian.com>
25062
25063         * culture-info-tables.h: regenerated.
25064
25065 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
25066
25067         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
25068         implemented by other interfaces in the result. Fixes #65764.
25069         
25070         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25071         Handle unloadable modules without crashing.
25072
25073         * image.c (load_modules): Revert the previous patch since modules must
25074         have a fixed index inside the array.
25075         
25076         * image.c (load_modules): Don't include native modules in the modules
25077         array.
25078
25079 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
25080
25081         * reflection.h: Add param_defaults field.
25082
25083         * reflection.c: Add support for parameter defaults in dynamic methods.
25084         Fixes #64595.
25085
25086         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25087         an empty string when a type has no namespace. Fixes #64230.
25088
25089 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
25090
25091         * tabledefs.h: Added "internal" security actions to support non-CAS
25092         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
25093         Note: they do not seems to be used anymore in 2.0 (new metadata format)
25094
25095 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
25096
25097         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25098         constructor of abstract class. Fixes #61689.
25099
25100 2004-10-04  Martin Baulig  <martin@ximian.com>
25101
25102         * class-internals.h (MonoGenericContainer): New type.
25103         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25104         `MonoGenericContainer *generic_container'.
25105         (MonoClass): Replaced `gen_params' and `num_gen_params' with
25106         `MonoGenericContainer *generic_container'.
25107
25108         * metadata.c (mono_metadata_load_generic_params): Return a
25109         `MonoGenericContainer *' instead of a `MonoGenericParam *';
25110         removed the `num' argument.
25111
25112 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
25113
25114         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25115         for dynamic images.
25116
25117         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25118         machine fields.
25119
25120         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25121
25122         * reflection.c: Save pe_kind and machine values into the generated
25123         image file.
25124
25125         * appdomain.c: Bump corlib version number.
25126
25127         * object-internals.h: Reorganize layout of LocalBuilder.
25128
25129         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25130         New helper function.
25131
25132         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25133         created MonoType for dynamic types. Fixes #66180.
25134
25135 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25136
25137         * threadpool.c: the ares hashtable needs a critical section around it.
25138         this prevents some nasty segfaults
25139
25140 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25141
25142         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25143         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25144         bug 67324).
25145         
25146 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25147
25148         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25149         
25150 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25151
25152         * image.c: Always canonicalize image file names, to avoid loading
25153         the same assembly twice when referenced using a relative path.
25154
25155 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25156
25157         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25158
25159         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25160
25161         * marshal.c: Fix warnings.
25162
25163 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25164
25165         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25166         attempting to marshal the delegate_trampoline as the method_addr.
25167         This patch has a static hashtable of marshalled delegates so that 
25168         we can map delegate_trampoline addresses back to delegates.  This
25169         allows a delegate passed to managed code to be passed back into native
25170         code.  Fixes #67039
25171
25172 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25173
25174         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25175
25176         * reflection.c (method_encode_code): Align method headers properly.
25177         Fixes #66025.
25178
25179 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25180
25181         * marshal.c: In the runtime invoke wrapper, reset the abort
25182         exception if it is cached. This avoids the automatic rethrowal of 
25183         the exception after the catch of the wrapper. Also check for pending
25184         interruptions before calling the managed method. This is done using
25185         the new method emit_thread_force_interrupt_checkpoint, since the
25186         normal checkpoint method is ignored when running the invoke wrapper.
25187         * object.c: If the abort exception is rethrown, set the abort_exc
25188         field of the thread, so it will be rethrown aftere every catch.
25189         * threadpool.c: Only run an interruption checkpoint if what has been
25190         requested is a stop of the thread (aborts will be ignored).
25191         * threads.c: By default, a thread will now never be interrumped while
25192         running the runtime invoke wrapper (this ensures that runtime_invoke
25193         will always return to the caller if an exception pointer is provided).
25194         There is a new special method mono_thread_force_interruption_checkpoint()
25195         to force an interruption checkpoint even if running a protected
25196         wrapper, which is used by the same runtime invoke wrapper to do a check
25197         at a safe point.
25198
25199 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25200
25201         * object.c, object-internals.h: Implemented mono_release_type_locks,
25202         which releases the cctor locks held by a thread.
25203         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25204         by a thread. Added mono_thread_exit() method to be used to safely stop
25205         a thread.
25206
25207 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25208
25209         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25210         Move null check before dereference.  Avoid indexing beyond the end
25211         of the 'modules' array.
25212
25213 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25214
25215         * metadata-internals.h (MonoImage): Add module_count field.
25216         * image.c (load_modules): Set image->module_count.
25217         (mono_image_load_file_for_image): Use image->module_count.
25218         * reflection.c (mono_image_load_module): Append to image->modules array 
25219         of dynamic assembly.
25220         (mono_module_get_object): Fix loop to actually increment index.
25221         Use image->module_count.
25222         * assembly.c (mono_assembly_load_references): Use image->module_count.
25223         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25224         Likewise.
25225
25226 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25227
25228         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25229         Avoid assert on generic types.
25230
25231 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25232
25233         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25234
25235         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25236
25237         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25238         function to convert a MarshalSpec structure to its managed counterpart.
25239
25240         * reflection.c: Fix warnings.
25241         
25242         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25243         field.
25244
25245         * icall.c (mono_create_icall_signature): Fix build.
25246
25247 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25248
25249         * icall.c: Add MakePointType icall.
25250
25251         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25252         warnings.
25253
25254 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25255
25256         * threadpool.c: reuse allocated slots in the queue.
25257
25258 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25259
25260         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25261
25262         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25263
25264         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25265         previous change.
25266
25267         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25268         ThrowOnUnmappableChar.
25269
25270         * icall.c (ves_icall_Type_GetPacking): New icall.
25271
25272 2004-09-24  Martin Baulig  <martin@ximian.com>
25273
25274         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25275
25276 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25277
25278         * appdomain.c:
25279         (mono_domain_set): allow setting a domain that is being unloaded.
25280         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25281         being unloaded.
25282
25283 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25284
25285         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25286         the GetCustomAttributes icall.
25287
25288 2004-09-23  Martin Baulig  <martin@ximian.com>
25289
25290         * object-internals.h (MonoReflectionGenericParam): Replaced
25291         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25292         with `guint32 attrs'.
25293
25294 2004-09-23  Martin Baulig  <martin@ximian.com>
25295
25296         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25297
25298 2004-09-23  Martin Baulig  <martin@ximian.com>
25299
25300         * object-internals.h (GenericParameterAttributes): New enum.
25301
25302 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25303
25304         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25305         
25306         * class.c (init_events): Fill out event->other field.
25307
25308         * class.c: Fix warnings.
25309
25310         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25311
25312 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25313
25314         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25315         walk which doesn't supply the IL offset.
25316
25317 2004-09-22  Martin Baulig  <martin@ximian.com>
25318
25319         * reflection.c (mono_reflection_setup_internal_class): If we're
25320         System.ValueType, System.Object or System.Enum, set
25321         `klass->instance_size' and create the vtable.
25322         (mono_reflection_create_internal_class): If we're an enum type,
25323         get the base class from our current corlib.
25324
25325 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25326
25327         * reflection.h (MonoResolveTokenError): New type.
25328
25329         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25330         icall.
25331
25332         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25333
25334 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25335
25336         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25337         Support also calling constructors, but only for already allocated objects.
25338
25339 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25340
25341         * reflection.c (type_get_qualified_name): If the klass is null
25342         return the typename to avoid a NullRefEx.
25343         (encode_cattr_value): Get the qualified name of the boxed type,
25344         not the underlying enumtype.  Fixes #62984.
25345
25346 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25347
25348         * marshal.c: Fix problems with previous checkin.
25349
25350 2004-09-21    <vargaz@freemail.hu>
25351
25352         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25353         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25354
25355         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25356
25357 2004-09-21  Geoff Norton <gnorton@customerdna.com>
25358
25359         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
25360         should only return a type for pointers, arrays, and passbyref types.
25361         Fixes bug #63841.
25362
25363 2004-09-21  Martin Baulig  <martin@ximian.com>
25364
25365         * domain.c (mono_debugger_check_runtime_version): New public
25366         function.
25367
25368         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
25369
25370 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
25371
25372         * reflection.c: Added missing sort to the declarative security 
25373         attributes table. MS implementation stops seeing the attributes if the
25374         token number regress in the table (as shown by ildasm and permview).
25375
25376 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
25377
25378         * object-internals.h (MonoReflectionModule): Add 'token' field.
25379         
25380         * reflection.c (mono_reflection_get_token): Add support for Module
25381         and Assembly.
25382         (mono_module_get_object): Set 'token' field.
25383         (mono_module_file_get_object): Set 'token' field.
25384
25385         * icall.c: Add new Assembly and Module icalls.
25386
25387         * appdomain.c: Bump corlib version.
25388
25389 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
25390
25391         * loader.h loader.c class.h class.c: Add helper functions for obtaining
25392         tokens of metadata objects.
25393
25394         * reflection.h reflection.c (mono_reflection_get_token): New function
25395         to obtain the token of a metadata object.
25396
25397         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
25398
25399 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
25400
25401         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
25402         
25403         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
25404
25405 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
25406
25407         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
25408         * object-internals.h: Added 3 MonoArray* members to MonoReflection
25409         AssemblyBuilder to access the permissions set in the class lib.
25410         * reflection.c: Added security attributes encoding step in 
25411         mono_image_build_metadata.
25412         * tabledefs.h: Added new security actions defined in 2.0:
25413         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
25414
25415 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25416
25417         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
25418         macro parameter.
25419
25420 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
25421  
25422         * locales.c: nullify the ICU_collator member of CompareInfo when it is
25423           finalized. There where random SIGSEVs at program termination, when
25424           an object being finalized was trying to do a string comparison and
25425           the current culture was already finalized.
25426  
25427 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25428
25429         * threads.c: call thread_cleanup before finishing the thread if we get
25430         there.
25431
25432 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
25433
25434         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
25435         assemblies from the parent. Fixes #65665.
25436
25437 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
25438
25439         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
25440         modifiers.
25441
25442 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
25443
25444         * reflection.h: add prototype for mono_get_dbnull_object
25445         * reflection.c: add prototypes for get_default_param_value_blobs 
25446         and mono_get_object_from_blob for fussier compilers
25447
25448 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
25449  
25450         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
25451         false deadlock checks in class initialization.
25452  
25453 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
25454
25455         * image.c (mono_image_addref): Fix comment.
25456
25457         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
25458         possible.
25459
25460 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
25461
25462         * reflection.c (mono_param_get_objects): Modified to return
25463         ParameterInfo.DefaultValue object.
25464
25465         (get_default_param_value_blobs):
25466         (mono_get_object_from_blob):
25467         (mono_get_dbnull_object): New helper routines. 
25468
25469         * object.c (mono_get_constant_value_from_blob): New helper routine
25470         carved out from get_default_field_value ()
25471
25472         * object-internals.h (mono_get_constant_value_from_blob): Added
25473         function declaration.
25474
25475 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
25476
25477         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
25478         referenced assemblies. Fixes #62135.
25479
25480         * exception.h exception.c (mono_get_exception_file_not_found2): New
25481         helper function.
25482
25483 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
25484
25485         * class.h class.c: Add mono_type_get_underlying_type ().
25486
25487 2004-09-09  Geoff Norton <gnorton@customerndna.com>
25488
25489         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
25490         Fix GetTypes() to support dynamically created assemblies.
25491
25492 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
25493
25494         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
25495         
25496         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
25497         previous patch.
25498
25499         * reflection.h reflection.c loader.c: Allow dynamic construction of
25500         pinvoke methods. Fixes #65571.
25501         
25502         * reflection.c (mono_reflection_get_type): Revert previous change since
25503         it causes regressions.
25504
25505 2004-09-08  Martin Baulig  <martin@ximian.com>
25506
25507         * class.c (class_compute_field_layout): Don't call
25508         mono_class_layout_fields() for open generic instances.
25509
25510 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
25511         * threads.c appdomain.c: fix typo in GC macro
25512
25513 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25514
25515         * threads.c: don't call mono_thread_detach() in start_wrapper(),
25516         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
25517
25518 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
25519
25520         * image.c (mono_image_close): Applied patch from 
25521         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
25522         assembly is loaded multiple times from data.
25523         
25524         * image.c (mono_image_open): Fix warning.
25525
25526 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25527
25528         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
25529         once. Fixes #58334.
25530         
25531         * reflection.c (mono_reflection_create_runtime_class): Initialize
25532         klass->nested_classes. Fixes #61224.
25533
25534 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25535
25536         * threads.c: sched_yield() on exit, to allow threads to quit.
25537
25538 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25539
25540         * object.c (mono_unhandled_exception): Remove leftover debug code.
25541
25542 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
25543
25544         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
25545
25546 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
25547
25548         * marshal.c (emit_marshal_array): Really null terminate string arrays.
25549         
25550         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
25551
25552 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25553
25554         * marshal.c (emit_marshal_array): Null terminate string arrays.
25555         
25556         * marshal.c (raise_auto_layout_exception): Fix warning.
25557
25558         * reflection.c (mono_param_get_objects): Initialize the default value
25559         with DBNull.Value, not null. Fixes #62123.
25560
25561 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
25562
25563         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
25564         throw an exception with a cute explanation.
25565
25566 2004-09-06  Dick Porter  <dick@ximian.com>
25567
25568         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
25569         Close the new process's thread handle, as we don't use it.  The
25570         handle stays around forever otherwise.
25571
25572 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25573
25574         * object.c (arith_overflow): Fix warning.
25575
25576         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
25577         calling conventions in method refs. Fixes #65352.
25578
25579         * reflection.c: Fix warnings.
25580
25581 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25582
25583         * icall.c: Add a new icall for Array.Clear
25584
25585 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
25586
25587         * object.c: When allocating an array, we have to throw
25588         an overflow exception if any of the lengths are < 0.
25589
25590 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
25591
25592         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
25593         properly. Also move implementation of string array marshalling to 
25594         managed code. Fixes #42316.
25595
25596 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25597
25598         * assembly.c: provide more information when loading an assembly fails.
25599
25600 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25601
25602         * filewatcher.c: don't expect the development fam package to be
25603         installed.
25604
25605 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
25606
25607         * marshal.c: Make a copy of the signature cookie since it will be
25608         freed by the caller.
25609         
25610         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
25611
25612         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
25613
25614         * metadata.c (mono_metadata_free_marshal_spec): New function to free
25615         marshal specs.
25616
25617         * marshal.c: More refactoring.
25618         
25619         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
25620         smaller functions.
25621
25622 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
25623
25624         * object.c: In mono_message_invoke, fill the output parameter array after
25625           calling the managed method (it was done before the call). This fixes
25626           bug #59299.
25627
25628 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25629
25630         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
25631         as well.
25632
25633 2004-09-02  Martin Baulig  <martin@ximian.com>
25634
25635         * class.c (mono_class_instance_size): Don't allow generic type
25636         definitions or open generic instances.
25637         (mono_class_array_element_size): If we're a value type, call
25638         mono_class_instance_size() on the original class.
25639
25640         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
25641         handle generic instances.
25642
25643         * mono-debug-debugger.c (write_type): Handle generic instances
25644         like classes.
25645
25646 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
25647
25648         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
25649         the allocation request fails. Fixes #65089.
25650
25651         * object.c (mono_runtime_free_method): Do not call mono_free_method.
25652         
25653         * object.c (mono_runtime_free_method): New function to free a dynamic
25654         method.
25655
25656         * marshal.c (mono_delegate_free_ftnptr): New function to free the
25657         delegate trampoline.
25658
25659         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
25660         with hasthis as dynamic,
25661
25662         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
25663
25664         * domain.c (mono_jit_info_table_remove): New function to remove an
25665         entry from the jit info table.
25666
25667         * class-internals.h (MonoMethod): Add 'dynamic' field.
25668
25669         * loader.c: Fix warnings.
25670
25671 2004-09-01  Martin Baulig  <martin@ximian.com>
25672
25673         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
25674         instead of mono_debugger_lock() because the latter one is a no-op
25675         unless running in the debugger.
25676
25677 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25678
25679         * class.c (class_compute_field_layout): Classes with auto-layout or
25680         reference fields are not blittable.
25681         
25682 2004-09-01  Dick Porter  <dick@ximian.com>
25683
25684         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
25685         mono_image_get_filename() to get the assembly location.
25686
25687         * icall.c:
25688         * metadata.h: Fix compile warnings
25689
25690 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
25691
25692         * class.c (class_compute_field_layout): System.Object is blittable.
25693
25694         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
25695         as in/out. Fixes #59909.
25696
25697 2004-09-01  Martin Baulig  <martin@ximian.com>
25698
25699         * metadata.h (MONO_TYPE_ISREFERENCE): Call
25700         mono_metadata_generic_inst_is_valuetype() if we're a generic
25701         instance to check whether our underlying type is a reference type.
25702
25703 2004-09-01  Martin Baulig  <martin@ximian.com>
25704
25705         * metadata.c (mono_type_size): If we're a generic instance, call
25706         mono_class_value_size() for value types.
25707
25708 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
25709
25710         * marshal.c: Implement more custom marshalling functionality. Fixes
25711         #64915.
25712
25713 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25714
25715         * mono-debug.c, debug-mono-symfile.c: add some locking love.
25716
25717 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
25718
25719         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
25720
25721         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
25722
25723         * icall.c: Fix some warnings.
25724
25725         * threads.c (abort_appdomain_thread): Fix unref errors.
25726         (mono_thread_current): Fix THREAD_DEBUG define.
25727
25728 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
25729
25730         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
25731
25732         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
25733
25734 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
25735
25736         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
25737         string arrays.
25738
25739 2004-08-28  Martin Baulig  <martin@ximian.com>
25740
25741         * metadata.c
25742         (mono_metadata_generic_inst_is_valuetype): New public function.
25743
25744         * metadata.h (MONO_TYPE_ISSTRUCT): Call
25745         mono_metadata_generic_inst_is_valuetype() if we're a generic
25746         instance to check whether our underlying type is a valuetype.
25747
25748 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
25749
25750         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
25751         #63768.
25752
25753 2004-08-25  Martin Baulig  <martin@ximian.com>
25754
25755         * loader.c (mono_get_method_from_token): Abstract methods can also
25756         be generic and thus have type parameters.
25757
25758         * metadata-internals.h
25759         (MonoDynamicImage): Added `GPtrArray *gen_params'.
25760
25761         * reflection.c (mono_image_get_generic_param_info): Don't create a
25762         metadata row, just add an entry to the `gen_params' array.
25763         (build_compressed_metadata): Sort the `gen_params' array and then
25764         actually create the metadata.
25765
25766 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25767
25768         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
25769
25770 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
25771
25772         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
25773
25774 2004-08-24  Martin Baulig  <martin@ximian.com>
25775
25776         * class.cs (mono_class_is_subclass_of): Like an interface, a
25777         generic instance also derives from System.Object.
25778
25779 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
25780
25781         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
25782         custom modifiers to be in any order. Fixes #61990.
25783
25784 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
25785
25786         * object.c: Register mono_object_new_fast icall.
25787         
25788         * object.c (mono_class_get_allocation_ftn): Return to calling
25789         mono_object_new_fast, since it seems faster to compute the object 
25790         size in unmanaged code than passing it as a parameter.
25791
25792         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
25793
25794         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
25795         this function with Boehm as the oom handler, so we don't have to check
25796         the result of GC_malloc.
25797
25798         * object.c: Remove checks for oom.
25799
25800         * object.h object.c (mono_class_get_allocation_ftn): New function to
25801         return the icall which can be used to allocate an instance of a given
25802         class. 
25803
25804         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
25805
25806         * class-internals.h: Add 'enabled' field.
25807
25808 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
25809
25810         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
25811
25812 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
25813         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
25814         value 0x0010.
25815
25816 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
25817
25818         * appdomain.c: use the Tls function for appdomain too,
25819         at Zoltan's request. Actually return in mono_context_get
25820
25821         * appdomain.c, profiler.c, threads.c: use __thread
25822
25823 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
25824
25825         * appdomain.c threads.c: Call GC_CreateThread on windows.
25826
25827         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
25828         multiple libraries since this don't work on windows.
25829
25830 2004-08-18  Martin Baulig  <martin@ximian.com>
25831
25832         * class-internals.h
25833         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
25834         MonoMethodHeader.
25835
25836         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
25837         MonoMethodNormal since we also need it for abstract and interface
25838         methods.
25839
25840         * reflection.c
25841         (build_compressed_metadata): Sort the GenericParam table.
25842         (mono_image_create_token): Added `gboolean create_methodspec'
25843         argument; this is false when generating a MethodImpl token.
25844         (reflection_methodbuilder_to_mono_method): Abstract and interface
25845         methods may also have generic parameters.
25846
25847 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
25848
25849         * appdomain.c: thread local alloc
25850
25851 2004-08-17  Martin Baulig  <martin@ximian.com>
25852
25853         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
25854
25855         * icall.c
25856         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
25857         argument.
25858
25859         * class.c (mono_type_get_full_name): New public function.
25860         (mono_type_get_name): Don't include the type arguments.
25861
25862 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
25863
25864         * Makefile.am: Build static versions of libmetadata and libmonoruntime
25865         for inclusion into the mono executable.
25866
25867 2004-08-16  Martin Baulig  <martin@ximian.com>
25868
25869         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
25870         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
25871
25872 2004-08-14  Martin Baulig  <martin@ximian.com>
25873
25874         * class.c (dup_type): Also copy the `byref' field.
25875
25876 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
25877
25878         * reflection.c (create_dynamic_mono_image): Revert the last change 
25879         since it breaks bootstrap.
25880
25881 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
25882
25883         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
25884
25885         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
25886         not free them with g_free.
25887
25888 2004-08-11  Martin Baulig  <martin@ximian.com>
25889
25890         * reflection.c (mono_reflection_setup_internal_class): Also call
25891         mono_class_setup_mono_type() if we already have a `tb->type.type'.
25892
25893 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
25894
25895         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
25896         called during default (first) AppDomain creation. Keep track of
25897         Evidence when loading assemblies.
25898
25899 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
25900
25901         * opcodes.c, opcodes.h: reduce runtime relocations.
25902
25903 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
25904
25905         * culture-info.h, locales.c: fixes and chages to sue the new
25906         optimized format of the locale data.
25907         * culture-info-tables.h: regenerated.
25908
25909 2004-08-06  Geoff Norton <gnorton@customerdna.com>
25910         
25911         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
25912
25913 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
25914
25915         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
25916         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
25917         * domain-internals.h: icall declaration.
25918         * icall.c: icall registration.
25919         * object-internals.h: New fields in MonoAssembly for CAS.
25920
25921 2004-08-05  Duncan Mak  <duncan@ximian.com>
25922
25923         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
25924         CEE_LDELEM_ANY.
25925
25926 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
25927
25928         * reflection.c: fix to deal with object[] arrays in custom ctors
25929         (bug #62550).
25930
25931 2004-08-05  Martin Baulig  <martin@ximian.com>
25932
25933         * class.c (mono_class_array_element_size): Added support for
25934         generic instances and correctly handle "recursive" types.
25935
25936 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
25937
25938         * assembly.c: Fix warnings.
25939
25940 2004-08-04  Martin Baulig  <martin@ximian.com>
25941
25942         * class.c
25943         (mono_type_get_name_recurse): Added `gboolean include_arity'
25944         argument specifying whether or not we should include the generic
25945         arity in the type name.
25946         (_mono_type_get_name): New static function.
25947         (mono_class_setup_vtable): If we're a generic instance, don't
25948         include the generic arity in the names of explicit method
25949         implementations.        
25950
25951 2004-08-03  Martin Baulig  <martin@ximian.com>
25952
25953         * class.c (mono_type_get_name_recurse): Enclose the generic type
25954         arguments in `<', '>'.
25955
25956 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25957
25958         * gc.c: make GC warning messages use the trace API, they are just
25959         noise to most of the users.
25960
25961 2004-08-03  Martin Baulig  <martin@ximian.com>
25962
25963         * debug-mono-symfile.c (read_string): Correctly read the string.
25964
25965 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
25966
25967         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
25968         
25969         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
25970         icalls.
25971         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
25972
25973 2004-07-30  Martin Baulig  <martin@ximian.com>
25974
25975         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
25976         Reflect latest symbol writer changes.   
25977
25978 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
25979
25980         * object.c: always create an object if null is passed
25981         to Invoke() where a valuetype is expected.
25982
25983 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
25984
25985         * marshal.c (mono_marshal_init): make managed
25986         signatures match native ones better for 64bits.
25987
25988 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25989
25990         * appdomain.c: hack to build correctly the private bin path on windows.
25991         Fixes bug #61991.
25992
25993 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
25994
25995         * assembly.c: Load mscorlib from the correct framework directory
25996           (mono/<version>/mscorlib.dll).
25997         * appdomain.h: Added prototypes for new functions.
25998         * internals.h: Added some prototypes.
25999         * domain.c: When initializing the runtime, get from the executable and
26000           the configuration files the runtime version that the app supports.
26001           Added support methods for reading app.exe.config. Added list of versions
26002           supported by the JIT. Added two new methods: mono_init_from_assembly,
26003           which initializes the runtime and determines the required version from
26004           the provided exe file, and mono_init_version, which initializes
26005           the runtime using the provided version.
26006         * icall.c: Get machine.config from version-specific directory.
26007         * reflection.c: When generating an image, embed the version number
26008           of the current runtime.
26009
26010 2004-07-28  Dick Porter  <dick@ximian.com>
26011
26012         * socket-io.c
26013         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
26014         returned sockaddr size before creating the remote address object.
26015         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
26016         61608.
26017
26018 2004-07-28  Dick Porter  <dick@ximian.com>
26019
26020         * locales.c (string_invariant_compare_char): Fix invariant char
26021         compares between upper and lower cases.  Fixes bug 61458.
26022
26023 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
26024         
26025         * marshal.c: actually cache stelem.ref wrappers.
26026         
26027 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
26028
26029         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
26030         sections and remove the mono_cli_rva_map () function.
26031
26032 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26033
26034         * debug-mono-symfile.c: fix one more endianess issue, from a patch
26035         by Geoff Norton (<gnorton@customerdna.com>).
26036
26037 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26038
26039         * class.c: fix class loads for pointer types (typeof(int) !=
26040         typeof(int*)).
26041
26042 2004-07-27  Martin Baulig  <martin@ximian.com>
26043
26044         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
26045         reading the debugging information from an external ".mdb" file.
26046
26047 2004-07-24  Martin Baulig  <martin@ximian.com>
26048
26049         * reflection.c (mono_image_get_type_info): Only write a class
26050         layout entry if we actually have a size or a packing size.
26051
26052 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26053
26054         * reflection.c (type_get_fully_qualified_name): 
26055         insert cast to get type checking of ?: with non-gcc compilers
26056
26057 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26058
26059         * rand.c: use g_getenv for both lookups of
26060         MONO_EGD_SOCKET
26061
26062 2004-07-17  Martin Baulig  <martin@ximian.com>
26063
26064         * reflection.c (mono_reflection_bind_generic_method_parameters):
26065         Set `gmethod->reflection_info'.
26066
26067 2004-07-17  Martin Baulig  <martin@ximian.com>
26068
26069         * class.c (mono_class_create_from_typedef): Insert the newly
26070         created class into the hash table before computing the interfaces
26071         since we could be called recursively.
26072
26073 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
26074
26075         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
26076         function to implement stelem.ref in managed code
26077         * class-internals.h, debug-helpers.c: a new wrapper type
26078         for the above.
26079
26080 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26081
26082         * gc.c: allow GC handles to work even when no GC is compiled in.
26083         Fix part of bug #61134 (GetAddrOfPinnedObject).
26084
26085 2004-07-13  Peter Williams  <peter@newton.cx>
26086  
26087         * process.c (complete_path): Make sure we don't attempt to execute
26088         directories.
26089  
26090 2004-07-12  Geoff Norton <gnorton@customerdna.com>
26091
26092         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
26093           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
26094           and will add/subtract the hour if needed
26095
26096 2004-07-12  Martin Baulig  <martin@ximian.com>
26097
26098         * reflection.c (mono_field_get_object): If we have
26099         `field->generic_info', take the attributes from
26100         `field->generic_info->generic_type'.    
26101
26102 2004-07-12  Martin Baulig  <martin@ximian.com>
26103
26104         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26105         This function must be called before initializing the runtime.
26106         (mono_debug_init_1): New function; call this after initializing
26107         the runtime, but before loading the assembly.  It tells the
26108         debugger to load corlib and the builtin types.
26109
26110         * mono-debug-debugger.c: Did some larger changes in the debugging
26111         code; support recursive class declarations, make sure we actually
26112         add all classes.
26113
26114 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26115
26116         * debug-helpers.c: undo my previous patch and fixed the real issue in
26117         ../mini/exceptions-x86.c
26118
26119 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26120
26121         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26122         when no HOME env. variable was set and a NullRef was thrown in a .cctor
26123         called from other .cctors.
26124
26125 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26126
26127         * loader.c: Removed the mono_loader_wine_init hack now that we are
26128         doing a managed version of Windows.Forms.
26129
26130 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26131
26132         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26133         threadpool.c, threads.c: remove static data from rootset.
26134
26135 2004-07-09  Dick Porter  <dick@ximian.com>
26136
26137         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26138         Don't do any more processing if the matched length was 0.  It was
26139         increasing the size of the string before.  Fixes bug 61167.
26140
26141 2004-07-09  Dick Porter  <dick@ximian.com>
26142
26143         * socket-io.h:
26144         * socket-io.c
26145         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26146         Add support for SO_PEERCRED if its available.
26147
26148 2004-07-09  Peter Bartok <pbartok@novell.com>
26149         * loader.c: winelib.exe.so error message is now only displayed if
26150         MONO_DEBUG is set. To help us avoid questions when people are trying
26151         out the new Managed.Windows.Forms.
26152
26153 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26154
26155         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26156         for isinst and castclass wrappers.
26157
26158         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26159         to libmetadata from the JIT, so they could be used by the marshalling
26160         code and the interpreter.
26161
26162         * marshal.c: Register marshalling related JIT icalls here instead of
26163         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26164         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26165
26166         * metadata.h: Remove unneeded marshalling conversions.
26167
26168         * opcodes.c: Update for new opcodes.
26169         
26170 2004-07-08  Martin Baulig  <martin@ximian.com>
26171
26172         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26173         (mono_debug_get_domain_data): Make this function static.
26174
26175 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26176
26177         * gc.c, object.h: add nice GC handle API for embedders.
26178
26179 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26180
26181         * reflection.c: more changes for the new api
26182
26183         * object.c: When we reflect on a field w/ a constant value, it
26184         will not have a memory location, so we must access metadata. Also,
26185         allow easier reading of strings so that we can read them from
26186         the constant data.
26187
26188         * class.c (mono_class_layout_fields): no need for literal fields here.
26189
26190         * class-internals.h: api changes for const fields
26191
26192         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26193
26194 2004-07-06  Martin Baulig  <martin@ximian.com>
26195
26196         * mono-debug.h: Increment version number to 44.
26197
26198         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26199         now a gpointer, rewrote this whole method.
26200
26201         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26202         function.  Add information about the wrapper in a new "misc table".
26203
26204         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26205         for the new misc table.
26206
26207 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26208
26209         * metadata-internals.h image.c: Add a cache for helper signatures.
26210
26211         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26212
26213 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26214
26215         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26216         delegates from a delegate. Fixes #61033.
26217         
26218         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26219         marshalling of stringbuilder arrays. Fixes #59900.
26220
26221 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26222
26223         * icall.c: Add EnumBuilder:setup_enum_type icall.
26224
26225 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26226
26227         * icall.c: Added a new icall for the property version of
26228         OffsetOfStringData.
26229
26230 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26231
26232         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26233         it has a constant size across platforms.
26234
26235         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26236         stack trace.
26237
26238 2004-06-29  Martin Baulig  <martin@ximian.com>
26239
26240         * mono-debug.c (mono_debug_add_method): Protect the whole function
26241         in mono_debugger_lock(), not just parts of it.
26242
26243 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26244
26245         * reflection.c: make sure padding bytes in heaps are zeroed.
26246
26247 2004-06-24  David Waite  <mass@akuma.org>
26248
26249         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26250         image.c, loader.c, locales.c, marshal.c, metadata.c,
26251         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26252         string-icalls.c, threads.c: change to C90-style comments from C99 /
26253         C++ -style
26254
26255 2004-06-24  Dick Porter  <dick@ximian.com>
26256
26257         * threads.c
26258         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26259         return createdNew.  Fixes bug 60412.
26260
26261         * threads-types.h: 
26262         * icall.c: Add createdNew parameter to CreateMutex icall
26263
26264 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26265
26266         * reflection.c, object-internals.h: save default value in params.
26267
26268 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26269
26270         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26271         no need to build a new path combining that with the application base.
26272         Fixes bug #60442.
26273
26274 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26275
26276         * reflection.c: fixed minor standard compliance issues.
26277
26278 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26279
26280         * reflection.c: fixed issue with encoding some custom attributes
26281         (arrays in properties and fields, bug #60411).
26282
26283 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26284
26285         * reflection.c: fix start address when copying the public key token.
26286
26287 2004-06-23  Martin Baulig  <martin@ximian.com>
26288
26289         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26290         the `exc' object in a static object to put it into the GC's root set.
26291
26292 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26293
26294         * reflection.c: make mono_reflection_setup_internal_class ()
26295         callable a second time to setup a new parent class.
26296
26297 2004-06-23  Dick Porter  <dick@ximian.com>
26298
26299         * threads.c: Check for WAIT_IO_COMPLETION return values.
26300
26301 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26302
26303         * appdomain.c: Removed the g_free on the public key token. Now copy 
26304         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26305         * assembly.c: Added public key token string value when loading 
26306         assemblies. Fix bug #60439.
26307         * icall.c: Added missing informations (like public key) in 
26308         GetReferencedAssemblies. Fix #60519.
26309         * image.h: Changed definition for public key token from const char*
26310         public_tok_value to guchar public_key_token [17];
26311         * reflection.c: Updated for changes to public key token.
26312
26313 2004-06-22  Lluis Sanchez Gual
26314
26315         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26316         for the field in base classes.
26317
26318 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26319
26320         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26321         mark headers as not supported, they are installed only for use by the
26322         debugger.
26323
26324 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26325
26326         * *.c, *.h: avoid namespace pollution in public headers.
26327
26328 2004-06-21  Martin Baulig  <martin@ximian.com>
26329
26330         * exception.c (mono_get_exception_security): It's in
26331         "System.Security", not in "System".
26332
26333         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26334         the exception classes.
26335
26336 2004-06-21  Martin Baulig  <martin@ximian.com>
26337
26338         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26339         Protect the exception object from being finalized.
26340
26341 2004-06-21  Martin Baulig  <martin@ximian.com>
26342
26343         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26344         public function.
26345
26346 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26347
26348         * reflection.c: Load the assembly in mono_reflection_type_from_name,
26349         if it was not loaded before. Fix parts of #60439.
26350
26351 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26352
26353         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26354         code that was broken since Ben's change: wrappers are now
26355         dependent on the method signature only again.
26356
26357 2004-06-21  Martin Baulig  <martin@ximian.com>
26358
26359         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
26360         added interface support.
26361
26362 2004-06-21  Martin Baulig  <martin@ximian.com>
26363
26364         * class.c (mono_vtable_get_static_field_data): New public method.
26365
26366 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
26367
26368         * filewatcher.c : Windows build fix to be compliant with API changes.
26369
26370 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26371
26372         * class.h, class.c: more accessors.
26373         * metadata.h, metadata.c: prepare for hiding MonoType and
26374         MonoMethodSignature: people should use the accessors from now on
26375         outside of the tree.
26376
26377 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26378
26379         * *.c, *.h: more API cleanups.
26380
26381 2004-06-18  Jackson Harper  <jackson@ximian.com>
26382
26383         * assembly.c: Trace loading assemblies.
26384         * loader.c: Trace loading native libraries.
26385         * mono-config.c: Trace loading config files.
26386         
26387 2004-06-18  Dick Porter  <dick@ximian.com>
26388
26389         * locales.c: Tell ICU the lengths of strings, it can cope with
26390         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
26391
26392 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
26393
26394         * image.c: swapped name/filename;
26395
26396 2004-06-18  Martin Baulig  <martin@ximian.com>
26397
26398         * mono-debug-debugger.c (write_class): Write the parent class at
26399         the end of the header.
26400
26401 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26402
26403         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
26404
26405 2004-06-17  Raja R Harinath  <rharinath@novell.com>
26406
26407         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
26408         (bundle_obj): New conditional define.
26409         (BUILT_SOURCES): Remove.
26410         ($(bundle_srcs)): Make parallel-make safe.
26411         (libmonoruntime_la_LIBADD): Make unconditional.
26412         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
26413         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
26414
26415 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
26416
26417         * culture-info-tables.h: It was inconsistent with the latest
26418           supp info files.
26419
26420 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
26421
26422         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
26423         be loaded.
26424
26425         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
26426         with gcc 2.95.
26427
26428 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26429
26430         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
26431         cleaned up public header threads.h.
26432
26433 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26434
26435         * Makefile.am, *.c, *.h: more API cleanups.
26436
26437 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
26438
26439         * Makefile.am: removed monosn from compilation.
26440         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
26441         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
26442         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
26443         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
26444         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
26445         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
26446
26447 2004-06-15  Jackson Harper  <jackson@ximian.com>
26448
26449         * assembly.c: Make locales lower case when searching the GAC for
26450         assemblies. gacutil will always make locales lowercase when
26451         installing so this effectively makes them case insensitive.
26452         
26453 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
26454
26455         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
26456         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
26457           parameter which allows to choose whether the wait can be interrupted or 
26458           not. Also added the method mono_monitor_enter(), which locks the monitor
26459           using an infinite wait and without allowing interruption.
26460           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
26461           interrupted.
26462         * object.h: Added new fields in MonoThread. suspend_event holds the event
26463           used to susped/resume the thread. synch_lock is the lock object to use for
26464           modifying the thread state.
26465         * threads.c: Use the new synch_lock object for locking, instead of "this",
26466           which can generate deadlocks.
26467           Moved thread state change in Thread.Sleep and Thread.Join from managed
26468           to unmanaged code. This avoids a deadlock when the thread was suspended
26469           just after acquiring the thread lock.
26470           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
26471           Implemented Thread.Suspend using an event instead of ThreadSuspend,
26472           which is not fully implemented in the io-layer.
26473         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
26474
26475 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
26476
26477         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
26478         threads-types.h: more API cleanups.
26479
26480 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26481
26482         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
26483         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
26484         threadpool.c, threads.c: first pass at the exported API cleanup.
26485
26486 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
26487
26488         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
26489
26490 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26491
26492         * icall.c: added internalGetHome.
26493
26494 2004-06-14  Dick Porter  <dick@ximian.com>
26495
26496         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
26497         possible to return successfully when '.' or '..' were the only
26498         entries in a directory, but were skipped.  The MonoIOStat was not
26499         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
26500         Fixes bug 59574.
26501
26502 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26503
26504         * reflection.c: make binaries run on .Net 1.1 by default.
26505
26506 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26507
26508         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
26509
26510 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
26511
26512         * marshal.c: keep track of struct size with explicit layout
26513         (bug #59979).
26514
26515 2004-06-12  Martin Baulig  <martin@ximian.com>
26516
26517         * mono-debug-debugger.c: Comment out a debugging g_message().
26518
26519 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26520
26521         * reflection.c, reflection.h: do not free custom attrs that are cached.
26522         * icall.c: use braces to make code clearer.
26523
26524 2004-06-11  Martin Baulig  <martin@ximian.com>
26525
26526         * class.h (MonoInflatedField): New type.
26527         (MonoClassField): Replaced `MonoType *generic_type' with
26528         `MonoInflatedField *generic_info'.
26529
26530         * icall.c
26531         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
26532
26533 2004-06-11  Martin Baulig  <martin@ximian.com>
26534
26535         * reflection.c (mono_image_create_method_token): Correctly encode
26536         varargs methods.
26537
26538 2004-06-11  Martin Baulig  <martin@ximian.com>
26539
26540         * metadata.c (mono_metadata_parse_method_signature): When parsing
26541         a MethodDef which has VarArgs, also set sentinelpos if we don't
26542         have any parameters.
26543
26544 2004-06-11  Martin Baulig  <martin@ximian.com>
26545
26546         * verify.c (mono_method_verify): In CEE_CALL, use
26547         mono_method_get_signature() to get the method's signature, unless
26548         we're a PInvoke method.
26549
26550 2004-06-10  Jackson Harper  <jackson@ximian.com>
26551
26552         * assembly.c: Use <path>/lib/mono/gac for the extra paths
26553         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
26554         logical name as the supplied path is just a prefix to the gac not
26555         the direct path to it.
26556         
26557 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
26558
26559         * reflection.c: make the token for a created method match
26560         the token of the MethodBuilder it was created from
26561         (IKVM requires this behaviour now).
26562
26563 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
26564
26565         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
26566         reflection.c, socket-io.c: leak fixes.
26567
26568 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
26569
26570         * icall.c: handle sentinel pos in vararg methods in position different
26571         from 0.
26572
26573 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26574
26575         * culture-info-tables.h: freshly generated.
26576
26577 2004-06-09  Martin Baulig  <martin@ximian.com>
26578
26579         * loader.c (mono_get_method_constrained): Call `mono_class_init
26580         (constrained_class)'.   
26581
26582 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
26583
26584         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
26585         any methods. Fixes #59629.
26586
26587 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26588
26589         * culture-info-tables.h: reflecting locale-builder updates.
26590
26591 2004-06-08  Dick Porter  <dick@ximian.com>
26592
26593         * object.h:
26594         * locales.c: Fixed compile warnings, including a real bug in
26595         CompareInfo_internal_compare.
26596         
26597 2004-06-08  Dick Porter  <dick@ximian.com>
26598
26599         * locales.c
26600         (ves_icall_System_Globalization_CompareInfo_internal_index):
26601         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26602         Double-check the resuls of usearches, because ICU currently
26603         ignores most of the collator settings here.  Fixes bug 59720.
26604         
26605 2004-06-08  Dick Porter  <dick@ximian.com>
26606
26607         * locales.c
26608         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
26609         Fix memory leak and segfault-causing typo.  No idea how this one
26610         lasted so long without being noticed.
26611
26612 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
26613
26614         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
26615         any methods. Fixes #59629.
26616
26617 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26618
26619         * assembly.c:
26620         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
26621         own the critical section before). Removed dead code (that's done
26622         in the preload hook).
26623
26624         (mono_assembly_load_with_partial_name): call the preload hook.
26625
26626 2004-06-08  Martin Baulig  <martin@ximian.com>
26627
26628         * metadata.c (mono_metadata_signature_alloc): Default
26629         `sentinelpos' to -1.
26630
26631         * reflection.c (mono_image_get_array_token): Likewise.
26632
26633 2004-06-08  Martin Baulig  <martin@ximian.com>
26634
26635         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
26636
26637         * metadata.c (mono_metadata_parse_method_signature): When parsing
26638         a MethodDef which has VarArgs, set sentinelpos.
26639
26640         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
26641         `gint16' since we're using -1 for non-varargs methods.
26642
26643         * reflection.c
26644         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
26645         (method_encode_signature): Added varargs support.
26646         (method_builder_encode_signature): Likewise.
26647         (mono_image_get_varargs_method_token): New static method.
26648         (mono_image_create_method_token): New public method; this is
26649         called via an icall instead of mono_image_create_token() when
26650         calling a varargs method.       
26651
26652 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
26653
26654         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
26655
26656 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26657
26658         * culture-info-tables.h : Reflecting the latest locale-builder that
26659           fixed empty array representation ({} to {0}).
26660
26661 2004-06-07  Jackson Harper  <jackson@ximian.com>
26662
26663         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
26664         looking up extra gac paths. This allows MONO_GAC_PATH to act
26665         exactly like a prefix.
26666         
26667 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26668
26669         * reflection.c (mono_reflection_type_from_name): Make a copy of the
26670         type name before modifying it. Fixes #59405.
26671
26672 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
26673
26674         * culture-info.h: added fields for "all datetime patterns".
26675         * locales.c: (  ves_icall_System_Globalization_CultureInfo
26676           _construct_datetime_format ()): fill xxx_patterns fields.
26677         * object.h: added fields for "all datetime patterns" to
26678           MonoDateTimeFormatInfo.
26679         * culture-info-tables.h: reflecting locale-builder updates.
26680
26681 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
26682
26683         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
26684         the event has no add and remove methods. Fixes #59629.
26685
26686 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
26687
26688         * object.c: Fixed possible integer overflow when allocating large
26689         strings.
26690
26691 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26692
26693         * culture-info-tables.h: reflecting locale-builder updates.
26694
26695 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
26696
26697         * culture-info-tables.h: reflecting locale-builder updates.
26698
26699 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
26700
26701         * culture-info-tables.h: reflecting locale-builder updates.
26702
26703 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
26704
26705         * threads.c: Made Thread.Sleep abortable.
26706
26707 2004-06-02  Martin Baulig  <martin@ximian.com>
26708
26709         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
26710
26711         * debug-mono-symfile.h: Bumped symbol file version number to 37.
26712
26713 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
26714
26715         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
26716
26717 2004-05-30  Jackson Harper  <jackson@ximian.com>
26718
26719         * reflection.c: Do not hardcode assembly versions or public key
26720         tokens anymore. All of this except the corlib section was dead
26721         code anyways.
26722         
26723 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
26724
26725         * object.c (mono_runtime_invoke_array): Automatically create boxed
26726         objects for byref valuetypes if needed. Fixes #59300.
26727         
26728         * object.c (mono_method_return_message_restore): Handle 
26729         MONO_TYPE_OBJECT as well.
26730
26731 2004-05-28  Jackson Harper  <jackson@ximian.com>
26732
26733         * reflection.c: The modified type encoding was causing build
26734         problems. Reverted for now.
26735         
26736 2004-05-28  Jackson Harper  <jackson@ximian.com>
26737
26738         * reflection.c/h: Take an assembly ref so that we dont create
26739         fully qualified names when encoding types in the same assembly as
26740         the custom attribute being emitted.
26741         * appdomain.c: Increment version number.
26742         
26743 2004-05-26  Duncan Mak  <duncan@ximian.com>
26744
26745         * icall.c
26746         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
26747         Set the full version number (major, minor, build, revision).
26748
26749 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
26750
26751         * marshal.c (emit_struct_conv): increment src/dst after blit
26752         (mono_marshal_get_managed_wrapper,
26753         mono_marshal_get_native_wrapper): make sure we have marshalling
26754         info before marshalling params (info computation affects
26755         blittable)
26756
26757         * class.c (class_compute_field_layout): correctly deal with
26758         blittable
26759         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
26760         value types (as per what windows dows by default)
26761         (mono_class_setup_mono_type): System.ValueType is blittable
26762         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
26763         blittable
26764
26765         * marshal.c (mono_marshal_load_type_info): flag types  as
26766         non-blittable if the native layout doesn't match the managed
26767         layout
26768
26769 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26770
26771         * appdomain.c: don't add stuff in the private search path that is
26772         above the application base. If application base is not set, there's
26773         no private search path.
26774
26775 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
26776
26777         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
26778         byref struct arguments in native->managed marshalling.
26779
26780 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
26781
26782         * marshal.c (mono_marshal_get_runtime_invoke): correctly
26783         cache methods using signature (special case for methods
26784         that are value type or string class)
26785         
26786         * image.c (mono_image_close): clean up allocated GSList's
26787         in runtime_invoke_cache.
26788
26789 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26790
26791         * mono-config.c: set the correct path for mono_cfg_dir on windows when
26792         there's no MONO_CFG_DIR environment variable defined.
26793
26794 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26795
26796         * threads.c: windows version must be >= 0x0500 to include OpenThread.
26797
26798 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
26799
26800         * threadpool.c: Really wait for 500ms after the async call, even if the wait
26801           is interrumped.
26802         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
26803           before waiting for it, and call CloseHandle after the wait to unref it.
26804           This will make sure that handles are not disposed too early.
26805
26806 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26807
26808         * appdomain.c:
26809         * appdomain.h:
26810         * icall.c: removed
26811         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
26812         needed now.
26813
26814         * object.c: se the application_base only for the domain that runs
26815         Main. Fixes bug #59216,
26816
26817 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26818
26819         * appdomain.c:
26820         * object.c: only the domain in which Main is run have
26821         SetupInformation.ConfigurationFile set, so moved a few lines from
26822         appdomain.c to object.c.
26823
26824 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26825
26826         * appdomain.c: we tried to load [name].(dll|exe), but according
26827         to bug #57710, we must also try [culture]/[name].(dll|exe) and
26828         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
26829         There's a test case attached to bug #58922.
26830
26831 2004-05-27  Dick Porter  <dick@ximian.com>
26832
26833         * icall.c:
26834         * file-io.c: Implemented icalls for locking and unlocking regions
26835         in a file.
26836         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
26837         FALSE on error (fixes both compiler warning and real bug.)
26838
26839 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
26840
26841         * culture-info-tables.h: reflecting locale-builder updates.
26842
26843           (Added missing ChangeLog entry for 05/26)
26844
26845 2004-05-27  Jackson Harper  <jackson@ximian.com>
26846
26847         * locales.c: Fix some cut and paste errors.
26848         
26849 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26850
26851         * mono-config.c: set the correct path for config. directory on windows.
26852
26853 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
26854
26855         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
26856           on win32.
26857
26858 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
26859
26860         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
26861         from pinvoke functions.
26862         
26863         * marshal.c (mono_ftnptr_to_delegate): Implement this.
26864
26865 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
26866
26867         * culture-info-tables.h: reflecting locale-builder updates.
26868
26869 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
26870
26871         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
26872         #59086.
26873
26874 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
26875
26876         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
26877         * icall.c: Modified icalls for RNG.
26878         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
26879         Windows (CryptoAPI).
26880
26881 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
26882
26883         * locales.c: Fix build.
26884
26885 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
26886
26887         * culture-info-tables.h: reflecting locale-builder updates.
26888
26889 2004-05-25  Jackson Harper  <jackson@ximian.com>
26890
26891         * locales.c: When creating the current culture use the $LANGs
26892         specific culture. So DateTimeFormat and NumberFormat entries are created.
26893         
26894 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
26895
26896         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
26897         a char array as parameter.
26898
26899 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
26900
26901         * image.c: In mono_image_open(), always use an absolute path name to
26902           look for already loaded images.
26903
26904 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
26905
26906         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
26907         missing in the windows build (like older cygwin include files).
26908
26909 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
26910
26911         * icall.c: Fixed check for possible integer overflow in Buffer_
26912         BlockCopy icall. Replaced comments style // by /* */.
26913
26914 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
26915
26916         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
26917         
26918         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
26919         check after MONO_VTADDR. Fixes pinvoke2.exe.
26920
26921         * marshal.h marshal.c metadata.h: Add beginnings of support for
26922         ftnptr -> delegate marshalling.
26923
26924 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
26925
26926         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
26927         * threads.c: Fix warnings.
26928
26929 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
26930
26931         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
26932         * icall.c: Registered icalls for Suspend and Resume.
26933         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
26934           Thread.Abort.
26935         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
26936         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
26937         * process.c: Use WaitForSingleObjectEx.
26938         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
26939           checkpoints.
26940         * threads.c, threads.h: Make use of new Ex wait methods. Improved
26941           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
26942           for Suspend and Resume. Added new mono_thread_stop, used for stoping
26943           background threads. Added basic support for Abort in Windows.
26944           Start new threads using a managed delegate invoke wrapper. This wrapper
26945           has an interruption checkpoint that is needed since an interruption
26946           can be requested before the thread leaves the unmanaged code that starts 
26947           the thread.
26948         * marshal.c: Added interruption checkpoint after every native call, and
26949           also before managed calls for wrappers called from unmanaged code to
26950           go into managed code.
26951         * object.h: Added new field in MonoThread to keep track of interruption
26952           requests.
26953
26954 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
26955
26956         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
26957         calls.
26958
26959 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26960
26961         * appdomain.c:
26962         * assembly.c:
26963         * gc.c:
26964         * locales.c:
26965         * mono-config.c:
26966         * rand.c: getenv -> g_getenv (windows!)
26967
26968         * process.c: complete_path is also used on non-windows platforms.
26969
26970 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26971
26972         * icall.c: new signature for Process_Start.
26973
26974         * process.[ch]: new signature for Process_Start. If we're on windows
26975         and UseShellExecute is false, we have to search for the program by
26976         ourselves if we don't get a full path.
26977
26978 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
26979
26980         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
26981         marshalling and call CleanUpNativeData if needed. Fixes #58646.
26982
26983 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26984
26985         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
26986         Fixes bug #58373.
26987
26988 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26989
26990         * process.c: use double quotes to quote program name and arguments on
26991         windows. Fixes bug #58575.
26992
26993 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26994
26995         * file-io.c: don't return "." and ".." when using windows Find*File.
26996
26997 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
26998
26999         * marshal.c: Don't pass wrappers to message init because method 
27000         addressed used to lookup metadata. part of remoting[2|3] fix.
27001
27002 2004-05-15  Jackson Harper  <jackson@ximian.com>
27003
27004         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
27005         path is essentially the same as MONO_PATH except that it points to
27006         GACs instead of lib directories.
27007         * loader.h: The user gac is gone so we dont need function to
27008         enable/disable it.
27009         * mono-config.c: user gac option is now gone.
27010         
27011 2004-05-15  Jackson Harper  <jackson@ximian.com>
27012
27013         * culture-info.h: Make defines more consistent, add calendar data
27014         to the culture info table.
27015         * culture-info-tables.h: Add basic calendar data. Basically
27016         everyone gets default gregorian until all the data is
27017         updated.
27018         * locales.c: Use the new consistent defines. Set calendar data for
27019         culture info objects.
27020         * object.h: add a field for calendar data to CultureInfo
27021         
27022 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
27023
27024         * image.c: image->runtime_invoke_cache is keyed on signatures now.
27025         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
27026         a signature.
27027         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
27028         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
27029         an extra param that is the pointer of the method to invoke. The IL for
27030         the invoke method is no longer specific to the method, but to the
27031         signature of the method. Thus, we can share the same code for multiple
27032         methods. This reduces the number of methods that have to be compiled.
27033
27034 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
27035
27036         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
27037
27038         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27039
27040         * icall.c: Optimize Buffer.BlockCopy.
27041
27042 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27043
27044         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
27045         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
27046         quote). Changed them to "MMMM yyyy".
27047
27048 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
27049
27050         * rand.c
27051         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
27052
27053 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
27054
27055         * reflection.h: Updated after changes to managed structures.
27056
27057         * appdomain.c: Bump corlib version.
27058
27059 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27060
27061         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
27062         windows.
27063
27064 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27065
27066         * Makefile.am: link to ../os/libmonoos.la on windows.
27067
27068         * assembly.c:
27069                 -If MONO_DEBUG, warn about non-existing directories in
27070                 MONO_PATH.
27071                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
27072                 compile time variable.
27073                 -Removed init_default_path and call mono_set_rootdir from
27074                 libmonoos.a instead (windows only).
27075
27076         * assembly.h: declare mono_assembly_getrootdir().
27077
27078         * domain.c:
27079         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
27080
27081         * loader.c: s/getenv/g_getenv/
27082
27083 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
27084
27085         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27086
27087         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27088
27089         * metadata.h: Add new marshalling conversions.
27090
27091         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27092         function.
27093
27094         * reflection.c (mono_reflection_get_type): Lookup the type in all
27095         modules of a multi-module assembly. Fixes #58291.
27096
27097 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
27098
27099         * threads.c: Before aborting a background, set the StopRequested
27100         state.  This avoids throwing the Abort exception.
27101         In mono_thread_manage, don't continue with the shutdown until all
27102         aborted threads have actually stopped.
27103
27104 2004-05-10  Jackson Harper  <jackson@ximian.com>
27105
27106         * locales.c: Remove the modifier from culture names.
27107         
27108 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27109
27110         * Makefile.am: monosn is not installed any more. It has been deprecated
27111         in favor of sn.
27112
27113 2004-05-07  Jackson Harper  <jackson@ximian.com>
27114
27115         * locales.c
27116         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27117         Fix array construction, add bailout if the length is 0.
27118
27119 2004-05-07  Dick Porter  <dick@ximian.com>
27120
27121         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27122         machine doesn't have a DNS entry.  Patch by Urs Muff
27123         (umuff@quark.com), fixes bug 57928.
27124
27125 2004-05-06  Jackson Harper  <jackson@ximian.com>
27126
27127         * reflection.c: Handle null PublicTokens properly. alloc mem for
27128         assembly names culture so we dont crash when freeing it.
27129         
27130 2004-05-06  Jackson Harper  <jackson@ximian.com>
27131
27132         * assembly.c: Check the usergac when loading with partial names.
27133         
27134 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27135
27136         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27137         does nothing for now (not required for Linux/Windows) but the class
27138         library can call it (and a newer or modified runtime could need it).
27139         * icall.c: Registred icall.
27140
27141 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27142
27143         * loader.c: prints a message on module loading error we set MONO_DEBUG
27144         environment variable.
27145
27146 2004-05-05  Jackson Harper  <jackson@ximian.com>
27147
27148         * appdomain.c: Handle PublicKeyToken=null properly.
27149         
27150 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27151
27152         * environment.c|h: Added icall ves_icall_System_Environment_
27153         GetOSVersionString to get the current OS version as a string.
27154         * icall.c: Registred icall.
27155
27156 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27157
27158         * object.c: in mono_object_get_virtual_method(), take into account that
27159         non-virtual methods don't have a slot in the vtable. Check needed when
27160         the object is a proxy.
27161
27162 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27163
27164         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27165         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27166
27167         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27168
27169         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27170         passed when a valuetype is expected.
27171
27172         * object.c (mono_unhandled_exception): Only set the exit code if the
27173         exception happens in the main thread. Fixes thread5.exe.
27174
27175         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27176         invalid names. Fixes #58047.
27177
27178 2004-05-03  Jackson Harper  <jackson@ximian.com>
27179
27180         * assembly.c: This line was committed accidently and is unneeded.
27181         
27182 2004-05-03  Jackson Harper  <jackson@ximian.com>
27183
27184         * icall.c: Add new icall for Assembly::LoadWithPartialName
27185         * assembly.c/.h: new function that probes the GAC to load partial
27186         assembly names by Paolo Molaro.
27187         
27188 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27189
27190         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27191         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27192         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27193         full type name.
27194
27195 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27196
27197         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27198         * reflection.c: fix bug when parsing a full type name and Version is not
27199         the last thing in the string.
27200
27201 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27202
27203         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27204         crashes when it is freed.
27205
27206 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27207
27208         * assembly.c: print the compat warning to stderr.
27209
27210 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27211
27212         * assembly.c (mono_assembly_load_references): Add a compatibility
27213         hack to run old applications that might be still referencing the
27214         3300-based assemblies, only do this for System.xxx.
27215
27216 2004-05-01  Jackson Harper  <jackson@ximian.com>
27217
27218         * appdomain.c: If the culture is neutral we set it to "".
27219         
27220 2004-04-29  Jackson Harper  <jackson@ximian.com>
27221
27222         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27223
27224 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27225  
27226         * string-icalls.c: added low overhead function for copying chars
27227         * icall.c: added needed icall for the above function
27228  
27229 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27230
27231         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27232         Environment.GetLogicalDrives.
27233
27234 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27235
27236         * rand.c: try and talk to egd or prngd
27237         for random bytes if opening devices fail.
27238
27239 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27240
27241         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27242         alignment for the type using the native alignment of its members 
27243         instead of using klass->min_align.
27244
27245         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27246
27247 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27248
27249         * file-io.c:
27250         * socket-io.c: added check for sys/aio.h.
27251
27252 2004-04-28  Dick Porter  <dick@ximian.com>
27253
27254         * threads.c: Don't abort a thread thats already aborting, when
27255         terminating everything.
27256
27257 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27258
27259         * icall.c: added 2 new async calls for Socket.
27260
27261         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27262         IO on *nix systems.
27263
27264         * threadpool.c: removed unused variable.
27265
27266 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27267
27268         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27269
27270 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27271
27272         * locales.c: put back string_invariant_tolower () and
27273         string_invariant_toupper ().
27274
27275 2004-04-26 David Waite <mass@akuma.org>
27276
27277         * file-io.h:
27278         * socket-io.h:
27279         * threads.h:
27280         * unicode.h: remove comma from end of enumeration declarations
27281
27282 2004-04-26 David Waite <mass@akuma.org>
27283
27284         * debug-mono-symfile.h:
27285         * decimal.c:
27286         * mono_debug.h:
27287         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27288
27289
27290 2004-04-26  Jackson Harper  <jackson@ximian.com>
27291
27292         * appdomain.c: Increment version number.
27293         
27294 2004-04-26  Jackson Harper  <jackson@ximian.com>
27295
27296         * appdomain.c: Set assembly references public token value when
27297         PublicKeyToken is specified, not the hash_value. Free public token
27298         values when free assembly name data. Previously the public key
27299         token was hex decoded, however we are using hex encoded public key
27300         tokens, so this is not neccasary.
27301         * assembly.c: Lookup assemblies in the gac if their public token
27302         value is set. Add function to allow enabling user gac
27303         lookups. Specify whether or not the assembly was loaded from the
27304         GAC. Compare full assembly names when checking the cache for
27305         assemblies (Temporarily disabled see comment in code). Remove
27306         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27307         specifies trace-loader they get extra info to stdout on the
27308         loading of assemblies.
27309         * image.h: Add a field for an assembly references public token
27310         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27311         whether an assembly has been loaded from the GAC.
27312         * image.c: Remove a corlib -> mscorlib name mapping.
27313         * loader.h: Add function to enable/disable the user gac.
27314         * mono-config.c: Check if the usergac is enabled in the config
27315         file.
27316         * icall.c: New icall to determine whether or not an assembly has
27317         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27318         * tabldefs.h: Add constant for assemblyref flag that specifies a
27319         full public key is used instead of a public token.
27320         * reflection.c: Remove mscorlib -> corlib mappings. Set
27321         PublicTokenValue instead of hash value. This value is a hex
27322         string so it does not need to be expanded.
27323
27324 2004-04-26  Martin Baulig  <martin@ximian.com>
27325
27326         * mono-debug-debugger.c (mono_debugger_initialize): Set
27327         `mono_debugger_initialized' before calling mono_debug_lock().
27328
27329 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27330
27331         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27332           InternalToUpper/InternalToLower.
27333         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27334           removed invariant culture shortcut.  This is now done in managed code.
27335         * locales.c: (string_invariant_toupper/tolower) removed.
27336
27337 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27338
27339         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27340         Added Poll internal call.
27341
27342         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27343         call for Poll. Select was too heavy for polling a single socket.
27344
27345         * threadpool.[ch]: added mono_threadpool_cleanup.
27346         * threads.c: use it. Don't use Thread_Abort on windows.
27347
27348 2004-04-23  Martin Baulig  <martin@ximian.com>
27349
27350         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27351
27352 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
27353
27354         * icall.c: Registred new icalls for key pair protection and added an
27355         icall for Environment.GetFolderPath on Windows.
27356         * security.c|h: Added new icalls for key pair protection.
27357
27358 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27359
27360         * socket-io.c: don't display the non-supported family warning for known
27361         families. Now this is not displayed on windows when checking support
27362         for IPv4/IPv6.
27363
27364 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27365
27366         * class.c: don't display the layout warning for static fields.
27367
27368 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
27369
27370         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
27371         * locales.c, locales.h: Added new icalls for culture-specific
27372         Char.ToLower and Char.ToUpper.
27373
27374 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27375
27376         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
27377         by David Waite.
27378
27379 2004-04-20  Martin Baulig  <martin@ximian.com>
27380
27381         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
27382         of the type name before passing it to mono_reflection_type_from_name().
27383
27384 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
27385
27386         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
27387         encodings here. Fixes #56965.
27388
27389 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
27390
27391         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27392         fix test on strstr result not that I can see anything that
27393         relies on the result.
27394
27395 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
27396
27397         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
27398         Fixes #57081.
27399
27400         * marshal.c (mono_marshal_get_string_encoding): New helper function.
27401
27402         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
27403         function to determine which marshalling to use for strings. Fixes
27404         #56965.
27405
27406         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
27407
27408         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
27409
27410 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
27411
27412         * icall.c: #include mono-config.h
27413
27414 2004-04-15  Jackson Harper  <jackson@ximian.com>
27415
27416         * culture-info-tables.h: Fix date formats for en-US culture.
27417         
27418 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
27419
27420         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
27421         ThreadPool.SetMinThreads.
27422         * threadpool.c: Implemented ThreadPool.GetMinThreads and
27423         ThreadPool.SetMinThreads.
27424
27425 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27426
27427         * mono-config.c: also load the .config file in the directory
27428         where the assembly was found.
27429
27430 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
27431
27432         * assembly.c: load per-assembly config files.
27433         * icall.c: decrapified code to get the config dir and moved to
27434         mono-config.c.
27435         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
27436         per-assembly config files. When doing a dll map lookup give precedence
27437         to the per-assembly data.
27438
27439 2004-04-14  Martin Baulig  <martin@ximian.com>
27440
27441         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
27442         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
27443         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
27444
27445         * mono-debugger-debugger.c: While the debugger is locked, remember
27446         whether the symbol tables have changes and send one single
27447         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
27448
27449 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
27450
27451         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
27452
27453         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
27454         function.
27455
27456         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
27457         account when marshalling string arrays. Fixes #56965.
27458
27459 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
27460
27461         * icall.c: Add new icalls mapping for security.
27462         * security.c|h: Add internal calls for WindowsIdentity,
27463         WindowsImpersonationContext and WindowsPrincipal.
27464
27465 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
27466
27467         * class.c: Added comment to ensure the System.MonoDummy class
27468         is removed when no longer necessary
27469
27470 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
27471
27472         * appdomain.c: Pass arguments to the bootstraping exceptions to
27473         minimize JITed methods at boot
27474
27475         * metadata.c (mono_exception_from_name_two_strings): Allow for the
27476         second string to be null.
27477
27478         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
27479         Change the protocol to minimize the JIT methods at startup.  Now
27480         it Returns the internal codepage, if the value of "int_code_page"
27481         is 1 at entry, and we can not compute a suitable code page
27482         number, returns the code page as a string.
27483
27484 2004-04-13  Jackson Harper  <jackson@ximian.com>
27485
27486         * culture-info-tables.h: Fix number of decimal digits for all
27487         english locales.
27488
27489 2004-04-13  Jackson Harper  <jackson@ximian.com>
27490
27491         * icall.c: Clairfy out of sync error message. It is not always
27492         your corlib that is out of sync.
27493
27494 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
27495
27496         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
27497         properties when only the set accessor is overriden. Fixes #55874.
27498
27499 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
27500
27501         * assembly.c (mono_assembly_load_references): Make this thread safe.
27502         Fixes #56327.
27503
27504 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
27505
27506         * monosn.c: Add missing initialization calls.
27507
27508 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
27509
27510         * locales.c:
27511         ves_icall_System_Globalization_CultureInfo_construct_number_format
27512         Fix g_assert so it compiles on fussier compilers re int/ptr
27513         mismatch
27514
27515 2004-04-08  Dick Porter  <dick@ximian.com>
27516
27517         * socket-io.h:
27518         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
27519         53992.  Also rearrange the code so that the internal calls return
27520         an error value and exceptions are thrown from managed code.
27521
27522         * icall.c: Add type info to the socket icalls.
27523
27524 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27525
27526         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
27527         owes me a beer.
27528
27529 2004-04-07  Martin Baulig  <martin@ximian.com>
27530
27531         * class.c (mono_class_from_generic_parameter): Don't default
27532         `klass->parent' to `mono_defaults.object_type'.
27533
27534 2004-04-07  Martin Baulig  <martin@ximian.com>
27535
27536         * reflection.c (mono_reflection_initialize_generic_parameter): Set
27537         `param->pklass->reflection_info'.       
27538
27539 2004-04-07  Jackson Harper  <jackson@ximian.com>
27540
27541         * culture-info-tables.h: Fix date separator symbol.
27542         
27543 2004-04-07  Martin Baulig  <martin@ximian.com>
27544
27545         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
27546         from System.Type to System.MonoType.
27547
27548 2004-04-07  Martin Baulig  <martin@ximian.com>
27549
27550         * reflection.h
27551         (MonoReflectionGenericParam): Added `has_reference_type' and
27552         `has_value_type' fields.
27553
27554         * reflection.c (mono_image_get_generic_param_info): Encode the
27555         correct flags if we have the `class' or `struct' constraint.
27556
27557 2004-04-07  Martin Baulig  <martin@ximian.com>
27558
27559         * reflection.h
27560         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
27561
27562 2004-04-07  Jackson Harper  <jackson@ximian.com>
27563
27564         * appdomain.c: Revert extra patches, just wanted to bump the
27565         version number.
27566         
27567 2004-04-07  Jackson Harper  <jackson@ximian.com>
27568
27569         * Makefile.am: Add culture-info private headers.
27570         * icall.c: Add new icalls for contructing locales.
27571         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
27572         * locales.h: Declare new culture info construction methods.
27573         * object.h: Add new fields used to avoid the CultureMap to
27574         MonoCultureInfo.
27575         * culture-info.h: Definition of structs used in the culture info
27576         tables.
27577         * culture-info-tables.h: Autogenerated tables that contain culture
27578         info data. This file was generated with the locale-builder tool.
27579         * appdomain.c: Incement corlib version number.
27580         
27581 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
27582
27583         * appdomain.c: (mono_runtime_init) move mono_thread_init
27584         to before mono_object_new calls so critical sections
27585         are initialized before use.
27586
27587 2004-04-07  Martin Baulig  <martin@ximian.com>
27588
27589         * icall.c
27590         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
27591         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
27592         (ves_icall_MonoGenericParam_initialize): Removed.
27593         (monogenericparam_icalls): Removed.
27594         (generictypeparambuilder_icalls): Added new table for
27595         System.Reflection.Emit.GenericTypeParameterBuilder.
27596
27597         * reflection.c
27598         (mono_reflection_define_generic_parameter): Removed.
27599         (mono_reflection_initialize_generic_parameter): This is now called
27600         from GenericTypeParameterBuilder's .ctor.
27601
27602 2004-04-06  Martin Baulig  <martin@ximian.com>
27603
27604         * class.c (mono_class_init): Don't inflate nested classes in a
27605         generic instance.
27606         (mono_type_get_name_recurse): Include the generic arguments for
27607         generic instances and generic type declarations.
27608         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
27609         (_mono_class_get_instantiation_name): Removed.
27610         (mono_class_create_generic): Always use `gklass->name' as our name.
27611
27612         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
27613
27614         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
27615         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
27616         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
27617         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
27618         closed generic methods here.
27619
27620         * reflection.c
27621         (mono_reflection_generic_inst_get_nested_types): Removed.
27622         (inflate_mono_method): Copy the generic parameters from the
27623         MonoMethodHeader into out MonoGenericMethod.
27624
27625 2004-04-06  Martin Baulig  <martin@ximian.com>
27626
27627         * row-indexes.h
27628         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
27629
27630         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
27631
27632         * reflection.c (build_compressed_metadata): If we have any entries
27633         in the GenericParam, MethodSpec or GenericParamConstraint tables,
27634         set the header version to 1.1.
27635
27636 2004-04-06  Martin Baulig  <martin@ximian.com>
27637
27638         * class.c (mono_class_init): If we're a generic instance,
27639         initialize our nested classes, too.
27640         (_mono_class_get_instantiation_name): Deal with the new `!%d'
27641         suffix. 
27642
27643 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27644
27645         * process.c: quote the argument passed to the shell on windows.
27646
27647 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
27648
27649         * threads.c (mono_alloc_special_static_data): Allow this to be
27650         called during startup.
27651
27652 2004-04-02  Martin Baulig  <martin@ximian.com>
27653
27654         * icall.c
27655         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
27656
27657 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
27658
27659         * icall.c: Fix build.
27660
27661 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
27662
27663         * Makefile.am: Added security.c|h.
27664         * icall.c: Added icall for get_UserName;
27665         * security.c: New file for security related icalls. Added function
27666         get_UserName for System.Environment (fix #56144).
27667         * security.h: New. Header file for security.c
27668
27669 2004-04-02  Dick Porter  <dick@ximian.com>
27670
27671         * icall.c: Deleted the icalls that were obsoleted some time ago
27672         by the ICU string code, and which were mixed into the icall
27673         rearranging.  Fixes bug 55969.
27674
27675         * string-icalls.h: 
27676         * string-icalls.c: Deleted the code that those icalls reference.
27677
27678 2004-04-01  Martin Baulig  <martin@ximian.com>
27679
27680         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
27681
27682         * class.c (mono_class_from_generic_parameter): Don't set 
27683         TYPE_ATTRIBUTE_INTERFACE.
27684         (my_mono_class_from_generic_parameter): Likewise.
27685
27686 2004-04-01  Martin Baulig  <martin@ximian.com>
27687
27688         * loader.c (find_method): Added an optional `MonoClass *ic'
27689         argument to search in a specific interface.
27690         (mono_get_method_constrained): New public function.
27691
27692 2004-04-01  Martin Baulig  <martin@ximian.com>
27693
27694         * reflection.c (mono_image_get_generic_field_token): Use the
27695         `handleref' cache here.
27696
27697 2004-04-01  Martin Baulig  <martin@ximian.com>
27698
27699         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
27700
27701         * reflection.c (create_generic_typespec): Use the `typespec' hash
27702         here, not the `typeref' one.    
27703
27704 2004-04-01  Martin Baulig  <martin@ximian.com>
27705
27706         * class.c (mono_class_inflate_generic_type): Moved the
27707         functionality into a new static inflate_generic_type() which
27708         returns NULL if it didn't do anything.  Only increment the
27709         `mono_stats.inflated_type_count' if we actually inflated
27710         something.
27711         (mono_class_get_full): Check the classes type to see whether we
27712         need to inflate it; also inflate MONO_TYPE_(M)VAR.
27713
27714 2004-04-01  Jackson Harper  <jackson@ximian.com>
27715
27716         * reflection.c: Set culture for assembly references.
27717         
27718 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
27719
27720         * reflection.[ch], icall.[ch], Fix support for pinning variables.
27721
27722 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27723
27724         * assembly.c:
27725         (do_mono_assembly_open): the critical section also covers
27726         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
27727
27728 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27729
27730         * threads.c:
27731         (mono_manage_threads): abort the background threads when finishing.
27732         Fixes bug #47232.
27733
27734 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27735
27736         * gc.c: only close the done_event handle if there was no timeout.
27737         C-ified comments.
27738
27739 2004-03-30  Martin Baulig  <martin@ximian.com>
27740
27741         * icall.c (icall_entries): It's called "System.Activator", not
27742         "System.Activation".    
27743
27744 2004-03-30  Martin Baulig  <martin@ximian.com>
27745
27746         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
27747         (mono_class_create_from_typespec): Likewise.
27748
27749 2004-03-30  Martin Baulig  <martin@ximian.com>
27750
27751         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
27752         `has_ctor_constraint' and `initialized'.
27753
27754 2004-03-30  Martin Baulig  <martin@ximian.com>
27755
27756         * reflection.c (encode_new_constraint): New static function to add
27757         the constructor constraint attribute to a type parameter.
27758         (encode_constraints): Call encode_new_constraint() if necessary.
27759
27760         * reflection.h
27761         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
27762
27763         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
27764         
27765 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
27766
27767         * reflection.c, icall.c: add support for pinning variables. 
27768
27769 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
27770
27771         * marshal.c (mono_marshal_get_managed_wrapper):
27772         init bool local with zero rather than null.
27773
27774 2004-03-29  Martin Baulig  <martin@ximian.com>
27775
27776         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
27777         the "official" behavior here.
27778         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
27779
27780 2004-03-29  Martin Baulig  <martin@ximian.com>
27781
27782         * icall.c: Reflect latest API changes.
27783
27784 2004-03-29  Martin Baulig  <martin@ximian.com>
27785
27786         * loader.c (mono_get_method_from_token): Also call
27787         mono_metadata_load_generic_params () for abstract and interface
27788         methods; replace the type arguments in the method signature with
27789         the ones which are loaded from the metadata.
27790
27791 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
27792
27793         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
27794         of the lock is not the current thread. MS.NET don't do it, in spite of
27795         what the documentation says. See bug #56157.
27796
27797 2004-03-28  Martin Baulig  <martin@ximian.com>
27798
27799         * class.c (mono_class_init): Don't call init_properties() and
27800         init_events() for generic instances; set `prop->parent' when
27801         inflating properties.
27802
27803         * reflection.c (mono_generic_inst_get_object): Call
27804         `mono_class_init (ginst->klass)'.
27805         (mono_type_get_object): Only create a MonoGenericInst if your
27806         generic type is a TypeBuilder.
27807         (do_mono_reflection_bind_generic_parameters): Only set
27808         `ginst->is_dynamic' if our generic type is a TypeBuilder.
27809
27810 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
27811
27812         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
27813         Fixes #56091.
27814
27815 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27816
27817         * icall.c: added Kill_internal icall.
27818         * process.[ch]: added Kill_internal icall.
27819
27820 2004-03-25  Martin Baulig  <martin@ximian.com>
27821
27822         * class.h (MonoStats): Added `generic_instance_count',
27823         `inflated_method_count', `inflated_type_count' and
27824         `generics_metadata_size'.       
27825
27826 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27827
27828         * reflection.c: no warnings now.
27829
27830 2004-03-25  Martin Baulig  <martin@ximian.com>
27831
27832         * class.c (mono_class_get_full): New public function; does a
27833         mono_class_get(), but also takes a `MonoGenericContext *'.
27834
27835         * loader.c (mono_field_from_memberref): Renamed to
27836         `field_from_memberref', made static and added `MonoGenericContext *'
27837         argument.
27838         (mono_field_from_token): Added `MonoGenericInst *' argument.
27839         (method_from_memberef): Likewise.
27840         (mono_get_method_from_token): Likewise.
27841         (mono_get_method_full): New public function; does a
27842         mono_get_method(), but also takes a `MonoGenericContext *'.
27843
27844         * verify.c (mono_method_verify): Get the method's generic context
27845         and pass it to mono_field_from_token(), mono_get_method_full() and
27846         mono_class_get_full().
27847
27848 2004-03-25  Martin Baulig  <martin@ximian.com>
27849
27850         * class.c (mono_class_inflate_generic_type): Take a
27851         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
27852         `MonoGenericMethod *'.
27853
27854 2004-03-25  Martin Baulig  <martin@ximian.com>
27855
27856         * loader.h (MonoMethodInflated): Store the MonoGenericContext
27857         instead of the MonoGenericMethod here.
27858
27859 2004-03-25  Martin Baulig  <martin@ximian.com>
27860
27861         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
27862         each time we create a new MonoGenericInst, we also create a new
27863         context which points back to us.
27864
27865         * class.c (inflate_method): Use `ginst->context' instead of
27866         creating a new context.
27867
27868         * loader.c (method_from_memberref): Use
27869         `klass->generic_inst->context' instead of creating a new context.
27870
27871 2004-03-25  Martin Baulig  <martin@ximian.com>
27872
27873         * class.h (MonoGenericContext): New struct.
27874         (MonoGenericMethod): Removed `generic_inst'.
27875
27876         * class.c (mono_class_inflate_generic_method): Take a
27877         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
27878
27879 2004-03-25  Martin Baulig  <martin@ximian.com>
27880
27881         * loader.h (MonoMethodInflated): New typedef.
27882
27883         * metadata.h (MonoMethodSignature): Removed `gen_method', make
27884         `generic_param_count' consume just 30 bits, added `is_inflated'
27885         and `has_type_parameters' flags (one bit each).
27886
27887         * class.c (mono_class_inflate_generic_method): Create a
27888         MonoMethodInflated instead of a MonoMethodNormal and set
27889         `is_inflated' in the method signature.
27890
27891         * class.h (MonoGenericMethod): Removed `generic_method'.
27892
27893 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
27894
27895         * image.c: Make sure the name of a MonoImage is always an absolute path.
27896           This fixes bug #54415.
27897
27898 2004-03-24  Martin Baulig  <martin@ximian.com>
27899
27900         * class.c (mono_class_setup_vtable): If we're a generic instance,
27901         use our generic type's vtable size.
27902
27903 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
27904
27905         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
27906         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
27907         problems.
27908
27909 2004-03-23  Martin Baulig  <martin@ximian.com>
27910
27911         * class.h (MonoDynamicGenericInst): Added `int count_events' and
27912         `MonoEvent *events'.
27913
27914         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
27915         (typebuilder_icalls): Added "get_event_info"; calls
27916         mono_reflection_event_builder_get_event_info(). 
27917
27918         * reflection.c (mono_reflection_generic_inst_initialize): Added
27919         `MonoArray *events'.
27920         (mono_reflection_event_builder_get_event_info): New function.
27921
27922 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
27923
27924         * object.h: add mono_type_initialization_init
27925
27926         * object.c (mono_runtime_class_init): 
27927         implement class constructor synchronization rules
27928         to cope with threading issues.  
27929         add mono_type_initialization_init
27930
27931         * appdomain.c (mono_runtime_init): call 
27932         mono_type_initialization_init
27933
27934         * class.h: removing initializing field from MonoVTable
27935
27936 2004-03-23  Martin Baulig  <martin@ximian.com>
27937
27938         * class.c (my_mono_class_from_generic_parameter): Use
27939         `param->name' if it's not NULL. 
27940
27941 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
27942
27943         * class.c: do not insert non-virtual methods in the vtable.
27944         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
27945         that means the method is non-virtual. This never would have
27946         happened before.
27947
27948 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
27949
27950         * profiler.c: Added lock for accessing coverage_hash.
27951
27952 2004-03-22  Martin Baulig  <martin@ximian.com>
27953
27954         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
27955         `method->method->signature->generic_param_count != 0' to make it
27956         work for interface methods.
27957
27958 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27959
27960         * process.c: quote the string passed to the shell using g_shell_quote.
27961
27962 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27963
27964         * threads.c:
27965         (mono_threads_manage): don't remove the finalizer thread and self
27966         from the threads hash table so that mono_thread_manage can be called
27967         more than once.
27968
27969 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27970
27971         * process.c: quote the arguments when UseShellExecute is true. Fixes
27972         bug #55790.
27973
27974 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27975
27976         * threads.c: set mono_thread_detach as a cleanup routine for every
27977         thread. This way it's always executed upon thread termination, either
27978         aborted or finished normally. No more xsp hangs!
27979
27980 2004-03-17  Martin Baulig  <martin@ximian.com>
27981
27982         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
27983         `int count_nested' and a `MonoType **nested'.
27984
27985         * reflection.c (mono_reflection_bind_generic_parameters): Moved
27986         most of the functionality into a new static
27987         do_mono_reflection_bind_generic_parameters() and don't take a
27988         `MonoType *nested_in' argument any more.  Don't compute nested
27989         types here.
27990         (mono_reflection_generic_inst_get_nested_types): New public method
27991         to get nested types.
27992
27993         * class.c (mono_class_create_generic): Set `klass->nested_in' if
27994         we're a nested class.
27995
27996         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
27997         mono_reflection_generic_inst_get_nested_types() to compute the
27998         nested types.
27999
28000 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28001
28002         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
28003         descriptive error message under windows.
28004         
28005 2004-03-17  Martin Baulig  <martin@ximian.com>
28006
28007         * class.c (dup_type): Added `const MonoType *original' argument;
28008         copy the attrs from the original type.
28009
28010 2004-03-17  Martin Baulig  <martin@ximian.com>
28011
28012         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
28013         `m->generic_inst_cache' here.
28014
28015 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28016
28017         * exception.h exception.c: Add stack_overflow_exception.
28018
28019 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28020
28021         * threadpool.c:
28022         (overlapped_callback): call SetEvent *after* invoking the callback.
28023         No need to call CloseHandle.
28024
28025 2004-03-16  Martin Baulig  <martin@ximian.com>
28026
28027         * reflection.c (mono_image_get_fieldref_token): Take a
28028         `MonoReflectionField *' instead of a `MonoClassField *' and a
28029         `MonoClass *'; store the `MonoReflectionField *' in the hash.
28030
28031 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28032
28033         * appdomain.c: don't add the culture to the filename we're looking for
28034         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
28035
28036 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28037
28038         * locales.c: don't ignore symbols when doing case insensitive compares.
28039         Thanks Dick! Fixes bug #54046.
28040
28041         * threads.c: surround 'threads' usage with enter/leave in
28042         mono_thread_manage.
28043
28044 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
28045
28046         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
28047         implicitly marshalled as [Out]. Fixes #55450.
28048
28049         (mono_marshal_get_runtime_invoke): Zero out the result if there is
28050         an exception.
28051
28052 2004-03-16  Martin Baulig  <martin@ximian.com>
28053
28054         * class.c (mono_class_from_generic_parameter): Use the actual
28055         parameter name. 
28056
28057 2004-03-16  Martin Baulig  <martin@ximian.com>
28058
28059         * reflection.c (type_get_signature_size): New static function.
28060         Compues the size of the type in a method signature.
28061         (method_get_signature_size): New static function; calls
28062         type_get_signature_size() to compute the actual size of the
28063         method's signature.
28064         (method_encode_signature): Use method_get_signature_size() to get
28065         the signature's size rather than using `nparams * 10'.
28066
28067 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28068
28069         * file-io.h: define here WapiOverlapped on windows. I don't want the
28070         regular OVERLAPPED one.
28071
28072         * file-io.c:
28073         * threadpool.c: somehow, BindIoCompletionCallback is not found.
28074         Disabling AIO on windows.
28075
28076 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28077
28078         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
28079         bug #55385.
28080
28081 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28082
28083         * appdomain.c: upgraded corlib version.
28084
28085         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28086         and BeginWrite. Allow opening files for asynchrnous operations.
28087
28088         * file-io.h: new struct that maps FileStreamAsyncResult.
28089         * icall.c: added new icalls.
28090         * process.[ch]: support setting child process environment variables
28091         and use the SHELL or COMSPEC when UseShellExecute is true.
28092
28093         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28094         callback for async. IO is here and also BindHandle.
28095
28096         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28097         from here.
28098
28099 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
28100
28101         * reflection.c (create_custom_attr): Allow len == 0.
28102
28103         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28104         computation on big-endian machines.
28105
28106 2004-03-13  Martin Baulig  <martin@ximian.com>
28107
28108         * class.h (MonoGenericInst): Added `int count_ifaces'.
28109
28110         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28111         `ginst->count_ifaces' instead `klass->interface_count' since we
28112         may get called before the vtable is created.
28113
28114         * loader.c (mono_method_get_param_names): If we're a generic
28115         instance, return and don't initialize the class.
28116
28117         * reflection.c (mono_reflection_setup_generic_class): Don't call
28118         ensure_runtime_vtable().
28119         (mono_reflection_bind_generic_parameters): Set
28120         `ginst->count_ifaces'.
28121
28122 2004-03-11  Jackson Harper <jackson@ximian.com>
28123
28124         * icall.c:
28125         * unicode.c:
28126         * unicode.h: Remove unused System.Char icalls.
28127         
28128 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28129
28130         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28131         code when we P/Invoke the first library in Windows.Forms, instead
28132         of when we first open the assembly.
28133
28134         * assembly.c: Drop the lookup from here.
28135
28136 2004-03-10  Martin Baulig  <martin@ximian.com>
28137
28138         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28139         class for properties, fields and events.  Finally fixes #54945.
28140
28141 2004-03-10  Martin Baulig  <martin@ximian.com>
28142
28143         * metadata.c (mono_metadata_class_equal): New static function;
28144         checks whether two generic instances or two generic parameters are
28145         equal.
28146         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28147         compare classes.        
28148
28149 2004-03-10  Martin Baulig  <martin@ximian.com>
28150
28151         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28152
28153         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28154         argument and write it into the `reflection_info' field.
28155
28156         * icall.c
28157         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28158         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28159
28160 2004-03-09  Jackson Harper  <jackson@ximian.com>
28161
28162         * char-conversions.h: use 8 bits for numeric data its all we need
28163         * icall.c: numeric data is only 8 bits now.
28164
28165 2004-03-09  Martin Baulig  <martin@ximian.com>
28166
28167         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28168
28169         * class.c (init_properties, init_events): Initialize the new
28170         `parent' field.
28171
28172         * reflection.c (typebuilder_setup_properties): Likewise.
28173         (typebuilder_setup_events): Likewise.
28174
28175         * reflection.h (MonoEventInfo): Replaced `parent with
28176         `declaring_type' and `reflected_type'.
28177
28178         * icall.c (ves_icall_get_property_info): Distinguish between
28179         declaring and reflected type.
28180         (ves_icall_get_event_info): Likewise.
28181
28182 2004-03-09  Martin Baulig  <martin@ximian.com>
28183
28184         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28185         (ves_icall_Type_GetField): Correctly set field->klass.
28186
28187 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28188
28189         * loader.h: Fix warning.
28190
28191 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28192
28193         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28194         library routine if present.  Notice that it will still continue
28195         executing even if its missing, for those working on the Gtk#
28196         edition of Windows.Forms.
28197
28198         * assembly.c (do_mono_assembly_open): If loading the
28199         System.Windows.Forms call mono_loader_wini_init.
28200
28201 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28202
28203         * class.h: Added MonoRemoteClass struct.
28204         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28205         function for MonoStrings.
28206         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28207         Added internal call for getting the proxy type.
28208         * marshal.c: Get the type of transparent proxies from its remote_class.
28209         Added methods that generate the IL for type checks and casts:
28210         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28211         mono_marshal_get_proxy_cancast.
28212         * marshal.h: Declaration of the previous new methods.
28213         * object.c: Added new moethods for creating and updating MonoRemoteClass
28214         instances: mono_remote_class, mono_upgrade_remote_class, 
28215         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28216         * verify.c: FIx transparent_proxy_fields layout.
28217         * appdomain.c: Bump corlib version.
28218
28219 2004-03-04  Jackson Harper  <jackson@ximian.com>
28220
28221         * icall.c: Add icall to access char conversion tables.
28222         * char-conversions.h: Character conversion tables.
28223         * Makefile.am: Add char-conversions.h private header file.
28224         
28225 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28226
28227         * appdomain.c (unload_thread_main): Increase unloading timeout to
28228         10 sec as a temporary workaround for Nant problems.
28229
28230 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28231
28232         * gc.c: Add checks for GC_enable and GC_disable.
28233
28234         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28235         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28236         (bug #54988).
28237         
28238 2004-02-27  Martin Baulig  <martin@ximian.com>
28239
28240         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28241         `MonoReflectionType *' instead of a `MonoType *'.
28242
28243 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28244
28245         * gc.c (run_finalize): Avoid finalizing the object representing the
28246         finalizer thread.
28247         (finalizer_thread): Fix warning.
28248
28249 2004-02-25  Martin Baulig  <martin@ximian.com>
28250
28251         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28252         argument for nested types.
28253         (mono_class_create_generic): Added support for nested generictypes.
28254
28255         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28256         `GList *nested'.
28257
28258         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28259
28260         * reflection.c (method_encode_signature): Increase the minimum
28261         value of `size' from 10 to 11.
28262         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28263         and `MonoType **types' arguments instead of the `MonoArray
28264         *types'; added `MonoType *nested_in'.  Recursively instantiate
28265         nested classes. 
28266
28267 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28268
28269         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28270         stack_overflow_ex members which are used by exception handling.
28271
28272         * appdomain.c (mono_runtime_init): Initialize the new members.
28273
28274         * gc.c (mono_gc_enable): New helper function.
28275         * gc.c (mono_gc_disable): New helper function.
28276
28277 2004-02-23  Martin Baulig  <martin@ximian.com>
28278
28279         * icall.c: I must have been really stupid - make it actually work
28280         this time ;-)
28281
28282 2004-02-23  Martin Baulig  <martin@ximian.com>
28283
28284         * loader.c (method_from_memberref): Only inflate the method if
28285         it's in another klass.
28286
28287 2004-02-23  Martin Baulig  <martin@ximian.com>
28288
28289         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28290         (mono_class_init): If we're a generic instance and an interface,
28291         compute `class->interface_id'; also create `class->interfaces'
28292         here and inflate them.
28293
28294         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28295         `ginst->is_open'.
28296         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28297
28298         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28299
28300 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28301
28302         * reflection.c (method_encode_code): Improved the error message
28303         generated by the exception.
28304
28305 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28306
28307         * icall.c: Martin did not do what he said in the ChangeLog for
28308         2004-02-18, but put back the changes for properties and events.
28309         Commenting those changes out again and adding comment to bug #54518.
28310         
28311         * process.c: removed warning.
28312
28313 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28314
28315         * marshal.c (emit_struct_conv): Print an error message instead of
28316         asserting when a type does not have the StructLayout attribute.
28317
28318 2004-02-20  Martin Baulig  <martin@ximian.com>
28319
28320         * reflection.c (mono_type_get_object): Also use the cache for
28321         generic instances.
28322         (mono_reflection_bind_generic_parameters): Always compute
28323         `ginst->ifaces'.        
28324
28325 2004-02-20  Martin Baulig  <martin@ximian.com>
28326
28327         * class.h (MonoGenericMethod): Removed `klass'.
28328
28329         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28330         *klass' argument.
28331
28332 2004-02-20  Martin Baulig  <martin@ximian.com>
28333
28334         * reflection.c (method_encode_methodspec): Actually use the
28335         uninflated signature for the memberref.
28336
28337 2004-02-20  Martin Baulig  <martin@ximian.com>
28338
28339         * class.h (MonoGenericMethod): Removed `declaring'.
28340
28341         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28342         is NULL, compute it here.
28343
28344 2004-02-20  Martin Baulig  <martin@ximian.com>
28345
28346         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28347
28348         * metadata.c (mono_metadata_generic_inst_hash): New method.
28349         (mono_metadata_generic_inst_equal): New method.
28350
28351         * reflection.c (mono_reflection_bind_generic_parameters): Use the
28352         `klass->image->generic_inst_cache' cache to avoid creating
28353         duplicate MonoGenericInst's.
28354
28355         * class.c (mono_class_inflate_generic_type): Use the cache.
28356
28357 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
28358
28359         * object.c: fixed gc descriptor calculation for embedded valuetypes.
28360
28361 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28362
28363         * icall.c: added Socket.WSAIoctl icall.
28364
28365         * socket-io.[ch]: implemented
28366         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
28367
28368 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
28369
28370         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
28371
28372 2004-02-18  Urs C Muff  <umuff@quark.com>
28373
28374         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
28375         this work on PPC and other big-endian architectures.
28376
28377         * debug-mono-symfile.h: Prepended the names of all the `guint32'
28378         fields with an underscore to make sure they're only accessed by
28379         the read32() macro.
28380
28381 2004-02-18  Martin Baulig  <martin@ximian.com>
28382
28383         * icall.c: Put the klass->refclass changes back for methods and
28384         fields, but not for properties and events.  We're currently not
28385         distinguishing between DeclaringType and ReflectedType for
28386         properties and events, that's what caused the regressions.
28387
28388 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28389
28390         * object.c:
28391         (mono_async_result_new): the handle can be NULL.
28392
28393         * threadpool.c: Use an event instead of a semaphore, don't initialize
28394         it until needed. This saves quite a few semaphores from being created
28395         when using the threadpool.
28396
28397 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
28398
28399         * object.c (mono_string_is_interned_lookup): Fix interning of long
28400         strings. Fixes #54473.
28401
28402         * domain.c (ldstr_equal): Optimize if the two strings are equal.
28403
28404         * icall.c: Revert the klass->refclass changes since they introduce
28405         regressions (bug #54518).
28406
28407 2004-02-18  Martin Baulig  <martin@ximian.com>
28408
28409         * class.c (mono_class_init): If we're a generic instance and don't
28410         come from a TypeBuilder, inflate our members here.
28411         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
28412         (mono_class_create_generic): New public method.
28413         (mono_class_initialize_generic): Removed.
28414         (get_instantiation_name): Renamed to
28415         _mono_class_get_instantiation_name() and made it public.
28416
28417 2004-02-18  Martin Baulig  <martin@ximian.com>
28418
28419         * class.c (mono_class_inflate_generic_type): Clear the new
28420         instance's `nginst->klass' when inflating a generic instance.
28421         (mono_class_is_subclass_of): Added (basic) support for generic
28422         instances.
28423
28424 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
28425
28426         * appdomain.h, domain.c: use a MonoCodeManager instead of a
28427         MonoMempool to hold compiled native code.
28428
28429 2004-02-17  Martin Baulig  <martin@ximian.com>
28430
28431         * class.h (MonoDynamicGenericInst): Added `count_properties' and
28432         `properties'.
28433
28434         * reflection.c (mono_reflection_generic_inst_initialize): Added
28435         `MonoArray *properties' argument.
28436
28437         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
28438
28439 2004-02-17  Martin Baulig  <martin@ximian.com>
28440
28441         * icall.c (ves_icall_Type_GetFields): Renamed to
28442         ves_icall_Type_GetFields_internal() and added a
28443         `MonoReflectionType *rtype' argument; pass it to
28444         mono_field_get_object() to set the field's "reflected" type.
28445         (ves_icall_Type_GetConstructors): Likewise.
28446         (ves_icall_Type_GetEvents): Likewise.
28447         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
28448         argument; pass it to mono_method_get_object() to set the method's
28449         "reflected" type.       
28450
28451 2004-02-17  Martin Baulig  <martin@ximian.com>
28452
28453         * class.h (MonoDynamicGenericInst): New type.
28454         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
28455
28456         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
28457         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
28458         (ves_icall_MonoGenericInst_GetFields): New interncall.
28459
28460         * class.c (mono_class_from_generic): Don't call
28461         mono_class_initialize_generic() if this is a dynamic instance;
28462         ie. it's being created from a TypeBuilder.
28463         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
28464         `class->byval_arg.type'.
28465
28466         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
28467         to `inflate_method' and made static.
28468         (mono_reflection_inflate_field): Removed.
28469         (mono_reflection_generic_inst_initialize): New public method.
28470
28471         * reflection.h (MonoReflectionGenericInst): Removed `methods',
28472         `ctors' and `fields'; added `initialized'.
28473
28474 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
28475
28476         * debug-helpers.c (mono_method_full_name): Fix output for empty
28477         namespaces.
28478
28479 2004-02-12  Martin Baulig  <martin@ximian.com>
28480
28481         * class.h (MonoClassField): Added `MonoType *generic_type'.
28482
28483         * reflection.c (mono_image_get_fieldref_token): Added support for
28484         instantiated generic types.
28485         (field_encode_inflated_field): Removed.
28486         (mono_image_get_inflated_field_token): Removed.
28487         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
28488
28489         * reflection.h (MonoReflectionInflatedField): Removed.
28490
28491 2004-02-12  Martin Baulig  <martin@ximian.com>
28492
28493         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
28494         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
28495
28496         * reflection.c (mono_image_get_methodspec_token): Take a
28497         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
28498         (mono_image_create_token): Check whether we have a
28499         `method->signature->gen_method' and call
28500         mono_image_get_methodspec_token() if appropriate.
28501         (inflated_method_get_object): Removed.
28502         (mono_reflection_bind_generic_method_parameters): Return a
28503         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
28504         (mono_reflection_inflate_method_or_ctor): Likewise.
28505
28506         * reflection.h (MonoReflectionInflatedMethod): Removed.
28507
28508 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
28509
28510         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
28511         for custom valuetype marshalling.
28512
28513         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
28514
28515 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28516
28517         * icall.c: fixed WSAGetLastError_internal name.
28518
28519 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
28520
28521         * threads.c (mono_thread_attach): Allow this to be called multiple
28522         times for a thread.
28523         
28524         * threads.c (build_wait_tids): Do not wait for ourselves.
28525
28526         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
28527         appdomain list is empty.
28528
28529         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
28530         memory returned by mono_string_builder_to_utf16, since it points into
28531         managed memory. Thanks to Bernie Solomon for noticing this.
28532
28533         * icall.c: Add AppDomainSetup icalls.
28534
28535         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
28536
28537         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
28538         types.
28539
28540         * reflection.c (reflection_methodbuilder_to_mono_method): Save
28541         custom attributes to the method_aux struct. Also fix array indexes etc.
28542
28543         * loader.c (mono_method_get_param_names): Make dynamic case work again.
28544         
28545 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
28546
28547         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
28548         (both static and runtime) and reduce startup time.
28549
28550 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
28551
28552         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
28553         AsAny marshalling conversion instead of crashing.
28554
28555         * marshal.c: Fix warnings.
28556
28557 2004-02-09  Martin Baulig  <martin@ximian.com>
28558
28559         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
28560
28561         * reflection.h (MonoReflectionInflatedMethod): Removed the
28562         `declaring' field, it's now in the unmanaged MonoGenericMethod.
28563
28564         * reflection.c (method_encode_methodspec): Removed the `method'
28565         argument; we get it from `gmethod->declaring'.
28566         (inflated_method_get_object): Removed the `declaring' argument.
28567
28568 2004-02-09  Martin Baulig  <martin@ximian.com>
28569
28570         * class.h (MonoGenericMethod): New type.
28571         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
28572         `generic_method'.
28573
28574         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
28575         a `MonoGenericMethod *gen_method' one.
28576
28577         * class.c (mono_class_inflate_generic_type): Take an additional
28578         `MonoGenericMethod * argument.  This is only non-NULL if we're
28579         inflating types for a generic method.   
28580         (mono_class_inflate_generic_signature): Renamed to
28581         inflate_generic_signature() and made static; take a
28582         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28583         (inflate_generic_header): Take a `MonoGenericMethod *' argument
28584         instead of a `MonoGenericInst *' one.
28585         (mono_class_inflate_generic_method): Likewise.
28586
28587         * reflection.c (encode_generic_method_sig): Take a
28588         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
28589         (method_encode_methodspec): Likewise.
28590         (inflated_method_get_object): Likewise. 
28591
28592         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
28593         field with a `MonoGenericMethod *gmethod' one.  
28594
28595 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
28596
28597         * class.h (mono_class_has_parent): add parens to expansion
28598         so you can ! this.
28599
28600 2004-02-08  Martin Baulig  <martin@ximian.com>
28601
28602         * image.h (MonoImage): Removed `generics_cache'.
28603
28604         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
28605         instead of a `MonoType *' argument; removed the `inflate_methods'
28606         argument.  Don't inflate methods here.
28607
28608         * loader.c (find_method): If it's a generic instance, call
28609         mono_class_init() on the `sclass->generic_inst->generic_type'.
28610
28611         * metadata.c (mono_type_size): Make this work on uninitialized
28612         generic instances; call it on the `ginst->generic_type's class.
28613
28614         * reflection.c (mono_reflection_bind_generic_parameters): Call
28615         mono_class_from_generic() to create the `ginst->klass'.
28616
28617 2004-02-08  Martin Baulig  <martin@ximian.com>
28618
28619         * class.h (MonoClass): Changed type of `generic_inst' from
28620         `MonoType *' to `MonoGenericInst *'.
28621
28622 2004-02-08  Martin Baulig  <martin@ximian.com>
28623
28624         * icall.c (ves_icall_Type_BindGenericParameters): Just call
28625         mono_type_get_object(), this is now creating a `MonoGenericInst'
28626         for MONO_TYPE_GENERICINST.
28627         (ves_icall_MonoGenericInst_GetParentType): Likewise.
28628         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
28629
28630         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
28631         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
28632         (inflated_method_get_object): Added `MonoClass *refclass' argument.
28633         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
28634         and reflected type.
28635
28636         * reflection.h (MonoReflectionInflatedMethod): Removed
28637         `declaring_type' and `reflected_type'.
28638
28639 2004-02-08  Martin Baulig  <martin@ximian.com>
28640
28641         * class.h (MonoGenericInst): Added `MonoType *parent' and
28642         `MonoType **ifaces'.
28643
28644         * reflection.h (MonoReflectionGenericInst): Removed `klass',
28645         `parent' and `interfaces'.
28646
28647         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28648         `MonoType *' argument and return a `MonoType *'.
28649
28650         * icall.c
28651         (ves_icall_MonoGenericInst_GetParentType): New interncall.
28652         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
28653
28654 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28655
28656         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
28657         valuetype marshalling.
28658
28659 2004-02-06  Martin Baulig  <martin@ximian.com>
28660
28661         * class.c
28662         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
28663         (my_mono_class_from_generic_parameter): Likewise.
28664
28665 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
28666
28667         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
28668         contents of the symbol files lazily.
28669
28670         * object.h (MonoThread): Add 'name' and 'name_len' fields.
28671
28672         * threads.h threads.c icall.c: New icalls for getting and setting the
28673         threads name.
28674
28675 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
28676
28677         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
28678         Raise an exception when the domain is not found.
28679
28680 2004-02-03  Martin Baulig  <martin@ximian.com>
28681
28682         * reflection.c (mono_image_get_methodspec_token): Use the
28683         uninflated signature; fixes gen-33.
28684
28685 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
28686
28687         * gc.c threads.c: Make the finalizer thread a normal managed thread so
28688         the finalizer code can use thread functionality.
28689
28690         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
28691         the finalizer thread.
28692
28693         * threads.c: Make some functions more robust.
28694
28695         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
28696
28697         * metadata.h: Add new marshalling conventions.
28698
28699         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
28700         stringbuilder marshalling. Fixes #53700.
28701
28702         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
28703
28704         * reflection.c (mono_image_get_type_info): Save declarative security
28705         info.
28706
28707         * reflection.c (mono_image_get_field_info): Handle uninitialized 
28708         unmanaged fields as well.
28709
28710         * appdomain.c: Bump corlib version.
28711
28712 2004-02-01  Martin Baulig  <martin@ximian.com>
28713
28714         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
28715         method type arguments.  
28716
28717 2004-01-30  Duncan Mak  <duncan@ximian.com>
28718
28719         * marshal.h: Add prototype for
28720         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
28721         and
28722         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
28723         fix the build.
28724
28725 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
28726
28727         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
28728         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
28729
28730 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28731
28732         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28733         custom marshalling of valuetypes.
28734
28735         * marshal.c: Fix some warnings.
28736
28737 2004-01-29  Martin Baulig  <martin@ximian.com>
28738
28739         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
28740         for generic method parameters.
28741
28742         * reflection.c (method_encode_methodspec): Write the uninflated
28743         signature into the methodspec table.
28744         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
28745         is always the uninflated method.
28746         (reflection_methodbuilder_to_mono_method): Copy the generic
28747         parameters from the MethodBuilder into `header->gen_params'.
28748
28749 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28750
28751         * class.c (mono_class_from_generic_parameter): Fix warning.
28752
28753 2004-01-27  Martin Baulig  <martin@ximian.com>
28754
28755         * class.c (mono_class_from_generic_parameter): Don't create
28756         `klass->methods' here.  
28757
28758 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
28759
28760         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
28761         extension since it does not work with libraries named lib<FOO>.dll.so.
28762
28763 2004-01-25  Martin Baulig  <martin@ximian.com>
28764
28765         * class.c (mono_class_inflate_generic_type): Added support for
28766         MONO_TYPE_GENERICINST.
28767
28768         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
28769         inflate methods on open constructed types.      
28770
28771 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28772
28773         * object.c: fire ProcessExit event in the root AppDomain after running
28774         Main. Fixes bug #53299.
28775
28776 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
28777
28778         * socket-io.c: include the new socket-wrappers.h header.
28779         Use the wrappers instead of the unix socket functions to make the code
28780         more clear.
28781
28782 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
28783
28784         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
28785
28786         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28787         Fixes #22532.
28788
28789 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
28790
28791         * reflection.c (mono_image_create_pefile): Handle the case when the
28792         entry point is not a MethodBuilder.
28793
28794         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28795         field to ReflectionMethod since it is not allways a builder.
28796
28797         * reflection.c (type_get_fully_qualified_name): New helper function to
28798         return the fully qualified name of a type.
28799
28800         * reflection.c (encode_marshal_blob): Always emit the fully qualified
28801         type name for custom marshallers.
28802
28803         * reflection.c (mono_marshal_spec_from_builder): Ditto.
28804
28805         * class.c (mono_class_setup_vtable): If a parent class already 
28806         implements an interface, use the implementing methods from that class.
28807         Fixes #53148.
28808
28809 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28810
28811         * threadpool.c: just return instead of ExitThread to allow for thread
28812         clean up earlier.
28813
28814 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
28815
28816         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
28817         when closing resource modules.
28818
28819         * reflection.c (mono_image_create_pefile): Handle the case when the
28820         entry point is not a MethodBuilder.
28821
28822         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28823         field to ReflectionMethod since it is not allways a builder.
28824
28825 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
28826
28827         * marshal.c (mono_marshal_get_managed_wrapper): 
28828         mono_marshal_alloc takes native int so CONV_I
28829         the arg for 64bits.
28830
28831 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
28832
28833         * reflection.c (fixup_cattrs): New function to fixup the methoddef
28834         tokens in the cattr table. Fixes #53108.
28835
28836 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28837
28838         * loader.c: don't trim ".dll" before looking up in the config file.
28839         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
28840
28841 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
28842
28843         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
28844         Return the module which contains the resource as well.
28845         (ves_icall_System_Reflection_Module_Close): New icall.
28846
28847         * appdomain.c: Bump corlib version number.
28848
28849         * image.c (mono_image_addref): New public function.
28850
28851         * assembly.c: Call mono_image_addref.
28852
28853         * reflection.c (mono_module_get_object): Increase reference count of 
28854         the image.
28855
28856         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28857         Fixes #22532.
28858
28859         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
28860         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
28861         proper exceptions on DllImport problems.
28862
28863 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
28864
28865         * class.c, metadata.c: eliminate CSIZE macro.
28866
28867 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
28868
28869         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
28870         * object.h: Added async_callback field in MonoAsyncResult.
28871         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
28872         * verify.c: Added async_callback in MonoAsyncResult layout.
28873
28874 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
28875
28876         * reflection.c (mono_reflection_get_custom_attrs): Add support
28877         for Modules.
28878
28879 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
28880
28881         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
28882         marshalling.
28883         (mono_marshal_method_from_wrapper): Add null pointer check.
28884
28885 2004-01-16  Martin Baulig  <martin@ximian.com>
28886
28887         * debug-mono-symfile.h: Set version number to 36 and reflect
28888         latest symbol writer changes.
28889
28890 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
28891
28892         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
28893         multi-dimensional arrays.
28894         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
28895         (mono_class_from_mono_type): Use bounded_array_class_get.
28896         
28897         * class.c (mono_bounded_array_class_get): New function which takes
28898         a 'bounded' bool argument to distinguish vectors from one dimensional
28899         arrays.
28900
28901         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
28902         bounded_array_class_get if the array has bounds.
28903
28904         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28905         Search modules loaded using AssemblyBuilder:AddModule as well.
28906
28907 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28908
28909         * appdomain.c: increased corlib version.
28910         * filewatcher.c: removed g_print.
28911         * icall.c:
28912         (get_property_info): only allocate what is actually requested.
28913         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
28914
28915 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28916
28917         * Makefile.am: added filewatcher.[ch]
28918         * filewatcher.[ch]: FileSystemWatcher runtime support.
28919         * icall.c: added new FSW icalls.
28920
28921 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
28922
28923         * string-icalls.c: fix stringbuilder regression as suggested by
28924         Iain McCoy <iain@mccoy.id.au>.
28925
28926 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
28927
28928         * process.c (process_read_stringtable_block): Recognize '007f' as
28929         a language neutral stringtable block.
28930
28931 2004-01-12  Patrik Torstensson
28932
28933         * object.h (MonoStringBuilder) : Changed layout to support our
28934         new stringbuilder class.
28935         * marshal.c: Change marshalling to support the new layout of 
28936         string builder.
28937         * appdomain.c: increased version number because new layout of
28938         string builder.
28939
28940 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
28941
28942         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
28943         assembly name as an string instead of an AssemblyName, since it is
28944         easier to extract info from it.
28945
28946         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
28947         the culture subdirectories too. Fixes #52231.
28948
28949 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28950
28951         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
28952         It takes 2 new parameters with an optional name for the method to look
28953         for and case ignoring info.
28954
28955         * threadpool.c: removed unused variable.
28956
28957 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28958
28959         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
28960         It takes 2 new parameters with an optional name for the property to look
28961         for and case ignoring info.
28962         Fixes bug #52753.
28963
28964 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
28965
28966         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
28967         Fix #52451.
28968
28969 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28970
28971         * appdomain.c:
28972         * assembly.c: escape the uri before passing it to g_filename_from_uri.
28973         Fixes bug #52630.
28974
28975 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
28976
28977         * reflection.c: Add support for more than one unmanaged resource.
28978
28979         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
28980         in field->def_value, as done in all other cases.
28981
28982         * reflection.c (mono_reflection_get_custom_attrs): Add support for
28983         TypeBuilders.
28984
28985         * reflection.c (mono_reflection_create_runtime_class): Remove 
28986         errorneous assignment to klass->element_class, since it is already
28987         done in mono_reflection_setup_internal_class.
28988
28989 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28990
28991         * gc.c: added missing LeaveCriticalSection.
28992         * icall.c: indented a couple of lines.
28993         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
28994         if we call EndInvoke inside a callback. Fixes bug #52601.
28995
28996 2004-01-07  Martin Baulig  <martin@ximian.com>
28997
28998         * mono-debug-debugger.h
28999         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
29000
29001 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
29002
29003         * appdomain.c: Use messages in NotImplementedException.
29004
29005         * exception.c (mono_get_exception_not_implemented): Now this takes
29006         a message argument.
29007
29008         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
29009         exception instead of g_asserting an aborting when something is not
29010         implemented.
29011
29012         Add some inline docs.
29013
29014 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
29015
29016         * reflection.h: Update after changes to object layout.
29017
29018         * reflection.c: Implement saving of unmanaged aka win32 resources.
29019
29020         * appdomain.c: Bump version number.
29021
29022         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
29023         Handle missing domains gracefully.
29024
29025 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
29026
29027         * file-io.c : On Windows, there are much more invalid_path_chars.
29028
29029 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
29030
29031         * class.h, object.c: prepare for GetType () speedup.
29032
29033 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
29034
29035         * profiler.c: workaround for --profile null reference exception on
29036           cygwin. Patch by Patrik Torstensson.
29037
29038 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
29039
29040         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
29041         make work for unaligned access.
29042
29043 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
29044
29045         * class.c: small cleanup (class->fields [i] -> field).
29046         * image.c: check address of metadata is valid.
29047
29048 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
29049
29050         * assembly.h assembly.c (mono_assembly_loaded): New public function to
29051         search the list of loaded assemblies.
29052
29053         * reflection.c (mono_reflection_type_from_name): Use 
29054         mono_assembly_loaded instead of mono_image_loaded.
29055
29056         * reflection.c: Fix warnings.
29057
29058 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
29059
29060         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
29061         is dynamic. This is needed since an assembly can contain both dynamic and
29062         non-dynamic images.
29063
29064         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
29065         assembly->dynamic.
29066
29067         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
29068
29069         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
29070         to store modules loaded using AddModule.
29071
29072         * reflection.c (mono_image_fill_file_table): Generalize this so it works
29073         on Modules.
29074
29075         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
29076
29077         * reflection.c (mono_image_fill_export_table_from_module): New function to
29078         fill out the EXPORTEDTYPES table from a module.
29079
29080         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
29081         into a separate function. Also handle loaded non-dynamic modules.
29082
29083         * reflection.c (mono_image_basic_init): Fix memory allocation.
29084
29085         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29086
29087         * assembly.c (mono_assembly_load_references): Make this public.
29088
29089 2003-12-19  Martin Baulig  <martin@ximian.com>
29090
29091         * class.c (mono_class_initialize_generic): Made this static, take
29092         a `MonoGenericInst *' instead of a `MonoClass *'.
29093         (mono_class_from_generic): Call mono_class_initialize_generic()
29094         unless we're already initialized or being called from
29095         do_mono_metadata_parse_generic_inst().
29096
29097         * class.h (MonoGenericInst): Added `initialized' and
29098         `init_pending' flags.
29099
29100         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29101         `mono_class_init (gklass)' or mono_class_initialize_generic()
29102         here; set `generic_inst->init_pending' while parsing the
29103         `type_argv'.
29104
29105 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
29106
29107         * locales.c: include string.h for memxxx prototypes
29108
29109 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
29110
29111         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29112         constructor when accessing literal fields.
29113
29114 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
29115
29116         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29117
29118         * reflection.c (assembly_add_resource_manifest): New function to fill
29119         the MANIFESTRESOURCE table.
29120
29121         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29122
29123         * reflection.h: Update to changes in class layout.
29124
29125         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29126         Reenable call to mono_runtime_is_shutting_down ().
29127
29128         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29129         determine if the runtime is shutting down.
29130
29131 2003-12-16  Jackson Harper <jackson@ximian.com>
29132
29133         * icall.c: comment out call to mono_runtime_is_shutting_down to
29134         fix build.
29135         
29136 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29137
29138         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29139         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29140
29141 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29142
29143         * reflection.c: move definition of swap_with_size
29144         to before its first call
29145
29146 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29147
29148         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29149
29150         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29151         icall.
29152
29153         * object.c: Fix warnings.
29154
29155         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29156         members if FlattenHierarchy is set.
29157
29158         * reflection.c (mono_image_add_decl_security): New function to emit
29159         declarative security.
29160
29161         * reflection.h reflection.c: Add support for declarative security.
29162
29163         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29164         
29165 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29166
29167         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29168         
29169         * appdomain.c verify.c: Moved corlib version checking into its own
29170         function in appdomain.c since it needs to create vtables etc.
29171
29172 2003-12-13  Patrik Torstensson <p@rxc.se>
29173
29174         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29175         instead of unwrapped server.
29176
29177 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29178
29179         * verify.c (check_corlib): Fix field index.
29180
29181 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29182
29183         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29184         GetGacPath icall.
29185
29186 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29187
29188         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29189         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29190         cope with sizeof(size_t) != sizeof(guint32).
29191
29192 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29193
29194         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29195         in case of failure.
29196
29197 2003-12-10  Mark Crichton <crichton@gimp.org>
29198
29199         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29200         in managed code.
29201
29202         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29203
29204 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29205
29206         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29207         marked as deleted.
29208
29209 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29210
29211         * verify.c (check_corlib): Handle the case when the version field is 
29212         initialized by a static constructor.
29213
29214 2003-12-08  Patrik Torstensson  <p@rxc.se>
29215
29216     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29217
29218 2003-12-08  Martin Baulig  <martin@ximian.com>
29219
29220         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29221         a MonoReflectionGenericParameter, also take the parameter index
29222         and name as arguments.
29223         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29224         (ves_icall_MonoGenericParam_initialize): New interncall.
29225         (ves_icall_Type_make_byref_type): New interncall.
29226
29227         * reflection.h (MonoReflectionGenericParam): Derive from
29228         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29229         `index' fields.
29230
29231         * reflection.c (mono_reflection_define_generic_parameter): Create
29232         and return a new MonoReflectionGenericParam; don't initialize the
29233         constraints here.
29234         (mono_reflection_initialize_generic_parameter): New public method;
29235         initializes the constraints and creates the `param->pklass'.
29236
29237 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29238
29239         * reflection.h reflection.c: Use the new fields 'num_types', 
29240         'num_fields' and 'num_methods' to track the number of types etc.
29241
29242         * verify.c (check_corlib): Check corlib version number.
29243
29244 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29245
29246         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29247         function works on all methods.
29248
29249 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29250
29251         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29252         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29253         the custom_type_info flag of the transparent proxy.
29254         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29255         objects that supports IRemotingTypeInfo.
29256         * object.h: Added custom_type_info field in transparent proxy.
29257
29258 2003-12-06  Martin Baulig  <martin@ximian.com>
29259
29260         * class.c (mono_class_create_from_generic): Removed.
29261         (mono_class_from_generic): Check `ginst->klass' before doing
29262         anything else.  This is important to fully support "recursive"
29263         generic types.
29264
29265         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29266         empty `generic_inst->klass' before doing anything else.
29267
29268 2003-12-06  Dick Porter  <dick@ximian.com>
29269
29270         * verify.c: 
29271         * object.h:
29272         * icall.c:
29273         * locales.c: Use C structs to access class fields.  Don't do a
29274         conversion between MonoString and UChar because both are
29275         platform-endian UTF-16.  Compare now takes startindex and count
29276         parameters.  Add a char overload for IndexOf.  Speed up the
29277         invariant string IndexOf.
29278
29279 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29280
29281         * Makefile.am (monosn_LDADD): Fix parallel build.
29282
29283 2003-12-04  Martin Baulig  <martin@ximian.com>
29284
29285         * icall.c
29286         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29287         (ves_icall_Type_make_array_type): New interncall.       
29288
29289 2003-12-04  Martin Baulig  <martin@ximian.com>
29290
29291         * locales.c: also change it in the !HAVE_ICU case.
29292
29293 2003-12-04  Dick Porter  <dick@ximian.com>
29294
29295         * icall.c:
29296         * locales.c: construct_compareinfo is now in CompareInfo, not
29297         CultureInfo.
29298
29299 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29300
29301         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29302         image->files array.
29303
29304         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29305         table as well.
29306
29307         * assembly.c (mono_assembly_load_references): Only load references
29308         once.
29309
29310         * class.c (mono_class_from_name): Avoid linear search of the 
29311         EXPORTEDTYPE table.
29312
29313         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29314
29315 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29316
29317         * image.h (MonoImage): Add 'field_cache' field.
29318
29319         * loader.c (mono_field_from_token): Cache field lookups.
29320         
29321         * reflection.c (mono_module_get_object): Fix name property.
29322
29323         * icall.c (ves_icall_get_enum_info): Update after changes to 
29324         mono_metadata_get_constant_index ().
29325
29326         * icall.c: Get rid of get_type_info icall, use a separate icall for
29327         each type property to avoid needless memory allocations. Fixes #51514.
29328
29329         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29330         to avoid needless binary searches.
29331
29332         * class.c (class_compute_field_layout): Move the initialization of
29333         field->def_value to mono_class_vtable ().
29334
29335         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29336         non-corlib types.
29337
29338         * object.c (mono_object_allocate): Make it inline.
29339
29340         * object.c (mono_object_allocate_spec): Make it inline.
29341         
29342 2003-12-02  Dick Porter  <dick@ximian.com>
29343
29344         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29345         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29346
29347 2003-12-01  Dick Porter  <dick@ximian.com>
29348
29349         * threads.c: Fix signature and call in CreateMutex and
29350         CreateEvent.
29351
29352 2003-12-01  Dick Porter  <dick@ximian.com>
29353
29354         * icall.c: 
29355         * locales.c: Implement string compares and searching
29356
29357         * object.h: Add extra Thread field
29358
29359 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
29360
29361         * reflection.c (fixup_method): Add support for MonoCMethod.
29362
29363 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
29364
29365         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
29366
29367         * reflection.c (assembly_name_to_aname): Allow extra characters in
29368         assembly names. Fixes #51468.
29369
29370 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
29371
29372         * exception.c (mono_exception_from_name_domain): New helper function.
29373
29374         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
29375         exception object in the correct domain.
29376
29377         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
29378         formatting + make a copy a the input data.
29379
29380         * loader.c (mono_get_method_from_token): Methods which contain
29381         native code do not have entries in the ImplMap.
29382
29383         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
29384         Thanks to Gonzalo for spotting this.
29385         
29386         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
29387         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
29388
29389         * assembly.h (mono_assembly_load_from): Split the second part of 
29390         assembly loading into a new public function.
29391
29392         * exception.h (mono_get_exception_bad_image_format): New function.
29393
29394 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
29395
29396         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29397         Enumerate all modules inside a dynamic assembly. Fixes #51293.
29398         
29399         * icall.c: Add new icall for creating dynamic methods.
29400
29401         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
29402
29403         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
29404
29405         * reflection.c (mono_reflection_create_dynamic_method): New icall to
29406         create a dynamic method.
29407
29408         * reflection.c (resolve_object): New helper function.
29409
29410         * reflection.c: Generalize ReflectionMethodBuilder and the functions
29411         which manipulate it so they can also work on dynamic methods.
29412
29413         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
29414         creating the MonoReflectionMethodAux structure if it is not needed.
29415         
29416         * reflection.h verify.c: Update after changes to object layout.
29417
29418         * reflection.c (method_builder_encode_signature): Fix compilation on
29419         gcc 2.95.x.
29420
29421 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
29422
29423         * appdomain.h: Added support for context static fields. Added static_data
29424           field to MonoAppContext and renamed thread_static_fields to a more
29425           generic special_static_fields in MonoAppDomain, since it can now contain
29426           context static fields.
29427         * domain.c: Updated hashtable name.
29428         * object.c: Replaced field_is_thread_static() for a more generic
29429           field_is_special_static() which also checks for context static attribute.
29430           In mono_class_vtable(), added support for static context fields.
29431         * threads.c: Changed methods that manage thread static fields to more
29432           generic methods so they can be reused both for thread and context static
29433           data.
29434         * threads.h: Declared some new methods.
29435
29436 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
29437
29438         * reflection.h: Update after changes to the managed types.
29439
29440         * reflection.c (encode_custom_modifiers): New helper function.
29441
29442         * reflection.c (method_encode_signature): Emit custom modifiers.
29443
29444         * reflection.c (field_encode_signature): Emit custom modifiers.
29445
29446 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
29447
29448         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
29449
29450         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
29451         implementation.
29452
29453         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
29454         icall.
29455
29456         * object.c (mono_field_get_value_object): New function.
29457
29458         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
29459         specific.
29460
29461 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
29462
29463         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
29464         return a preallocated out-of-memory exception instance.
29465
29466         * object.c (out_of_memory): Use the new function.
29467
29468         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
29469         flag is before the custom modifiers. Fixes #49802.
29470
29471 2003-11-16  Martin Baulig  <martin@ximian.com>
29472
29473         * class.c (mono_class_is_open_constructed_type): Implemented the
29474         MONO_TYPE_GENERICINST case.
29475
29476 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
29477
29478         * assembly.c (mono_assembly_fill_assembly_name): New function to
29479         fill out the MonoAssemblyName structure.
29480         (mono_assembly_open): Use the new function.
29481
29482         * icall.c (fill_reflection_assembly_name): New helper function.
29483
29484         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
29485         new function.
29486
29487         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
29488
29489 2003-11-15  Martin Baulig  <martin@ximian.com>
29490
29491         * class.c (mono_class_is_open_constructed_type): New public
29492         function; checks whether a type is an open constructed type,
29493         ie. whether it still contains type parameters.
29494         (mono_class_inflate_generic_type): If we're a type parameter and
29495         the inflated type is also a MONO_TYPE_(M)VAR, return the original
29496         type.
29497
29498         * class.h (MonoGenericInst): Added `guint32 is_open'.
29499
29500         * loader.c (method_from_methodspec): Check whether we're an open
29501         or closed constructed type and set `ginst->is_open'.
29502
29503         * reflection.c (mono_reflection_bind_generic_parameters): Check
29504         whether we're an open or closed constructed type and set
29505         `ginst->is_open'.
29506         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
29507         from open constructed types.
29508
29509 2003-11-15  Martin Baulig  <martin@ximian.com>
29510
29511         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29512         a generic instance (instead of a generic type declaration) with
29513         unbound generic parameters, bind them to our actual types.
29514
29515 2003-11-14  Martin Baulig  <martin@ximian.com>
29516
29517         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
29518
29519         * reflection.c (mono_reflection_bind_generic_parameters): If we're
29520         an interface type, populate `res->interfaces' with instantiated
29521         versions of all the interfaces we inherit.
29522
29523 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
29524
29525         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
29526         when MONO_PATH is set but doesn't contain the install dir.
29527
29528 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29529
29530         * icall.c:
29531         (ves_icall_Type_GetInterfaces): don't return an interface twice when
29532         it's also implemented in base classes. Fixes bug #50927.
29533
29534 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
29535
29536         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
29537         if this method is called from a finalizer. Fixes #50913.
29538
29539 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
29540
29541         * threads.c: Implement VolatileRead/VolatileWrite
29542
29543         * icall.c: Add new icalls for VolatileRead/VolatileWrite
29544
29545 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29546
29547         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
29548         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
29549         2.95.3.
29550
29551         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
29552         from Peter Ross (pro@missioncriticalit.com).
29553         
29554 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
29555
29556         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
29557
29558 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29559
29560         * assembly.c (mono_assembly_load_references): Disable check because it
29561         triggers on older corlibs which lots of people have.
29562
29563 2003-11-12  Jackson Harper  <jackson@ximian.com>
29564
29565         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
29566         load corlib.dll if mscorlib.dll is not found.
29567         * assembly.h: Remove corlib name define.
29568         * class.c:
29569         * domain.c:
29570         * image.c: Change corlib name to mscorlib.
29571         
29572 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
29573
29574         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
29575
29576 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
29577
29578         * appdomain.h: Added loader_optimization here to sync with the C#
29579         code, and add disallow_binding_redirects field.
29580
29581 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29582
29583         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
29584
29585         * reflection.c (mono_image_build_metadata): Fix crash on modules
29586         with no types.
29587
29588         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
29589
29590         * icall.c (ves_icall_get_method_info): Return callingConvention as
29591         well.
29592
29593         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
29594         namespaces from the EXPORTEDTYPE table as well.
29595
29596         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
29597         from all modules inside the assembly.
29598         
29599 2003-11-11  Martin Baulig  <martin@ximian.com>
29600
29601         * reflection.c (mono_reflection_bind_generic_parameters): Make
29602         this work for interfaces.
29603
29604 2003-11-11  Martin Baulig  <martin@ximian.com>
29605
29606         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
29607
29608 2003-11-11  Martin Baulig  <martin@ximian.com>
29609
29610         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
29611         "MonoInflatedMethod" and "MonoInflatedCtor".
29612
29613 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
29614
29615         * reflection.c (resolution_scope_from_image): Use the assembly table
29616         from the manifest module, since other modules don't have it.
29617
29618         * debug-helpers.c (mono_type_full_name): New helper function.
29619
29620         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
29621
29622         * image.c (mono_image_load_file_for_image): New public function which
29623         is a replacement for the load_file_for_image in class.c.
29624
29625         * assembly.c (mono_assembly_load_module): A wrapper for the function
29626         above which does assembly association and reference loading too.
29627
29628         * class.c (mono_class_from_name): Call mono_assembly_load_module.
29629
29630 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29631
29632         * appdomain.c: not all of the attributes for the full assembly name
29633         are required and the order doesn't matter. Fixes bug #50787.
29634
29635 2003-11-10  Dick Porter  <dick@ximian.com>
29636
29637         * locales.c: Use platform-endian UTF16
29638
29639 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29640
29641         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29642         
29643 2003-11-10  Martin Baulig  <martin@ximian.com>
29644
29645         * metadata.c
29646         (mono_metadata_load_generic_params): Make this actually work.
29647
29648         * reflection.c (mono_reflection_bind_generic_parameters): If our
29649         parent is a generic instance, pass all the `types' to it, no
29650         matter whether it has the same number of type parameters or not.
29651
29652 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
29653
29654         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
29655
29656         * assembly.c (mono_assembly_load_references): Move the image<->assembly
29657         assignment code to this function so it gets called recursively for all
29658         modules.
29659
29660         * image.c (load_modules): Remove the assembly assignment since it is
29661         now done by mono_assembly_load_references.
29662         
29663         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29664         Add 'module' argument.
29665         (mono_module_get_types): New helper function.
29666         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
29667
29668 2003-11-08  Martin Baulig  <martin@ximian.com>
29669
29670         * class.c (mono_class_inflate_generic_method): Interface method
29671         don't have a header.
29672
29673         * reflection.c (mono_image_get_methodspec_token): Take an
29674         additional `MonoGenericInst *' argument instead of reading it from
29675         the header; this is necessary to support interfaces.
29676         (mono_image_create_token): Pass the `MonoGenericInst *' from the
29677         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
29678         (inflated_method_get_object): Take an additional `MonoGenericInst *'
29679         argument.
29680
29681         * reflection.h (MonoReflectionInflatedMethod): Added
29682         `MonoGenericInst *ginst'.
29683
29684 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
29685
29686         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
29687
29688 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
29689
29690         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
29691
29692 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
29693
29694         * reflection.c 
29695         (reflection_methodbuilder_from_method_builder):
29696         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
29697         initialize a ReflectionMethodBuilder structure.
29698         (mono_image_get_methodbuilder_token):
29699         (mono_image_get_ctorbuilder_token): New functions to emit memberref
29700         tokens which point to types in another module inside the same assembly.
29701
29702         * reflection.c: Use the new helper functions.
29703         
29704         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
29705
29706         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
29707         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
29708
29709         * reflection.c (resolution_scope_from_image): Emit a moduleref if
29710         neccesary.
29711
29712         * reflection.c (mono_image_build_metadata): Emit metadata only for the
29713         current module. Emit the manifest only for the main module.
29714
29715         * reflection.c (mono_image_create_token): Add assertion when a 
29716         memberref needs to be created.
29717
29718         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
29719
29720         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
29721         larger buffer for the custom attribute blob. Fixes #50637.
29722         
29723 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29724
29725         * threadpool.c: notify listener on async processing handles after
29726         invoking the async callback. Thanks to Zoltan.
29727
29728 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29729
29730         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
29731         avoid code duplication.
29732
29733         * reflection.h (MonoDynamicImage): New type which is currently unused,
29734         but will be used through the ref.emit code in place of 
29735         MonoDynamicAssembly.
29736
29737         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29738         object layout.
29739
29740         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
29741         a MonoDynamicImage instead of just a MonoImage.
29742         
29743         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
29744         icalls to ModuleBuilder but keep their semantics, so they will work
29745         with moduleb->assemblyb. This will change later.
29746         
29747 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29748
29749         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29750         object layout.
29751
29752         * reflection.c (mono_image_build_metadata): Avoid creation of a default
29753         main module, since it is now done by the managed code.
29754
29755 2003-11-03  Martin Baulig  <martin@ximian.com>
29756
29757         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
29758         `ginst->klass' here.
29759         (method_encode_methodspec): Don't use the `ginst->generic_method's
29760         klass if it's a generic instance, use `ginst->klass' in this case.
29761
29762 2003-11-03  Martin Baulig  <martin@ximian.com>
29763
29764         * reflection.c (mono_image_get_generic_method_param_info):
29765         Removed, use mono_image_get_generic_param_info() instead.
29766         (mono_image_get_type_info): Write the GenericParam table before
29767         the Method table.  This is neccessary because in the GenericParam
29768         table, type parameters of the class (ie. '!0' etc.) must come
29769         before the ones from its generic methods (ie. '!!0' etc).
29770
29771 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29772
29773         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
29774
29775 2003-11-02  Martin Baulig  <martin@ximian.com>
29776
29777         * reflection.c (create_generic_typespec): Take a
29778         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
29779         the generic parameters from it.
29780
29781 2003-11-02  Martin Baulig  <martin@ximian.com>
29782
29783         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
29784         instead of a `MonoClassField *' since we just need the type.
29785         (create_generic_typespec): New static function.  Creates a
29786         TypeSpec token for a generic type declaration.
29787         (mono_image_get_generic_field_token): New static function.
29788         (mono_image_create_token): If we're a FieldBuilder in a generic
29789         type declaration, call mono_image_get_generic_field_token() to get
29790         the token.
29791
29792 2003-11-02  Martin Baulig  <martin@ximian.com>
29793
29794         * reflection.h
29795         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
29796         `MonoReflectionGenericInst *declaring_type' and
29797         `MonoReflectionGenericInst *reflected_type' fields.
29798
29799         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
29800         `MonoReflectionGenericInst *declaring_type' and a
29801         `MonoReflectionGenericInst *reflected_type' argument instead of a
29802         single `MonoReflectionGenericInst *type' one.  Set
29803         `res->declaring_type' and `res->reflected_type' from them.
29804         (mono_reflection_inflate_field): Likewise.      
29805
29806 2003-11-02  Martin Baulig  <martin@ximian.com>
29807
29808         * class.c (mono_class_setup_vtable): Don't store generic methods
29809         in the vtable.  
29810
29811 2003-11-02  Martin Baulig  <martin@ximian.com>
29812
29813         * reflection.h (MonoReflectionGenericInst): Added
29814         `MonoReflectionType *declaring_type'.
29815
29816         * reflection.c (mono_reflection_bind_generic_parameters): Use
29817         `if (tb->parent)' instead of `klass->parent'.
29818
29819 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
29820
29821         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
29822         with an empty ASSEMBLY table.
29823
29824         * reflection.c (mono_image_build_metadata): Avoid using the same loop
29825         variable in the inner and outer loops.
29826
29827 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
29828
29829         * metadata.h (mono_metadata_make_token): Put parentheses around macro
29830         argument.
29831
29832         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
29833         
29834         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
29835         icalls. Instead, do everything in managed code. This is needed since
29836         it is hard to restore the original domain etc. in unmanaged code in the
29837         presence of undeniable exceptions.
29838
29839         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
29840         New icalls to push and pop appdomain refs.
29841
29842 2003-10-31  Martin Baulig  <martin@ximian.com>
29843
29844         * class.c (inflate_generic_type): Renamed to
29845         mono_class_inflate_generic_type() and made it public.
29846
29847         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
29848         New interncall.
29849
29850         * loader.c (mono_field_from_memberref): Also set the retklass for
29851         typespecs.
29852
29853         * fielder.c (mono_image_get_inflated_field_token): New static
29854         method; creates a metadata token for an inflated field.
29855         (mono_image_create_token, fixup_method): Added support for
29856         "MonoInflatedField".
29857         (fieldbuilder_to_mono_class_field): New static function.
29858         (mono_reflection_inflate_field): New public function.
29859
29860         * reflection.h
29861         (MonoReflectionGenericInst): Added `MonoArray *fields'.
29862         (MonoReflectionInflatedField): New typedef.     
29863
29864 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
29865
29866         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
29867         for Solaris and other platforms without s6_addr16
29868
29869 2003-10-30  Martin Baulig  <martin@ximian.com>
29870
29871         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
29872         argument instead of two.
29873         (mono_class_inflate_generic_signature): Likewise.
29874         (inflate_generic_header): Likewise.
29875         (mono_class_inflate_generic_method): Likewise.  In addition, if
29876         `ginst->klass' is set, it becomes the new `method->klass'.
29877
29878         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
29879         field.
29880
29881         * reflection.c (encode_generic_method_sig): Write a 0xa as the
29882         first byte. [FIXME]
29883         (method_encode_methodspec): If we have generic parameters, create
29884         a MethodSpec instead of a MethodRef.
29885         (fixup_method): Added support for "MonoInflatedMethod" and
29886         "MonoInflatedCtor".
29887         (mono_image_create_token): Added support for "MonoInflatedMethod"
29888         and "MonoInflatedCtor".
29889         (inflated_method_get_object): New static function; returns a
29890         managed "System.Reflection.MonoInflatedMethod" object.
29891         (mono_reflection_bind_generic_method_parameters): Return a
29892         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
29893         (mono_reflection_inflate_method_or_ctor): Likewise.
29894         (mono_image_get_generic_method_param_info): Initialize unused
29895         fields to zero.
29896         (mono_image_get_generic_param_info): Likewise.
29897
29898         * reflection.h (MonoReflectionInflatedMethod): New public
29899         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
29900         "S.R.MonoInflatedCtor" classes.
29901
29902         * loader.c (method_from_memberref): If we're a TypeSpec and it
29903         resolves to a generic instance, inflate the method.
29904
29905 2003-10-28  Dick Porter  <dick@ximian.com>
29906
29907         * object.c (mono_runtime_run_main): Convert command-line arguments
29908         into utf8, falling back to the user's locale encoding to do so.
29909
29910 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
29911
29912         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
29913         at this time.
29914
29915         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
29916
29917         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
29918         up icalls at method definition time. Partially fixes #33569.
29919
29920 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
29921
29922         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
29923         marshalling of arrays. Fixes #50116.
29924
29925         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
29926
29927         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
29928         points to a vtable in the dying appdomain.
29929
29930         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
29931         listeners into unmanaged code inside the lock.
29932
29933         * object.c (mono_class_vtable): Turn off typed allocation in non-root
29934         domains and add some comments.
29935
29936 2003-10-25  Martin Baulig  <martin@ximian.com>
29937
29938         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
29939
29940         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
29941
29942         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
29943         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
29944         currently parsing.  Create the generic class and store it in
29945         `generic_inst->klass' before parsing the type arguments.  This is
29946         required to support "recursive" definitions; see mcs/tests/gen-23.cs
29947         for an example.
29948         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
29949         to support recursive typespec entries.
29950
29951         * class.c (mono_class_setup_parent): If our parent is a generic
29952         instance, we may get called before it has its name set.
29953         (mono_class_from_generic): Splitted into
29954         mono_class_create_from_generic() and mono_class_initialize_generic().
29955
29956 2003-10-25  Martin Baulig  <martin@ximian.com>
29957
29958         * icall.c (ves_icall_Type_BindGenericParameters): Return a
29959         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
29960         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
29961         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
29962
29963         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
29964         (create_typespec): Likewise.
29965         (mono_reflection_bind_generic_parameters): Return a
29966         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
29967         (mono_reflection_inflate_method_or_ctor): New public function.
29968
29969         * reflection.h (MonoReflectionGenericInst): New typedef.        
29970
29971 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
29972
29973         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
29974         inside the domain lock. Fixes #49993.
29975         
29976         * object.c (mono_class_vtable): When typed allocation is used, 
29977         allocate vtables in the GC heap instead of in the mempool, since the
29978         vtables contain GC descriptors which are used by the collector even
29979         after the domain owning the mempool is unloaded.
29980
29981         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
29982
29983         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
29984         reflect what it does. Also invalidate mempools instead of freeing
29985         them if a define is set.
29986
29987         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
29988         of the appdomain.
29989         
29990         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
29991         hold the finalizable objects in this domain.
29992
29993         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
29994         appdomain.
29995
29996         * appdomain.c (mono_domain_set): New function to set the current
29997         appdomain, but only if it is not being unloaded.
29998
29999         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
30000         appdomain which is being unloaded.
30001         
30002         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
30003         unloading of the root appdomain.
30004
30005         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
30006         icall to execute a method in another appdomain. Intended as a 
30007         replacement for InternalSetDomain, which can confuse the code 
30008         generation in the JIT.
30009
30010         * appdomain.c (mono_domain_is_unloading): New function to determine
30011         whenever an appdomain is unloading.
30012
30013         * appdomain.c (mono_domain_unload): New function to correctly unload
30014         an appdomain.
30015
30016         * assembly.c (mono_assembly_load_references): Check that an assembly
30017         does not references itself.
30018
30019         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
30020         domain manually, it asks the finalizer thread to do it, then waits for
30021         the result. Also added a timeout.
30022
30023         * icall.c: Register the new icalls.
30024
30025         * threads.h threads.c: Export the mono_gc_stop_world and 
30026         mono_gc_start_world functions.
30027         
30028         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
30029         function to fill out the mempool with 0x2a.
30030
30031 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
30032
30033         * reflection.h (MonoReflectionMethodAux): New structure to store
30034         information which is rarely used, thus is not in the MonoMethod
30035         structure.
30036
30037         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
30038         store the aux info.
30039
30040         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
30041         and marshalling info into the aux structure.
30042
30043         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
30044         from the aux structure.
30045
30046         * loader.c (mono_method_get_param_names): Retrieve the param names from
30047         the aux structure.
30048         
30049 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
30050
30051         * exception.h exception.c: Add AppDomainUnloadedException && fix 
30052         warning.
30053
30054 2003-10-21  Dick Porter  <dick@ximian.com>
30055
30056         * socket-io.c
30057         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
30058         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
30059
30060 2003-10-21  Martin Baulig  <martin@ximian.com>
30061
30062         * reflection.c (mono_reflection_bind_generic_parameters):
30063         `klass->parent' is NULL for interfaces.
30064
30065 2003-10-21  Martin Baulig  <martin@ximian.com>
30066
30067         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30068
30069 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
30070
30071         * exception.c (mono_exception_from_name_msg): New helper function for
30072         creating exceptions and initializing their message field.
30073
30074         * exception.c: Simplify functions using the new helper.
30075
30076         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
30077         New function.
30078
30079         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
30080         mono_raise_exception, since otherwise gcc doesn't generate the function
30081         epilog for raise_exception, confusing the stack unwinding in the JIT.
30082         Fixes #45043.
30083
30084         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30085         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30086         Fixes #49499.
30087
30088 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30089
30090         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30091         utf8.
30092
30093 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
30094
30095         * icall.c: Removed GetUninitializedObject method because
30096           AllocateUninitializedClassInstance does the same.
30097
30098 2003-10-18  Martin Baulig  <martin@ximian.com>
30099
30100         * class.c (inflate_generic_signature): Renamed to
30101         mono_class_inflate_generic_signature() and made it public.
30102         (my_mono_class_from_generic_parameter): New static function; if we
30103         don't already have the generic parameter's MonoClass, create a
30104         very simple one which is just used internally in the runtime and
30105         not passed back to managed code.
30106
30107         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30108
30109         * metadata.h (MonoMethodSignature): Moved the
30110         `MonoGenericParam *gen_params' to the MonoMethodHeader.
30111         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30112
30113         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30114         ves_icall_MonoMethod_GetGenericArguments(); this is now an
30115         interncall on the MonoMethod class, not on MethodInfo.
30116         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30117         calling mono_reflection_bind_generic_method_parameters() directly.
30118
30119         * loader.c (mono_method_get_signature): If this is a MethodSpec;
30120         return the already computed `method->signature'.
30121         (method_from_methodspec): New static function to load a method
30122         from a MethodSpec entry.
30123         (mono_get_method_from_token): Call the new method_from_methodspec()
30124         for MethodSpec tokens.  
30125         (mono_get_method_from_token): If we're a generic method, load the
30126         type parameters.
30127
30128         * reflection.c (mono_image_get_memberref_token): Allow
30129         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30130         table.
30131         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30132         (mono_image_create_token): First check whether it's a generic
30133         method (so we'd need to create a MethodSpec), then do the other
30134         two alternatives.
30135         (mono_reflection_bind_generic_method_parameters): Return a
30136         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30137         called directly from the interncall.
30138
30139 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30140
30141         * reflection.c (load_public_key): Move loading of the public key
30142         into managed code.
30143
30144         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30145
30146         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30147         fields.
30148
30149         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30150         culture, hash_alg and public_key. Fixes #49555.
30151
30152 2003-10-17  Martin Baulig  <martin@ximian.com>
30153
30154         * class.h (MonoGenericInst): Moved this declaration here and added
30155         `MonoMethod *generic_method'.
30156
30157         * icall.c
30158         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30159         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30160
30161         * metadata.c (mono_metadata_type_equal): Two types of
30162         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30163         index; ie. don't compare the address of the `MonoGenericParam'
30164         structure.
30165         (mono_metadata_load_generic_params): Removed the `MonoMethod
30166         *method' argument.
30167
30168         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30169         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30170
30171         * reflection.c (method_encode_signature): Encode the number of
30172         generic parameters.
30173         (encode_generic_method_sig): New static function.
30174         (method_encode_methodspec): New static function; creates an entry
30175         in the MethodSpec table for a generic method.
30176         (mono_image_get_methodspec_token): New static function.
30177         (mono_image_create_token): Call mono_image_get_methodspec_token()
30178         for generic methods.
30179         (mono_reflection_bind_generic_method_parameters): New public
30180         function.  Instantiates a generic method.
30181
30182 2003-10-16  Martin Baulig  <martin@ximian.com>
30183
30184         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30185         *gen_params' here from MonoMethodHeader.
30186
30187         * metadata.c (mono_metadata_parse_method_signature): If we have
30188         generic parameters, initialize `method->gen_params' and then set
30189         the correct `type->data.generic_param' in all the parameters.
30190
30191 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30192
30193         * threads.c (mono_threads_get_default_stacksize): New function to 
30194         return the default stacksize.
30195
30196         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30197         termination of the finalizer thread, since the previous method had
30198         race conditions. Fixes #49628.
30199
30200         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30201         as for the other managed threads.
30202
30203 2003-10-16  Martin Baulig  <martin@ximian.com>
30204
30205         * class.c (inflate_generic_signature): Copy `generic_param_count'
30206         and `gen_params'.
30207
30208         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30209         New interncall.
30210
30211         * metadata.c (mono_metadata_parse_method_signature): Actually set
30212         the `method->generic_param_count' here.
30213         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30214
30215 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30216
30217         * object.h: Add a new field to TypedRef to simplify the implementation
30218         of the REFANY opcodes in the JIT.
30219
30220         * icall.c: Make use of the new field.
30221
30222         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30223         dynamically.
30224
30225 2003-10-15  Martin Baulig  <martin@ximian.com>
30226
30227         * class.c (mono_class_from_gen_param): Renamed to
30228         mono_class_from_generic_parameter() and moved most of the
30229         functionality from mono_reflection_define_generic_parameter()
30230         here; ie. we create a "real" class here.
30231         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30232         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30233         previously been called.
30234
30235         * class.h (MonoGenericParam): Moved the declaration of this struct
30236         here from metadata.h and added `MonoMethod *method'.
30237
30238         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30239         interncall.
30240
30241         * loader.c (mono_get_method_from_token): If we have any generic
30242         parameters, call mono_metadata_load_generic_params() to read them
30243         from the MONO_TABLE_GENERICPAR.
30244
30245         * metadata.c (mono_metadata_load_generic_params): Added
30246         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30247
30248         * metadata.h (MonoMethodSignature): Replaced
30249         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30250         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30251
30252         * reflection.c (mono_reflection_define_generic_parameter): Moved
30253         most of the functionality into the new
30254         mono_class_from_generic_parameter(); set the `method' field if
30255         we're a method parameter.       
30256
30257 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30258
30259         * marshal.c (emit_struct_conv): if native size is 0
30260         emit no code.
30261
30262 2003-10-14  Martin Baulig  <martin@ximian.com>
30263
30264         * icall.c: The generics API has changed in the spec since it was
30265         added to System.Type; these modifications make it match the spec
30266         again.
30267         (ves_icall_Type_GetGenericParameters): Renamed to
30268         `ves_icall_Type_GetGenericArguments'.
30269         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30270         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30271         `ves_icall_MonoType_get_HasGenericArguments'.
30272         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30273         `ves_icall_MonoType_get_IsGenericParameter'.
30274         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30275         this is no interncall anymore.
30276         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30277         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30278
30279 2003-10-14  Martin Baulig  <martin@ximian.com>
30280
30281         * reflection.c (mono_reflection_bind_generic_parameters): Also
30282         inflate generic methods if we're reading the class from IL.
30283
30284 2003-10-13  Martin Baulig  <martin@ximian.com>
30285
30286         * reflection.c (mono_reflection_define_generic_parameter): This
30287         method isn't called directly from the icall anymore; take a
30288         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30289         method generic parameters.
30290         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30291         (method_builder_encode_signature): Encode generic parameters.
30292         (mono_image_get_method_info): Write generic params to the
30293         MONO_TABLE_GENERICPARAM table.
30294
30295         * reflection.h (MonoReflectionMethodBuilder): Added
30296         `MonoArray *generic_params'.
30297
30298         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30299
30300         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30301         wrapper for mono_reflection_define_generic_parameter().
30302         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30303
30304 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30305
30306         * marshal.h: Add missing function to fix build.
30307
30308         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30309         the SetLastError pinvoke attribute.
30310
30311         * marshal.c (mono_marshal_set_last_error): New helper function called
30312         by the generated code.
30313         
30314         * marshal.c (mono_mb_emit_branch): New helper function.
30315
30316         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30317
30318         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30319         classes as parameters and return values of delegates. Fixes #29256. 
30320
30321 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30322
30323         * locales.c: use gint32 in non HAVE_ICU case
30324
30325 2003-10-11  Martin Baulig  <martin@ximian.com>
30326
30327         * mono-debug.c (mono_debug_add_method): Added a workaround for
30328         bug #48591.
30329
30330 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30331
30332         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30333         delegates passed to native code must use the STDCALL calling 
30334         convention. Fixes #35987.
30335
30336 2003-10-10  Martin Baulig  <martin@ximian.com>
30337
30338         * class.c (inflate_generic_type): If we're inflating for a generic
30339         type instance (and not for a generic method), return
30340         MONO_TYPE_MVAR unchanged.
30341
30342 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30343
30344         * string-icalls.c: Join ignores null strings in the source array.
30345         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30346         * threads.c: GetAvailableTheads is slightly more accurate.
30347
30348 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
30349
30350         * threads.h threads.c : add mono_threads_set_default_stacksize
30351         and pass default to CreateThread calls.
30352
30353 2003-10-09  Dick Porter  <dick@ximian.com>
30354
30355         * icall.c:
30356         * locales.h:
30357         * locales.c: Internal calls for constructing CultureInfo and
30358         related objects from libicu (if its available.)
30359
30360 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
30361
30362         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
30363
30364 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30365
30366         * threadpool.c: added an argument to async_invoke_thread that is the
30367         item to process, pass the MonoAsyncResult to the thread start function
30368         when creating a new thread. This way we don't need to acquire any lock
30369         when we're creating a new thread. Readded a semaphore for faster
30370         response times (instead of that Sleep i added).
30371
30372 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
30373
30374         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30375         get daylight change dates better on Windows, fix handling
30376         of platforms without tm_gmtoff.
30377
30378 2003-10-06  Martin Baulig  <martin@ximian.com>
30379
30380         * class.c (inflate_generic_method): Renamed to
30381         mono_class_inflate_generic_method() and made public.
30382         (mono_class_init): Don't inflate the generic methods here.
30383         (mono_class_from_generic): Added `gboolean inflate_methods'
30384         argument.  Inflate the methods here.
30385
30386         * loader.c (mono_method_get_param_names): Ignore instances of
30387         generic types for the moment.
30388
30389         * reflection.c (fixup_method): Added support for inflated methods.
30390         (mono_image_create_token): Use mono_image_get_methodref_token()
30391         for inflated methods.
30392         (mono_custom_attrs_from_param): Ignore instances of generic types
30393         for the moment.
30394         (mono_reflection_bind_generic_parameters): New public function.
30395         Moved all the functionality from
30396         ves_icall_Type_BindGenericParameters() here and added support for
30397         dynamic types.
30398         (mono_reflection_define_generic_parameter): Initialize
30399         `klass->methods' here.
30400
30401         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
30402         functionality into mono_reflection_define_generic_parameter().
30403         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
30404         TypeBuilder, return that TypeBuilder.
30405
30406 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30407
30408         * appdomain.c: removed mono_delegate_semaphore.
30409
30410         * threadpool.c:
30411         (mono_thread_pool_add): moved hash table creation inside and the thread 
30412         creation outside of the critical region.
30413         (mono_thread_pool_finish): removed obsolete code.
30414         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
30415         continue or exit the thread depending on the queue.
30416
30417 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
30418
30419         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
30420         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
30421         handle more bool marshalling options
30422
30423 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
30424
30425         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
30426         arrays of structs. Also add a more descriptive error message when
30427         a structure member is marshalled as LPArray.
30428
30429 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
30430
30431         * marshal.c (mono_marshal_get_native_wrapper): Add support for
30432         marshalling arrays of complex types. Fixes #29098. Also remove an
30433         usused and incomplete function.
30434
30435 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30436
30437         * gc.c: report heap_size - free_bytes as total memory allocated
30438         (bug#49362).
30439
30440 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
30441
30442         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
30443         fix timezone handling problems on Windows.
30444         
30445         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
30446         asserts when the year is outside the range handled by ms the functions.
30447
30448         * class.c (setup_interface_offsets): If the class is an interface,
30449         fill out its interface_offsets slot.
30450
30451 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30452
30453         * threadpool.c: mark threadpool threads as background.
30454
30455 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
30456
30457         * decimal.c - define DECINLINE to nothing if not using GCC
30458
30459 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
30460
30461         * assembly.c: More refcount fixes.
30462
30463 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30464
30465         * string-icalls.c: if we're not trimming, return the same string.
30466         When not splitting, don't create a new string.
30467
30468 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30469
30470         * image.c:
30471         (mono_image_open): increment the ref_count inside the critical section.
30472
30473 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
30474
30475         * image.c (mono_image_open): Fix reference counting bug.
30476
30477 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
30478
30479         * marshal.c (mono_marshal_type_size) struct alignment changed for 
30480         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
30481         64bits. Avoid leak in mono_marshal_get_native_wrapper when
30482         mono_lookup_pinvoke_call throws.        
30483
30484 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
30485
30486         * reflection.c (mono_reflection_parse_type): Fix #49114.
30487
30488         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
30489         temporary workaround for cygwin header problem.
30490
30491         * object.c (mono_object_isinst): Synchronize this with the code
30492         generated by the JIT for casts.
30493
30494 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
30495
30496         * reflection.c (encode_type): Fix #38332.
30497
30498 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
30499
30500         * marshal.c (mono_marshal_method_from_wrapper): New function to return
30501         the original method from the wrapper method.
30502
30503 2003-09-25  Martin Baulig  <martin@ximian.com>
30504
30505         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
30506         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
30507         (ves_icall_Type_get_IsGenericInstance): New interncall.
30508
30509 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
30510
30511         * object.c: fix cast warning in big endian code.
30512
30513 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
30514
30515         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
30516         
30517 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30518
30519         * assembly.c: don't call check_env from mono_assembly_load. It's
30520         already done once in mono_assemblies_init and may cause headaches when
30521         multiple threads are loading assemblies.
30522
30523 2003-09-19  Martin Baulig  <martin@ximian.com>
30524
30525         * reflection.c (mono_reflection_define_generic_parameter): Don't
30526         allocate `klass->methods', set `klass->flags' to
30527         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
30528
30529 2003-09-18  Martin Baulig  <martin@ximian.com>
30530
30531         * class.c (mono_class_init): Don't create `class->methods' if it's
30532         already initialized.
30533
30534         * metadata.c (mono_metadata_load_generic_params): Make this
30535         actually work.
30536
30537         * reflection.c (mono_reflection_define_generic_parameter): Set
30538         parent class and interfaces from the constraints.
30539
30540         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
30541         to keep this struct in sync with the declaration in TypeBuilder.cs.
30542
30543 2003-09-17  Martin Baulig  <martin@ximian.com>
30544
30545         * metadata.h (MonoType): Replaced the data's `int type_param'
30546         field with `MonoGenericParam *generic_param'.
30547         (MonoGenericParam): Added `MonoClass *klass'.
30548
30549         * class.c (mono_class_from_gen_param): Removed the
30550         `MonoImage *image' and `int type_num' arguments.
30551
30552         * metadata.c (mono_metadata_parse_generic_param): New static
30553         method; creates a MonoGenericParam which just contains the index.
30554         (do_mono_metadata_parse_type): Call
30555         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
30556         MONO_TYPE_MVAR.
30557
30558         * reflection.c (mono_image_typedef_or_ref): Generic type
30559         parameters may be in the same assembly, but never use a typedef
30560         for them.
30561         (mono_reflection_define_generic_parameter): We're now creating a
30562         "real" class for the type parameter; it's now safe to call
30563         mono_class_from_mono_type() on the class'es type, it'll do the
30564         right thing.
30565
30566 2003-09-16  Martin Baulig  <martin@ximian.com>
30567
30568         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
30569         `symfile->range_entry_size' and `symfile->class_entry_size' here;
30570         the `symfile' data structure must be fully initialized before it
30571         gets added to the table.
30572
30573 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
30574
30575         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
30576
30577         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
30578         class init trampolines.
30579
30580 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
30581
30582         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
30583         to the built-in profiler to turn off time and allocation profiling
30584         respectively.
30585
30586 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
30587
30588         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
30589         g_direct_equal.
30590
30591         * debug-helpers.c (mono_method_full_name): Print the wrapper type
30592         in human readable form.
30593
30594 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
30595
30596         * reflection.c icall.c: Fixed warnings.
30597
30598         * image.c (load_class_names): Use a temporary hash table to hold the
30599         namespaces in order to avoid doing many string comparisons.
30600
30601         * image.h: Fix typo.
30602
30603         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
30604         Pass NULL instead of g_direct_equal to the GHashTable constructor 
30605         since the NULL case is short-circuited inside g_hash_table_lookup, 
30606         leading to better performance.  
30607
30608         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
30609         obtain the first custom attribute for a given index. Depends on the
30610         CustomAttribute table being sorted by the parent field.
30611
30612         * reflection.c (mono_custom_attrs_from_index): Use the new function 
30613         for better performance.
30614
30615 2003-09-07  Martin Baulig  <martin@ximian.com>
30616
30617         * class.c (mono_class_init): If we're a generic instance, inflate
30618         all our methods instead of loading them from the image.
30619         (mono_class_from_generic): Set `class->methods = gklass->methods'.
30620
30621 2003-09-07  Martin Baulig  <martin@ximian.com>
30622
30623         * mono-debug-debugger.c: Added support for constructors.
30624
30625 2003-09-06  Martin Baulig  <martin@ximian.com>
30626
30627         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
30628         New interncall.
30629
30630         * reflection.c (mono_reflection_setup_generic_class): Call
30631         ensure_runtime_vtable() to create the vtable.
30632
30633 2003-09-05  Martin Baulig  <martin@ximian.com>
30634
30635         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
30636         MONO_TYPE_MVAR.
30637
30638 2003-09-04  Martin Baulig  <martin@ximian.com>
30639
30640         * reflection.c (mono_reflection_define_generic_parameter): Generic
30641         parameters start with zero.
30642
30643 2003-09-04  Martin Baulig  <martin@ximian.com>
30644
30645         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30646
30647         * reflection.h (MonoReflectionGenericParam): New typedef.
30648         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
30649         the generic parameters from the managed TypeBuilder.
30650
30651         * reflection.c (mono_reflection_define_generic_parameter): New function.
30652         (mono_reflection_create_runtime_class): Encode generic parameters.
30653         (mono_reflection_setup_generic_class): New function; this is
30654         called after adding adding all generic params to the TypeBuilder.
30655         (encode_type): Added MONO_TYPE_VAR.
30656
30657 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
30658
30659         * class.h class.c (mono_class_needs_cctor_run): Moved this method
30660         here from the JIT.
30661
30662         * assembly.h assembly.c: Moved the AOT loading code into an assembly
30663         load hook.
30664
30665 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
30666
30667         * reflection.h reflection.c class.h class.c: Delete duplicate 
30668         definition of mono_type_get_name () from reflection.c and export the
30669         one in class.c.
30670
30671         * class.c: Class loading fixes from Bernie Solomon 
30672         (bernard@ugsolutions.com).
30673
30674         * reflection.c: Endianness fixes from Bernie Solomon 
30675         (bernard@ugsolutions.com).
30676         
30677 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
30678
30679         * assembly.h assembly.c: Define a file format version for AOT
30680         libraries.
30681         
30682         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
30683
30684         * appdomain.h (MonoJitInfo): New field to determine whenever the
30685         code is domain neutral.
30686         
30687 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
30688
30689         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
30690
30691 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
30692
30693         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
30694         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
30695         Avoid caching the result since strings must be domain specific. Fixes
30696         #48050.
30697
30698 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
30699
30700         * marshal.c (mono_marshal_init): Make this callable multiple times
30701         since it is hard to find a correct place to call it.
30702
30703         * object.c (mono_runtime_class_init): Execute static constructors in
30704         the correct appdomain.
30705
30706         * image.c (build_guid_table): Handle the case when multiple images have
30707         the same GUID.
30708
30709 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30710
30711         * icall.c: added a couple of icalls for System.Web.
30712
30713 2003-08-28  Martin Baulig  <martin@ximian.com>
30714
30715         * icall.c (ves_icall_Type_BindGenericParameters): Use
30716         `klass->generic_inst' instead of `&klass->byval_arg' in the
30717         mono_type_get_object() call.  The returned type must be
30718         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
30719
30720 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
30721
30722         * NOTES: New file.
30723
30724         * object.c (mono_class_proxy_vtable): Make it thread safe.
30725
30726         * pedump.c: Fix warning.
30727
30728         * object.c appdomain.h: Get rid of metadata_section. 
30729         It is no longer needed and it was causing deadlocks with domain->lock.
30730
30731         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
30732
30733 2003-08-26  Martin Baulig  <martin@ximian.com>
30734
30735         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
30736
30737 2003-08-26  Martin Baulig  <martin@ximian.com>
30738
30739         * pedump.c (main): Call mono_metadata_init(),
30740         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
30741         and mono_loader_init().
30742
30743 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
30744
30745         * loader.h: Add missing include to fix build.
30746
30747         * image.h: mono_image_load_references is no more.
30748
30749         * assembly.c: Reworked assembly loading to make it really thread safe.
30750         After these changes, the assembly returned by mono_assembly_open is
30751         fully initialized, i.e. all its references assemblies are loaded.
30752
30753         * assembly.c (mono_image_load_references): Renamed to 
30754         mono_assembly_load_references, and made private, since clients no
30755         longer need to call it.
30756
30757         * class.c: Removed calls to mono_assembly_load_references, since it was
30758         a source of deadlocks.
30759
30760         * loader.h loader.c class.h class.c: Protect data structures using a 
30761         new lock, the loader lock.
30762
30763         * class.c (mono_class_setup_vtable): Create temporary hash tables and
30764         GPtrArrays only when needed.
30765
30766         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
30767         into empty structures by mcs. Fixes pinvoke7.cs.
30768         
30769         * domain.c (mono_init): Call a new initialization function.
30770
30771         * appdomain.c (mono_runtime_init): Call the new initializer function
30772         of the marshal module.
30773
30774         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
30775         inserted into empty structures by mcs. Fixes pinvoke7.cs.
30776
30777         * marshal.h marshal.c: Added locks around the wrapper caches to make
30778         this module thread safe.
30779
30780         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
30781         this argument. Fixes pinvoke1.exe.
30782
30783 2003-08-25  Lluis Sanchez <lluis@ximian.com>
30784
30785         * object.h: Added call_type field to MonoMethodMessage and the corresponding
30786         enumeration of values. Removed fields to store remote call output values in
30787         MonoAsyncResult. Not needed any more.
30788         * object.c: Initialize call_type and async_result fields in mono_message_init.
30789         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
30790         dispatching the message.
30791         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
30792         async call to finish. To do it use a message with EndInvoke call type.
30793
30794 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
30795
30796         * loader.h loader.c (mono_method_hash_marhal_info): New function which
30797         determines whenever a method has marshalling info.
30798
30799 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30800
30801         * assembly.c: fix the build on windows.
30802
30803 2003-08-22 Lluis Sanchez <lluis@ximian.com>
30804
30805         * object.cs: Fixed bug #47785.
30806
30807 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
30808
30809         * string-icalls.c (StringReplace): If their are no occurances of
30810         the old string found return a reference to the supplied
30811         string. This saves some memory and matches MS behavoir.
30812         
30813 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30814
30815         * socket-io.c: fixed compilation for systems that define AF_INET6
30816         and don't define SOL_IP/SOL_IPV6.
30817
30818 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
30819
30820         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
30821         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
30822
30823         * rawbuffer.c rawbuffer.h: Make this module thread safe.
30824
30825         * domain.c: Make this module thread safe.
30826
30827         * domain.c (mono_init): Call new initialization function.
30828
30829         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
30830         reference types too. Fixes #38812.
30831
30832         * image.c (mono_image_init): Fixed warnings.
30833
30834         * class.c (mono_class_from_typeref): Handle assembly load failure
30835         correctly.
30836
30837         * appdomain.c (add_assemblies_to_domain): Handle the case when
30838         the references of an assembly are not yet loaded.
30839
30840         * metadata.c image.c assembly.c: Moved initialization of global
30841         variables to a separate function called at startup since lazy 
30842         initialization of these variables is not thread safe.
30843         
30844         * image.c assembly.c: Made this module thread safe by adding locks in 
30845         the appropriate places.
30846
30847         * domain.c (mono_init): Call the new initialization functions of the
30848         three modules.
30849
30850 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
30851
30852         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
30853           make a direct call. It is proxy's work to make the call asynchronous.
30854           mono_delegate_end_invoke(): If the targe is a proxy, just collect
30855           the return values.
30856         * object.cs: mono_method_call_message_new(): read AsyncResult and
30857           state object from parameters list, if this info is requested.
30858         * object.h: Added fields to store remote call output values in
30859           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
30860
30861 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30862
30863         * object.h: add needed fields to MonoThread.
30864         * threads.c, threads.h: allow registering a function to cleanup data
30865         allocated per thread by the JIT.
30866
30867 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30868
30869         * loader.h: portability fix by Bernie Solomon
30870         * <bernard@ugsolutions.com>.
30871
30872 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
30873
30874         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
30875         return a MonoArray. This simplifies the code and also ensures that
30876         the cache allways contains an object reference as a value.
30877
30878         * icall.c (ves_icall_get_parameter_info): Simplified using the new
30879         function.
30880
30881 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30882
30883         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
30884         fixes a problem with byte ordering when getting the address family for
30885         a socket.
30886
30887 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
30888
30889         * .cvsignore: Added monosn.
30890
30891         * reflection.h reflection.c loader.c: Added support for parameter
30892         marshalling to dynamically created types. Fixes #47295.
30893
30894 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
30895
30896         * rand.c: remove useless warnings.
30897
30898 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
30899
30900         * class.c: implemented ldtoken for methods and fieldrefs.
30901
30902 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30903
30904         * threadpool.c: when mono_async_invoke was called, no one took care of
30905         monitoring the queue. So if the method invoked took some time and we
30906         got new async invoke requests after 500 ms (the thread created waited
30907         that long in WaitForSingleObject), the new async invoke was not called
30908         until the previous one finished.
30909
30910         This is fixed now. Thanks to Totte for helping with it.
30911
30912 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30913
30914         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
30915
30916 2003-08-11  Martin Baulig  <martin@ximian.com>
30917
30918         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
30919
30920 2003-08-06  Martin Baulig  <martin@ximian.com>
30921
30922         * mono-debug-debugger.c: Added support for static fields,
30923         properties and methods.
30924
30925 2003-08-06  Martin Baulig  <martin@ximian.com>
30926
30927         * mono-debug-debugger.c: Don't store the MonoString's vtable to
30928         make this work for applications with multiple application domains.
30929
30930 2003-08-04  Martin Baulig  <martin@ximian.com>
30931
30932         * mono-debug-debugger.c: Completely reworked the type support; the
30933         most important thing is that we're now just using one single
30934         `MonoType' instance per type.
30935
30936 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
30937
30938         * mono-endian.h, mono-endian.c, icall.c: Added icall
30939         ves_icall_System_Double_AssertEndianity to assert double word endianity
30940         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
30941
30942 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30943
30944         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
30945         support, icalls and fixes.
30946
30947 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
30948
30949         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
30950         classes that are a punctuation character in .NET is not the same a
30951         g_unichar_ispunct.
30952
30953 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30954
30955         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
30956
30957 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
30958
30959         * icall.c: Add new MemCopy internalcall.
30960         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
30961         Simplified code; It is not necessary to handle all the cases here,
30962         as the C# code takes care of it.  Only handle the case of the name
30963         resource embedded into the assembly.
30964
30965         Changed signature to return the data pointer and the size of the
30966         data. 
30967
30968 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
30969
30970         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
30971         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
30972
30973 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
30974
30975         * socket-io.c: ignore EINTR error in select.
30976
30977 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
30978
30979         * class.h, class.c: removed unused subclasses field in MonoClass.
30980
30981 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
30982
30983         * icall.c: improve fix of get_base_definition(). If the parent class
30984           doesn't have the mehod, look at the parent of the parent.
30985         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
30986           to check if a parameter is an in or out parameter
30987           (PARAM_ATTRIBUTE_IN is not set by default).
30988           mono_method_return_message_restore(): Use mono_class_value_size to
30989           get the size of a value type. mono_type_stack_size (parameterType)
30990           does not return the correct value if parameterType is byRef.
30991           mono_load_remote_field(), mono_load_remote_field_new(),
30992           mono_store_remote_field(), mono_store_remote_field_new():
30993           raise exception if the remote call returns an exception.
30994
30995 2003-07-28  Martin Baulig  <martin@ximian.com>
30996
30997         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
30998         method.  This is a wrapper around mono_runtime_invoke() which
30999         boxes the instance object if neccessary.
31000
31001 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31002
31003         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
31004         metadata.h, row-indexes.h, verify.c: first cut of generics support.
31005
31006 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31007
31008         * icall.c: disable mcs bug workaround.
31009
31010 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
31011
31012         * object.c (mono_runtime_class_init): Take the metadata_section
31013         mutex before obtaining the domain mutex.
31014
31015         * appdomain.h: Added definition of metadata_section mutex here. 
31016
31017         * object.c: define metadata_mutex here.
31018
31019 2003-07-24  Ravi Pratap  <ravi@ximian.com>
31020
31021         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
31022         fixed.
31023
31024 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
31025
31026         * reflection.c: Fix bug #46669
31027
31028 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31029
31030         * exception.c:
31031         * exception.h:
31032         * icall.c:
31033         * object.h: fill in the type name for TypeLoadException.
31034
31035 2003-07-23  Ravi Pratap  <ravi@ximian.com>
31036
31037         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
31038         relationship between TypeBuilders while compiling corlib) and bug
31039         45993 (Array types returned from the runtime while compiling
31040         corlib were from the loaded corlib).
31041
31042 2003-07-22  Martin Baulig  <martin@ximian.com>
31043
31044         * mono-debug-debugger.c: Reworked the type support a bit more;
31045         distinguish between types and classes.
31046
31047 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
31048
31049         * icall.c: add IsArrayImpl icall.
31050
31051 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
31052
31053         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
31054         initializing real_size only once. Also fix bug #46602.
31055
31056 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
31057
31058         * object.c: Renamed mono_metadata_section to metadata_section.
31059
31060 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
31061
31062         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
31063           empty array if the type is an array. Fixed.
31064           ves_icall_MonoMethod_get_base_definition: if the base method
31065           is abstract, get the MethodInfo from the list of methods of
31066           the class.
31067         * reflection.c: ParameterInfo.PositionImpl should be zero-based
31068           and it was 1-based. Fixed in mono_param_get_objects.
31069
31070 2003-07-20  Martin Baulig  <martin@ximian.com>
31071
31072         * mono-debug.h: Set version number to 31.
31073         (mono_debug_init): Added `MonoDomain *' argument.
31074
31075         * mono-debug-debugger.c: Reworked the type support; explicitly
31076         tell the debugger about builtin types; pass the `klass' address to
31077         the debugger.
31078
31079 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
31080
31081         * image.c: Allow new metadata tables to be loaded without a
31082         warning. Also update the warning message to give the new constant value.
31083                 
31084 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31085
31086         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31087         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
31088         array type representation changes.
31089
31090 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31091
31092         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31093         on Environment.Exit () call.
31094
31095 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31096
31097         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31098         requires a matching corlib.
31099
31100 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31101
31102         * Changelog: My editor decided to add a CR to each line. Sorry about that.
31103           Committed again without the CRs.
31104         
31105 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31106
31107         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31108           getting it from the "this" socket instance. Did not work
31109           if the socket is a subclass of Socket.
31110           Also fixed bug #35371.
31111
31112 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31113
31114         * metadata.c: fixed size for TypedByRef.
31115         * loader.c: when searching for a method, consider the vararg amrker.
31116         * unicode.c, decimal.c: constify some arrays.
31117
31118 2003-07-15  Dick Porter  <dick@ximian.com>
31119
31120         * socket-io.c: Fixed compilation for gcc < 3.2.
31121
31122         Fixed compilation for machines that don't have AF_INET6 (thanks to
31123         Bernie Solomon <bernard@ugsolutions.com> for that part.)
31124
31125         Fixed compile warnings.
31126         
31127         Fixed formatting and line endings.
31128
31129 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31130
31131         * socket-io.h:
31132         * socket-io.c: Added IPv6 support.
31133
31134 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31135
31136         * class.c (mono_class_is_assignable_from): New function to implement
31137         the is_assignable_from logic. Used by mono_object_isinst, 
31138         Type::IsAssignableFrom () and the interpreter.
31139
31140         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31141         Object, even interfaces.
31142         
31143         * object.c (mono_object_isinst): Implement in terms of 
31144         is_assignable_from.
31145
31146         * icall.c (ves_icall_type_is_assignable_from): New icall.
31147
31148 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31149
31150         * domain.c (foreach_domain): fix compiler warning.
31151
31152 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31153
31154         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31155         not available on all plattforms
31156
31157 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31158
31159         * image.h image.c: Store the metadata version string in MonoImage.
31160         * icall.c: New icall to retrieve the image version.
31161         * reflection.c (create_dynamic_image): Fill in the image version field
31162         * reflection.c (build_compressed_metadata): Use the image version
31163         from the image structure.
31164
31165 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31166
31167         * appdomain.c: modified comment.
31168         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31169         That will be its last iteration when mono_gc_cleanup is called from
31170         mono_runtime_cleanup and before the domain is unloaded.
31171
31172         Fixes bug #45962.
31173
31174 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31175
31176         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31177         attributes.
31178
31179 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31180
31181         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31182         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31183         Bernie Solomon <bernard@ugsolutions.com>.
31184
31185 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31186
31187         * object.c, object.h: provide mono_object_new_fast() for faster
31188         allocation in some special cases.
31189
31190 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31191
31192         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31193         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31194
31195 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31196
31197         * threadpool.c: fix leaks.
31198
31199 2003-07-01  Dick Porter  <dick@ximian.com>
31200
31201         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31202         using MonoGHashTables.  Fixes threadpool bug posted to list.
31203
31204 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31205
31206         * image.h, image.c: added support to load an assembly from a byte array.
31207         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31208         assembly bundle support.
31209
31210 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31211
31212         * threadpool.c (mono_thread_pool_add): keep a reference to the
31213         AsyncResult to prevent GC
31214
31215 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31216
31217         * class.c: leak fix.
31218
31219 2003-06-25  Dick Porter  <dick@ximian.com>
31220
31221         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31222         for the async object, the WaitHandle object will close the handle.
31223         Fixes bug 45321.
31224
31225 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31226
31227         * class.c: in mono_array_class_get (), lookup from the hash with the
31228         same type we insert: this works around a bug in
31229         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31230         lluis. The real fix will have to wait for after the release.
31231
31232 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31233
31234         * icall.c: fix memory leak when getting type members.
31235
31236 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31237
31238         * reflection.c: added more pubtoken special cases.
31239
31240 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31241
31242         * class.c: handle field offset correctly when class size
31243         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31244
31245 2003-06-20  Martin Baulig  <martin@ximian.com>
31246
31247         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31248         *image' field.
31249
31250 2003-06-20  Martin Baulig  <martin@ximian.com>
31251
31252         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31253
31254 2003-06-20  Martin Baulig  <martin@ximian.com>
31255
31256         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31257         just distinguish between variables in registers and variables at
31258         an offset relative to a register.
31259
31260 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31261
31262         * icall.c: #ifdef out latest changes until mcs is fixed.
31263
31264 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31265
31266         * icall.c: return members in metadata order.
31267
31268 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31269
31270         * icall.c: avoid infinite loop in GetTimeZoneData.
31271
31272 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31273
31274         * icall.c: added Marshal.Prelink/All icalls.
31275
31276 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31277
31278         * object.c, object.h: fix warnings and do some overflow checking
31279         when creating arrays.
31280
31281 2003-06-17  Dick Porter  <dick@ximian.com>
31282
31283         * file-io.h:
31284         * file-io.c: File attributes need to be tweaked slightly when
31285         passed from the managed to the w32 world.
31286
31287 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31288         * profiler.h profiler-private.h profiler.c: Rework last patch
31289         based on suggestion by Paolo.
31290         
31291 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31292
31293         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31294         instruction level coverage data collection.
31295         * profiler.h profiler.c (: Added new callback function which can be
31296         used by the profiler to limit which functions should have coverage
31297         instrumentation.
31298         * profiler.c (mono_profiler_load): Call g_module_build_path to
31299         generate the file name of the profiler library.
31300
31301 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31302
31303         * profiler.c, profiler.h, profiler-private.h: added basic block 
31304         coverage profiling API.
31305
31306 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31307
31308         * reflection.c (mono_reflection_create_runtime_class): Add support
31309         for events in dynamically generated code.
31310
31311         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31312         not allocated.
31313
31314 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31315
31316         * icall.c: when getting timezone info, return reasonable values if we
31317         can't get the actual data.
31318
31319 2003-06-14  Dick Porter  <dick@ximian.com>
31320
31321         * threads.c (start_wrapper): Remove the reference to the thread
31322         object in the TLS data, so the thread object can be finalized.
31323         This won't be reached if the thread threw an uncaught exception,
31324         so those thread handles will stay referenced :-( (This is due to
31325         missing support for scanning thread-specific data in the Boehm GC
31326         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31327
31328 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31329
31330         * reflection.c: ensure streams and tables are first allocated with
31331         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31332
31333 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31334
31335         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31336
31337 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31338
31339         * reflection.c (mono_reflection_create_runtime_class): Add support for
31340         properties to dynamically created classes.
31341         * reflection.c: Fix a few places where non-MonoObjects were inserted
31342         into the tokens hashtable.
31343
31344 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31345
31346         * object.c: some support to handle out of memory exceptions.
31347
31348 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
31349
31350         * marshal.c (mono_marshal_get_native_wrapper): support reference
31351         return types
31352
31353 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31354
31355         * object.h, object.c: more portability stuff from Bernie Solomon.
31356         Unexport mono_object_allocate(). Added mono_object_unbox ().
31357         Set exitcode when an unhandled exception is thrown.
31358
31359 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
31360
31361         * marshal.c (mono_marshal_get_native_wrapper): use custom
31362         marshaler for return types.
31363
31364 2003-06-10  Dick Porter  <dick@ximian.com>
31365
31366         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
31367         ip_mreq is available
31368
31369 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
31370
31371         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
31372         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
31373         by Bernie Solomon <bernard@ugsolutions.com>.
31374
31375 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
31376
31377         * gc.c (mono_gc_init): Avoid error message on shutdown when
31378         GC_DONT_GC=1 is used.
31379
31380         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
31381         New icall to return the GUID of a module.
31382
31383 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31384
31385         * class.c: ensure instance size always includes the parent's size
31386         even whem class size is set explicitly (fixes bug#44294).
31387
31388 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31389
31390         * profiler.h, profiler.c: made the simple profiler thread-safe,
31391         get more accurate timing info. Allow the loading of an
31392         externally-developed profiler module.
31393
31394 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
31395
31396         * marshal.c (mono_marshal_get_native_wrapper): improved
31397         class/byref arguments.
31398         (mono_marshal_get_native_wrapper): better string marshaling support.
31399
31400 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
31401
31402         * class.c: ensure .pack and .size are handled correctly and
31403         simplified layout of static fields.
31404
31405 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
31406
31407         * appdomain.c
31408         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
31409
31410         * loader.c (mono_lookup_pinvoke_call): look for modules in the
31411         current directory (fix bug 44008)
31412
31413 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
31414
31415         * marshal.c (mono_marshal_get_native_wrapper): started support for
31416         custom marshalers.
31417         (mono_delegate_to_ftnptr): consider marshalling specifications
31418
31419 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
31420
31421         * reflection.c, reflection.h: emit custom marshal info.
31422
31423 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31424
31425         * object.c: free the GError.
31426         * icall.c: added CloseEvent_internal.
31427         * threads.[ch]:
31428         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
31429         call.
31430
31431 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
31432
31433         * loader.c (mono_method_get_signature): Add support for dynamic
31434         assemblies.
31435
31436 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
31437
31438         * reflection.c: fixed bug #43905.
31439
31440 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31441
31442         * class.c, domain.c, icall.c, metadata.h, object.h: support for
31443         handling TypedReference and ArgIterator.
31444         * loader.c, loader.h: added function to get signature at call site.
31445
31446 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31447
31448         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
31449         data readonly. Buglets and warning fixes. Some MethodSpec support.
31450
31451 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31452
31453         * class.h, class.c, object.c: remove relative numbering support.
31454
31455 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
31456
31457         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
31458         free the string, until we get a chance to fix Gtk#
31459
31460 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31461
31462         * marshal.c: revert last patch.
31463
31464 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
31465
31466         * icall.c: updates for new mono_class_vtable() not calling
31467         the type constructor anymore.
31468
31469 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31470
31471         * object.h, object.c: separate vtable creation from type
31472         initialization. Make running the .cctor thread safe.
31473
31474 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
31475
31476         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
31477
31478 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
31479
31480         * loader.c (mono_get_method): consider calling convention
31481
31482 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
31483
31484         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
31485         to return the invisible global type for a module.
31486
31487         * reflection.c (mono_image_build_metadata): Emit global fields too.
31488
31489 2003-05-20  Peter Williams  <peterw@ximian.com>
31490
31491         * loader.c (mono_lookup_internal_call): Add a few newlines.
31492
31493 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
31494
31495         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
31496         literal strings.
31497
31498         * appdomain.c (set_domain_search_path): Recalculate search path when
31499         AppDomainSetup.PrivateBinPath changes.
31500
31501         * object.c (mono_class_compute_gc_descriptor): It turns out some
31502         parts of the class libs (like System.Thread) holds pointers to
31503         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
31504         to treat native int a pointer type here.
31505         
31506 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
31507
31508         * appdomain.h, domain.c: add hashtable for jump target resolution.
31509
31510 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
31511
31512         * reflection.h reflection.c icall.c: Added new icalls 
31513         GetManifestResourceInfoInternal, GetModulesInternal and support
31514         infrastructure.
31515
31516 2003-05-16  Dick Porter  <dick@ximian.com>
31517
31518         * icall.c:
31519         * file-io.h:
31520         * file-io.c: Implement System.IO.MonoIO::GetTempPath
31521
31522 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
31523
31524         * object.c: mono_store_remote_field: little fix to previous patch.
31525
31526 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31527
31528         * class.c: add constructors to array classes.
31529         * icall.c: special case array construction for InternalInvoke (),
31530
31531 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
31532
31533         * class.h class.c reflection.c object.c: Added support for field
31534         defaults in dynamically generated classes.
31535
31536 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
31537
31538         * reflection.c: properly encode charset for ddlimport.
31539
31540 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
31541
31542         * threads.c: allow compiling without GC.
31543
31544 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31545
31546         * appdomain.h, object.c, object.h, threads.c, threads.h: added
31547         handling of thread static data.
31548
31549 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31550
31551         * reflection.h, reflection.c: added mono_custom_attrs_free ().
31552
31553 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
31554
31555         * class.c (mono_array_class_get): always set the serializable flags
31556         (mono_array_class_get): always set the SEALED attribute for array types
31557
31558 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
31559
31560         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
31561         attributes (fix for bug 42021).
31562
31563 2003-05-12  Dick Porter  <dick@ximian.com>
31564
31565         * gc.c: Don't run finalizers when the finalizer thread is
31566         finishing up, because the default domain has already been
31567         destroyed.
31568
31569 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
31570
31571         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
31572         value is null, we should throw an exception.   This is slightly
31573         different than the other conventions used for the constructor.
31574
31575 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31576
31577         * socket-io.c: fixed windows build.
31578
31579 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31580
31581         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
31582
31583 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
31584
31585         * object.c (mono_string_new_wrapper): Compatibility fix for MS
31586         compilers.
31587
31588 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
31589
31590         * class.c (mono_class_layout_fields): Add experimental GC aware
31591         auto layout facility. Requires class library changes to work correctly.
31592
31593         (mono_class_setup_vtable): Avoid overriding explicit interface
31594         method implementations. Fixes iface3.exe test.
31595
31596         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
31597         object reference.
31598         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
31599         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
31600
31601         * metadata.h: Add new type classification macro which determines
31602         whenever the type holds an object reference.
31603
31604 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
31605
31606         * marshal.c (mono_marshal_get_native_wrapper): cleanups
31607
31608 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
31609
31610         * gc.c (finalizer_thread): Work around a GC bug.
31611
31612 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
31613
31614         * marshal.c (emit_struct_conv): allow unions
31615
31616         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
31617
31618 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
31619
31620         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
31621
31622 2003-05-06  Martin Baulig  <martin@ximian.com>
31623
31624         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
31625
31626 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31627
31628         * socket-io.c:
31629         (Select_internal): allow NULLs, don't create arrays if not needed.
31630         Coupled with Socket.cs changes.
31631
31632         * threadpool.c:
31633         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
31634         register a finalizer for it that will close the semaphore handle. This
31635         fixes the leak and make Lupus' test run with > 4080 loops.
31636
31637 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
31638
31639         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
31640         Jerome Laban (bug #42287)
31641
31642 2003-05-02  Martin Baulig  <martin@ximian.com>
31643
31644         * debug-mono-symfile.h
31645         (MonoSymbolFile): Moved declaration into mono-debug.h.
31646         (MonoDebugMethodJitInfo): Likewise.
31647         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
31648         argument.
31649         (_mono_debug_address_from_il_offset): Take a
31650         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
31651
31652         * mono-debug.h
31653         (MonoDebugDomainData): New struct.
31654         (mono_debug_get_domain_data): New function.
31655         (mono_debug_add_method): Take an additional `MonoDomain *'
31656         argument.
31657         (mono_debug_source_location_from_address): Likewise.
31658         (mono_debug_il_offset_from_address): Likewise.
31659         (mono_debug_address_from_il_offset): Likewise.
31660
31661 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
31662
31663         * reflection.c: one more check for null type in custom attrs.
31664
31665 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31666
31667         * reflection.c: avoid warning (comparison is always false due to limited
31668         range of data type).
31669
31670 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31671
31672         * icall.c: throw an exception in Type.GetField if the argument 'name'
31673         is NULL.
31674
31675 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
31676
31677         * reflection.c: fixed handling of enums in named arguments to custom
31678         attributes (bug #42123).
31679
31680 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
31681
31682         * reflection.c: use the right array element type and handle
31683         a null for a Type argument, too.
31684
31685 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
31686
31687         * reflection.c: handle arrays as arguments to custom attributes.
31688
31689 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31690
31691         * reflection.c: handle a string value in a custom attr
31692         ctor that takes an object.
31693
31694 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
31695
31696         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
31697         (fix bug #42063)
31698
31699 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
31700
31701         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
31702
31703 2003-04-27  Martin Baulig  <martin@ximian.com>
31704
31705         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
31706         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
31707         MONO_DEBUGGER_EVENT_BREAKPOINT.
31708         (mono_breakpoint_trampoline_code): Removed.
31709         (mono_debugger_event_handler): The last argument is now a
31710         `guint32'.
31711         (mono_debugger_insert_breakpoint_full): Removed the
31712         `use_trampoline' argument.
31713         (mono_debugger_method_has_breakpoint): Likewise.
31714         (mono_debugger_trampoline_breakpoint_callback): Renamed to
31715         mono_debugger_breakpoint_callback(); take the method and
31716         breakpoint number as arguments.
31717
31718 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
31719
31720         * metadata.c: fix off by one when loading parameters attributes.
31721
31722 2003-04-24  Martin Baulig  <martin@ximian.com>
31723
31724         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
31725
31726 2003-04-24  Martin Baulig  <martin@ximian.com>
31727
31728         * mono-debug-debugger.c: Moved all code which interacts with the
31729         Mono Debugger here.
31730
31731         * debug-mono-symfile.c: This code now just deals with the symbol
31732         file itself, the debugger code is now in mono-debug-debugger.c.
31733
31734 2003-04-23  Martin Baulig  <martin@ximian.com>
31735
31736         * mono-debug.c (mono_debug_source_location_from_il_offset):
31737         New method; like mono_debug_source_location_from_address(), but
31738         takes an IL offset instead of a machine address.
31739
31740 2003-04-23  Martin Baulig  <martin@ximian.com>
31741
31742         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
31743         `line' field; this is now computed by the debugger.
31744
31745 2003-04-23  Martin Baulig  <martin@ximian.com>
31746
31747         * mono-debug.[ch]: New files.  This is the new debugging interface.
31748
31749         * mono-debug-debugger.[ch]: New files.  Moved all code which
31750         interacts with the Mono Debugger here.
31751
31752 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
31753
31754         * domain.c (mono_init): initialize mono_defaults.monitor_class
31755
31756 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
31757
31758         * reflection.c (method_encode_code): Add a spicy exception to help
31759         future compiler authors.
31760
31761 2003-04-21  Martin Baulig  <martin@ximian.com>
31762
31763         * icall.c
31764         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
31765         Make this work with relative pathnames; g_filename_to_uri() needs
31766         an absolute filename.
31767
31768 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
31769
31770         * icall.c: Track name changes in Object and ValueType.
31771
31772 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
31773
31774         * metadata.c (mono_type_stack_size): size should be a multiple of
31775         sizeof (gpointer)
31776
31777 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31778
31779         * gc.c:
31780         (internal_domain_finalize): moved into mono_domain_finalize. No need
31781         to create another thread because the finalizers will be run in the
31782         finalizer thread.
31783         
31784         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
31785         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
31786         to be run (MS does this too).
31787
31788 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
31789
31790         * object.c (mono_class_compute_gc_descriptor): Update comment.
31791
31792         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
31793
31794         * image.h: Add synchronized wrapper cache.
31795
31796         * image.c (do_mono_image_open): Initialize cache.
31797
31798         * reflection.c (create_dynamic_mono_image): Initialize cache.
31799
31800 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31801
31802         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
31803         ves_icall_System_Buffer_ByteLengthInternal.
31804
31805 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31806
31807         * reflection.c: setup klass->nested_in earlier. Allow
31808         a dash in the assembly name.
31809
31810 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
31811
31812         * metadata.c (mono_type_to_unmanaged): dont access
31813         type->data.klass for MONO_TYPE_OBJECT
31814         (mono_type_to_unmanaged): consider System.Delegate class
31815
31816 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
31817
31818         * class.c: just setup supertypes in the proper place instead of
31819         initializing the full element class for arrays.
31820
31821 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31822
31823         * class.c: ensure the element class of arrays is initialized.
31824         Setup the supertype info for array classes, too.
31825
31826 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
31827
31828         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
31829
31830 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31831
31832         * Makefile.am: re-added -m option when running cygpath. This way,
31833         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
31834         separator.
31835         * mono-config.c: same codepath for locating mono config file for WIN32
31836         and the rest.
31837         * assembly.c: if mono_assembly_setrootdir is called, don't override
31838         the value set.
31839
31840 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31841
31842         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
31843         MONO_ASSEMBLIES variable.
31844
31845 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
31846
31847         * icall.c: added Assembly::GetNamespaces() icall.
31848
31849 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31850
31851         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
31852
31853 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
31854
31855         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
31856         * object.c: fixed bug in the construction of vtable for proxies
31857
31858 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
31859
31860         * object.c (mono_array_new): Mark mono_array_new as an icall.
31861
31862 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31863
31864         * class.c: fixed test for public method when overriding interfaces.
31865         Closes bug #40970.
31866
31867 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31868
31869         * appdomain.h, domain.c: added mono_domain_foreach() to
31870         be able to access the currently loaded appdomains.
31871         * object.c: make string interning work across sppdomains.
31872         Mark some functions for use as icalls.
31873
31874 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
31875
31876         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
31877
31878         * reflection.h reflection.c: Allocate long living data using 
31879         GC_MALLOC_ATOMIC so the collector does not need to scan it.
31880
31881         * reflection.c: Double the allocation size in streams instead of
31882         increasing it, to prevent unneccesary copying on large assemblies.
31883         
31884         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
31885         creation if the assembly does not have the Run flag set.
31886
31887 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
31888
31889         * class.h: avoid the C++ keywords in header files (Jerome Laban
31890         spotted and fixed this).
31891
31892 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31893
31894         * object.c:
31895         (mono_unhandled_exception): fill in the arguments for the
31896         UnhandledException event. Only trigger that event for the default
31897         domain (as MS does).
31898
31899 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
31900
31901         * object.c: Improve typed allocation stuff based on suggestions from
31902         Paolo. Also turn it on if the GC library supports it.
31903
31904 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
31905
31906         * object.c object.h class.h: Added experimental typed allocation
31907         facility using the interfaces in gc_gcj.h.
31908
31909         * os/gc_wrapper.h: Added new include files.
31910         
31911 2003-04-03  Martin Baulig  <martin@ximian.com>
31912
31913         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
31914         which is not yet enabled by default.
31915
31916         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
31917         functions.
31918         (mono_gc_lock, mono_gc_unlock): New static functions.
31919
31920         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
31921         functions; stop/start the world for the garbage collector.  This
31922         is using the windows API; we need to complete the SuspendThread()/
31923         ResumeThread() implementation in the io-layer to make this work on Unix.
31924         (mono_gc_push_all_stacks): New public function; tells the garbage
31925         collector about the stack pointers from all managed threads.
31926
31927 2003-04-03  Martin Baulig  <martin@ximian.com>
31928
31929         * object.h (MonoThread): Added `gpointer stack_ptr'.
31930
31931         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
31932
31933 2003-04-03  Martin Baulig  <martin@ximian.com>
31934
31935         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
31936
31937 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
31938
31939         * reflection.c (typebuilder_setup_fields): Initialize field.first and
31940         field.last.
31941
31942 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
31943
31944         * loader.c (mono_lookup_internal_call): Report the corlib that is
31945         out of sync.
31946
31947 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
31948
31949         * icall.c (ves_icall_type_GetTypeCode): fixed check for
31950         System.DBNull (it's class not valuetype).
31951
31952 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31953
31954         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
31955         if the array method was already assigned a token (fixes bug#40646).
31956
31957 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
31958
31959         * reflection.c (mono_reflection_get_type): Attempt type resolve even
31960         if no assembly is given.
31961
31962 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
31963
31964         * metadata.h: Added the new tables.
31965
31966         * row-indexes.h: Added definitions for new tables.
31967
31968         * metadata.c: Add schemas for new tables, and add support for
31969         computing the sizes of them.
31970
31971         * class.c: Update for handling the new type cases.
31972
31973 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
31974
31975         * metadata.h (MONO_TYPE_IS_VOID): new macro
31976
31977 2003-03-31  Martin Baulig  <martin@ximian.com>
31978
31979         * threads.h (MonoThreadCallbacks): Added `thread_created'.
31980
31981         * threads.c (mono_thread_new_init): Call `thread_created' in the
31982         mono_thread_callbacks.
31983
31984 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
31985
31986         * loader.h: added marshalbyrefobject_class to mono_defaults
31987         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
31988         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
31989           generation of output parameters.
31990           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
31991         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
31992           contextbound and the target object belongs to the context of the caller.
31993         * object.h: added context and unwrapped_server variables in MonoRealProxy.
31994         * object.c: Implemented support for interfaces and abstract classes
31995           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
31996           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
31997
31998 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
31999
32000         * class.h class.c (mono_class_is_subclass_of): New function.
32001         
32002         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
32003         routines for most common case (calls from ArrayList::ToArray).
32004
32005         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
32006         routine so programs which call Environment::Exit() can be profiled.
32007
32008         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
32009         Added MONO_ARCH_SAVE_REGS.
32010
32011         * icall.c (ves_icall_type_is_subtype_of): Use new function.
32012
32013 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
32014
32015         * blob.h: Add a couple of new MonoType types definitions.
32016
32017         * tabledefs.h: Add a couple of new call convs.
32018
32019 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
32020
32021         * reflection.h (MonoReflectionDynamicAssembly): track changes in
32022         the layout of the class.
32023
32024         * reflection.c (alloc_table): double the size on overflow to avoid
32025         unnecessary copying.
32026
32027         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
32028         avoid filling out metadata tables and blobs. Also set mb->ilgen to
32029         null so it can be garbage collected.
32030         
32031 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
32032
32033         * reflection.c (mono_reflection_get_type): Return the resolved type
32034         only if it is in the assembly we searched.
32035
32036         * reflection.c (ensure_runtime_vtable): Initialize method slots.
32037
32038         * class.c (mono_class_setup_vtable): Set the slot of the overriding
32039         method.
32040
32041 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32042
32043         * appdomain.c:
32044         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
32045         the right one is 'file:///blah', but MS allows it.
32046         * assembly.c:
32047         (mono_assembly_open): allow 'file://blah'
32048
32049         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
32050
32051 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
32052
32053         * socket-io.c: fixes bug #40310.
32054
32055 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
32056
32057         * reflection.c (mono_reflection_parse_type): handle deeply nested
32058         types correctly.
32059
32060         * reflection.c (mono_image_create_token): Use unique token values
32061         since they will be put into a hash table.
32062
32063         * class.c (mono_class_setup_vtable): If a method occurs in more than
32064         one place in the vtable, and it gets overriden, then change the
32065         other occurances too.
32066
32067         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
32068         object as return type.
32069
32070 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32071
32072         * icall.c: Deleted "ToString" implementation for double and float
32073         because they are full implemented in managed code.
32074
32075 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32076
32077         * reflection.c, reflection.h: implemented and exported functions
32078         to retrieve info about custom attributes.
32079
32080 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32081
32082         * appdomain.c: moved Uri handling to assembly.c
32083         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32084         work when using a file Uri in *nix and windows.
32085
32086         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32087         GetReferencedAssemblies.
32088
32089 2003-03-18  Dick Porter  <dick@ximian.com>
32090
32091         * icall.c: Rename a couple of internal calls
32092
32093         * threads.c: Set the thread state to Stopped when a thread exits.
32094         Fixes bug 39377.
32095
32096 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
32097
32098         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32099         New icall.
32100
32101         * object.c (mono_class_vtable): fix warning.
32102
32103 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
32104
32105         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32106
32107         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32108         memory.
32109         (method_encode_clauses): Create exception info structures in the right
32110         order.
32111         (mono_reflection_setup_internal_class): Initialize supertypes field.
32112
32113         * class.c object.c: Handle interfaces which implement other interfaces 
32114         correctly.
32115
32116         * class.h class.c: Move the supertypes array initialization code into 
32117         a separate function so it can be used for dynamic types too. Also call
32118         it earlier, in mono_class_init(), since it can be used before the
32119         type is initialized.
32120
32121 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32122
32123         * Makefile.am:
32124         * assembly.c:
32125         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32126
32127         * appdomain.c:
32128         * appdomain.h:
32129         * marshal.c:
32130         * object.c: remove warnings.
32131
32132 2003-03-13  Martin Baulig  <martin@ximian.com>
32133
32134         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32135         (MonoDebugLexicalBlockEntry): New types.
32136
32137         * debug-mono-symfile.c
32138         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32139
32140 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32141
32142         * process.c: ret can be any non-zero value accroding to MS doc.
32143
32144 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32145
32146         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32147         fixing a warning for a miss-used prototype, would have cause
32148         random memory corruption.
32149
32150 2003-03-07  Martin Baulig  <martin@ximian.com>
32151
32152         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32153         getting really annoying ....
32154
32155 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32156
32157         * reflection.c (fixup_method): added support for array methods.
32158
32159 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32160
32161         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32162         (pointed out by Michael Adams).
32163
32164 2003-03-04  Dick Porter  <dick@ximian.com>
32165
32166         * icall.c: Temporarily reverted the Double and Single ToString()
32167         change, because it broke nunit.
32168
32169 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32170
32171         * object.h, threads.h: make include files compatible with C++
32172         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32173
32174 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32175
32176         * icall.c: Erased ToString helper functions for Double and Single.
32177         Now, that implementations ar all in managed code (Double and Single
32178         Formatters).
32179
32180 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32181
32182         * appdomain.c: Added method for initializing the default context of
32183         a domain. Added internal call for getting the default context.
32184         * appdomain.h: Added context variable in MonoDomain struct.
32185         * domain.c: mono_domain_set also sets the default context of the domain
32186         * icall.c: Mapped internal method InternalGetDefaultContext.
32187         * object.c: mono_object_get_virtual_method returns always a remoting
32188         wrapper if the object is a transparent proxy.
32189         mono_runtime_invoke_array: when creating an object by calling the
32190         constructor, if the created object is a proxy, then the constructor should
32191         be called using the a remoting wrapper.
32192
32193 2003-03-03  Dick Porter  <dick@ximian.com>
32194
32195         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32196         variable so it compiles on solaris.  Problem spotted by
32197         Christopher Taylor <ct@cs.clemson.edu>
32198
32199 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32200
32201         * appdomain.c:
32202         (get_info_from_assembly_name): don't leak value.
32203
32204         * icall.c:
32205         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32206         result.
32207
32208 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32209
32210         * assembly.c: export mono_image_load_references ().
32211         * class.c: handle function pointers. mono_class_from_name() now
32212         supports nested type names directly.
32213
32214 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32215
32216         * reflection.h reflection.c: Encode already created dynamic methods 
32217         and fields correctly as a DEF instead of a REF.
32218
32219         * reflection.c: Get rid of the force_ref argument to 
32220         mono_image_typedef_or_ref since it was wrong in the first place.
32221
32222         * string-icalls.c: add error checking to string constructors according
32223         to the MSDN docs.
32224
32225         * reflection.c: Emit types in the order their TypeBuilders were 
32226         created. Previously, a new table index was assigned to each type before
32227         the tables were emitted. This was wrong because the signature blob
32228         might already refer to a type by its original table index.
32229
32230 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32231
32232         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32233         change.
32234         
32235 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32236
32237         * Makefile.am: make assemblies dir have \ instead of / on windows.
32238
32239 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32240
32241         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32242         iterate over the NESTEDCLASS table using a linear search since the
32243         table is not guaranteed to be sorted by the secondary key.
32244
32245         * class.c (mono_class_create_from_typedef): fixed up call to
32246         mono_metadata_nesting_typedef.
32247         
32248 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32249
32250         * marshal.c (mono_string_to_byvalstr): clear the memory as
32251         suggested by Jerome Laban <jlaban@wanadoo.fr>
32252
32253 2003-02-26  Dick Porter  <dick@ximian.com>
32254
32255         * process.c: Cope with padding in .rsrc blocks
32256
32257 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32258
32259         * metadata.h: reverted the filter_len change, it breaks reflection
32260         
32261 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32262
32263         * metadata.h: added a new field to store the filter_len
32264         
32265
32266 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32267
32268         * reflection.c: handle custom attributes for types and members
32269         created with Reflection.Emit (bug#38422).
32270
32271 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32272
32273         * reflection.c: define RTSpecialName automatically for constructors for
32274         compatibility with MS.NET.
32275
32276         * reflection.c (mono_reflection_create_runtime_class): initialize
32277         nested_in field of dynamically created classes.
32278
32279 2003-02-22  Martin Baulig  <martin@ximian.com>
32280
32281         * debug-mono-symfile.h: Incremented version number.
32282
32283 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32284
32285         * object.h icall.c process.c: fix warnings.
32286
32287 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32288
32289         * appdomain.h appdomain.c:
32290         (mono_domain_try_type_resolve): split the 
32291         name_or_tb argument into a name and a tb argument.
32292         (mono_domain_has_type_resolve): new function to check whenever the
32293         application has registered a TypeResolve event handler.
32294         
32295         * icall.c reflection.h reflection.c: move the type resolve logic into
32296         mono_reflection_get_type () so it will be invoked when 
32297         Assembly::GetType () is called.
32298
32299         * reflection.c:
32300         (mono_reflection_get_type): renamed to get_type_internal.
32301         (mono_reflection_get_type): fixed type name generation so it works 
32302         for nested types too.
32303         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32304         costly type name generation if there is no resolve event handler.
32305
32306 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32307
32308         * class.c, image.c: load exported types from file references.
32309
32310 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32311
32312         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32313           used to cache the managed methods used to create proxies and make 
32314           remote invocation of methods.
32315         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32316           to be remotely created.
32317         * object.c: Modified the method mono_class_vtable(). It now initializes 
32318           the remote flag of the vtable. Modified mono_object_new_specific(), 
32319           so now it checks the remote flag.
32320         * icall.c: Added a couple of internal methods, one for enabling instance 
32321           creation interception for a type, and one for creating objects bypassing
32322           the remote check.
32323
32324 2003-02-18  Martin Baulig  <martin@ximian.com>
32325
32326         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32327         New interncall to get a method's metadata token.
32328
32329         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32330         New interncall for the debugger.
32331
32332 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32333
32334         * class.c (mono_class_setup_vtable): allocate supertype array
32335
32336 2003-02-18  Martin Baulig  <martin@ximian.com>
32337
32338         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32339
32340 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32341
32342         * reflection.c:
32343         (assembly_name_to_aname): jump over unknown properties (i've found
32344         something like: 'type, assembly, version=xxx, custom=null, public...',
32345         so now will ignore custom=null and still get the rest of the values).
32346
32347 2003-02-17  Dick Porter  <dick@ximian.com>
32348
32349         * threads.c: Have Thread.Start() wait for a semaphore to signal
32350         that the thread has set up all its local data.  This fixes bug
32351         34323, where Abort() raced the new thread's TLS data.
32352
32353         Also removes the handle_store() call from start_wrapper, because
32354         threads are now always created suspended and there is no longer a
32355         race between the parent and child threads to store the info.
32356
32357 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
32358
32359         * image.c: explain the #- heap issue in a message, hopefully
32360         avoiding FAQs on mono-list.
32361
32362 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32363
32364         * icall.c:
32365         (GetEntryAssembly): if the domain has not invoked
32366         AppDomain.ExecuteAssembly yet, return the assembly of the default
32367         AppDomain.
32368
32369 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
32370
32371         * class.c (mono_ldtoken): make it work in dynamic assemblies.
32372
32373 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
32374
32375         * metadata.c, reflection.c: simple speedup to type hash
32376         and equals code.
32377
32378 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
32379
32380         * image.c, image.h, class.c, assembly.c: move module loading
32381         to MonoImage. When loading metadata, consider alignemnet from
32382         the start of metadata, not from the metadata address in memory.
32383
32384 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
32385
32386         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
32387         AssemblyBuilder objects. Factored out custom attribute creation into
32388         a separate function.
32389         (create_custom_attr): new function to create custom attributes.
32390
32391 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
32392
32393         * Makefile.am: Got tired of typing the full pathname to pedump.
32394         Until there is another option, am installing this.
32395
32396 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
32397
32398         * class.c (class_compute_field_layout): always set field->parent 
32399         (mono_ldtoken): use mono_defaults.fieldhandle_class;
32400
32401 2003-02-11  Dick Porter  <dick@ximian.com>
32402
32403         * threads-types.h:
32404         * monitor.c: Rewrote Monitor, making lock much faster and
32405         Pulse/Wait work as specified.  Also uses much fewer handles, and only
32406         creates them as needed.
32407
32408         * exception.c: Added SynchronizationLockException
32409
32410         * threads.c: Deleted old Monitor implementation.  The new one is
32411         in a new file.
32412
32413 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
32414
32415         * class.c: handled TypedReference type code. Set the correct size for
32416         class data. Setup interface_offsets for interface classes, too.
32417
32418 2003-02-09  Martin Baulig  <martin@ximian.com>
32419
32420         * debug-mono-symfile.h: Reflect latest symbol writer changes.
32421
32422 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
32423
32424         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
32425         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
32426         * object.c: fixed mono_object_get_virtual_method () for interfaces.
32427         * verify.c: check for code that runs after the end of the method.
32428
32429 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32430
32431         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
32432         "System.Math::Round2".
32433         * sysmath.h: Added Floor, Round and Round2 definitions.
32434         * sysmath.c: Modified certain functions that were not 100% compliant
32435         with MS.NET (math precision) and added the implementation of Floor,
32436         Round and Round2.
32437
32438 2003-02-07  Martin Baulig  <martin@ximian.com>
32439
32440         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
32441
32442 2003-02-07  Martin Baulig  <martin@ximian.com>
32443
32444         * debug-mono-symfile.c: Reflected latest symwriter changes.
32445         (mono_debug_create_mono_symbol_file): Removed.
32446         (mono_debug_open_mono_symbol_file): Take an argument which
32447         specifies whether to create a dynamic symbol file.
32448
32449 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
32450
32451         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
32452
32453 2003-02-05  Martin Baulig  <martin@ximian.com>
32454
32455         * reflection.c (mono_image_build_metadata): Make this public,
32456         protect it against being called multiple times, don't create
32457         resources and don't build the compressed metadata here.
32458         (mono_image_create_pefile): Do this here.
32459
32460         * icall.c
32461         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
32462
32463 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32464
32465         * socket-io.c: fixed bug #36322.
32466
32467 2003-02-06  Piers Haken <piersh@friskit.com>
32468
32469         * appdomain.[ch]:
32470         * class.h:
32471         * debug-mono-symfile.c:
32472         * icall.c:
32473         * loader.c:
32474         * mono-config.c:
32475         * monosn.c:
32476         * reflection.c:
32477         * socket-io.c: warning cleanups
32478
32479 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
32480
32481         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
32482         function. works like remoting invoke, but does a check for the Proxy first.
32483
32484 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
32485
32486         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
32487
32488 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
32489
32490         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
32491         array of pointers.
32492         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
32493         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
32494
32495         * object.c (mono_store_remote_field_new): used by the new jit
32496         instead of mono_store_remote_field
32497         (mono_load_remote_field_new): used by the new jit
32498         instead of mono_load_remote_field
32499
32500 2003-02-05  Patrik Torstensson
32501
32502         * appdomain.c: changed unload to take the domain id instead
32503         of domain
32504         
32505         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
32506
32507
32508 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32509
32510         * appdomain.c: don't look for assemblies in ApplicationBase if
32511         PrivateBinPathProbe is set.
32512
32513 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32514
32515         * object.c: make the first argument in main_args contain the absolute
32516         path to the assembly. Fixes bug #37511.
32517
32518 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32519
32520         * icall.c: get correct UTC offset for countries not using daylight
32521         time saving. Fixes bug #30030.
32522
32523 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32524
32525         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
32526         and 1 are the family).
32527
32528 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
32529
32530         * icall.c (ves_icall_InternalExecute): removed wrong assertion
32531
32532         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
32533
32534 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
32535
32536         * reflection.c: added support for SignatureHelper tokens, which is
32537         needed by the Calli opcode.
32538
32539         * reflection.h: track changes to SignatureHelper class.
32540
32541         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
32542
32543 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32544
32545         * appdomain.c: fixed loading assemblies from PrivateBinPath.
32546
32547 2003-02-03  Patrik Torstensson
32548         * appdomain.[c|h], domain.c : 
32549          - Added support for getting a domain via domain id
32550          - Support for setting and getting domain from System.AppDomain 
32551            (used in cross appdomain channel)
32552          - Added support for get/set for a MonoAppContext on a thread 
32553            (Context class in System.Runtime.Remoting.Contexts),
32554          - Removed hack in Get/SetData and ExecuteAssembly.
32555         
32556         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
32557         the managed world to get control when a proxy is created.
32558
32559         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
32560         
32561 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
32562
32563         * icall.c
32564         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32565         Populate the codebase field as well.
32566
32567 2003-02-02  Martin Baulig  <martin@ximian.com>
32568
32569         * debug-mono-symfile.c
32570         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
32571         (mono_debug_symfile_add_method): Allow interncalls.
32572
32573 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32574
32575         * icall.c: throw parse exception if strtod fails or the string is empty.
32576
32577 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
32578
32579         * marshal.c: handle object type separately from defined
32580         class types.
32581
32582 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
32583
32584         * marshal.c: handle NATIVE_LPSTR for strings when it's
32585         explicitly specified.
32586
32587 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
32588
32589         * reflection.c, reflection.h, icall.c: setup the reflection
32590         handle cache for ModuleBuilders and AssemblyBuilders.
32591
32592 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
32593
32594         * reflection.c (reflection_methodbuilder_to_mono_method): set
32595         pinvoke flag
32596
32597 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32598
32599         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
32600
32601 2003-01-29  Dick Porter  <dick@ximian.com>
32602
32603         * threads.c: No need for the fake_thread kludge now that Thread
32604         doesn't run a class constructor
32605         
32606 2003-01-29  Dick Porter  <dick@ximian.com>
32607
32608         * threads.c: Use g_direct_hash instead of the rather bogus
32609         g_int_hash
32610
32611 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
32612
32613         * marshal.c (mono_marshal_get_native_wrapper): add check for null
32614         (fix pinvoke12.exe)
32615         (mono_marshal_get_struct_to_ptr): generate valid IL code
32616         (mono_marshal_get_ptr_to_struct): generate valid IL code
32617         (*): correctly set sig->pinvoke, we need to memdup the signature
32618         to do that
32619
32620 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32621
32622         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
32623         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
32624
32625 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32626
32627         * profiler.c: provide more callers information.
32628
32629 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
32630
32631         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
32632
32633         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
32634
32635         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
32636
32637 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32638
32639         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
32640         exception instead of going into an infinite loop on dates which it 
32641         can't yet handle.
32642
32643         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
32644         out-of-range exception if needed.
32645
32646         * class.c (mono_class_setup_vtable): allow a virtual method to provide
32647         an implementation for an interface method and to override an inherited
32648         method at the same time. 
32649         Imagine a scenario when a virtual method is used to override a
32650         virtual abstract method in a parent class, and this same method 
32651         provides an implementation for an method inherited from an interface. 
32652         In this case, the interface resolution code will set im->slot, which 
32653         means that the virtual method override pass will skip this method 
32654         which means a pointer to the abstract method inherited from the parent
32655         will remain in the vtable of this non-abstract class.
32656
32657         * class.c: (mono_class_setup_vtable): continue search for a real 
32658         method if only an abstract method is found.     
32659
32660 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
32661
32662         * reflection.c: add size to encoding for ByValStr and ByValArray
32663         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
32664
32665 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32666
32667         * class.c (mono_class_setup_vtable): pass the override info as an
32668         argument.
32669
32670         * class.c (mono_class_setup_vtable): set the slot of overriding methods
32671         correctly.
32672         
32673         * reflection.c (ensure_runtime_vtable); add support for method 
32674         overrides.
32675         
32676 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32677
32678         * reflection.c (resolution_scope_from_image): Hack to work to work with
32679         dynamic assemblies.
32680
32681         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
32682         added a 'force_ref' argument to force this function to allways return 
32683         a TypeRef. This is needed by mono_image_get_memberref_token ().
32684         
32685 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32686
32687         * reflection.c (mono_image_get_type_info): interfaces really don't have
32688         a parent.
32689
32690         * reflection.c (mono_image_basic_init): fill out missing fields of
32691         image structure.
32692
32693         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
32694         dynamic assemblies. This is required so dynamic assemblies show up in
32695         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
32696         Type::GetType() etc. This is consistent with MS behaviour.
32697
32698         * image.c image.h reflection.c: add newly created classes to the name 
32699         cache so mono_class_get () will find them.      
32700
32701 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32702
32703         First part of changes to get IKVM.NET running under mono.
32704         
32705         * appdomain.h, appdomain.c: added new function 
32706         mono_domain_try_type_resolve() which will emit TypeResolve events. 
32707         This function will call AppDomain::DoTypeResolve to do the actual work.
32708
32709         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
32710         moved existing code dealing with dynamic tokens to a new function 
32711         called mono_reflection_lookup_dynamic_token (). This function will 
32712         raise TypeResolve events when appropriate. Since reflection.c is not 
32713         part of libmetadata, a new hook function called 
32714         mono_lookup_dynamic_token() is added to class.c which will call this.
32715
32716         * assembly.h assembly.c: make the invoke_load_hook function public,
32717         so it can be called for dynamic assemblies.
32718
32719         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
32720
32721         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
32722         type isn't found.
32723
32724         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
32725         MonoGHashTable, since it contains pointers to objects which the GC 
32726         needs to track.
32727
32728         * assembly.c (search_loaded): remove unused variable.
32729         
32730 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
32731
32732         * object.c: fixed issue exposed by gcc-generated IL programs
32733         that use RVA data for pointers.
32734
32735 2003-01-25  Martin Baulig  <martin@ximian.com>
32736
32737         * threads.c (start_wrapper): Moved the initialization of
32738         `start_func' above the mono_new_thread_init() call to which we
32739         pass it as argument.
32740
32741 2003-01-24  Martin Baulig  <martin@ximian.com>
32742
32743         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
32744         the MonoThread pointer.
32745
32746 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
32747
32748         * icall.c: Rename `PowImpl' to Pow.
32749
32750 2003-01-23  Dick Porter  <dick@ximian.com>
32751
32752         * threads.c (start_wrapper): Create a Thread object if needed, so
32753         the Main() thread can do the class initialisation in a subthread
32754         that has been set up to allow managed code execution.
32755
32756         Pass the thread ID instead of the MonoThread pointer to the thread
32757         start and attach callbacks.  This change is required, because the
32758         jit thread start callback must be called _before_ the Thread
32759         object can be created.
32760         
32761         (mono_thread_init): Removed much object creation code that is no
32762         longer needed.  No managed code is called from here now.
32763
32764         * object.c (mono_runtime_exec_managed_code): Create a subthread
32765         for Main, and call back to the runtime to use it.
32766         Set the exit code when Main exits.
32767
32768         * gc.c: Make sure domain finalisation happens in a subthread.
32769         Re-enable threaded GC, fixing bug 31333 (again).
32770
32771         * environment.c: System.Environment internall calls (so far just
32772         ExitCode is here, the others are still in icall.c)
32773
32774         * appdomain.c (mono_runtime_cleanup): All threads running managed
32775         code should have finished before mono_runtime_cleanup() is
32776         reached, so no need to clean up threads.
32777
32778 2003-01-22  Martin Baulig  <martin@ximian.com>
32779
32780         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
32781         `gpointer func' arguments.      
32782         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
32783         but added `MonoThread *thread' argument.
32784         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
32785
32786         * threads.c (mono_new_thread_init): Added `gpointer func' argument
32787         and pass it to the mono_thread_start_cb callback.
32788         (mono_install_thread_callbacks): New public function to install a
32789         set of callbacks which are set by the debugger.
32790         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
32791
32792 2003-01-22  Martin Baulig  <martin@ximian.com>
32793
32794         * Makefile.am: Install debug-mono-symfile.h.
32795
32796 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
32797
32798         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
32799
32800 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
32801
32802         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
32803         * class.c (mono_ptr_class_get): correctly set access levels of pointers
32804         (mono_array_class_get): correctly set access levels of arrays
32805
32806 2003-01-20      Patrik Torstensson
32807         * image.h (MonoAssemblyName): changed major, minor, build, revision
32808         from signed to unsigned.
32809
32810 2003-01-20  sean kasun <skasun@azstarnet.com>
32811
32812         * reflection.c (load_cattr_value): Now this handles
32813         MONO_TYPE_SZARRAY.  Fixes bug #35629
32814
32815 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
32816
32817         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
32818         integer value
32819
32820 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32821
32822         * decimal.c: fixed bug #26056.
32823
32824 2003-01-17  Martin Baulig  <martin@ximian.com>
32825
32826         * gc.c: Raise an ExecutionEngineException instead of using g_error().
32827
32828 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32829
32830         * exception.[ch]:
32831         (mono_get_exception_type_initialization): new function.
32832
32833         * object.c: throw a TypeInitializationException when an exception is
32834         thrown invoking the class constructor.
32835
32836 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32837
32838         * reflection.c: fixed attribute reading.
32839
32840 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32841
32842         * icall.c:
32843         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
32844         provided, look for the type in the calling assembly and then in
32845         mscorlib; if the assembly name is provided, only try that one.
32846
32847 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
32848
32849         * object.c: register the vtable before there is a chance it's
32850         queried again recursively.
32851
32852 2003-01-13  Duncan Mak  <duncan@ximian.com>
32853
32854         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
32855         gc-internal.h. 
32856         
32857 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
32858
32859         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
32860
32861 2003-01-11  Martin Baulig  <martin@ximian.com>
32862
32863         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
32864         this to 20 for the release.
32865
32866 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
32867
32868         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
32869
32870         * loader.c (mono_method_get_marshal_info): bug fix
32871
32872         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
32873         structures with explicit layout
32874
32875 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
32876
32877         * profiler.c: made the output more readable (and sorted). 
32878         Added caller information for the allocation profiler.
32879
32880 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
32881
32882         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
32883
32884 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32885
32886         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
32887         to get value types.
32888         
32889 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
32890
32891         * object.c, profiler.h, profiler.c, profiler-private.h:
32892         Added object allocation profiler.
32893
32894 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
32895
32896         * reflection.h, reflection.c: handle global methods.
32897         Compress blob entries.
32898
32899 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
32900
32901         * marshal.c: fix compilation.
32902
32903 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
32904
32905         * loader.c (mono_method_get_marshal_info): impl.
32906
32907         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
32908
32909 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32910
32911         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
32912         for reference types.
32913
32914 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
32915
32916         * loader.c: fixed off by one error in loaded parameter names.
32917
32918 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
32919
32920         * marshal.c (mono_marshal_get_icall_wrapper): like
32921         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
32922         instead of a MonoMethod.
32923
32924 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32925
32926         * decimal.c: fixed bug #36537.
32927
32928 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
32929
32930         * marshal.c: throw a missing method exception if a
32931         P/Invoke method is not found.
32932
32933 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
32934
32935         * icall.c: allow a null this for constructors.
32936
32937 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
32938
32939         * icall.c: raise the proper exceptions if the arguments to the
32940         internal Invoke are incorrect.
32941
32942 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
32943
32944         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
32945
32946 2003-01-03  Martin Baulig  <martin@ximian.com>
32947
32948         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
32949
32950 2002-12-31  Martin Baulig  <martin@ximian.com>
32951
32952         * debug-mono-symfile.c: Completely rewrote the type section.
32953         Instead of using individual malloc()ed fields, we use one big
32954         continuous memory area and offsets into this area.
32955         See the comments in the source code for details.
32956
32957 2002-12-30  Martin Baulig  <martin@ximian.com>
32958
32959         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
32960
32961 2002-12-30  Martin Baulig  <martin@ximian.com>
32962
32963         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
32964         line number table in this data blob instead of using an external
32965         pointer.
32966
32967 2002-12-28  Martin Baulig  <martin@ximian.com>
32968
32969         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
32970
32971 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
32972
32973         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
32974         as a boxed return type.
32975
32976 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
32977
32978         * appdomain.c
32979         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
32980         g_build_filename to properly get separators on the filename created.
32981
32982         * object.h: Small change, introduce MonoMarshalByRefObject to
32983         track the layout of that structure in the C# universe as we make
32984         changes there.
32985
32986 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
32987
32988         * object.c: removed assert to allow static fields on interfaces.
32989         * loader.c: a TypeSpec may be used for any type, not just arrays.
32990
32991 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
32992
32993         * class.c, class.h: added mono_class_array_element_size ().
32994         Ignore static methods in interfaces.
32995
32996 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32997
32998         * threads.c: fixed the build under cygwin.
32999
33000 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33001
33002         * reflection.c: handle nullref constants. Allocate keys for
33003         reflection handles with the GC.
33004
33005 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33006
33007         * threads.c, threads.h: added mono_thread_get_abort_signal()
33008         to get a suitable signal for thread abort.
33009
33010 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33011
33012         * metadata.c: fix handling of ExportedType table.
33013
33014 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33015
33016         * icall.c: added WriteWindowsDebugString internal call.
33017
33018 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33019
33020         * reflection.h: added fields to match C# implementation.
33021
33022 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33023
33024         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
33025
33026 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
33027
33028         * gc.h, gc-internal.h: Rename header for GC internal calls to
33029         gc-internal.h from gc.h as to not clash with Boehm GC having its
33030         header installed as <gc.h> in outside include paths.
33031         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
33032         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
33033
33034 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33035
33036         * icall.c: assign minor, build and revision in FillName.
33037
33038 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
33039
33040         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
33041         Added support for running code generated by Reflection.Emit.
33042
33043 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33044
33045         * appdomain.c: check for NULL argument in LoadFrom.
33046
33047 2002-12-10  Dick Porter  <dick@ximian.com>
33048
33049         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
33050
33051 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33052
33053         * appdomain.c: fix buglet when building exe file name.  Handle full
33054         assembly name (needed after latest changes to AssemblyName).
33055         * image.c:
33056         (mono_image_close): free some hashtables.
33057
33058 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
33059
33060         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
33061         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
33062         on some systems (redhat 7.3) 
33063
33064 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
33065
33066         * threads.c: delete the critical section of a sync block,
33067         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
33068
33069 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
33070
33071         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
33072
33073 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33074
33075         * appdomain.[ch]: handle the assembly preload event to try loading the
33076         assemblies using the paths we have in the current domain.
33077
33078         * assembly.[ch]: created an assembly preload hook that is called to try
33079         loading the assembly by other means that the ones provided here.
33080
33081         * domain.c: initialize the domain search path.
33082
33083         From now on, assemblies (TODO: except corlib and System) are loaded
33084         according to these rules when using mono_assembly_load ():
33085
33086                 1. It tries to load the assembly from the ApplicationBase
33087                 of the current domain appending .dll and .exe (TODO: have to
33088                 try loading from name/name.dll and name/name.exe).
33089
33090                 2. It tries the search path specified in PrivateBinPath for the
33091                 current domain (if any).
33092
33093                 3. Previous behavior.
33094
33095 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33096
33097         * icall.c: implemented GetInterfaceMap() related icall.
33098         * domain.c, loader.h: load MethodInfo in mono_defaults.
33099
33100 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33101
33102         * gc.c: disable the finalizer thread for now, untill all the issues
33103         with it are resolved.
33104
33105 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33106
33107         * string-icalls.c: handle embedded nulls in string ctor when the
33108         length is specified.
33109
33110 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33111
33112         * class.c: look for explicit interface implementation in parent
33113         classes, too.
33114
33115 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
33116
33117         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
33118
33119 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33120
33121         * gc.c: protect handles with a critical section.
33122
33123 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33124
33125         * icall.c:
33126         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33127         parameters. If no assembly specified, try getting the type from all
33128         the assemblies in the current domain, else, load the assembly and get
33129         the type from it.
33130
33131 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33132
33133         * marshal.c: applied patch from Aleksey Demakov that fixes
33134         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33135
33136 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33137
33138         * icall.c: fixed get_location.
33139
33140 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33141
33142         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33143         declarations to make it work with older gcc. 
33144
33145         * loader.c (mono_get_method): set signature->pinvoke for native calls
33146
33147 2002-11-20  Dick Porter  <dick@ximian.com>
33148
33149         * threads.c (mono_thread_init): Set the main thread's handle
33150
33151 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33152
33153         * gc.c: allow compilation without GC support. Changed to match the
33154         mono coding style.
33155
33156 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33157
33158         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33159
33160 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33161
33162         * reflection.c: set a public key token on the core assemblies.
33163
33164 2002-11-18  Dick Porter  <dick@ximian.com>
33165
33166         * threads.c: Split out some thread initialisation so that other
33167         files can set the start callback function.
33168
33169         * gc.c: Run finalisers in a separate thread, to avoid stack
33170         overflow.  Fixes bug 31333.
33171
33172         * appdomain.c: Set up GC finalisation thread.
33173
33174         * reflection.c: 
33175         * object.c: 
33176         * domain.c: Use gc.h macros for GC_malloc
33177         
33178 2002-11-15  Dick Porter  <dick@ximian.com>
33179
33180         * threadpool.c: 
33181         * threads.c:
33182         * appdomain.c: Removed mono_runtime_init_with_attach(),
33183         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33184         merging the extra parameter with the existing function.  Removed
33185         unneeded code in mono_thread_attach().
33186
33187 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33188
33189         * image.c (mono_image_loaded_by_guid): a method to get loaded
33190         images by guid. 
33191         (load_metadata_ptrs): we store the guid as string.
33192
33193 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33194
33195         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33196
33197         * metadata.c (mono_guid_to_string): imported method form Zoltan
33198         Varga (slightly modified)
33199
33200         * assembly.c (mono_assembly_open): load precompiled code
33201
33202         * loader.h (MonoMethod): we store the method token for use in the
33203         aot compiler. 
33204
33205 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33206
33207         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33208         the hook function called when an assembly is loaded.
33209         
33210         * domain.c: Modified file.
33211         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33212
33213         Fixes bug #33196.
33214
33215 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33216
33217         * reflection.c: Map PEFileKind to the value expected by the WinNT
33218         image loader. 
33219
33220 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33221
33222         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33223         Read until the buffer is filled completely.
33224
33225 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33226
33227         * icall.c: implemented MonoType.InternalGetEvent ().
33228
33229 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33230
33231         * appdomain.c: implemented InitAppDomainSetup. Delayed
33232         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33233         the entry_assembly.
33234
33235         * assembly.c: base_dir is now an absolute path ending with
33236         G_DIR_SEPARATOR.
33237
33238         * icall.c: modified get_location according to the above changes.
33239
33240         * object.c: init AppDomain.SetupInformation for the default domain after
33241         we have the entry assembly.
33242
33243         * domain.c: when unloading a domain, setup = NULL.
33244
33245 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33246
33247         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33248
33249 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33250
33251         * object.h, object.c: introduced mono_object_get_virtual_method ()
33252         to lookup the method invoked on an object when a callvirt is done on
33253         a method.
33254         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33255
33256 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33257
33258         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33259         current domain when loaded an assembly and failed to load it.
33260
33261         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33262
33263 2002-10-31  Dick Porter  <dick@ximian.com>
33264
33265         * icall.c: 
33266         * file-io.h: 
33267         * file-io.c: Return the error status in a parameter, as the
33268         GetLastError() value has long since been blown away if we try and
33269         look it up in a subsequent internal call invocation.  Delete the
33270         GetLastError() internal call, because it's useless.
33271
33272 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33273
33274         * class.[ch]: added cast_class to fix bug 29517
33275
33276 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33277
33278         * marshal.c: create valid IL code in the filter clause:
33279         the new JIT is less forgiving:-)
33280
33281 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33282
33283         * icall.c: removed get_property internal call.
33284
33285 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33286
33287         * appdomain.h domain.c: Added an ID to appdomains.
33288         
33289         * threads.c threads.h icall.c: Implement icall
33290         Thread:GetDomainID(), and remove unused icall 
33291         CurrentThreadDomain_internal.
33292
33293 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33294
33295         * icall.c: Don't recurse through the base types in GetConstructor.
33296         Fixes bug #32063. 
33297
33298 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33299
33300         * mempool.h, mempool.c: added mono_mempool_empty() and
33301         mono_mempool_stats().
33302
33303 2002-10-23  Dick Porter  <dick@ximian.com>
33304
33305         * file-io.c: 
33306         * file-io.h: 
33307         * icall.c: Added MonoIO.GetFileType internal call
33308
33309 2002-10-17  Dick Porter  <dick@ximian.com>
33310
33311         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33312         delegate semaphore before waiting for all threads to finish,
33313         because new threads can also call async delegates.  Fixes bug
33314         32004.
33315
33316         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33317         of 3 seconds, in case another async job is queued.  (This part is
33318         needed because the bug fix reintroduced the 3s exit lag.)  This
33319         makes the mono_runtime_shutdown flag superfluous.
33320
33321 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33322
33323         * reflection.c: include ehader size in method section headers.
33324         Really check for suplicated modules entries.
33325
33326 2002-10-17  Martin Baulig  <martin@gnome.org>
33327
33328         * debug-mono-symfile.c: Added back support for locals.
33329
33330 2002-10-14  Martin Baulig  <martin@gnome.org>
33331
33332         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33333         MONO_TYPE_VOID.
33334
33335 2002-10-14  Martin Baulig  <martin@gnome.org>
33336
33337         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33338         mono_class_get() instead of looking in the class cache. 
33339
33340 2002-10-13  Martin Baulig  <martin@gnome.org>
33341
33342         * debug-mono-symfile.c: Set version number to 28, include the
33343         signature in method names.
33344
33345 2002-10-13  Martin Baulig  <martin@gnome.org>
33346
33347         * debug-mono-symfile.h: Set version number to 27.
33348
33349 2002-10-11  Martin Baulig  <martin@gnome.org>
33350
33351         * gc.c: Don't register/unregister NULL pointers as disappearing links.
33352
33353 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33354
33355         * metadata.c, metadata.h: added helper function to allocate signatures.
33356
33357 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33358
33359         * icall.c: added internal call to get the location of machine.config.
33360
33361 2002-10-08  Martin Baulig  <martin@gnome.org>
33362
33363         * debug-mono-symfile.c: Ignore classes with a pending init for the
33364         moment.
33365
33366 2002-10-03  Dick Porter  <dick@ximian.com>
33367
33368         * threads.c: Freebsd pthread_t is a pointer
33369
33370 2002-10-03  Dick Porter  <dick@ximian.com>
33371
33372         * socket-io.c: Implemented GetHostName_internal
33373
33374 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33375
33376         * mono-config.c:
33377         (mono_config_parse_file): don't leak the text.
33378
33379 2002-10-02  Martin Baulig  <martin@gnome.org>
33380
33381         * debug-mono-symfile.c: Added support for methods.
33382
33383 2002-10-01  Martin Baulig  <martin@gnome.org>
33384
33385         * debug-mono-symfile.c: Don't emit methods and line numbers for
33386         the dynamic symbol file, just write the type table.  We can easily
33387         have an external helper program which creates a symbol file for an
33388         IL file.        
33389
33390 2002-10-01  Dick Porter  <dick@ximian.com>
33391
33392         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
33393         Only add the handle to the cleanup array when we're about to
33394         launch the thread.  Bug 31425 deadlocked when the test was run on
33395         mono under w32.
33396
33397 2002-10-01  Martin Baulig  <martin@gnome.org>
33398
33399         * debug-mono-symfile.c: Added support for properties.
33400
33401 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33402
33403         * reflection.c: unaligned store fix from Mark Crichton
33404         <crichton@gimp.org>.
33405
33406 2002-09-27  Martin Baulig  <martin@gnome.org>
33407
33408         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
33409         New interncall.
33410
33411 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
33412
33413         * assembly.h, assembly.c: use a sane API to hook into the assembly
33414         loading process instead of a useless special-purpouse hack
33415         (ngen needs a hook, too, for example).
33416
33417 2002-09-27  Dick Porter  <dick@ximian.com>
33418
33419         * threads.c (mono_thread_init): Call GetCurrentProcess() so
33420         io-layer can set up some process handle info.  Not needed on w32,
33421         but doesn't hurt either.
33422
33423         * process.c: Pass the program name in the second parameter to
33424         CreateProcess, so the path is searched.  Include the working
33425         directory. Implemented process name, process enumeration, and some
33426         process detail internal calls.
33427         
33428         * icall.c: Added internal calls for process lookup, and some
33429         process details
33430
33431 2002-09-26  Martin Baulig  <martin@gnome.org>
33432
33433         * assembly.c (mono_install_open_assembly_hook): New global
33434         function to install a function to be invoked each time a new
33435         assembly is loaded.
33436         (mono_assembly_open): Run this callback function if set.
33437
33438         * debug-mono-symfile.c: Put back line numbers for the dynamic
33439         symbol file and also record the .il file as source file.  This
33440         allows us to install the temporary symbol file as `file.dbg' just
33441         like a compiler-generated one.
33442
33443 2002-09-26  Nick Zigarovich <nick@chemlab.org>
33444
33445         * Corrected typo in gc.c (BOHEM vs BOEHM).
33446
33447 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33448
33449         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
33450         GetProperties. Also avoid calling g_slist_length in GetProperties and
33451         GetMethods.
33452
33453 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33454
33455         * reflection.c: avoid unaligned stores (bug spotted by
33456         Mark Crichton  <crichton@gimp.org>).
33457
33458 2002-09-25  Martin Baulig  <martin@gnome.org>
33459
33460         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
33461         instead of guint64 for addresses and added prologue/epilogue info.
33462
33463 2002-09-25  Martin Baulig  <martin@gnome.org>
33464
33465         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
33466         store line number info.  For the dynamic symbol file, we only need
33467         to provide the JIT generated dynamic line number info for the dynamic
33468         symbol file.
33469
33470 2002-09-25  Martin Baulig  <martin@gnome.org>
33471
33472         * debug-mono-symfile.h: Incremented version number.
33473
33474 2002-09-24  Martin Baulig  <martin@gnome.org>
33475
33476         * class.c (mono_debugger_class_init_func): New global function
33477         pointer variable.
33478         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
33479         call it.
33480
33481         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
33482         function.  This is called via the mono_debugger_class_init_func
33483         hook to add all types to the dynamic type table.
33484         (ves_icall_MonoDebugger_GetType): New interncall to get a class
33485         from its metadata token.
33486
33487         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
33488         New interncall for the debugger.
33489
33490 2002-09-24  Nick Drochak <ndrochak@gol.com>
33491
33492         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
33493         before using it in case it is null.
33494         
33495 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33496
33497         * metadata.c: allow custom modifiers in local var signatures
33498         (bug spotted by Zoltan Varga).
33499
33500 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
33501
33502         * class.c: deal with the <Module> class that may have a NULL vtable.
33503         Eliminate warnings.
33504
33505 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33506
33507         * image.c, image.h: more strong name helpers.
33508         * monosn.c: more work: convert pem keys to cryptoapi format.
33509
33510 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33511
33512         * string-icalls.c: speedup IndexOf.
33513
33514 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33515
33516         * icall.c: updates from Zoltan.2.Varga@nokia.com.
33517
33518 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33519
33520         * icall.c: cleanup: use mono_object_domain ().
33521
33522 2002-09-23  Martin Baulig  <martin@gnome.org>
33523
33524         * debug-mono-symfile.c: Improved type support.
33525
33526 2002-09-22  Martin Baulig  <martin@gnome.org>
33527
33528         * debug-mono-symfile.c: Added support for reference types and strings.
33529
33530 2002-09-22  Martin Baulig  <martin@gnome.org>
33531
33532         * debug-mono-symfile.c: Started to work on the type table.
33533
33534 2002-09-21  Martin Baulig  <martin@gnome.org>
33535
33536         * debug-mono-symfile.c: Largely reworked the symbol table format.
33537         The symbol table is now incrementally updated each time a new
33538         method is added.  We're now also using our own magic and version
33539         so that you don't need to recompile all your classes if the
33540         dynamic table changes.
33541         (mono_debug_update_mono_symbol_file): Removed.
33542         (mono_debug_symfile_add_method): New function to add a method.
33543
33544 2002-09-21  Martin Baulig  <martin@gnome.org>
33545
33546         * icall.c
33547         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
33548         New interncall.
33549
33550         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
33551         New interncall to get a method from its metadata token.
33552
33553 2002-09-21  Martin Baulig  <martin@gnome.org>
33554
33555         * debug-mono-symfile.c: Create type table.
33556
33557 2002-09-20  Martin Baulig  <martin@gnome.org>
33558
33559         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
33560
33561 2002-09-20  Martin Baulig  <martin@gnome.org>
33562
33563         * debug-mono-symfile.c: Provide information about params and locals.
33564
33565 2002-09-20  Martin Baulig  <martin@gnome.org>
33566
33567         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
33568         New interncall.
33569
33570         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
33571         interncall to get a method from its metadata token.
33572
33573 2002-09-20  Martin Baulig  <martin@gnome.org>
33574
33575         * debug-mono-symfile.c: Added a few checks for method->header
33576         being non-NULL.  This should never happen, but for the moment
33577         let's use a g_warning() rather than a g_assert().
33578
33579 2002-09-19  Mark Crichton  <crichton@gimp.org>
33580
33581         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
33582         even if support for it isn't present.  Added an #ifdef to fix this.
33583
33584         * socket-io.c: Added checks back for Solaris support.
33585
33586 2002-09-19  Martin Baulig  <martin@gnome.org>
33587
33588         * debug-mono-symfile.c (read_string, write_string): Reflect latest
33589         changes in the symbol file format.
33590
33591 2002-09-18  Martin Baulig  <martin@gnome.org>
33592
33593         * debug-mono-symfile.c: Set version number to 21.
33594
33595 2002-09-18  Dick Porter  <dick@ximian.com>
33596
33597         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
33598         on netbsd.  Fixes bug 30051.
33599
33600 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33601
33602         * reflection.c:
33603         (set_version_from_string): little fix.
33604
33605 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33606
33607         * monosn.c, Makefile.am: added strong name utility.
33608         * reflection.h, reflection.c: implemented delayed signing,
33609         locale, version and hash id assembly attributes.
33610
33611 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33612
33613         * loader.c, metadata.c: load param attributes in signatures.
33614
33615 2002-09-16  Martin Baulig  <martin@gnome.org>
33616
33617         * debug-mono-symfile.c: Added string table with all method names.
33618
33619 2002-09-14  Martin Baulig  <martin@gnome.org>
33620
33621         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
33622         fast method lookup.
33623
33624 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33625
33626         * reflection.c: record the public key token of referenced assemblies.
33627
33628 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33629
33630         * image.c, image.h: added functions to get the strong name and the
33631         public key of an assembly.
33632         * pedump.c: use them.
33633
33634 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
33635
33636         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
33637
33638 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
33639
33640         * marshal.c (mono_marshal_get_managed_wrapper): Added
33641         MONO_TYPE_BOOLEAN 
33642
33643 2002-09-11  Martin Baulig  <martin@gnome.org>
33644
33645         * gc.c: Call GC_unregister_disappearing_link() on all links when
33646         finalizing them, this is necessary to aviod a crash in boehm's
33647         finalize handler.
33648
33649 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33650
33651         * gc.c: handle GetTarget for finalized objects spotted and fixed by
33652         nick@chemlab.org.
33653
33654 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33655
33656         * icall.c: implemented MonoType::Module.
33657         * reflection.c, reflection.h: mono_module_get_object () from
33658         Tomi Pakarinen <tomi.pakarinen@welho.com>.
33659
33660 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
33661
33662         * icall.c: ignore overridden methods in GetMethods ().
33663         Fix for FieldInfo::SetValue().
33664         * object.c: handle float/double in runtime invoke.
33665
33666 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33667
33668         * object.c: allow a constructor to be called again on an object.
33669
33670 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33671
33672         * class.h, class.c: move field layout code to it's own function and
33673         export it. Get an interface id earlier. Move fields in MonoClass
33674         so they are more cache friendly and align the bitfields.
33675         * loader.c: temporary handle get_param_names() for a runtime method.
33676         * reflection.c, reflection.h: more code to handle runtime creation of
33677         types.
33678
33679 2002-09-09  Martin Baulig  <martin@gnome.org>
33680
33681         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
33682         signature with the pinvoke field being set for the actual call.
33683
33684 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33685
33686         * icall.c: removed some unused icalls. Start of map of glib charsets
33687         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
33688
33689 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33690
33691         * debug-helpers.c: break infinite loop (found and fixed by
33692         Holger Arnold <harnold@gmx.de>).
33693
33694 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33695
33696         * icall.c: target may be null in create_delegate.
33697
33698 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33699
33700         * marshal.c: handle a boolean return type.
33701
33702 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33703
33704         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
33705
33706 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33707
33708         * gc.c: fix weakreferences.
33709
33710 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33711
33712         * icall.c: added icall to get default codepage.
33713
33714 2002-09-03  Dick Porter  <dick@ximian.com>
33715
33716         * threads.h: 
33717         * threads.c: Use MonoThread instead of MonoObject where
33718         apropriate.
33719
33720         Store running thread objects in a hash table, so that we have all
33721         the info to hand when waiting for them to finish
33722         (means we don't need OpenThread() any more, so mingw builds should
33723         be fully functional again.)
33724
33725         * verify.c:
33726         * object.h: Added thread ID to MonoThread
33727
33728 2002-09-03  Martin Baulig  <martin@gnome.org>
33729
33730         * icall.c (System.Reflection.Assembly::get_location): New interncall.
33731
33732 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33733
33734         * icall.c: fixed leak in get_temp_path. Thanks lupus.
33735
33736 2002-09-03  Martin Baulig  <martin@gnome.org>
33737
33738         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
33739         argument to store the end address of the disassembled instruction.
33740
33741         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
33742         here from debug-symfile.h.
33743         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
33744         JIT into this struct.
33745         (MonoSymbolFile): Added `char *image_file' field.
33746         (MonoDebugGetMethodFunc): Removed.
33747         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
33748         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
33749         (mono_debug_find_method): New method.
33750
33751         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
33752         create a full symbol file.
33753         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
33754         and static symbol files.
33755         (mono_debug_find_method): The symbol file keeps an internal method hash,
33756         call this to get a MonoDebugMethodInfo from a MonoMethod.
33757
33758         * debug-symfile.[ch]: Removed.
33759
33760 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
33761
33762         * image.c (do_mono_image_open): Remove linker version check.
33763
33764 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
33765
33766         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
33767         wrappers for instance methods.
33768         
33769 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33770
33771         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
33772
33773 2002-08-28  Dick Porter  <dick@ximian.com>
33774
33775         * Makefile.am: Export HOST_CC for w32 builds
33776
33777 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33778
33779         * file-io.c process.c: MonoString are null terminated, no
33780         need for mono_string_to_utf16() anymore.
33781
33782 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33783
33784         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
33785
33786 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
33787
33788         * icall.c, reflection.h: speedup System.MonoType.
33789
33790 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33791
33792         * reflection.c: allow null as the value of a string argument in
33793         custom attributes constructors.
33794
33795 2002-08-27  Martin Baulig  <martin@gnome.org>
33796
33797         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
33798         `trampoline_address' field.
33799
33800 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
33801
33802         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
33803         check (fixes bug #29486) 
33804
33805 2002-08-27  Martin Baulig  <martin@gnome.org>
33806
33807         * debug-mono-symfile.c: Changed the file format in a way that allows us
33808         open it read-only and to use a specially malloced area for all the
33809         dynamic data.  We can now also generate a symbol file on-the-fly if we're
33810         debugging IL code and there is no MCS generated symbol file for it.
33811
33812 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33813
33814         * object.c: added a define for a good string and array
33815         creation speedup (not enabled by default because we need to deal with
33816         the synch stuff).
33817
33818 2002-08-26  Martin Baulig  <martin@gnome.org>
33819
33820         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
33821         function to create a dynamic symbol file.  This is used by the
33822         debugger to create a symbol file for IL code on-the-fly.
33823
33824 2002-08-26  Martin Baulig  <martin@gnome.org>
33825
33826         * loader.c (mono_lookup_pinvoke_call): Include the error message
33827         from g_module_error() in the error message.
33828
33829 2002-08-24  Martin Baulig  <martin@gnome.org>
33830
33831         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
33832         function to update the symbol file.  The symbol file is mmap()ed
33833         writable, but private.  This allows us to install the symbol file
33834         together with the assembly.
33835
33836 2002-08-24  Martin Baulig  <martin@gnome.org>
33837
33838         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
33839         but they can read the new symbol file format which mcs is now creating.
33840
33841         * debug-symfile.c (mono_debug_find_source_location): Moved to
33842         debug-mono-symfile.c; this is now operating on the new symbol file.
33843
33844 2002-08-23  Martin Baulig  <martin@gnome.org>
33845
33846         * debug-helpers.c (mono_method_desc_from_method): New function to get
33847         a MonoMethodDesc from a MonoMethod.
33848
33849 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33850
33851         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
33852         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
33853
33854 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
33855
33856         * string-icalls.[ch]: make helper methods static.
33857
33858 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33859
33860         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
33861         types to it and to SetValueInternal.
33862
33863         * object.c: Moved handle_enum label to its proper place. This was the
33864         f... bug! ;-)
33865
33866         This time i compiled mcs and gtk-sharp and they both work.
33867
33868 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33869
33870         * icall.c: reverted partially my previous patch until 
33871         object.c:set_value handles enums correcly.
33872
33873 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33874
33875         * icall.c:
33876         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
33877         (ves_icall_System_Environment_get_MachineName): removed warning when
33878         compiling under cygwin.
33879
33880 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33881
33882         * object.c: fixed field_get_value() for reference types.
33883
33884 2002-08-22  Dick Porter  <dick@ximian.com>
33885
33886         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
33887         Don't free a buffer while it's still needed.  Patch from Jonathan
33888         Liger <Jonathan.liger@wanadoo.fr>
33889
33890 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
33891
33892         * icall.c (ves_icall_System_Environment_get_Platform): Add new
33893         internal call.
33894
33895 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
33896
33897         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
33898         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
33899
33900         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
33901         we call unmanaged code which throws exceptions.
33902
33903 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33904
33905         * appdomain.h: added per-domain entry_assembly.
33906         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
33907         arguments.
33908         * icall.c: Assembly::GetEntryAssembly icall.
33909         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
33910         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
33911
33912 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33913
33914         * appdomain.h, gc.c: added mono_domain_finalize ().
33915
33916 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33917
33918         * object.c:
33919         (mono_print_unhandled_exception): changed g_warning by g_printerr
33920         because g_log has a 1024 characters limit (yeah, i got a big stack
33921         trace). Don't print exception name, that should be in ToString 
33922         returned string.
33923
33924 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33925
33926         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
33927         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
33928
33929 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33930
33931         * object.c:
33932         (mono_print_unhandled_exception): after previous commit, i realized
33933         that MS calls ToString on the exception. I changed this function to
33934         do that. This way we get stack_trace for free.
33935
33936 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33937
33938         * object.c:
33939         (mono_print_unhandled_exception): invoke Message property instead of
33940         getting 'message' field from Exception. Don't allocate memory for
33941         'trace' and 'message' if not needed.
33942
33943 2002-08-18  Dick Porter  <dick@ximian.com>
33944
33945         * unicode.c: Fix asserts to match Encoder.cs checks
33946
33947 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33948
33949         * marshal.c: fix unaligned store issue and a few wrong
33950         opcode argument types.
33951
33952 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33953
33954         * icall.c: added GetUninitializedObjectInternal internal call.
33955
33956 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
33957
33958         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
33959         to the right domain.
33960
33961 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
33962
33963         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
33964
33965         * class.c (class_compute_field_layout): set blittable to false for Strings
33966
33967         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
33968
33969 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33970
33971         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
33972         first chunk of code to create types at runtime. Code to
33973         handle ReflectedType/DeclaringType. Make reflection handles
33974         domain specific.
33975
33976 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33977
33978         * class.c: set correct name in arrays.
33979
33980 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
33981
33982         * appdomain.c (mono_domain_transfer_object): make it work with
33983         valuetypes. bug fixes.
33984
33985 2002-08-12  Dick Porter  <dick@ximian.com>
33986
33987         * object.h: Rename some parameters to avoid c++ keywords (Patch
33988         from Joseph Wenninger <kde@jowenn.at>)
33989
33990 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
33991
33992         * icall.c: added icall to implement Assembly.GetFile*.
33993
33994 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33995
33996         * reflection.h, reflection.c: code to embed managed resources.
33997
33998 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33999
34000         * class.c: move all the type size stuff into
34001         class_compute_field_layout().
34002
34003 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34004
34005         * class.c: ensure enums have always the correct instance size.
34006         * unicode.c: remove wrong assert.
34007
34008 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34009
34010         * assembly.c: fix mem corruption issue.
34011         * image.h, image.c: added mono_image_get_resource () to access
34012         managed resources.
34013         * icall.c: implemented Assembly.EntryPoint property and some
34014         Managed Resources related internalcalls.
34015
34016
34017 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34018
34019         * image.c, image.h: impemented mono_image_get_entry_point ().
34020         * appdomain.c: use mono_image_get_entry_point.
34021
34022 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34023
34024         * reflection.c: support the object type argument when loading
34025         custom attributes.
34026
34027 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
34028
34029         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
34030         String as return type.
34031
34032 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
34033
34034         * reflection.c: fix encoding of named args for custom attrs to match
34035         the ms implementation. Read them back when instantiating custom
34036         attributes.
34037
34038 2002-08-02  Radek Doulik  <rodo@ximian.com>
34039
34040         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
34041         by Dietmar as quick fix
34042         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
34043         16 as stack size, used on more places as quick fix before Dietmar
34044         will fix it properly
34045
34046 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34047
34048         * object.h, object.c: added accessors for fields and properties.
34049
34050 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34051
34052         * class.c, class.h: made mono_class_get_field_from_name ()
34053         loop on parent types.
34054         Added mono_class_get_property_from_name ().
34055
34056 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34057
34058         * class.c, class.h: move the code to setup the type vtable in its own
34059         function so that it can be reused also for types created at runtime.
34060         Eliminate the "class" identifier from the header file.
34061         * reflection.c: setup the vtable for enums so that we can create
34062         objects for use in SetConstant ().
34063
34064 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
34065
34066         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
34067         instead of the delegate itself as this pointer (bug #28383)
34068
34069 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
34070
34071         * marshal.c (mono_marshal_get_managed_wrapper): added return type
34072         conversions.
34073
34074 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34075
34076         * loader.c: don't set the pinvoke bit on icalls.
34077
34078 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
34079
34080         * debug-helpers.c (mono_method_full_name): only print a number to
34081         indicate wrapper type (so that the output is more readable in traces).
34082
34083 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
34084
34085         * class.c (mono_class_init): include method override patch from Paolo
34086
34087 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34088
34089         * icall.c: fixed GetTypeCode().
34090
34091 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
34092
34093         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34094         use real delegate invoke function to make it work with multicast
34095         delegates (fix bug# 28291).
34096
34097 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34098
34099         * object.c: load constant strings.
34100
34101 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34102
34103         * reflection.c: no magic numbers.
34104         * tabledefs.h: security action enum.
34105
34106 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34107
34108         * assembly.c: fix possible memory corruption.
34109
34110 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34111
34112         * reflection.h, reflection.c: added support for linking resources.
34113         * verify.c: check we have an updated corlib.
34114
34115 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
34116
34117         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34118         string arrays.
34119         (mono_marshal_string_array): null terminate unmanaged string arrays.
34120         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34121
34122 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34123
34124         * icall.c: Type.GetType () can now return also types from the
34125         calling assembly.
34126
34127 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34128
34129         * loader.h, loader.c: stack walking support.
34130         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34131         GetCallingAssembly.
34132
34133 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34134
34135         * marshal.c: added optimisations for blittable types 
34136
34137         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34138         (mono_class_setup_mono_type): set blittable attribute for single
34139         and double.
34140
34141         * marshal.c (mono_string_utf8_to_builder): impl.
34142         (mono_string_builder_to_utf8): impl.
34143         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34144
34145 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34146
34147         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34148         (mono_marshal_get_managed_wrapper): impl. byref types
34149
34150 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34151
34152         * icall.c:
34153         (search_method): don't display debug message. 
34154
34155 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34156
34157         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34158
34159 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34160
34161         * appdomain.c: set the missing filename when throwing exception.
34162
34163 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34164
34165         * metadata.c (mono_type_size): code cleanup
34166         (mono_type_stack_size): removed some test code
34167
34168 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34169
34170         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34171         mono_get_exception_file_not_found now.
34172
34173         * exception.c (mono_exception_from_name_two_strings): New version
34174         that will call a constructor with two string arguments. 
34175         (mono_get_exception_file_not_found): New helper routine, used to
34176         report file-not-found errors.
34177
34178 2002-07-20  Dick Porter  <dick@ximian.com>
34179
34180         * process.h:
34181         * process.c: Pass file handles to CreateProcess
34182         
34183         * icall.c:
34184         * file-io.h:
34185         * file-io.c: Implemented CreatePipe
34186
34187 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34188
34189         * metadata.c (mono_get_param_info): set alignment for value types
34190
34191 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34192
34193         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34194         Constify mono_domain_assembly_open().
34195         * loader.c: handle null namespace in icalls.
34196
34197 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34198
34199         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34200         (emit_str_to_ptr_conv): marshal object as structs
34201
34202         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34203
34204         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34205
34206 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34207
34208         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34209         (mono_marshal_get_native_wrapper): we an now return value types
34210
34211 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34212
34213         * verify.c: more checks implemented.
34214
34215 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34216
34217         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34218         (fix bug #27695)
34219         (mono_marshal_get_native_wrapper): allow byref arguments
34220         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34221         impl. PtrToStringXXX methods
34222         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34223         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34224         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34225         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34226         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34227
34228 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34229
34230         * reflection.c: fix buglet in parsing an assembly name.
34231
34232 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34233
34234         * marshal.c (emit_ptr_to_str_conv): first impl.
34235
34236 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34237
34238         * object.c, class.h: cache the vtable in the class as suggested by
34239         vargaz@freemail.hu (Zoltan Varga).
34240
34241 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34242
34243         * class.h, loader.c: added mono_field_from_token().
34244         * verify.c: first cut of type checking code.
34245
34246 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34247
34248         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34249
34250 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34251
34252         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34253         (fix bug #27782)
34254         (mono_marshal_get_remoting_invoke): impl.
34255         (mono_delegate_begin_invoke): impl.
34256         (mono_mb_emit_save_args): impl.
34257         (mono_delegate_end_invoke): impl.
34258         (mono_marshal_get_delegate_begin_invoke):
34259         (mono_marshal_get_delegate_end_invoke):
34260         (mono_marshal_get_delegate_invoke): generate a special name for
34261         those methods (including the signature) and associate them whith
34262         the delegate class. 
34263
34264 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34265
34266         * reflection.[ch]: 
34267         (mono_reflection_type_from_name): now it has a MonoImage parameter
34268         which is used as the default image to search the type in. If the image
34269         is NULL or getting the type from it fails, it defaults to corlib.
34270
34271         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34272         new parameter.
34273
34274 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34275
34276         * reflection.c: update the parameter table index.
34277
34278 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34279
34280         * domain.c: don't include the mark byte in the string hash.
34281
34282 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34283
34284         * icall.cs: icall for Type.GetTypeCode ().
34285         * verify: a couple of fixes and disabled local initialization checks.
34286
34287 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34288
34289         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34290
34291         * debug-helpers.c (mono_method_full_name): print the type of the
34292         runtime wrapper
34293
34294         * metadata.c (mono_signature_hash): a hash function for signatures
34295         (mono_signature_hash): better hash algorithm
34296
34297         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34298
34299         * debug-helpers.c (mono_method_full_name): this can now generate
34300         method names with signatures
34301
34302         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34303         method dont have this pointers.
34304
34305 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34306
34307         * reflection.c: fixup typebuilder tokens.
34308         * image.c: fix buglet.
34309         * marshal.h: remove whitespace.
34310         * metadata.h, metadata.c: reinstate code that was removed.
34311         * verify.c: handle catch directives and fix another couple of bugs.
34312
34313 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34314
34315         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34316         (mono_marshal_get_native_wrapper): make it comp. with the old code
34317         (mono_marshal_get_native_wrapper): support boolean
34318         (mono_marshal_get_managed_wrapper): support more types
34319
34320 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34321
34322         * class.c (class_compute_field_layout): compute class->blittable attribute.
34323
34324 2002-07-09  Dick Porter  <dick@ximian.com>
34325
34326         * threads.c: Make the thread cleaning up cope with threads that
34327         call ExitThread()
34328
34329 2002-07-08  Radek Doulik  <rodo@ximian.com>
34330
34331         * reflection.c (method_encode_code): use non-translated values to
34332         compute finally_start, this fixes exception handling on ppc, yay!
34333
34334         * decimal.h (struct signscale): fix endianess
34335
34336 2002-07-07  Radek Doulik  <rodo@ximian.com>
34337
34338         * reflection.c: swap box_val and not val
34339
34340 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34341
34342         * reflection.c, reflection.h: handle full assembly info in type name.
34343         Handle Type arguments when loading custom attributes.
34344         * icall.c: updated to use new mono_reflection_type_from_name () method.
34345
34346 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34347
34348         * loader.c:
34349         (method_from_memberref): also print assembly name when method not found.
34350
34351 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34352
34353         * icall.c:
34354         (ves_icall_TypeGetProperties): fixed bug #27473. 
34355
34356 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34357
34358         * reflection.c: display image name and token when cannot find the
34359         .ctor for an attribute.
34360
34361 2002-07-05  Martin Baulig  <martin@gnome.org>
34362
34363         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34364
34365 2002-07-04  Dick Porter  <dick@ximian.com>
34366
34367         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
34368         compile on mingw.  This will cause mingw builds to not wait for
34369         subthreads to terminate after the main thread does.  I've lodged a
34370         bug with the mingw developers for them to wrap OpenThread().
34371
34372 2002-07-03  Dick Porter  <dick@ximian.com>
34373
34374         * threads.c: Store thread IDs instead of handles, because
34375         GetCurrentThread() returns a pseudohandle and therefore stores
34376         useless values.  mono_thread_cleanup() continues checking the
34377         array of threads until it is empty, to cope with subthreads
34378         spawning new threads after the main thread has finished.
34379
34380         * profiler.h:
34381         * profiler.c:
34382         * profiler-private.h: Pass the thread ID to thread profiler
34383         functions, instead of a handle
34384
34385 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34386
34387         * verify.c: fixes to make it more usable.
34388         * pedump.c: added --verify code to verify IL code in an assembly.
34389
34390 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34391
34392         * reflection.c: turn errors into warnings to allow compiling corlib.
34393
34394 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34395
34396         * reflection.c: add special cases to compile corlib.
34397
34398 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34399
34400         * reflection.c: handle properties with only a set method.
34401
34402 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34403
34404         * opcodes.h: add enum with opcodes in opval order.
34405
34406 2002-07-01  Dick Porter  <dick@ximian.com>
34407         
34408         * object.h:
34409         * object.c (mono_runtime_run_main): Removed unneeded argument
34410
34411 2002-06-28  Martin Baulig  <martin@gnome.org>
34412
34413         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34414
34415 2002-06-27  Dick Porter  <dick@ximian.com>
34416
34417         * threads.c: Store the handle in both the parent thread and in the
34418         subthread, to minimise the time between starting a new thread and
34419         storing its ID.
34420
34421 2002-06-26  Dick Porter  <dick@ximian.com>
34422
34423         * appdomain.c (mono_runtime_cleanup): Close the socket library
34424         after all the threads have finished, not before
34425
34426 2002-06-26  Martin Baulig  <martin@gnome.org>
34427
34428         * debug-symfile.c (mono_debug_find_source_location): Added
34429         `guint32 *line_number' argument.  If it's not NULL, store the line number
34430         there and return the file name without the line number.
34431
34432 2002-06-25  Dick Porter  <dick@ximian.com>
34433
34434         * icall.c:
34435         * process.h:
34436         * process.c: Process forking and other support functions
34437
34438 2002-06-25  Dick Porter  <dick@ximian.com>
34439
34440         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
34441         things dont happen when the image is closed.
34442         (mono_image_lookup_resource): Walk the resource section looking
34443         for a particular entry
34444
34445         * cil-coff.h: PE resource section decoding
34446
34447 2002-06-25  Dick Porter  <dick@ximian.com>
34448         
34449         * assembly.h:
34450         * assembly.c: 
34451         (mono_assembly_foreach): Accessor functions to walk the list of
34452         loaded assemblies
34453         (mono_assembly_set_main):
34454         (mono_assembly_get_main): Process methods need to know which
34455         assembly is the "main" one
34456
34457         * object.c (mono_runtime_run_main): Record the main assembly
34458
34459         * debug-helpers.c: Fix typo
34460
34461 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
34462
34463         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
34464         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
34465
34466 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34467
34468         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
34469
34470 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
34471
34472         * image.c (do_mono_image_open): Initialize reference count,
34473         otherwise we leak the MonoImage.
34474
34475 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34476
34477         * reflection.c: small tweak to handle self-hosting.
34478
34479 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34480
34481         * reflection.c: fix type name parse code.
34482
34483 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34484
34485         * reflection.c: break out of the loop.
34486         * image.c: special case corlib.
34487
34488 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34489
34490         * reflection.c: add all the custom attrs at the end to ensure the
34491         ctors have been properly initialized when the attributes are defined
34492         in the current assembly.
34493
34494 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34495
34496         * reflection.c: handle correctly multiple-nested types.
34497
34498 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
34499
34500         * row-indexes.h: fix typos.
34501         * reflection.c: adjust for typos and fix method_def_or_ref
34502         encoding in MethodImpl table.
34503
34504 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34505
34506         * reflection.c: fix entry point patching (thanks Serge!).
34507
34508 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
34509
34510         * verify.c: add check for System.Exception
34511
34512 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34513
34514         * image.c, class.c: minifix for code just c&p'ed.
34515         * reflection.c: warning fix.
34516         * object.h, loader.h, domain.c: load also StringBuilder.
34517
34518 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34519
34520         * marshal.h, marshal.c: some support code to handle complex marshaling.
34521
34522 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34523
34524         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
34525         Better signatures with vtable error dump.
34526
34527 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
34528
34529         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
34530
34531 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
34532
34533         * icall.c (ves_icall_Type_GetField): impl.
34534
34535 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34536
34537         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
34538         to retrieve a marshal description blob for a field or param.
34539
34540 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34541
34542         * reflection.h, reflection.c: change order of nested type emission
34543         to avoid table corruption. The NestedTypes table is sorted.
34544         * icall.c: change order of GetConstructor results to workaround mcs bug.
34545
34546 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34547
34548         * reflection.h, reflection.c: handle field and param marshal
34549         information.
34550
34551 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34552
34553         * icall.c, marshal.c marshal.h: more Marshal class implementation.
34554
34555 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34556
34557         * reflection.c: fix call convention.
34558
34559 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34560
34561         * reflection.h, reflection.c: mono_image_get_memberref_token()
34562         takes a type instead of a class, now. Added
34563         mono_image_get_array_token() to create tokens for the special
34564         multi-dim array methods.
34565
34566 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34567
34568         * assembly.c: handle modules (no assembly table). Split
34569         loading references in its own function.
34570         * class.c: handle moduleref resolution scope.
34571         * image.c, image.h: cache module name in image.
34572
34573 2002-06-07  Martin Baulig  <martin@gnome.org>
34574
34575         * reflection.c (mono_image_get_type_info): Only add a class layout entry
34576         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
34577
34578 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34579
34580         * icall.c: more signature fixes that used uint instead of int.
34581
34582 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34583
34584         * reflection.c: fixed signature of field refs.
34585
34586 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34587
34588         * class.c, reflection.c: handle typerefs of nested types
34589         (both on read and when writing files).
34590
34591 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34592
34593         * icall.c: fix method signatures that tried to workaround the previous
34594         typo, d'oh!
34595
34596 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34597
34598         * debug-helpers.c: fix typo.
34599
34600 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34601
34602         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
34603         rewrote the PE/COFF writing code (our programs are understood by the
34604         ms runtime, now).
34605
34606 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34607
34608         * gc.c, gc.h, icall.c: weakreference support.
34609
34610 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34611
34612         * Makefile.am, mono-config.c: use $(sysconfdir).
34613
34614 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34615
34616         * icall.c: changed default precision of Double.ToString() to 15.
34617         Fixed memory leak. Unified with Single.ToString.
34618
34619 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34620
34621         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
34622
34623 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34624
34625         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
34626         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
34627         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
34628         and myself.
34629
34630 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34631
34632         * debug-symfile.c, sysmath.c: yet more compilation fixes.
34633
34634 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34635
34636         * reflection.c, socket-io.c: more compilation fixes.
34637
34638 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34639
34640         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
34641         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
34642         unicode.c: warning and compiler compatibility fixes.
34643
34644 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34645
34646         * class.h, metadata.c: fixed warnings/compilation errors.
34647
34648 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
34649
34650         * Makefile.am, mono-config.c, mono-config.h: configuration file
34651         support routines.
34652         * loader.c, loader.h: make Dll mapping configurable at runtime in the
34653         config file. Export methods to insert and lookup mappings.
34654
34655 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34656
34657         * reflection.c: handle types and boxed objects in custom attr
34658         constructors.
34659
34660 2002-05-30  Martin Baulig  <martin@gnome.org>
34661
34662         * debug-symfile.c
34663         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
34664
34665 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
34666
34667         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
34668         to lookup the implmap row for a P/Invoke method.
34669         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
34670         P/Invoke method from the runtime on an as needed basis.
34671
34672 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
34673
34674         * metadata.c (mono_metadata_parse_signature): impl.
34675
34676 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34677
34678         * class.c: handle .pack directive.
34679
34680 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34681
34682         * object.c: initialize static fields with RVA data.
34683
34684 2002-05-25  Martin Baulig  <martin@gnome.org>
34685
34686         * debug-symfile.c
34687         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
34688
34689 2002-05-24  Martin Baulig  <martin@gnome.org>
34690
34691         * debug-symfile.c
34692         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
34693         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
34694         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
34695
34696 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34697
34698         * object.c: special case string ctros in invoke.
34699         * gc.c: silly whitespace changes.
34700
34701 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
34702
34703         * threadpool.[ch]: impl. a threadpool that can
34704         be used by mint and mono.
34705
34706 2002-05-22  Martin Baulig  <martin@gnome.org>
34707
34708         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
34709         The first argument is now a `MonoReflectionModuleBuilder *', the return
34710         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
34711         `methods' field to get the method builder.  The `token' argument is the
34712         unfixed token.
34713
34714         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
34715         invalid characters instead of g_assert_not_reached()ing.  This seems
34716         to be the behaviour of mscorlib.
34717
34718 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
34719
34720         * object.c (mono_runtime_invoke_array): applied patch from Rachel
34721         Hestilow to fix bug #25104
34722
34723 2002-05-21  Martin Baulig  <martin@gnome.org>
34724
34725         * debug-symfile.c (mono_debug_find_source_location): New function.
34726         Looks up an IL offset in the line number table and returns the source
34727         location as a string.
34728
34729 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34730
34731         * icall.c:
34732         (mono_double_ToStringImpl): changed %f by %g until we have something
34733         better.
34734
34735 2002-05-21  Nick Drochak  <ndrochak@gol.com>
34736
34737         * icall.c : Use different name for Math.Pow's icall.  Needed to check
34738         parameters first in C#.
34739
34740 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34741
34742         * icall.c, reflection.h: added icall to get info about an event.
34743
34744 2002-05-20  Radek Doulik  <rodo@ximian.com>
34745
34746         * object.c (mono_value_box): don't use memcpy for boxing on BIG
34747         endian
34748         (mono_value_box): don't use memcpy for small sizes on
34749         architectures with unaligned access
34750
34751 2002-05-20  Martin Baulig  <martin@gnome.org>
34752
34753         * reflection.c (mono_reflection_setup_internal_class): Don't crash
34754         if `tb->parent == NULL'.
34755         (mono_reflection_create_internal_class): New function.  This is
34756         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
34757         for enum types.
34758
34759         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
34760         New interncall.
34761
34762 2002-05-19  Martin Baulig  <martin@gnome.org>
34763
34764         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
34765         argument to get the length, don't default to the array length.
34766
34767 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
34768
34769         * assembly.c (mono_assembly_setrootdir): New function used to
34770         override the MONO_ASSEMBLIES directory.
34771
34772 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34773
34774         * icall.c: ValueType_GetHashCode() initialize local var.
34775
34776 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34777
34778         * reflection.c: sort custom attributes table.
34779
34780 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34781
34782         * reflection.c: support named args in custom attributes (write support).
34783
34784 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34785
34786         * reflection.c: fix finally position calculation.
34787
34788 2002-05-15  Radek Doulik  <rodo@ximian.com>
34789
34790         * reflection.c: fixed endianess at many places
34791
34792         * icall.c (ves_icall_InitializeArray): comment out debug msg
34793
34794 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
34795
34796         * object.c (mono_unhandled_exception): new function to handle
34797         unhandled exceptions.
34798         (mono_unhandled_exception): call the UnhandledException event.
34799         (mono_runtime_delegate_invoke): impl.
34800
34801 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
34802
34803         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
34804         returns the RVA, not the direct pointer to the data. Handle the case
34805         when the class size is fixed.
34806
34807 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34808
34809         * reflection.c: fix some endianess issues.
34810
34811 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
34812
34813         * object.c (mono_runtime_invoke): is now able to catch exceptions.
34814
34815         * threads.c (mono_thread_init): added a callback which is invoked
34816         at thread start.
34817
34818 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34819         
34820         * icall.c: make GetHashCode return non-negative values.
34821
34822 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34823
34824         * object.c, icall.c, gc.c: revert to address-based hashcode.
34825
34826 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
34827
34828         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
34829
34830 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34831
34832         * icall.c, class.c: special case <Module>.
34833
34834 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
34835
34836         * icall.c: fix bug in GetNow().
34837
34838 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
34839
34840         * object.c (mono_runtime_class_init): make sure that we call all
34841         static class constructors.
34842
34843 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34844
34845         * reflection.c: sort methodsemantics table.
34846
34847 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34848
34849         * reflection.h, reflection.c: honour init locals setting.
34850
34851 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
34852
34853         * icall.c: copied Double ToStringImpl for Single ToStringImpl
34854
34855 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34856
34857         * reflection.c: support ContructorBuilders in attribute blob creation.
34858
34859 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34860
34861         * reflection.c: some changes to build a binary that can be run
34862         directly in windows.
34863
34864 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
34865
34866         * loader.c: print a big message when an icall can't be found.
34867
34868 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34869
34870         * string-icalls.c: fix bug 24248.
34871
34872 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34873
34874         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
34875         icall.c, reflection.h: separate assembly loading by pathname and by
34876         assembly name. Use the MONO_PATH env var to search for assemblies.
34877
34878 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34879
34880         * assembly.c, image.h: add some support for assemblies
34881         with multiple modules.
34882         * class.c, class.h: export mono_class_from_typeref().
34883         * loader.c: remove duplicated code and use mono_class_from_typeref(),
34884         instead.
34885
34886 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34887
34888         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
34889         documentation says (the ECMA one is correct).
34890
34891 2002-05-02  Dick Porter  <dick@ximian.com>
34892
34893         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
34894         Don't name the synchronisation mutex.
34895
34896 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
34897
34898         * rand.c
34899         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
34900         Make the prototypes match.
34901         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
34902         Same.
34903
34904         * icall.c
34905         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
34906         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
34907         all systems have tm.tm_zone, so use strftime() with %Z to print
34908         the timezone abreviation into a temp string.
34909
34910         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
34911         rather than mono_array_addr() on a MonoString on Big Endian
34912         machines.
34913
34914 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
34915
34916         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
34917         fix bug 24041
34918
34919 2002-04-30  Dick Porter  <dick@ximian.com>
34920
34921         * socket-io.c: Cope with SOCKET being an integer rather than a
34922         pointer now.
34923
34924         * threads.c: Added Thread_free_internal, to deal with thread
34925         handle cleanup.  Moved calls to handle_store() and handle_remove()
34926         to start_wrapper(), so each can only be called once.  Allocate
34927         synchronisation blocks with GC_malloc(), and use GC finalisation
34928         to close the handles.
34929
34930         * icall.c: added System.Threading.Thread::Thread_free_internal
34931
34932 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34933
34934         * icall.c: support Environment.Exit, CommandLineArgs().
34935
34936 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34937
34938         * object.c, object.h: added mono_runtime_run_main () and
34939         mono_runtime_get_main_args () for use in System.Environment.
34940
34941 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34942
34943         * gc.c: fix thinko, enable actual finalization since the jit is now
34944         fixed.
34945
34946 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34947
34948         * gc.c, object.c: take into account that an object may be offset wrt the address
34949         returned by GC_malloc().
34950
34951 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
34952
34953         * image.c: handle files without entries in the assembly table (modules).
34954
34955 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
34956
34957         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
34958         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
34959         allowed to be null when it's System.Object class setup.
34960
34961 2002-04-27  Martin Baulig  <martin@gnome.org>
34962
34963         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
34964         if `tb->parent == NULL' rather than crashing.
34965
34966 2002-04-28  Nick Drochak  <ndrochak@gol.com>
34967
34968         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
34969         calling acos() where asin() should have been called.
34970
34971 2002-04-26  Martin Baulig  <martin@gnome.org>
34972
34973         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
34974         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
34975         there's a subdirectory called `System', but we don't want to read that
34976         subdirectory as an assembly.
34977
34978 2002-04-25  Martin Baulig  <martin@gnome.org>
34979
34980         * debug-symfile.c: Reflect latest MonoString changes.
34981
34982 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34983
34984         * rand.c, rand.h: instance method icalls need to have an explicit
34985         this pointer as first argument in the C implementation.
34986
34987 2002-04-25  Nick Drochak <ndrochak@gol.com>
34988
34989         * icall.c: Fix typo in map for GetNonZeroBytes
34990
34991 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34992
34993         * string-icalls.c : String does now passes unit tests without any 
34994         errors, the following changes has been made:
34995         
34996         Implemented replace methods.
34997         Renaming of methods to (try) follow the standard.
34998         Fixed compare ordinal
34999         Made all memory allocated directly to function instead of via icall function.
35000         Small performance fix in is_in_array function
35001                         
35002  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
35003
35004         c (mono_string_Internal_ctor_charp_int_int):
35005         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
35006         sindex < 0, throw ArgumentOutOfRangeException instead of
35007         ArgumentNullException.
35008
35009         Added new check for length == 0, however
35010         I need to make it return String.Empty from the C code.
35011         
35012         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
35013         that calculate the length for us here.
35014         
35015         (mono_string_Internal_ctor_sbytep_int_int): Replaced
35016         mono_string_new_utf16 with mono_string_new, since value is utf8.
35017
35018 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35019
35020         * object.c: register the object for finalization if needed.
35021         Allocate one more char in the string for the terminating 0 char.
35022
35023 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35024
35025         * class.c, class.h, image.c: check if a type implemenst a destructor.
35026         Use the proper key for array class lookups.
35027         * icall.c: register the icalls in the System.GC class.
35028         * gc.c, gc.h: GC-related functions and icalls.
35029
35030 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35031
35032         * icall.c:
35033         * socket-io.c:
35034         * unicode.c: free some strings gotten from mono_string_to_utf8 and
35035         changed a couple of free () by g_free ().
35036
35037         * decimal.c: one-liner in the comments for decimal2string ().
35038
35039 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35040
35041         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
35042
35043 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35044
35045         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
35046         * object.c (mono_runtime_invoke_array) : handle null in params
35047
35048 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35049
35050         * string-icalls.c: fixed bug in split (one off bug)
35051
35052 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35053
35054         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
35055         * icalls.c: added String::Equals as internal method
35056
35057 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35058
35059         * threads.c: fixed bug in the double interlocked functions
35060
35061 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
35062
35063         * threads.c: implemented all of the new interlocked icalls.
35064         * string-icalls.c: fix a bug in insert.
35065         * icalls.c: added the icalls for interlocked, removed old string functions.
35066         
35067 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35068
35069         * loader.c: fix off-by-one error when reading argument names.
35070
35071 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35072
35073         * profiler.c: win32 counter implementation (untested).
35074         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
35075         (the latter needs testing and more complete impl. from win32 folks).
35076
35077 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
35078
35079         * object.c: mono_array_new_full workaround mono_array_class_get
35080         problem.
35081
35082 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35083
35084         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35085         * object.h (mono_string_chars): Changed casting type.
35086
35087 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35088
35089         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35090                            method signatures to use gunichar2 instead of gint16.
35091
35092 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
35093
35094         * object.h, object.c: domain-specific versions of mono_object_new and
35095         mono_array_new.
35096
35097 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
35098
35099         * object.c: changed String layout
35100
35101         * string-icalls.c (mono_string_Internal_ctor_chara): added
35102         internal string constructors.
35103
35104 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35105
35106         * threads.c: pass 'this' to the thread start routine.
35107
35108 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35109
35110         * string-icalls.c: fix IndexOf and LastIndexOf. Now
35111         InternalCompareStr don't call twice mono_string_cmp_char for the last
35112         character. Improved performance in mono_string_cmp_char.
35113
35114 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35115
35116         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35117         code into its own library: libmonoruntime.
35118
35119 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
35120
35121         * object.h, object.c: changed array format so that szarrays do not
35122         require a bounds structure.
35123         * icall.c, appdomain.c: support for new szarray format.
35124
35125 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35126
35127         * metadata.c: compare also the retuns type when comparing signatures:
35128         we didn't do this as an optimization since really overloaded methods
35129         must differ also in the arguments, but this doesn't work with
35130         low-level IL code (or when using explicit conversion operators: see
35131         bug#23498 for an example).
35132
35133 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35134
35135         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35136
35137 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35138
35139         * icall.c: make MonoType::GetElementType its own icall.
35140
35141 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35142
35143         * icall.c: remove MonoMethod_get_Name().
35144         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35145         object.
35146
35147 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35148
35149         * string-icalls.c: optimized a few methods.
35150
35151 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35152
35153         * icall.c: added all new string internal calls
35154         * string-icalls.c: added, new string internal call implementation.
35155         * object.c: added mono_string_new_size for allocating a string a size
35156
35157 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35158
35159         * object.c (mono_object_isinst): use the same code as in the
35160         optimized x86 version.
35161
35162 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35163
35164         * profiler.c: TSC-based timer code (faster and more accurate).
35165         Not hooked up in configure, yet (set USE_X86TSC to 1).
35166
35167 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35168
35169         * profiler.c, profiler.h: track time spent compiling methods.
35170         * threads.c: track thread creation/destruction.
35171
35172 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35173
35174         * profiler.c, profiler.h, profiler-private.h: profiling interface
35175         and sample implementation. Moved here so that it can be used also by
35176         the jit.
35177
35178 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35179
35180         * reflection.c, reflection.h: keep types and other handles separate in
35181         the hash tables for referred tokens. Add guid for modules.
35182
35183 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35184
35185         * assembly.c: fix bugs found with valgrind.
35186         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35187
35188 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35189
35190         * threads: added icall support for getting current domain for
35191                    the thread.
35192  
35193 2002-04-13  Martin Baulig  <martin@gnome.org>
35194
35195         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35196         (MonoDebugVarInfo): Added `index' field for register based addresses.
35197         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35198         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35199         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35200         `MonoDebugVarInfo *this_var'.
35201
35202         * debug-symfile.c (relocate_variable): New static function to write
35203         a location description for a local variable or method parameter.
35204
35205 2002-04-12  Martin Baulig  <martin@gnome.org>
35206
35207         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35208         stack offset and begin/end scope address of a local variable.
35209         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35210         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35211         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35212
35213         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35214         Added new relocation types for start/end scope of a local variable.
35215
35216 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35217
35218         * object.h: add mono_object_domain() macro.
35219         * reflection.c: handle typespecs.
35220         * icall.c: MonoMethod::get_Name() implementation.
35221
35222 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35223
35224         * icall.c: String::GetHashCode() icall implementation.
35225
35226 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35227
35228         * icall.c: String::IndexOfAny icall.
35229         * object.c, object.h: make array->max_length more useful.
35230         Intrduced mono_object_class() and mono_string_length() macros.
35231
35232 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35233
35234         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35235         instead of g_unichar_isdigit.
35236
35237 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35238
35239         * icall.c: Implement a simple Double.ToString().
35240
35241 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35242
35243         * appdomain.h: only io-layer.h is supposed to be included.
35244         * icall.c: explicitly import environ. Fix warning.
35245
35246 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35247
35248         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35249                 return true even if it's not Daylight Savings time.
35250                 Only return false for the case where the function isn't
35251                 implemented for a plaform (read Windows).
35252
35253 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35254
35255         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35256         data with a mutex.
35257
35258 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35259
35260         * mempool.c (mono_mempool_alloc): only use g_malloc when
35261         absolutely necessary.
35262
35263 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35264
35265         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35266
35267         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35268         (mono_class_proxy_vtable): use domain mempool
35269
35270 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35271
35272         * appdomain.h, appdomain.c: split initialization that requires the
35273         execution engine support into mono_runtime_init().
35274
35275 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35276
35277         * class.c (mono_class_init): don't include vtable inside MonoClass
35278         to save some memory, gather some statistics.
35279         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35280
35281 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35282
35283         * icall.c: internalcall implementation for ValueType.Equals().
35284
35285 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35286
35287         * object.c (mono_message_init): moved 
35288         (mono_runtime_exec_main): new arch. independent impl.
35289         (mono_runtime_invoke_array): new method - like
35290         mono_runtime_invoke, but you can pass an array of objects.
35291         (mono_remoting_invoke): new arch. independent impl.
35292         (mono_message_invoke): new arch. independent impl.
35293         (mono_runtime_class_init): new arch. independent impl.
35294         (mono_runtime_object_init): new arch. independent impl.
35295
35296 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35297
35298         * metadata.c, object.c, reflection.c: documented the exported
35299         functions.
35300
35301 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35302
35303         * icall.c: simpler code to pass the assembly builder data to corlib.
35304         Implement GetNestedTypes() internalcall.
35305
35306 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35307
35308         * class.c: warn if a type can't be loaded.
35309
35310 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35311
35312         * image.h: typedef MonoImageOpenStatus
35313         * types.h: removed unused file
35314         
35315 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35316
35317         * icall.c: Enum_ToObject accepts enum value arguments.
35318
35319 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35320
35321         * class.c: move initialization of properties, events and nested
35322         classes, so that they happen for interfaces, too.
35323
35324 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35325
35326         * icall.c: cleanup some ugly casts in Array_SetValue*.
35327
35328 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35329
35330         * icall.c: the values array fro enums is of the correct type, now.
35331         Implement (correctly) getFullName instead of assQualifiedName for
35332         MonoType.
35333         * reflection.h, reflection.c: added mono_type_get_name ().
35334
35335 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35336
35337         * assembly.c, image.h: for each MonoImage, record from wich assembly
35338         it was loaded.
35339         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35340         Make Type.Assembly work.
35341
35342 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35343
35344         * debug-symfile.h: use char* instead of gpointer to avoid
35345         unnecessary casts.
35346
35347         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35348
35349         * icall.c (ves_icall_InternalExecute): impl. FielSetter
35350         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35351
35352 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
35353
35354         * icall.c (mono_message_init): impl. (code cleanup)
35355         (ves_icall_InternalExecute): impl. FieldGetter
35356
35357         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
35358         defined we call all (non-static)methods through the vtable. 
35359
35360 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
35361
35362         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
35363         finalizer even though the memory is still referenced (and the chunk of
35364         memory is not freed).
35365
35366 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35367
35368         * assembly.c: fix brokeness.
35369
35370 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
35371
35372         * class.c: kill some warnings. Check explicit interface method
35373         implementation also without considering the namespace.
35374         Load also literal strings in static class data.
35375
35376 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
35377
35378         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
35379         (default_assembly_name_resolver): Make the resolver take the
35380         "base" directory where the assembly was originally defined, so we
35381         can load DLLs that are in the same directory as the assembly that
35382         is being referenced.
35383
35384 2002-03-28  Dick Porter  <dick@ximian.com>
35385
35386         * file-io.h: 
35387         * file-io.c:
35388         * socket-io.c: 
35389         * unicode.h: 
35390         * unicode.c: Warning cleanups
35391
35392 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
35393
35394         * object.h, reflection.h: use the correct type instead of MonoObject.
35395
35396 2002-03-28  Martin Baulig  <martin@gnome.org>
35397
35398         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
35399         (mono_debug_update_symbol_file): Initialize classes if necessary.
35400
35401 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35402
35403         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
35404         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
35405
35406 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
35407
35408         * assembly.h: fix function prototype.
35409         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
35410         * mono-endian.h: use const cast.
35411
35412 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35413
35414         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
35415
35416 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35417
35418         * loader.c: don't assert when a typeref can't be loaded, give
35419         a chance to the runtime to trow an exception instead.
35420         * loader.h: fix warning.
35421
35422 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
35423
35424         * class.c (mono_class_proxy_vtable): added proxy support
35425
35426 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
35427
35428         * icall.c: removed last of PAL calls, added System.Environment
35429         * file-io.h, file-io.c: MonoIO implementation
35430         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
35431
35432 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35433
35434         * appdomain.c: do not use the byte marker in ldstr table lookup.
35435         * debug-helpers.c: allow two ':' to separate class and method name.
35436         * object.c: allocate arrays bounds with the GC, too.
35437         * verify: add a few more checks.
35438
35439 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
35440
35441         * reflection.c: output also literal strings. Allocate parameter data
35442         with GC_malloc() (thanks, Martin, for catching this!).
35443
35444 2002-03-26  Martin Baulig  <martin@gnome.org>
35445
35446         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
35447         include the `this' offset in the `param_offsets'.
35448
35449 2002-03-25  Martin Baulig  <martin@gnome.org>
35450
35451         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
35452         mono_debug_get_class() function to get the classes. Added new
35453         relocation types for arrays and strings.
35454         (mono_debug_get_class): New static function to search in all
35455         referenced assemblies for a metadata token.
35456
35457         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
35458
35459 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
35460
35461         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
35462         hold gc-allocated objects. Make the string heap a stream like the
35463         others. Removed duplicated code when writing stream info.
35464         Added asserts to catch possible buffer overflows. Set the sorted map
35465         for tables that need sorting. Added some documentation.
35466
35467 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
35468
35469         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
35470         for interned strings and vtables.
35471
35472 2002-03-24  Martin Baulig  <martin@gnome.org>
35473
35474         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
35475         it in the array since it was created with g_slist_prepend().
35476
35477 2002-03-24  Martin Baulig  <martin@gnome.org>
35478
35479         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
35480         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
35481         (mono_debug_method_from_token): Renamed to
35482         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
35483         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
35484
35485         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
35486         relocation types.
35487
35488         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
35489
35490 2002-03-24  Martin Baulig  <martin@gnome.org>
35491
35492         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
35493         (mono_debug_method_from_token): New func.
35494
35495         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
35496         New interncall, calls mono_debug_local_type_from_signature().
35497         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
35498         calls mono_debug_method_from_token().
35499
35500 2002-03-23  Martin Baulig  <martin@gnome.org>
35501
35502         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
35503         specifies the number of bytes to be converted, not the array size.
35504         Return the number of chars, not the number of bytes.
35505         (ves_icall_iconv_get_chars): The `byteCount' argument
35506         specifies the number of bytes to be converted, not the array size.
35507
35508 2002-03-23  Martin Baulig  <martin@gnome.org>
35509
35510         * reflection.h (MonoReflectionSigHelper): New type.
35511
35512         * reflection.c (mono_reflection_sighelper_get_signature_local),
35513         (mono_reflection_sighelper_get_signature_local): New functions.
35514
35515         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
35516         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
35517         interncalls.
35518
35519 2002-03-23  Martin Baulig  <martin@gnome.org>
35520
35521         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
35522         is_writeable is set.
35523         (mono_raw_buffer_update): New function to write the modified map
35524         back to disk.
35525
35526         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
35527
35528         * debug-symfile.c (mono_debug_update_symbol_file): Call
35529         mono_raw_buffer_update() when done writing.
35530
35531 2002-03-23  Martin Baulig  <martin@gnome.org>
35532
35533         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
35534
35535         * debug-symfile.c: Added support for arguments and local variables.
35536
35537 2002-03-23  Dick Porter  <dick@ximian.com>
35538
35539         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
35540         protected by ifdefs, hence breaking the w32 build.
35541
35542 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35543
35544         * object.c: implement is_interned() the right way.
35545
35546 2002-03-21  Martin Baulig  <martin@gnome.org>
35547
35548         * debug-symfile.[ch]: New files to handle debugging information
35549         files. There's also support to dynamically update these symbol
35550         files to include machine dependent information.
35551
35552 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
35553
35554         * threads.c (mono_thread_create): new function to create thread
35555         from C
35556
35557 2002-03-20  Martin Baulig  <martin@gnome.org>
35558
35559         * icall.c (ves_icall_InternalInvoke): Create a new object if the
35560         method is a constructor.
35561         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
35562         points to ves_icall_InternalInvoke().
35563
35564 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
35565
35566         * file-io.c: Flush shouldn't throw exceptions.
35567
35568 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
35569
35570         * file-io.c: FileStream flush support; FileSetLength now
35571         restores file pointer.
35572
35573 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35574
35575         * class.c: set image for pointer classes.
35576
35577 2002/03/19  Nick Drochak <ndrochak@gol.com>
35578
35579         * sysmath.c: Forgot one.
35580
35581 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
35582
35583         * sysmath.c: Avoid redefining existing names.
35584
35585 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
35586
35587         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
35588         handled by runtime as icall rather than dllimport from libm.so
35589         * file-io.c, file-io.h: fixed handle argument type.
35590
35591 2002-03-18  Dick Porter  <dick@ximian.com>
35592
35593         * reflection.c (mono_image_get_type_info): rename interface to
35594         iface, because of "#define interface struct" on windows.
35595
35596 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
35597
35598         * class.c, class.h: rename and export mono_ptr_class_get().
35599         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
35600         * reflection.c, reflection.h, icall.c: better/saner type name
35601         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
35602         method signatures.
35603
35604 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
35605
35606         * class.c (mono_class_init): removed hardcoded GHC_SLOT
35607
35608         * icall.c (ves_icall_InternalInvoke): impl.
35609
35610 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35611
35612         * reflection.c: output the interface map table, too.
35613
35614 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35615
35616         * class.c (class_compute_field_layout): separate computation of 
35617         static field layout
35618
35619 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
35620
35621         * icall.c: added System.Buffer support.
35622         * file-io.c: moved file icalls from PAL to FileStream.
35623
35624 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
35625
35626         * icall.c (ves_icall_System_Object_GetHashCode): impl.
35627
35628 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
35629
35630         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
35631
35632 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35633
35634         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
35635
35636 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35637
35638         * debug-helpers.{c,h}: moved here from monograph some useful functions
35639         to locate a method by name/signature in a class or image. Included
35640         also a small and flexible IL disassembler.
35641
35642 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35643
35644         * reflection.c: fixup tokens in methods with small header size, too.
35645
35646 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
35647
35648         * object.c (mono_string_to_utf8): remove assert(!error), instead
35649         print a warning. 
35650
35651 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
35652
35653         * icall.c: update to the new mono_Array_class_get interface.
35654
35655 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35656
35657         * appdomain.c, object.c: Boehm-GC enable.
35658         * icall.c: make get_data_chunk() support split data requests.
35659         Ensure a class is initialized in more cases. Return only the first
35660         property found in GetProperties() or the compiler gets confused. 
35661         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
35662         * reflection.h, reflection.c: add fixup mechanism for field and method
35663         tokens. Initialize assembly->typeref in a single place. Output
35664         properties after events. Support custom attributes for events, too.
35665         Typo fix for paramter custom attrs.
35666
35667 2002-03-07  Martin Baulig  <martin@gnome.org>
35668
35669         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
35670
35671 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
35672
35673         * class.c (mono_array_class_get): fix. for multi. dim. arrays
35674
35675 2002-03-06  Martin Baulig  <martin@gnome.org>
35676
35677         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
35678         non-zero lower bounds. See testcases #F10-#F13.
35679
35680 2002-03-05  Martin Baulig  <martin@gnome.org>
35681
35682         * exception.c (mono_get_exception_argument_out_of_range): New exception.
35683
35684         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
35685         ves_icall_System_Array_GetValue(), only calculate the absolute array position
35686         here.
35687         (ves_icall_System_Array_SetValue): Likewise.
35688         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
35689         as argument and does the actual work. This function is used when copying a
35690         multi-dimensional array.
35691         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
35692         now do all the widening conversions of value types.
35693         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
35694
35695 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35696
35697         * class.c: remove some magic numbers and use the smbolic names,
35698         instead. Added init_events() to load event info at class init time.
35699         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
35700         and mono_metadata_methods_from_event().
35701         * reflection.h, reflection.c: added support for writing out the evnets
35702         related information.
35703
35704 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35705
35706         * reflection.h, icall.c: use a different method (GetInterfaces)
35707         to gather interface info and add isbyref, isprimitive and
35708         ispointer to the ves_icall_get_type_info() return value.
35709
35710 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35711
35712         * class.h: stared adding support for events.
35713         * icall.c: split find_members implementation. Added debug icall to get
35714         the address of an object.
35715         * reflection.c: handle TypeBuilders in mono_type_get_object().
35716
35717 2002-03-01  Martin Baulig  <martin@gnome.org>
35718
35719         * icall.c (ves_icall_System_Array_GetLength): This must throw an
35720         ArgumentOutOfRangeException(), not an ArgumentException().
35721         (ves_icall_System_Array_GetLowerBound): Likewise.
35722         (ves_icall_System_Array_GetValue): Improved argument checking.
35723         (ves_icall_System_Array_SetValue): Improved argument checking.
35724
35725 2002-03-01  Martin Baulig  <martin@gnome.org>
35726
35727         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
35728         called with invalid arguments rather than just dying with g_assert().
35729         (ves_icall_System_Array_SetValue): Likewise.
35730         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
35731         raise a NotImplementedException instead.
35732         (ves_icall_System_Array_GetLength): Added argument checking.
35733         (ves_icall_System_Array_GetLowerBound): Added argument checking.
35734
35735 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
35736
35737         * object.h (mono_assert): new macros mono_assert and
35738         mono_assert_not_reached
35739
35740 2002-02-28  Martin Baulig  <martin@gnome.org>
35741
35742         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
35743         and "System::String::IsInterned" to "System::String::_IsInterned".
35744
35745 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
35746
35747         * icall.c: remove hacks for typebuilder. Added icall to create a
35748         modified type from a tybebuilder.
35749         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
35750         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
35751         to create a backing MonoClass for a TypeBuilder.
35752
35753 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35754
35755         * class.c, class.h: more refactoring of class init.
35756         Export mono_class_setup_mono_type() and mono_class_setup_parent().
35757
35758 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
35759
35760         * marshal.c, marshal.h: start of marshaling interface.
35761
35762 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
35763
35764         * icall.c: fix order in assembly qualified name icall.
35765
35766 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
35767
35768         * class.c: do not free str, since we store it in the hash table.
35769         * reflection.h: add label field to MonoILExceptionInfo.
35770         * reflection.c: handle references to more than one assembly. Handle
35771         case when there isn't a module created in the assembly.
35772
35773 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35774
35775         * class.c: Fix typo. Start refactoring of class init code.
35776
35777 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35778
35779         * appdomain.c: exit with 1 on error.
35780         * class.c: we already have the name in MonoClassField.
35781         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
35782         MonoStreamHeader instead of an offset of image->raw_metadata.
35783
35784 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
35785
35786         * appdomain.c (mono_init): Be even more descriptive about the error.
35787
35788 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
35789
35790         * appdomain.c: give the user an informative message when corlib can't
35791         be loaded.
35792
35793 2002-02-26  Martin Baulig  <martin@gnome.org>
35794
35795         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
35796         New icall to get the time zone data.
35797
35798 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35799
35800         * reflection.c: set virtual and raw size of section correctly.
35801         * threads.c: transfer domain information to newly created threads.
35802
35803 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
35804
35805         * class.c: when instancing a class in a domain, load the default
35806         vaules for static fields from the constant table. Fix System.Enum to
35807         not be an enum.
35808         * icall.c: implement Object::GetType() internalcall. Implemented
35809         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
35810         Fixed checking of binding flags in find_members().
35811         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
35812         * reflection.c: handle enumerations when writing to the constant
35813         table. Use a different object cache for types.
35814
35815
35816 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
35817
35818         * object.c (mono_object_isinst): fix for arrays
35819
35820         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
35821
35822 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
35823
35824         * object.c: don't use mprotect ()  and fix intern pool hash table
35825         lookup for big endian systems.
35826
35827 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35828
35829         * icall.c: change type_is_subtype_of () signature.
35830
35831 2002-02-21  Mark Crichton  <crichton@gimp.org>
35832
35833         * rand.c, rand.h: Added random number generator for
35834         System.Security.Cryptography classes.
35835
35836         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
35837
35838         * icall.c: Added System.Security.Cryptography calls.
35839
35840 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
35841
35842         * class.c, icall.c, metadata.c: better support for pointer types.
35843         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
35844         * reflection.c: Add support for getting custom attrs for properties
35845         and simplify some code.
35846
35847 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35848
35849         * icall.c: change getToken () and add custom attribute GetBlob()helper
35850         method.
35851         * reflection.h: add custom attrs array to the reflection builder structures.
35852         * reflection.c: encode and emit custom attributes for all the relevant
35853         reflection objects. Cache fieldref and methodref tokens. Change
35854         mono_image_create_token() interface to take a MonoDynamicAssembly.
35855         More complete custom attributes decoder. Load custom attributes for
35856         Assembly, Field, Method and Constructor objects, too. Make the
35857         returned array an Attribute[] one, not object[]. Added
35858         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
35859         custom attribute constructor.
35860
35861 2002-02-20  Dick Porter  <dick@ximian.com>
35862
35863         * icall.c:
35864         * rawbuffer.c:
35865         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
35866         problem code out for now).
35867
35868 2002-02-19  Radek Doulik  <rodo@ximian.com>
35869
35870         * object.c (mono_ldstr): use hash table to avoid multiple swapping
35871
35872 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
35873
35874         * icall.c: register the GetCustomAttributes method.
35875         * object.c, object.h: add mono_string_new_len ().
35876         * reflection.h, reflection.c: added mono_runtime_invoke(),
35877         mono_install_runtime_invoke(). Added
35878         mono_reflection_get_custom_attrs () to load custom attributes and
35879         create the attribute objects.
35880
35881 2002-02-19  Dick Porter  <dick@ximian.com>
35882         * threads-dummy-types.c:
35883         * threads-dummy-types.h:
35884         * threads-dummy.c:
35885         * threads-dummy.h:
35886         * threads-pthread-types.c:
35887         * threads-pthread-types.h:
35888         * threads-pthread.c:
35889         * threads-pthread.h:  Deleted obsolete files
35890
35891 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
35892
35893         * class.c (mono_class_vtable): runtime init the class when we
35894         allocate static class data.
35895
35896         * icall.c (ves_icall_System_Array_SetValue): check for null values.
35897
35898         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
35899         and String - but we will need generic marshalling support in the
35900         future. 
35901         (mono_init): set the domain name in a ms compatible way
35902
35903         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
35904         String[].
35905
35906 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
35907
35908         * object.c (mono_array_clone): use alloca() instead of g_malloc  
35909         for sizes
35910
35911         * appdomain.c (mono_domain_unload): impl.
35912
35913 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
35914
35915         * appdomain.c, object.c: fix intern pool implementation.
35916         * class.c: fix alignment code.
35917
35918 2002-02-16  Radek Doulik  <rodo@ximian.com>
35919
35920         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
35921         and s2 > s1, just copy lower bytes to be compatible with little
35922         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
35923         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
35924
35925         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
35926         force big_endian to be 1 for big endian machines 
35927         (ves_icall_iconv_new_decoder): ditto
35928
35929 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
35930
35931         * socket-io.c (convert_sockopt_level_and_name): If the system
35932         doesn't define SOL_IP or SOL_TCP, get them by hand using
35933         getprotobyname() and caching the values (because this could be a
35934         slow operation).
35935         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
35936         Use the appropriate struct when the system does support it. Ie,
35937         not all systems have struct ip_mreqn so use struct ip_mreq when
35938         appropriate.
35939
35940 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
35941
35942         * reflection.c: handle finally clauses.
35943
35944 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
35945
35946         * socket-io.c: use g_snprintf() instead of snprintf.
35947
35948 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35949
35950         * reflection.c (mono_param_get_objects): Cast second argument to
35951         mono_method_get_param_names to a const char** to silence the
35952         compiler warning.
35953
35954         * appdomain.c (mono_domain_assembly_open): Put parens around the
35955         truth statement in the for-loop.
35956
35957         * unicode.c (iconv_convert): Got rid of a compiler warning about
35958         int i being unused when the system has a new iconv.
35959         (iconv_get_length): Same.
35960
35961         * image.c (load_class_names): Cast the second argument to
35962         g_hash_table_insert() to char* to hush compiler warnings about the
35963         arg being a const.
35964         (mono_image_open): Same here.
35965
35966         * socket-io.c: Don't conditionally include sys/filio.h or
35967         sys/sockio.h here anymore since we now get them from
35968         io-layer/io-layer.h
35969         (inet_pton): If the system doesn't support inet_aton, implement
35970         using inet_addr and also #define INADDR_NONE if it isn't defined
35971         by the system.
35972
35973 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
35974
35975         * metadata.c, metadata.h: added function to get packing and size info
35976         of a typedef.
35977         * reflection.h, reflection.c: handle field RVA data. Save info about
35978         the table layout if needed. Assign typedef indexes to all the types
35979         before dumping the info about them to avoid forward reference problems.
35980
35981 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
35982
35983         * socket-io.c (convert_sockopt_level_and_name): ifdef
35984         SO_ACCEPTCONN because it is not defined on my system (old debian)
35985
35986 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35987
35988         * opcode.c: use stddef.h to get NULL.
35989
35990 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35991
35992         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
35993         for FIONBIO, FIONREAD and SIOCATMARK.
35994         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
35995         define INADDR_NONE and besides, inet_addr() is deprecated and
35996         should not be used. Use inet_pton() instead - it also has the
35997         added bonus that it can easily handle IPv6 addresses as well.
35998         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
35999
36000 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36001
36002         * decimal.c: remove _MSC_VER conditional.
36003
36004 2002-02-13  Dick Porter  <dick@ximian.com>
36005
36006         * socket-io.c: 
36007         * icall.c: Internal calls for Blocking, Select, Shutdown,
36008         GetSocketOption and SetSocketOption
36009
36010 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36011
36012         * assembly.cs: better resolver: use it instead of some kludgy
36013         code.
36014
36015 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
36016
36017         * reflection.c: the best way to speed-up the compiler is to avoid
36018         infinite loops.
36019
36020 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
36021
36022         * class.c (mono_class_vtable): changed the object layout
36023         (obj->vtable->class). 
36024         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
36025
36026 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36027
36028         * assembly.c: look for assemblies in the assembly dir, too.
36029
36030 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36031
36032         * class.c: fix thinko in mono_class_from_type().
36033
36034 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36035
36036         * exception.h, exception.c: added TypeLoadException.
36037         * object.h, object.c: added mono_array_clone ().
36038         * icall.c: handle throwOnError in AssemblyGetType().
36039         Added Array.Clone().
36040         * opcode.h, opcode.c: use a single value for the opcode val.
36041         Compile fix for non-gcc compilers.
36042
36043 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
36044
36045         * opcodes.c, opcodes.h: export interesting info about opcodes.
36046
36047 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
36048
36049         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
36050         icalls. 
36051
36052         * class.c (class_compute_field_layout): set element_class for enums
36053         (mono_class_create_from_typedef): set element_class for normal classes
36054
36055         * icall.c (ves_icall_System_Enum_get_value): impl.
36056
36057         * class.c (mono_class_create_from_typedef): do not set valuetype
36058         flag for System.ValueType and System.Enum
36059
36060 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
36061
36062         * unicode.c (iconv_convert): fix big endian problem.
36063
36064 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36065
36066         * class.c: add asserts if we are ever going to scribble over memory.
36067         * socket-io.c: not all systems have AF_IRDA defined.
36068
36069 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
36070
36071         * class.c (class_compute_field_layout): do not consider static
36072         fields to compute alignment
36073
36074 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
36075
36076         * appdomain.c (mono_appdomain_get): impl.
36077         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
36078
36079 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36080
36081         * icall.c: ignore "file://" prefix when loading an assembly.
36082
36083 2002-01-23  Dick Porter  <dick@ximian.com>
36084
36085         * socket-io.c:
36086         * icall.c:
36087         * Makefile.am: Added socket support
36088
36089 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36090
36091         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36092         code back.  This should return the assemblies that are loaded by
36093         the runtime on behalf of an application domain. 
36094
36095         The current implementation is still broken, it just returns every
36096         assembly loaded, but until we get real applications domain this
36097         will do.
36098
36099 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
36100
36101         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36102         AppDomain object.
36103
36104 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36105
36106         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36107         the mono_class_from_name lookup.
36108         (ves_icall_get_parameter_info): ditto.
36109         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36110         method.
36111         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36112
36113 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36114
36115         * class.c: load also nested classes on class init.
36116         System.ValueType instance methods gets passed boxed
36117         values, unless methods in derived classed that get a pointer to the
36118         data.
36119         * icall.c: use better name parsing code in GetType().
36120         * image.c, image.h: add mono_image_loaded ().
36121         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36122         * reflection.c, reflection.h: added mono_reflection_parse_type().
36123
36124 2002-01-22  Veronica De Santis <veron78@interfree.it>
36125
36126         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36127         * threads.c : Added the implementation of internal calls for events
36128         * threads.h : Added prototypes of internal calls for events
36129         
36130 2002-01-21  Radek Doulik  <rodo@ximian.com>
36131
36132         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36133
36134 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36135
36136         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36137         (mono_class_value_size): use min_align
36138
36139 2002-01-20  Dick Porter  <dick@ximian.com>
36140
36141         * threads.h:
36142         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36143         so it compiles on w32.
36144
36145 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36146
36147         * metadata.c (mono_type_stack_size): impl.
36148
36149         * class.c (mono_class_get_field): impl. memberref token
36150
36151 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36152
36153         * icall.h : Added the internal calls mapping for CreateMutex_internal
36154                     and ReleaseMutex_internal.
36155         * threads.h : Added the prototype of mutexes internal calls.
36156         * threads.c : Added the implementations of mutexes internal calls.
36157
36158 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36159
36160         * metaparse.h: removed unused file.
36161         * reflection.c, reflection.h: added stream_data_align () function 
36162         to align data in streams and keep stream aligned. Add support for
36163         exception support in method headers.
36164
36165 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36166
36167         * unicode.c: make iconv_convert () return the number of bytess written
36168         in the output buffer.
36169
36170 2002-01-15  Dick Porter  <dick@ximian.com>
36171         * threads.c: Make the runtime's idea of infinite timeouts coincide
36172         with the class library's
36173
36174         Fix a particularly egregious bug in mono_thread_cleanup(). That
36175         code was so utterly bogus it must have been written on a Monday.
36176
36177 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36178
36179         * reflection.h: add subtypes field to TypeBuilder.
36180         * reflection.c: encode constants for literal fields.
36181         Handle subtypes. Fix user string token (and add a zero byte)
36182         at the end.
36183         
36184 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36185
36186         * class.c (mono_class_init): bug fix: assign slot numbers for
36187         abstract methods.
36188
36189 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36190
36191         * reflection.c: don't try to output a code RVA for abstract methods.
36192         Small fixes for method header format. Output parameter info to the
36193         ParamDef table. Save method overriding info to MethodImpl table.
36194         Fix property support. Allow typedef.extends to be a type in the
36195         building assembly.
36196         * verify.c: fix off-by-one error.
36197
36198 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36199
36200         * class.c: fix mono_class_from_mono_type () for szarray types.
36201         Remove unused cache check in mono_class_from_type_spec().
36202         * icall.c: *type_from_name () functions handle simple arrays and byref.
36203         * reflection.c: handle byref and szarray types. Handle methods without
36204         body (gets P/Invoke compilation working). Handle types and fields in
36205         get_token ().
36206         * reflection.h: add rank to MonoTypeInfo.
36207
36208 2002-01-10  Dick Porter  <dick@ximian.com>
36209
36210         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36211         internal calls
36212
36213 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36214
36215         * icall.c: initialize class in type_from_handle ().
36216         Loop also in parent classes for get_method ().
36217         * reflection.c: properly encode class and valuetype types.
36218         Start on encoding TypeBuilder types. Handle fieldrefs.
36219         Use correct length when registering a user string.
36220         Handle ConstructorBuilder and MonoMethod in get_token ().
36221         Make mono_type_get_object () aware of cached types.
36222         * object.c: back out change to mono_string_new ().
36223
36224 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36225         * object.c: mono_string_new should return a NULL when the string 
36226         passed in is NULL -- not try to deference it.
36227         
36228 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36229
36230         * icall.c: hack to make IsSubType work for TypeBuilders.
36231         * reflection.c: emit constructors before methods.
36232         Retrieve param names in mono_param_get_objects().
36233
36234 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36235
36236         * Makefile.am: fix list of headers and sources so automake 1.5
36237         doesn't complain. Removed \# at end of list.
36238
36239 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36240
36241         * reflection.c: get token for a method ref. Set return type of
36242         constructor to void.
36243         * loader.c: debug message.
36244         * class.c: typo fix.
36245
36246 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36247
36248         * icall.c: fix array init with rank > 1. FindMembers
36249         loops in parent class as well.
36250         * image.c: do not insert nested types in name cache.
36251         * reflection.c: warning fix.
36252         * reflection.h: add override method (for interface impl).
36253
36254 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36255
36256         * metadata.c: fix customattr decoding.
36257
36258 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36259
36260         * rawbuffer.cs: Added native Win32 implementation, avoids using
36261         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36262
36263 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36264
36265         * class.c: make the low-level routines handle the cache.
36266
36267 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36268
36269         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36270
36271 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36272
36273         * class.c: fix mono_array_element_size() for objects.
36274         * class.h, class.c: add properties to MonoClass and load them
36275         at init time.
36276         * icall.c: check with isinst() when assigning a value to an array
36277         instead of requiring the classes to match exactly.
36278         Implemented icall for System.Type::GetType().
36279         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36280         enums. Handle bindingflags when looking for methods and fields.
36281         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36282         and mono_metadata_methods_from_property().
36283         * reflection.h, reflection.c: added structures for propreties,
36284         parameters and enums. Implemented mono_property_get_object() and
36285         mono_param_get_objects().
36286
36287 2001-12-18  Dick Porter  <dick@ximian.com>
36288
36289         * file-io.c: Use mono_string_to_utf16() instead of
36290         mono_string_chars()
36291
36292         * object.c: Added mono_string_to_utf16(), which copies the non
36293         NULL-terminated MonoString into a new double-null-terminated
36294         buffer.
36295
36296 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36297
36298         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36299
36300 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36301
36302         * file-io.c: raise exceptions if handle is invalid.
36303
36304 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36305
36306         * assembly.c: yet another check for mscorlib.
36307         * class.c, class.h: load nesting info for classes.
36308         * icall.c: many new functions to support the Reflection classes.
36309         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36310         * reflection.h, reflection.c: mono_image_create_token(),
36311         mono_assembly_get_object(), mono_type_get_object(),
36312         mono_method_get_object(), mono_field_get_object(): methods to return
36313         objects that parallel the C representation of assemblies, types,
36314         methods, fields.
36315
36316 2001-12-11  Dick Porter  <dick@ximian.com>
36317
36318         * icall.c:
36319         * file-io.c: Internal calls for file IO.
36320
36321 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36322
36323         * tabledefs.h: missing FileAttributes.
36324         * verify.h, verify.c: use is_valid_string () to simplify and check for
36325         valid strings more correctly. Fix warnings and speeling.
36326         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36327         Check code: branches, maxstack, method calls.
36328
36329 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36330
36331         * object.c (mono_object_allocate): removed static, so that the jit
36332         can allocate value types.
36333
36334         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36335
36336 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36337
36338         * class.c: init enum types right away and register the
36339         token->MonoClass map in mono_class_create_from_typedef ().
36340         * verify.h, verify.c: first cut of the verifier.
36341         * pedump.c: add --verify switch to verify metadata tables.
36342         * tabledefs.h: add some missing enums.
36343
36344 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36345
36346         * class.c (mono_install_runtime_class_init): impl.
36347         (mono_class_init): renamed mono_class_metadata_init to
36348         mono_class_init, also removed the metadata_inited flag
36349
36350         * object.c (mono_object_isinst): use faster algorithm
36351
36352 2001-11-30  Radek Doulik  <rodo@ximian.com>
36353
36354         * mono-endian.h: reverted last change
36355         added function prototypes
36356
36357         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
36358         add mono-endian.c back
36359
36360         * mono-endian.c: returned back, as Paolo pointed out, it's needed
36361         for unaligned access, I've mistaked it with endianess. I am
36362         sorry.
36363         (mono_read16): fix reverted endianess
36364         (mono_read64): ditto
36365         (mono_read32): ditto
36366
36367 2001-11-30  Dick Porter  <dick@ximian.com>
36368
36369         * exception.c: Implement mono_exception_from_name()
36370
36371 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36372
36373         * metadata.h, metadata.c: remove params_size and locals_size and their
36374         calculation from the metadata code: they are only usefult to the
36375         interp.
36376
36377 2001-11-29  Radek Doulik  <rodo@ximian.com>
36378
36379         * object.c (mono_ldstr): swap bytes here, it's probably not the
36380         best place, but works for me now, I'll redo it once I know mono
36381         better, also note that I add PROT_WRITE and don't reset back, also
36382         note that it's only affects big endians, so x86 should be OK
36383
36384         * mono-endian.h (read16): use just glib macros for both endians
36385
36386         * mono-endian.c: removed as glib macros are used in in
36387         mono-endian.h so we don't need to care about endianess for read
36388         macros as glib does that for us already
36389
36390 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
36391
36392         * class.h, class.h: take minimum alignment into consideration so
36393         that the fields of a class remain aligned also when in an array.
36394
36395 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36396
36397         * loader.h, loader.c: add mono_method_get_param_names().
36398         * class.c: 0-init class fields.
36399
36400 2001-11-26  Dick Porter  <dick@ximian.com>
36401
36402         * icall.c:
36403         * threads-types.h:
36404         * threads.c: New file that handles System.Threading on all platforms
36405
36406         * object.c: 
36407         * object.h: Remove the synchronisation struct from MonoObject,
36408         replace it with a pointer that gets initialised on demand
36409
36410         * Makefile.am: Replace all the system-specific threading code with
36411         a single file that uses the new wrapper library
36412
36413 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
36414
36415         * class.c, class.h: add mono_install_trampoline() so that the runtime
36416         can register a function to create a trampoline: removes the ugly
36417         requirement that a runtime needed to export arch_create_jit_trampoline.
36418         * object.h, object.c: added mono_install_handler() so that the runtime
36419         can install an handler for exceptions generated in C code (with
36420         mono_raise_exception()). Added C struct for System.Delegate.
36421         * pedump.c: removed arch_create_jit_trampoline.
36422         * reflection.c: some cleanups to allow registering user strings and
36423         later getting a token for methodrefs and fieldrefs before the assembly
36424         is built.
36425         * row-indexes.h: updates and fixes from the new ECMA specs.
36426
36427 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
36428
36429         * class.h, class.c: add enum_basetype field to MonoClass.
36430         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
36431         to get index in the constant table reated to a field, param or
36432         property.
36433         * reflection.h, reflection.c: handle constructors. Set public-key and
36434         version number of the built assembly to 0.
36435         * row-indexes.h: update from new ECMA spec.
36436
36437 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36438
36439         * class.h, class.c: add a max_interface_id to MonoClass.
36440         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
36441         since it's used to do that. Added mono_type_type_from_obj().
36442         Make GetType() return NULL instead of segfaulting if the type was not
36443         found. Handle simple arrays in assQualifiedName.
36444         * object.h: add a struct to represent an Exception.
36445         * reflection.c: output call convention in method signature.
36446         Add code to support P/Invoke methods and fixed offsets for fields.
36447
36448 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
36449
36450         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
36451         the value.
36452         * icall.c: use mono_array_addr instead of array->vector: fixes the
36453         reflection image writing.
36454         * reflection.c: init call convention byte to 0 in method signature.
36455         Encode the property signature. Don't output property-related methods
36456         twice. Really process the properties for a type (don't cast a field to
36457         a property, my mom always told me that).
36458         Fix 64 bit issues in pointer alignment in a different and more
36459         readable way.
36460
36461 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
36462
36463         * loader.h: Removed type class from MonoDefaults, added monotype
36464
36465         * loader.c: Loaded MonoType, removed loading of Type
36466
36467         * icall.c (my_mono_new_object): Now returns a System.MonoType,
36468         and fills in System.Type._impl with a RuntimeTypeHandle rather
36469         than the actual MonoClass *
36470
36471         (ves_icall_type_from_handle): change from type_class to
36472         monotype_class
36473
36474         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
36475         implemented
36476
36477         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
36478         implemented
36479
36480         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
36481
36482         (ves_icall_System_Reflection_Assembly_GetType): implemented
36483
36484         (ves_icall_System_MonoType_assQualifiedName): implemented
36485
36486         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
36487
36488 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
36489
36490         * assembly.c (mono_assembly_open): Implement a cache for the
36491         assemblies. 
36492
36493         (mono_assembly_close): only destroy the assembly when the last
36494         reference is gone.
36495         
36496 2001-11-09  Dick Porter  <dick@ximian.com>
36497
36498         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
36499
36500 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
36501
36502         * class.c (mono_class_metadata_init): bug fix: compute the right slot
36503
36504 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36505
36506         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
36507         from Martin Weindel.
36508         * object.h: add mono_string_chars ().
36509
36510 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
36511
36512         * reflection.c (build_compressed_metadata): Eliminates warnings
36513         and uses 64-bit clean code.
36514
36515         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
36516         (mono_type_equal): Change signature to eliminate warnings.
36517
36518 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36519
36520         * icall.c, loader.c: remove the internalcall array constructors.
36521         Changes to match the new MonoArray structure.
36522         * object.h, object.c: an array object doesn't allocate an extra
36523         vector. Add mono_array_new_full () to create jagged arrays easily.
36524
36525 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
36526
36527         * metadata.h, metadata.c: add mono_metadata_field_info () to
36528         retreive all the info about a field from vairous tables.
36529         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
36530         * class.h, class.c: augment MonoClassField with more info.
36531         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
36532         policy and load a field's RVA if needed.
36533
36534 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
36535
36536         * class.c (mono_class_metadata_init): create a trampoline for all
36537         virtual functions instead of actually compiling them.
36538
36539 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
36540
36541         * class.h, class.c: include name in MonoClassField.
36542         * class.c: fix fundamental type of System.Object and System.String.
36543         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
36544         tokens in ldtoken.
36545         * icall.c: remove internalcalls for the Reflection stuff that is now
36546         done in C# code.
36547         * loader.c: mono_field_from_memberref () implementation.
36548         * mono-endian.c: thinko (s/struct/union/g).
36549         * object.c, object.h: make the mono_string_* prototypes actually use
36550         MonoString instead of MonoObject.
36551         * reflection.c, reflection.h: updates for changes in the reflection
36552         code in corlib: we use C structures that map to the actual C# classes.
36553         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
36554         fat method header if needed and use the info from the ILGenerator for
36555         methods. Handle fields in types. Misc fixes.
36556
36557 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
36558
36559         * class.c (mono_class_metadata_init): bug fix: always allocate
36560         space for static class data
36561
36562 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
36563
36564         * class.c (mono_compute_relative_numbering): use relative
36565         numbering to support fast runtime type checks.
36566
36567 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
36568
36569         * class.c (mono_class_create_from_typeref): added debugging output
36570         to print class name when MonoDummy is returned instead of real class
36571
36572 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
36573
36574         * class.c (mono_class_metadata_init): interface offset table now
36575         contains pointers into the vtable - this is more efficient for the jit
36576
36577 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
36578
36579         * class.c (mono_class_metadata_init): use a temporary vtable (the
36580         old algorithm only worked for the interpreter, but not for the jit)
36581
36582 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
36583
36584         * loader.c (method_from_memberref): use mono_class_get to get the
36585         class of an array instead of using System.Array directly.
36586         (mono_get_method): also add MEMBERREF methods to the method cache
36587         which usefull for arrays.
36588
36589 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
36590
36591         * pedump.c (arch_compile_method): added to compute vtable entry
36592
36593         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
36594         number of interfaces.
36595         
36596         * class.h: merged MonoArrayClass into MonoClass
36597
36598         * class.c (mono_class_create_from_typedef): compute the vtable size and
36599         allocate space to include the vtable inside MonoClass
36600         (mono_class_metadata_init): initialize the vtable
36601
36602 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
36603
36604         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
36605         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
36606         * image.c: endian fixes by Laurent Rioux.
36607         * object.h, object.c: rename MonoStringObject to MonoString and
36608         MonoArrayObject to MonoArray. Change some function names to conform to
36609         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
36610         guint16* as first argument, so don't use char*.
36611         Provide macros to do the interesting things on arrays in a portable way.
36612         * threads-pthread.c: updates for the API changes and #include <sched.h>
36613         (required for sched_yield()).
36614         * icall.c: updates for the API changes above.
36615         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
36616         platforms that need them.
36617
36618 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36619
36620         * class.c: set the correct type for all the fundamental
36621         type when loading the class.
36622
36623 2001-10-05  Dick Porter  <dick@ximian.com>
36624
36625         * threads-pthread.c (pthread_mutex_timedlock): Simple
36626         compatibility version for C libraries that lack this call.
36627
36628 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36629
36630         * class.c: MonoTypes stored in MonoClass are stored as
36631         fundamental MonoTypes when the class represents a
36632         fundamental type (System.Int32, ...).
36633         The TypeHandle return by ldtoken is a MonoType*.
36634         * icall.c: ves_icall_get_data_chunk () write out all the
36635         PE/COFF stuff. Implement ves_icall_define_method (),
36636         ves_icall_set_method_body (), ves_icall_type_from_handle ().
36637         * image.c: properly skip unknown streams.
36638         * loader.h, loader.c: add type_class to mono_defaults.
36639         * metadata.c, metadata.h: export compute_size () as
36640         mono_metadata_compute_size () with a better interface.
36641         Typo and C&P fixes.
36642         * pedump.c: don't try to print the entry point RVA if there is no entry point.
36643         * reflection.c, reflection.h: many cleanups, fixes, output method
36644         signatures and headers, typedef and typeref info, compress the metadata
36645         tables, output all the heap streams, cli header etc.
36646         * row-indexes.h: typo fixes.
36647
36648 2001-10-04  Dick Porter  <dick@ximian.com>
36649
36650         * object.h: Add a synchronisation mutex struct to MonoObject
36651
36652         * object.c (mono_new_object): Initialise the object
36653         synchronisation mutexes
36654
36655         * icall.c: System.Threading.Monitor internal calls
36656         
36657         * threads-pthread.h:
36658         * threads-pthread.c: System.Threading.Monitor internal calls
36659
36660         * threads-types.h: New file, includes the system-specific thread
36661         structures
36662         
36663         * threads-pthread-types.h:
36664         * threads-pthread-types.c: New files, handle pthread-specific
36665         synchronisation types
36666
36667         * threads-dummy-types.h: 
36668         * threads-dummy-types.c: New files of dummy support for
36669         thread-specific types
36670
36671         * metadata.c:
36672         * image.c:
36673         * pedump.c: include mono-endian.h not endian.h
36674         
36675         * Makefile.am: More threads files.
36676         Name mono-endian.h not endian.h
36677
36678 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
36679
36680         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
36681         stuff and implement a few more bits.
36682         * icall.c: a field needs to be dereferenced twice. Do not use the same
36683         name for two variables in the same scope.
36684         * image.c, image.h: cleanups.
36685
36686 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
36687
36688         * class.c (mono_class_metadata_init): bug fix: compute the right size
36689
36690 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
36691
36692         * icall.c: implemented some of the Reflection internalcalls.
36693         * image.c, image.h: start writing out the PE/COFF image.
36694         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
36695         that does the reverse than decode_blob_size ().
36696         * object.c: use mono_metadata_encode_value (). Move here
36697         temporary implementation of mono_string_to_utf8 ().
36698         * rawbuffer.c: make malloc_map static.
36699
36700 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36701
36702         * metadata.c: fix type comparison for arrays.
36703         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
36704         Added a couple of new classes to monodefaults.
36705         * icall.c: added a couple of Reflection-related internalcalls.
36706         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
36707         Added a byval_arg MonoType to MonoClass.
36708
36709 2001-09-28  Dick Porter  <dick@ximian.com>
36710
36711         * icall.c:
36712         * threads-pthread.h: 
36713         * threads-pthread.c: Implemented internal calls for
36714         LocalDataStoreSlot operations.  Applied mutexes around all shared
36715         data.  Reworked the thread creation and Start() operations to
36716         avoid a race condition.
36717         
36718         * threads-dummy.h:
36719         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
36720
36721 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
36722
36723         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
36724
36725 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
36726
36727         * class.c, loader.c: warn and return NULL instead of erroring out.
36728         * icall.c: added System.AppDomain::getCurDomain().
36729         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
36730
36731 2001-09-25  Dick Porter  <dick@ximian.com>
36732
36733         * threads-pthread.h:
36734         * threads-pthread.c: Implemented timed thread joining and added
36735         System.Threading.Thread::Join_internal internal call
36736
36737         * icall.c: Added System.Threading.Thread::Join_internal internal call
36738
36739         * threads-dummy.h:
36740         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
36741
36742 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
36743
36744         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
36745         mono_string_intern () to implement the semantics of the ldstr opcode
36746         and the interning of System.Strings.
36747         * icall.c: provide hooks to make String::IsIntern and String::Intern
36748         internalcalls.
36749
36750 2001-09-23  Dick Porter  <dick@ximian.com>
36751
36752         * threads-dummy.c: 
36753         * threads-dummy.h: New files of dummy threading routines
36754
36755         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
36756         support code based on system specifics
36757
36758         Rename PTHREAD_LIBS to THREAD_LIBS
36759         
36760 2001-09-23  Dick Porter  <dick@ximian.com>
36761
36762         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
36763         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
36764         internal calls.
36765         (mono_thread_init): Set up a Thread object instance to return when
36766         the main thread calls Thread.CurrentThread
36767         (mono_thread_cleanup): Wait for all subthreads to exit
36768
36769         * icall.c: New internal calls for System.Threading.Thread::Sleep
36770         (including Schedule) and CurrentThread
36771
36772         * threads.h: New file, to insulate thread-specific stuff from the
36773         rest of the code
36774
36775 2001-09-21  Dick Porter  <dick@ximian.com>
36776
36777         * threads-pthread.h: 
36778         * threads-pthread.c: New file, for handling pthreads-style
36779         threading support.  Start() now starts a new thread and executes
36780         the ThreadStart delegate instance.
36781
36782         * icall.c: Added the internalcall for
36783         System.Threading.Thread::Start_internal
36784
36785         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
36786
36787 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
36788
36789         * loader.c: work around the different signatures for delegates
36790         constructors csc generates in compiled code vs the ones compiled in mscorlib.
36791
36792 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
36793
36794         * class.h, class.c: add mono_class_get_field_from_name ().
36795         * *: Fix C comments and other ANSI C issues.
36796
36797 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
36798
36799         * endian.h, assembly.c: fix some endianness issues.
36800
36801 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
36802
36803         * loader.h, load.c: add delegate_class to mono_defaults.
36804         Handle runtime provided methods in mono_get_method ().
36805
36806 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
36807
36808         * loader.c (mono_get_method): use pinvoke for internal call
36809
36810         * icall.c: use pinvoke for internal call
36811
36812         * loader.c (method_from_memberref): set the method name
36813
36814 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
36815
36816         * metadata.c: help the compiler generate better code for
36817         mono_class_from_mono_type ().
36818
36819 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
36820
36821         * class.c (mono_class_metadata_init): delayed computing of the
36822         class size to mono_class_metadata_init ()
36823
36824 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
36825
36826         * class.c, class.h: add an interfaces member to MonoClass.
36827         * image.c, image.h: add assembly_name field to MonoImage
36828         from the assembly table.
36829         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
36830
36831 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36832
36833         * class.c: Handle Array in mono_class_from_mono_type ().
36834         * metadata.c, pedump.c: some endian fixes.
36835
36836 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36837
36838         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
36839         * metadata.c: fix small problem introduced with the latest commit.
36840
36841 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
36842
36843         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
36844         We don't need a MonoMetadata pointer anymore to compare signatures in
36845         mono_metadata_signature_equal (), update callers.
36846         Reduced memory usage an number of allocations for MonoMethodHeader and
36847         MonoMethodSignature.
36848
36849 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
36850
36851         * metadata.c: added compare for szarray.
36852
36853 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
36854
36855         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
36856         and add a couple more types to it and mono_defaults. Give an hint on
36857         classes that need implementing in our corlib and are referenced
36858         in mscorlib.
36859
36860 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
36861
36862         * class.h, class.c: keep track if a class is also an Enum.
36863         * loader.c: Implement a couple more types for use in libffi
36864         marshalling. Gives better diagnostics when failing to dlopen
36865         a library. Set method->klass for P/Invoke methods, too.
36866
36867 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
36868
36869         * class.c, class.h: add a MonoType this_arg to MonoClass that
36870         represents a pointer to an object of the class' type that
36871         can be used by the interpreter and later the type cache.
36872         Add best guess alignment info for valuetype objects.
36873
36874 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
36875
36876         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
36877         into MonoType: one less level of indirection and allocation and
36878         simplifies quite a bit of code. Added cache for MonoTypes that are
36879         used frequently, so that we don't need to allocate them all the time.
36880
36881 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
36882
36883         * class.c (mono_class_create_from_typedef): System.Enum is also a
36884         value type, although it does not derive from System.ValueType
36885         (maybe a bug in the ms compiler?)
36886
36887         * metadata.c (mono_type_size): return the right size for value types
36888
36889         * loader.c (mono_get_method): only initialize method header if not abstract
36890
36891         * class.c (mono_class_from_mono_type): use mono_default values. 
36892
36893 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
36894
36895         * *: use MonoClass pointers instead of <type_tokens>
36896         
36897         * class.h: new flag: metadata_inited.
36898
36899         * class.c (mono_class_metadata_init): impl.
36900         (mono_class_instance_size): impl.
36901         (mono_class_data_size): impl.
36902
36903 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36904
36905         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
36906         MonoClass now has the name and name_space fields. 
36907         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
36908         mono_get_method () takes and optional MonoClass as argument.
36909         Removed mono_typedef_from_name() and added mono_class_token_from_name()
36910         instead that takes advantage of a map from class names to typedef
36911         tokens in MonoImage.
36912
36913 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
36914
36915         * metadata.c: zero is not a valid alignment boundary.
36916         Merge MONO_TYPE_VOID in default decoding code.
36917
36918 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
36919
36920         * image.h: merged MonoMetadata into MonoImage
36921
36922         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
36923         identify the type of elements.
36924
36925 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
36926
36927         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
36928         * cil-coff.h: split MonoMSDOSHeader and add size info.
36929         * image.c: add some consistency checks.
36930         * metadata.c: fix row size computation: one programmer
36931         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
36932         add explanation for the locator routine.
36933         Fix decoding of size in method header.
36934         
36935 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
36936
36937         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
36938         (g_concat_dir_and_file): Bring g_concat_dir_and_file
36939         function from gnome-libs.  This uses the right path separator
36940         based on the OS, and also works around a bug in some systems where
36941         a double slash is not allowed. 
36942         (default_assembly_name_resolver): Use g_concat_dir_and_file
36943         (mono_assembly_open): ditto.
36944
36945 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
36946
36947         * metadata.c (mono_metadata_signature_equal): impl.
36948
36949         * *: void is now a realy MonoType (instead of using NULL)
36950         
36951         * metadata.c (do_mono_metadata_parse_type): use
36952         mono_metadata_parse_type to parse void value.
36953
36954 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
36955
36956         * metadata.c, metadata.h: in the signature and method header store
36957         only the space required for holding the loca vars and incoming arguments.
36958
36959 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
36960
36961         * metadata.c (do_mono_metadata_parse_type): treat void like any
36962         other type (instead of assigning NULL);
36963
36964 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
36965
36966         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
36967
36968 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
36969
36970         * image.c (do_mono_image_open): added a cache for arrays.
36971
36972 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36973
36974         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
36975         decode a single column from a row in a metadata table and changes
36976         to take advantage of it in the typedef locator (gives a nice speed up).
36977         Store offset info for function params.
36978
36979 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
36980
36981         * image.h (MONO_IMAGE_IS_CORLIB): removed 
36982
36983 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
36984
36985         * assembly.c: how could mono_assembly_close () had ever worked?
36986         * metadata.c, metadata.h: provide offset info for local vars.
36987         Implement mono_type_size () to take care of alignment as well
36988         as size (it was mono_field_type_size in cli/class.c before).
36989
36990 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
36991
36992         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
36993
36994         * assembly.h (CORLIB_NAME): set to corlib.dll
36995
36996         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
36997
36998 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36999
37000         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
37001         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
37002         tokentype.h: massive namespace cleanup.
37003
37004 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37005
37006         * metadata.h, metadata.c: decode exception clauses when parsing method header.
37007
37008 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
37009
37010         * metadata.c (mono_metadata_free_type): added check for type !=
37011         NULL (void) before calling mono_metadata_free_type()
37012
37013 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
37014
37015         * metadata.h, row_indexes.h: added header with enumerations to use
37016         to index in the columns from tables in metadata and to decode coded
37017         tokens: we should start using this instead of embedding magic numbers
37018         all over the code.
37019
37020 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
37021
37022         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
37023         Move metadata_t info from cli_image_info_t to MonoImage, where
37024         it's easily accessible. Changed all the uses accordingly.
37025         Added the method and class caches to MonoImage.
37026         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
37027         and mono_metadata_decode_value () signature to be more consistent
37028         with the other parse functions (and simplify code). Taken advantage
37029         of zero-length array allocation with GCC. Removed reduntant (and
37030         wrong) MonoFieldType struct and use MonoParam instead. Changed
37031         mono_metadata_parse_field_type () to use common code for parsing.
37032         Added mono_metadata_typedef_from_field () and
37033         mono_metadata_typedef_from_method () to lookup a typedef index from a
37034         field or method token.
37035         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
37036
37037 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
37038
37039         * metadata.c (mono_metadata_parse_field_type): Implement. 
37040         (do_mono_metadata_parse_type): Split engine from
37041         mono_metadata_parse_type, so that we can create smaller structures
37042         for things that just have one pointer to the MonoType (look at
37043         the MonoFieldType)
37044
37045 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
37046
37047         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
37048         as Jan Gray found out, it is incorrect. 
37049
37050 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
37051
37052         * assembly.c: Implement asssembly loading.  This loads an image
37053         and loads all the referenced assemblies.  Come to think of it, we
37054         could always do lazy loading of the assemblies. 
37055
37056         * image.c (mono_image_open): Keep loaded images in a hashtable.
37057
37058         * image.h (MonoImage): Add reference count.
37059
37060 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
37061
37062         * assembly.c (mono_assembly_open): Keep track of the file name in
37063         case the assembly has no ASSEMBLY table.
37064
37065         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
37066         from get.c here.
37067
37068 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
37069
37070         * metadata.c, metadata.h: decode local vars in method header
37071         parse function. Change callers accordingly.
37072
37073 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
37074
37075         * metadata.h, cil-coff.h: protect against multiple inclusion.
37076         Added some new structures to hold information decoded from metadata:
37077         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
37078         and relevant decoding/free functions.
37079         * metadata.c: implement decoding functions. Add warning for out of bounds
37080         index in mono_metadata_locate(). Implement mono_get_method () to retreive
37081         all the info about a method signature and invocation. Remove check on
37082         uninitialized local var in parse_mh() and fix memory leak.
37083
37084 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
37085
37086         * metadata.h: More macros.
37087
37088         * tokentype.h: New file.
37089
37090 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37091
37092         * assembly.c: added a consistency check and initialize
37093         some structures with g_new0().
37094         * metadata.c: fixed a couple more bugs in table size computation
37095         and add other checks for out-of bound access to metadata.
37096
37097 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37098
37099         * metatada.c: fix bugs computing table sizes. Spew a
37100         warning when index in string heap is out of bounds.
37101
37102 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
37103
37104         * metadata.h: Add a couple of macros to manipulate tokens. 
37105
37106 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37107
37108         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37109         cli_section_tables).
37110
37111 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
37112
37113         * metadata.c (mono_metadata_user_string): New function, provides
37114         access to the UserString heap. 
37115
37116 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
37117
37118         * metadata.c: Add inline documentation.
37119
37120 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
37121
37122         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37123         files. 
37124
37125 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37126
37127         * typeattr.h: New file, TypeAttribute flags. 
37128
37129 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37130
37131         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37132         mono_assembly_ensure_section): Section loading code.
37133         (load_section_tables): Load the sections.
37134
37135         * mono/metadata/metadata.c (mono_metadata_locate_token,
37136         mono_metadata_locate): Functions to locate the information
37137         definition given a token or a table and an index.
37138         (mono_metadata_compute_table_bases): New.
37139         (compute_size): New function to compute the sizes of the various
37140         tables.
37141
37142         * mono/metadata/metadata.h: Finish listing the different index
37143         types. 
37144
37145         * mono/metadata/pedump.c: Improve to dump new information.
37146
37147 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37148
37149         * mono/metadata/metadata.c: Entered all the tables matching
37150         Beta2. 
37151
37152         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
37153
37154
37155
37156