a293f435b2dcfa82326da43ba08d7fc5e5405752
[mono.git] / mono / metadata / ChangeLog
1 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
2
3         * class.c (inflate_generic_type): Change code to use new signature of
4         mono_error_set_bad_image.
5
6         Fixes #558124.
7
8 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
9
10         * verify.c (mono_method_verify): Don't free ctx.params items if 
11         we aborted while inflating the ctx.locals. Complete previous fix
12
13 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
14
15         * verify.c (mono_method_verify): Use the uninflated type name, 
16         when the inflated is null, to report errors. Also take care when
17         freeing, not to free everything since, in case of an error, some
18         stuff would be copies (i.e. not allocated by the function itself)
19         Fix bug #558145
20
21 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
22
23         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
24         or overflow. The caller must have done this check explicitly. This guard us
25         from accessing invalid memory.
26
27         * verify.c (do_push_static_field): Check for stack overflow.
28
29         Fixes #553333.
30
31 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
32
33         * loader.c (find_method_in_class): Don't crash if the signature cannot
34         be resolved.
35
36         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
37         of asserting for the case of invalid params.
38
39         Fixes #553304.
40
41 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
42
43         * image.c (mono_image_load_module): Fix crash when a bad assembly
44         has no module at all (fix bug #553412) and also replace the 
45         g_assert with a return NULL (documented return value for failure)
46
47 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
48
49         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
50
51 2009-11-23  Miguel de Icaza  <miguel@novell.com>
52
53         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
54         file attribute to managed code and avoid doing the mask/attribute
55         checks here. 
56
57 2009-11-22  Miguel de Icaza  <miguel@novell.com>
58
59         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
60         the managed world.
61
62         * icall-def.h: New entry points.
63         
64 2009-11-19  Mark Probst  <mark.probst@gmail.com>
65
66         * process.c: Don't put references to managed objects into a
67         g_ptr_array.
68
69 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
70
71         * class.c (can_access_internals): Allow CoreCLR to participate in
72         allowing (or not) [InternalsVisibleTo] between assemblies.
73         * security-core-clr.c|h: Make sure that only trusted code (a 
74         superset of platform code) can access the internals of platform
75         code.
76
77 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
78
79         * reflection.c: use the correct base class to get the virtual method
80         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
81
82 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
83
84         * security-core-clr.c (get_caller_no_reflection_related): 
85         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
86         it's still reflection and must be filtered correctly.
87
88 2009-11-16  Mark Probst  <mark.probst@gmail.com>
89
90         * object.c (compute_class_bitmap): Fix for large bitmaps.
91
92 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
93
94         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
95
96         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
97         koush@koushikdutta.com). Disable GC_no_dls on android.
98
99 2009-11-12  Mark Probst  <mark.probst@gmail.com>
100
101         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
102         tlab_next points outside the TLAB because the allocator was
103         interrupted.
104
105 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
106
107         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
108
109 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
110
111         * object-internals.h: Change signature for mono_string_to_utf8_image.
112
113         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
114         argument.
115
116         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
117         exceptions due to mono_string_to_utf8.
118
119 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
120
121         * object-internals.h: Change signature for mono_string_to_utf8_mp.
122
123         * object.c (mono_remote_class): Make sure all resources are released before
124         raising an exception.
125
126         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
127
128 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
129
130         * mono-perfcounters.c (network_get_impl): Change variable initialization
131         ordering to fix potential memory leak in case of exceptions.
132
133         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
134         encoded strings.
135         
136 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
137
138         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
139         variable initialization ordering to fix potential memory leak in case
140         of exceptions.
141
142 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
143
144         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
145         needed.
146
147 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
148
149         * appdomain.c: Fix shadow path code to better deal with exceptions.
150
151 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
152
153         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
154         exception in the middle of the runtime code.
155
156 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
157
158         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
159         leak memory with broken envvar value.
160
161 2009-11-06  Mark Probst  <mark.probst@gmail.com>
162
163         * reflection.c (mono_reflection_setup_internal_class): Because
164         nested classes are not added to the name cache, we must put them
165         in the reflection_info_unregister_classes list.
166
167 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
168
169         * class.c: When CoreCLR is enabled don't call mono_init_com_types
170         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
171         platform (trusted) code. Instead we return a TypeLoadException to
172         be thrown later. This is the exception thrown by Silverlight 2 if
173         a type, inside application (user) code is marked with [ComImport]
174
175 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
176
177         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
178         mono_is_debugger_attached () too.
179
180         * mono-debug.c (mono_is_debugger_attached): New helper function.
181         (mono_set_is_debugger_attached): Ditto.
182
183 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
184
185         * object-internals.h: Add mono_string_to_utf8_checked.
186
187         * object.c: Implement mono_string_to_utf8_checked.
188
189 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
190
191         * class.c: Add missing check for load errors after every
192         call to mono_class_setup_fields
193
194         Fixes #552282.
195
196 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
197
198         metadata-verify.c (verify_tables_schema): Fix the error message.
199
200 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
201
202         * metadata.c: Change event table schema to use TDOR for event type
203         as this is what it's meant to be.
204
205         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
206         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
207         entry.
208
209         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
210         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
211         rows in MONO_TABLE_GENERICPARAM.
212
213         Fixes #552289.
214
215 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
216
217         * class.c (mono_image_add_to_name_cache): Assert on duplicate
218         insertion.
219
220         * reflection.c (mono_reflection_setup_internal_class): Avoid
221         registering a gc root the same MonoClass multiple times.
222         Don't register nested types on the global scope as they should
223         not be available there.
224
225 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
226
227         * culture-info-tables.h: regenerated.
228
229 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
230
231         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
232
233 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
234
235         * string-icalls.c|h: Remove string internal calls that are not 
236         used anymore by the class libraries.
237         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
238         which is not used in the class librairies.
239         * icall-def.h: Update tables.
240
241 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
242
243         * class.h: Move mono_class_inflate_generic_type_checked...
244
245         * class-internals.h: to here and make it internal. We don't want to
246         further expose MonoGenericContext. 
247
248 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
249
250         * verify.c (mono_method_verify): Improve error message.
251
252 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
253
254         * reflection.c (fieldref_encode_signature): If field_image is NULL then
255         the token is already properly encoded. Fixs 4.0 build.
256
257 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
258
259         * locales.c (construct_number_format): Check if the number index is
260         valid before trying to use it, if not, just return.
261         
262 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
263
264         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
265         since that loses the abort state. Fixes #539394.
266
267 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
268
269         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
270         explicit this argument to the call signature.
271         (mono_marshal_get_icall_wrapper): Ditto.
272
273 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
274
275         * reflection.c (fieldref_encode_signature): Add new field_image parameter
276         to indicate which assembly to use when resolving a custom-mod.
277
278         Fixes handling of volatile fields used across assemblies as reported in #551513.
279
280 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
281
282         * loader.c: Improve error messages.
283
284 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
285
286         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
287         of interfaces. Fixes IKVM.
288
289         * class.c (mono_class_setup_vtable_general): Improve debug spew.
290
291 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
292
293         * verify.c (verifier_inflate_type): Return the inflated type on success.
294
295 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
296
297         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
298
299         * threads.c (mono_thread_attach): Call the profiler thread start callback.
300
301         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
302
303         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
304         flag set.
305
306         * profiler.c: Add new profiler callbacks for runtime invoke.
307
308         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
309
310 2009-11-01  Mark Probst  <mark.probst@gmail.com>
311
312         * sgen-gc.c: Keep track of the reason for a major collection and
313         write it to the heap-dump file.
314
315 2009-10-31  Miguel de Icaza  <miguel@novell.com>
316
317         * threads.c: refactor the code that initializes the
318         thread_start_args into a reusable function and use this in the two
319         methods that start up threads.
320
321 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
322
323         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
324         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
325
326 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
327
328         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
329         Until now, we only had the per-cpu(core) counters.
330
331 2009-10-28  Mark Probst  <mark.probst@gmail.com>
332
333         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
334         mono_gc_get_suspend_signal(), which returns the suspend signal
335         number used by the GC.
336
337 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
338
339         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
340
341         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
342         signalling start_notify.
343
344 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
345
346         * appdomain.c: do not test the st_mode field for shadow-copies.
347         Fixes bug #545276.
348
349 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
350
351         * threadpool.[ch]: added hooks for thread start/finish and item
352         processing begin/end. For monotouch use only.
353
354 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
355
356         * threads.c (mono_thread_get_name): New helper function.
357
358         * reflection.c (resolve_object): Set handle_class for strings too.
359         (mono_reflection_create_custom_attr_data_args): New helper function to decode
360         a cattr blob into a set of arrays and structures without creating the custom
361         attributes themselves.
362         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
363
364         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
365
366         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
367         function.
368
369 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
370
371         * verify.c: Replace calls to mono_class_inflate_generic_type with
372         mono_class_inflate_generic_type_checked. Fixes #480005.
373
374 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
375
376         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
377         object since not all paths lead to callees initing it.
378
379 2009-10-23  Alp Toker  <alp@nuanti.com>
380
381         Fix embedding API breakage from r144688. mono-compiler.h is an internal
382         header and should not be shipped:
383
384         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
385         which is specific to the mono build. Not going to work.
386
387 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
388
389         * security-manager.c: Report if core-clr is active from
390         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
391         to allow Moonlight BCL to behave appropriately (both in browser
392         and outside, e.g. smcs)
393
394 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
395
396         * mono-config.c: ignore UTF-8 BOM and report parser errors.
397         Fixes bug #549108.
398
399 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
400
401         * class.c: fix typo.
402
403 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
404
405         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
406         a MonoError parameter.
407
408         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
409         version that can does proper error handling.
410
411         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
412
413         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
414
415         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
416
417 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
418
419         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
420         NO_UNALIGNED_ACCESS is defined.
421
422 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
423
424         * marshal.c (mono_string_builder_to_utf16): Applied patch from
425         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
426         Fixes #549173.
427
428 2009-10-22  Mark Probst  <mark.probst@gmail.com>
429
430         * sgen-gc.c: Shorten sections whenever possible.
431
432 2009-10-22  Mark Probst  <mark.probst@gmail.com>
433
434         * sgen-gc.c: Use our portable semaphore #defines.
435
436 2009-10-22  Mark Probst  <mark.probst@gmail.com>
437
438         * sgen-gc.c: A debug option for dumping the heap layout to a file
439         after each collection.
440
441 2009-10-21  Mark Probst  <mark.probst@gmail.com>
442
443         * sgen-gc.c: Make managed write barriers atomic via
444         thread-restarts.
445
446 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
447
448         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
449         methods. Fixes #543021.
450
451 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
452
453         * socket-io.[ch]: fix VS build.
454
455 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
456
457         * icall-def.h:
458         * socket-io.[ch]: implemented SendFile.
459
460 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
461
462         * class.c (mono_class_create_from_typedef): Initialize class->element_class
463         before the interfaces to avoid crashes later if class initialization fails.
464         Fixes #548417.
465
466         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
467         Fixes #548276.
468
469 2009-10-20  Marek Safar  <marek.safar@gmail.com>
470
471         * domain.c: Bump 4.0 version.
472
473 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
474
475         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
476         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
477         check since 'pubkey' can't be NULL at this stage
478         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
479         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
480         initialization of 'iter'
481
482 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
483
484         * cominterop.c : Search the interface parts of vtable to find 
485           method matches.  Fixes 547030.
486
487         Code is contributed under MIT/X11 license.
488
489 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
490
491         * marshal.c: BeginInvoke cannot be called on multicast delegates with
492         multiple targets. Fixes bug #574426.
493
494 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
495
496         * profiler.h: Put here the definition of
497         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
498         (and fix the build...).
499
500 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
501
502         * profiler.c, profiler.h, profiler-private.h:
503         Added support for different ways of getting call chains in stat mode.
504
505 2009-10-12  Mark Probst  <mark.probst@gmail.com>
506
507         * object.c, object-internals.h: New function for computing the
508         size of an array, factored out of mono_array_new_full().  Use
509         SGen's functions for allocating arrays and vectors.
510
511         * sgen-gc.c, gc-internal.h: Special functions for allocating
512         arrays and vectors without race conditions.  A managed array
513         allocator method.
514
515         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
516
517 2009-10-12  Mark Probst  <mark.probst@gmail.com>
518
519         * object.c, object.h, icall.c: Write barriers do the copying now,
520         as well, so no need for an additional memcpy.
521
522         * sgen-gc.c: Lock when storing remsets.  Do the memory
523         copying/moving in the write barriers.
524
525         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
526
527         * reflection.c: Added an assert.
528
529 2009-10-12  Mark Probst  <mark.probst@gmail.com>
530
531         * threads.c, process.c: A few missing write barriers.
532
533 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
534
535         * mono-perfcounters.c, mono-perfcounters-def.h: Add
536         network performance counters for bytes sent per second, bytes
537         received per second, and bytes total per second.
538
539         Code is contributed under MIT/X11 license.
540
541 2009-10-09  Mark Probst  <mark.probst@gmail.com>
542
543         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
544         Fix warning.
545
546 2009-10-09  Mark Probst  <mark.probst@gmail.com>
547
548         * threads.c, object-internals.h, object.c: Move code for
549         transferring an object to a different domain (via
550         serialization/remoting) to object.c.
551
552         * object.c (call_unhandled_exception_delegate): If the exception
553         is in a different domain than the delegate, transfer the exception
554         to that domain.
555
556 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
557
558         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
559         Fixes #322934.
560
561 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
562
563         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
564
565 2009-10-06  Mark Probst  <mark.probst@gmail.com>
566
567         * object.c (mono_method_return_message_restore): Handle the case
568         where the argument is an instance of a generic type.  Fixes
569         #544446.
570
571 2009-10-06  Mark Probst  <mark.probst@gmail.com>
572
573         * object.c (set_value): Write barrier fix - we must pass the
574         count, not the size.
575
576 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
577
578         * domain.c (mono_init_internal): Print a useful error message when encountering
579         an old mscorlib, instead of crashing. Fixes #544307.
580
581 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
582
583         * appdomain.c (copy_app_domain_setup): Fix a warning.
584
585         * debug-helpers.c (dis_one): Ditto.
586
587 2009-10-04  Mark Probst  <mark.probst@gmail.com>
588
589         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
590         into the new domain, instead of referencing the original one.
591
592         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
593         non-static.
594
595         * appdomain.c: Corlib version bump.
596
597 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
598
599         * threadpool.c: one more...
600
601 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
602
603         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
604         threads to die because we're shutting down. delgate5.exe works again.
605
606 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
607
608         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
609           ccw_interface_hash table when a ccw is finalized.
610
611         Code is contributed under MIT/X11 license.
612
613 2009-09-30  Mark Probst  <mark.probst@gmail.com>
614
615         * assembly.c, domain.c, image.c, metadata-internals.h: Split
616         domain and image unloading into two steps.  We must do this
617         because clearing the domain in SGen requires the class metadata to
618         be intact, but we need to free the mono_g_hash_tables in case a
619         collection occurs during domain unloading and the roots would trip
620         up the GC.
621
622 2009-09-30  Mark Probst  <mark.probst@gmail.com>
623
624         * object-internals.h: Remove serialized culture fields from
625         MonoInternalThread.
626
627         * icall-def.h, thread-types.h, threads.c: Remove serialized
628         culture icalls.
629
630         * appdomain.c: Corlib version bump.
631
632 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
633
634         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
635         Fixes #543133.
636
637 2009-09-30  Mark Probst  <mark.probst@gmail.com>
638
639         * sgen-gc.c: Try to shorten the new section after a major
640         allocation to avoid ever-growing sections.
641
642 2009-10-13  Martin Baulig  <martin@ximian.com>
643
644         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
645         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
646         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
647         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
648
649         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
650
651 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
652
653         * threadpool.c: fixed the order in which 'completed' and the wait
654         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
655         No need to use the wait_handle field of ASyncCall. Make sure the
656         threadpool is active when adding a job or queueing an idle thread.
657
658 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
659
660         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
661
662         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
663         when using --compile-all.
664
665 2009-09-27  Mark Probst  <mark.probst@gmail.com>
666
667         * metadata.c (free_generic_class): Unregister the field_objects
668         roots if we're using SGen.
669
670 2009-09-27  Mark Probst  <mark.probst@gmail.com>
671
672         * reflection.c (mono_dynamic_image_free): Deregister the GC root
673         for GenericParamTableEntry.gparam.
674
675 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
676
677         * marshal.c: don't create the handle when calling. It is created later
678         if needed.
679
680 2009-09-26  Mark Probst  <mark.probst@gmail.com>
681
682         * sgen-gc.c: Warning fixes.
683
684 2009-09-26  Mark Probst  <mark.probst@gmail.com>
685
686         * sgen-gc.c: New debug option "xdomain-checks", which scans the
687         whole heap for cross-domain references before each collection.
688
689         * sgen-scan-object.h: The scan action can now use SCAN to scan the
690         object.
691
692         * threadpool-internals.h, threadpool.c: New function
693         mono_thread_pool_is_queue_array() for checking whether a given
694         array is used as a (cross-domain) queue by the thread pool code.
695
696 2009-09-26  Mark Probst  <mark.probst@gmail.com>
697
698         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
699         searches the whole heap for objects containing a specific
700         reference.  Only for debugging.
701
702 2009-09-26  Mark Probst  <mark.probst@gmail.com>
703
704         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
705
706         * icall-def.h, threads.c, threads-types.h: New icalls for copying
707         byte arrays between domains.
708
709 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
710
711         * threadpool.c:
712         * class-internals.h:
713         * mono-perfcounters-def.h:
714         * mono-perfcounters.c:
715         -There is a list of idle threads
716         -Each of those idle threads wait on their own WaitHandle instead
717         of all of them using the same semaphore. When a new work item is
718         added, the job is assigned directly to an idle thread or a newly
719         created one if possible and then the handle for that thread is
720         signaled. Compare that to the current approach where all the
721         threads in the pool compete to dequeue a job from the same
722         queue.
723         -New struct ThreadPool that brings together the bunch of static
724         variable for each threadpool (IO and regular).
725         -New performance counters: # of items added and its rate per
726         threadpool. The rate will be used later, perhaps together with
727         other perf. counters, to decide when idle threads should exit.
728
729 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
730
731         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
732         Fix typo on Windows build.      
733         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
734         
735         Code is contributed under MIT/X11 license.
736
737 2009-09-25  Mark Probst  <mark.probst@gmail.com>
738
739         * object-internals.h: The Thread class is split up into Thread and
740         InternalThread now.  We have exactly one InternalThread per
741         thread, and at most one Thread per appdomain per thread.  Most
742         data is stored in InternalThread.  All InternalThread objects live
743         in the root domain.
744
745         * class-internals.h: Add internal_thread_class to MonoDefaults.
746
747         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
748         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
749         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
750         resulting from the split of the Thread class.
751
752         * gc-internal.h: Prototype for new function for checking whether a
753         thread is the finalizer thread.
754
755         * appdomain.c: Corlib version bump.
756
757 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
758
759         * appdomain.c|h: Add a mono_domain_try_unload method which is
760         equivalent to mono_domain_unload, except that it returns an exception
761         instead of throwing it. Make mono_domain_unload use the
762         mono_domain_try_unload method to avoid code-duplication.
763
764 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
765
766         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
767         a problem.
768
769 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
770
771         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
772         aborting when a conversion is not implemented.
773
774 2009-09-23  Miguel de Icaza  <miguel@novell.com>
775
776         * verify.c: when comparing culture strings, use g_ascii_strcmp
777
778         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
779         when comparing public key tokens to use memcmp on 16 bytes.   I do
780         not believe this ever worked as advertised in the past.
781
782         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
783         which would have always failed earlier.
784
785 2009-06-25  Miguel de Icaza  <miguel@novell.com>
786
787         * gc.c: Raise a NullArgumentException if the object passed is
788         null.
789
790 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
791
792         * image.c (mono_image_close): Atomically decrement the reference count and
793         remove the image from the hash tables, to prevent another thread from seeing a
794         dying MonoImage. Fixes #541194.
795
796 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
797
798         * threadpool.c: actually use the minimum number of 'completion ports'
799         (for us is just a potential worker thread).
800
801 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
802
803         * threadpool.c: remove ares_htable. It does not make sense any more
804         since the same objects are now stored in GC-tracked arrays while they are
805         in the queue.
806
807 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
808
809         * threadpool.c: increase the minimum length of the queues to 128.
810         Remove warning.
811
812 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
813
814         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
815         return the modified signature used by string ctors.
816
817 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
818
819         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
820         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
821         method, to be used by full-aot.
822
823 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
824
825         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
826         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
827         be known to be good.
828
829         * class.c (mono_class_init): Fail array types if their element type fails initialization
830         as well.
831
832         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
833         initialization, additionally we request the element_type vtable to be initialized as well.
834
835         This is fine and should not increase the working set in any meaningful way since it's reasonable
836         to assume       that most code will create an array and eventually populate it, which will require the
837         type's vtable to be initialized.
838
839         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
840
841 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
842
843         * normalization-tables.h : regenerated.
844
845 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
846
847         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
848         a leb128 encoding can take up to 5 bytes.
849
850 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
851
852         * class.c (verify_class_overrides): Remove useless argument.
853
854         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
855         before interface enumeration as this is no longer required.
856
857 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
858
859         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
860         used under mono_class_init context. This functions avoid any code path that
861         calls mono_class_init, which leads it to be slow as some things like the interface
862         bitmap are not available.
863
864         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
865         of it's own broken version. Fixes the verifier part of #538588.
866
867         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
868         API.
869
870 2009-09-15  Mark Probst  <mark.probst@gmail.com>
871
872         * class.c (mono_class_init): Always set an exception in a class if
873         vtable setup fails.  Fixes #538577.
874
875         * generic-sharing.c: Raise an exception if mono_class_vtable()
876         returns NULL.
877
878 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
879
880         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
881         methods of vtypes, as they could be incorrectly shared with static methods
882         taking an IntPtr argument.
883
884 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
885
886         * domain.c:
887         * object.c:
888         * class-internals.h: renamed waithandle_class to
889         manualresetevent_class.
890         * marshal.c: propagate the exception if a remoting BeginInvoke call
891         fails.
892
893 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
894
895         * object.c: Properly handle vtable failures.
896
897 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
898
899         * socket-io.c: Assert on vtable failure.
900
901         * mono-mlist.c: Assert on vtable failure.
902
903 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
904
905         * marshal.c: Assert on vtable failure.
906
907 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
908
909         * icall.c: Properly handle vtable failures.
910
911 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
912
913         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
914
915 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
916
917         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
918
919         * console-unix.c (do_console_cancel_event): Same.
920
921 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
922
923         * class-internals.h: Add mono_class_vtable_full function that allows control
924         if an exception should be raised or not.
925
926         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
927         to do what its documentation say, that is to return NULL and set exception_type on
928         failure.
929
930         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
931         and change the code to honor it.
932
933 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
934
935         * verify.c: Fix typo in error message.
936
937 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
938
939         * security-core-clr.c: Fix default_platform_check so it can run
940         the runtime coreclr tests (without an infinite recursion when
941         throwing an exception).
942
943 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
944
945         object.c (mono_delegate_ctor_with_method): Guard against null method.
946
947 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
948
949         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
950         that should be replaced with error handling later.
951
952 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
953
954         * marshal.c (mono_delegate_end_invoke): Fix warning.
955
956 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
957
958         * loader.c (mono_field_from_token): Properly handle invalid
959         dynamic tokens.
960
961 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
962
963         * pedump.c (verify_image_file): Skip types that can't be
964         decoded.
965
966 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
967
968         * verify.c: Look for recursive valuetypes only against the
969         type been initialized as this is a lot simpler and works.
970
971 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
972
973         * verify.c: Ensure that fields are properly loaded before
974         checking them.
975
976 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
977
978         * object.c (mono_object_get_virtual_method) : Call 
979           mono_cominterop_get_invoke if the object is a COM object.
980
981         Code is contributed under MIT/X11 license.
982
983 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
984
985         * verify.c: Check for recursive valuetype definitions.
986
987 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
988
989         Use inheritance-aware interface offsets. Inherited types use the same offsets
990         of their parents. This reduce offset duplication in case more than one type in
991         the inheritance tree explicitly implements the same interface.
992
993         This also removes a source of vtable bubbles found in #532409. An abstract type
994         isn't required to provide abstract methods to all interfaces it implements, which
995         resulted in a bubble with the previous scheme as the child would get a non-full
996         vtable from its parent. We fail all concrete types with vtable bubbles, so this
997         should be fixed.
998
999         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
1000         it's expected to not cause any significant increase beyond that.
1001
1002         * class.c (setup_interface_offsets): Compute super class iface offsets
1003         first to force sharing.
1004
1005         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
1006         dumping only the relevant ones.
1007
1008         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
1009         methods a new slot regardless if they belong to an interface or not. This allows
1010         an inherited type to override the iface method separately from the class one.
1011
1012 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1013
1014         * threadpool.c: make the Sleep() alertable to prevent delays exiting
1015         applications that take less than 2s to execute.
1016         Bug #524984 fixed.
1017
1018 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
1019
1020         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
1021
1022         * object.c (mono_get_runtime_callbacks): New helper function to return
1023         the runtime callbacks.
1024
1025         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
1026         mono_get_runtime_build_info () as the display name.
1027         
1028 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
1029
1030         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
1031         argument, since NEWARR expects a native int. Fixes #481559.
1032
1033 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1034
1035         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
1036         against broken SRE methods.
1037
1038 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1039
1040         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
1041         a NULL variable. Abort early on failure.
1042
1043 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
1044
1045         * class.c (can_access_type): Fail visibility test for non nested
1046         types with nested visibility.
1047
1048 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
1049
1050         * assembly.c (parse_public_key): Avoid allocating (and not 
1051         freeing) the public key array when it's not requested by the 
1052         caller.
1053         * threads.c (mono_thread_manage, mono_thread_create_internal, 
1054         ves_icall_System_Threading_Thread_Thread_internal): Free 
1055         allocated memory on error.
1056
1057 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1058
1059         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
1060
1061 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1062
1063         * class.c (mono_class_setup_fields): Remove duplicated local variable
1064         named gklass.
1065         Rename gklass to gtd to reflect the fact that it points to the generic
1066         type definition.
1067         Remove the duplicated call to mono_class_setup_fields on gtd and move
1068         the error check to the beginning.
1069
1070 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
1071
1072         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
1073         Remove cruft of the previous patch.
1074
1075 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1076
1077         * metadata-verify.c (verify_method_table): Check for abstract + final.
1078         Fixes #534175.
1079
1080 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1081
1082         * verify.c (verify_class_fields): Check for duplicate fields.
1083
1084 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1085
1086         * metadata-verify.c: Verify the typeref table for duplicates.
1087
1088 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
1089
1090         This reverts r140936 and properly handles interfaces with static methods. The
1091         right fix is to ensure vtables without bubles which is an easier to verify
1092         constraint. We should avoid such special cases as of the reverted patch as those
1093         only make the runtime more brittle.
1094
1095         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
1096         static methods on interfaces.
1097
1098         * class.c (setup_interface_offsets): Use the number of virtual methods when
1099         calculating interface offsets instead of the number of methods. This way we
1100         avoid bubles on the layout.
1101
1102 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
1103
1104         * metadata-verify.c (verify_metadata_header): Some very smart
1105         obfuscators like to add extra stream headers. Ignore them.
1106
1107 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
1108
1109         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
1110         methods correctly.
1111
1112 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
1113
1114         * metadata-verify.c: Verify for duplicated types.
1115
1116 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
1117
1118         * metadata-verify.c (verify_typedef_table): Verify for nested types
1119         without an entry on the nested class table.
1120
1121 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
1122
1123         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
1124         <tom_hindle@sil.org>. Add locking around hash table accesses.
1125
1126 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1127
1128         * verify.c (mono_verifier_verify_class): Verify all interface if
1129         really are interfaces. Fixes #534184.
1130
1131 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
1132
1133         * pedump.c: Initialize all types during metadata validation so we report
1134         errors only detected as part of class initialization.
1135
1136 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
1137
1138         * metadata-verify.c (verify_method_table): PInvoke requires method to
1139         be static. Fixes #534189
1140
1141 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
1142
1143         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
1144         being NULL.
1145
1146 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1147
1148         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
1149         for holes or bad methods. Fixes #525314.
1150
1151 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1152
1153         * class.c (setup_interface_offsets): Don't allocate slot
1154         for the same interface multiple times. This creates bubbles
1155         that waster space and make vtable verification harder.
1156
1157         The same interface get a slot multiple times since we need
1158         to get the closure of all implemented interfaces, which means
1159         the same interface is reported multiple times.
1160
1161 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1162
1163         * verify.c (mono_verifier_verify_class): Don't check the fields
1164         of generic instances since the context on which they got expanded
1165         might lead to false positives.
1166
1167         Such thing happens when a generic type is inflated in the context
1168         of a generic method and the inflated type of a field turns into a
1169         generic method argument, which causes the checking code to think
1170         it's an invalid class when it's not.
1171
1172 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
1173
1174         * verify.c (mono_type_is_valid_in_context): Verify if type
1175         is NULL and remove duplicate test.
1176
1177 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1178
1179         * verify.c (mono_verifier_verify_class): Check fields for
1180         invalid generic arguments.
1181
1182 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1183
1184         * class.c (verify_class_overrides): Verify if for static
1185         and non virtual methods.
1186
1187 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1188
1189         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
1190         Check for errors after retrieving the vtable.
1191
1192 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1193
1194         * class.c (mono_class_setup_vtable_general): Verify
1195         if method overrides are valid before processing them.
1196
1197 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
1198
1199         * marshal.c (mono_array_to_lparray): Fix minimal build with
1200         cominterop disabled.
1201
1202         * marshal.c (mono_free_lparray): Same.
1203
1204 2009-08-21  Mark Probst  <mark.probst@gmail.com>
1205
1206         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
1207         the hash function for the ares_htable.
1208
1209 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
1210
1211         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
1212         bit for assembly flags. MS is ok with it but there is no spec anywhere
1213         on its mean
1214
1215 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1216
1217         * class.c (mono_class_create_from_typedef): Emit profiler events
1218         in all cases.
1219
1220 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1221
1222         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
1223         Release memory on failure.
1224
1225 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1226
1227         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
1228         to the internal API.
1229
1230         * metadata.c (get_constraints): Use a single-linked table as we don't
1231         traverse it backward. Fail and return FALSE if only of the contraint types
1232         is not found.
1233
1234         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
1235         to mono_metadata_load_generic_param_constraints except for having a return value.
1236         This has to be done since the later is part of the public API.
1237
1238         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
1239         and fail the type.
1240
1241         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
1242         and fail the method.
1243
1244 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1245
1246         * metadata-verify.c (is_valid_method_header): Add work-around to deal
1247         with MS broken behavior of emmitting EH section sizes without the
1248         header size added.
1249
1250 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1251
1252         * metadata.c (mono_type_create_from_typespec): Don't allocate image
1253         memory until we're sure that we'll need it. This avoids leaking for
1254         broken types or duplicated instantiation.
1255
1256 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1257
1258         * metadata-verify.c (is_valid_method_header): Fix stupid formating
1259         mistake.
1260
1261 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
1262
1263         * metadata-verify.c (is_valid_method_header): Fix number of clauses
1264         and expected size calculation.
1265
1266 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1267
1268         * class.c (mono_class_get_field_idx): Add fixme for broken
1269         behavior for types with multiple fields with the same name.
1270         I would rather fix it, but have no idea on how to generate
1271         such artifact for testing.
1272
1273 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1274
1275         * verify.c (verifier_load_field): We should allow references to
1276         fields to be made using the generic type definition. It's up to
1277         the loader system to fail invalid ops.
1278
1279         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
1280         are invalid.
1281
1282 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1283
1284         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
1285
1286         * metadata-internals.h: Fix declaration of 
1287         mono_metadata_interfaces_from_typedef_full.
1288
1289         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
1290         heap_alloc_result parameter that controls if the result should be
1291         g_malloc'd.
1292
1293         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
1294         array be g_malloc'd and properly document this public API function.
1295
1296 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1297
1298         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
1299         remove METHOD_HEADER_TINY_FORMAT1.
1300
1301         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
1302
1303         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
1304
1305         Both spec and MS uses only 2 bits to enumerate the kind of header.
1306         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
1307         is superfluous, only used for tiny headers with odd code lengths.
1308
1309         This change also make sure that mono doesn't wronly interpret bit 2
1310         of fat header flags, which is currently reserved.
1311
1312 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1313
1314         * metadata.c (do_mono_metadata_parse_type): Do error
1315         checking for element types. Don't abort if presented
1316         with a broken type kind.
1317
1318 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
1319
1320         * metadata.c (mono_metadata_parse_method_signature_full):
1321         Gracefully fail bad vararg signatures.
1322
1323 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1324
1325         * profiler.c:
1326         * class.c: Fix warnings for uninitialized variables.
1327
1328 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1329
1330         * icall.c: Fix _NSGetEnviron method declaration warning.
1331
1332 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1333
1334         * icall.c:
1335         * reflection.c: Make bitwise checks explicit.
1336
1337 2009-08-18  Christian Hergert  <chris@dronelabs.com>
1338
1339         * debug-helpers.c:
1340         * marshal.c: Fix printf warnings.
1341
1342 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
1343
1344         * reflection.c (encode_cattr_value): Fix a warning.
1345
1346 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1347
1348         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
1349         of array bounds.
1350
1351 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1352
1353         * loader.c (mono_method_signature): Don't assert on broken
1354         signature. Print a more useful error message.
1355
1356 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1357
1358         * loader.c (mono_method_get_marshal_info): Assert if
1359         signature is invalid. Bounds check stores to the
1360         mspecs array;
1361
1362 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1363
1364         * loader.c (field_from_memberref): Fix warning.
1365
1366 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1367
1368         * loader.c (mono_method_get_param_names): Check if signature
1369         is null. Don't store beyond the size of the name array.
1370
1371 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1372
1373         * loader.c (mono_get_method_constrained): Check if signature
1374         is null.
1375
1376 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1377
1378         * loader.c (mono_loader_set_error_bad_image): Improve
1379         error messages.
1380
1381 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1382
1383         * loader.c (mono_get_method_full): Convert an assertion
1384         into a loader error.
1385
1386 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
1387
1388         * class-internals.h, class.c: Better naming and documentation.
1389
1390 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
1391
1392         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
1393         obj is NULL.
1394
1395 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1396
1397         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
1398         parsing fails.
1399
1400 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1401
1402         * loader.c (mono_loader_error_prepare_exception): Handle missing field
1403         errors with no class set.
1404
1405         * loader.c (field_from_memberref): If the field signature is of the wrong
1406         type fail with a MissingFieldException instead of a BadImageException as
1407         this is the behavior observed on MS. 
1408
1409 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1410
1411         * loader.c (field_from_memberref): Don't crash if either the field
1412         signature or the typespec class are invalid.
1413
1414 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1415
1416         * verify.c (verifier_load_field): Don't allow field related
1417         ops to reference fields on generic type definition.
1418
1419 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1420
1421         * metadata-verify.c: Add new warning level for errors specified
1422         by ECMA 335 but that MS ignores.
1423
1424         * metadata-verify.c (verify_method_table): Make compiler controled
1425         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
1426         this check is safe because the end result will only be some visibility
1427         exceptions been thrown.
1428
1429 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
1430
1431         * verify.c (get_boxable_mono_type): Don't allow the
1432         use of the generic type definition on boxed type positions.
1433
1434         Fixes #531237.
1435
1436 2009-08-14  Mark Probst  <mark.probst@gmail.com>
1437
1438         * threadpool.c: Make sure no cross-domain references remain in
1439         ares_htable or the arrays that are thrown away when resizing.
1440
1441 2009-08-14  Mark Probst  <mark.probst@gmail.com>
1442
1443         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
1444         list of classes for which we have to unregister reflection_info
1445         with the GC and which are not in the namespace cache.
1446
1447         * reflection.c (mono_reflection_initialize_generic_parameter): Add
1448         the class to the list.
1449
1450 2009-08-14  Mark Probst  <mark.probst@gmail.com>
1451
1452         * domain.c (mono_domain_free): Unregister the GC roots in
1453         MonoDomain.
1454
1455 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
1456
1457         * reflection.c (mono_reflection_type_get_handle): Fix typo.
1458
1459 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
1460
1461         * class.c: Add mono_class_get_field_from_name_full which does
1462         the same as mono_class_get_field_from_name but does check field
1463         signature as well.
1464
1465         * class-internals.h: Export mono_class_get_field_from_name_full as
1466         part of the internal API.
1467
1468         * loader.c (field_from_memberref): Search fields by name and signature
1469         as it's valid to have two fields with same name but different types.
1470
1471         Fixes #528055.
1472
1473 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
1474
1475         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
1476
1477         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
1478
1479         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
1480         System.Type.
1481
1482 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
1483
1484         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
1485
1486         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
1487
1488 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1489
1490         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
1491         to sgen-scan-object.h, which can be included and parameterized via
1492         macros.
1493
1494         * Makefile.am: sgen-scan-object.h added.
1495
1496 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1497
1498         * gc.c: #define GC_dont_gc if we're compiling with SGen.
1499
1500 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1501
1502         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
1503         before clearing a domain in the GC.
1504
1505 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1506
1507         * exception.c (mono_exception_from_name_domain): Actually create
1508         the exception in the specified domain.
1509
1510         * appdomain.c (mono_domain_create_appdomain_internal): Create the
1511         OutOfMemoryException a bit later so that the domain is inialized
1512         "enough" that it works.
1513
1514 2009-08-12  Mark Probst  <mark.probst@gmail.com>
1515
1516         * threads.c (thread_cleanup): Clean up the cached_culture_info
1517         array to prevent cross-domain references.
1518
1519 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
1520
1521         * metadata.c: more documentation for MonoType accessors.
1522
1523 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
1524
1525         Fix incorrect size definitions where the tail array isn't a list
1526         of pointers
1527         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
1528         define size.
1529         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
1530         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
1531         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
1532
1533 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1534
1535         * reflection.h:
1536         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
1537
1538 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1539
1540         * metadata.c:
1541         * loader.c:
1542         * metadata-internals.h:
1543         * method-builder.c:
1544         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
1545
1546 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1547
1548         * cominterop.c:
1549         * metadata.c:
1550         * metadata.h:
1551         * loader.c:
1552         * marshal.c:
1553         * reflection.c: #define for sizeof in MonoType and
1554         MonoMethodSignature.
1555
1556 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1557
1558         * domain.c:
1559         * domain-internals.h: add and use #define's instead of sizeof()
1560         for MonoJitInfo and MonoJitInfoTable.
1561
1562 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1563
1564         * object.c:
1565         * class.h: use #define instead of sizeof() for MonoRemoteClass.
1566
1567 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
1568
1569         * metadata.c:
1570         * metadata.h:
1571         * object.c:
1572         * class-internals.h:
1573         * generic-sharing.c:
1574         * marshal.c: use a #define instead of sizeof() for a few
1575         structures that use a zero-length array.
1576
1577 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
1578
1579         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
1580         to handle inflated generic methods.
1581
1582         * appdomain.c: Bump corlib version.
1583
1584         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
1585         instances.
1586
1587         * reflection.c (fixup_method): Same
1588
1589         * reflection.c (resolve_object): Same.
1590
1591         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
1592         g_error and a decent message.
1593
1594 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
1595
1596         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
1597         from the object because it could not yet be available globally
1598         (it happens if the profiler tries to create a gchandle on the
1599         MonoThread object of a thread that is still registering itself
1600         with the runtime).
1601
1602 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
1603
1604         * reflection.c (mono_generic_class_get_object): Initialized the
1605         managed type arguments array.
1606
1607         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
1608
1609         * appdomain.c: Bump corlib version.
1610
1611 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
1612
1613         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
1614         #527902.
1615
1616 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
1617
1618         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
1619         Avoid a crash if synch_cs is not set.
1620         
1621         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
1622         Handle the case when the handle is 0.
1623
1624         * appdomain.c: Bump corlib version.
1625
1626 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
1627
1628         * reflection.c (mono_type_get_object): Fix a warning.
1629
1630 2009-08-01  Mark Probst  <mark.probst@gmail.com>
1631
1632         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
1633         descriptor here.  We assume it's already been computed.
1634
1635         * generic-sharing.c (instantiate_other_info): Compute the GC
1636         descriptor for info type MONO_RGCTX_INFO_KLASS.
1637
1638 2009-08-01  Mark Probst  <mark.probst@gmail.com>
1639
1640         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
1641         type, so don't use MONO_OBJECT_SETREF to set a field.
1642
1643 2009-08-01  Mark Probst  <mark.probst@gmail.com>
1644
1645         * gc.c: We were missing one case where invoking a finalizer would
1646         not reset the domain.  Also, in the finalizer thread loop, assert
1647         that we're in the root domain.
1648
1649 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
1650
1651         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
1652         if the type is not an array.
1653
1654 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
1655
1656         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
1657         method bound to the declaring type of the method. Raise an exception
1658         if the type is not a generic param.
1659
1660 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
1661
1662         * class.c (print_unimplemented_interface_method_info): Print the
1663         full type name.
1664
1665         * class.c (mono_class_setup_vtable_general): When dealing with a
1666         generic instance first check if the generic type definition is
1667         not broken.
1668
1669 2009-02-11 Tom Hindke <tom_hindle@sil.org>
1670
1671         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
1672
1673         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
1674
1675         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
1676
1677         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
1678
1679         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
1680
1681         Code is contributed under MIT/X11 license
1682
1683 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
1684
1685         * verify.c: Fix naming of stelem and ldelem.
1686
1687 2009-07-30  Mark Probst  <mark.probst@gmail.com>
1688
1689         * generic-sharing.c: Replace the templates lock with the loader
1690         lock because of very hard to resolve deadlock issues.
1691
1692 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
1693
1694         * icall.c (ves_icall_Type_GetMethodsByName): Use 
1695         mono_class_get_vtable_size () instead of accessing klass->vtable_size
1696         directly. Fixes #525338.
1697
1698         * class.c (mono_class_get_vtable_size): New helper function.
1699
1700         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
1701         the field belongs to the type. Fixes #525733.
1702
1703 2009-07-30  Mark Probst  <mark.probst@gmail.com>
1704
1705         * sgen-gc.c: When we stop a thread and its stack top is not within
1706         its allocated stack (because it's in an altstack signal handler),
1707         restart it and stop it again, until it is.
1708
1709 2009-07-30  Mark Probst  <mark.probst@gmail.com>
1710
1711         * sgen-gc.c: Take a thread's stack top and registers from the
1712         sigcontext in the suspend signal handler.
1713
1714         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
1715         stuff to sgen-archdep.h.
1716
1717         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
1718         caller, because have code in sgen-archdep.h to acquire that data.
1719
1720 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
1721
1722         * profiler.c, profiler.h, profiler-private.h:
1723         Added support for keeping track of code chunks and buffers.
1724
1725 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
1726
1727         * metadata-verify.c: Fix endianness problems on decoding functions.
1728         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
1729
1730 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
1731
1732         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
1733         schema for vectors and one dimension SZARRAY.
1734
1735 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
1736
1737         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
1738         schema for vectors and one dimension SZARRAY.
1739
1740 2009-07-27  Mark Probst  <mark.probst@gmail.com>
1741
1742         * icall-def.h, thread-types.h, threads.c: New separate icalls for
1743         Interlocked.(Compare)Exchange with object arguments, which invoke
1744         write barriers.
1745
1746 2009-07-26  Miguel de Icaza  <miguel@novell.com>
1747
1748         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
1749         passed invalid arguments.   Fixes another crasher in the
1750         Silverlight test suite.
1751
1752         * class.c (mono_class_array_element_size): Return 0 for the size
1753         of the class;  This fixes the crasher exposed by :
1754
1755         typeof (void).MakeArrayType ();
1756
1757         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
1758         if there is no method to dereference.    Put all the code that
1759         depends on this inside the if (method) block.
1760
1761         This fixes the crasher exposed by Microsoft's Silvelright CLR test
1762         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
1763
1764         With this change, we pass the test.
1765         
1766         * reflection.c (mono_reflection_sighelper_get_signature_local):
1767         Only dereference the assembly if it has been set.    Fixes a
1768         crasher exposed by #525328
1769
1770 2009-07-25  Mark Probst  <mark.probst@gmail.com>
1771
1772         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
1773         don't perform the store in mono_gc_wbarrier_generic_nostore().
1774         Remove the second argument (value), which is not needed.
1775
1776 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
1777
1778         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
1779         the build.
1780
1781         * boehm-gc.c: Ditto.
1782         
1783 2009-07-24  Mark Probst  <mark.probst@gmail.com>
1784
1785         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
1786         not perform the store itself.  Introduce
1787         mono_gc_wbarrier_generic_nostore(), which is the same as
1788         mono_gc_wbarrier_generic_store(), except it doesn't perform the
1789         store.
1790
1791 2009-07-24  Mark Probst  <mark.probst@gmail.com>
1792
1793         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
1794         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
1795         we still need the memcpy().
1796
1797 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1798
1799         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
1800         so that big arrays are handled correctly.  Always use
1801         safe_object_get_size() to calculate array object sizes, which
1802         takes bounds into account.
1803
1804 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1805
1806         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
1807         GC descriptor is computed before we use it.
1808
1809 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1810
1811         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
1812         write barrier if necessary.
1813
1814 2009-07-22  Mark Probst  <mark.probst@gmail.com>
1815
1816         * icall-def.h, icall.c, thread-types.h: New separate icall for
1817         VolatileWrite(object&,object) that uses a write barrier.
1818
1819         * console-unix.c, file-io.c, icall.c, threads.c: Use write
1820         barriers in icalls which write to "ref" or "out" arguments.
1821
1822 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
1823
1824         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
1825         handler in a separate icall, to reduce the size of the wrappers.
1826
1827 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
1828
1829         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
1830
1831 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
1832
1833         * metadata-verify.c (parse_field): Allow byref field.
1834
1835         * metadata-verify.c (parse_locals_signature): Allow byref locals.
1836
1837         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
1838
1839 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
1840
1841         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
1842         Fixes #522784.
1843
1844 2009-07-20  Robert Jordan  <robertj@gmx.net>
1845
1846         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
1847         Fix invalid IL in valuetype handling (STOBJ must push the
1848         corresponding class). Fixes bug #523149.
1849
1850         Code is contributed under MIT/X11 license.
1851
1852 2009-07-20  Geoff Norton  <gnorton@novell.com>
1853
1854         * gc.c: Use proper semaphores where available on posix and darwin.
1855
1856 2009-07-19  Geoff Norton  <gnorton@novell.com>
1857
1858         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
1859
1860 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
1861
1862         * refletion.c (is_sre_usertype): Change name to is_usertype and
1863         invert it's result so it returns true if the type is an user type
1864         and not the opposite.
1865
1866         * reflection.c (is_*_type): Change all of those to use new macro
1867         check_corlib_type_cached that cached the type lookup so we don't
1868         need to do string comparisons all the type. Changed the signature
1869         to take a MonoClass instead.
1870
1871         * reflection.c: Change mono_image_create_token and resolve_object
1872         to use is_sre_* functions.
1873
1874 2009-07-18  Mark Probst  <mark.probst@gmail.com>
1875
1876         * sgen-gc.c: Check for writes to the stack in the managed
1877         wbarrier as well.
1878
1879 2009-07-18  Mark Probst  <mark.probst@gmail.com>
1880
1881         * sgen-gc.c: When a thread is unregistered, don't free its remsets
1882         but put them on a list which is processed with the other thread's
1883         remsets.
1884
1885 2009-07-18  Mark Probst  <mark.probst@gmail.com>
1886
1887         * sgen-gc.c: Fix and enable the internal allocator instead of
1888         using malloc/free (which causes deadlocks).
1889
1890 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
1891
1892         * refletion.c: Fix builds with SRE disabled by adding a minimal
1893         implementation of mono_reflection_type_get_handle.
1894
1895 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
1896
1897         * refletion.c: Make mono_reflection_type_get_handle non static.
1898
1899         * object-internals.h: Export mono_reflection_type_get_handle.
1900
1901         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
1902         unmanaged handle using mono_reflection_type_get_handle.
1903
1904 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
1905
1906         * refletion.c: Replace all reads of MonoReflectionType::type with
1907         calls to mono_reflection_type_get_handle. Only the functions that
1908         deal with constructing TypeBuilder::type have not been changed
1909         because they have to deal with NULL values.
1910
1911         This is a first step into supporting reflection types that don't
1912         map directly into their unmanaged counterpart.
1913
1914 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
1915
1916         * metadata-verify.c (parse_locals_signature): Don't complain
1917         on signature with zero locals since MS generates it and doesn't
1918         bother with.
1919
1920 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
1921
1922         * reflection.c (mono_image_get_array_token): Resolve return
1923         type using mono_reflection_type_get_handle.
1924
1925         * reflection.c (mono_image_get_array_token): Resolve array method
1926         parent type using mono_reflection_type_get_handle.
1927
1928 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
1929
1930         * reflection.c (mono_image_basic_init): Applied patch from
1931         <Dax@daxxfiles.net>. Set the public key token from the assembly
1932         builder. Fixes #518909.
1933
1934         * appdomain.c: Bump corlib version.
1935
1936 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
1937
1938         * class.c (mono_class_needs_cctor_run): Make this return false if
1939         the class has no cctor.
1940
1941 2009-07-13  Mark Probst  <mark.probst@gmail.com>
1942
1943         * sgen-gc.c: When the minor GC needs to allocate a new section,
1944         invoke the major GC afterwards.
1945
1946 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
1947
1948         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
1949           Applying the window_style field to the SHELLEXECUTEINFO struct.
1950
1951         Code is contributed under MIT/X11 license.
1952
1953 2009-07-13  Mark Probst  <mark.probst@gmail.com>
1954
1955         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
1956         locking earlier.  Fix it in the managed allocator by making sure
1957         that no thread is stopped there before the GC runs.  If we do stop
1958         a thread there, we restart it and let it run a but, until it stops
1959         somewhere else.
1960
1961         * gc-internal.h, gc.c: Function for getting the IP from a signal
1962         context via a function registered by mini.
1963
1964 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
1965
1966         * object-internals.h (MonoIntPtr): New structure describing a boxed
1967         IntPtr.
1968
1969         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
1970         returns. Fixes #519953.
1971
1972         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
1973
1974 2009-07-09  Mark Probst  <mark.probst@gmail.com>
1975
1976         * class-internals.h, generic-sharing.c: New RGCTX info type for
1977         getting a remoting invoke with check wrapper.
1978
1979 2009-07-07  Geoff Norton  <gnorton@novell.com>
1980
1981         * icall-def.h: Fix the enable-minimal build.
1982
1983 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1984
1985         * object-internals.h: Add MonoReflectionDerivedType.
1986
1987         * reflection.c: Implement support for PointerType.
1988         Fixed tons of warnings.
1989
1990 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1991
1992         * object-internals.h: Add MonoReflectionByRefType.
1993
1994         * reflection.c: Implement support for ByRefType.
1995
1996 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
1997
1998         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
1999
2000         * object-internals.h: Add MonoReflectionArrayType and
2001         mono_reflection_create_unmanaged_type.
2002
2003         * reflection.c: Implement support for ArrayType.
2004
2005 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
2006
2007         * metadata-verify.c (is_valid_method_header): Parse EH block
2008         flags correctly.
2009
2010 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2011
2012         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
2013         processing the disappearing links, and process disappearing links
2014         in a loop until no new objects are copied.
2015
2016 2009-07-03  Mark Probst  <mark.probst@gmail.com>
2017
2018         * object.c (handle_enum): Invoke the write barrier when copying
2019         value type instances.
2020
2021         * sgen-gc.c: Register remsets for unmanaged write barriers only
2022         when the address written to is actually on the heap.  This makes
2023         set_value() in object.c work without requiring that the result be
2024         on the heap.
2025
2026 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
2027
2028         The runtime wrappers are all bound to a given type that must
2029         exist in the same image. For regular images we use the <Module>
2030         type, which is required to exist for all images.
2031
2032         The <Module> type can't be used for dynamic images because it
2033         might not exist at the time the wrapper is required, so we create
2034         a synthetic type to use instead.
2035
2036         The current code works because of the 2 stage setup of MonoClass,
2037         but once this is gone it will no longer work.
2038
2039         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
2040
2041         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
2042
2043         * object-internals.h: Export mono_image_set_wrappers_type icall
2044         as part of the internal API.
2045
2046         * marshal.c (get_wrapper_target_class): If the image is dynamic,
2047         use MonoDynamicImage::wrappers_type instead of the <Module> type.
2048
2049         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
2050         image wrappers_type to the provided value.
2051
2052 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
2053
2054         * appdomain.c (deregister_reflection_info_roots): No need
2055         to use the image lock here.
2056
2057 2009-07-02  Mark Probst  <mark.probst@gmail.com>
2058
2059         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
2060
2061 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
2062
2063         * threads.c: Store the thread start argument in a hash table instead of
2064         registering it as a root, as libgc doesn't support unregistering roots
2065         under windows, leading to 'too many root sets' errors when many threads
2066         are created.
2067
2068         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
2069         shutdown, they can still be referenced by the other dying objects.
2070         Fixes #514506.
2071
2072 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2073
2074         * socket-io.c: DontLinger does not allow LingerOptions.
2075
2076 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2077
2078         * metadata-verify.c: The spec doesn't mention that it's possible to add
2079         custom attribute to a generic parameter. Fixed.
2080
2081 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2082
2083         * class.c (inflate_generic_type): Don't crash while trying to output a message
2084         on why we're aborting.
2085
2086 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
2087
2088         * socket-io.c: DontLinger can take an int or a boolean too.
2089
2090 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
2091
2092         * gc.c: check for a null argument to SuppressFinalize () and
2093         ReRegisterForFinalize ().
2094
2095 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
2096
2097         * loader.c (method_from_methodspec): Call into the verifier to check
2098         the signature.
2099
2100         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
2101
2102         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
2103         part of the internal API.
2104
2105 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2106
2107         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
2108         the signature.
2109
2110         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
2111
2112         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
2113         part of the internal API.
2114
2115 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2116
2117         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
2118         the signature.
2119
2120         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
2121         blob verification.
2122
2123         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2124         part of the internal API.
2125
2126 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2127
2128         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
2129         when doing basic verification. 
2130
2131         This check must be done since the runtime peeks into signatures in much
2132         more places than it does decoding so it makes sense to ensure that all
2133         pointers to blob objects are well formed.
2134
2135 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2136
2137         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
2138         Use proper overflow dectection. Fix usage of it.
2139
2140 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
2141
2142         * loader.c (field_from_memberref): Call into the verifier to check
2143         the signature.
2144
2145         * loader.c (mono_method_get_signature_full): Same.
2146
2147         * loader.c (method_from_memberref): Same.
2148
2149         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
2150
2151         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
2152         part of the internal API.
2153
2154 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2155
2156         * threadpool.c (mono_thread_pool_add): If the domain is unloading
2157         or unloaded, still return an AsyncResult, but don't add it to the
2158         threadpool.
2159
2160 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2161
2162         * threads.c: fix missing colon when DEBUG is defined.
2163
2164 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2165
2166         * threadpool.c: Don't add new calls to a threadpool if the domain
2167         of the call is unloading or unloaded.  When dequeuing a job, null
2168         the reference in the queue.
2169
2170 2009-06-25  Mark Probst  <mark.probst@gmail.com>
2171
2172         * sgen-gc.c (null_link_in_range): Add the dislink for the old
2173         generation if an object was moved.
2174
2175 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
2176
2177         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
2178           parameters of type SAFEARRAY[VARIANT].
2179
2180         * reflection.c (encode_marshal_blob): Properly generate element type
2181           (SafeArraySubType marshal attribute option).
2182
2183         Code is contributed under MIT/X11 license.
2184
2185 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
2186
2187         * reflection.c: in mono_method_clear_object () really ensure all the
2188         objects are removed.
2189
2190 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2191
2192         * loader.c (mono_method_signature): Call into the verifier to check
2193         the method signature.
2194
2195         * metadata-verify.c (verify_method_table): Move signature verification
2196         to verify_method_table_full.
2197
2198         * metadata-verify.c: Add mono_verifier_verify_method_signature.
2199
2200         * verify-internals.h: Export mono_verifier_verify_method_signature as
2201         part of the internal API.
2202
2203 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2204
2205         * loader.c (mono_method_get_header): Call into the verifier to
2206         check the method header.
2207
2208         * metadata-verify.c: Add mono_verifier_verify_method_header.
2209
2210         * verify-internals.h: Export mono_verifier_verify_method_header as
2211         part of the internal API.
2212
2213 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2214
2215         * class.c (mono_class_find_enum_basetype): Call into the verifier to
2216         check the field signature. Replace an assert with an explicit check.
2217
2218         * class.c (mono_class_setup_fields): Call into the verifier to check
2219         the field signature.
2220
2221         * metadata-verify.c: Add mono_verifier_verify_field_signature.
2222
2223         * verify-internals.h: Export mono_verifier_verify_field_signature as
2224         part of the internal API.
2225
2226 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2227
2228         * class.c (mono_class_find_enum_basetype): Simplify this function
2229         by moving code outside of the loop and not decoding static fields.
2230
2231 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
2232
2233         * metadata-verify.c (verify_typedef_table): Check the extends
2234         token here. Move to here a flags check from verify_typedef_table_full.
2235
2236 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
2237
2238         * metadata-verify.c (is_valid_method_header): Fix a warning.
2239
2240         * metadata-internals.h (MonoImage): Remove the unused 
2241         static_rgctx_invoke_wrapper_cache.
2242
2243         * image.c marshal.c: Ditto.
2244
2245 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2246
2247         * image.c (do_mono_image_load): Enable table data verification.
2248
2249 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2250
2251         * metadata-verify.c (is_valid_constant): Fix nullref check.
2252
2253 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
2254
2255         * metadata-verify.c (is_valid_constant): Fix string bounds check.
2256
2257 2009-06-22  Mark Probst  <mark.probst@gmail.com>
2258
2259         * sgen-gc.c: Managed allocation with pthreads TLS.
2260
2261         * threads.c, threads-types.h: Functions for the JIT to tell the
2262         runtime whether it supports the MONO_TLS opcode.
2263
2264 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2265
2266         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
2267         without methods.
2268
2269 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2270
2271         * metadata-verify.c (is_valid_constant): Fix the string length check.
2272         Use safe overflow checking. Add decent error messages.
2273
2274 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2275
2276         * metadata-verify.c: Move remaininh blob checks to the offline
2277         verification path.
2278
2279 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
2280
2281         * metadata-verify.c: Move more blob checks to the offline verification
2282         path.
2283
2284 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
2285
2286         * object-internals.h : Adding interrupt_on_stop field.
2287
2288         * threads.c (mono_thread_request_interruption) : On Windows exit the
2289           thread if interrupt_on_stop is set.
2290
2291         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
2292          Removing old interrupt logic and setting the interrupt_on_stop for the
2293          thread when calling accept.
2294
2295         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
2296          setting the interrupt_on_stop for the thread when calling accept.
2297
2298         Contributed under MIT/X11 license.
2299
2300 2009-06-20  Martin Baulig  <martin@ximian.com>
2301
2302         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
2303
2304 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
2305
2306         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
2307         running in no-exec mode.
2308
2309 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2310
2311         * metadata-verify.c (verify_method_table): Move header
2312         checking to verify_method_table_full.
2313
2314         * metata-verify.c (mono_verifier_verify_full_table_data):
2315         Call verify_method_table_full.
2316
2317 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2318
2319         * metadata-verify.c (verify_field_table): Move signature
2320         checking to verify_field_table_full.
2321
2322         * metata-verify.c (mono_verifier_verify_full_table_data):
2323         Call verify_field_table_full.
2324
2325 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2326
2327         * metadata-verify.c (verify_typedef_table): Move remaining
2328         stuff to verify_typedef_table_full.
2329
2330 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2331
2332         * metadata-verify.c: Kill is_corlib from VerifyContext.
2333         It is only used by the offline mode.
2334         So we better remove it from the runtime path.
2335
2336 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2337
2338         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
2339         function that perform the offline metadata verification steps.
2340
2341         * metadata-verify.c (verify_typedef_table): Move some checks to
2342         verify_typedef_table_full and make it been called by new function
2343         mono_verifier_verify_full_table_data.
2344
2345         * pedump.c: Call mono_verifier_verify_full_table_data.
2346
2347         * verify-internals.h: Export mono_verifier_verify_full_table_data as
2348         part of the internal API.
2349
2350 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2351
2352         * metadata-verify.c (typedef_is_system_object): Fix System.Object
2353         check.
2354
2355         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
2356         flags bits. SupportLastError was confused as bit 7 instead of 6.
2357
2358         * metadata-verify.c (verify_implmap_table): Fix import scope verification
2359         to check against the module ref table instead of module.
2360
2361         * metadata-verify.c (verify_implmap_table): Fix corlib check.
2362
2363         * pedump.c: Call mono_image_load_names.
2364
2365 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
2366
2367         * image.c: Extract mono_image_load_names from do_mono_image_load.
2368
2369         * metadata-internals.h: Export mono_image_load_names as part of
2370         the internal API.
2371         
2372 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
2373
2374         * metadata.c (mono_metadata_cleanup): Free the generic method cache
2375         first, as it could reference data in the other caches.
2376
2377 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
2378
2379         * metadata-verify.c: Finished with method header verification.
2380
2381 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
2382
2383         * metadata-verify.c: Added more header verification code.
2384         Now only EH clauses are missing.
2385
2386 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
2387
2388         * marshal.c (get_runtime_invoke_type): Don't share primitive types
2389         for return values.
2390
2391 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
2392
2393         * metadata-verify.c: Initial method header verification.
2394
2395 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
2396
2397         * metadata-verify.c (verify_import_table): The IAT contents
2398         might end been patched by the windows DL when running with
2399         coree enabled.
2400
2401 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
2402
2403         * class.c (mono_class_from_typeref): If the enclosing type is not
2404         found return null instead of crashing. Fixes #508487.
2405
2406 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
2407
2408         * normalization-tables.h : updated to the latest unicode charcter
2409           data.
2410         * appdomain.c : bump corlib version.
2411
2412 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
2413
2414         * class.c (mono_class_from_name): Fix support for assembly references
2415         in the EXPORTEDTYPE table. Fixes #511704.
2416
2417 2009-06-13  Geoff Norton  <gnorton@novell.com>
2418
2419         * domain.c: Ensure that mono_domain_assembly_open actually opens the
2420         assembly in the target domain.
2421
2422 2009-06-12  Robert Jordan  <robertj@gmx.net>
2423
2424         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
2425         because "this" of the managed signature has become an
2426         ordinary parameter in the unmanaged signature.
2427
2428 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
2429
2430         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
2431         field for owner-less generic containers.
2432
2433         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
2434         image field of the owner-less generic containers created here.
2435
2436         * metadata.c (mono_metadata_load_generic_params): Ditto, the
2437         contain is ownerless until the caller sets its owner.
2438
2439         * metadata.c (type_in_image): Handle owner-less generic containers
2440         correctly.
2441         
2442 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
2443
2444         * image.c (mono_image_close): Support debug_assembly_unload for
2445         dynamic images too.
2446
2447 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
2448
2449         * class.c: Fix some typos in comments.
2450
2451 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
2452
2453         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
2454
2455         * threads.c (mono_thread_execute_interruption): Avoid creating the
2456         abort exception object while holding the synch_cs lock.
2457
2458 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
2459
2460         * metadata-verify.c: Verify basic cattr content.
2461
2462 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
2463
2464         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
2465         nested types.
2466         
2467         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
2468         support for nested types. Fixes #511704.
2469
2470 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2471
2472         * metadata-verify.c: Verify methodspec signatures.
2473
2474 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
2475
2476         * metadata-verify.c: Verify typespec signatures.
2477
2478 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
2479
2480         * metadata.c (free_inflated_method): Call 
2481         mono_marshal_free_inflated_wrappers (), which was missed earlier.
2482
2483 2009-06-08  Miguel de Icaza  <miguel@novell.com>
2484
2485         * mono-config.c: Small change to report the PPC64/ILP32 model.
2486
2487 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2488
2489         * metadata-verify.c (parse_type): Check szarray.
2490
2491 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2492
2493         * metadata-verify.c (parse_type): Check fnptr.
2494
2495 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2496
2497         * metadata-verify.c (parse_type): Check generic instances.
2498
2499 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
2500
2501         * metadata-verify.c (parse_type): Check array shape.
2502
2503 2009-06-05  Robert Jordan  <robertj@gmx.net>
2504
2505         * class.c (mono_class_create_from_typedef): Check only for
2506         mscorlib's System.Array.
2507
2508 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2509
2510         * metadata-verify.c (parse_type): Check pointer, class/valuetype
2511         and generic params. 
2512
2513         * metadata-verify.c (parse_field): Check the signature.
2514
2515 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
2516
2517         * metadata-verify.c: Implement locals signature check.
2518
2519 2009-06-04  Marek Safar  <marek.safar@gmail.com>
2520
2521         * domain.c: Add .NET 4.0 Beta 1 version.
2522
2523 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
2524
2525         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
2526           For QueryInterface on CCWs consider the base class
2527           interfaces as well.
2528
2529         Code is contributed under MIT/X11 license.
2530
2531 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
2532
2533         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
2534
2535         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
2536         used.
2537
2538         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
2539         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
2540
2541         * generic-sharing.c (inflate_other_data): Ditto.
2542         
2543 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
2544
2545         * metadata-verify.c: Implement property signature check.
2546
2547 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2548
2549         * sgen-gc.h: Register saving support for PPC.
2550
2551 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2552
2553         * sgen-gc.c: Fixed a pthread TLS screwup.
2554
2555 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2556
2557         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
2558         supported.
2559
2560 2009-06-04  Mark Probst  <mark.probst@gmail.com>
2561
2562         * sgen-gc.c: Disable TLA and managed allocation if the __thread
2563         keyword is not supported.
2564
2565 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
2566
2567         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
2568         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
2569         the inflated method is freed. Fixes #508389.
2570
2571         The code is contributed under the MIT/X11 license.
2572         
2573 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
2574
2575         * marshal.c (get_wrapper_target_class): New helper function.
2576         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
2577         the <Module> class of the image. Fixes #509049.
2578
2579 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2580
2581         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
2582         Check if the thread was interrupted and proccess it straight away.
2583         Makes abortion much more responsive.
2584
2585 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2586
2587         * threads.c (mono_thread_execute_interruption): Use atomic cas with
2588         MonoThread::interruption_requested to match it's counterpart.
2589
2590         Fixes a hang in abort-stress-1 on a 2 core x86.
2591
2592         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
2593         Fix warning.
2594
2595 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2596
2597         Change MonoImage::name_cache to be protected by the image lock
2598         instead of the loader lock.
2599
2600         * appdomain.c (deregister_reflection_info_roots): Protect access
2601         to name_cache.
2602
2603         * class.c (mono_image_init_name_cache): Change from the loader lock
2604         to the image lock. Check if the cache wasn't already created.
2605
2606         * class.c: Change from the loader to the image lock.
2607
2608         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
2609         the code to hold the image lock while iterating over name_cache and
2610         not go into mono_array_new holding it.
2611
2612         * metadata-internals.h: Add a comment about this change.
2613
2614 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2615
2616         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
2617         Under the 2.0 profile raise the loader error.
2618
2619         Fixes #508532.
2620
2621 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
2622
2623         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
2624         of ldind opcode for generic instances so we don't fail for direct wrappers.
2625         This only affect direct calls.
2626
2627 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
2628
2629         * reflection.c (create_dynamic_mono_image): Fix warnings.
2630
2631         * generic-sharing.c (other_info_equal): Ditto.
2632         
2633 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2634
2635         * metadata-verify.c: Implement field signature check.
2636
2637 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
2638
2639         * metadata-verify.c: Implement standalone signature check.
2640
2641 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
2642
2643         * metadata-verify.c: Implement methodref signature check.
2644
2645 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
2646
2647         * object-internals.h (MonoRuntimeCallbacks): New structure containing
2648         callbacks supplied by the runtime.
2649
2650         * object.c (mono_install_callbacks): New internal function to install
2651         the callbacks.
2652
2653         * object.c (mono_create_ftnptr): Move the implementation of this to
2654         mini/.
2655
2656         * object.c (mono_get_addr_from_ftnptr): Ditto.  
2657
2658 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2659
2660         * metadata-verify.c (parse_return_type): Proper byref check.
2661         * metadata-verify.c (is_valid_method_signature): Check for zero arity
2662         generic signatures and method params.
2663
2664 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
2665
2666         * metadata-verify.c (decode_signature_header): Fix bounds check.
2667
2668         * metadata-verify.c (parse_custom_mods): Check custom mods.
2669
2670         * metadata-verify.c (parse_type): Do initial basic verification
2671         of valid values.
2672         
2673         * metadata-verify.c (is_valid_method_signature): Parse the generic
2674         param count.
2675
2676 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
2677
2678         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
2679         discarded based on their most specific definition so we set the method_slots
2680         array before checking if the method is acceptable or not.
2681
2682         Fixes #506757.
2683
2684 2009-05-26  Mark Probst  <mark.probst@gmail.com>
2685
2686         * icall.c: Free the old array when resizing a mono_ptr_array.
2687
2688 2009-05-26  Mark Probst  <mark.probst@gmail.com>
2689
2690         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
2691         for the hashes whose keys are managed objects.
2692
2693 2009-05-26  Mark Probst  <mark.probst@gmail.com>
2694
2695         * object-internals.h, threads.c: Set the execution context on
2696         thread start here, not in corlib.
2697
2698         * appdomain.c: Bump corlib version.
2699
2700 2009-05-27  Martin Baulig  <martin@ximian.com>
2701
2702         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
2703         if `_mono_debug_using_mono_debugger' is set to make things work
2704         properly when embedding Mono.
2705
2706 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2707
2708         * class.c (mono_class_setup_fields): Don't mark simd types as having
2709         16 bytes alignment as the whole runtime doesn't support.
2710
2711 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
2712
2713         * metadata-verify.c (safe_read): Use endian safe read macros.
2714
2715 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
2716
2717         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
2718         it is read-only when using full aot.
2719
2720 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
2721
2722         * metadata-verify.c (is_valid_method_signature): Verify parts
2723         of the return type. Provide an error message in case of failure.
2724
2725 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
2726
2727         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
2728
2729 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
2730
2731         * metadata-verify.c: Include the size prefix in the bounds check.
2732
2733 2009-05-22  Miguel de Icaza  <miguel@novell.com>
2734
2735         * icall.c: Remove warnings.
2736
2737         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
2738         prevent auto-detection based on GCC defines.
2739
2740         Add PS3
2741
2742         * metadata-verify.c: Do not include signal.h
2743
2744         * generic-sharing.c, marshal.c: Add returns to avoid some warning
2745         messages.  Not sure why the g_assert_not_reached is not enough to
2746         quiet the compiler.
2747         
2748
2749         * appdomain.c: Remove code that is not used when
2750         DISABLE_SHADOW_COPY is set.
2751
2752         * image.c: use g_getenv
2753
2754 2009-05-21  Miguel de Icaza  <miguel@novell.com>
2755
2756         * reflection.c: Remove code that it not used with
2757         DISABLE_REFLECTION_EMIT is defined.
2758
2759 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
2760
2761         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
2762         invoke wrappers.
2763
2764 2009-05-20  Miguel de Icaza  <miguel@novell.com>
2765
2766         * socket-io.c
2767         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
2768         the ifdef here and instead put that on io-layer
2769
2770 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2771
2772         * metadata-verify.c: Verify the generic param constraint table.
2773
2774 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2775
2776         * metadata-verify.c (verify_generic_param_table): Fix
2777         thinko on the valid flags bits for generic params.
2778
2779 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2780
2781         * metadata-verify.c: Verify the methodspec table.
2782
2783 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
2784
2785         * metadata-verify.c: Verify the generic param table.
2786
2787 2009-05-19  Mark Probst  <mark.probst@gmail.com>
2788
2789         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
2790
2791 2009-05-19  Mark Probst  <mark.probst@gmail.com>
2792
2793         * sgen-gc.c: Use generation enum more consistently and use the
2794         correct generation in mono_gc_register_for_finalization().
2795
2796 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
2797
2798         * metadata-verify.c: Verify the nested class table.
2799
2800 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
2801
2802         * metadata-verify.c: Verify the manifest resource table.
2803
2804 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
2805
2806         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
2807
2808 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
2809
2810         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
2811         wrappers, this is now done in the JIT.
2812         
2813         * class.c (mono_set_generic_sharing_supported): New internal function.
2814         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
2815
2816 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2817
2818         * metadata-verify.c: Verify the exported type table.
2819
2820 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2821
2822         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
2823
2824 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2825
2826         * metadata-verify.c: Verify the file table.
2827
2828 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2829
2830         * metadata-verify.c (verify_assembly_table): Fix an error message.
2831
2832         * metadata-verify.c: Verify the assemblyref table.
2833
2834 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
2835
2836         * metadata-verify.c (verify_assembly_table): Fix the valid
2837         bits mask for flags.
2838
2839 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
2840
2841         * debug-helpers.c (mono_method_full_name): Print generic parameters of
2842         generic methods as well.
2843
2844 2009-05-15  Geoff Norton  <gnorton@novell.com>
2845
2846         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
2847         use-case and is significantly more performant than the wapi layer.
2848
2849 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2850
2851         * metadata-verify.c: Verify the assembly table.
2852
2853 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2854
2855         * metadata-verify.c: Fix rows limit check.
2856
2857 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
2858
2859         * metadata-verify.c: Verify the fieldrva table.
2860
2861 2009-05-13  Mark Probst  <mark.probst@gmail.com>
2862
2863         * sgen.c: Speed up weak links and finalizers by grouping them by
2864         generation.
2865
2866 2009-05-13  Mark Probst  <mark.probst@gmail.com>
2867
2868         * marshal.c (delegate_hash_table_add): When overwriting an entry,
2869         free the old GCHandle (only applies to SGen).
2870
2871 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
2872
2873         * loader.c (mono_get_method_from_token): Avoid the expensive call to
2874         mono_metadata_load_generic_params () for non-generic methods.
2875
2876 2009-05-12  Mark Probst  <mark.probst@gmail.com>
2877
2878         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
2879         New function for returning a monitor's weak link if it has one.
2880
2881         * sgen-gc.c: Remove an object's monitor's weak link (if it has
2882         one) when clearing a domain.  These can still be around because
2883         the object might not have been collected.
2884
2885 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
2886
2887         * gc.c: Fix a warning.
2888
2889 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
2890
2891         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
2892         prevous wait that resulted in a deadlock on Windows when initializing
2893         the runtime form DllMain. Also results in improved startup time.
2894         (finalizer_thread): Get rid of thread_started_event.
2895         * threads.c, threads-types.h (mono_thread_create_internal): Return the
2896         resulting MonoThread.
2897
2898         Contributed under MIT/X11 license.
2899
2900 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
2901
2902         * metadata-verify.c: Verify the implmap table.
2903         Don't require that #US and #Strings be present.
2904
2905 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
2906
2907         * security-core-clr.c: Delegate checks are done at creation time,
2908         not a invocation time. Fix exception for Telerik Silverlight demo
2909
2910 2009-05-11  Mark Probst  <mark.probst@gmail.com>
2911
2912         * sgen-gc.c (need_remove_object_for_domain): Remove the special
2913         case for the Thread class.
2914
2915         * threads.c: Do clean-up of abort exception/state in
2916         thread_cleanup() instead of Thread.free_internal().  Also clean up
2917         current_appcontext.  The reason we have to do that is because
2918         those references might point into another domain and if that
2919         domain is unloaded before the thread is finalized, they point to
2920         invalid data.
2921
2922 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
2923
2924         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
2925         stub signatures.
2926         
2927         Contributed unter MIT/X11 license.
2928
2929 2009-05-09  Miguel de Icaza  <miguel@novell.com>
2930
2931         * verify.c, metadata-verifier.c: Add support for disabling the
2932         verifier in some builds.
2933
2934         [ Sorry, my previous commit accidentally commited some work in
2935         progress ]
2936
2937 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
2938
2939         * class.c (mono_class_setup_fields): Set class->field.first for
2940         generic instances.
2941
2942 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
2943
2944         * metadata-verify.c: Verify the typespec table.
2945
2946 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
2947
2948         * metadata-verify.c: Verify the module table.
2949
2950 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
2951
2952         * metadata-verify.c: Verify the methodimpl table.
2953
2954 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
2955
2956         * metadata-verify.c: Verify the property table.
2957
2958 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
2959
2960         * debug-helpers.c (mono_method_desc_match): Add support for generic
2961         glob patterns.
2962
2963 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
2964
2965         * metadata-verify.c: Verify the propertymap table.
2966
2967 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
2968
2969         * metadata-verify.c: Verify the event table.
2970
2971         * metadata-verify.c (search_sorted_table): Fix offset
2972         calculation.
2973
2974 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
2975
2976         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
2977
2978 2009-05-01  Mark Probst  <mark.probst@gmail.com>
2979
2980         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
2981         because mono_delegate_free_ftnptr() needs it.
2982
2983 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2984
2985         * metadata-verify.c: Verify the eventmap table.
2986
2987 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2988
2989         * metadata-verify.c: Verify the standalonesig table.
2990
2991 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2992
2993         * metadata-verify.c: Verify the field layout table.
2994
2995 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
2996
2997         * class.c (mono_type_get_name_recurse): Don't crash
2998         for ownerless generic params.
2999
3000         * debug-helpers.c (mono_type_get_desc): Correct the format
3001         for ownerless generic params.
3002
3003 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3004
3005         * metadata-verify.c: Verify the class layout table.
3006
3007 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
3008
3009         * metadata-verify.c: Verify the decl security table.
3010
3011 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3012
3013         * domain.c (mono_domain_set_internal_with_options): Don't do
3014         anything if the old domain is the same as the old one.  Fixes
3015         #499326.
3016
3017 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3018
3019         * appdomain.c: Deregister the reflection_info roots when unloading
3020         a domain.
3021
3022         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
3023         memory allocated by a domain and frees its disappearing links.
3024
3025         * boehm-gc.c, null-gc.c: Empty implementation of
3026         mono_gc_clear_domain().
3027
3028 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3029
3030         * appdomain.c (clear_cached_vtable): Free the static fields memory
3031         block.
3032
3033 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3034
3035         * gc.c: Set the correct domain when invoking finalizers.
3036
3037         * appdomain.c: Set the correct domain when creating threads.
3038
3039 2009-04-30  Mark Probst  <mark.probst@gmail.com>
3040
3041         * sgen-gc.c: Fix skip size for vectors.
3042
3043 2009-05-03  Martin Baulig  <martin@ximian.com>
3044
3045         * mono-debug-debugger.c
3046         (mono_debugger_check_breakpoints): Check class init handlers even
3047         if we don't have any method load handers.
3048
3049 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
3050
3051         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
3052         returning refonly assemblies if refonly is FALSE. Fixes #499013.
3053
3054 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3055
3056         * metadata-verify.c: Verify the field marshal table.
3057
3058 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
3059
3060         * metadata-verify.c: Verify the custom attribute table.
3061
3062 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3063
3064         * metadata-verify.c: Verify the constant table.
3065
3066 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3067
3068         * metadata-verify.c: Verify the memberef table.
3069
3070 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3071
3072         * metadata-verify.c (get_coded_index_token): Remove
3073         dead argument.
3074
3075 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3076
3077         * metadata-verify.c: Verify the interfaceimpl table.
3078
3079 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
3080
3081         * verify.c: Improve error message.
3082
3083         * debug-helpers.c (mono_type_get_desc): Harden the code that
3084         deals with VAR and MVAR.
3085
3086 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
3087
3088         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
3089         part of #498692.
3090
3091 2009-04-23 Tom Hindle <tom_hindle@sil.org>
3092
3093         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
3094         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
3095
3096 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
3097
3098         * security-core-clr.c: Avoid redundant checks for platform code, 
3099         e.g. check for method and for class (very common) and check
3100         for class and outer class (less common)...
3101
3102 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
3103
3104         * reflection.c: Avoid returning random cattrs for synthetic methods.
3105         Fixes #498545.
3106
3107 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3108
3109         * assembly.c: assemblies in the GAC should never be shadow-copied.
3110
3111 2009-04-26  Mark Probst  <mark.probst@gmail.com>
3112
3113         * domain.c, domain-internals.h: Disable
3114         track_resurrection_{objects,handles}_hash in MonoDomain if using
3115         SGen.
3116
3117 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3118
3119         * metadata-verify.c: Verify the param table.
3120
3121 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3122
3123         * metadata-verify.c (verify_typedef_table): Range check FieldList and
3124         MethodList.
3125
3126         * metadata-verify.c (verify_method_table): Proper check the ParamList
3127         field.
3128
3129 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3130
3131         * metadata-verify.c (verify_method_table): Check for runtime
3132         implemented functions such as delegate .ctors. Remove spurious
3133         printf.
3134         
3135 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
3136
3137         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
3138
3139 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3140
3141         Don't allocate MonoGenericInfo for ownerless generic params.
3142         * class-internals.h (MonoGenericParam::info): Move field to ...
3143         (MonoGenericParamFull): ... this.  New struct.
3144         (MonoGenericContainer::type_params): Change type to
3145         MonoGenericParamFull.
3146         (MonoGenericParam, MonoGenericContainer): Update accessors.
3147         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
3148         'info' field for ownerless generic param.
3149         (mono_metadata_load_generic_params): Update to changes.
3150         * reflection.c (mono_reflection_create_generic_class): Likewise.
3151         (reflection_methodbuilder_to_mono_method): Likewise.
3152         (mono_reflection_initialize_generic_parameter): Likewise.
3153
3154 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3155
3156         Don't use MonoGenericParamInfo for ownerless generic params.
3157         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
3158         use ParamInfo class at all.
3159         (mono_class_from_generic_parameter): Use them.
3160         (make_generic_param_class): Fix a couple of instances where 'pinfo
3161         == NULL' wasn't handle.
3162
3163 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3164
3165         * class.c (make_generic_param_class): Carve out of ...
3166         (mono_class_from_generic_parameter): ... here.
3167
3168 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
3169
3170         Simplify mono_class_from_generic_parameter
3171         * class-internals.h (MonoGenericParamInfo::token): New field.
3172         * metadata.c (mono_metadata_load_generic_params): Initialize it
3173         from metadata.
3174         * class.c (mono_class_from_generic_parameter): Use it instead of
3175         searching through metadata.
3176
3177 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3178
3179         * metadata-verify.c: Add verification of the method table.
3180
3181 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3182
3183         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
3184         Delegate::Invoke optimization.
3185
3186 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3187
3188         * appdomain.c (mono_domain_create_appdomain_internal): Free the
3189         string returned by get_shadow_assembly_location_base.
3190
3191         * appdomain.c (get_shadow_assembly_location_base): Add a comment
3192         about caller's ownership.
3193
3194 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
3195
3196         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
3197         reflection memory on domain unload.
3198
3199         * domain.c (mono_domain_free): Don't free refobject_hash, let the
3200         reflection cleanup code do it.
3201
3202         * domain-internals.h: Add mono_reflection_cleanup_domain.
3203
3204         This fixes a memory leak for managed mirrors of reflection objects
3205         on domain unload. 
3206
3207 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3208
3209         * metadata-verify.c: Implement more verification of the field table.
3210
3211 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
3212
3213         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
3214         doesn't try to parse the input assembly, which can be broken.
3215
3216 2009-04-23  Mark Probst  <mark.probst@gmail.com>
3217
3218         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
3219         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
3220         by using the lowest bit in the link to store whether the link is
3221         tracked.  Move the track_resurrection hashes into boehm-gc.c.
3222
3223 2009-04-22  Miguel de Icaza  <miguel@novell.com>
3224
3225         * Makefile.am: Split the console support in platform specific code
3226         and put together a framework for making this easy in the future so
3227         that we can start splitting code instead of having a mess of PLATFORM_WIN32
3228
3229 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3230
3231         * pedump.c: Fix a warning.
3232
3233 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3234
3235         * verify.c (mono_delegate_type_equal): Compare valuetypes using
3236         mono_class_from_mono_type to avoid bad interactions with the dual representation
3237         of the generic type definition.
3238
3239 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
3240
3241         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
3242         get the MonoClass for the call context type as it might be a generic
3243         instance.
3244
3245         Fixes #491483.
3246
3247 2009-04-21  Mark Probst  <mark.probst@gmail.com>
3248
3249         * object-internals.h: The Thread object has no execution_context
3250         member anymore.
3251
3252         * threads.c, threadpool.c, threads-types.h: Accessor functions for
3253         the execution context.
3254
3255         * appdomain.c: Bump corlib version.
3256
3257 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3258
3259         * verify.c (do_newobj): Improve error message.
3260
3261 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3262
3263         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
3264         is nested in the filter block.
3265
3266         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
3267         block is not fully nested.
3268
3269         Fixes #495656.
3270
3271 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3272
3273         * verify.c (verify_type_compatibility_full): Compare MonoClass and
3274         not MonoType to check for equality of valuetypes as the generic type
3275         definition allows for two different encodings: the generic type definition
3276         class or a generic instance over the GTD arguments.
3277
3278         Fixes #496175.
3279
3280 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3281
3282         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
3283
3284         * verify.c (do_initobj): Improve error message.
3285
3286 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
3287
3288         * metadata-verify.c: Enable pe verification as the issue with #496453
3289         is that the authenticode data directory have a different unspecified
3290         format. Ignore it for now.
3291
3292         * pedump.c: Run the metadata verifier together with the IL verifier.
3293
3294         Fixes ##496453.
3295
3296 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3297
3298         * metadata-verify.c: Temporarily disable pe verification due to #496453.
3299
3300 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3301
3302         * class.c (can_access_type): Check visibility against
3303         the element type for pointers and arrays.
3304
3305         Fixes #496150.
3306
3307 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3308
3309         * metadata-verify.c: Fix cli and table verification to use information
3310         from the MonoImage. A lot of duplicated code got killed.
3311
3312 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
3313
3314
3315         This patch starts to integrate the metadata verifier with the runtime code.
3316
3317         This patch causes major regression in functionality for the metadata verifier
3318         as cli and table verification are disabled since they require to be ported to
3319         use MonoImage information.
3320
3321         * image.c (do_mono_image_load): Split the code in this function
3322         into mono_image_load_pe_data and mono_image_load_cli_data.
3323         Add     care_about_pecoff parameter to not load pecoff data.
3324         Call into the metadata verifier for pecoff and cli verification.
3325
3326         * image.c (mono_image_open_raw): New function that doesn't perform
3327         any parsing of the image contents.
3328         
3329         The reason for the 3 new functions is to give pedump better control
3330         into the interaction with the verifier.
3331
3332         * metadata-internals.h: Add new functions from image.c as part of the
3333         internal mono API.
3334
3335         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
3336         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
3337         to make those functions work together with the runtime.
3338
3339         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
3340         true if the image needs to be verified.
3341
3342         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
3343
3344         * pedump.c: Use new metadata verifier API.
3345
3346 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
3347
3348         * object.c (mono_install_vtable_trampoline): Make this receive a
3349         trampoline creation function instead of trampoline, allowing the JIT
3350         to use a different trampoline for each vtable.
3351
3352 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3353
3354         * object.c (mono_raise_exception): Don't reset the thread abort
3355         exception state here.
3356
3357 2009-04-18  Mark Probst  <mark.probst@gmail.com>
3358
3359         * icall-def.h: New icall for getting the thread abort exception
3360         state for a thread.
3361
3362         * object.c, thread.c, object-internals.h: A thread's abort
3363         exception state is now a GC handle.  To get the object it stands
3364         for, we must move it into the current app domain, if it's
3365         different than the one where it originated from.
3366
3367         * appdomain.c: Bump corlib version.
3368
3369         * domain.c, domain-internals.h: New function for setting the
3370         domain and migrate the thread abort exception or not.
3371
3372 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3373
3374         * metadata-verify.c: Add initial verification of the
3375         field table.
3376
3377 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3378
3379         * metadata-verify.c: Add a macro to conditionally enable
3380         dumping of verification information. Add  make_coded_token
3381         and search_sorted_table to enable search sorted tables
3382         by a given coded token.
3383
3384 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3385
3386         * metadata-verify.c: Add array mapping from table index
3387         to description offset. Add get_col_offset and get_col_size
3388         functions.
3389
3390 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3391
3392         * metadata-verify.c: Add remaining table descriptions offsets.
3393         Add remaining coded index descriptions.
3394
3395 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3396
3397         * metadata-verify.c: Fixed constant table description.
3398         Fixed calculation of HasCustomAttribute coded index size.
3399         Fixed calculation of size for many table indexes. 
3400
3401 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3402
3403         * pedump.c (dump_metadata): Dump table offset instead
3404         of useless pointer in memory.
3405
3406 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
3407
3408         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
3409
3410 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3411
3412         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
3413         a missing of for interface types.
3414
3415 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3416
3417         * metadata-verify.c (verify_pe_optional_header): Add comment of why
3418         the code is commented.
3419
3420         * metadata-verify.c (verify_resources_table): Remove spurious printf
3421         and don't fail if there are unmanaged resources. Gmcs generates a useless
3422         one     for all assemblies - I bet it's some MS compatibility junk.
3423
3424 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3425
3426         * metadata-verify.c (verify_typedef_table): Verify the extends field.
3427
3428         * metadata-verify.c (mono_image_verify): Add a is_corlib.
3429
3430         * verify-internals.h: Same.
3431
3432         * pedump.c: Fix for mono_image_verify new signature.
3433
3434 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3435
3436         * metadata-verify.c (verify_typedef_table): Verify for some invalid
3437         flags combinations.
3438
3439 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
3440
3441         * metadata-verify.c (verify_module_table): Ignore the generation field.
3442
3443 2009-04-15  Martin Baulig  <martin@ximian.com>
3444
3445         * debug-mono-symfile.c
3446         (mono_debug_symfile_lookup_location): Don't print a warning for
3447         unknown extended opcodes if they're within 0x40 and 0x7f.
3448
3449 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
3450
3451         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
3452         invoke signatures returning an enum. Fixes #494847.
3453
3454 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3455
3456         * metadata-verify.c: Initial code to verify the typedef table.
3457
3458 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3459
3460         * verify.c (mono_method_verify): Don't fail if an unconditional branch
3461         with non empty stack happens before the beginning of a try block.
3462
3463         Fixes #494812.
3464
3465 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
3466
3467         * metadata-verify.c: Verify typename and typenamespace fields of
3468         the typeref table.
3469
3470 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
3471
3472         * metadata-verify.c: Initial code to verify the typeref table.
3473
3474 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
3475
3476         * verify.c (verify_delegate_compatibility): Fix error message.
3477
3478 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
3479
3480         * security-core-clr.c: Fix typo
3481
3482 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
3483
3484         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
3485         a MonoGHashTable to keep its values alive.
3486         (emit_marshal_boolean): Fix a warning.
3487
3488 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
3489
3490         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
3491         not have any interface configured for IPv4/IPv6.
3492
3493 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
3494
3495         * assembly.c: fix typo in error message.
3496
3497 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
3498
3499         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
3500         allocating the location holding the this argument to prevent
3501         'too many root sets' errors.
3502
3503         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
3504         to mark fields as special static.
3505         (mono_field_static_get_value): Handle special static fields.
3506         (mono_field_static_set_value): Ditto.
3507
3508         * class-internals.h (struct _MonoClassField): Document this.
3509
3510 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
3511
3512         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
3513           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
3514           case.  This will handle when managed code returns null to native code.
3515
3516         Code is contributed under MIT/X11 license.
3517
3518 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
3519
3520         * object.c (build_imt_slots): Changing a free to a g_free to match
3521           the g_malloc0 in add_imt_builder_entry that allocated this memory.
3522
3523         Code is contributed under MIT/X11 license.
3524
3525 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
3526
3527         * marshal.c (emit_marshal_boolean): Adding code to ensure that
3528           the correct TRUE value is passed through the marshaling layer.
3529
3530         Code is contributed under MIT/X11 license.
3531
3532 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
3533
3534         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
3535         correctly. Fixes #492330.
3536         
3537         * marshal.c: Fix the embedding of object pointers into JITted code in
3538         the native-to-managed wrappers by allocating some GC tracked memory, and
3539         embedding the address of that.
3540
3541 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
3542
3543         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
3544         pointers into the vtable.
3545
3546 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
3547
3548         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
3549
3550         * verify.c (verify_ldftn_delegate): Improve error message.
3551
3552 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
3553
3554         * reflection.c (my_mono_class_from_mono_type): Remove.
3555
3556 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
3557
3558         Prepare to reduce memory usage of owner-less generic parameters (1/n)
3559         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
3560         and constraints fields into ...
3561         (MonoGenericParamInfo): ... this.
3562         (mono_generic_param_info, mono_generic_container_get_param_info):
3563         New accessors.
3564         * class.c, debug-helpers.c, icall.c: Update to changes.
3565         * metadata.c, reflection.c, verify.c: Likewise.
3566
3567 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
3568
3569         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
3570
3571         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
3572         
3573         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
3574         booleans with sbytes.
3575
3576 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3577
3578         * class.c (can_access_instantiation): Verify accesibility of element types
3579         for arrays and pointers.
3580
3581         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
3582
3583         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
3584
3585         Fixes #493068.
3586
3587 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
3588
3589         * verify.c (do_invoke_method): Improve error messages.
3590
3591 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
3592
3593         * verify.c:  Fixing the MSVC build.
3594
3595         Code is contributed under MIT/X11 license.
3596
3597 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
3598
3599         * security-core-clr.c: Simplify get_reflection_caller not to call
3600         mono_method_get_last_managed (another stack walk) and adjust the
3601         callers to handle a (should not happen) NULL return value.
3602
3603 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3604
3605         Add accessors to some MonoGenericParam fields
3606         * class-internals.h (mono_generic_param_owner): New accessor.
3607         (mono_generic_param_num): Likewise.
3608         (mono_type_get_generic_param_owner): New helper.
3609         (mono_type_get_generic_param_num): New helper.
3610         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
3611
3612 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3613
3614         * class-internals.h (mono_generic_container_get_param): New wrapper.
3615         * class.c, icall.c, metadata.c, verify.c: Use it.
3616
3617 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
3618
3619         Fix gtest-252.cs
3620         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
3621         the standard case/loop.  In particular, don't complain about
3622         references to generic type definitions.
3623
3624 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
3625
3626         * debug-helpers.c (dis_one): Decode string arguments.
3627
3628 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3629
3630         * pedump.c (dump_verify_info): Dump type name correctly.
3631
3632 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
3633
3634         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
3635         are larger than code size.
3636
3637         This can happen in valid code if the try/catch block is not followed by any instruction
3638         and do a backward branch on the leave instruction.
3639
3640         Fixes #492494.
3641
3642 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
3643
3644         * security-core-clr.c: Fix typo while comparing second method names
3645         in can_avoid_corlib_reflection_delegate_optimization
3646
3647 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
3648
3649         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
3650
3651         Fixes #487738.
3652
3653 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
3654
3655         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
3656         a MVAR using a class context.
3657
3658         Fixes #490335.
3659
3660 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
3661
3662         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
3663
3664         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
3665
3666         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
3667         functions supplied by the JIT for the SGEN GC.
3668
3669         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
3670         
3671 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
3672
3673         monitor.c (mono_monitor_try_enter_internal):
3674         Added calls to profile monitor contentions.
3675         Also duplicated a small piece of code (the "get the monitor" logic)
3676         from the fast path to the slow path, and changed the relevant goto
3677         statements, so that monitor acquisition events can be emitted from the
3678         slow path (this is by Paolo Molaro).
3679
3680 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
3681
3682         * profiler.c, profiler.h, profiler-private.h:
3683         Added support for profiling monitor contentions.
3684
3685 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
3686
3687         * metadata-verify.c: Verify the modules table.
3688
3689 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
3690
3691         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
3692         using the context of the method been verifier and not of the method been called.
3693
3694         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
3695         safely inflate generic types. 
3696
3697 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
3698
3699         * security-core-clr.c: Change the strategy for checking the 
3700         "reflection using delegates optimization" to avoid unneeded 
3701         attributes in multiple class libraries.
3702
3703 2009-04-02  Mark Probst  <mark.probst@gmail.com>
3704
3705         * sgen-gc.c: Remove object element in the disappearing link struct
3706         by storing the object pointer in the link.
3707
3708 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
3709
3710         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
3711
3712 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
3713
3714         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
3715
3716         * verify.c (mono_method_verify): Do proper bounds checking of exception
3717         clause ranges.
3718
3719 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
3720
3721         * loader.c (mono_field_from_token): Don't crash if the field parent could
3722         not be decoded.
3723
3724 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3725
3726         * sgen-gc.c: Execute critical finalizers after ordinary
3727         finalizers.
3728
3729         * class-internals.h, domain.c: Add CriticalFinalizerObject to
3730         mono_defaults.
3731
3732 2009-03-31 Jb Evain <jbevain@novell.com>
3733
3734         * verify.c (do_ldstr): don't check if a string is in the user strings
3735         heap if the current image is dynamic.
3736
3737 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3738
3739         * sgen-gc.c: Wait until the last finalizer has executed when
3740         returning from WaitForPendingFinalizers.
3741
3742 2009-03-31  Martin Baulig  <martin@ximian.com>
3743
3744         * mono-debug-debugger.h (MonoDebuggerEvent): Add
3745         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
3746         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
3747         (mono_debugger_event_create_appdomain): New function.
3748         (mono_debugger_event_unload_appdomain): New function.
3749
3750         * appdomain.c (mono_domain_create_appdomain_internal): Call
3751         mono_debugger_event_create_appdomain().
3752
3753 2009-03-31  Martin Baulig  <martin@ximian.com>
3754
3755         * mono-debug-debugger.c
3756         (mono_debugger_register_class_init_callback): Also register the
3757         class init callback if the class is already initialized to make
3758         things work with shadow copied assemblies.
3759
3760 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
3761
3762         * security-core-clr.c
3763         (mono_security_core_clr_ensure_reflection_access_field): Let 
3764         critical code access the field (just like we do for methods). Use
3765         check_field_access helper.
3766         (mono_security_core_clr_ensure_reflection_access_method): Use 
3767         check_field_access helper.
3768
3769 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3770
3771         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
3772         call the run-finalize function directly.
3773
3774         * gc.c, gc-internal.h: Make run_finalize() non-static.
3775
3776 2009-03-31  Mark Probst  <mark.probst@gmail.com>
3777
3778         * sgen-gc.c: Use a separate struct for disappearing links.
3779
3780 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3781
3782         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
3783         * MaxIOVectorLength enabled, just ignore them.
3784         Fixes bug #349688.
3785
3786 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
3787
3788         * metadata-verify.c: Fix eglib build.
3789
3790 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
3791
3792         * threads-types.h: Fix the win32 build.
3793
3794 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
3795
3796         * class.c: move coreclr inheritance/override checks to 
3797         security-core.clr.c
3798         * security-core.clr.c|h: add code from class.c with additional
3799         documentation. Fix override check when the method is not critical.
3800
3801 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
3802
3803         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
3804         (match_class): Ditto.
3805
3806 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
3807
3808         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
3809
3810         * metadata-verify.c: Implement table layout row size calculation. Verify
3811         the total size of the tables.
3812
3813 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
3814
3815         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
3816
3817 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3818
3819         * appdomain.c:
3820         * console-io.[ch]: added new mono_console_init() to make sure that
3821         file descriptors 0, 1 and 2 are opened.
3822         Bug #489019 fixed.
3823
3824 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
3825
3826         * appdomain.h: Export a new callback type and a new function to
3827         set this callback. This allow a mono host to provide it's own
3828         definition for "platform code".
3829         * metadata-internals.h: Add a core_clr_platform_code flag on 
3830         _MonoImage to (cache and) know if it is representing platform 
3831         code.
3832         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
3833         on platform code images.
3834         * security-core-clr.c|h 
3835         (mono_security_set_core_clr_platform_callback): Allow the host
3836         to provide it's own platform check definition.
3837         (mono_security_core_clr_determine_platform_image): Detect if an 
3838         image is platform code (using the specified callback).
3839         (mono_security_core_clr_is_platform_image): Return cached value 
3840         for platform code.
3841
3842 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
3843
3844         * threads.c (mono_create_thread): New helper function to wrap CreateThread
3845         which has different parameter types for the 'tid' argument in windows and
3846         the io-layer.
3847
3848         * appdomain.c attach.c threads.c: Use the new helper.
3849
3850 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
3851
3852         * metadata-verify.c: Verify valid table bits.
3853
3854 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
3855
3856         * metadata-verify.c (verify_metadata_header): Store size in the size field.
3857
3858         * metadata-verify.c: Add initial table schema verification.
3859
3860 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
3861
3862         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
3863         obtain the refclass argument needed by mono_param_get_objects (). Fixes
3864         #488383.
3865
3866         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
3867
3868         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
3869
3870 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
3871
3872         * security-core-clr.c: Add/update documentation
3873
3874 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
3875
3876         * marshal.c (emit_marshal_object): Generate code to throw an exception
3877         instead of throwing it. Fixes #488670.
3878
3879 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
3880
3881         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
3882         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
3883         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
3884         and add a call to mono_security_core_clr_ensure_delegate_creation
3885         to do the extra checks required by CoreCLR.
3886         * security-core-clr.c|h: Add function to check delegate creation,
3887         both in the binding and accessibility, under CoreCLR.
3888
3889 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
3890
3891         * reflection.c (mono_reflection_create_dynamic_method): when 
3892         coreclr is enabled make sure that every resolved object are
3893         checked (e.g. field and method access).
3894         * security-core-clr.c|h: Add function to check objects resolved
3895         when a dynamic method is created.
3896
3897 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
3898
3899         * metadata-verify.c: Cache directory rva translations.
3900
3901         * metadata-verify.c: Add cli-header and streams verification.
3902
3903 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
3904
3905         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
3906         the wrong offset (8 instead of 6).
3907
3908 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
3909
3910         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
3911         methods, return the native function address itself. Fixes
3912         #487758.
3913
3914 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3915
3916         * console-io.c: some of the values for control characters might not be
3917         present.
3918
3919 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
3920
3921         * exception.c|h: Add helpers to create [Field|Method]AccessException
3922         * icall.c: Add required coreclr check calls for field reflection.
3923         Move the existing (method) check logic into security-core-clr.c
3924         * security-core-clr.c: Add functions to check if the access of a
3925         field or method is allowed when reflecting under coreclr. This is
3926         mostly done using a stack walk to find the "real" caller: i.e. the
3927         code that is calling the reflection
3928
3929 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
3930
3931         * gc-internal.h: Change location of gc_wrapper.h
3932
3933 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
3934
3935         * class.c: Simplification to coreclr checks for overrides that
3936         makes it easier to set breakpoints.
3937
3938 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
3939
3940         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
3941         mono_security_core_clr_method_level): Avoid potential 
3942         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
3943         user/application code) and make it easier to set breakpoints
3944
3945 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3946
3947         * metadata-verify.c: Reject cli header tables that mono don't handle.
3948
3949 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3950
3951         * pedump.c: Fix CLI header dumping.
3952
3953 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
3954
3955         * metadata-verify.c: More CLI header verification.
3956
3957 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
3958
3959         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
3960
3961 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
3962
3963         * metadata-verify.c: Initial verification of the CLI header.
3964
3965 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
3966
3967         * metadata-verify.c (verify_resources_table): Fix verification of zero
3968         sized resource section and id entries count.
3969
3970 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
3971
3972         * icall.c: Handle user types in many Type icalls. Fixes #486303.
3973
3974 2009-03-17  Jb Evain  <jbevain@novell.com>
3975
3976         * profiler.c: call mono_gc_base_init from mono_profiler_load.
3977
3978 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
3979
3980         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
3981         (mono_gc_make_descr_for_array): Ditto.
3982
3983 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
3984
3985         * verify.c (mono_verifier_is_class_full_trust): Add support for
3986         CoreCLR security mode where trusted assemblies are defined as
3987         "platform code".
3988
3989 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
3990
3991         * metadata-verify.c: Add minimal PECOFF resource verification.
3992
3993 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
3994
3995         * metadata-verify.c: Be less restrictive with some coff fields.
3996
3997 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
3998
3999         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
4000         params as boxed values on stack. Fixes #485706.
4001
4002 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4003
4004         * console-io.c: the termios values may vary in different flavors of unix.
4005
4006 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
4007
4008         * console-io.[ch]: return the entire set of control characters when
4009         initializing the terminal.
4010         * appdomain.c: bump corlib version.
4011
4012 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
4013
4014         * mono-perfcounters.c: added support for in-process custom
4015         performance counters.
4016
4017 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4018
4019         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
4020
4021 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4022
4023         * metadata-verify.c: Verify the data pointed by the import table. 
4024
4025 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
4026
4027         * metadata-verify.c (load_data_directories): Store data
4028         directory contents.
4029
4030         * metadata-verify.c: Verify the import table. 
4031
4032 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4033
4034         * metadata-verify.c: Verify data directories.
4035
4036 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
4037
4038         * metadata-verify.c: Check section header flags.
4039
4040 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
4041
4042         * appdomain.c: if the assembly name is a shadow-copied file, return
4043         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
4044         in mono_make_shadow_copy.
4045         * icall.c: if the assembly name is a shadow-copied file, replace it
4046         with the original assembly path.
4047
4048         Bug #484244 fixed. NUnit tests for corlib can be run without
4049         --noshadow now.
4050
4051 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
4052
4053         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
4054         entries when the table is reallocated.
4055
4056         * icall.c: Allocate the memory used by the mono_ptr_array macros using
4057         mono_gc_alloc_fixed () since it contains GC refs.
4058
4059 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
4060
4061         * reflection.c (ensure_complete_type): New helper function to call
4062         type resolve handlers for unfinished dynamic types.
4063         (resolve_object): Call it for MonoClassFields. Fixes #483852.
4064
4065 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
4066
4067         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
4068         #483247.
4069
4070 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
4071
4072         * appdomain.c (get_shadow_assembly_location): Fix memleak.
4073
4074 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
4075
4076         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
4077         between GCHandles of type WeakTrackResurrection and the objects they
4078         point to.
4079
4080         * gc.c: Partly implement the sematics of GCHandles of type 
4081         WeakTrackResurrection: these handles should only be cleared after the
4082         finalizer of the object they are pointing to has ran.
4083
4084 2009-03-06  Mark Probst  <mark.probst@gmail.com>
4085
4086         * icall.c: Partially revert r126631 because using the jump
4087         trampolines for generic shared methods makes it superfluous.
4088
4089 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
4090
4091         * threads.c (handle_store): Create the 'threads' hash table with the proper
4092         MONO_HASH_VALUE_GC type.
4093
4094 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
4095
4096         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
4097         FIRST_GC_TRACKED.
4098
4099         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
4100         and LAST_GC_TRACKED as a GC root.
4101
4102         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
4103
4104         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
4105         the static data even if it consists of 1 reference.
4106
4107         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
4108         if there is a GC descriptor.
4109
4110         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
4111         instead of through the GC since they contain no object references.
4112
4113 2009-03-05  Mark Probst  <mark.probst@gmail.com>
4114
4115         * generic-sharing.c (instantiate_other_info): Always return a jump
4116         trampoline for method code.
4117
4118 2009-03-05  Marek Habersack  <mhabersack@novell.com>
4119
4120         * culture-info-tables.h: generated to include the en-tt culture.
4121
4122 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4123
4124         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
4125         capture the thread context.
4126
4127         * object.c (mono_async_result_new): Cache the invoke wrappers to
4128         ExecutionContext::Capture.
4129
4130 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
4131
4132         * marshal.h: Add a prototype for what mono_compile_method returns
4133         for invoke wrappers.
4134
4135         * gc.c: Use the new prototype declaration.
4136
4137 2009-03-04  Geoff Norton  <gnorton@novell.com>
4138
4139         * boehm-gc.c: Add some MONO_LOG tracing for the GC
4140         * gc-internal.h:
4141         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
4142
4143 2009-03-04  Martin Baulig  <martin@ximian.com>
4144
4145         * mono-debug.h
4146         (mono_debugger_runtime_invoke): Removed.
4147
4148         * mono-debug-debugger.c
4149         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
4150
4151 2009-03-02  Martin Baulig  <martin@ximian.com>
4152
4153         * mono-debug.h
4154         (mono_debugger_unhandled_exception): Removed.
4155         (mono_debugger_handle_exception): Removed.
4156         (mono_debugger_throw_exception): Removed.
4157
4158         * mono-debug.c
4159         (mono_debug_debugger_version): Bump to 5.
4160
4161         * mono-debug-debugger.c: Moved the exception handling code to
4162         ../mini/debug-mini.c
4163
4164 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4165
4166         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
4167         finalize_objects_hash.
4168
4169         * gc.c: Use the separate lock to access the finalize_objects_hash field.
4170         
4171         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
4172         field.
4173
4174         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
4175         cache.
4176
4177         * image.c (mono_image_close): Free it.
4178         
4179         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
4180         allowing a creation of a wrapper which invokes its method using a CALLVIRT
4181         on the this argument.
4182
4183         * gc.c (run_finalize): Optimize the calling of the finalizers.
4184
4185 2009-03-03  Martin Baulig  <martin@ximian.com>
4186
4187         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
4188         of the `MonoGenericInst' changes.
4189
4190 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
4191
4192         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
4193         mono_array_class_get_cached to reduce locking contention. Extract
4194         a domain var.
4195
4196         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
4197         intermediary managed arrays. Use caching version of mono_array_new
4198         to allocate the result array.
4199
4200         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
4201
4202         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
4203
4204         * locales.c (create_names_array_idx):  Use mono_array_new_cached
4205         to reduce locking contention.
4206
4207 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
4208                 
4209         * object.c (mono_method_add_generic_virtual_invocation): Put back the
4210         thunk builder code for the non-interface case.
4211
4212 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
4213
4214         * object.c (get_generic_virtual_entries): New helper function to collect
4215         the virtual generic method instances which need to be added to an IMT
4216         thunk.
4217         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
4218         Instead of creating a new IMT thunk, reset the vtable slot to the
4219         trampoline, the thunk will be created the next time the trampoline is called.
4220         (build_imt_slots): Add support for virtual generic methods in interfaces by
4221         adding to the IMT thunk all the methods registered using 
4222         mono_method_add_generic_virtual_invocation ().
4223
4224         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
4225         (struct _MonoIMTCheckItem): Ditto.
4226
4227         * object.c (mono_method_add_generic_virtual_invocation): Take a
4228         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
4229         the IMT thunk to include all items.
4230         
4231         * object.c (mono_class_create_runtime_vtable): Add a missing
4232         mono_loader_unlock ().
4233
4234 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4235
4236         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4237
4238         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
4239
4240 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4241
4242         * object-internals.h: Rename _MonoReflectionEvent to
4243         MonoReflectionMonoEvent so it reflects the right managed type.
4244         Add a MonoReflectionEvent that correctly represents System.EventInfo.
4245
4246         * icall.c:
4247         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
4248         type.
4249
4250 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
4251
4252         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
4253         intermediary managed arrays. Use caching version of mono_array_new
4254         to allocate the result array.
4255
4256 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4257
4258         * reflection.c: Use cached version of mono_array_new alongside
4259         the mono_reflection_get_custom_attrs_by_type call path.
4260
4261 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4262
4263         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
4264         intermediary managed arrays. Use caching version of mono_array_new
4265         to allocate the result array.
4266
4267         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
4268
4269 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
4270
4271         * icall.c: Add small implementation of a growable stack bound array.
4272
4273         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
4274
4275         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
4276         intermediary managed arrays. Use caching version of mono_array_new
4277         to allocate the result array.
4278
4279 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
4280
4281         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
4282         helps Enum::CompareTo to be implemented without reboxing all enums
4283         to their underlying type.
4284 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
4285
4286         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
4287         since it acquires a global lock leading to scalability problems.
4288
4289         * profiler.c: Make the stat profiler work with multiple appdomains, this
4290         currently only works when no appdomains are unloaded.
4291
4292 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
4293
4294         * appdomain.c: make the check to avoid copying when the assembly is
4295         already shadow copied actually work.
4296
4297 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
4298
4299         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4300
4301         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
4302         changes to the managed side.
4303
4304 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
4305
4306         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
4307         classes + a separate lock for it, as it is used frequently at runtime, not
4308         just during metadata loading/JIT compilation.
4309
4310         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
4311         for szarrays.
4312         
4313         * object-internals.h (mono_class_from_name_cached): New macro to cache
4314         the results of the lookup locally without having to declare a static
4315         variable to hold it.
4316         (mono_class_get_field_from_name_cached): Ditto.
4317         (mono_array_class_get_cached): Ditto.
4318
4319         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
4320         the new macros.
4321         
4322         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
4323         slower search in metadata.
4324
4325         * pedump.c: Fix a warning.
4326
4327 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
4328
4329         * reflection.c (encode_locals): Add checks for user types.
4330         (method_encode_clauses): Ditto.
4331         (method_encode_code): Ditto.
4332         (mono_image_create_token): Ditto.
4333
4334         * object-internals.h: Change the type of more fields from MonoReflectionType*
4335         to MonoObject*.
4336
4337 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
4338
4339         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
4340         the a thread does not suspend within 100ms.
4341
4342         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
4343         in addition to StopRequested as well.
4344
4345         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
4346
4347         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
4348         search the method_hash before inserting a new entry, to avoid crashes when
4349         the same method is inserted multiple times, causing the old 
4350         MonoDebugMethodInfo structure to be freed by the value dtor function.
4351
4352 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
4353
4354         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
4355         SO_EXLUSIVEADDRUSE where available.
4356
4357 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
4358
4359         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
4360         runtime invoke wrappers, this time it is string ctor wrappers, which
4361         pass a dummy string as 'this' instead of their obj argument. Fixes
4362         #478473.
4363
4364 2009-02-21  Jb Evain  <jbevain@novell.com>
4365
4366         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
4367         only get create_culture once.
4368
4369 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
4370
4371         * reflection.c (mono_reflection_setup_internal_class): Move the user type
4372         check before the locking.
4373         
4374         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
4375         (mono_reflection_create_runtime_class): Ditto.
4376         (mono_reflection_sighelper_get_signature_local): Ditto.
4377         (mono_reflection_sighelper_get_signature_field): Ditto.
4378
4379         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
4380         is a System.MonoType object or similar.
4381         (monotype_cast): New helper function to cast a MonoObject to a 
4382         MonoReflectionType object.
4383
4384         * object-internals.h: Change MonoReflectionType* members in structures to
4385         MonoObject* members to force the usage of the monotype_cast () function.
4386
4387         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
4388         structures/arrays. This causes us to assert instead of crashing when 
4389         instances of user defined subclasses of System.Type are encountered.
4390
4391 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
4392
4393         * cil-coff.h:
4394         * icall-def.h:
4395         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
4396         win32 resource loaded from a PE file.
4397
4398         * image.c: fix mono_image_lookup_resource.
4399
4400 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
4401
4402         * icall-def.h:
4403         * threads-types.h:
4404         * threads.c: added internal call for WaitHandle.SignalAndWait.
4405
4406 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
4407
4408         * cominterop.c : Adding cominterop_type_from_handle and 
4409           registering it as an icall.  Replacing all references
4410           to type_from_handle.
4411
4412         Code is contributed under MIT/X11 license.
4413
4414 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4415
4416         * Makefile.am: Add lock-tracer.h and lock-trace.c.
4417
4418         * appdomain.c: Call the tracer init function.
4419
4420         * domain-internals.h: Enable the tracer for the domain locks.
4421
4422         * image.c: Enable the tracer for image locks.
4423
4424         * loader.c: Enable the trace for the loader lock.
4425
4426         * lock-tracer.h:
4427         * lock-tracer.c: Initial implementation of the lock trace utility.
4428         The tracer requires a compile time define to be enabled and a env var
4429         to be enabled at runtime.
4430
4431 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4432
4433         * domain.c (mono_domain_code_foreach): Improve documentation.
4434
4435 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
4436
4437         * appdomain.c:
4438         * generic-sharing.c:
4439         * object.c:
4440         * reflection.c:  Adjust locking order to the new semantics where the loader lock
4441         comes first.
4442
4443 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
4444
4445         * domain.c: Add mono_domain_code_* functions that perform locking
4446         around the domain codeman.
4447
4448         * domain-internals.h: Export those functions.
4449
4450         * object.c: Use new functions instead of acquiring the domain lock.
4451
4452 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
4453
4454         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
4455         delegate. Fixes #477396.
4456
4457 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
4458
4459         * reflection.c (create_custom_attr): Get rid of alloca.
4460
4461 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
4462
4463         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
4464           Adding exception handling for all CCW calls.
4465
4466         Code is contributed under MIT/X11 license.
4467
4468 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
4469
4470         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
4471
4472         * marshal.c (emit_marshal_boolean): Add null checks to the new 
4473         native->managed marshalling code. Fixes #476247.
4474
4475 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
4476
4477         * class.c (mono_class_get_vtable_entry): Move the addition of
4478         static rgctx invoke wrappers for vtable methods here, this simplifies
4479         a lot of code and causes fewer rgctx wrappers to be created.
4480
4481         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
4482         name of the statistics to begin with an uppercase.
4483
4484 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
4485
4486         * reflection.c: Revert previous change as it breaks the build.
4487         
4488 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
4489
4490         * verify.c: Properly handle SZARRAY element type.
4491
4492         Fixes #474271.
4493
4494 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
4495
4496         * reflection.c (mono_image_create_method_token): Correctly encode
4497         MethodDef MemberRefParent token.
4498
4499         Fixes #472845.
4500
4501 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
4502
4503         * image.c (mono_image_close): Delete the critical section before
4504         freeing the memory holding it.
4505
4506 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4507
4508         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
4509         Fixes #476257.
4510
4511 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4512
4513         * pedump.c (main): Call mono_marshal_init so pedump
4514         doesn't crash.
4515
4516 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4517
4518         * loader.c (method_from_memberref): Properly fix #474271 and
4519         don't break the runtime bad.
4520
4521 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
4522
4523         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
4524         (mono_domain_alloc0): Ditto.
4525
4526 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4527
4528         * loader.c (method_from_memberref): Don't abort if the array
4529         method is not found. A regular loader failure is more informative
4530         and correct.
4531
4532         Fixes #474271.
4533
4534 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
4535
4536         *loader.c: Guard MonoImage::method_cache/methodref_cache
4537         using the image lock instead of the loader lock.
4538
4539         * metadata.h: Add comments about which fields are protected by
4540         the image lock.
4541
4542 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
4543
4544         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
4545
4546         * generic-sharing.c (mono_method_construct_object_context): Remove the
4547         wrapper_type == NONE assert, it is not needed.
4548
4549 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
4550
4551         * reflection.c (clear_cached_object): New helper function.
4552         (mono_method_clear_object): New function to clear the cached reflection
4553         objects for a dynamic method.
4554
4555         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
4556         Partly fixes # 463323.
4557         
4558 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
4559
4560         * class.c:
4561         * loader.c:
4562         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
4563
4564 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
4565
4566         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
4567         take the image lock instead of the loader lock.
4568
4569         * metadata-internals.h: Export new functions.
4570
4571 2009-02-12  Miguel de Icaza  <miguel@novell.com>
4572
4573         * domain.c (app_config_parse): Remove another use of stat that is
4574         not necessary as g_file_get_contents already does the presence
4575         check. 
4576
4577 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
4578
4579         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
4580
4581         * marshal.c: Move the bstr handling code to cominterop.c.
4582
4583         * marshal.c: Remove some COM interop code missed previously.
4584
4585 2009-02-12  Miguel de Icaza  <miguel@novell.com>
4586
4587         More Paolo patches from the Wii port:
4588         
4589         * security.c: Remove ves_icall_System_Environment_get_UserName
4590         from here.
4591
4592         * icall.c: And put ves_icall_System_Environment_get_UserName
4593         here. 
4594
4595         * appdomain.c (mono_set_private_bin_path_from_config): Remove
4596         redundant call to stat that was only used to test for the file
4597         existence.   Patch from Paolo.
4598
4599         * gc.c (run_finalize): If COM is disabled, do not link in
4600         mono_marshal_free_ccw.
4601
4602         * generic-sharing.c: Use alloca.h here as well.
4603
4604 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
4605
4606         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
4607
4608 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
4609
4610         * cominterop.c cominterop.h: New files.
4611
4612         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
4613         function/typedefs which are needed by cominterop.c global.
4614
4615 2009-02-12  Mark Probst  <mark.probst@gmail.com>
4616
4617         * generic-sharing.c: Don't take the loader lock to guard image
4618         mempool allocs.
4619
4620 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4621
4622         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
4623         called without the loader lock which is required to guard MonoImage:tokens.
4624
4625 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4626
4627         * class.c:
4628         * metadata.c:
4629         * method-builder.c:
4630         * marshal.c:
4631         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
4632
4633 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4634
4635         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
4636         Rework the code to use regular mono_image_alloc/0.
4637
4638         * loader.c: Rework the code to use regular mono_image_alloc/0.
4639
4640         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
4641
4642 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
4643
4644         * object-internals.h : Fixing a typo in the 
4645           MonoReflectionComVisibleAttribute struct.
4646
4647         * marshal.c (cominterop_com_visible): Check the implemented 
4648           interfaces for ComImport.
4649
4650         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
4651           assume that bools should be treated as VARIANTBOOLs.
4652
4653         * marshal.c (emit_marshal_boolean): Adding cases for 
4654           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
4655
4656         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
4657           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
4658
4659         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
4660           should be treated as VARIANTBOOLs.    
4661
4662         Code is contributed under MIT/X11 license.
4663
4664 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4665
4666         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
4667         allocation with the image lock.
4668
4669 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4670
4671         This patch is the last of a series to remove explicit reference of MonoImage::mempool
4672         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
4673
4674         * object.c: Add mono_string_to_utf8_image.
4675
4676         * object-internals.h: Export mono_string_to_utf8_image.
4677
4678         * reflection.c: Rework all explicit references to the the image mempool to go thought
4679         the mono_image_alloc set of functions.
4680
4681 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4682
4683         This patch is the third of a series to remove explicit reference of MonoImage::mempool
4684         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
4685         and generics-sharing.c.
4686
4687         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
4688         as first argument. Note that this function remains broken as it doesn't perform locking around the
4689         mempool allocation.
4690
4691         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
4692
4693         * image.c: Add g_slist_append_image.
4694
4695         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
4696         the supplied image for allocation. Move code into mono_metadata_field_info_full.
4697
4698         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
4699         Fix all related code to do the same.
4700
4701         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
4702
4703         * metadata-internals.h: Fix the signatures.
4704
4705 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
4706
4707         This patch is the second of a series to remove explicit reference of MonoImage::mempool
4708         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
4709         and similar to work using MonoImage.
4710
4711         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
4712         MonoMemPool.
4713
4714         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
4715
4716         * class.c (mono_metadata_signature_deep_dup): Same.
4717
4718         * class.c (inflate_generic_type): Same.
4719
4720         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
4721
4722         * metadata.c (mono_metadata_signature_dup_full): Same.
4723
4724         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
4725         mono_metadata_signature_dup_full.
4726
4727         * metadata.c (mono_metadata_type_dup): Same.
4728
4729         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
4730
4731         * reflection.c: Same.
4732
4733         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
4734
4735         * metadata-internals.h: Fix the signatures.
4736
4737         * class-internals.h: Same.
4738
4739 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
4740
4741         This patch is the first of a series to remove explicit reference of MonoImage::mempool
4742         and use mono_image_alloc set of functions instead. 
4743
4744         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
4745         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
4746         of a MonoMemPool.
4747
4748         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
4749
4750         * class.c (g_list_prepend_mempool): Removed.
4751
4752         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
4753
4754         * image.c: Add g_list_prepend_image.
4755
4756         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
4757
4758         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
4759
4760
4761 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
4762
4763         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
4764         mono_image_unlock.
4765
4766         * image.c (mono_image_init): Init the lock field.
4767  
4768         * image.c (mono_image_init): Cleanup the lock field.
4769
4770         * image.c: Add mono_image_(un)lock functions.
4771
4772 2009-02-11  Mark Probst  <mark.probst@gmail.com>
4773
4774         * class.c, class-internals.h: mono_method_get_context_general()
4775         combines the functionality of mono_method_get_context() and
4776         mini_method_get_context().
4777
4778         * generic-sharing.c, domain-internals.h:
4779         mono_method_construct_object_context() and
4780         mono_domain_lookup_shared_generic() moved from mini.
4781
4782         * icall.c (ves_icall_InternalInvoke): Handle the case where the
4783         method doesn't have the correct instantiation because it's shared
4784         generic code.  Fixes #473999.
4785
4786 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
4787
4788         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
4789
4790         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
4791         
4792 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
4793
4794         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
4795
4796         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
4797
4798         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
4799         and recheck the cache for dups after it.
4800
4801         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
4802
4803         Fixes one of the deadlocks found in #473150.
4804
4805 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
4806
4807         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
4808           For Win32, add additional break conditions for accept.
4809
4810         Code is contributed under MIT/X11 license.
4811
4812 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
4813
4814         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
4815         lazily initialize the native wrapper cache.
4816         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
4817         cache, since they are different from the normal wrappers.
4818
4819         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
4820
4821         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
4822         AOT compiled native wrappers.
4823
4824 2009-02-09  Geoff Norton  <gnorton@novell.com>
4825
4826         * appdomain.h:
4827         * security-core-clr.c: Allow enabling core-clr from the embedding
4828         API.
4829
4830 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
4831
4832         * socket-io.c: when requesting all the local ips, if there are no
4833         interfaces up and running, MS returns 127.0.0.1.
4834
4835 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
4836
4837         * mono-perfcounters-def.h: processor time is an inverse time.
4838         Fixes bug #468625.
4839
4840 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
4841
4842         * socket-io.c: an empty host name returns the list of local IPs.
4843         Fixes bug #386637 part 1/2.
4844
4845 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
4846
4847         * verify.c (mono_class_interface_implements_interface): Call
4848         mono_class_setup_interfaces ().
4849         (merge_stacks): Ditto.
4850
4851 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
4852
4853         * class.c (mono_class_setup_interfaces): New function to lazily initalize
4854         klass->interfaces.
4855         (mono_generic_class_get_class): Don't initalize klass->interfaces.
4856         (mono_generic_class_get_class): Ditto.
4857
4858 2009-02-06  U-QUACK\miguel  <miguel@quack>
4859
4860         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
4861         they live in security.c
4862
4863         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
4864         another bit from Paolo's code.
4865
4866 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
4867
4868         * object.c (build_imt_slots): Add a small optimization to avoid inflating
4869         methods which will be discarded by add_imt_builder_entry ().
4870
4871         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
4872         need to be boxed.
4873
4874         * loader.c: Add a statistics for the size of the memberref signature cache.
4875         
4876         * loader.c (find_cached_memberref_sig): New helper function.
4877         (cache_memberref_sig): Ditto.
4878
4879         * loader.c: Cache the result of parsing memberref signatures, since otherwise
4880         they will be parsed again for every generic instantiation, leading to unbounded
4881         memory growth.
4882
4883 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4884
4885         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
4886         parameters of generic methods.
4887
4888         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
4889         after the original method is copied to the inflated method.
4890         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
4891
4892         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
4893         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
4894
4895         * class.c metadata.c: Update after the changes above.
4896
4897 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
4898
4899         * metadata-verify.c: Simplified error handling and added
4900         section table validation.
4901
4902 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4903
4904         * class-internals.h (MonoClassExt): New structure containing rarely used
4905         fields of MonoClass.
4906         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
4907         through a new 'ext' field.
4908
4909         * class.c (mono_class_alloc_ext): New helper function to allocate 
4910         class->ext.
4911
4912         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
4913
4914 2009-02-05  Mark Probst  <mark.probst@gmail.com>
4915
4916         * object.c (mono_object_get_virtual_method): Properly inflate
4917         generic methods.  Fixes #472692.
4918
4919 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
4920
4921         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
4922         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
4923         for the parent type, the created type must be ready to be used on a generic
4924         instantiation.
4925         We fill this_arg/byval_arg if the parent is a generic instance to make sure
4926         we won't have duplicated entries in generic_inst_cache.
4927
4928         Fixes #469553.
4929
4930 2009-02-05  Miguel De Icaza  <miguel@novell.com>
4931
4932         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
4933         replace with plain BSD per the comments on the bug MONO77637.
4934
4935 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
4936
4937         * class.c (mono_class_get_generic_class): New accessor function.
4938         (mono_class_get_generic_container): Ditto.
4939
4940         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
4941         fields, similar to the ones in MonoMethod.
4942
4943         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
4944         (mono_class_create_from_typedef): Set klass->is_generic if needed.
4945
4946         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
4947         
4948         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
4949         the same information as element_class->byval_arg.
4950
4951         * class.c reflection.c: Remove references to class->byval_arg.
4952
4953         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
4954         klass->enum_basetype directly.
4955
4956         * verify.c metadata.c object.c icall.c reflection.c: Use 
4957         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
4958         directly.
4959
4960 2009-02-04  Miguel de Icaza  <miguel@novell.com>
4961
4962         * icall-def.h: Remove internal calls for sockets when
4963         DISABLE_SOCKET is defined, file system writing features when the
4964         OS only support reading and not writing data and Policy support if
4965         the Policy is disabled.
4966         
4967         * image.c (do_mono_image_open): Apply Paolo's patches for using
4968         mono_file_map_ APIs here.
4969
4970         * assembly.c: Add support for platforms to avoid prefix
4971         auto-detection. 
4972
4973 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
4974
4975         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
4976         warning.
4977
4978         * class.c (mono_class_inflate_generic_class): New helper function.
4979
4980         * class.c: Use mono_class_inflate_generic_class in a few places. Add
4981         statistics for inflated methods/classes.
4982
4983         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
4984
4985         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
4986         the call is made from Delegate.CreateDelegate () for the invoke method of
4987         a delegate.
4988
4989         * loader.c: Add a statistics for the memory occupied by inflated signatures.
4990
4991         * metadata.c (mono_metadata_signature_size): New helper function.
4992
4993         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
4994         generic instances.
4995
4996         * metadata.c (inflated_method_in_image): Avoid calling 
4997         mono_method_signature () if the method does not already have a signature.
4998
4999 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5000
5001         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
5002         valuetype is compatible with target type, check by inheritance as a
5003         VT is not really compatible with System.ValueType, for example.
5004
5005         * verify.c (do_invoke_method): Improve error message.
5006
5007         * verify.c (do_box_value): If boxing a nullable, use the type argument
5008         on stack instead.
5009
5010         * verify.c (do_newobj): Improve error message.  
5011
5012         Fixes #469549.
5013
5014 2009-02-03  Miguel de Icaza  <miguel@novell.com>
5015
5016         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
5017
5018 2009-02-03  Mark Probst  <mark.probst@gmail.com>
5019
5020         * generic-sharing.c: Don't hold domain lock when calling
5021         instantiate_other_info().  Fixes #471958.
5022
5023         * domain-internals.h, loader.c: Describe locking policy of domain
5024         lock vs loader lock.
5025
5026 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5027
5028         * verify.c (mono_delegate_signature_equal): Make it possible to check
5029         first-arg-bound delegates to static method.
5030
5031         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
5032         static methods with the first arg bound.
5033
5034         Fixes #469529.
5035
5036 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5037
5038         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
5039         errors.
5040
5041         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
5042         under strict mode. Any type, when boxed can be seen as a reference type.
5043
5044         Fixes #469528.
5045
5046 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
5047
5048         * object.h: The lower bound of an array is a signed integer value.
5049         Introduce mono_array_lower_bound_t typedef. It should be used instead of
5050         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
5051
5052         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
5053         calculate the upper bound.
5054         
5055         Fixes #471252.
5056
5057 2009-02-02  Miguel de Icaza  <miguel@novell.com>
5058
5059         From Paolo's work, refactored, cleared up:
5060         
5061         * threadpool.c, icall.c: ifdef code that requires a working socket
5062         stack.
5063
5064         * metadata.c (mono_metadata_field_info): Do not attempt to return
5065         a value from a function declared as void.
5066
5067         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
5068         from the console stack.
5069
5070         * assembly.c: use strrchr instead of rindex.
5071
5072         * class.c, object.c, marshal.c, icall.c, reflection.c: include
5073         alloca.h on systems that have it.
5074
5075         * environment.c: Avoid code that uses stuff from
5076         HAVE_SYS_UTSNAME_H
5077         
5078         * appdomain.c: Include sys/time.h.
5079
5080         * console-io.c: include sys/ioctl.h if it is available.
5081
5082 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
5083
5084         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
5085
5086         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
5087         the method builder.
5088
5089         * marshal.c: Set mb->skip_visibility instead of setting it on the method
5090         after it was created and cached, as the later is not thread safe.
5091         
5092 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5093
5094         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
5095         called while the debugging module is not initialized. Fixes #471669.
5096
5097 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
5098
5099         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
5100
5101         Fixes #471255.
5102
5103 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5104
5105         * generic-sharing.c (lookup_or_register_other_info): Make sure the
5106         loader lock is not taken while the templates lock is held.  Fixes
5107         #471089.
5108
5109 2009-02-02  Mark Probst  <mark.probst@gmail.com>
5110
5111         * metadata.c (type_in_image): Added a check to fix a monodis
5112         crash.
5113
5114 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
5115
5116         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
5117         nullable arguments.
5118
5119         * object.c (mono_runtime_invoke_array): Ditto.
5120         
5121         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
5122         freeing wrappers of dynamic methods.
5123
5124         * loader.c (mono_free_method): Call it. Fixes #463323.
5125         
5126         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
5127         methods taking vtype/byref arguments, to fix yet another bug caused by
5128         the sharing of runtime invoke wrappers. Partly fixes #471259.
5129
5130 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
5131
5132         * debug-mono-symfile.c (check_line): Return NULL instead of returning
5133         <first file in file table>:1 when the IL offset does not have an associated
5134         line number.
5135
5136 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
5137
5138         * mono-debug.c (mono_debug_lookup_locals): New function to return local
5139         variable info for a method.
5140
5141         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
5142         
5143 2009-01-30  Jb Evain  <jbevain@novell.com>
5144
5145         * pedump.c: reuse code from monodis to make sure pedump honors
5146         MONO_PATH, which is needed to verify net_2_1 assemblies.
5147
5148 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
5149
5150         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
5151         there is no line number info.
5152
5153 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
5154
5155         Avoid some MonoType allocations
5156         * reflection.c (mono_reflection_initialize_generic_parameter):
5157         Reuse MonoType from param->pklass rather than allocating one.
5158         (mono_dynamic_image_free): Update to changes.
5159
5160 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5161
5162         Rearrange some code to improve consistency
5163         * reflection.c (mono_reflection_setup_generic_class): Move body ...
5164         (mono_reflection_initialize_generic_parameter): ... here.
5165
5166 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
5167
5168         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
5169         with type constraints as an experiment.
5170
5171         * boehm-gc.c (on_gc_notification): Update mono_stats.
5172
5173 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
5174
5175         Avoid some allocations
5176         * class-internals.h (_MonoGenericInst::type_argv): Convert from
5177         pointer to tail array to avoid extra allocation.
5178         * metadata.c (free_generic_inst): Update to changes.
5179         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
5180         on-stack struct.
5181
5182 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
5183
5184         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
5185         return TRUE if the two type objects are the same.
5186
5187 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5188
5189         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
5190         (mono_class_native_size): Use klass->marshal_info->min_align instead of
5191         klass->min_align, since klass->min_align contains the managed alignment,
5192         while the native alignment can be different, like for longs on x86.
5193         Fixes #469135.
5194
5195         * class-internals.h (MonoMarshalType): Add a min_align field.
5196
5197 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
5198
5199         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
5200         the 1.0 format.
5201
5202 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
5203
5204         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
5205         some comments about the usage of the used_regs field.
5206
5207         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
5208         Fixes #469217.
5209
5210 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
5211
5212         * appdomain.c: return NULL instead of throwing FileNotFoundException
5213         when LoadAssembly() fails.
5214
5215 2009-01-23  Mark Probst  <mark.probst@gmail.com>
5216
5217         * metadata.c (mono_metadata_generic_param_equal): Only compare the
5218         image if the owner is NULL.  Fixes the AOT failures.
5219
5220 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
5221
5222         * metadata.c (mono_metadata_load_generic_params): Initialize the 
5223         MonoGenericParam structure using memset so the image field is initialized
5224         as well.
5225
5226 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5227
5228         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
5229         a plain store.
5230
5231 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
5232
5233         * class.c (mono_class_setup_vtable_general): In the generic instance
5234         optimization, set method->slot for abstract virtual methods. Fixes part of
5235         #467834.
5236
5237 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
5238
5239         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
5240         which signals that the unloading has started but all appdomain services must
5241         remain operational.
5242
5243         * appdomain.c (mono_domain_unload): The initial state for unloading now
5244         is unloading_start and we switch to unloading after the managed call to
5245         AppDomain::DomainUnload has finished.
5246
5247         The new unloading state has to be created because managed code in the
5248         DomainUnload event can depend on things like the threadpool still working.
5249         The domain must remain fully functional while the event executes.
5250
5251         This shown as an issue due to Process::WaitForExit, which waits for
5252         async reads of stdout and stderr to complete. Since those are processed
5253         in the threadpool the code deadlocks because the DomainUnload callback 
5254         waits for the async read finished event, which should have been set by a
5255         threadpool job but has been discarded due to the domain been in unload
5256         state.
5257
5258 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5259
5260         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
5261         image must match.
5262
5263 2009-01-21  Mark Probst  <mark.probst@gmail.com>
5264
5265         * reflection.c (resolve_object): For fields, inflate the class and
5266         then get the field in the inflated class.
5267
5268 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5269
5270         * object-internals.h (struct _MonoException): Added a comment
5271         explaining the new use of trace_ips.
5272
5273 2009-01-20  Mark Probst  <mark.probst@gmail.com>
5274
5275         * generic-sharing.c (inflate_other_data): Inflate array methods
5276         correctly.
5277
5278         * loader.c, class-internals.h: Rename search_in_array_class() to
5279         mono_method_search_in_array_class() and make it non-static.
5280
5281 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5282
5283         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
5284         Hopefully fixes #458168.
5285
5286 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5287
5288         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
5289         as it is performed elsewhere.
5290
5291         Code is contributed under MIT/X11 license
5292
5293 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
5294
5295         * mono-perfcounters-def.h: Add counters for asp.net requests total and
5296         requests queued.
5297         * object.c (mono_raise_exception): Increment the exceptions total
5298         counter when an exception is thrown.
5299         * class-internals.h: Add a location for storing the total number of
5300         asp.net requests served.
5301         * mono-perfcounters.c: Implement update support for asp.net counters
5302         from the class libraries. Implement read support for asp.net counters
5303         and exceptions total counter.
5304
5305 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
5306
5307         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
5308         accessing klass->methods. Fixes #467385.
5309
5310 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5311
5312         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
5313         for byval arguments without an [Out] attribute. Fixes #467212.
5314
5315         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
5316         Fix compilation under android.
5317         
5318         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
5319         processed, scan them directly after they are copied, to achieve better locality
5320         and cache usage.
5321
5322         * socket-io.c: Applied patch from Koushik Dutta
5323         (koush@koushikdutta.com). Disable IPV6 when running under android.
5324
5325 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
5326
5327         * icall.c (ves_icall_InternalExecute): Add write barriers.
5328
5329         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
5330         the GC code.
5331
5332         * sgen-gc.c: Implement write barriers in IL code.
5333
5334 2009-01-17  Geoff Norton  <gnorton@novell.com>
5335
5336         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
5337
5338 2009-01-17  Geoff Norton  <gnorton@novell.com>
5339
5340         * image.c: When unloading the image->references table, there can be gaps
5341         in it.  Ensure that we iterate every entry to avoid leaking assembly references
5342         when unloading an appdomain.
5343
5344 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
5345
5346         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
5347         speed up ptr-in-nursery checks.
5348
5349         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
5350         threads_lock () to prevent deadlocks.
5351
5352         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
5353         does not need to be scanned during minor collections, since writes to it
5354         must use write barriers.
5355
5356 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
5357
5358         * metadata-verify.c: Add pe nt header verification.
5359         
5360 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
5361
5362         * gc.c: Fix a few warnings when using SGEN.
5363
5364 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
5365
5366         * metadata-verify.c: Add pe optional header verification.
5367
5368 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
5369
5370         * sgen-gc.c: Add support for user defined marker functions, used by
5371         MonoGHashTable to avoid registering a GC root for every hash node.
5372
5373 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
5374
5375         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
5376         non-pinned roots into separate hashes to avoid having to traverse them
5377         in functions which are only interested in one kind.
5378
5379 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
5380
5381         * metadata-verify.c: Add pe header machine field verification.
5382         
5383 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
5384
5385         * metadata-verify.c: Add pe header size verification.
5386
5387 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
5388
5389         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
5390         using the GC, they don't contain references.
5391
5392         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
5393
5394 2009-01-13  Geoff Norton  <gnorton@novell.com>
5395
5396         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
5397         AppDomains created on the native side can be cleaned up on the native side.
5398
5399 2009-01-13  Geoff Norton  <gnorton@novell.com>
5400
5401         * appdomain.c: Ensure that we call mono_context_init for the embedding api
5402         as well as the managed api.
5403
5404 2009-01-13  Geoff Norton  <gnorton@novell.com>
5405
5406         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
5407         with a MonoAppDomain initialized against it.
5408
5409 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
5410
5411         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
5412         
5413         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
5414
5415         * marshal.c: Avoid setting the exception clauses after a method has been entered 
5416         into the wrapper caches. Fixes #465700.
5417
5418         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
5419         method builder.
5420         (mono_mb_create_method): Set the clauses from the method builder.
5421
5422 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5423
5424         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
5425         Patch from Makoto Kishimoto.
5426
5427 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
5428
5429         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
5430         encoding them as ROOT_DESC_COMPLEX.
5431         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
5432
5433 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
5434
5435         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
5436         no longer point to the nursery.
5437
5438         * sgen-gc.c: Add a few comments/FIXMEs.
5439         
5440         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
5441
5442         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
5443         initialization of the various _method variables thread safe. Fixes
5444         #465377.
5445
5446 2009-01-12  Mark Probst  <mark.probst@gmail.com>
5447
5448         * domain.c, domain-internals.h: Remove the shared_generics_hash
5449         and its lookup functions.
5450
5451 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
5452
5453         * socket-io.c:  Fixing the MSVC build. 
5454
5455         Code is contributed under MIT/X11 license.
5456
5457 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
5458
5459         * metadata-verify.c: Add pe header watermark verification.
5460
5461 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
5462
5463         * metadata-verify.c: Add lfanew verification.
5464
5465 2009-01-12  Jb Evain  <jbevain@novell.com>
5466
5467         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
5468         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
5469
5470 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
5471
5472         * socket-io.c: Fix the build.
5473
5474         * environment.c: Fix an #ifdef.
5475
5476 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
5477
5478         * threadpool.c (async_invoke_thread): Handle the wait function returning
5479         WAIT_IO_COMPLETION as well.
5480         (async_invoke_io_thread): Ditto.
5481
5482 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
5483
5484         * threads.c: Fixing the Windows build.
5485
5486         Code is contributed under MIT/X11 license.
5487
5488 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
5489  
5490         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
5491         interrupt a wait.
5492         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
5493         the thread to wait again.
5494
5495 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
5496
5497         * metadata-verify.c: Initial skeleton of the metadata verifier.
5498
5499         * pedump.c: Add support for the metadata verifier.
5500
5501         * verify-internal.h: Export the whole assembly metadata verifier function.
5502
5503 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
5504
5505         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
5506
5507 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
5508
5509         * Makefile.am: Upgrade dtrace-prelink.sh location.
5510
5511 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
5512
5513         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
5514         well. Otherwise the shutdown deadlock that happens on unix will can happen
5515         as well.
5516         If the main thread code finishes too fast it's possible that the finalizer
5517         thread won't have executed yet, won't record itself as the finalizer thread
5518         and the shutdown sequence will wait on it forever.
5519
5520 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
5521
5522         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
5523         with MSVC.
5524
5525 2009-01-08  Miguel de Icaza  <miguel@novell.com>
5526
5527         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
5528         Robert Jordan for pointing this out.
5529
5530 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
5531
5532         * icall.c
5533         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
5534         ves_icall_System_IO_DriveInfo_GetDriveType.
5535
5536 2009-01-07  Miguel de Icaza  <miguel@novell.com>
5537
5538         * icall.c: Wrap calls to mono_strtod in CriticalSection
5539         invocations when using eglib, to work around #464316.
5540
5541 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
5542
5543         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
5544         return value of GetCurrentDirectory to never access unitialized memory.
5545
5546 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
5547
5548         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
5549         return value of GetCurrentDirectory and expand the buffer if needed.
5550
5551         Fixes #459094.
5552
5553 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
5554
5555         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
5556           Adding a call to mono_init_com_types.
5557
5558         Code is contributed under MIT/X11 license.
5559
5560 2009-01-07  Geoff Norton  <gnorton@novell.com>
5561
5562         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
5563         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
5564         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
5565         be the value of the ip buffer.
5566
5567 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5568
5569         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
5570         interfaces_packed here.
5571
5572         Fixes part of #463294.
5573
5574 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5575
5576         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
5577
5578         Fixes part of #463294.
5579
5580 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5581
5582         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
5583         is a boxed complex as well.
5584
5585         Fixes part of #463294.
5586
5587 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
5588
5589         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
5590         control if a methodspec should be created for the generic method definition from external assemblies.
5591         Caching of methodspec is done using the handleref hash table.
5592
5593         Fixes #462592.
5594
5595 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
5596
5597         * loader.c (find_method): When searching the interfaces of a class
5598         check the transitive closure of implemented interfaces.
5599
5600         Fixes #463303.
5601
5602 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
5603
5604         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
5605         
5606 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
5607
5608         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
5609         interfaces calculation to fill_valuetype_array_derived_types.
5610
5611         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
5612         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
5613         for example.
5614
5615         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
5616         interfaces for valuetypes if needed.    
5617
5618         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
5619         for their basetype as well. Types are array expanded if rank is > 0.
5620
5621         Fixes #400716.
5622
5623 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
5624
5625         * socket-io.h : Changing the signature of
5626           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
5627           the blocking state.
5628
5629         * icall-def.h :  Changing the signature of
5630           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
5631
5632         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5633           For Windows only.  Avoid blocking when calling accept by
5634           querying for a connection via select.  The loop also queries
5635           the thread state every 1000 micro seconds for the thread
5636           stop state.  This will avoid the process hanging on shutdown
5637           when using a TcpChannel that is never connected to.
5638
5639         Code is contributed under MIT/X11 license.
5640
5641 2008-12-30  Marek Safar  <marek.safar@gmail.com>
5642
5643         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
5644
5645 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
5646
5647         * class.c (get_implicit_generic_array_interfaces): Extract common
5648         code to a helper function making it a lot easier on the eyes.
5649
5650 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
5651
5652         * class.c (get_implicit_generic_array_interfaces): If the internal
5653         enumerator is an interface inflate System.Object instead of itself.
5654
5655         Fixes #461261.
5656
5657 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
5658
5659         * object.c (mono_runtime_invoke_array): Don't assert with
5660         byref nullable types.
5661
5662         * marshal.c (mono_marshal_get_runtime_invoke): To handle
5663         byref nullables we unbox the object and store it on the
5664         stack. 
5665         We can't use the boxed object since it is the T of Nullable<T>
5666         and the boxed representation of a nullable it's underlying type
5667         or null.
5668         We could cheat and create a boxed nullable and use the same
5669         machinery of other byref VTs but this feels like a hack and
5670         using the stack has the bonus of reducing heap pressure.
5671
5672         Fixes #461941.
5673
5674 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
5675
5676         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
5677         return value.
5678
5679         Fixes #461867.
5680
5681 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
5682
5683         * icall-def.h : Adding an internal call definition for 
5684           System.Environment.internalBroadcastSettingChange.
5685
5686         * icall.c : Adding a Windows only implementation to broadcast a 
5687           WM_SETTINGCHANGE when an environment variable has changed.
5688
5689         Code is contributed under MIT/X11 license.
5690
5691 2008-12-19  Mark Probst  <mark.probst@gmail.com>
5692
5693         * class.c, class-internals.h: Made
5694         mono_class_has_parent_and_ignore_generics() non-static.
5695
5696 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
5697
5698         * image.c: deal with the mmap failing when loading an image.
5699
5700 2008-12-17  Geoff Norton  <gnorton@novell.com>
5701
5702         * threadpool.c: Ensure that the io_queue_lock is initialized
5703         in all circumstances, as we always attempt to cleanup against it.
5704
5705 2008-12-17  Miguel de Icaza  <miguel@novell.com>
5706
5707         * icall.c (ves_icall_System_Environment_get_Platform): For
5708         compatibility reasons for existing client code we will keep
5709         returning 4 for a while.   
5710
5711         For how long will depend on the documentation being updated, and
5712         for us to give client code a chance to be updated.
5713
5714         This reverts the original decison on #433108 since we did not
5715         catch roughly 33 instances of the broken code in our own source
5716         code base, we did not catch failures on the buildbots, and QA did
5717         not bring this as a problem.
5718
5719         Only today I found some customer's code breaking due to our own
5720         class libraries not being fully updated and tracked it down to
5721         this change.  I am reverting it because if we could not even get
5722         our story straight in our own code base, how can we hope that our
5723         end user code be fixed?
5724
5725         As of this morning, our Wiki page that documents how to detect
5726         Unix had not been fixed.    
5727
5728 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
5729
5730         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
5731
5732         * class.c (mono_class_get_fields): Handle loading errors.
5733
5734 2008-12-12 Mark Mason <mmason@upwardaccess.com>
5735
5736         * 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.
5737         
5738 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
5739
5740         * mono-perfcounters.c: avoid warning.
5741
5742 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
5743
5744         * reflection.c (ensure_runtime_vtable): Work on generic instances and
5745         make sure all interfaces have MonoClass::interface_id set.
5746
5747         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
5748         method table is property set.
5749
5750 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
5751
5752         * class.c: New function mono_class_setup_interface_id that setup
5753         MonoClass::interface_id if needed.
5754
5755         * class-internals.h: Export new function.
5756
5757 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
5758
5759         * class.c: Add code to sanity check the vtable after setup_vtable_general
5760         has done it's work.
5761
5762 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
5763
5764         * icall.c: make Assembly.GetExecutingAssembly work properly when
5765         reflection is used to invoke the method.
5766         Bug #321781 fixed.
5767
5768 2008-12-11  Mark Probst  <mark.probst@gmail.com>
5769
5770         * metadata/generic-sharing.c: Look for constraints in all type
5771         arguments, not just the first one.
5772
5773 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
5774
5775         * appdomain.c: return the correct CodeBase for an Assembly instance
5776         that was loaded from the shadow-copy directories.
5777         Bug #458190 fixed.
5778
5779 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
5780
5781         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
5782
5783         * sgen-gc.c (check_object): New debugging helper function.
5784
5785         * object.c: Fix calls to mono_value_copy_array ().
5786
5787 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
5788
5789         * class.c (mono_class_setup_fields): If working on an inflated class
5790         first check if the generic definition did init with success.
5791
5792         Fixes #445361.
5793
5794 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
5795
5796         pedump.c (main): Fix a warning.
5797
5798 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
5799
5800         * object-internals.h : Adding a definition for 
5801           MonoReflectionComVisibleAttribute.
5802
5803         * marshal.c (cominterop_com_visible) :  Method added to check the 
5804           ComVisible attribute of a class.
5805
5806         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
5807           cominterop_raise_hr_exception added to consolidate common code 
5808           to raise hr exceptions.
5809
5810         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
5811           if a managed class should support IDispatch.
5812
5813         * marshal.c 
5814           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
5815           Added additional checks for managed object when getting 
5816           an IDispatch interface.
5817
5818         Code is contributed under MIT/X11 license.
5819
5820 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
5821
5822         pedump.c (main): Handle mono_get_method () returning NULL. 
5823
5824 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
5825
5826         * marshal.h: Fix a warning.
5827
5828 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
5829
5830         * marshal.c : Adding cominterop_release_all_rcws to release all
5831           runtime callable wrappers held by the runtime.
5832
5833         * marshal.h : Adding declaration for cominterop_release_all_rcws.
5834           
5835         Code is contributed under MIT/X11 license.
5836
5837 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
5838
5839         * metadata.c (mono_image_alloc_lock): New helper function.
5840         (mono_image_alloc0_lock): Ditto.
5841
5842         * metadata.c: Use the alloc_lock () helper functions for allocating
5843         memory from the image mempool.
5844
5845 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
5846
5847         * class.c (mono_class_from_generic_parameter): Document it's
5848         locking behavior. Fix double checked locking here, we stored in
5849         param->pklass a partially initialized MonoClass and no membar was used.
5850
5851 2008-12-05  Marek Habersack  <mhabersack@novell.com>
5852
5853         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
5854         (3) functions are present in the C library use them to do the
5855         job. If they are absent, make sure that the sum of int_part and
5856         dec_part is rounded before returning. This is necessary due to the
5857         division of dec_part by the power of 10 before the final addition
5858         is performed - if the result is not rounded in some cases it will
5859         yield invalid results.
5860
5861 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
5862
5863         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
5864         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
5865         instruction instead of a pointer constant.
5866
5867 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
5868
5869         * loader.c (mono_method_get_header): Do most of the work outside the
5870         loader lock, to avoid assembly load hook deadlocks.
5871
5872         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
5873         (mono_metadata_parse_type_full): Ditto.
5874
5875 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
5876
5877         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
5878         Make the stack depth fixed. Ensure proper argument passing to the backtrace
5879         funtions. Finally, use a lock to produce well ordered output.
5880
5881         The lock looks silly, as all calls to the corlib mempool should be guarded
5882         with the loader lock, but for some reason this fact doesn't help. 
5883
5884         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
5885
5886 2008-12-02  Mark Probst  <mark.probst@gmail.com>
5887
5888         * socket-io.c: 64 bit big-endian fixes.
5889
5890 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
5891
5892         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
5893         targets that require strict compatibility between the types.
5894
5895         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
5896         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
5897         Kill the strict argument and create a new one valuetype_must_be_boxed.
5898
5899         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
5900         state that all valuetypes must be boxed.
5901
5902         Fixes #448560.
5903
5904 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
5905
5906         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
5907         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
5908
5909         Contributed under MIT/X11 license.
5910
5911 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
5912
5913         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
5914         the inflate_generic_type machinery should handle it.
5915
5916         This avoids a crash when the field's flags is zero and it's type is
5917         a primitive.
5918         What happens is that mono_metadata_parse_type_full will see that opt_attrs
5919         is zero and will return one of the cached built-in primitive types. Since
5920         those types live in read-only memory, the code that copies it crashes.  
5921
5922 2008-11-28  Mark Probst  <mark.probst@gmail.com>
5923
5924         * object.c: Don't put function descriptors into generalized IMT
5925         thunks.
5926
5927 2008-11-28  Mark Probst  <mark.probst@gmail.com>
5928
5929         * class.c: Enable generic code sharing on PPC64.
5930
5931 2008-11-27  Mark Probst  <mark.probst@gmail.com>
5932
5933         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
5934         from mini/mini.c.
5935
5936         * generic-sharing.c: Allocate the method template slists from the
5937         image mempool so it doesn't leak.
5938
5939 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
5940
5941         * class.c (generic_array_methods): Release the linked list.
5942
5943 2008-11-27  Mark Probst  <mark.probst@gmail.com>
5944
5945         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
5946         invocation to g_utf16_to_utf8().
5947
5948 2008-11-26  Mark Probst  <mark.probst@gmail.com>
5949
5950         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
5951         arguments on big endian archs.
5952
5953 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5954
5955         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
5956         the type name (test added in corlib).
5957
5958 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5959
5960         * pedump.c: initialize perf. counters. Fixes a segv.
5961
5962 2008-11-25  Martin Baulig  <martin@ximian.com>
5963
5964         * mono-debug-debugger.c
5965         (mono_debugger_runtime_invoke): Return the exception object if an
5966         exception was thrown.  Visual Studio displays the exception object
5967         in the locals window.
5968
5969 2008-11-24  Mark Probst  <mark.probst@gmail.com>
5970
5971         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
5972         ftnptr.
5973
5974 2008-11-24  Mark Probst  <mark.probst@gmail.com>
5975
5976         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
5977         MONO_TYPE_U are sizeof (gpointer), too.
5978
5979 2008-11-24  Mark Probst  <mark.probst@gmail.com>
5980
5981         * marshal.c (mono_type_native_stack_size): Fixed size and
5982         alignment for reference types.
5983
5984 2008-11-23  Mark Probst  <mark.probst@gmail.com>
5985
5986         * class.c (mono_class_generic_sharing_enabled): Disable generic
5987         code sharing for PPC64.
5988
5989 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
5990
5991         * icall.c (mono_method_get_equivalent_method): Make sure
5992         method->klass->methods is inited before looping over it.
5993
5994 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
5995
5996         * object.c: when calling ExecuteAssembly in a newly created domain,
5997         the configuration file and application base are already set up.
5998         Bug #446353 take 2 fixed.
5999
6000 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
6001
6002         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
6003         Fixes #444715. Fix a warning.
6004
6005 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
6006
6007         * appdomain.c: write the full path of the assembly to the .ini file
6008         created when "shadow-copying"
6009         Bug #446353 fixed.
6010
6011 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
6012
6013         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
6014         if signature==FALSE.
6015
6016 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6017
6018         * marshal.h : Fix the cygwin build.
6019            marshal.c:12442: undefined reference to `_IID_IMarshal'
6020           
6021         Code is contributed under MIT/X11 license.
6022
6023 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
6024
6025         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
6026           free threaded marshaler when QueryInterface is called on a COM callable
6027           wrapper requesting the IMarshal interface.
6028           
6029         Code is contributed under MIT/X11 license.
6030
6031 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
6032
6033         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
6034
6035         * reflection.c (mono_type_get_object): Special case the very common
6036         void type.
6037
6038         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
6039         hold typeof(void).
6040
6041 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
6042
6043         * process.h : Adding method declaration for
6044           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6045           
6046         * process.c : Adding implementation for
6047           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6048           
6049         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
6050           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
6051
6052         Code is contributed under MIT/X11 license.
6053
6054 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
6055
6056         * appdomain.c (unload_thread_main): Clean up threadpool by
6057         calling mono_thread_pool_remove_domain_jobs.
6058
6059         * domain-internals.h (struct _MonoDomain): Add new fields to
6060         help coordinate the cleanup of the threadpool.
6061
6062         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
6063         that cleans up the threadpool of all jobs associated with an appdomain.
6064         It does that by cleaning up the queues and making sure all active
6065         threads are accounted.
6066
6067         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
6068         unloaded or in the process of. Take this is such way that there is
6069         no race condition between another thread starting the unload and the
6070         current thread acknowledging it.
6071
6072         * threadpool.c (async_invoke_thread): Same.
6073
6074         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
6075         firing the new thread.
6076
6077         * threadpool.c (start_tpthread): Same.
6078
6079         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
6080
6081         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
6082
6083 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
6084
6085         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6086         Add support for DuplicateHandle.
6087         
6088         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6089         Add support for DuplicateHandle.
6090         
6091         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
6092         Add support for DuplicateHandle.
6093
6094         Code is contributed under MIT/X11 license.
6095
6096 2008-11-06  Mark Probst  <mark.probst@gmail.com>
6097
6098         * class-internals.h: Make min_align into a whole byte.
6099
6100         * class.c: Set min_align for SIMD types to 16.
6101
6102 2008-11-05  Geoff Norton  <gnorton@novell.com>
6103
6104         * attach.c: Default the attacher to enabled for all cases including
6105         embedded.
6106
6107 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
6108
6109         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
6110         change r117650.
6111
6112 2008-11-04  Mark Probst  <mark.probst@gmail.com>
6113
6114         * monitor.c, monitor.h: New function for querying offsets of
6115         members of MonoThreadsSync.
6116
6117 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
6118
6119         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
6120         to speed up this function and to avoid the boundless memory growth caused by
6121         the signature_dup () calls.
6122
6123 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
6124
6125         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
6126         wrapper.
6127
6128         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
6129         by 1 bit.
6130
6131         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
6132
6133 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6134
6135         * appdomain.c:
6136         * domain-internals.h: made mono_set_private_bin_path_from_config()
6137         "internal".
6138         * object.c: call the above function after setting the configuration
6139         file path for the root domain.
6140         Fixes bug #314478.
6141
6142 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6143
6144         * assembly.c: when the assembly is loaded from an absolute path, end
6145         basedir with a directory separator.
6146         Bug #440781 fixed.
6147
6148 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6149
6150         * monitor.c (mono_monitor_get_fast_enter_method): If
6151         CompareExchange is not available, don't create the fastpath
6152         instead of asserting.  (The method is missing in the 1.1 profile.)
6153
6154 2008-10-30  Mark Probst  <mark.probst@gmail.com>
6155
6156         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
6157
6158         * monitor.c, monitor.h: Code for generating Monitor.Enter and
6159         Monitor.Exit IL fastpaths.
6160
6161 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6162
6163         * class.c (mono_class_create_from_typedef): Added Vector2ul.
6164
6165 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
6166
6167         * class.c (mono_class_create_from_typedef): Added Vector2l.
6168
6169 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
6170
6171         * class.c (mono_class_create_from_typedef): Added Vector2d.
6172
6173 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6174
6175         * appdomain.c: translate \ into / for cache_path.
6176         * domain-internals.h: new mono_is_shadow_copy_enabled().
6177         * icall.c: (fill_reflection_assembly_name) do the same path
6178         manipulations that get_code_base does.
6179         (get_code_base) use mono_is_shadow_copy_enabled.
6180
6181 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6182
6183         * appdomain.c: shadow-copied assemblies go to CachePath +
6184         ApplicationName when both are set. DynamicBase has nothing to do with
6185         shadow copies.
6186         Bug #406877 fixed.
6187
6188 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
6189
6190         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
6191         STANDALONESIG table.
6192
6193         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
6194         standalone signatures.
6195
6196         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
6197         comparison code: instead of comparing the signatures using a custom
6198         equals function, transform them to a common signature and compare that. This
6199         works better with AOT.
6200
6201 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
6202
6203         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
6204
6205         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
6206         call for generic instances.
6207         (mono_class_setup_properties): Call setup_properties () before accessing
6208         gklass->properties.
6209
6210         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6211         over the virtual methods of a class using metadata if possible, avoiding the
6212         creation of MonoMethod's for non-virtual methods.
6213         
6214         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6215         get_virtual_methods () to iterate over the virtual methods of classes.
6216
6217 2008-10-25  Martin Baulig  <martin@ximian.com>
6218
6219         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
6220
6221 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6222
6223         * class.c (mono_class_create_from_typedef): Added Vector4i.
6224
6225 2008-10-24  Mark Probst  <mark.probst@gmail.com>
6226
6227         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
6228         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
6229         special-casing applies to eliminate the call completely.
6230
6231 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
6232
6233         * class.c (mono_class_create_from_typedef): Added Vector8s.
6234
6235 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
6236
6237         * class.c (mono_class_create_from_typedef): Added Vector16sb.
6238
6239 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6240
6241         * icall.c: get rid of annoying warning.
6242
6243 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6244
6245         * threadpool.c: in 1.x, if you change the background status of the
6246         threadpool thread, it's not reset.
6247         Remove unnecessary calls to SetState.
6248
6249 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6250
6251         * threadpool.c: asynchronously create a set of idle threads upon first
6252         use of the threadpool. SetMinThreads will now start the appropriate
6253         number of idle threads if they are not already running. The default is
6254         1 threadpool thread per CPU. Increased the maximum number of threads
6255         per CPU to 10.
6256
6257 2008-10-22  Martin Baulig  <martin@ximian.com>
6258
6259         Revert r116521 from Zoltan, it breaks the debugger:
6260
6261         * class.c (mono_class_get_virtual_methods): New helper function to iterate
6262         over the virtual methods of a class using metadata if possible, avoiding the
6263         creation of MonoMethod's for non-virtual methods.
6264         
6265         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
6266         get_virtual_methods () to iterate over the virtual methods of classes.
6267
6268 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6269
6270         * threads.c: when creating a threadpool thread, set its state to
6271         'background'.
6272         * threadpool.c: reset the background state of a threadpool thread
6273         after finishing each work item
6274         Bug #437888 fixed.
6275
6276 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6277
6278         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
6279         
6280         * class.c (mono_class_setup_vtable_general): Add an optimized version for
6281         generic instances which works by inflating the methods in the container
6282         class's vtable.
6283
6284         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
6285         variant which doesn't make a copy if no inflation was done.
6286         (mono_class_setup_fields): Use it.
6287
6288         * metadata.c (mono_metadata_get_shared_type): New helper function to
6289         return a shared instance of a given MonoType.
6290
6291         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
6292         a copy of most non-generic types.
6293
6294 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
6295
6296         * threadpool.c: remove one more GetSystemInfo () call.
6297
6298 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
6299
6300         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
6301         use the code in mono-proclib.h to get processor information.
6302
6303 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6304
6305         * appdomain.c: fixed the logic that determines whether assemblies in a
6306         directory are "shadow-copied" or not. Bug #433483 fixed.
6307
6308 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
6309
6310         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
6311         warning.
6312
6313 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6314
6315         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
6316         returning a vtype.
6317
6318         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
6319         reflection.c: Use mono_field_get_name () for accessing a field's name.
6320
6321         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
6322         class.c
6323
6324         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
6325         field.
6326
6327         * loader.c (find_method_in_class): Reenable the metadata optimization by
6328         not using it for generic instances.
6329
6330         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
6331         data/def_type fields from MonoClassField into a separate structure.
6332         (struct MonoClassField): Remove data/def_type fields.
6333         (struct _MonoClass): Add a 'field_def_values' array to store the default
6334         values/RVA for fields.
6335
6336         * class.c reflection.c: Update after the changes.
6337         
6338         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
6339         for accessing field->data.
6340
6341         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
6342
6343         * loader.c (find_method_in_class): Revert the last change for now as
6344         it breaks Mono.C5 unit tests.
6345
6346         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
6347         'field_generic_types' and 'field_objects' which contain the information
6348         previously stored in MonoInflatedField.
6349         (MonoInflatedField): Delete.
6350         (struct _MonoClassField): Delete 'generic_info' field.
6351
6352         * reflection.c: Store the information which was previously in 
6353         field->generic_info in MonoDynamicGenericClass instead.
6354
6355         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
6356         MonoClassField changes.
6357
6358 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
6359
6360         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
6361         store the value inside the data array of the MonoMethodWrapper.
6362         This saves memory, is faster and fixes the lifetime issues (methods
6363         were never removed from the hash previously). May also fix bug#436996.
6364
6365 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
6366
6367         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
6368         generic instances, compute the type from the generic definition instead of
6369         looking in field->generic_info.
6370
6371         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
6372         for inflated fields, the only user was get_fieldref_token () which no
6373         longer needs it.
6374
6375         * class.c (mono_class_init): Revert the last change as it seems to cause
6376         crashes.
6377
6378         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
6379         bytes on 64 bit platforms.
6380
6381         * object.c (mono_class_create_runtime_vtable): Fix a warning.
6382         
6383         * object.c (mono_class_create_runtime_vtable): Don't initalize
6384         field->data/field->def_type here, it is done lazily by 
6385         mono_class_get_field_default_value ().
6386
6387         * icall.c (ves_icall_get_enum_info): Call 
6388         mono_class_get_field_default_value () instead of directly accessing
6389         field->data and field->def_type.
6390
6391         * object.c (get_default_field_value): Ditto.
6392
6393         * class.c (mono_field_get_data): Ditto.
6394         
6395         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
6396         call for generic instances.
6397
6398         * loader.c (find_method_in_class): If klass != from_class, then inflate
6399         the method with the context of from_class, since the caller assumes this.
6400
6401 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
6402
6403         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
6404         for accessing method->slot.
6405
6406 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
6407
6408         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
6409
6410 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
6411
6412         * class.c (mono_method_get_vtable_index): Use
6413         mono_method_get_vtable_slot () for accessing method->slot.
6414
6415         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
6416         accessing klass->methods.
6417
6418         * class.c (mono_method_get_vtable_slot): New helper function.
6419         (mono_class_get_vtable_entry): Ditto.
6420         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
6421         accessing method->slot.
6422
6423         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
6424         method to get_inflated_method ().
6425
6426         * class.c (mono_class_get_inflated_method): New helper method to obtain
6427         a method of an inflated class without calling setup_methods ().
6428         (mono_class_get_cctor): Use get_inflated_method.
6429
6430         * generic-sharing.c (mono_class_get_method_generic): Ditto.
6431         
6432         * marshal.c image.c: Lazily create all the marshal caches.
6433
6434         * image.c (mono_image_init): Move initialization of runtime_invoke
6435         caches to marshal.c.
6436
6437         * marshal.c (get_cache): New helper function to lazily initialize a 
6438         wrapper cache.
6439         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
6440
6441         * debug-helpers.c (mono_method_full_name): Include generic arguments.
6442
6443 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
6444
6445         * loader.c: fixed check for interface type.
6446
6447 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
6448
6449         * appdomain.c: check for NULL setup before it's referenced.
6450
6451 p
6452 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
6453
6454         * class.c: remove the unused old vtable setup code.
6455
6456 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
6457
6458         * class.c: don't depend on interface order in
6459         setup_interface_offsets (bug #435777).
6460         * reflection.c: sort the InterfaceImpl table (patch from
6461         Jb Evain  <jbevain@novell.com>).
6462
6463 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
6464
6465         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
6466         the low level assemblies lock.
6467
6468 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
6469
6470         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
6471         object.c, reflection.c, socket-io.c, threads.c: introduced
6472         mono_framework_version () to return the major framewrok version,
6473         changed the code that was using more complex patterns to use it.
6474         Return the correct value for PlatformID for OSX.
6475
6476 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
6477
6478         * icall-def.h, process.h, process.c: added an icall to get info about
6479         processes using mono-proclib.
6480
6481 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
6482
6483         * mono-perfcounters.c: use the mono-proclib functions to
6484         access process information.
6485
6486 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
6487
6488         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
6489         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
6490         reflection.c: remove rawbuffer usage: mmap support is more sanely
6491         provided by utils/mono-mmap.
6492
6493 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
6494
6495         * gc.c: use posix semaphores when possible so that
6496         mono_gc_finalize_notify() is signal safe.
6497
6498 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
6499
6500         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
6501         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
6502         be #ifdef-ed out, the linker will remove the rest.
6503
6504         * marshal.c: Implement DISABLE_COM.
6505
6506         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
6507
6508 2008-10-11  Miguel de Icaza  <miguel@novell.com>
6509
6510         * locales.c (string_invariant_compare_char): Optimization: do not
6511         call g_unichar_type unless we actually need the information.
6512
6513 2008-10-10  Mark Probst  <mark.probst@gmail.com>
6514
6515         * object.c, class-internals.h: Also create remoting trampolines
6516         for generic methods.  Pass the domain to the remoting trampoline
6517         creation function, too.
6518
6519 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
6520
6521         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
6522
6523 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
6524
6525         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
6526         Vector4ui.
6527
6528 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
6529
6530         * assembly.c:
6531         * locales.c: remove the use of g_strdown. Fixes bug #322313.
6532
6533 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
6534
6535         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
6536         for the least possible amount of time (extending the fix in r113458).
6537
6538 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
6539
6540         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
6541
6542 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
6543
6544         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
6545         as possible simd intrinsic types.
6546         Optimized the test to check for the common prefix first.
6547
6548 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
6549
6550         * class.c: back out part of a broken optimization committed on
6551         May 23th (bug #433908).
6552
6553 2008-10-09  Mark Probst  <mark.probst@gmail.com>
6554
6555         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
6556         Win32.  Should fix #432388 for most cases until we have the new
6557         profiler on Win32.
6558
6559 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
6560
6561         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
6562         instead of using inst->id so the hash is stable for AOT.
6563
6564 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6565
6566         * appdomain.c:
6567         * icall.c: create a .ini file for shadow-copied assemblies that
6568         contains the location of the original assembly. Use this to return the
6569         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
6570         Also fix the number of '/' for windows when returning the CodeBase.
6571         Fixes bug #430920.
6572
6573 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
6574
6575         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
6576
6577         Code is contributed under MIT/X11 license.
6578
6579 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
6580
6581         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
6582           if if the class vtable needs initialized.
6583
6584         Code is contributed under MIT/X11 license.
6585
6586 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
6587
6588         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
6589           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
6590           STRING->BSTR, and CLASS->INTERFACE.
6591
6592         Code is contributed under MIT/X11 license.
6593
6594 2008-10-07  Marek Habersack  <mhabersack@novell.com>
6595
6596         * sysmath.h: changed the declaration of the
6597         ves_icall_System_Math_Round2 icall by adding an extra
6598         away_from_zero parameter.
6599
6600         * sysmath.c (ves_icall_System_Math_Round2): added support for
6601         away from zero rounding. The icall now takes an extra boolean
6602         parameter to signal that away from zero operation is requested.
6603
6604 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
6605
6606         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
6607         the delegate klass so it can work with full-aot.
6608         (mono_marshal_get_delegate_end_invoke): Ditto.
6609         (mono_marshal_get_delegate_invoke): Ditto.
6610
6611 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
6612
6613         * gc.c, attach.h, attach.c: remove a bad pattern:
6614         add_finalizer_callback () is not implemented correctly, it can't
6615         without adding more overhead to the finalizer loop and it's not
6616         even needed, since we know exactly what we need to call, so there is
6617         no need to do so through an expensive function pointer.
6618
6619 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
6620
6621         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
6622         for the no-gc case.
6623         * attach.c (mono_attach_init): Remove the #ifdef.
6624
6625 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
6626
6627         * attach.c (mono_attach_init): Don't use
6628         mono_gc_add_finalizer_thread_callback when compiling without GC.
6629         Fixes #432306.
6630         
6631         Code is contributed under MIT/X11 license.
6632
6633 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
6634
6635         * class.c (mono_class_create_from_typedef): Remove the 
6636         #ifndef DISABLE_SIMD stuff.
6637
6638 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
6639
6640         * class-internals.h (MonoClass): Added simd_type bit field.
6641
6642         * class.c (mono_class_create_from_typedef): Check if type is a simd
6643         intrinsic.
6644
6645 2008-10-03  Mark Probst  <mark.probst@gmail.com>
6646
6647         * object.c (mono_method_add_generic_virtual_invocation): Only add
6648         instantiations to the thunk whose count is at least as large as
6649         the threshold.
6650
6651 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
6652
6653         * icall.c: changed the Type of the exception thrown when trying to
6654         invoke a constructor on an abstract class. Part of the fix for bug
6655         #324185.
6656
6657 2008-10-02  Mark Probst  <mark.probst@gmail.com>
6658
6659         * class.c, class-internals.h (mono_method_get_vtable_index): New
6660         function which returns the index into the vtable and properly
6661         handles inflated virtual generic methods.
6662
6663 2008-10-01  Mark Probst  <mark.probst@gmail.com>
6664
6665         * object.c, domain.c, object-internals.h, domain-internals.h:
6666         Generalize IMT thunk machinery to also handle thunks for virtual
6667         generic method invokes.  When a virtual generic method is invoked
6668         more than a number of times we insert it into the thunk so that it
6669         can be called without lookup in unmanaged code.
6670
6671         * generic-sharing.c, class-internals.h: Fetching a
6672         MonoGenericInst* for a method from an (M)RGCTX.
6673
6674 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
6675
6676         * marshal.c (emit_marshal_string): Applied a variant of a patch by
6677         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
6678         marshalling. Fixes #431304.
6679
6680 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
6681
6682         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
6683           handle when ref is specified without In or Out.
6684
6685         Code is contributed under MIT/X11 license.
6686
6687 2008-09-30  Mark Probst  <mark.probst@gmail.com>
6688
6689         * loader.c (mono_get_method_constrained): Don't expand method with
6690         the class's context, because it's already a method of that class.
6691
6692 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
6693
6694         * attach.c : should be correct build fix.
6695
6696 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
6697
6698         * attach.c: Fix the previous change.
6699
6700 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
6701
6702         * attach.c : quick w32 build fix.
6703
6704 2008-09-27  Miguel de Icaza  <miguel@novell.com>
6705
6706         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
6707         crashes MonoDevelop: #430455.
6708
6709 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
6710
6711         * domain-internals.h (struct _MonoDomain): Move most fields used only by
6712         the JIT do MonoJitDomainInfo in ../mini/mini.h.
6713
6714         * domain.c: Remove initialization/cleanup of the removed fields.
6715
6716 2008-09-27  Mark Probst  <mark.probst@gmail.com>
6717
6718         * class.c (mono_class_generic_sharing_enabled): Enable generic
6719         code sharing for PPC.
6720
6721 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
6722
6723         * attach.c : Fixing the Windows builds.
6724
6725         Code is contributed under MIT/X11 license.
6726
6727 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
6728
6729         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
6730         the default generic sharing mode to 'all'.
6731
6732 2008-09-25  Mark Probst  <mark.probst@gmail.com>
6733
6734         * generic-sharing.c, class-internals.h: New function for checking
6735         whether a method needs a static RGCTX invoke wrapper.  A few
6736         funtions moved from mini/generic-sharing.c.
6737
6738         * icall.c: New function used.
6739
6740 2008-09-25  Mark Probst  <mark.probst@gmail.com>
6741
6742         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
6743         Static RGCTX invoke wrapping applies to value type methods, too.
6744
6745         * class.c (mono_class_setup_vtable_general): In generic-shared
6746         value types, wrap methods with a static RGCTX invoke wrapper.
6747
6748 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
6749
6750         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
6751         osx build.
6752
6753 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
6754
6755         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
6756         register a callback which is called when the finalizer thread is woken
6757         up.
6758         (finalizer_thread): Call the callback if it exists.
6759
6760         * attach.h attach.c: New files, implementing the attach mechanism.
6761
6762         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
6763         
6764         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
6765         by the previous change.
6766
6767 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
6768
6769         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
6770         loader.c, marshal.c, metadata-internals.h, metadata.c,
6771         method-builder.c, object.c, reflection.c: introduced specific functions
6772         to allocate from the domain and image mempools and cleaned up most of
6773         the code to use them (still missing a few in reflection.c).
6774         Keep the loader bytes counter updated.
6775
6776 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
6777
6778         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
6779         loader-related counters.
6780
6781 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
6782
6783         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
6784         added more MS-compatible counters.
6785
6786 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
6787
6788         * class.c (mono_class_setup_fields): Call setup_fields before accessing
6789         class->blittable. Fixes #428217.
6790
6791 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
6792
6793         * reflection.c (mono_image_get_field_on_inst_token): Call 
6794         field_encode_signature () since that handles custom modifiers too.
6795         Fixes #424663.
6796
6797 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
6798
6799         * reflection.c (add_custom_modifiers): New helper function to merge custom
6800         modifiers stored in objects to a MonoType.
6801         (fieldref_encode_signature): Encode custom modifiers.
6802         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
6803         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
6804
6805 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
6806
6807         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
6808         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
6809         64-bit IL only images because imports are not resolved for IL only images.
6810         Special thanks to Bill Holmes for finding this bug and testing the patch.
6811         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
6812
6813         Contributed under MIT/X11 license.
6814
6815 2008-09-19  Miguel de Icaza  <miguel@novell.com>
6816
6817         * mono-config.c (dllmap_start): Add support for the bits keyword
6818         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
6819
6820 2008-09-19  Mark Probst  <mark.probst@gmail.com>
6821
6822         * reflection.c (inflate_mono_method): When the class the method is
6823         to be inflated for is itself not inflated, just return the method.
6824
6825 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
6826
6827         * mono-perfcounters.c: use more user friendly process instance names.
6828
6829 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
6830
6831         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
6832           handle "[in] ref" and "[in][out] ref" cases.
6833
6834         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
6835           to mono_mb_create_method.  This was causing problems calling native to
6836           managed passing Variants by value.
6837
6838         Code is contributed under MIT/X11 license.
6839
6840 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
6841
6842         * class.c (can_access_internals): Call mono_assembly_load_friends ()
6843         before accessing the friend_assembly_names field.
6844
6845         * assembly.c (mono_assembly_load_friends): Make this callable multiple
6846         times.
6847         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
6848         called lazily when it is needed.
6849
6850         * metadata-internals.h (struct _MonoAssembly): Add 
6851         'friend_assembly_names_inited' flag.
6852
6853 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
6854
6855         * mono-perfcounters-def.h: fix the types of a few counters.
6856         * mono-perfcounters.c: implemented the instance names getter
6857         and a few bugfixes.
6858
6859 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
6860
6861         * culture-info-table.h : regenerated.
6862
6863 2008-09-17  Robert Jordan  <robertj@gmx.net>
6864
6865         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
6866         context bound objects. Fixes #415577.
6867
6868         Code is contributed under MIT/X11 license.
6869
6870 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
6871
6872         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
6873         implementation (bug #423582).
6874
6875 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
6876
6877         * object.c (mono_object_get_virtual_method): Handle the case method->slot
6878         is not set. Fixes #426309.
6879
6880 2008-09-16  Jb Evain  <jbevain@novell.com>
6881
6882         * class.c (mono_class_from_name): fix the exported type look up
6883         when the type is defined in a referenced assembly.
6884
6885 2008-09-16  Jb Evain  <jbevain@novell.com>
6886
6887         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
6888         increment the next index counter on each iteration to make that work
6889         for more than one type forwarder. Unmanaged part to fix #422929.
6890
6891 2008-09-15  Mark Probst  <mark.probst@gmail.com>
6892
6893         * object-internals.h: enum ComInterfaceType in
6894         MonoInterfaceTypeAttribute is guint32, not guint16.
6895
6896 2008-09-12  Mark Probst  <mark.probst@gmail.com>
6897
6898         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
6899         writing code.
6900
6901 2008-09-11  Mark Probst  <mark.probst@gmail.com>
6902
6903         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
6904         not gboolean.
6905
6906 2008-09-11  Mark Probst  <mark.probst@gmail.com>
6907
6908         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
6909         Endianness fixes for MonoSymbolFileOffsetTable.
6910
6911 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
6912
6913         * process.c (complete_path) : Removing quotes from the 
6914           input path.  The glib file routines do not handle file paths
6915           that have quotes around them.
6916
6917         Code is contributed under MIT/X11 license.
6918
6919 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
6920
6921         * socket-io.h : Adding a comment to provide locations where 
6922           changes to MonoSocketAsyncResult need to be synced.
6923
6924         Code is contributed under MIT/X11 license.
6925
6926 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
6927
6928         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
6929         parameters as well. Fixes #425001.
6930
6931 2008-09-08  Miguel de Icaza  <miguel@novell.com>
6932
6933         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
6934         windows build.
6935
6936 2008-09-07  Miguel de Icaza  <miguel@novell.com>
6937
6938         * console-io.c: Add support for tracking the window size if it
6939         changes.
6940
6941         The setup is very simple: the TtySetup function will now return a
6942         pointer to a location in memory that tracks the current console
6943         size.  The managed code checks its current value every time its
6944         queried against the last value set, and updates accordingly.
6945
6946         With this setup we can work with multiple consoles, and we do not
6947         require to poke into managed code from a signal handler.
6948
6949         Additionally, the environment for COLUMNS and LINES is now handled
6950         in unmanaged code.
6951
6952         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
6953
6954 2008-09-07  Mark Probst  <mark.probst@gmail.com>
6955
6956         * marshal.c (mono_type_native_stack_size): Treat
6957         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
6958
6959 2008-09-04  Jb Evain  <jbevain@novell.com>
6960
6961         * class.c (mono_class_is_assignable_from): fix assignability of nullables
6962         to nullables.
6963
6964 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
6965
6966         * verify.c (verify_type_compatibility_full): Revert change
6967         to allow converting a native int to unmanaged pointer be verifiable
6968         under non-strict mode.
6969         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
6970
6971         * verify.c: Added some TODOs.
6972
6973 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
6974
6975         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
6976           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
6977           Changed to use GlobalAlloc for the memory returned on Windows platforms.
6978
6979         Code is contributed under MIT/X11 license.
6980
6981 2008-09-02  Jb Evain  <jbevain@novell.com>
6982
6983         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
6984
6985 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
6986
6987         reflection.c (typebuilder_setup_fields): Handle classes with
6988         explicit size.
6989
6990 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
6991
6992         class.c (mono_class_setup_events): Add memory barrier due to
6993         double checked locking.
6994         
6995         class.c (mono_class_setup_properties): Same.
6996
6997 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
6998
6999         * class.c (mono_class_is_assignable_from): Fix the build.
7000         
7001         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
7002         before accessing klass->interface_bitmap. Fixes #421744.
7003
7004 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
7005
7006         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
7007         the runtime into no-exec mode, useful when running the AOT compiler.
7008
7009         * appdomain.c gc.c object.c: Avoid executing managed code when running
7010         in no-exec mode.
7011         
7012         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
7013
7014         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
7015         special case when the mono_assembly_loaded () returns NULL because the 
7016         search hook is not installed.
7017
7018 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
7019
7020         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
7021         crashes in bstr marshalling on linux.
7022
7023 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7024
7025         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
7026         with more than one parameter.
7027
7028 2008-08-24  Miguel de Icaza  <miguel@novell.com>
7029
7030         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
7031         start/stop flow control as well when turning off ICANON (allows
7032         C-s and C-q to be read by Console.ReadKey).
7033
7034 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
7035
7036         * class.c (mono_class_init): Move the initialization of nested classes
7037         into mono_class_get_nested_types (). Fixes #418433.
7038
7039         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
7040         flag.
7041
7042         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
7043         iterating tough the nested classes of a class.
7044
7045 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
7046
7047         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
7048         on arm.
7049
7050 2008-08-22  Miguel de Icaza  <miguel@novell.com>
7051
7052         * console-io.c (sigcont_handler): Support signal chaining for
7053         SIGCONT.
7054
7055         (console_set_signal_handlers): Use best practices with sigaction,
7056         clear the structure before using it. 
7057
7058 2008-08-22  Robert Jordan  <robertj@gmx.net>
7059
7060         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
7061         Fix the Windows build.
7062
7063 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
7064
7065         * class.c (mono_class_generic_sharing_enabled): Make the default
7066         sharing mode 'corlib'.
7067
7068 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
7069
7070         * console-io.c (console_set_signal_handlers): Fix a warning.
7071
7072         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
7073         method normally, the JIT will take care of avoiding recursion.
7074
7075 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
7076
7077         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
7078
7079         Code is contributed under MIT/X11 license.
7080
7081 2008-08-20  Miguel de Icaza  <miguel@novell.com>
7082
7083         * console-io.c (sigcont_handler): We need to restore the entire
7084         termios state, not only the original settings, as things like echo
7085         can be controlled after this (Booish exposes this issue with its
7086         own ReadLine implementation).
7087
7088         Additionally, we need to set the terminal back into keypad_xmit
7089         mode.
7090         
7091         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
7092         string as a paramter as well.   Otherwise we get different
7093         keyboard sequences.
7094
7095 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
7096
7097         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
7098         delegates with byref out parameter passing. Fixes #351520.
7099
7100         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
7101         a generic context.
7102         (mono_type_get_desc): Add the type arguments for GENERICINST.
7103         (mono_method_full_name): Stringify the class name using mono_type_full_name
7104         so it picks up generic arguments.
7105
7106 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
7107
7108         * console-io.c: Removed debug output.
7109
7110 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
7111
7112         reflection.c (mono_reflection_create_runtime_class): Alloc
7113         the nested classes linked list using the dynamic image mempool.
7114         Fixes leak in corlib compilation.
7115
7116 2008-08-19  Miguel de Icaza  <miguel@novell.com>
7117
7118         * console-io.c: Fix incredibly annoying behavior on the console
7119         after resuming execution after control-z.   This affected every
7120         console application.
7121
7122 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
7123
7124         * mempool-internals.h: Header for mono private mempool functions. The first
7125         two function are for allocating glib linked lists using pools.
7126
7127         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
7128
7129         * Makefile.am: Added mempool-internals.h.
7130
7131 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
7132
7133         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
7134         (mono_domain_free): Ditto.
7135
7136         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
7137         be used by the JIT to store its domain-specific information, instead of putting
7138         it directly into MonoDomain.
7139
7140         * domain.c (mono_install_create_domain_hook): New helper function to install
7141         a hook which initializes domain->runtime_info.
7142
7143         * domain.c (mono_install_free_domain_hook): Ditto.
7144         
7145 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
7146
7147         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
7148         asserting if the ares parameter is null.
7149
7150         * mono-perfcounters.c: Fix warnings.
7151
7152         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
7153         is not needed, don't check for interruptions either.
7154         (mono_marshal_get_delegate_end_invoke): Ditto.
7155
7156 2008-08-15  Marek Habersack  <mhabersack@novell.com>
7157
7158         * mono-perfcounters.c (predef_readonly_counter): added support for
7159         reading the ASP.NET Requests Queued counter from another process.
7160
7161 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
7162
7163         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
7164         MonoImage to simplify the AOT code.
7165
7166 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
7167
7168         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
7169         marshalling. Fixes #416078.
7170
7171 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7172         
7173         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
7174         it is set, looking up the icall address is deferred to the JIT, since 
7175         in embedded scenarios, the icall might not be registered in the runtime
7176         doing the AOT compilation. Backported from the 2.0 branch.
7177
7178 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
7179
7180         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
7181         Fixes #415621.
7182
7183 2008-08-05  Marek Habersack  <mhabersack@novell.com>
7184
7185         * Makefile.am: added support for cross-compilation.
7186
7187 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
7188
7189         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
7190
7191 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
7192
7193         * mono-perfcounters.c: jitted methods and jitted bytes counters.
7194
7195 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
7196
7197         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
7198         mono-perfcounters.c: performance counters implementation.
7199
7200 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
7201
7202         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
7203         to gpointer, letting the AOT code decide what to store in it.
7204
7205 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
7206
7207         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
7208           mono_class_setup_methods if the methods are not initialized.
7209
7210         Code is contributed under MIT/X11 license.
7211
7212 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7213
7214         * verify.c: Remove some debug code I commited by accident.
7215
7216         * verify.c (mono_method_is_valid_in_context): Change the return value
7217         to make possible to distinguish between invalid and unverifiable.
7218
7219         * verify.c (verifier_load_method): Don't return NULL for unverifiable
7220         methods.
7221
7222 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7223
7224         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
7225         constraints. Fixes regression in gtest-253.
7226
7227 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
7228
7229         * verify.c (mono_verifier_verify_class): Don't allow generic types
7230         with explicit layout.
7231
7232         * verify.c (mono_method_verify): Check locals and argument types.
7233
7234 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
7235
7236         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
7237         wait if the thread is in StopRequested state.
7238
7239         * class.c (mono_class_from_name): Refactor the module searching code into
7240         a separate function so it can be reused in the AOT case too.
7241
7242 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
7243
7244         * verify.c (mono_type_is_valid_in_context): Improve the error message.
7245         Check both the type and it's generic type definition for loader errors.
7246         
7247         * verify.c (mono_method_is_valid_in_context): Don't generate another
7248         error when a type errors occur, this leads to the wrong exception been
7249         thrown.
7250
7251 2008-07-28  Dick Porter  <dick@ximian.com>
7252
7253         * icall-def.h
7254         * process.c
7255         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
7256         New internal calls to duplicate and close a process handle.
7257
7258 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
7259
7260         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
7261
7262 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
7263
7264         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
7265
7266 2008-07-27  Robert Jordan  <robertj@gmx.net>
7267
7268         * class.c (mono_class_init): Don't compute class.has_finalize for
7269         valuetypes. Fixes #412477.
7270
7271 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
7272
7273         * verify.c: Implement constraint equivalence checking.
7274         This is required when a generic parameter is used as
7275         argument to a constrained one.
7276
7277         Fixes #410637.
7278
7279 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
7280
7281         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7282
7283         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
7284
7285         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
7286         synch with managed object layout.
7287
7288 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7289
7290         * verify.c (do_branch_op): Handle valuetypes and generic
7291         arguments properly.
7292
7293         * verify.c (do_cmp_op): Same.
7294
7295         Fixes #410383.
7296
7297 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7298
7299         * generic-sharing.c: Fix memory leaks.
7300
7301         * class.c, class-internals.h: Make
7302         mono_class_inflate_generic_type_with_mempool() non-static.
7303
7304 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
7305
7306         * pedump.c (dump_verify_info): Dump full class name.
7307
7308 2008-07-24  Mark Probst  <mark.probst@gmail.com>
7309
7310         * generic-sharing.c: Removed some old code that didn't do anything.
7311
7312 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
7313         * profiler.c: Added runtime_initialized_event,
7314         mono_profiler_install_runtime_initialized and
7315         mono_profiler_runtime_initialized. This new hook tells the profiler
7316         when the runtime is sufficiently initialized to be able to call
7317         mono_thread_attach on the root appdomain.
7318         * profiler.h, profiler-private.h: Likewise.
7319
7320 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7321
7322         * verify.c (do_cast): Do boxing for generic arguments as well.
7323
7324         * class.c (is_nesting_type): Drop generic instantiations before
7325         checking for nesting.
7326
7327         * class.c (can_access_instantiation): Allow access to generic
7328         arguments.
7329
7330 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
7331
7332         * verify.c (verify_class_for_overlapping_reference_fields):
7333         On some cases, the field size might be zero, guard against that.
7334         Fix the explicit layout check to work as expected.
7335
7336 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
7337
7338         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
7339         mono_thread_resume () during shutdown, since the thread we want to abort
7340         might be suspended.
7341
7342 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
7343
7344         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
7345         warning.
7346
7347         * debug-mono-symfile.c: Fix a warning.
7348
7349         * mono-perfcounters.c (get_cpu_times): Fix a warning.
7350
7351         * object.c (mono_class_vtable): Check if exception_type is set, and return
7352         NULL as defined by the function comments.
7353
7354 2008-07-22  Mark Probst  <mark.probst@gmail.com>
7355
7356         * mempool.c: Use malloc for every single mempool allocation if the
7357         configure option is set.  This makes it easier to track mempool
7358         allocations with tools like Valgrind.
7359
7360 2008-07-22  Jb Evain  <jbevain@novell.com>
7361
7362         * reflection.c (create_dynamic_mono_image): emit the same
7363         metadata version that SL2 does when creating a SL2 image.
7364
7365 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
7366
7367         * icall-def.h:
7368         * icall.c: New icall System.Enum:get_hashcode. This function
7369         avoids the overhead of boxing the enum to the underlying type.
7370
7371 2008-07-21  Mark Probst  <mark.probst@gmail.com>
7372
7373         * reflection.c (mono_method_get_object): Don't let static RGCTX
7374         invoke wrappers get into MonoReflectionMethods.
7375
7376 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
7377
7378         * object-internals.h:
7379         * object.c: New mono_runtime_class_init_full function
7380         that makes throwing the exception optinal.
7381
7382         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
7383         for the case where the exception object is supplied.
7384
7385 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
7386
7387         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
7388         old ld versions.
7389
7390         Contributed under MIT/X11 license.
7391
7392 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
7393
7394         * string-icalls.c (ves_icall_System_String_InternalSplit):
7395         Optimize array allocation by caching the MonoClass of the
7396         array type.
7397
7398         * icall.c (ves_icall_Type_GetMethodsByName): Same.
7399
7400         * reflection.c (mono_param_get_objects): Same.
7401
7402 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
7403
7404         * icall-def.h:
7405         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
7406         It inflates the given type using the class context.
7407
7408 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
7409
7410         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
7411         the vtable if it already exists.
7412
7413         * object-internals.h: Add mono_class_try_get_vtable as part of the
7414         internal API.
7415
7416         * reflection.c (mono_type_get_object): Use the MonoObject from the
7417         vtable when possible. Reduces locking contention on reflection heavy
7418         code.
7419
7420 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
7421
7422         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
7423         g_bit_nth_msf () since that macro is not implemented in eglib.
7424
7425 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
7426
7427         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
7428         on platforms which do not support it.
7429
7430 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
7431
7432         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
7433
7434 2008-07-11  Martin Baulig  <martin@ximian.com>
7435
7436         * mono-debug-debugger.h
7437         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
7438
7439         * mono-debug-debugger.c
7440         (_mono_debugger_interruption_request): New global volatile variable.
7441         (mono_debugger_check_interruption): New public function.
7442
7443         * threads.c
7444         (mono_thread_current_check_pending_interrupt): Call
7445         mono_debugger_check_interruption().
7446         (mono_thread_interruption_checkpoint_request): Likewise.
7447
7448 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7449
7450         * verify.c: Add more type checks for loaded types. Verify the result
7451         handle from ldtoken.
7452
7453 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7454
7455         * loader.c (field_from_memberref): Don't crash if the field
7456         wasn't found.
7457
7458 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7459
7460         * verify.c: Verify if type and method instantiations
7461         don't have invalid VAR or MVAR arguments.
7462
7463 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7464
7465         * verify.c: Fix double free of function pointer list.
7466
7467 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
7468
7469         * object.c (mono_string_to_utf8): Comment the new code as it
7470         breaks under eglib.
7471
7472 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
7473
7474         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
7475
7476 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
7477
7478         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
7479           is not throw too many times.
7480
7481         Code is contributed under MIT/X11 license.
7482
7483 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
7484
7485         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
7486         debugging is turned off.
7487
7488 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
7489
7490         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
7491
7492 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7493
7494         * class-internals.h, class.c: Added new generic sharing option:
7495         Share only stuff in System.Collections.Generic, which is now the
7496         default.
7497
7498 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7499
7500         * generic-sharing.c, class-internals.h: New function for getting a
7501         generic method in a generic class given the corresponding method
7502         for a different instantiation of the class.  Partly refactored
7503         from mini-trampolines.c.
7504
7505         * class.c: Make sure generic methods have a class_inst if they are
7506         part of a generic class.
7507
7508         * metadata.c (mono_type_stack_size_internal): Handle type
7509         variables.
7510
7511 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7512
7513         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
7514         Signifies whether information on the this/vtable/mrgctx variable
7515         is available.
7516
7517 2008-07-04  Mark Probst  <mark.probst@gmail.com>
7518
7519         * object.c, object-internals.h, icall.c: New function
7520         mono_delegate_ctor_with_method(), which does the same as
7521         mono_delegate_ctor(), but takes an explicit method argument
7522         instead of taking the method from the jit info.
7523
7524         * marshal.c: When creating a delegate with an inflated method take
7525         the "this" argument as the target class for the castclass.
7526
7527 2008-07-03  Mark Probst  <mark.probst@gmail.com>
7528
7529         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
7530         mono_jit_info_table_find() to perform very badly in some cases.
7531
7532 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
7533
7534         * icall.c (type_from_typename): Handle 'string'.
7535
7536         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
7537         wrappers into the wrapper_hash, since the key is not a MonoMethod.
7538
7539 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
7540
7541         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
7542
7543         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
7544         number of available managed allocator types.
7545
7546         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
7547         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
7548
7549 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
7550
7551         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
7552         which is a low level lock protecting just the 'jit_code_hash' hash table.
7553
7554         * domain.c: Initialize+cleanup jit_code_hash_lock.
7555         
7556 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
7557
7558         * coree.c (mono_load_coree): Set coree_module_handle global variable only
7559         after initialization.
7560
7561         * coree.h: Make MonoFixupExe internal.
7562
7563         Contributed under MIT/X11 license.
7564
7565 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
7566
7567         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
7568         because that is platform independent. Check NumberOfRvaAndSizes in PE32
7569         as well.
7570         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
7571         image being loaded is a CLI image and _CorValidateImage gets called.
7572
7573         * coree.h: Add MonoLoadImage.
7574
7575         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
7576         instead of LoadLibrary.
7577
7578         Contributed under MIT/X11 license.
7579
7580 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
7581
7582         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
7583         for any primitive type.
7584
7585 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
7586
7587         * object.c (mono_array_new_specific): Optimize this and the other allocation
7588         functions a bit.
7589         
7590         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
7591         domains too if mono_dont_free_domains is set.
7592
7593         * domain-internals.h (mono_dont_free_domains): New internal option controlling
7594         whenever to free appdomain data after it has been unloaded.
7595
7596         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
7597         
7598 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
7599
7600         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
7601         (mono_method_get_equivalent_method): Fix a warning.
7602
7603         * object.c (mono_message_init): Avoid looking up array types for each call.
7604
7605 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
7606
7607         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
7608         call.
7609
7610         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
7611         even more.
7612
7613         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
7614         each iteration.
7615
7616         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
7617         fields of an enum.
7618
7619 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
7620
7621         * object.c (mono_value_box): Fix boxing of nullables.
7622
7623 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
7624
7625         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
7626         mono_module_handle that is defined by the linker; no initialization required.
7627         * coree.h: Remove mono_module_handle, add __ImageBase, update
7628         mono_image_open_from_module_handle.
7629         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
7630         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
7631         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
7632         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
7633         to 4 GB away from image base address. IA64 version is not tested but was very
7634         easy to implement and should work if we ever need it.
7635         * domain.c (mono_init_internal): Avoid system error message boxes.
7636         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
7637         with has_entry_point. Handle do_mono_image_load fauilre correctly.
7638         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
7639         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
7640         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
7641
7642         Contributed under MIT/X11 license.
7643
7644 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7645
7646         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
7647         as part of the private mono API.
7648         
7649         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
7650         Do proper argument checking for methods that belong to generic classes.
7651         Do proper type resolution for GMFH/2.
7652         Fixes #377324.
7653         
7654 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7655
7656         * verify.c (do_switch): Fix a memory corruption bug with
7657         the jump index is out of bound.
7658
7659 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7660
7661         * verify.c: Disable debug code.
7662
7663 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
7664
7665         * reflection.c (mono_image_get_methodbuilder_token): Use
7666         mono_image_get_methodspec_token_for_generic_method_definition
7667         instead of mono_image_get_memberref_token. We cache more memberef
7668         entries now.
7669
7670 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
7671
7672         * verify.c: Inflate exception clause types.
7673         Fixes #402606.
7674         
7675 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
7676
7677         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
7678         name.
7679
7680         * reflection.c (mono_image_get_ctorbuilder_token): Same.
7681
7682         * reflection.c (mono_image_create_method_token): Same.
7683
7684 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
7685
7686         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
7687         It does the same as mono_image_get_methodref_token but works on
7688         MethodBuilder.
7689
7690         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
7691         and always generate a methodspec. This follows the old behavior and fixes
7692         the regressions in System.Core. 
7693
7694 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
7695
7696         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
7697         don't event mono_class_get () succeeds. Fixes #402182.
7698
7699 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
7700
7701         * metadata-internals.h: Added MonoDynamicImage::methodspec
7702         hashtable to store methodspec tokens created for MethodBuilders.
7703
7704         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
7705         MethodBuilders as open instantiations if a methodspec was requested.
7706
7707         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
7708
7709         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
7710
7711         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
7712
7713         Fixes bug #349190.
7714
7715 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
7716
7717         * loader.c (method_from_methodspec): Avoid crashing if the
7718         method lookup fails.
7719
7720 2008-06-20  Dick Porter  <dick@ximian.com>
7721
7722         * socket-io.c (get_socket_assembly): Cope with Moonlight network
7723         classes being in a different assembly.  Fixes bug 399184.
7724
7725 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
7726
7727         * loader.c (mono_loader_init): Make this callable multiple times.
7728         (mono_dllmap_insert): Call mono_loader_init () so this works even before
7729         the runtime is initialized. Fixes #401755.
7730
7731 2008-06-19  Dick Porter  <dick@ximian.com>
7732
7733         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
7734         Fixes bug 349688.
7735
7736 2008-06-19  Dick Porter  <dick@ximian.com>
7737
7738         * socket-io.c:
7739         * icall-def.h: Implement Socket generic Send() and Receive()
7740         methods.  Fixes bug 395168.
7741
7742 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
7743
7744         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
7745
7746         Contributed under MIT/X11 license.
7747
7748 2008-06-18  Martin Baulig  <martin@ximian.com>
7749
7750         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
7751         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
7752         set to 80.0.  The debugger <-> runtime interface is now frozen as
7753         well.   
7754
7755         * mono-debug.c
7756         (mono_debug_debugger_version): Bump to 4.
7757
7758 2008-06-18  Martin Baulig  <martin@ximian.com>
7759
7760         * debug-mono-symfile.c
7761         (load_symfile): Don't check the minor version.
7762
7763         * debug-mono-symfile.h: Bump the version number to 50.0.
7764
7765 2008-06-18  Martin Baulig  <martin@ximian.com>
7766
7767         * debug-mono-symfile.c
7768         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
7769         minimum required version.
7770
7771 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
7772
7773         * reflection.c (mono_custom_attrs_from_property): Fix support for
7774         retriveving cattrs of dynamic inflated generic types.
7775
7776         * reflection.c (mono_custom_attrs_from_event): Same.
7777
7778         * reflection.c (mono_custom_attrs_from_field): Same;
7779
7780         * reflection.c (typebuilder_setup_events): Same cattrs of events.
7781
7782         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
7783         Moved to metadata.c.
7784
7785         * metadata.c: New functions to retrive the equivalent field, event
7786         of property from the generic type definition.
7787
7788         * metadata-internals.h: Added new functions from metadata.c.
7789
7790 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
7791
7792         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
7793         to cached in a mempool is used.
7794
7795         * metadata.c (free_generic_class): In some situations field generic_info type
7796         is not properly dup'ed and leads to double free'ing.
7797
7798         Fixes #400643.
7799
7800 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7801
7802         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
7803         this arguments (will be needed later for generic methods).
7804         Collect stats.
7805
7806 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7807
7808         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
7809         Create a static RGCTX invoke wrapper for methods which require it.
7810
7811 2008-06-17  Mark Probst  <mark.probst@gmail.com>
7812
7813         * object.c, class-internals.h: New function for checking whether
7814         an individual field is special static.
7815
7816 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
7817
7818         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
7819         linear search since the table is sorted.
7820
7821         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
7822         Fixes #324180.
7823
7824 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
7825
7826         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
7827         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
7828
7829         * gc.c (mono_domain_finalize): Allow an infinite timeout.
7830
7831         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
7832         
7833         * threads.c (mono_thread_request_interruption): Get rid of locking, use
7834         InterlockedCompareExchange to query and modify 
7835         thread->interruption_requested.
7836
7837         * object-internals.h (struct _MonoThread): Change interruption_requested
7838         to a gint32 so it can be modified by atomic operations. Add 
7839         'critical_region_level' from the managed side, change small_id to a guint32,
7840         add new set of 'unused' fields.
7841
7842         * appdomain.c: Bump corlib version.
7843
7844 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
7845
7846         * class.c (mono_class_from_name): Search modules as well. Fixes
7847         #322332.
7848
7849 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7850
7851         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
7852         templates.  Templates are generalized with an additional type_argc
7853         argument.  RGCTX templates have type_argc==0, MRGCTX templates
7854         have type_argc>0.
7855
7856         * domain-internals.h, domain.c: New hash table for looking up
7857         MRGCTXs.
7858
7859         * metadata.c, metadata-internals.h: Rename hash and equal
7860         functions for MonoGenericInst's and make them public.
7861
7862         * class-internals.h: New data structures for the MRGCTX.  Macros
7863         for distinguishing slots in the RGCTX and the MRGCTX.
7864
7865 2008-06-13  Mark Probst  <mark.probst@gmail.com>
7866
7867         * object.c (mono_method_get_imt_slot): Put the same methods of
7868         different instantiations of the same generic interface in the same
7869         IMT slots, to make generic sharing simpler.
7870
7871 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
7872
7873         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
7874
7875         * metadata.c (mono_metadata_field_info_with_mempool): Added.
7876         This function works just like mono_metadata_field_info, but
7877         accept a mempool as argument to be used allocating memory.
7878
7879         * marshal.c (mono_marshal_load_type_info): Use new function
7880         to load marshal data into image mempool.
7881
7882 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
7883
7884         * class.c (mono_class_inflate_generic_type_with_mempool):
7885         This function allows to inflate a generic type using
7886         a mempool.
7887
7888         * class.c (inflate_generic_type): Take a mempool as argument
7889         and use it to do type dup'ing.
7890
7891         * class.c (mono_class_setup_fields): Field type for generic
7892         generic classes are allocated from the image mempool.
7893
7894         * metadata.c (free_generic_class): Inflated field type is
7895         now allocated in the image mempool.
7896
7897 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
7898
7899         * threads.c (thread_cleanup): Free MonoThread::name.
7900
7901 2008-06-12  Marek Habersack  <mhabersack@novell.com>
7902
7903         * appdomain.c (ensure_directory_exists): avoid unnecessary
7904         mkdir(2) calls when the shadow directory already exists.
7905         (mono_make_shadow_copy): copy also satellite assemblies from the
7906         private bin directories.
7907
7908 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
7909
7910         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
7911         
7912         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
7913         a page boundary. Fixes #396219.
7914
7915 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7916
7917         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
7918         due to double-checked locking.
7919
7920 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7921
7922         * assembly.c (build_assembly_name): Release memory on failure.
7923
7924         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
7925
7926 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7927
7928         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
7929         memory on failure.
7930
7931 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7932
7933         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
7934         memory on failure.
7935
7936 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7937
7938         * loader.c (field_from_memberref): Check if field signature type is equal
7939         to the non-inflated type of the field. Fixes #398980.
7940
7941 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
7942
7943         * assembly.c (mono_assembly_load_from_full): Call 
7944         mono_assembly_load_friends () outside the assemblies lock, since it can
7945         acquire the loader lock. Fixes #323696.
7946
7947         * reflection.c (resolve_object): Inflate the inst with the context for
7948         FieldOnTypeBuilderInst. Fixes #399010.
7949
7950 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7951
7952         * reflection.c (mono_image_get_field_on_inst_token): Don't
7953         inflate the field to encode it's signature. If it's a
7954         VAR or MVAR it should stay that way in the signature.
7955         Fixes #399047.
7956
7957 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7958
7959         * reflection.c (resolve_object): Release memory of inflated types.
7960
7961 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7962
7963         * loader.c (mono_method_get_signature_full): Remove assert about
7964         loading a methodspec to a generic method. We have such methods, such as
7965         System.Threading.Interlocked::CompareExchange<T>.
7966         This assert was removed since it crashes the verifier when it checks
7967         methods calling CompareExchange<T>.
7968
7969 2008-06-10  Marek Safar  <marek.safar@gmail.com>
7970
7971         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
7972         of Type array and not MonoType.
7973
7974 2008-06-10  Marek Habersack  <mhabersack@novell.com>
7975
7976         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
7977         <lupus@ximian.com>
7978
7979 2008-06-10  Martin Baulig  <martin@ximian.com>
7980
7981         * debug-mono-symfile.h
7982         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
7983         changes to the file format, but we were generating incorrect
7984         source file indices in the line number table due to a bug, which
7985         made backtraces report an incorrect source file.
7986
7987 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
7988
7989         * mono-debug.c: Moved mono_debug_free_method_jit_info from
7990         mini/debug-mini.c to here.
7991
7992         * mono-debug.c (il_offset_from_address): Free memory from find_method.
7993
7994         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
7995         use it to release structs returned by mono_debug_find_method.
7996
7997 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
7998
7999         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
8000         since it needs to set method->slot for all interface methods.
8001
8002 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8003
8004         * class-internals.h: Forgot to add.
8005
8006 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8007
8008         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
8009
8010         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
8011         Lookup the custom attributes from property_hash.
8012
8013         * reflection.c (mono_save_custom_attrs): Save the custom attributes
8014         in property_hash. Allocate all data using the image mempool.
8015
8016         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
8017         for dynamic_custom_attrs to checks if the image is dynamic.
8018
8019 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8020
8021         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
8022         assemblies array.
8023         
8024         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
8025         runtime functions while holding the domain assemblies lock.
8026
8027 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8028
8029         * verify.c: Reapplied the last bit of the reverted changes.
8030
8031 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
8032
8033         * verify.c: Reapplied more of the reverted changes.
8034
8035 2008-06-09  Martin Baulig  <martin@ximian.com>
8036
8037         * debug-mono-symfile.c (load_symfile): Check the major version
8038         first; if it's wrong, don't print the minor version in the error message.
8039
8040 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
8041
8042         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
8043         lock instead of the domain lock to avoid deadlocks, since the thread might
8044         already hold the loader lock.
8045
8046         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
8047         (mono_thread_attach): Ditto.
8048
8049         * monitor.c: Use a TLS variable for holding the current thread id instead
8050         of calling pthread_self ().
8051         (mono_monitor_init_tls): New internal function to initialize the TLS
8052         variable.
8053         (mono_monitor_try_enter_internal): Put the owner == id check after the
8054         owner == 0 check.
8055
8056         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
8057         missed optimizations when using gcc-4.3.
8058
8059 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
8060
8061         * reflection.c (mono_dynamic_image_free): Free the memory
8062         used by MonoGenericParam in MonoDynamicImage::gen_param.
8063
8064         * reflection.c (mono_reflection_setup_generic_class): Allocate
8065         container from mempool.
8066
8067         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
8068         container from mempool.
8069
8070 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8071
8072         * threads.c (mono_set_pending_exception): New internal function to set the
8073         pending exception of the current thread.
8074         (mono_thread_get_and_clear_pending_exception): Check for 
8075         thread->pending_exception as well.
8076
8077         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
8078
8079         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
8080         it can trigger a collection.
8081
8082 2008-06-06  Martin Baulig  <martin@ximian.com>
8083
8084         Merged the `debugger-kahalo' branch.
8085
8086         * mono-debug.h
8087         (MONO_DEBUGGER_VERSION): Bumped to 72.
8088
8089         * debug-mono-symfile.h
8090         (MonoSymbolFileMethodIndexEntry): Removed.
8091         (MonoSymbolFileMethodEntry): New public typedef.
8092         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
8093         (MonoSymbolFileSourceEntry): Remove everything except `index' and
8094         `data_offset'.
8095         (MonoSymbolFileMethodEntry): Removed.
8096         (MonoSymbolFileLexicalBlockEntry): Removed.
8097         (MonoSymbolFileLineNumberEntry): Removed.
8098         (MonoDebugLexicalBlockEntry): Removed.
8099         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
8100         removed `num_il_offsets' and `il_offsets'.
8101         (MonoSymbolFile): Replace `version' with `major_version' and
8102         `minor_version'.
8103         (MONO_SYMBOL_FILE_VERSION): Replace with
8104         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
8105         `MONO_SYMBOL_FILE_MINOR_VERSION'.
8106
8107         * debug-mono-symfile.c
8108         (mono_debug_symfile_lookup_location): Add support for the new line
8109         number table format.
8110
8111 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8112
8113         * metadata.c (free_generic_class): Release the inflated
8114         MonoClass of dynamic generic classes if it's not a generic
8115         type definition.
8116
8117 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8118
8119         * verify.c: Reapplied more of the reverted changes.
8120
8121 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8122
8123         * reflection.c (lookup_custom_attr): Clean the cached flag or
8124         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
8125         for SRE types.
8126
8127 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
8128
8129         * verify.c: Reapplied a small part of the reverted changes.
8130
8131 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
8132
8133         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8134
8135         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
8136         previously in managed code.
8137         (mono_monitor_exit): Ditto.
8138         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
8139
8140         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
8141         the managed definition.
8142
8143 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8144
8145         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
8146
8147 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8148
8149         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
8150         
8151         * monitor.c: Add some micro optimizations.
8152
8153         * icall.c (type_from_typename): Handle 'bool'.
8154
8155 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
8156
8157         * verify.c: Implement constructor verification per P III 1.8.1.4.
8158         Fixes #396716.
8159
8160 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
8161
8162         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
8163         holding the assemblies lock here too.
8164
8165 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8166
8167         * verify.c: Kill stack_top function.
8168
8169 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8170
8171         * verify.c: Kill stack_get function.
8172
8173 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8174
8175         * verify.c (mono_method_verify): Last change broke the build. Fixed.
8176
8177 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
8178
8179         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
8180         more reliable.
8181
8182         * verify.c (mono_method_verify): Inflate params and locals to avoid
8183         mismatch when checking for compatibility.
8184
8185 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
8186
8187         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
8188         Length prefix should be size in bytes. Fix bug #339530.
8189         
8190         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
8191         Length prefix should be size in bytes. Fix bug #339530.
8192
8193         Code is contributed under MIT/X11 license.
8194
8195 2008-06-05  Bill Holmes <billholmes54@gmail.com>
8196
8197         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
8198
8199         Contributed under MIT/X11 license.
8200
8201 2008-06-05  Martin Baulig  <martin@ximian.com>
8202
8203         * mono-debug-debugger.c
8204         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
8205
8206 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
8207
8208         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
8209         while holding the assemblies lock to prevent deadlocks. Handle the case
8210         where the search hook returns NULL but the assembly was still loaded.
8211         Fixes #323696.
8212
8213         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
8214         modify domain state.
8215
8216 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
8217
8218         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
8219         * Makefile.am (pedump_LDADD): Post-process object files and
8220         add dtrace-generated object file, if necessary.
8221
8222         Code is contributed under MIT/X11 license.
8223
8224 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8225
8226         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
8227
8228 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8229
8230         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
8231
8232 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8233
8234         * threads.c: Try to free everything from the delayed free table
8235         when shutting down threads, and set the variable to NULL after the
8236         table is freed so that calling
8237         mono_thread_hazardous_try_free_all() when shutting down the root
8238         domain doesn't crash.
8239
8240 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
8241
8242         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
8243         the caller if resulting type was inflated.
8244
8245         * class.c (mono_class_create_from_typespec): Free the MonoType if it
8246         was inflated.
8247
8248         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
8249
8250
8251 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
8252
8253         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
8254         class library tests.
8255
8256         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
8257         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
8258         #396989.
8259
8260 2008-06-04  Mark Probst  <mark.probst@gmail.com>
8261
8262         * domain.c, domain-internals.h: The JIT infos are now freed by the
8263         JIT info table code.  They are freed immediately if there only a
8264         single JIT info table in circulation.  If there is more, the free
8265         is delayed via a queue.
8266
8267         * threads.c, threads-types.h: New hazard pointer function for
8268         freeing all freeable delayed items in one sitting.
8269
8270 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8271
8272         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
8273
8274         * reflection.c (typebuilder_setup_properties): Same.
8275
8276         * reflection.c (typebuilder_setup_events): Same.
8277
8278 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8279
8280         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
8281         and use it for allocating memory.
8282
8283         * reflection.c (mono_marshal_spec_from_builder): Same.
8284
8285         * reflection.c: Change code to use new signatures.
8286
8287         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
8288
8289 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8290
8291         * decimal.c (rescale128): Put back one line which was accidently commented
8292         out.
8293         
8294         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
8295         to cause crashes.
8296
8297 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8298
8299         * reflection.c (mono_reflection_generic_class_initialize): Name must
8300         be always malloc'ed so we can free it later on. Do this for field, property
8301         and event.
8302
8303         * metadata.c (free_generic_class): Free field, property and event names.
8304
8305 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8306
8307         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
8308         instead of g_memdup.
8309
8310         * reflection.c (typebuilder_setup_fields): Same.
8311
8312 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8313
8314         * decimal.c (rescale128): Optimize this function a bit more.
8315
8316 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8317
8318         * metadata.c (free_generic_class): Release some memory from
8319         SRE generic classes.
8320
8321 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
8322
8323         * reflection.c (mono_image_get_generic_field_token): No reference
8324         to name is kept, free it.
8325
8326         * reflection.c (mono_reflection_generic_class_initialize): Free
8327         more memory of the inflated field.
8328
8329 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
8330
8331         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
8332         code.
8333
8334 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8335
8336         * reflection.c (mono_dynamic_image_free): Release memory used by
8337         MonoDynamicImage::array_methods elements.
8338
8339         * reflection.c (assembly_add_win32_resources): Release memory after
8340         encoding.
8341
8342 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8343
8344         * decimal.c (log2_32): Use an optimized version for this function too.
8345         
8346         * decimal.c (log2_64): Fix this on 32 bit machines.
8347
8348 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
8349
8350         * class.c (mono_dup_array_type): Implement allocation using a mempool.
8351
8352         * class.c (mono_metadata_signature_deep_dup): Same.
8353
8354         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
8355         a mempool.
8356
8357         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
8358
8359         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
8360
8361         * metadata-internals.h: Added mono_metadata_signature_dup_full.
8362
8363         * class-internals.h: Update signatures to take a MonoMemPool.
8364
8365 2008-06-02  Dick Porter  <dick@ximian.com>
8366
8367         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
8368         * icall-def.h: Add
8369         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
8370         FormatMessage API to get the error text.  Fixes bug 321827.
8371
8372 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
8373
8374         * decimal.c: Add some micro optimizations to make decimal operations faster.
8375
8376 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
8377
8378         * reflection.c (method_encode_clauses): Take a mempool
8379         as parameter and use it to allocate the clause array.
8380
8381         * reflection.c (mono_image_get_field_on_inst_token): Free
8382         the inflated type after encoding it.
8383
8384         * reflection.c (mono_dynamic_image_free): Free each element
8385         of MonoDynamicImage::gen_params.
8386
8387         * reflection.c (reflection_methodbuilder_to_mono_method):
8388         Allocate the generic param array from the mempool.
8389         Allocate signature params from the mempool.
8390
8391         * reflection.c (mono_reflection_generic_class_initialize):
8392         Free inflated fields after been used.
8393
8394 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
8395
8396         * icall.c: Reapply the memory leak fixes as they no
8397         longer make mono crash.
8398
8399 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
8400
8401         * reflection.c (mono_type_get_object): Don't store the suplied
8402         MonoType with type_hash. A caller which pass a type that
8403         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
8404         might end with a pointer to freed memory.
8405         The solution is to use byval_arg or this_arg from the associated
8406         MonoClass of the supplied type.
8407
8408 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
8409
8410         * icall.c: Revert the rest of the last change as it breaks the build too.
8411
8412 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8413
8414         * icall.c: Revert a leak fix as it's breaking the build.
8415
8416 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8417
8418         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
8419
8420 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8421
8422         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
8423
8424 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
8425
8426         * icall.c: Fix some memory leaks.
8427
8428 2008-05-29  Dick Porter  <dick@ximian.com>
8429
8430         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
8431         async socket operations from the pending list when a socket
8432         closes.  Leaving it until the threadpool services the event
8433         exposes a race condition when a socket descriptor is reused.
8434         Fixes bug 377589.
8435
8436 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8437
8438         * object.c: Fix negative index check for array alocation.
8439
8440 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8441
8442         * icall.c, marshal.c: Delegate wrappers should skip visibility.
8443         This check is performed by the verifier for IL created delegates
8444         and by Delegate::CreateDelegate for programatically created ones.
8445         Fixes #372406.
8446
8447 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8448
8449         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
8450         Fix code to use mono_array_size_t instead of int.
8451
8452         Based on patch by Luis F. Ortiz.
8453         Contributed under X11 license.
8454         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8455
8456 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8457
8458         * icall.c: Added ves_icall_System_Array_GetLongLength and
8459         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
8460         arrays.
8461
8462         * icall.h: Export both new functions.
8463
8464         Based on patch by Luis F. Ortiz.
8465         Contributed under X11 license.
8466         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8467
8468 2008-05-28  Martin Baulig  <martin@ximian.com>
8469
8470         The debugger now requires exactly r103463.
8471
8472         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
8473         This version is not supported by the debugger, wait for 72.
8474
8475 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8476
8477         * object.h: Changed array related functions to use
8478         mono_array_size_t instead of guint32. Forgot to commit this file.
8479
8480         Patch by Luis F. Ortiz.
8481         Contributed under X11 license.
8482         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8483
8484
8485 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
8486
8487         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
8488         don't define it. Use the number literal instead.
8489
8490 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8491
8492         * icall.c: Changed array related functions to use
8493         mono_array_size_t instead of guint32.
8494
8495         * icall.c (ves_icall_System_Array_GetLength): Check for length
8496         overflow under MONO_BIG_ARRAYS.
8497
8498         Based on patch by Luis F. Ortiz.
8499         Contributed under X11 license.
8500         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8501
8502 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8503
8504         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
8505
8506         Based on patch by Luis F. Ortiz.
8507         Contributed under X11 license.
8508         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8509
8510 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8511
8512         * object.c, object.h: Changed array related functions to use
8513         mono_array_size_t instead of guint32.
8514
8515         Patch by Luis F. Ortiz.
8516         Contributed under X11 license.
8517         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8518
8519 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
8520
8521         * object.h: Introduced mono_array_size_t typedef. This must be used
8522         in all places an array length is expected. This is 64bits wide if
8523         MONO_BIG_ARRAYS is enabled.
8524
8525         Patch by Luis F. Ortiz.
8526         Contributed under X11 license.
8527         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
8528
8529 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
8530
8531         * security-manager.c class.c: Set the class exception info by calling
8532         mono_class_set_failure ().
8533
8534         * class.c (mono_class_get_exception_data): New accessor function.
8535         (mono_class_set_failure): Store exception_data in the property hash.
8536
8537         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
8538         the struct as a property.
8539
8540         * loader.c (mono_get_method_full): Store the lookup result for method
8541         tokens in method_cache, the others in methodref_cache to decrease the memory
8542         usage of hash tables.
8543
8544         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
8545         (mono_image_init): method_cache is lazy inited now.
8546
8547         * metadata-internals.h (struct _MonoImage): Change method_cache to
8548         a MonoValueHashTable, add a separate methodref_cache.
8549
8550 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
8551
8552         * number-formatter.h: Fix tables to avoid arithemtic overflow in
8553           Double.ToString as exposed by Bug #383531.
8554
8555 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
8556
8557         * number-formatter.h: Make some tables static.
8558
8559         * class.c (mono_method_set_generic_container): New accessor function.
8560         (mono_method_get_generic_container): Ditto.
8561
8562         * class-internals.h (struct _MonoMethod): Remove rarely used 
8563         'generic_container' field, store it in the property hash instead. Add 
8564         'is_generic' boolean field instead.
8565
8566         * image.c (mono_image_init): Initialize property_hash.
8567         (mono_image_close): Destroy property_hash.
8568
8569         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
8570         hold rarely used fields of runtime structures belonging to this image.
8571
8572         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
8573         to get/set method->generic_container.
8574
8575         * loader.c (mono_get_method_from_token): Avoid loading the method header for
8576         generic methods.
8577
8578 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
8579
8580         * class.c (mono_class_inflate_generic_method_full): Don't increase
8581         mono_stats.inflated_method_count for methods found in the cache.
8582
8583         * threads.c (mono_thread_request_interruption): Add a comment about 
8584         QueueUserAPC ().
8585
8586 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
8587
8588         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
8589         interface_offsets_packed table.
8590         
8591         * class.c (mono_class_init): Remove some dead code.
8592
8593         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
8594         mono_class_setup_vtable () when CAS is active to detect security problems.
8595
8596 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
8597
8598         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
8599
8600         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
8601         parameters as it's irrelevant for delegate checking.
8602
8603 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
8604
8605         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
8606
8607         * class.c (mono_class_init): Control the creation of a generic vtable using
8608         a global which is true by default, but set to false by the runtime startup code.
8609         
8610         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
8611         Disabled for now since it breaks the embedding API.
8612         Move the setup of class->methods for arrays to mono_class_setup_methods ().
8613         (mono_class_setup_methods): Add a memory barrier.
8614
8615         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
8616         when mono_class_init () doesn't compute the generic vtable.
8617         
8618 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
8619         * profiler.c: Added mono_profiler_install_statistical_call_chain,
8620         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
8621         to support call chains (backtrace) in the stat profiler.
8622         * profiler.c, profiler-private.h: Likewise.
8623
8624 2008-05-22  Mark Probst  <mark.probst@gmail.com>
8625
8626         * generic-sharing.c: Init generic class when a method of it is
8627         requested via a runtime generic context.
8628
8629 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
8630
8631         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
8632
8633         * reflection.c (mono_type_get_object): Add a FIXME.
8634
8635         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
8636
8637         * class.c (mono_class_get_method_by_index): New helper function, returning an
8638         entry in the class->methods array.
8639
8640 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
8641
8642         * class.c (mono_class_init): Only do the array optimization for szarrays. 
8643         Avoid creating a generic vtable for generic instances as well.
8644         (mono_class_get_method_from_name_flags): Don't search in the metadata for
8645         generic instances.
8646
8647 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
8648
8649         * loader.c (mono_get_method_constrained): Inflate the signature
8650         with class context. Fix #325283.
8651
8652 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
8653
8654         * object.c (mono_class_create_runtime_vtable): Add a comment.
8655
8656         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
8657         where needed.
8658         (setup_interface_offsets): Handle the case when this is called twice for arrays.
8659         (mono_class_setup_vtable_general): Add an assert.
8660         (mono_class_init): Avoid creating a generic vtable for arrays.
8661
8662         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
8663         here, let mono_class_init () do that.
8664
8665         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
8666         interfaces in mscorlib.
8667
8668         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
8669         interfaces. Add some comments.
8670         (mono_class_init): Call mono_class_setup_methods () here since it is no
8671         longer called by mono_class_setup_vtable ().
8672
8673         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
8674         not set in class->vtable.
8675         (mono_class_create_runtime_vtable): Reenable the disabled code.
8676
8677         * object.c (mono_class_create_runtime_vtable): Disable the last change for
8678         now as it causes some test failures.
8679
8680         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
8681         if using the vtable trampoline. Also remove some strange code which put the
8682         generic methods themselves into the vtable slots. Remove the AOT init_vtable
8683         stuff as it is no longer needed.
8684
8685 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
8686
8687         * pedump.c: Give make --verify all option check code as well.
8688         Using --verify code won't check for metadata now.
8689
8690 2008-05-19  Martin Baulig  <martin@ximian.com>
8691
8692         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
8693
8694         * mono-debug.c
8695         (_mono_debug_using_mono_debugger): New global variable; it's set
8696         directly by the debugger, so mono_debug_using_mono_debugger() also
8697         works after attaching.
8698
8699 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
8700
8701         * object.c (mono_class_create_runtime_vtable): Use memory barriers
8702         as we do double checked locking on MonoClass::runtime_info and
8703         MonoClassRuntimeInfo::domain_vtables.
8704
8705 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
8706
8707         * debug-helpers.c (print_field_value): Fix a warning.
8708
8709 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
8710
8711         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
8712         set in the AOT case.
8713
8714 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
8715
8716         * class.c (mono_class_setup_vtable_general): Use memory barriers
8717         as we do double checked locking on MonoClass::vtable.
8718
8719 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
8720
8721         * reflection.c (resolve_object): Inflate only if the generic context
8722         is not null. Fixes #389886.
8723
8724 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
8725
8726         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
8727         instead of g_free.
8728
8729         Code is contributed under MIT/X11 license.
8730
8731 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
8732
8733         * class.c: Revert unrelated change.
8734
8735 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
8736
8737         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
8738         a generic instantiation, use mono_class_from_mono_type instead of playing
8739         with MonoType directly.
8740
8741 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
8742
8743         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
8744         checks must ignore generic instantiations, so mono_class_has_parent is not
8745         suitable. Fixes #390128.
8746
8747 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
8748
8749         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
8750         it to avoid registering tokens during metadata generation. Fixes #390023.
8751
8752 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
8753
8754         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
8755         consistent.
8756
8757         Contributed under MIT/X11 license.
8758
8759 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
8760
8761         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
8762         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
8763         to fixup the EXE image.
8764         (mono_cleanup): Use mono_close_exe_image.
8765         (mono_close_exe_image): New function.
8766         * image.c: Include "marshal.h".
8767         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
8768         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
8769         counting when the image is loaded outside of mono_image_open_full. Set status
8770         based on GetLastError.
8771         * coree.c: Include required headers. Add init_from_coree.
8772         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
8773         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
8774         (_CorExeMain): Set init_from_coree.
8775         (CorExitProcess): Only call ExitProcess for now.
8776         (CorBindToRuntimeEx): New stub implementation.
8777         (CorBindToRuntime): New function.
8778         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
8779         (MonoFixupExe): ILONLY executables require no fixups.
8780         (mono_set_act_ctx): New function to set activation context.
8781         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
8782         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
8783         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
8784         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
8785         as MONO_INTERNAL.
8786         * domain-internals.h: Add mono_close_exe_image.
8787
8788         Contributed under MIT/X11 license.
8789
8790 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
8791
8792         * metadata.c (mono_metadata_compute_size): Correctly calculate field
8793         size for generic param and event tables. Fixes #388977.
8794
8795 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
8796
8797         * loader.c (mono_method_signature): Use memory barriers because of the double
8798         checked locking pattern.
8799
8800         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
8801         aborting or aborted as well. Fixes #376391.
8802         
8803         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
8804         existing runtime state in the Suspend handler during shutdown.
8805
8806 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
8807
8808         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
8809
8810         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
8811         which are starting up or shutting down.
8812
8813         * threads.c (mono_threads_set_shutting_down): Don't return a value since
8814         this function never returns if the runtime is already shutting down.
8815
8816         * icall.c (ves_icall_System_Environment_Exit): Update after 
8817         mono_threads_set_shutting_down () signature change.
8818         
8819 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
8820
8821         * class.c: Added can_access_instantiation to verify if the instantiation
8822         is visible. Fix access check for nested types as they returned TRUE
8823         before doing type and generic instantiation visibility checks.
8824
8825 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
8826
8827         * reflection.c (mono_reflection_create_generic_class): The created type
8828         must have a different container from its TypeBuilder. Otherwise they
8829         will end sharing generic arguments, which is wrong.
8830
8831         Due to the sharing, making a generic instance of the created type using
8832         the TypeBuider generic arguments resulted in the generic type definition
8833         been returned, which is wrong as well.
8834
8835         As a bonus the code was leaking the type_params array. This memory should
8836         be allocated from the image mempool.
8837
8838         This fixes bug #354047.
8839
8840 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
8841
8842         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
8843         to here         as they are now used in assembly.c new code.
8844         Added a skipverification flag to MonoAssembly.
8845         New internal function mono_assembly_has_skip_verification.
8846
8847         * assembly.c: New function mono_assembly_has_skip_verification. It checks
8848         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
8849         part of #387274.
8850
8851 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
8852
8853         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
8854         needed. Fixes #387034.
8855
8856         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
8857
8858 2008-05-06  Miguel de Icaza  <miguel@novell.com>
8859
8860         * assembly.c (mono_assembly_load_reference): Prevent crash while
8861         disassembling Silverlight 2.0 executables while we still do not
8862         have GACed libraries.
8863
8864 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
8865
8866         * reflection.c: Special case generic type definitions as well. Fixes #383444.
8867
8868 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
8869
8870         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
8871         of the dynamic case. Fixes #387404.
8872
8873 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
8874
8875         *verify.c (mono_verifier_is_class_full_trust): If under
8876         verify_all and the verifier mode was not set, only
8877         gac and corlib types are fulltrust. This makes --verify-all
8878         usable to detect unverifiable code, which is the expected
8879         use case.
8880
8881 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
8882
8883         * verify.h: Ops, commited the header with debug
8884         enabled.
8885
8886 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
8887
8888         * verify.c (merge_stack): Use the new value on unverifiable
8889         stack merges.
8890
8891         * verify.c (verify_type_compatibility_full): Comparison
8892         of nullable types can't use mono_class_is_assignable_from.
8893
8894         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
8895         that makes all verification errors be reported.
8896
8897         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
8898         mono_method_verify.
8899
8900 2008-05-05  Robert Jordan  <robertj@gmx.net>
8901
8902         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
8903         support for value types. See #386415.
8904
8905         * object.c: comments.
8906
8907         Code is contributed under MIT/X11 license.
8908
8909 2008-05-05  Martin Baulig  <martin@ximian.com>
8910
8911         * debug-mono-symfile.h
8912         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
8913         for old pre-terrania symbol files.
8914
8915 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
8916
8917         * mono-config.c: Add ppc64 architecture.
8918
8919         Code is contributed under MIT/X11 license.
8920
8921 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
8922
8923         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
8924           PPC64 uses function descriptors as well.
8925
8926         Code is contributed under MIT/X11 license.
8927
8928 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
8929
8930         * object.c (compute_class_bitmap): Ignore literal static fields.
8931
8932         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
8933         var has an invalid format.
8934         (describe_ptr): Add some sanity checks for the vtable.
8935         (add_nursery_frag): Clear unused nursery fragments.
8936         (major_collection): Clear all remaining nursery fragments.
8937
8938 2008-05-03  Robert Jordan  <robertj@gmx.net>
8939
8940         * image.c, metadata-internals.h: add thunk_invoke_cache.
8941
8942         * marshal.c, marshal.h: implement
8943         mono_marshal_get_thunk_invoke_wrapper ().
8944
8945         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
8946
8947         Code is contributed under MIT/X11 license.
8948
8949 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
8950
8951         * verify.c (do_leave): Empty the stack.
8952
8953 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
8954
8955         * class.c (mono_class_is_assignable_from): Variance
8956         doesn't work between reference and value types. For example,
8957         given type C<T+>, C<int32> is not assignable to C<object>.
8958         Break the argument checking loop on first error. 
8959
8960 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
8961
8962         * icall.c : base64_to_byte_array() needs some more strict
8963           check for sequence of '=' characters. Patch by Santa
8964           Marta (http://deee.g.hatena.ne.jp/santamarta).
8965
8966           Contributed under MIT/X11 license.
8967           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
8968
8969 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
8970
8971         * domain.c: Disable LoadLibrary support to fix Win32 build.
8972
8973         Code is contributed under MIT/X11 license.
8974
8975 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
8976
8977         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
8978         to help with cache behaviour.
8979
8980 2008-05-01  Miguel de Icaza  <miguel@novell.com>
8981
8982         * appdomain.c (mono_domain_from_appdomain): Add new accessor
8983         method. 
8984
8985 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
8986
8987         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
8988
8989 2008-05-01  Dick Porter  <dick@ximian.com>
8990
8991         * process.c (process_get_fileversion): Only pass 16 bits of
8992         language ID to VerLanguageName.  Fixes bug 381204.
8993
8994 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
8995
8996         * verify.c (mono_method_verify): Fix the comparison
8997         operator for code bounds check.
8998
8999 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
9000
9001         * verify.c (mono_method_verify): Check the bounds of
9002         all access of the code array.
9003
9004 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
9005
9006         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
9007
9008 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
9009
9010         * image.c (mono_image_strong_name_position): Fix return value when the rva is
9011         not valid.
9012
9013 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
9014
9015         * loader.c (mono_get_method_from_token, mono_method_signature): Add
9016         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
9017         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
9018         fixup main EXE images when using mono.exe for mixed-mode assembly support.
9019         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
9020         mono_runtime_load.
9021         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
9022         runtime initialization from metadata.
9023         * assembly.c: Remove obsolete ceGetModuleFileNameA.
9024         (mono_set_rootdir): Use mono_get_module_file_name.
9025         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
9026         handles.
9027         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
9028         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
9029         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
9030         MonoCLIImageInfo. Add support for module handles.
9031         (load_cli_header): Update mono_cli_rva_image_map signature.
9032         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
9033         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
9034         (mono_image_rva_map): Add support for module handles.
9035         (mono_image_ensure_section_idx): Add support for module handles.
9036         (mono_image_close): Add support for module handles.
9037         (do_load_header): Add support for module handles.
9038         (mono_image_open_from_module_handle): New function for internal use.
9039         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
9040         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
9041         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
9042         handles.
9043         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
9044         * image.h: Add mono_image_fixup_vtable.
9045         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
9046         support.
9047         * coree.h: New file.
9048         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
9049         unsupported native code.
9050         (mono_marshal_set_callconv_from_modopt): New function splitted from
9051         mono_marshal_get_managed_wrapper.
9052         (mono_marshal_get_managed_wrapper): Use
9053         mono_marshal_set_callconv_from_modopt.
9054         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
9055         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
9056         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
9057         that results in a deadlock when the runtime is loaded in _CorDllMain.
9058         * Makefile.am: Add coree.c and coree.h.
9059
9060         Contributed under MIT/X11 license.
9061
9062 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9063
9064         * generic-sharing.c: Search for type arguments in array element
9065         types as well.
9066
9067 2008-04-28  Mark Probst  <mark.probst@gmail.com>
9068
9069         * class-internals.h, generic-sharing.c: New, small runtime generic context.
9070
9071         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
9072
9073         * object.c: Don't setup the RGCTX when the vtable is created,
9074         because we're setting it up lazily now.
9075
9076 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
9077
9078         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
9079         64 bit support.
9080
9081 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9082
9083         * verify.c (verify_class_for_overlapping_reference_fields): 
9084         If class is under fulltrust allow reference types to overllap
9085         if they have the same RVA.
9086
9087 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
9088
9089         * pedump.c: Added new flag valid-only, that makes the verifier
9090         behaves just like --security=validil. It won't fail type load
9091         due to unverifiable restrictions.
9092
9093 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9094
9095         * class-internals.h (struct MonoMethod): Added a verification_success
9096         field to cache verifier executions. Reduced MonoMethod:slot size by
9097         one bit.
9098
9099 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
9100
9101         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
9102         instead of a 'vt' argument to save an indirection and to allow these to be used
9103         for valuetypes.
9104         (scan_vtype): New helper function to scan an area using a gc descriptor.
9105         (mono_gc_wbarrier_value_copy): Implement this.
9106         (handle_remset): Add support for REMSET_VTYPE.
9107         (find_in_remset_loc): Ditto.
9108         (mono_gc_base_init): Allow some debugging options to be controlled through the
9109         use of the MONO_GC_DEBUG env variable.
9110         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
9111         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
9112
9113 2008-04-23  Martin Baulig  <martin@ximian.com>
9114
9115         * domain.c (mono_domain_create): Move the call to
9116         mono_debug_domain_create() down, after allocating the domain id.
9117
9118 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
9119
9120         verify.c (verify_class_for_overlapping_reference_fields): Skip
9121         static fields while verifying for overlapping fields as they
9122         don't matter at all.
9123
9124 2008-04-23  Marek Habersack  <mhabersack@novell.com>
9125
9126         * domain-internals.h: added a declaration of
9127         mono_make_shadow_copy.
9128
9129         * assembly.c (mono_assembly_open_full): shadow copying of
9130         assemblies moved to here, so that all the assemblies within the
9131         application domain's private binary directories can be
9132         processed. Fixes bug #380546
9133
9134         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
9135         mono_make_shadow_copy and made non-static. The decision whether
9136         to shadow-copy an assembly is made based on its location - it's
9137         copied if it's in one of the private application domain binary
9138         directories and its different to the target file in the shadow
9139         directory. Fixes bug #380546
9140
9141 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
9142
9143         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
9144
9145         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
9146         types.
9147
9148         * reflection.c (mono_image_create_token): Handle 
9149         Method/ConstructorOnTypeBuilderInst.
9150         (resolve_object): Ditto.
9151         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
9152         so it can be called from resolve_object. Also handle the case when the inflated
9153         class already has its methods setup.
9154
9155 2008-04-21  Martin Baulig  <martin@ximian.com>
9156
9157         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
9158
9159 2008-04-20  Geoff Norton  <gnorton@novell.com>
9160
9161         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
9162         pointer dereference.
9163
9164 2008-04-15  Marek Habersack  <mhabersack@novell.com>
9165
9166         * appdomain.c (try_load_from): if IOMAP is in effect, call the
9167         portability API to look up the assembly file. Fixes behavior in
9168         situations when the application has a bin/ directory, but the
9169         assembly search patch refers to Bin/ (and thus the requested file
9170         name is Bin/SomeLibrary.dll). Fixes bug #379888
9171
9172 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
9173
9174         verify.c (mono_type_is_generic_argument): Extracted this check
9175         from a dozen places to here.
9176
9177         verify.c: Fixed all issues related to boxing generic arguments
9178         and their constraints.
9179
9180 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
9181
9182         verify.c (mono_class_interface_implements_interface): Fix win32 build.
9183
9184 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
9185
9186         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
9187         isn't finished yet. Fixes #363447.
9188
9189 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
9190
9191         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
9192         Fixes #346419.
9193
9194 2008-04-13  Jb Evain  <jbevain@novell.com>
9195
9196         * domain.c: update the 2.1 profile versions.
9197         Merged from the Moonlight 2 branch.
9198
9199 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
9200
9201         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
9202         mscorlibs for the non-refonly case as well.
9203
9204         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
9205         in mono_assembly_load_from_full (). Fixes #378924.
9206
9207 2008-04-11  Geoff Norton  <gnorton@novell.com>
9208
9209         * icall.c: The global extern environ doesn't exist on Mac.  We
9210         need to call NSGetEnviron instead.
9211
9212 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9213
9214         verify.c: Add generic method constraint verification.
9215
9216 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9217
9218         class.c (mono_class_inflate_generic_method_full): Add a long
9219         explanation to the is_mb_open hack. Remove the FIXME.
9220
9221 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9222
9223         * verify.c (mono_method_verify): Mark all unknown opcodes
9224         as invalid. Mark jmp as unverifiable.
9225
9226 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9227
9228         * verify.c: Add code to do type constraint verification on class instances.
9229
9230         * verify.c (mono_verifier_verify_class): Use the type constraint 
9231         verification code.
9232
9233 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
9234
9235         * class.c (mono_class_get_field_default_value): Don't pass cindex
9236         as hint to mono_metadata_get_constant_index. The local is not initialized
9237         and should contain garbage most of the time. This could only work
9238         with a lot of luck.
9239
9240 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9241
9242         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
9243
9244 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
9245
9246         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
9247
9248         * class.c (mono_class_from_generic_parameter): Save the token of the
9249         generic param in MonoClass::sizes.generic_param_token.
9250
9251         * reflection.c (mono_custom_attrs_from_class): If the class type is
9252         VAR or MVAR retrieve the attributes of the generic param.
9253
9254 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9255
9256         * class.c (mono_class_init): Do class verification if the verifier
9257         is enabled.
9258
9259 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9260
9261         * verify-internal.h: Added mono_verifier_verify_class.
9262
9263         * verify.c: Added mono_verifier_verify_class. It checks for
9264         classes with explicit layout that have overlapping reference fields.
9265
9266         * pedump.c: Init the verifier state prior to verification. Fixed
9267         command line arguments.
9268
9269 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
9270
9271         * Makefile.am: Added verify-internals.h, hopefully fix the build.
9272
9273 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
9274
9275         * verify-internals.h: Fix a warning.
9276
9277 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9278
9279         * verify-internals.h: New header with the verifier configuration
9280         extracted from mini.c.
9281
9282         * verify.c: Implemented the new functions exported by verify-internals.h.
9283
9284 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
9285
9286         * verify.c: Add proper verification of ckfinite.
9287
9288 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9289
9290         * verify.c (do_conversion): Improved error message to something
9291         more meanfull.
9292
9293         * verify.c (check_is_valid_type_for_field_ops): Fix to work
9294         with primitive types.
9295
9296 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9297
9298         * verify.c: Added tail prefix checking. Marked icall
9299         as unverifible.
9300
9301 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
9302
9303         * verify.c: Fix the detection of branches to the middle
9304         of an instruction.
9305
9306 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
9307
9308         * verify.c: Implemented verification of volatile. and
9309         unaligned. prefix. Check if a type is valid after retrieving it.
9310
9311 2008-04-01  Dick Porter  <dick@ximian.com>
9312
9313         * process.c (process_get_fileversion): If there's no string block,
9314         set the file language to en_US.  Fixes the other new part of bug
9315         374600.
9316
9317 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
9318
9319         * class.c: New functions mono_method_can_access_field_full and
9320         mono_method_can_access_method_full. They perform type visibility
9321         and type site check.
9322
9323         * class-internal.h: Added exported functions.
9324
9325         * verify.c: Use new functions to implement proper visibility checks.
9326
9327 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
9328
9329         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
9330
9331 2008-03-28  Dick Porter  <dick@ximian.com>
9332
9333         * process.c (process_get_fileversion): Use the first language ID
9334         we see, rather than insisting on an invariant language.  Fixes bug
9335         374600.
9336
9337 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
9338
9339         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
9340         the streams to fix reading of invalid memory later.
9341
9342         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
9343         to ease debugging.
9344
9345 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
9346
9347         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
9348         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
9349
9350 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
9351         * threads.h: Added MonoThreadManageCallback type and
9352         mono_thread_set_manage_callback prototype
9353         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
9354         (used to store the mono_thread_manage callback).
9355         * threads.c: Added mono_thread_set_manage_callback, and handle
9356         "MonoThread->manage_callback" in build_wait_tids.
9357
9358 2008-03-26  Dick Porter  <dick@ximian.com>
9359
9360         * process.c (process_get_fileversion): Set FileVersionInfo strings
9361         to Empty when the resource doesn't have the particular info.
9362         Fixes bug 355717.
9363
9364 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
9365
9366         * verify.c (mono_method_verify): Proper prefix validation.
9367
9368 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
9369
9370         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
9371         itself in a separate argument instead of throwing them. Fixes #373448.
9372
9373         * appdomain.c: Bump corlib version.
9374
9375 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
9376
9377         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
9378
9379 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
9380
9381         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
9382         version macros.
9383
9384 2008-03-20  Mark Probst  <mark.probst@gmail.com>
9385
9386         * generic-sharing.c, class-internals.h: Code for putting
9387         reflection types into the runtime generic context.
9388
9389 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
9390
9391         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
9392         Fixes #340662. 
9393
9394
9395 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
9396
9397         * verify.c (VerifyContext): Added instruction prefix data to the struct.
9398
9399         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
9400
9401         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
9402
9403         * verify.c (do_cast): Let the result value keep the boxed status.
9404
9405         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
9406
9407 2008-03-17  Jb Evain  <jbevain@novell.com>
9408
9409         * reflection.c: when running on a 2.0 runtime, emit
9410         unconditionally the #~ header version as 2.0, and the
9411         CLI header version as 2.5, for symmetry's sake with csc.
9412
9413 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
9414
9415         * class.c: Remove the unused cache_interface_offsets stuff.
9416
9417         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
9418         profiler.c: Fix warnings.
9419
9420 2008-03-16  Mark Probst  <mark.probst@gmail.com>
9421
9422         * generic-sharing.c, class-internals.h: Support for putting
9423         methods into the runtime generic context.
9424
9425 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
9426
9427         * class.c (mono_class_setup_fields): Ignore calls made to this function for
9428         classes which are generic instances of not-yet finished typebuilders. Fixes
9429         #351172.
9430
9431         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
9432
9433 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
9434
9435         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
9436
9437         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
9438         field, replace it with a hash table in MonoDynamicImage.
9439
9440         * reflection.c (inflate_mono_method): Access the generic definition object from
9441         image->generic_def_objects instead of imethod->reflection_info.
9442
9443         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
9444
9445         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
9446         
9447         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
9448         function in reflection.c so it is easier to keep in sync with the dynamic image
9449         creation code.
9450
9451         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
9452         mono_image_close ().
9453
9454 2008-03-15  Mark Probst  <mark.probst@gmail.com>
9455
9456         * class.c (mono_class_generic_sharing_enabled): Disable generic
9457         sharing for all architectures except AMD64 and x86 to fix build.
9458
9459 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
9460
9461         * verify.c: Use the generic definition MonoGenericContext when available.
9462         Remove code for checking generics instance compatibility in favor of
9463         mono_class_is_assignable_from.
9464
9465 2008-03-14  Mark Probst  <mark.probst@gmail.com>
9466
9467         * marshal.c, marshal.h, metadata-internals.h, image.c,
9468         wrapper-types.h: New wrapper for invoking a shared static method
9469         without having to pass the runtime generic context argument.
9470
9471 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
9472
9473         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
9474
9475 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
9476
9477         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
9478         
9479         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
9480         create a token from a FieldOnTypeBuilderInst.
9481         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
9482         (resolve_object): Ditto.
9483
9484         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
9485         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
9486
9487 2008-03-14  Martin Baulig  <martin@ximian.com>
9488
9489         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
9490
9491         * debug-mono-symfile.h
9492         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
9493         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
9494
9495 2008-03-10  Martin Baulig  <martin@ximian.com>
9496
9497         * debug-mono-symfile.h
9498         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
9499         `lexical_block_table_offset'.
9500         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
9501         `lexical_blocks'.
9502         (MonoSymbolFile): Added `version'.
9503
9504         * mono-debug.h
9505         (MonoDebugLexicalBlockEntry): Removed.
9506         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
9507         `lexical_blocks'.
9508
9509         * mono-debug.c (mono_debug_add_method): Don't compute lexical
9510         blocks here; the debugger now does this internally.
9511
9512 2008-02-27  Martin Baulig  <martin@ximian.com>
9513
9514         * object.c (mono_runtime_exec_main): Call
9515         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
9516         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
9517
9518 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
9519
9520         * verify.c (verify_type_compatibility_full): Allow native int to be converted
9521         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
9522
9523 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
9524
9525         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
9526         ldftn with a virtual method.
9527
9528 2008-03-13  Geoff Norton  <gnorton@novell.com>
9529
9530         * decimal.c:  Only include memory.h if the platform has it.
9531
9532 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
9533
9534         * assembly.c, class.c, metadata-internals.h: make sure public key
9535         tokesns are compared in a case-insensitive way. Also, all
9536         the lookups in the GAC use a lowercase public key token
9537         (gaacutil already does the lowercasing on install). Fixes
9538         bug #369541.
9539
9540 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
9541
9542         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
9543         and return value.
9544
9545 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
9546
9547         * image.c: when someone loads a mscorlib from a file, return the
9548         currently loaded mscorlib (fixes bug #369253).
9549
9550 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
9551
9552         * class.c: handle types with no parents by forcing them to have
9553         System.Object as a parent and marking them as broken (this currently
9554         allows the first part of bug #369173 to work as well, likely because
9555         we don't check for typeload exceptions everywhere yet).
9556
9557 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
9558
9559         * class.c: more complete check that types belong to corlib
9560         (fixes second part of bug #369173).
9561
9562 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
9563
9564         * generic-sharing.c:  Including glib.h for the MSVC builds to define
9565           "inline" to "__inline" before including mono-membar.h.
9566           
9567         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
9568           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
9569           MSVC builds.
9570
9571         Contributed under MIT/X11 license.
9572
9573 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
9574
9575         * verify.c (do_invoke_method): Remove return type validation.
9576
9577         * verify.c (do_ret): Do return type validation at return site instead of
9578         call site.
9579
9580 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
9581
9582         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
9583
9584         * verify.c: Some todos cleaned and improved a few error messages.
9585
9586 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
9587
9588         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
9589
9590 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
9591
9592         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
9593         system types correctly.
9594
9595         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
9596         function.
9597
9598 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
9599
9600         * assembly.c (build_assembly_name): Fix a warning.
9601
9602 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9603
9604         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
9605         the called function takes an object type argument. Fixes storing or
9606         valuetypes across remoting as well as reducing memory usage.
9607         * image.c, metadata-internals.h: remove now unused ldfld_remote and
9608         stfld_remote wrapper caches.
9609
9610 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
9611
9612         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
9613         is not found.
9614
9615         * reflection.c (mono_image_register_token): New helper function to save
9616         a token->object mapping.        
9617
9618         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
9619         managed code.
9620
9621         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
9622         one dimension arrays. Fixes #367670.
9623         (mono_reflection_get_type_internal): Ditto.
9624
9625 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
9626
9627         * marshal.c: mono_load_remote_field_new() always returns object.
9628         so use the proper signature (fixes bug #366445).
9629
9630 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
9631         
9632         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
9633         add an 'inline_failure' flag instead.
9634
9635 2008-03-04  Mark Probst  <mark.probst@gmail.com>
9636
9637         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
9638         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
9639         contains the location of "this", used for exception handling.
9640
9641 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
9642
9643         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
9644         their size on all platforms for perf reasons.
9645
9646 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9647
9648         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
9649         object-internal.h
9650
9651         * object-internal.h: Same.
9652
9653 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9654
9655         * reflection.h: Fix the build I just broke.
9656
9657 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9658
9659         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
9660         Test if a token is valid, this remove explicit usage of 
9661         MonoDynamicImage::tokens from the verifier code.
9662
9663         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
9664
9665         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
9666         instead of direct access to MonoDynamicImage::tokens.
9667
9668 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9669
9670         * verify.c (token_bounds_check): Fix the build I just broke.
9671
9672 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
9673
9674         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
9675
9676         * verify.c (verifier_load_method): Fixed the errors message.
9677
9678         * verify.c (mono_method_verify): Fixed a debug message.
9679
9680 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
9681
9682         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
9683         mono-perfcounters.h, class-internals.h: support for predefined
9684         writable counters, query of categories and counters, bugfixes.
9685
9686 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
9687
9688         * verify.c (do_refanytype): Verify the refanytype opcode.
9689
9690         * verify.c (mono_method_verify): Use do_refanytype.
9691
9692 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
9693
9694         * verify.c (do_mkrefany): Verify the mkrefany opcode.
9695
9696         * verify.c (mono_method_verify): Use do_mkrefany.
9697
9698 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
9699
9700         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
9701         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
9702         implementation.
9703
9704 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
9705
9706         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
9707         the type load exception.
9708
9709 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
9710
9711         * verify.c: Added a few FIXME for method signatures
9712
9713         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
9714         of mono_method_get_signature and get vararg call working. Removed unused
9715         checks for return value.
9716
9717         * verify.c (do_refanyval): Verify the refanyval opcode.
9718
9719         * verify.c (mono_method_verify): Implemented verification of arglist and
9720         use do_refanyval.
9721
9722 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
9723
9724         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
9725         vtypes to marshal.c.
9726
9727         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
9728         it works for AOT as well.
9729
9730 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
9731
9732         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
9733         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
9734         the system time is adjusted.
9735
9736 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
9737
9738         * icall.c, icall-def.h: use the new time functions (fixes the
9739         non-monotonic behaviour of TickCount).
9740
9741 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
9742
9743         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
9744         it breaks the build.
9745         
9746         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
9747         cattr is not finished yet.
9748
9749 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
9750
9751         * verify.c: Proper token validation for field, method and type.
9752
9753 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
9754
9755         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
9756
9757         * loader.c (method_from_memberref): Generate type load error instead of method missing
9758         if the type is not found.
9759
9760 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
9761
9762         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
9763         some of the conversions caused the generation of a marshal directive exception.
9764
9765 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
9766
9767         verify.c: Report which exception should be thrown by the JIT.
9768         Added a lot of FIXME notes.
9769
9770 2008-02-22  Mark Probst  <mark.probst@gmail.com>
9771
9772         * generic-sharing.c: Runtime generic context slots are not
9773         instantiated on init anymore.  Instead, provide function to do the
9774         instantiating on demand.
9775
9776         * class-internals.h: Added vtable to runtime generic context.
9777         Macros for encoding direct and indirect slot offsets in one
9778         guint32.
9779
9780 2008-02-21  Mark Probst  <mark.probst@gmail.com>
9781
9782         * object.c, generic-sharing.c: Moved some generic sharing code
9783         from object.c to generic-sharing.c.
9784
9785         * generic-sharing.c: Added support for extensible runtime generic
9786         context.
9787
9788         * metadata-internals.h: Two new hash tables in MonoImage for
9789         extensible runtime generic context support.
9790
9791         * domain.c: Unregister generic vtables upon domain unloading.
9792
9793         * image.c: Destroy new hash tables upon image unloading.
9794
9795         * metadata.c: Unregister generic subclasses upon image unloading.
9796
9797         * class-internals.h: New data structure for runtime generic
9798         context template.  New fields in the runtime generic context for
9799         extensible part.
9800
9801         * Makefile.am: Added generic-sharing.c.
9802
9803 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
9804
9805         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
9806         there is a pending loader exception, raise it.
9807
9808         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
9809         same.
9810
9811         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
9812         same.
9813
9814         Fixes #363450.
9815
9816 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
9817
9818         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
9819
9820         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
9821         
9822         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
9823         ref-only requests for compatibility with MS.
9824
9825 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
9826
9827         * reflection.c (mono_custom_attrs_from_method): Don't silently
9828         return an empty list for generic method instances.
9829         (mono_custom_attrs_from_param): Likewise.
9830
9831 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
9832             Raja R Harinath  <harinath@hurrynot.org>
9833
9834         Fix #354757
9835         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
9836         * class.c (mono_class_inflate_generic_method_full): Initialize it
9837         when a fully-open method is instantiated.
9838         * metadata.c (inflated_method_equal, inflated_method_hash): Update
9839         to new field.
9840         * reflection.c (inflate_mono_method): Don't create a temporary context.
9841
9842 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
9843
9844         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
9845         Compute correct value, to prepare for imethod->reflection_info going away.
9846
9847 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
9848
9849         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
9850
9851 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
9852
9853         * verify.c: Implement skip visibility flag.
9854
9855 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
9856
9857         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
9858         which contains an extra field to tell the kind of exception that should be thrown.
9859
9860         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
9861
9862 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
9863
9864         * loader.c (mono_method_get_param_names): Initialize 'klass' after
9865         'method' is updated.
9866
9867 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
9868
9869         * class.c (mono_class_layout_fields): Set class->min_align for classes using
9870         explicit layout as well. Fixes #360375.
9871
9872 2008-02-11  Geoff Norton  <gnorton@novell.com>
9873
9874         * loader.c: Guard and dereference against inflated generic methods
9875
9876 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
9877
9878         * class.c: Include Retargetable spec in assembly name.
9879         * assembly.c: Always include PublicKeyToken spec in assembly name
9880         (with value "null" if assembly is not signed), and include
9881         Retargetable spec.
9882         * icall-def.h: Added icall for Assembly.get_fullname.
9883         * icall.c: Added icall returning the fullname of an assembly.
9884
9885 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
9886
9887         * class.c (mono_class_setup_vtable_general): Add a missing call to
9888         mono_class_setup_methods () which is needed in the AOT case.
9889
9890 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
9891
9892         * verify.c (mono_type_get_stack_name): Added. Return the name for the
9893         stack type of the given MonoType.
9894
9895         * verify.c (verify_type_compatibility_full): Handle the void type.
9896
9897         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
9898         way stack merging works.
9899
9900         * verify.c (store_local): Improved verification message.
9901
9902         * verify.c (do_branch_op): If the merging is invalid, the method
9903         is unverifiable and not invalid. Improved error message.
9904
9905         * verify.c (merge_stacks): Properly merge a boxed valuetype and
9906         a reference type diferent than System.Object. Improved error
9907         message.
9908
9909 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
9910
9911         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
9912
9913         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
9914         type of an enum even if the argument is byref.
9915
9916         * verify.c: Replace all explicit uses of enumtype and enum_basetype
9917         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
9918
9919         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
9920
9921         *verify.c (verify_type_compatibility_full): Make enum types
9922         compatible with their base types.
9923
9924         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
9925         types are compatible for the special case of a boxed valuetype and
9926         System.Object.
9927
9928         * verify.c (verify_stack_type_compatibility): The function
9929         is_compatible_boxed_valuetype was extracted from here.
9930
9931         * verify.c (push_arg): Only set ctx->has_this_store if the method
9932         is not static.
9933
9934         * verify.c (do_ldelem): Fixed a typo in an error message and added
9935         strict check for mixing int32 and native int as the array type
9936         and ldelem type.
9937
9938         * verify.c (merge_stacks): Consider boxed valuetypes in the
9939         compatibility checks.
9940
9941 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
9942         * profiler.h: (MonoGCEvent): Added start-stop the world events.
9943
9944 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
9945         *class.c: use_new_interface_vtable_code: renamed the env var to have
9946         a "MONO_" prefix, and fix the logic to enable it by default.
9947
9948 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
9949         *class.c:
9950         mono_class_setup_vtable_general: rewrote the way in which interface
9951         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
9952         makes the code more maintainable.
9953         For now the old code is still there, and can be activated setting
9954         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
9955
9956 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
9957
9958         * verify.c: guarded some debug functions around and #ifdef.
9959
9960         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
9961
9962 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
9963
9964         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
9965         changes for now since they seem to break too many things.
9966
9967 2008-02-05  Mark Probst  <mark.probst@gmail.com>
9968
9969         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
9970         mono_marshal_find_nonzero_bit_offset): Added macro and function
9971         for finding the byte- and bit-offset of a bitfield within a
9972         struct.
9973
9974 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
9975
9976         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
9977         (mono_marshal_get_struct_to_ptr): Ditto.
9978
9979         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
9980         cctor_signature.
9981
9982 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
9983
9984         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
9985         between methods for non-corlib types.
9986
9987 2008-02-02  Geoff Norton  <gnorton@novell.com>
9988
9989         * loader.c (mono_method_get_param_names): Populate the parameter name for 
9990         generic parameters as well. (Fixes #342536)
9991
9992 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
9993
9994         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
9995
9996         * verify.c (do_invoke_method): Fix for calling with byref structs.
9997
9998         * verify.c (do_cast): push a boxed value type based on the type token and not
9999         the type of stack.
10000
10001 2008-01-31  William Holmes  <billholmes54@gmail.com>
10002
10003         * process.c (process_module_string_read): Check the size returned form 
10004           VerQueryValue to avoid out of memory exception. 
10005
10006 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
10007
10008         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
10009         Handle properly modules which are not in the moduleref table. Fixes
10010         #356938.
10011
10012 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
10013
10014         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
10015         the dynamic case which is now in managed code.
10016         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
10017
10018         * marshal.c (mono_string_to_bstr): Fix a warning.
10019         (init_com_provider_ms): Ditto.
10020
10021         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
10022
10023         * exception.c (mono_get_exception_out_of_memory): New helper function.
10024
10025 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
10026
10027         * marshal.c: Add support for BSTR marshalling
10028         using other COM systems.
10029
10030         Code is contributed under MIT/X11 license.
10031
10032 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10033
10034         * object.c (mono_runtime_invoke_array): reverted previous
10035         commit as it breaks the build.
10036
10037 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10038
10039         * object.c (mono_runtime_invoke_array): Verify arguments for
10040         invalid types. Fixes #348522.
10041
10042 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
10043
10044         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
10045         non-final virtual calls using call. 
10046
10047         * verify.c (do_invoke): fixed some TODOs.
10048
10049         * verify.c (push_arg): set has_this_store for "ldarga 0".
10050
10051 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
10052
10053         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
10054         which belong to an inflated class. Fixes #356531.
10055
10056 2008-01-26  Robert Jordan  <robertj@gmx.net>
10057
10058         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
10059         which resort to FindFirstFile when a certain error condition
10060         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
10061         Code is contributed under MIT/X11 license.
10062
10063 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
10064
10065         * marshal.c (emit_marshal_string): Fix out string marshalling
10066         to use specified encoding. Fixes #323900.
10067
10068         Code is contributed under MIT/X11 license.
10069
10070 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
10071
10072         * class.c (mono_class_inflate_generic_method_full): Don't modify
10073         iresult->context after cache check.
10074
10075 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
10076
10077         * class.c (mono_class_inflate_generic_method_full): Change the
10078         struct assignments to memcpy for better visibility and add some comments.
10079
10080 2008-01-23  Dick Porter  <dick@ximian.com>
10081
10082         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
10083         procedure, and make it work on windows.
10084
10085 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
10086
10087         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
10088         a MonoReflectionTypeBuilder since it is always of that type.
10089
10090         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
10091
10092         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
10093
10094         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
10095         
10096         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
10097
10098         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
10099
10100         * reflection.c (mono_reflection_create_runtime_class): Remove already created
10101         instantiations from the type cache.
10102
10103 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10104
10105         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
10106
10107         * verify.c (do_unbox_value): push a controled mutability managed pointer.
10108
10109 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10110
10111         * verify.c (do_ldstr): added, verifies if the #US token is valid.
10112
10113         * verify.c (mono_method_verify): removed old TODO
10114
10115 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10116
10117         * verify.c (do_newobj): add visibility check.
10118
10119 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
10120
10121         * verify.c (do_load_function_ptr): add visibility check.
10122
10123 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
10124         *class.c:
10125         mono_generic_class_get_class: hook profiler events.
10126         mono_field_get_offset: added to support heap-shot in the new profiler.
10127         *class.h: exported mono_field_get_offset.
10128         * reflection.c:
10129         mono_reflection_setup_internal_class: hook profiler events.
10130
10131 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
10132
10133         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
10134         argument here too and use it to avoid checking for pending exceptions if 
10135         possible.
10136
10137 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
10138
10139         * assembly.c (build_assembly_name): add arg for passing the assembly
10140         flags. Do not consider a PublicKey with value "null" valid.
10141         (mono_assembly_name_parse_full): added boolean argument that will be
10142         set if the assembly name contains a PublicKeyToken spec. Added support
10143         for the Retargetable spec for which only Yes or No are allowed as valid
10144         value. Consider assembly name invalid if Retargetable spec is set, but
10145         either version, culture or public key (token) are not specified.
10146         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
10147         with implementation in assembly.c.
10148         * icall.c (fill_reflection_assembly_name): also copy assembly flags
10149         from MonoAssemblyName.
10150         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
10151         introduced argument for mono_assembly_name_parse_full to know if the
10152         assembly name has a PublicKeyToken spec, and if it has instruct
10153         fill_reflection_assembly_name to use default value for keyToken (if
10154         PublicKeyToken is null).
10155
10156 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10157
10158         * verify.c (mono_method_verify): fixed ovf ops with
10159         float values. They are unverifiable now.
10160
10161 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
10162
10163         * class.c (set_failure_from_loader_error): add BadImageException to the
10164         list of exceptions that can cause a type to fail to load.
10165
10166         * class.c (mono_class_get_exception_for_failure): same.
10167
10168 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
10169
10170         * verify.c (in_any_exception_block): added, check if offset
10171         is part of any exception handling clause.
10172
10173         * verify.c (get_stack_type): added VAR and MVAR types.
10174
10175         * verify.c (do_stobj): better error messages.
10176
10177         * verify.c (do_cpobj): added, check cpobj.
10178
10179         * verify.c (do_initobj): added, check initobj.
10180
10181         * verify.c (do_sizeof): added, check sizeof.
10182
10183         * verify.c (do_localloc): added, check localloc.
10184
10185         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
10186
10187 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
10188
10189         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
10190         save_lmf/restore_lmf opcodes.
10191
10192         * threads.c (mono_threads_install_notify_pending_exc): New function to
10193         install a callback notifying the JIT there is a pending exception on a thread.
10194         (mono_thread_request_interruption): Call the new callback.
10195         (mono_thread_get_and_clear_pending_exception): New function to return the
10196         exception pending on a thread.
10197
10198         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
10199         to turn off checking for pending exceptions.
10200         (mono_marshal_get_native_wrapper): Ditto.
10201
10202 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10203
10204         * threads-types.h: Get rid of the unnecessary extern declarations.
10205
10206 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
10207
10208         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
10209         return field from parent class if not private.
10210         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
10211         returns fields from parent class if they are not private.
10212         (method_nonpublic): added function to determine if a given method
10213         should be considered non-public. Returns false for private methods
10214         on parent class, and internal methods from parent on the 1.0 profile.
10215         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
10216         use method_nonpublic function to determine whether method should be
10217         returned.
10218         (property_accessor_public): use newly introduced method_nonpublic
10219         function to determine whether accessor is non-public. 
10220         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
10221         event from parent class if not private. Only return static event if
10222         Static flag is set, and only return static event from parent class if
10223         FlattenHierarchy flag is set.
10224         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
10225         include non-private events from parent class.
10226
10227 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
10228
10229         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
10230         warning.
10231
10232 2008-01-16  Wade Berrier <wberrier@novell.com>
10233
10234         * security.c: Add assembly.h header to appease some warnings
10235
10236 2008-01-16  Dick Porter  <dick@ximian.com>
10237
10238         * process.c (process_module_string_read): Remove trailing null
10239         when saving string.
10240
10241 2008-01-16  Mark Probst  <mark.probst@gmail.com>
10242
10243         * class-internals.h: A new data structure describing the layout of
10244         a runtime generic context (MonoRuntimeGenericContextTemplate).
10245
10246         * metadata-internals.h: Added a hash table to MonoDomain that maps
10247         from open generic classes to their runtime generic context
10248         templates.
10249
10250         * object.c: Building of the runtime generic context, including
10251         proper handling of generic type arguments of superclasses.
10252         Building of the runtime generic context according to the template.
10253
10254 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
10255
10256         * class.c (mono_class_setup_fields): Set field.count for generic instances.
10257         Fixes #350856.
10258
10259         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
10260         mono_portability_find_file (). Fixes #325466.
10261         (mono_image_get_public_key): Fix a warning.
10262
10263 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
10264
10265         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
10266         Fixes #353550.
10267         (mono_class_from_name_case): Ditto.
10268
10269 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
10270
10271         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
10272           common storage for the tables used in the System/NumberFormatter class.
10273
10274 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
10275
10276         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
10277
10278 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
10279
10280         * verify.c (get_boxable_mono_type): check if the token is valid.
10281
10282         * verify.c (set_stack_value): changed to add an error if an
10283         invalid type is set on stack. Changed all callers due to signature change.
10284
10285         * verify.c (do_stobj): implement stobj validation.
10286
10287 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
10288
10289         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
10290         set container->is_method, it was set earlier.
10291
10292         * metadata.c (type_in_image): Handle MVARs which belong to not finished
10293         generic methods.
10294
10295         * reflection.c (mono_reflection_initialize_generic_parameter): Set
10296         is_method of the generic container to TRUE for methods.
10297
10298 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10299
10300         * metadata.c (type_in_image): Handle type parameters properly.
10301
10302         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
10303         memory ownership of this structure.
10304
10305 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
10306
10307         * verify.c (get_boxable_mono_type): make typedref types been just
10308         unverifiable. check for void type.
10309
10310         * verify.c (do_unbox_any): added, verify opcode unbox.any.
10311
10312         * verify.c (do_load_function_ptr): accept method spec tokens.
10313
10314 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
10315
10316         * marshal.c (mono_class_native_size): Always set *align even if this is called
10317         recursively.
10318
10319 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
10320
10321         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
10322         out-of-date.
10323
10324 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
10325
10326         * verify.c: removed some old unused tables. A huge bunch of small fixes
10327         to things found while testing the verifier with mono basic.
10328
10329         * verify.c (dump_stack_value): dump null literal flag to.
10330
10331         * verify.c (verify_type_compatibility_full): fix comparison
10332         for types that have a generic super type.
10333
10334         * verify.c (verify_stack_type_compatibility): fix compatibility
10335         between null literals and reference types. fix compatibility between
10336         boxed valuetypes and object. fix corner case test for enums.
10337
10338         * verify.c (do_cmp_op): proper verification of cgt.un in case
10339         of reference types.
10340
10341         * verify.c (do_invoke_method): fix error message.
10342
10343         * verify.c (do_store_indirect
10344
10345         * verify.c (check_is_valid_type_for_field_ops): proper verification
10346         of managed pointers to valuetypes and boxed valuetypes. proper verification
10347         of null literals.
10348
10349         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
10350         allow token to be a reference type.
10351
10352         * verify.c (do_cast): proper handling of boxes valuetypes.
10353
10354         * verify.c (do_stelem): proper handling of storing a boxed valuetype
10355         in object[].
10356
10357         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
10358         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
10359         fixed the decoding of unbox_any
10360
10361 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
10362
10363         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
10364
10365 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
10366
10367         * verify.c (do_newobj): do delegate verification.
10368
10369         * verify.c (verify_delegate_compatibility): perform delegate
10370         verification.
10371
10372         * verify.c (verify_ldftn_delegate): perform tests related to
10373         ldftn delegates.
10374
10375         * verify.c (mono_delegate_signature_equal): perform the
10376         slightly diferent signature comparison required by delegates.
10377
10378         * metadata.c (mono_metadata_type_equal_full): added and exported
10379         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
10380         allows signature only comparison.
10381
10382         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
10383         as MONO_INTERNAL.
10384
10385 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
10386
10387         * verify.c: added a bunch of stack_slot_* functions to
10388         make access to stack slot type easier. This is required to
10389         allow optional flags, like null literal, boxed value and
10390         this pointer.
10391         All access paths to IlStackDesc::stype have been changed 
10392         to use these new funcions.
10393         Removed a bunch of unused functions and cleared all warnings.
10394         This patch introduces the usage of the this pointer and 
10395         boxed value flags.
10396
10397 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
10398
10399         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
10400
10401 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
10402
10403         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
10404         match managed version.
10405
10406         * appdomain.c: Bump corlib version.
10407         
10408         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
10409         argument.
10410
10411 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
10412
10413         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
10414         Set public key token to zero-length byte array if assembly is not
10415         strongnamed.
10416
10417 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
10418
10419         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
10420         writing a vtype array elem.
10421
10422 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
10423
10424         * assembly.c (build_assembly_name): return FALSE if length of token is
10425         not 16 (if not "null").
10426         (mono_assembly_name_parse_full): return FALSE if value of version,
10427         culture, token or key is 0.
10428         * icall.c (fill_reflection_assembly_name): add boolean arguments to
10429         specify whether public key and public key token must be set to default
10430         value (zero-length byte array) if not available. Set versioncompat to
10431         SameMachine. If public key is available or the default is set, then
10432         set PublicKey flag.
10433         (ves_icall_System_Reflection_Assembly_FillName): if no public key
10434         is available, use empty byte array as default value. On the 2.0
10435         profile, use default value for public key token if not set.
10436         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
10437         profile, use default value for public key if not set. On the 2.0
10438         profile, use default value for public key token if not set.
10439         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
10440         default values for public key and public key token.
10441
10442 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
10443
10444         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
10445         field to keep it in synch with the managed object.
10446
10447         * marshal.c (emit_marshal_object): Add support for byref marshalling of
10448         delegates. Fixes #351520.
10449
10450         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
10451         contains defined memory.
10452         
10453         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
10454
10455         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
10456         
10457         * sgen-gc.c (check_consistency): New helper function to do a consistency check
10458         of the GC data structures.
10459
10460         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
10461
10462         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
10463         
10464         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
10465         barrier.
10466         (mono_array_clone_in_domain): Ditto.
10467         (mono_array_clone_in_domain): Ditto.
10468
10469         * threads.c (start_wrapper): Register the thread start argument as a GC root.
10470         (cache_culture): Use a write barrier.
10471
10472         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
10473         (ves_icall_get_property_info): Ditto.
10474
10475         * object.h (MONO_STRUCT_SETREF): New macro.
10476
10477         * class-internals.h (MonoStats): Add some GC statistics.
10478
10479         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
10480
10481 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
10482
10483         * exception.c (mono_exception_from_name_two_strings):
10484         Break from loop after method is found.
10485
10486 2008-01-04  Dick Porter  <dick@ximian.com>
10487
10488         * process.c (process_module_string_read): Rename variable to
10489         reflect correct usage, after fixing bug 345972.
10490
10491 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
10492
10493         * verify.c (mono_type_create_fnptr_from_mono_method): 
10494         created a MonoType function pointer instance to be used during
10495         verification. The verifier releases this memory at end.
10496
10497         * verify.c (mono_method_is_constructor): extracted repeated
10498         checks for constructor into a single class.
10499
10500         * verify.c (do_push_field): use new extracted method
10501         for constructor check.
10502
10503         * verify.c (do_newobj): same.
10504
10505         * verify.c (do_ldftn): renamed to do_load_function_ptr
10506         and make it verify ldvirtftn too.
10507
10508         * verify.c (mono_method_verify: proper verification
10509         of ldvirtftn. release created MonoMethod instances.
10510
10511 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
10512
10513         * verify.c (token_bounds_check): added.
10514
10515         * verify.c (do_ldftn): added.
10516
10517         * verify.c (mono_method_verify): proper verificartion of ldftn.
10518
10519 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
10520
10521         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
10522         than the table row count. It's the resposibility of the caller to
10523         make the bounds check and raise the correct error.
10524
10525         * metadata.c (mono_metadata_decode_row_col): Same.
10526
10527         * loader.c (mono_get_method_from_token): perform bounds check
10528         on token for methoddef table.
10529
10530 2007-12-29  Miguel de Icaza  <miguel@novell.com>
10531
10532         * icall.c
10533         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
10534         assert into a negative result, the managed code already coped with
10535         that.
10536
10537         Some folks on Windows reported this error. 
10538
10539 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
10540
10541         * appdomain.c: Bump corlib version.
10542         * icall.c:
10543         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
10544         CultureInfo.CreateCulture to create CultureInfo for name.
10545         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
10546         create CultureInfo for name. Fixes bug #347174.
10547
10548 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
10549
10550         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
10551         flags.
10552
10553         * verify.c (is_valid_branch_instruction): allow branching to the
10554         first instruction of the protected block.
10555
10556         * verify.c (is_valid_cmp_branch_instruction): same.
10557
10558         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
10559         avoid double initialization.
10560
10561         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
10562         detect which cases the eval stack should just be copied.
10563
10564         * verify.c (mono_method_verify): check if the eval stack
10565         is empty when entering a protected block.
10566
10567 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
10568
10569         * verify.c: added is_clause_in_range, is_clause_inside_range,
10570         is_clause_nested and verify_clause_relationship. They perform
10571         the verifications stated in P1 12.4.2.7.
10572
10573         * verify.c (mono_method_verify): remove some unused variables,
10574         add the new exception clause checks, add instruction border
10575         checks for protected block start/end, improved some error 
10576         messages and fixed a bug in the way invalid instruction access
10577         is detected.
10578
10579 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
10580
10581         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
10582         from GC 7.0 if available.
10583
10584         * object.c: Remove an unused define.
10585         
10586         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
10587
10588         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
10589
10590         * null-gc.c (mono_gc_make_descr_for_array): Implement.
10591
10592         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
10593
10594         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
10595         to take the same arguments as the other make_descr functions.
10596
10597         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
10598
10599         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
10600         directly.
10601
10602         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
10603         mini.c.
10604
10605         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
10606         call to boehm-gc.c.
10607
10608         * boehm-gc.c (mono_gc_register_root): Fix a warning.
10609
10610         * null-gc.c (mono_gc_register_root): Fix a warning.
10611
10612         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
10613
10614         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
10615         (mono_gc_base_init): Call GC_init ().
10616
10617         * null-gc.c: Define mono_gc_register_root () as a no-op.
10618
10619         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
10620
10621 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
10622
10623         * verify.c: add prototype for merge_stacks at top
10624
10625         * verify.c (do_switch): added.
10626
10627         * verify.c (merge_stacks): on some cases the stack merging
10628         was not happening properly. Unequal stack sizes at merge
10629         points should be invalid.
10630
10631         * verify.c (mono_method_verify): added more debug info on stack state.
10632         verify switch properly.
10633
10634 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
10635
10636         * method-builder.h: New file, moved the mono_mb_ declarations here from 
10637         marshal.h.
10638
10639         * boehm-gc.c marshal.c: Include method-builder.h.
10640
10641         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
10642
10643         * marshal.c: Remove some code which is now in method-builder.c.
10644
10645 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
10646
10647         * method-builder.c: New file, extraction of the method builder functionality 
10648         from marshal.c.
10649
10650         * marshal.c: Move the mb functions into method-builder.c.
10651
10652         * marshal.h marshal.c: Export some mono_mb_... functions.
10653
10654         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
10655
10656         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
10657         the caller.
10658
10659         * class.c (mono_class_get_full): Check the token type in the dynamic case.
10660
10661         * loader.c (mono_field_from_token): Ditto.      
10662
10663         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
10664         type as well.
10665         
10666         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
10667         Fixes #342565.
10668
10669         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
10670         a helper function for setting it.
10671
10672         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
10673
10674         
10675         * assembly.c: Significally simplify code now that referenced assemblies are 
10676         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
10677
10678         * threads.h: Don't include  the internal threads-types.h header file. Fixes
10679         #349952.
10680
10681 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
10682
10683         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
10684         instructions that were target of branches or are at protected block boundaries.
10685
10686         * verify.c (in_same_block): handle filter clauses.
10687
10688         * verify.c (is_valid_branch_instruction): added. checks the target of
10689         instructions br or brtrue/false.
10690
10691         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
10692         binary branch instructions such as beq and bge.
10693
10694         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
10695         and made it pin the instruction as been part of the exception block.
10696
10697         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
10698         of in_same_block.
10699
10700         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
10701         of in_same_block.
10702
10703         * verify.c (do_ret): ret from a protected block is unverifiable and
10704         not invalid.
10705
10706         * verify.c (do_static_branch): verify br and br.s instructions.
10707
10708         * verify.c (merge_stacks): add extra param to support detection
10709         of branches in the middle of instructions.
10710         
10711         * verify.c (mono_method_verify): verify branches and exception blocks
10712         that target the middle of instructions. Proper verification of br and br.s.
10713
10714 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
10715
10716         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
10717         skip_visibility field.
10718         (reflection_methodbuilder_from_dynamic_method): Ditto.
10719
10720         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
10721         registrations. Fixes #348193.
10722
10723         * threads.h: Move the internal mono_thread_get_pending_exception () to
10724         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
10725
10726 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
10727
10728         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
10729         icall registration. Fixes #348193.
10730
10731         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
10732         for corlib classes into object. Fixes #349621.
10733
10734 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
10735
10736         * icall.c (property_accessor_nonpublic): new function to determine
10737         whether an accessor allows a property to be considered non-public.
10738         Returns false for private accessor(s) from parent class, and internal
10739         accessor(s) from parent on 2.0 profile (and higher).
10740         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
10741         to determine whether property should be included if NonPublic flag
10742         is set. Fixes bug #349078.
10743
10744 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
10745
10746         * verify.c (init_stack_with_value): added.
10747
10748         * verify.c (mono_method_verify): extracted common
10749         code for exception initialization into init_stack_with_value.
10750
10751         * verify.c (mono_method_verify): initialize the exception
10752         for handler clauses as well.
10753
10754         * verify.c (mono_method_verify): fix the exception clause
10755         ordering rules, it should use handler end offset and not
10756         start offset.
10757
10758 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
10759
10760         * rawbuffer.c: remove useless warning.
10761
10762 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
10763
10764         * threads.h, threads-types.h: move functions to the correct header
10765         (fixes bug#349952).
10766
10767 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
10768
10769         * verify.c (mono_method_verify): proper verification
10770         of exception handling clauses ranges and fallthru in
10771         and out of protected blocks.
10772
10773 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
10774
10775         * verify.c (mono_method_verify): fixed compilation issue.
10776
10777 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
10778
10779         * verify.c (mono_method_verify): a printf slipped in, changed
10780         to use verifier debug macro.
10781
10782 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
10783
10784         * verify.c (is_correct_leave): check for filter clauses.
10785
10786         * verify.c (do_filter): added.
10787
10788         * verify.c (mono_method_verify): property verification of leave.
10789
10790
10791 2007-12-18  Mark Probst  <mark.probst@gmail.com>
10792
10793         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
10794         Win32 build, until we figure out how to do the proper thing on
10795         Win32.
10796
10797 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
10798
10799         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
10800         by the previous patch.
10801         
10802         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
10803         the assembly resolve handler for refonly assemblies.
10804
10805 2007-12-17  Mark Probst  <mark.probst@gmail.com>
10806
10807         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
10808         Make sure only one thread is allowed to commence shutdown, and
10809         don't allow new threads to be started once shutdown is in
10810         progress.
10811
10812 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
10813
10814         * verify.c (is_correct_endfilter): added.
10815
10816         * verify.c (is_unverifiable_endfilter): added.
10817
10818         * verify.c (do_endfilter): added.
10819
10820         * verify.c (mono_method_verify): property verification of endfilter
10821         and fixed a corner case or endfinally.
10822
10823 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
10824
10825         * verify.h: new flags to support fail fast of unverifiable code and
10826         do non-strict verification. Non-strict verification is required to
10827         have MS runtime compatibility. There are a huge amount of unverifiable
10828         code that it accepts as verifiable. The strict mode verifies the code
10829         as the specs says.
10830         Non-strict mode will be required in cases where code needs to be
10831         accepted as verifiable but fails under strict mode.
10832
10833         * pedump.c: added support to fail fast and non-strict verification.
10834
10835         * verify.c: added support for both fail fast and non-strict verification.
10836
10837 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
10838
10839         * verify.c (is_correct_endfinally): added.
10840
10841         * verify.c (mono_method_verify): property verification of endfinally.
10842
10843 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
10844
10845         * verify.c (in_any_block): check for filter clauses.
10846
10847         * verify.c (is_correct_rethrow): added.
10848
10849         * verify.c (mono_method_verify): property verification of rethrow.
10850
10851         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
10852
10853 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
10854
10855         * verify.c (do_throw): added.
10856
10857         * verify.c (mono_method_verify): property verification of throw
10858
10859 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
10860
10861         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
10862         assemblies. Fixes #346425.
10863
10864 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
10865
10866         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
10867         FieldBuilders.
10868
10869         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
10870
10871         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
10872         prevent asserts when this is called with a token which might not be valid.
10873
10874         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
10875         lookup_dynamic_token_class with valid_token == FALSE.
10876
10877         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
10878
10879         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
10880
10881         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
10882         
10883 2007-12-10  Mark Probst  <mark.probst@gmail.com>
10884
10885         * gc.c: Don't delay threadpool thread finalization unless Mono is
10886         shutting down.
10887
10888 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
10889
10890         * threads.c: turn an assert into a non-fatal warning.
10891
10892 2007-12-09  Robert Jordan  <robertj@gmx.net>
10893
10894         * icall.c (GetVirtualMethod): Add missing argument validation.
10895
10896 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10897
10898         * verify.c (do_cast): added.
10899
10900         * verify.c (mono_method_verify): property verification of castclass and isinst.
10901
10902
10903 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10904
10905         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
10906
10907         * verify.c (do_stelem): added.
10908
10909         * verify.c (mono_method_verify): property verification of stelem.X.
10910
10911 2007-12-07  Mark Probst  <mark.probst@gmail.com>
10912
10913         * class.c, class-internals.h: Introduce an environment variable
10914         (MONO_GENERIC_SHARING) through which the extent of generic code
10915         sharing can be controlled (share all classes, share only corlib
10916         classes, or share nothing).
10917
10918         * object.c: Only create runtime generic context for classes for
10919         which sharing is enabled.
10920
10921 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10922
10923         * verify.c (do_ldelem): refactor it to work with ldelem.any.
10924
10925         * verify.c (mono_method_verify): property verification of ldelem.any.
10926
10927 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
10928
10929         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
10930         added ldelem.X opcodes.
10931
10932         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
10933
10934         * verify.c: proper verification of ldelem.X 
10935
10936 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
10937
10938         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
10939
10940 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
10941
10942         * verify.c (mono_method_verify): null literal requires special handling,
10943         the value pushed on stack need to be flagged as so.
10944
10945         * verify.c (do_ldelema): Verify ldelema properly.
10946
10947 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
10948
10949         * verify.c: Verify ldlen properly.
10950
10951 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
10952
10953         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
10954         to the target object's type. Fixes #346160.
10955
10956 2007-12-05  Dick Porter  <dick@ximian.com>
10957
10958         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
10959         Solaris needs the same workaround as BSD-derived systems.  Fixes
10960         bug 323524, patch by Burkhard Linke
10961         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
10962
10963 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
10964
10965         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
10966         handle to use when error dialog is shown; otherwise, update mask
10967         to show no error dialog when an error occurs.
10968
10969 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
10970
10971         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
10972
10973         * class.c (mono_class_get_field_default_value): New helper function to initialize
10974         field->def_type and field->data.
10975
10976 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
10977
10978         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
10979         the general one.
10980
10981         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
10982
10983         * marshal.c: Avoid depending on delegate->method_info being set.
10984
10985         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
10986         
10987         * object.c (mono_delegate_ctor): Set delegate->method.
10988
10989         * object-internals.h (struct _MonoDelegate): Add 'method' field.
10990
10991         * appdomain.c: Bump corlib version.
10992
10993 2007-11-27  Raja R Harinath  <harinath@gmail.com>
10994
10995         * metadata.c (mono_generic_inst_equal_full): Short-circuit
10996         equality check if we're comparing canonicalized MonoGenericInsts.
10997
10998 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
10999
11000         * class.c (generic_array_methods): Call mono_class_setup_methods () before
11001         accessing class->methods.
11002
11003 2007-11-22  Dick Porter  <dick@ximian.com>
11004
11005         * threads.c: Ensure that the synch_cs is set before trying to use
11006         it.
11007
11008 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
11009
11010         * profiler.c: r89126 broke the statistial profiler, unbreak.
11011
11012 2007-11-22  Martin Baulig  <martin@ximian.com>
11013
11014         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
11015
11016         * mono-debug.c
11017         (mono_debug_debugger_version): Bump to 3.
11018         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
11019         -> mono_debugger_class_initialized().
11020
11021         * mono-debug-debugger.c
11022         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
11023
11024         * class.c
11025         (mono_debugger_start_class_init_func): Removed.
11026         (mono_debugger_class_loaded_methods_func): Added.
11027         (mono_class_setup_methods): Call it here.
11028
11029 2007-11-22  Martin Baulig  <martin@ximian.com>
11030
11031         * mono-debug.c
11032         (mono_debug_add_delegate_trampoline): New public method.
11033         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
11034
11035         * mono-debug.h
11036         (MonoSymbolTable): Added `global_data_table'.
11037         (MonoDebuggerTypeKind): Removed.
11038
11039 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
11040
11041         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
11042         these methods.
11043
11044         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11045         
11046 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
11047
11048         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
11049
11050 2007-11-20  Martin Baulig  <martin@ximian.com>
11051
11052         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
11053
11054         * mono-debug-debugger.c
11055         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
11056         (mono_debugger_remove_breakpoint): Likewise.
11057         (mono_debugger_check_breakpoints): Likewise.
11058         (mono_debugger_register_class_init_callback): New public method.
11059         (mono_debugger_remove_class_init_callback): Likewise.
11060         (mono_debugger_add_type): Likewise.
11061
11062         * mono-debug-debugger.h
11063         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
11064
11065 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
11066
11067         * class.c: more interface implementations needed for the
11068         array enumerator (fixes bug #341112).
11069
11070 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
11071
11072         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
11073         fix ParamName of ArgumentNullExceptions.
11074
11075 2007-11-17  Miguel de Icaza  <miguel@novell.com>
11076
11077         * reflection.c (mono_reflection_encode_sighelper): Generate the
11078         modopts and modreqs.   I have a useless test that crashes monodis,
11079         but that shows the code working.
11080
11081 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
11082
11083         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
11084         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
11085
11086 2007-11-15  Dick Porter  <dick@ximian.com>
11087
11088         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
11089         When joining a thread, it's the thread that's calling Join that
11090         gets WaitSleepJoin state not the target.  Fixes the standalone
11091         test case in bug 334740, and hopefully the whole bug too.
11092
11093 2007-11-15  Dick Porter  <dick@ximian.com>
11094
11095         * process.c: Read file version info from the files pointed at by
11096         process modules, not the current process.  Fixes bug 315969.
11097
11098         Use windows typedef names in some places to fix warnings on the
11099         windows build.
11100
11101 2007-11-15  Mark Probst  <mark.probst@gmail.com>
11102
11103         * image.c, metadata-internals.h: Added a generic_class_cache hash
11104         to MonoImage for looking up generic classes when sharing generics.
11105
11106 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
11107
11108         * sgen-gc.c: warning cleanups.
11109
11110 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
11111
11112         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
11113         inherited properties.
11114
11115 2007-11-14  Mark Probst  <mark.probst@gmail.com>
11116
11117         * object.c, class-internals.h: Added more information to the
11118         runtime generic context.
11119
11120 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
11121
11122         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
11123         instead of just the target method. Generalize the abstract method handling to
11124         handle any non-static method.
11125
11126         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11127         mono_marshal_get_delegate_invoke () signature change.
11128
11129 2007-11-13  Mark Probst  <mark.probst@gmail.com>
11130
11131         * class.c, class-internals.h: Made
11132         mono_type_get_basic_type_from_generic () public.  Fixed member
11133         access check for shared generics.
11134
11135         * loader.c: Don't insert field into field cache if it's part of a
11136         non-inflated generic class.
11137
11138         * domain.c, domain-internals.h: The generic sharing context is now
11139         part of the jit info data structure.  Added two accessor
11140         functions.
11141
11142 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
11143
11144         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
11145         the array Get/Set/Address methods, since the JIT inlines them.
11146
11147         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
11148
11149         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
11150         (mono_image_init): Initialize runtime_invoke_direct_cache.      
11151
11152         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
11153         mono_marshal_get_delegate_invoke signature change.
11154
11155         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
11156         an additional argument. Add support for invoking abstract methods.
11157
11158         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
11159
11160         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
11161
11162 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11163
11164         * class.c: Do field layout for open generic classes as well.
11165
11166 2007-11-09  Mark Probst  <mark.probst@gmail.com>
11167
11168         * gc.c, gc-internal.h: Don't finalize threadpool threads with
11169         other objects, because the threadpool is still around.  Put them
11170         in a list instead and after finalizing all other objects in the
11171         root domain shut down the thread pool and then finalize the
11172         threads.  Fixes bug #337383.
11173
11174         * threads.c, thread-types.h: New mono_thread_create_internal()
11175         function for marking a thread with the threadpool flag before it
11176         started.  Set synch_cs to NULL after freeing it.
11177
11178         * threadpool.c: Mark threadpool threads before they start.
11179
11180 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
11181
11182         * reflection.h, reflection.c: don't export random functions
11183         and lazy load dbnull and missing objects.
11184
11185 2007-11-07  Jonathan Chambers <joncham@gmail.com>
11186
11187         * class.c: Initialize COM types if COM interfaces
11188         are present (not just COM classes).
11189         
11190         Code is contributed under MIT/X11 license.
11191
11192 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11193         * reflection.c:
11194         create_dynamic_mono_image: hook module profiler events (dynamic case).
11195         mono_image_basic_init: hook assembly profiler events (dynamic case).
11196
11197 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
11198         * profiler.c:
11199         simple_appdomain_unload: completely terminate the profiler
11200         instead of only processing the statistical samples.
11201         simple_shutdown: make sure this is really called exactly once,
11202         even in multithreaded applications, and always listen to
11203         appdomain events.
11204         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
11205         here, the "[un]load" functions will do it.
11206         Fixes bugs #333791 and #325261.
11207
11208 2007-11-07  Geoff Norton  <gnorton@novell.com>
11209
11210         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
11211         rather than depend on __APPLE__.
11212
11213 2007-11-07  Mark Probst  <mark.probst@gmail.com>
11214
11215         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
11216
11217 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
11218
11219         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
11220         UTF16 MonoString. Fix the crash from bug #335488
11221
11222 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
11223
11224         * marshal.c: Correct (for non-Win32 OS) length != size in 
11225         mono_string_from_bstr. Fix #339530.
11226
11227 2007-11-06  Geoff Norton  <gnorton@novell.com>
11228
11229         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
11230         to succeed
11231
11232 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
11233
11234         * process.c: Added run-time GetProcessId API detection for Windows.
11235
11236 2007-11-04  Miguel de Icaza  <miguel@novell.com>
11237
11238         * reflection.c  (mono_param_get_objects): If a parameter has the
11239         attribute [System.Runtime.InteropServices.Optional] we should
11240         set the DefaultValue of the ParameterInfo to be
11241         System.Reflection.Missing instead of DBNull.
11242
11243         See bug #339013.
11244
11245         (mono_get_reflection_missing_object): New method,
11246         returns the System.Reflection.Missing.Value singleton instance.
11247
11248 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
11249
11250         * culture-info-table.h : regenerated.
11251
11252 2007-11-02  Jonathan Chambers <joncham@gmail.com>
11253
11254         * icall.c: Use GetEnvironmentStrings on windows
11255         so we are using the same environment block as 
11256         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
11257         #333740.
11258         
11259         Code is contributed under MIT/X11 license.
11260
11261 2007-10-31  Martin Baulig  <martin@ximian.com>
11262
11263         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
11264
11265         * mono-debug-debugger.h
11266         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
11267
11268 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
11269
11270         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
11271         classes.
11272
11273 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
11274
11275         * culture-info-table.h : regenerated.
11276
11277 2007-10-30  Robert Jordan  <robertj@gmx.net>
11278
11279         * icall-def.h, icall.c:
11280         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
11281
11282         Code is contributed under MIT/X11 license.
11283
11284 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11285
11286         * class.c (mono_class_setup_vtable): Find the inflated methods in the
11287         inflated class instead of inflating them again.
11288         
11289         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
11290         dynamic case.
11291
11292         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
11293         Call setup_supertypes () after klass->parent is set.
11294         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
11295
11296         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
11297         for inflated instances of not yet created dynamic generic classes.
11298         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
11299         times from inflated_method.
11300         (methodbuilder_to_mono_method): Ditto.
11301
11302 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
11303
11304         * gc.c: code cleanup and removed old untested option of not creating the
11305         finalizer thread.
11306
11307 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
11308
11309         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
11310         creating a jump trampoline for dynamic methods.
11311
11312 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
11313
11314         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
11315         generic TypeBuilders when called from another method of the same type (bug #335131).
11316
11317
11318 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
11319
11320         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
11321         doesn't seem to work perfectly.
11322         
11323         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
11324         called multiple times.
11325         (methodbuilder_to_mono_method): Ditto.
11326         (resolve_object): Inflate FieldBuilder's.
11327
11328 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
11329
11330         * string-icalls.c, string-icalls.h, appdomain.c: patch from
11331         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
11332         RemoveEmptyEntries in the string.Split implementation (bug #322375).
11333
11334 2007-10-26  Dick Porter  <dick@ximian.com>
11335
11336         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
11337         Thread initialisation changes
11338
11339 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
11340
11341         * verify.c: fix compatibility check between arrays and System.Array
11342
11343 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
11344
11345         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
11346         too. Fixes #336999.
11347
11348 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
11349
11350         * object.c (mono_value_box): Use typed allocation here.
11351
11352 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
11353
11354         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
11355         trampoline instead of compiling the method right away.
11356
11357         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
11358
11359 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
11360
11361         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
11362         related fields for dynamic classes. Fixes #334493.
11363
11364 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
11365
11366         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
11367         
11368         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
11369
11370         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
11371         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
11372
11373         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
11374
11375         * reflection.c (create_generic_typespec): Initialize klass->generic_container
11376         if needed.
11377         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
11378
11379 2007-10-18  Jonathan Chambers <joncham@gmail.com>
11380
11381         * marshal.c: Use correct key when removing item
11382         from ccw_hash.
11383         
11384         Code is contributed under MIT/X11 license.
11385
11386 2007-10-17  William Holmes  <billholmes54@gmail.com>
11387
11388         *marshal.c: Adding a case to marshal booleans to U1
11389
11390         Code is contributed under MIT/X11 license.
11391
11392 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
11393
11394         * class.c (mono_class_from_name): Search the modules compromising dynamic
11395         assemblies. Fixes #331601.
11396
11397 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
11398
11399         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
11400         exception if the type name contains an assembly component. Fixes #334203.
11401
11402         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
11403         modules inside dynamic assemblies. Fixes #334200.
11404         
11405         * reflection.c: Set image->public_key and image->public_key_length;
11406
11407         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
11408         fields.
11409
11410         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
11411         
11412 2007-10-16  Mark Probst  <mark.probst@gmail.com>
11413
11414         * metadata.c: Implemented correct comparing of generic classes.
11415         An inflated generic class can be equal to a non-inflated one if it
11416         is inflated with generic type variables as type arguments.  Fixes
11417         bug #333798.
11418
11419 2007-10-15  Dick Porter  <dick@ximian.com>
11420
11421         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
11422         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
11423         81646.
11424
11425         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
11426         instead of a monitor lock.  This means that monitor_try_enter and
11427         co can set the thread state safely.
11428         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
11429         thread_interrupt_requested, so interrupt actually works.
11430
11431         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
11432         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
11433         state accessor function
11434
11435 2007-10-15  Martin Baulig  <martin@ximian.com>
11436
11437         * mono-debug.h
11438         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
11439         the debugger with the current runtime.
11440
11441 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
11442
11443         * object.c, object-internals.h: added the ability to set a single
11444         trampoline for all the slots in a vtable.
11445
11446 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11447
11448         * marshal.c: deal with a possible race condition during multicast
11449         delegate invocation.
11450
11451 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11452
11453         * class.c: ensure value type methods don't have the synchronized
11454         flag set.
11455
11456 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
11457
11458         * string-icalls.c, string-icalls.h: reverted unapproved patch that
11459         breaks the build.
11460
11461 2007-10-11  Joel Reed  <joelwreed@comcast.com>
11462
11463         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
11464         to take an options parameter so that empty entries can be removed during
11465         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
11466
11467 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
11468
11469         * marshal.c: make sure we don't store the signature from a dynamic
11470         method into the runtime invoke cache (bug #327189).
11471
11472 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11473
11474         * marshal.c: make sure the wrapper methods are properly initialized.
11475
11476 2007-10-11  Mark Probst  <mark.probst@gmail.com>
11477
11478         * metadata.c, metadata-internals.h: Generalized
11479         mono_type_stack_size() to mono_type_stack_size_internal() which
11480         takes an additional argument specifying whether it allows open
11481         types.
11482
11483 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
11484
11485         * verify.c (do_invoke_method): handle typedbyref params
11486         correctly and check for unverifiable return values.
11487
11488         * verify.c (do_newobj): fix a warning.
11489
11490 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
11491
11492         * verify.c: don't tread typedbyref as allways unverifable,
11493         so uses, like (ld/st)loc.0 are valid. verify for the cases
11494         that it matters, like boxing related operations.
11495
11496 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
11497
11498         * verify.c: add verification of the newobj opcode. verification
11499         of delegate instantation still missing due ldftn and virldftn not
11500         pushing the function type on stack
11501
11502 2007-10-08  Mark Probst  <mark.probst@gmail.com>
11503
11504         * class-internals.h: Runtime generic context data structure
11505         definition.
11506
11507         * object.c: Initialization of runtime generic context at runtime
11508         vtable creation time.
11509
11510 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
11511         * class.c (mono_class_create_from_typedef,
11512         mono_class_from_generic_parameter, mono_ptr_class_get,
11513         mono_fnptr_class_get, mono_bounded_array_class_get)
11514         * domain.c (mono_domain_create, mono_domain_free)
11515         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
11516         * image.c (do_mono_image_load, mono_image_close):
11517         Hooked up load-unload profiler events.
11518
11519 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
11520
11521         * domain.c: track statistics about the actual amount of native code
11522         allocated.
11523
11524 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
11525
11526         * class.c: the valuetype enumerators don't have the additional
11527         supertypes interfaces.
11528
11529 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
11530
11531         * class.c: need more interfaces setup for the IEnumerator<T>
11532         object created for arrays (tests/ienumerator-interfaces.2.cs).
11533
11534 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
11535
11536         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
11537
11538 2007-10-05  Alp Toker  <alp@atoker.com>
11539
11540         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
11541         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
11542         #315863.
11543
11544 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
11545
11546         * verify.c (verify_type_compatibility_full): verification of
11547         compatibility improved, validates correctly non-strict checks between
11548         native int and I4 types different than (unsigned)int32.
11549
11550         * verify.c (do_store_indirect): added, do all verification of
11551         ldind.X opcodes. 
11552
11553         * verify.c (get_load_indirect_mono_type): renamed to
11554         get_indirect_op_mono_type, as it now returns the MonoType for 
11555         ldind.X and stind.X opcodes.
11556
11557 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
11558
11559         * reflection.c: Fix the encoding of generic type definition for
11560         TypeBuilders.
11561
11562         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
11563         mono_image_typedef_or_ref but allows to specify if typespec lookups should
11564         be made. Typespec check is done prior to typeref cache lookup.
11565
11566         * reflection.c (mono_image_typedef_or_ref): now just delegate to
11567         mono_image_typedef_or_ref_full.
11568
11569         * reflection.c (encode_generic_class): encode the generic class
11570         directly instead of calling encode_type.
11571
11572         * reflection.c (encode_type): encode the generic type definition
11573         MonoClass as a generic instantiation.
11574
11575         * reflection.c (create_typespec): cache typespec tokens in
11576         the assembly->typespec cache. Don't create typespec for a generic
11577         instance MonoClass. Create typespec for the generic type defintion.
11578
11579         * reflection.c (create_generic_typespec): encode the generic
11580         class directly instead of calling encode_type.
11581
11582         * reflection.c (mono_image_create_token): encode the generic
11583         type definition not using a typespec for MonoType instances.
11584
11585
11586 2007-10-04  Raja R Harinath  <rharinath@novell.com>
11587
11588         Fix #328812
11589         * class.c (mono_image_init_name_cache): Don't return nested
11590         'protected internal' classes.
11591         (mono_class_from_name_case): Likewise.
11592
11593 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
11594
11595         * icall-def.h, icall.c : get_bundled_machine_config() is now the
11596           common function used by both DefaultConfig in System.dll and
11597           InternalConfigurationHost in System.Configuration.dll.
11598
11599 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
11600
11601         * class.c: automatically add to vectors only a few essential explicit
11602         generic interfaces. The rest of the interfaces that arrays should
11603         provide are currently implicitly added (but still not lazily, see the
11604         design in the discussion of bug#325495 for the details of what is
11605         needed for that). Additionally, implicit interfaces are assigned the
11606         same vtable slot as the explicit interfaces (as they are compatible):
11607         this enables huge memory savings since we don't need to instantiate
11608         as many memthods and as large vtables anymore. Also, Since
11609         GetEnumerator<T> returns an instance of a type that is required to
11610         support a similarly large set of interfaces as arrays, we add
11611         implicit interfaces and interface offset sharing support to those
11612         types, too. This change adds all the required interfaces so that
11613         the anonarray.cs test case in the bug report works (we don't add
11614         all the interfaces to arrays of arrays 3-level deep and more because
11615         of the memory requirements explained in the bug and since they are much
11616         less common: the lazy-loading support will enabled them to work, too).
11617
11618 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
11619
11620         * verify.c (merge_stacks): major clean up, all type compatibility
11621         checks are done by verify_type_compatibility. This fix my earlier lack
11622         of understanding of the CLR type system and merge_stacks no longer looks
11623         scary.
11624
11625         * verify.c: fixed some bad spelling.
11626
11627 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
11628
11629         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
11630         a given stack slock.
11631         
11632         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
11633         verify_type_compatibility_full. This removed a near indentical function and fixed
11634         handling of Int32 and IntPtr across all opcodes.
11635
11636 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
11637
11638         * class.c: only vectors have the additional generic interfaces.
11639
11640 2007-10-01  Jonathan Chambers <joncham@gmail.com>
11641
11642         * mono-config.c: Use g_strcasecmp instead of
11643         strcasecmp like everywhere else to fix
11644         compilation with MSVC.
11645         
11646         Code is contributed under MIT/X11 license.
11647
11648 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
11649
11650         * object.c, object-internals.h: refactored the IMT code to enable
11651         building a single slot at a time and lazily creating the IMT trampolines
11652         and thunks.
11653
11654 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
11655
11656         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
11657
11658         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
11659         Fixes #328501.
11660         
11661 2007-09-29  Raja R Harinath  <harinath@gmail.com>
11662
11663         * loader.c (method_from_methodspec): Rearrange to avoid
11664         un-necessary exposition.  Don't assert out if the method's
11665         declaring type is a generic type definition.
11666
11667 2007-09-28  Martin Baulig  <martin@ximian.com>
11668
11669         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
11670
11671 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
11672
11673         * class-internals.h: optimize field layout of MonoClass to
11674         requires less cachelines at runtime and save a few bytes on 64 bit
11675         systems.
11676
11677 2007-09-28  Jb Evain  <jbevain@novell.com>
11678
11679         * reflection.c: when encoding type names in custom attributes,
11680         if the type is a closed generic type, its generic arguments
11681         have to be serialized as AssemblyQualifiedName, so that when
11682         they are deserialized, it's possible to re-create them properly.
11683         Fixes #329450.
11684
11685
11686 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
11687
11688         * object.c, class-internals.h: added delegate-creation counter.
11689
11690 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
11691
11692         * class.c: cleanup of the code that synthetizes interfaces for
11693         arrays in 2.0: saves quit a bit of corlib mempool memory.
11694         Code to fix bug #325495 ifdeffed out for now until the issues
11695         with memory usage and O(n^2) behaviour are fixed.
11696
11697 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
11698
11699         * marshal.c: when possible, do not duplicate the name of the methods
11700         in the method builder and in the generated MonoMethod.
11701
11702 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
11703         * verify.c: added support for type checking ldind_* opcodes.
11704
11705 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
11706
11707         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
11708         which is used to distinguish the fully open instantiation of a TypeBuilder
11709         with the rest. This temporary hack is required to restore the property that
11710         the fully open instantiation is the same type of the generic type definition.
11711
11712         * class-internals.h (mono_generic_class_is_generic_type_definition):
11713         new function as part of the internal API.
11714
11715         * class.c (inflate_generic_type): return NULL when the generic inst is
11716         fully open. The fully open generic type is now the same as the generic type
11717         definition for non TypeBuilder types.
11718
11719         * class.c (mono_generic_class_get_class): removed assert since it is
11720         no longer valid, gklass->cached_class can point to the generic type definition.
11721
11722         * class.c (mono_generic_class_is_generic_type_definition): new.
11723
11724         * metadata.c (mono_generic_class_hash): added is_tb_open field
11725         to the hash calculation.
11726
11727         * metadata.c (free_generic_class): if the generic class is associated
11728         with the generic type definition, its field will come from the mempool and
11729         must not be freed.
11730
11731         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
11732         new, this function identifies the corner case of a TypeBuilder fully open
11733         instantiation.
11734
11735         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
11736         for lookup. Set gclass->cached_class to be the container class in case of
11737         the fully open instantiation of non TypeBuilder types.
11738
11739         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
11740         to compare generic classes.
11741
11742         * reflection.c (method_encode_methodspec): remove assert that
11743         no longer is valid.
11744
11745         * reflection.c (mono_reflection_generic_class_initialize): add
11746         an aditional assert to ensure the proper type is used.
11747
11748 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
11749
11750         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
11751         to enjoy it.
11752
11753 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
11754
11755         * verify.c (push_arg): Fixed support for ldarga
11756         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
11757         MonoType used as first arg in case of instance calls.
11758
11759 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
11760
11761         * verify.c: Support for verifying VAR and MVAR types, 
11762
11763 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
11764
11765         * icall.c (ves_icall_get_property_info): Set the reflected type of the
11766         accessors correctly.
11767
11768 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
11769
11770         * threads.c: support OSX and other systems in
11771         mono_thread_get_stack_bounds (bug #328026).
11772
11773 2007-09-25  Martin Baulig  <martin@ximian.com>
11774
11775         * mono-debug.h
11776         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
11777
11778 2007-09-24  Martin Baulig  <martin@ximian.com>
11779
11780         * mono-debug.h
11781         (MonoDebugClassEntry): Moved the definition of this struct into
11782         mono-debug.c to make it private.
11783
11784         * mono-debug.c
11785         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
11786         type table per symbol file, we don't need to store the symfile id
11787         any longer.
11788
11789 2007-09-24  Martin Baulig  <martin@ximian.com>
11790
11791         Create one type table per symbol file, since a `MonoClass *' gets
11792         invalid when its image is unloaded.
11793
11794         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
11795         (MonoDebugHandle): Added `type_table'.
11796
11797 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
11798
11799         * mempool.c, mempool.h: added mono_mempool_new_size () API
11800         to be able to specify a smaller initial size for the pool.
11801         Adjusted the code to slowly increase pool size before using
11802         the previous default size.
11803         * image.c: use a small initial size for image mempools.
11804
11805 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
11806
11807         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
11808         Fixes ##320990.
11809
11810         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
11811         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
11812
11813 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
11814
11815         * metadata.c (mono_type_create_from_typespec): Remove an invalid
11816         free. Fixes #327438.
11817
11818 2007-09-21  Raja R Harinath  <harinath@gmail.com>
11819
11820         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
11821         generic instantiations, etc.
11822         <MONO_TYPE_ARRAY>: Likewise.
11823
11824 2007-09-21  Martin Baulig  <martin@ximian.com>
11825
11826         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
11827         these structs were never defined.
11828         (MonoDebugHandle): Removed the `_priv' field, it was never used.
11829
11830 2007-09-21  Martin Baulig  <martin@ximian.com>
11831
11832         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
11833
11834 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
11835
11836         * image.c: removed the guid hash tables: we can get the same info
11837         without the additional memory usage hit (partially fixes also bug #327052).
11838
11839 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
11840
11841         * profiler.h, profiler-private.h, profiler.c: add a new profiler
11842         event to handle unloading methods. After the event is called, the
11843         corresponding MonoMethod* must be considered invalid.
11844         * loader.c (mono_free_method): call the new mono_profiler_method_free
11845         event.
11846
11847 2007-09-20  Mark Probst  <mark.probst@gmail.com>
11848
11849         * domain-internals.h: New flag in MonoJitInfo which marks shared
11850         generic methods.  New hash table (shared_generics_hash) in
11851         MonoDomain to keep track of shared generic methods.  Prototypes
11852         for functions to register and lookup shared generic methods.
11853
11854         * domain.c: Support for registering and looking up shared generic
11855         methods via a hash table (shared_generics_hash) in MonoDomain.
11856
11857         * class-internals.h: New exception to signal failure of shared
11858         compilation of a generic method.  New counters for generics
11859         sharing in MonoStats.
11860
11861 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
11862
11863         * image.c, metadata-internals.h: don't keep a file descriptor open
11864         for loaded assemblies (bug#325988).
11865
11866 2007-09-19  Raja R Harinath  <rharinath@novell.com>
11867
11868         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
11869         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
11870         use the corresponding datatypes.
11871         (type_in_image): Update to changes.
11872         (CleanForImageUserData): Simplify.
11873         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
11874         Avoid quadratic behaviour in handling the "stolen" list by
11875         separating the filter predicate out, and by prepending the stolen
11876         items rather than appending them.
11877         (steal_ginst_in_image): Likewise.
11878         (mono_metadata_clean_for_image): Update to changes.
11879
11880 2007-09-19  Martin Baulig  <martin@ximian.com>
11881
11882         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
11883
11884 2007-09-19  Martin Baulig  <martin@ximian.com>
11885
11886         * mono-debug.c (mono_debug_cleanup): Don't call
11887         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
11888
11889 2007-09-19  Raja R Harinath  <harinath@gmail.com>
11890
11891         Fix crash on 'make run-test' in mcs/errors
11892         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
11893         Avoid more potential allocations in mono_class_from_mono_type.
11894         (ginst_in_image): Update to changes.
11895         (gclass_in_image): Rearrange slightly.
11896
11897 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
11898
11899         * class.c (mono_class_init): Move the code that sets up class->methods to 
11900         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
11901
11902         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
11903         canonical instance of an inflated generic signature.
11904         (mono_type_create_from_typespec): Remove an invalid free.
11905
11906         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
11907
11908 2007-09-18  Marek Habersack  <mhabersack@novell.com>
11909
11910         * domain-internals.h: added a declaration of the
11911         mono_assembly_load_full_nosearch internal function.
11912
11913         * assembly.c (mono_assembly_load_with_partial_name): use
11914         mono_try_assembly_resolve return value properly.
11915         (mono_assembly_load_full_nosearch): copied the function body from
11916         mono_assembly_load_full, without the code to invoke assembly
11917         search hooks.
11918         (mono_assembly_load_full): calls the above new function and if the
11919         assembly is not resolved, invokes the search hooks.
11920
11921         * appdomain.c (mono_runtime_init): restore the global postload
11922         assembly search handlers.
11923
11924 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
11925
11926         * class.c (mono_class_init): Make sure class->methods and class->properties
11927         are never NULL in the generics case.
11928
11929         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
11930
11931 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
11932
11933         * metadata.c (free_generic_class): Disable some code to fix the build.
11934
11935         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
11936
11937         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
11938         from the image mempool.
11939
11940         * metadata.c (free_generic_class): Free more data from the inflated class.
11941
11942         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
11943
11944         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
11945         mempool.
11946         (mono_type_create_from_typespec): Ditto.
11947
11948         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
11949         MonoImage to the caller.
11950         (mono_init_internal): Save the opened image in a global variable.
11951         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
11952
11953         * reflection.c (resolve_object): Fix a leak.
11954
11955         * metadata.c: Fix the freeing of data in the generics caches.
11956         
11957         * metadata.c (free_generic_inst): Comment this out to fix the build.
11958         (free_generic_class): Ditto.
11959
11960         * metadata.c: Free cached generic methods, instantinations and classes when
11961         they are removed from the caches.
11962         (mono_metadata_free_type): Free the type itself.
11963
11964         * class.c: Free the result of mono_class_inflate_generic_type () in a few
11965         places.
11966
11967 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
11968
11969         * boehm-gc.c: restrict managed allocs to __thread supporting
11970         architectures.
11971
11972 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
11973
11974         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
11975         (mono_generic_class_get_class): Fix a leak.
11976
11977         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
11978         mono_metadata_free_type ().
11979         (mono_metadata_inflate_generic_inst): Fix a leak.
11980
11981 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
11982
11983         * mono-debug.c (free_header_data): Fix a leak missed earlier.
11984
11985         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
11986         mempool.
11987
11988         * mono-debug.c (mono_debug_close_image): Fix call to 
11989         g_hash_table_remove ().
11990
11991 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
11992
11993         * icall-def.h: redirect all the string ctor to the managed
11994         CreateString () methods.
11995         * string-icalls.c, string-icalls.h: removed dead code for string
11996         ctors and icalls.
11997
11998 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
11999
12000         * mono-debug.c: Fix memory leaks.
12001
12002 2007-09-14  Jonathan Chambers <joncham@gmail.com>
12003
12004         * threads-types.h: Implement mono_hazard_pointer_set and 
12005         mono_hazard_pointer_clear macros using do/while(0) to fix
12006         compilation with MSVC.
12007         
12008         Code is contributed under MIT/X11 license.
12009
12010 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
12011
12012         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
12013         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
12014
12015 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12016
12017         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
12018         icalls.
12019
12020 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12021
12022         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
12023         managed-code allocated as well.
12024
12025 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12026
12027         * class.c (mono_class_is_assignable_from): Add support for generic variance.
12028
12029 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
12030
12031         * boehm-gc.c: fixed the build after the AOT changes.
12032
12033 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
12034
12035         * wrapper-types.h: Add an ALLOC wrapper type.
12036
12037         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
12038         reference managed allocator methods.
12039
12040 2007-09-12  Marek Safar  <marek.safar@gmail.com>
12041
12042         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
12043         of Type array and not MonoType, a fix suggested by Hari.
12044         
12045 2007-09-12  Jonathan Chambers <joncham@gmail.com>
12046
12047         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
12048         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
12049         
12050         Code is contributed under MIT/X11 license.
12051
12052 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12053
12054         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
12055
12056 2007-09-12  Marek Habersack  <mhabersack@novell.com>
12057
12058         * image.c (do_mono_image_open): if assembly file fails to open and
12059         MONO_IOMAP is in effect, try to find the path in a
12060         case-insensitive way.
12061
12062         * appdomain.c (mono_runtime_init): do not install postload hooks -
12063         tests show that MS.NET doesn't use anything of that sort to
12064         trigger the AppDomain.AssemblyResolve event.
12065         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
12066         made non-static.
12067         (mono_runtime_init): init portability helpers here.
12068
12069         * assembly.c (mono_assembly_load_with_partial_name): if other   
12070         attempts fail, trigger the AppDomain.AssemblyResolve event handler
12071         to resolve the assembly.
12072
12073         * domain-internals.h: added mono_try_assembly_resolve and marked
12074         it as internal.
12075
12076 2007-09-11  Jb Evain  <jbevain@novell.com>
12077
12078         * object-internals.h (MonoReflectionDynamicMethod): add
12079         a `MonoReflectionType *owner` field. The owner is used
12080         * reflection.c:
12081         (mono_reflection_create_dynamic_method): use the owner of the dynamic
12082         method as the class declaring the dynamic method.
12083         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
12084         dynamic method to the declaring type of the methodbuilder.
12085
12086 2007-09-11  Mark Probst  <mark.probst@gmail.com>
12087
12088         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
12089         rules for calling methods via reflection.
12090
12091 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
12092
12093         * reflection.c (resolve_object): Add support for MonoGenericClass. 
12094         Inflate MonoType's.
12095
12096 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
12097
12098         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
12099         provide a managed method that does fast allocations without needing
12100         a managed->unmanaged transition. Boehm GC implementation currently
12101         enabled for ptrfree objects on sane architectures.
12102
12103 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12104
12105         * marshal.c, marshal.h: exported a couple of useful functions and
12106         added mono_mb_get_label () to easily handle backward branches.
12107
12108 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
12109
12110         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
12111
12112 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
12113
12114         * loader.c (find_method): Fixed the regression introduced while
12115         fixing bug #81466.
12116
12117 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
12118
12119         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
12120         well.
12121         
12122         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
12123         icall.c reflection.c: Pass a MonoGenericContext argument to 
12124         mono_lookup_dynamic_token ().
12125
12126         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
12127         #82744.
12128         
12129 2007-09-09  Robert Jordan  <robertj@gmx.net>
12130
12131         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
12132         for generic methods.
12133
12134         * object.c (mono_object_get_virtual_method): Handle generic methods.
12135         Fixes bug #78882.
12136
12137         Code is contributed under MIT/X11 license.
12138
12139 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
12140
12141         * image.c: fix locking in mono_image_load_file_for_image ().
12142
12143 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
12144
12145         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
12146         used only as a cache: added an icall to fill it.
12147
12148 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
12149
12150         * reflection.h: exposed mono_reflection_free_type_info
12151         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
12152         since mono_reflection_bind_generic_parameters makes a copy of it.
12153         * reflection.c (free_type_info): subinfos should be freed.
12154         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
12155         made non static.
12156         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
12157         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
12158         this fixes #82695 and #81726.
12159    
12160
12161 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
12162
12163         * process.h, process.c:  added support for user profile/info in
12164           ProcessStartInfo. For now only Windows works.
12165
12166 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
12167
12168         * metadata.c: consider the generic arguments when comparing
12169         signatures (bug #82614).
12170
12171 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12172
12173         * cil-coff.h, image.c: updated assembly loader to cope with the
12174         PE32+ 64 bit file format.
12175
12176 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
12177
12178         * assembly.c, class.c, domain.c, loader.c: remove useless
12179         inclusion of cil-coff.h.
12180
12181 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
12182
12183         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
12184         if interface is marked with CoClassAttribute. 
12185    
12186         Code is contributed under MIT/X11 license.
12187
12188 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12189
12190         * sgen-gc.c: ensure no object from the to space is copied again or finalized
12191         if it's seen twice in major collections.
12192
12193 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
12194
12195         * sgen-gc.c: big objects are not copied to the gray area, but they
12196         need to be considered for scanning, too, if they are brought alive
12197         by an object ready for finalizations or a survived one.
12198
12199 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
12200
12201         * sgen-gc.c: properly account the number of disappearing links when
12202         they are nullified.
12203
12204 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
12205
12206         * sgen-gc.c: share the code to scan the registered roots between the
12207         different types of collections.
12208
12209 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12210
12211         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
12212
12213 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
12214
12215         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
12216         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
12217
12218 2007-08-28  Mark Probst  <mark.probst@gmail.com>
12219
12220         * security-manager.c (mono_security_manager_get_methods):
12221         LinkDemandSecurityException now has 2 arguments instead of 3.
12222
12223 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
12224
12225         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
12226         platforms which need it.
12227
12228 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12229
12230         * sgen-gc.c: unregister thread data structures with a pthread_key_t
12231         dtor.
12232
12233 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
12234
12235         * threads.c: free the thread static data on thread exit.
12236
12237 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
12238
12239         * class.c: walk the hierarchy to find the generic definition for
12240         a class (fixes runtime part of bug #82498).
12241
12242 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12243
12244         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
12245         ...
12246
12247         * image.c (mono_image_close): Here. Hopefully fixes #82510.
12248
12249 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12250
12251         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
12252
12253 2007-08-24  Robert Jordan  <robertj@gmx.net>
12254
12255         * appdomain.c: don't perform the ':'->';' substitution on Win32.
12256
12257 2007-08-24  Jb Evain  <jbevain@novell.com>
12258
12259         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
12260         for byref types.
12261
12262 2007-08-24  Mark Probst  <mark.probst@gmail.com>
12263
12264         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
12265         #82286.
12266
12267 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
12268
12269         * assembly.c: Fix a warning.
12270         
12271 2007-08-23  Marek Habersack  <mhabersack@novell.com>
12272
12273         * appdomain.c: parse the <runtime> section looking for the probing
12274         element with the 'privatePath' attribute, which sets additional
12275         directories in which the runtime should look for assemblies.
12276
12277 2007-08-23  Robert Jordan  <robertj@gmx.net>
12278
12279         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
12280         Fixes #82499.
12281
12282 2007-08-23  Martin Baulig  <martin@ximian.com>
12283
12284         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
12285         _mono_debug_init_corlib() and remove it from the header file.
12286
12287 2007-08-23  Martin Baulig  <martin@ximian.com>
12288
12289         * mono-debug-debugger.c
12290         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
12291         don't notify the debugger about it.
12292
12293         * mono-debug-debugger.h
12294         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
12295
12296 2007-08-23  Robert Jordan  <robertj@gmx.net>
12297
12298         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
12299         Code is contributed under MIT/X11 license.
12300
12301 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
12302
12303         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
12304
12305 2007-08-22  Martin Baulig  <martin@ximian.com>
12306
12307         * mono-debug.c: Store debugging info on a per-domain basis and
12308         free it on domain unload.  Add support for unloading symbol files.
12309
12310         * mono-debug.h
12311         (MonoDebugList): New typedef.
12312         (MonoSymbolTable):
12313         - add `data_tables and `type_table'.
12314         - replace 'symbol_files' and `num_symbol_files' with a
12315           `MonoDebugList *'.
12316         (mono_debug_data_table): Removed.
12317         (mono_debug_list_add): New public function.
12318         (mono_debug_list_remove): New public function.
12319         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
12320         (mono_debug_init_2_memory): Renamed into
12321         mono_debug_open_image_from_memory().
12322         (mono_debug_close_image): New public function.
12323         (mono_debug_domain_create): Likewise.
12324         (mono_debug_domain_unload): Likewise.
12325         (MONO_DEBUGGER_VERSION): Bump to 60.
12326
12327         * mono-debug-debugger.h
12328         (MonoDebuggerEvent):
12329         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
12330         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
12331         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
12332         - rename `THREAD_CREATED' and `THREAD_EXITED' into
12333           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
12334         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
12335           meaning.
12336         (mono_debugger_add_symbol_file): Removed.
12337         (mono_debugger_add_type): Removed.
12338         (mono_debugger_lookup_type): Removed.
12339         (mono_debugger_lookup_assembly): Removed.
12340
12341         * domain.c
12342         (mono_domain_create): Call mono_debug_domain_create().
12343         (mono_init_internal): Call mono_debug_init_corlib().
12344
12345         * assembly.c
12346         (mono_assembly_close): Call mono_debug_close_image().
12347
12348 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
12349
12350         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
12351         mmap call.
12352
12353 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
12354
12355         * sgen-gc.c: ensure section->pin_queue_end is initialized
12356         correctly when non pinning objects in the section have been found.
12357
12358 2007-08-22  Marek Habersack  <mhabersack@novell.com>
12359
12360         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
12361         containing a list of directories separated by ':'. MSDN docs say
12362         the directories should be separated with ';'. Part of a bugfix for
12363         bug #81446
12364
12365 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
12366
12367         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
12368         it should MonoType and not MonoClass.
12369
12370 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
12371
12372         * culture-info-table.h : regenerated.
12373
12374 2007-08-20  William Holmes  <billholmes54@gmail.com>
12375
12376         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
12377          to call ReplaceFile Kernel32 on windows or in io-layer.
12378         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
12379         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
12380          as an internal call.
12381
12382         Code is contributed under MIT/X11 license.
12383
12384 2007-08-20  Jb Evain  <jbevain@novell.com>
12385
12386         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
12387         and MONO_EXCEPTION_FIELD_ACCESS.
12388
12389         * debug-helpers.[c|h]: new mono_field_full_name function.
12390
12391 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12392
12393         * class.c: Removed class_security_level() and moved it to
12394         security-core-clr.c.
12395
12396         * security-core-clr.c, security-core-clr.h: class_security_level()
12397         is now public and renamed to mono_security_core_clr_class_level().
12398         It also looks for security attributes in the classes a class is
12399         nested in.
12400
12401 2007-08-20  Mark Probst  <mark.probst@gmail.com>
12402
12403         * security-core-clr.c, security-core-clr.h: CoreCLR security
12404         utility functions.
12405
12406         * Makefile.am: Added security-core-clr.[ch].
12407
12408         * security-manager.c, security-manager.h: Functions and enum for
12409         setting and getting the security mode.
12410
12411         * class.c: CoreCLR security checks.
12412
12413 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
12414
12415         * icall-def.h, process.c, process.h: implemented icall to get
12416         user/system processor times.
12417
12418 2007-08-17  Mark Probst  <mark.probst@gmail.com>
12419
12420         * domain.c, threads.c, class-internals.h, domain-internals.h: New
12421         reader-lock-free jit_info_table.
12422
12423 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
12424
12425         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
12426
12427         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
12428
12429         * object-internals.h (MonoException): Add missing _data member.
12430
12431 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
12432
12433         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
12434         checking that only methods with matching qname or fqname are picked
12435         from implemented interfaces.
12436
12437 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
12438
12439         * verify.c (do_newarr):added, do type verification of
12440         newarr ops, push the right value on the eval stack.
12441         * verify.c (mono_method_verify): use do_newarr
12442
12443
12444 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
12445
12446         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
12447         factored the common code into get_boxable_mono_type, which
12448         is now using mono_type_get_full, this fixed byref related tests.
12449
12450 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
12451
12452         * class.c: added mono_type_get_full, this function has the same
12453         behavior of mono_class_get_full but the returned MonoType has
12454         all metadata of the associated token in case of a typespec token.
12455         * class.c: added mono_type_retrieve_from_typespec, used by 
12456         mono_type_get_full to retrieve the token type.
12457         * class.c (mono_class_create_from_typespec): changed to use
12458         mono_type_retrieve_from_typespec.
12459         * class.c (mono_ldtoken): changed to use mono_type_get_full
12460         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
12461         * class-internals.h: exported mono_type_get_full for internal use.
12462
12463 2007-08-16  Jb Evain  <jbevain@novell.com>
12464
12465         * domain.c (supported_runtimes): add entry for
12466         the 'moonlight' runtime version.
12467
12468 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12469
12470         * verify.c (mono_method_verify): small typo sliped in.  
12471
12472 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12473
12474         * verify.c (do_unbox_value): added, do type verification of
12475         unboxing ops
12476         * verify.c (mono_method_verify): use do_unbox_value
12477
12478
12479 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12480
12481         * verify.c (dump_stack_value): fixed typo, was printing string
12482         instead of object on stack.
12483         * verify.c (do_box_value): moved the byref check up as it leads
12484         to invalid code and should be done earlier.
12485         * verify.c: improved error messages for and ldobj
12486
12487 2007-08-15  William Holmes  <billholmes54@gmail.com>
12488
12489         * marshal.c (emit_marshal_custom): Omit the call to 
12490           marshal_native_to_managed when calling native to managed 
12491           and the argument is specified as an out argument.
12492
12493         Code is contributed under MIT/X11 license.
12494
12495 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
12496
12497         * verify.c: fixed the type checks for generics, function pointers and vectors.
12498         Added type verification for ldobj and ldtoken. The verifier
12499         would segfault if header or signature of a method contained references
12500         to non-existant types.
12501
12502 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
12503
12504         * marshal.c (cominterop_get_ccw): Patch from
12505         Bill Holmes to no walk up interface hierarchy. 
12506         All parent methods should be present in the interface for COM.
12507    
12508         Code is contributed under MIT/X11 license.
12509
12510 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
12511
12512         * marshal.c (emit_marshal_com_interface): Patch from
12513         Bill Holmes to handle COM Interfaces as return values
12514         for native->managed calls.
12515    
12516         Code is contributed under MIT/X11 license.
12517
12518 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
12519
12520         * marshal.c (cominterop_get_idispatch_for_object): Implement
12521         for runtime callable wrappers.
12522    
12523         Code is contributed under MIT/X11 license.
12524
12525 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
12526
12527         * pedump.c (main): changed from mono_init to mono_init_from_assembly
12528         so 2.0 types are accessible
12529
12530
12531 2007-08-13  Miguel de Icaza  <miguel@novell.com>
12532
12533         * domain.c (mono_init_internal): Call mono_assembly_load_friends
12534         once we load mscorlib.   Due to the order in which we initialize,
12535         the mono_assembly_load_full routine that loads mscorlib did not
12536         load friends.   We now load it once we load the
12537         mono_defaults.internals_visible_class class. 
12538
12539         * assembly.c: Expose the mono_load_friend_assemblies method.
12540
12541 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
12542
12543         * verify.c: improved the handling of boxing, better
12544         type checking for unary ops and conversion. Fix bug
12545         regarding managed pointer compatibility checking
12546
12547 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
12548
12549         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
12550
12551         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
12552
12553 2007-08-09  Raja R Harinath  <rharinath@novell.com>
12554
12555         * reflection.c (dup_type): Remove.
12556         * class.c (dup_type): Remove.
12557         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
12558         instead of the dodgy 'dup_type'.
12559         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
12560         handle the case where 'dup_type' needed the second argument.
12561
12562 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
12563
12564         * domain.c: Fix a warning.
12565
12566 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
12567
12568         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
12569         checking that methods with the same fqname are not overridden
12570         with a method from an ancestor.
12571
12572 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
12573
12574         * threads.c (free_thread_static_data_helper): Avoid a crash if
12575         thread->static_data is not yet set.
12576
12577 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
12578
12579         * marshal.c: Use correct image when emitting
12580         native wrapper for COM calls.
12581    
12582         Code is contributed under MIT/X11 license.
12583
12584 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
12585
12586         * icall-def.h, security.c, security.h :
12587           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
12588
12589 2007-08-07  Martin Baulig  <martin@ximian.com>
12590
12591         * mono-debug-debugger.h
12592         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
12593
12594         * domain.c (mono_domain_free): Call
12595         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
12596
12597 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
12598
12599         * verify.c (check_underflow, check_overflow): error message now returns IL offset
12600         * verify.c (in_same_block): code should test if either offset is inside the clauses
12601         * verify.c (mono_method_verify): push the exception into the eval stack of exception
12602         and filter blocks
12603
12604 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
12605
12606         * image.c (mono_image_close): Fix a leak.
12607
12608         * object.c (mono_runtime_invoke_array): Avoid using alloca.
12609
12610         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
12611
12612 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
12613
12614         * domain.c, threads.c, threads-types.h: fix memory retention issue
12615         with thread static variables not being cleared on domain unload.
12616         Reuse thread static slots after domain unload.
12617
12618 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
12619
12620         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
12621         nullable type.
12622
12623         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
12624         now done in mono_runtime_invoke_array.
12625
12626         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
12627         receiver is a nullable type.
12628
12629         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
12630         generic parameter.
12631
12632 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
12633
12634         * marshal.c: Implement COM Objects as return type for 
12635         managed->unmanaged calls. Added Release calls for COM Object
12636         out/return values in managed->unmanaged calls.
12637
12638         Code is contributed under MIT/X11 license.
12639
12640 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
12641
12642         * threads.h, threads-type.h: move the hazard pointer declarations
12643         to the private header.
12644
12645 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
12646
12647         * file-io.c, appdomain.c: memory leak fixes.
12648
12649 2007-08-02  Dick Porter  <dick@ximian.com>
12650
12651         * socket-io.c
12652         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
12653         SO_REUSEADDR setting into io-layer/sockets.c.
12654
12655 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
12656
12657         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
12658         from Object when called on a generic parameter. Fixes #82211.
12659
12660 2007-08-01  Dick Porter  <dick@ximian.com>
12661
12662         * file-io.c (convert_share): Test FileShare values bit-by-bit.
12663         Fixes bug 79250 yet again.
12664
12665 2007-07-30  Martin Baulig  <martin@ximian.com>
12666
12667         Merged the `debugger-dublin' branch.
12668
12669         * mono-debug.h
12670         (MonoDebugDataTable): New typedef.
12671         (MonoDebugMethodAddressList): New typedef.
12672         (MonoDebugWrapperData): Removed.
12673         (MonoDebugSymbolTable): Removed `current_data_table',
12674         `current_data_table_size', `current_data_table_offset'.
12675         (MonoDebugDataItemType): Moved into mono-debug.c.
12676         (MonoDebugMethodJitInfo): Remove `address'.
12677         (mono_debug_data_table): New global variable.
12678         (mono_debug_lookup_method_addresses): New public function.
12679         (mono_debug_find_method): Take a `MonoMethod *', not a
12680         `MonoDebugMethodInfo *'.
12681
12682         * mono-debug.c: Drop support for the old symbol tables.
12683
12684 2007-06-28  Martin Baulig  <martin@ximian.com>
12685
12686         * mono-debug.c (mono_debug_debugger_version): New public variable.
12687
12688 2007-07-31  William Holmes  <billholmes54@gmail.com>
12689
12690         * metadata.c Changed mono_type_create_from_typespec to not insert
12691           the type into the hash map until after
12692           do_mono_metadata_parse_type has completed.
12693         Fixes Bug #82194
12694         Code is contributed under MIT/X11 license.
12695
12696 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
12697
12698         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
12699         generic parameter. Fixes #82211.
12700
12701 2007-07-27  Jb Evain  <jbevain@novell.com>
12702
12703         * pedump.c (dump_metadata, dump_metadata_header): dump
12704         versions contained in the metadata header.
12705
12706 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
12707
12708         * threads.c: register small_id_table with the GC.
12709
12710 2007-07-27  Mark Probst  <mark.probst@gmail.com>
12711
12712         * threads.c, threads.h, class-internals.h, object-internals.h:
12713         Hazard pointers, to be used by lock-free parallel algorithms.
12714
12715 2007-07-26  Dick Porter  <dick@ximian.com>
12716
12717         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
12718         routine on non-windows platforms, as I've not managed to think of
12719         a non-kludgy way of doing this.  Finishes off bug 78739.
12720
12721 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
12722
12723         * object.c: properly setup interface_bitmap in proxy vtables.
12724
12725 2007-07-25  Marek Habersack  <mhabersack@novell.com>
12726
12727         * appdomain.c (get_shadow_assembly_location): do not use TickCount
12728         to create unique shadow copy target directories, use the domain's
12729         serial number instead. Each domain gets a unique target directory
12730         that way.
12731
12732         * domain.c (mono_domain_create): added code to increment domain
12733         shadow copy serial number and cache the value in the current
12734         domain structure.
12735
12736         * domain-internals.h (struct _MonoDomain): added a new field -
12737         shadow_serial to hold the serial number used in generation of
12738         shadow-copy directories. This is to make sure that the directory
12739         name is unique for each and every domain created. We avoid a race
12740         condition with overriding assemblies already in use by other app
12741         domains.
12742
12743 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
12744
12745         * class.c (mono_bounded_array_class_get): fixed memory leak when 
12746         binding generic parameters.
12747
12748 2007-07-24  Raja R Harinath  <rharinath@novell.com>
12749
12750         * metadata.c (do_mono_metadata_parse_generic_class): Use
12751         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
12752         error.
12753
12754 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
12755
12756         * loader.c, class-internals.h, reflection.c: removed the per-method
12757         generics hashtable: we use the global one through the call of
12758         mono_class_inflate_generic_method ().
12759
12760 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
12761
12762         * class.c, metadata.c, class-internals.h: introduce yet another
12763         generics global cache for inflated methods (fixes 98% of the perf
12764         issue in bug #81806).
12765
12766 2007-07-23  Raja R Harinath  <rharinath@novell.com>
12767
12768         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
12769         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
12770         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
12771         return a MonoGenericInst containing (a copy) of those types.
12772         (mono_metadata_inflate_generic_inst): Update to changes.
12773         (mono_metadata_parse_generic_inst): Likewise.
12774         (mono_get_shared_generic_inst): Likewise.
12775         * reflection.c (mono_class_bind_generic_parameters): Likewise.
12776         (mono_reflection_bind_generic_method_parameters): Likewise.
12777         * metadata-internals.h: Likewise.
12778         * icall.c (free_generic_context): Kill.
12779         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
12780
12781         * reflection.c (reflection_methodbuilder_to_mono_method): Use
12782         mono_metadata_type_dup.
12783         * marshal.c (mono_mb_create_method): Likewise.
12784
12785         * metadata.c (mono_metadata_type_dup): Rename from
12786         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
12787         MonoImage.  Handle a few more cases, esp. when no mempool is given.
12788         * marshal.c, metadata-internals.h: Update to changes.
12789
12790 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
12791
12792         * class.c: fixed a small leak for array classes and removed warning.
12793
12794 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
12795
12796         * loader.c (mono_method_get_param_token): Make this work on generic methods.
12797         Return 0x8000000 for return parameters. Fixes #82161.
12798
12799 2007-07-21  Marek Habersack  <grendello@gmail.com>
12800
12801         * appdomain.c (get_shadow_assembly_location): append the current
12802         ticks value to the path. Avoids overwriting the same assemblies by
12803         several threads at the same time.
12804
12805 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
12806         and Raja R Harinath  <rharinath@novell.com>
12807
12808         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
12809         Simplify slightly.
12810         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
12811         property for testing if a method is a generic method definition.
12812
12813 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
12814
12815         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
12816
12817 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12818
12819         * verify.c: used function from private branch, reverted to the one in class.h 
12820
12821 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12822
12823         * verify.c: a typo slipped in and the code wont compile
12824
12825 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12826
12827         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
12828         disabled box instruction as it is doing the wrong thing
12829         improved stack dump messages, now it is easier to debug type related issues
12830
12831
12832 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
12833
12834         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
12835
12836 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12837
12838         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
12839         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
12840         grouped with class and valuetype. This change will simply 
12841         the code as it should be handled just like unmanaged pointers.
12842
12843 2007-07-19  Mark Probst  <mark.probst@gmail.com>
12844
12845         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
12846
12847 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
12848
12849         * verify.c: several stack merge issues fixed, reference comparisons now
12850         check the type size. strict type check now works correctly.
12851         added more uses of IS_MANAGED_POINTER macro.
12852         fixed issues pointed by running the test suite against .net.
12853         
12854
12855 2007-07-19  Mark Probst  <mark.probst@gmail.com>
12856
12857         * class.c, loader.c, class-internals.h: Removed the
12858         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
12859         defines.
12860
12861         * icall.c: Better error checking in some internal reflection
12862         methods.
12863
12864 2007-07-18  William Holmes  <billholmes54@gmail.com>
12865
12866         * filewatcher.c : removed unused variable 'filename' in 
12867           ves_icall_System_IO_FSW_SupportsFSW
12868
12869 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
12870
12871         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
12872         obsolete, removed.
12873
12874 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
12875
12876         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
12877         
12878         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
12879
12880 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
12881
12882         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12883         Implement generics support.
12884         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
12885
12886         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
12887         type_args and method_args arguments.
12888         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
12889         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
12890         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
12891
12892 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
12893
12894         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
12895           It adds a rootimage parameter to mono_reflection_get_type_internal,
12896           adds new function mono_reflection_get_type_with_rootimage and use
12897           the rootimage to resolve the types instead of the current image
12898
12899 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
12900
12901         * culture-info-table.h: Forgot to update after r78304.
12902
12903 2007-07-13  Raja R Harinath  <rharinath@novell.com>
12904
12905         * class.c (mono_class_is_open_constructed_type)
12906         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
12907
12908 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
12909
12910         * class.c (mono_bounded_array_class_get):  method fails if used with
12911         an incomplete TypeBuilder enum (no basetype field), fixed it by 
12912         avoiding calculating the size for such array as it cannot be instantiated.
12913         Fix bug #82015
12914
12915 2007-07-12  Raja R Harinath  <rharinath@novell.com>
12916
12917         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
12918         field.
12919         * metadata.c, reflection.c: Update to changes.
12920
12921 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
12922
12923         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
12924         mono_class_is_valid_enum, they are used to valide a enum when loading.
12925         * reflection.c: used new functions to throw TypeLoadException when and
12926         invalid enum is build with TypeBuilder. Fixes #82018
12927   
12928 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
12929
12930         * object.c: forgot commit of mono_class_setup_methods () to access
12931         iface->methods.
12932         * object-internals.h: added a few more handy fields to
12933         MonoIMTCheckItem.
12934
12935 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
12936
12937         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
12938         iface->methods.
12939
12940 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
12941
12942         * class-internals.h, object-internals.h, object.c: IMT-based
12943         interface invocation core from Massimiliano Mantione
12944         (massi@ximian.com) with a reworked arch-specific interface,
12945         bsearch implementation and a few bugfixes and memory savings by me.
12946
12947 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
12948
12949         * class.c (mono_class_create_from_typedef): mono would segfault if 
12950         an enum did not have a __value field. It now throws a TypeLoadException
12951         for such cases. Fix bug #82022
12952
12953 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
12954
12955         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
12956
12957 2007-07-09  Mark Probst  <mark.probst@gmail.com>
12958
12959         * class.c (mono_class_init): If a class is already inited but has
12960         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
12961
12962 2007-07-09  Mark Probst  <mark.probst@gmail.com>
12963
12964         * class.c: Properly handle the case of an unimplemented interface
12965         method.  Fixes: 81673.
12966
12967 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
12968
12969         * class-internals.h, object.c: cleanup patch from massi: use
12970         MonoVTable->interface_bitmap since the vtable interfaces offset array
12971         is going away.
12972
12973 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
12974
12975         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
12976         GetMDStreamVersion icall instead.
12977
12978 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
12979
12980         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
12981         not use mono_dl_build_path() with a full library name: makes
12982         fallbacks to libgaim and libfam work.
12983
12984 2007-07-06  William Holmes  <billholmes54@gmail.com>
12985
12986         * assembly.c: Added a continue statement in probe_for_partial_name when
12987          parse_assembly_directory_name fails.  Fixes : 82002
12988
12989 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
12990
12991         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
12992         and added a verification  for TYPEDBYREF.
12993         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
12994         make native int interchangeable with int32 and some small cleanup and formating.
12995         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
12996         handle byref of byref.
12997         * verify.c (push_local): handle byref of byref.
12998         * verify.c (do_binop): invalid mix of values is unverifiable
12999         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
13000         added visibility checks
13001         * verify.c (field related method): added visibility checks
13002         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
13003
13004 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
13005
13006         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
13007         string.
13008
13009 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
13010
13011         * profiler.c (mono_profiler_load): Fix an off-by-one error.
13012
13013         * marshal.c (emit_marshal_string): When returning a string from managed code,
13014         allways make a copy even for unicode strings. Fixes #81990.
13015
13016 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
13017
13018         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
13019         of byref generic inst types (bug #81997).
13020
13021 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
13022
13023         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
13024         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
13025
13026 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
13027
13028         * marshal.c (emit_marshal_string): Add support for unicode strings in
13029         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
13030
13031 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
13032
13033         * verify.c: field load/store are now verified, missing only access checks now
13034
13035 2007-06-28  Martin Baulig  <martin@ximian.com>
13036
13037         * mono-debug.c (mono_debug_debugger_version): New public variable.
13038
13039 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
13040
13041         * locales.c: When constructing DateTimeFormat or NumberFormat for
13042         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
13043         MonoCultureInfo contructed from the current locale is always
13044         read-only and has UseUserOverride set to true. All MonoCultureInfo
13045         instances returned for GetCultures have both IsReadOnly and
13046         UseUserOverride set to true. Fixes part of bug #81930.
13047
13048 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
13049
13050        * icall-def.h: Update System.__ComObject icalls
13051        * marshal.c: Avoid managed transition (and object creation)
13052        when looking up COM interface in RCW.
13053        * marshal.h: Ditto.
13054        
13055        Code is contributed under MIT/X11 license.
13056
13057 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
13058
13059         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
13060         to avoid crashes during assembly unloading.
13061
13062 2007-06-22  Raja R Harinath  <rharinath@novell.com>
13063
13064         Fix MethodInfo.IsGenericMethodDefinition
13065         * reflection.c (mono_reflection_bind_generic_method_parameters):
13066         Rearrange code to ensure we always uses a generic method definition.
13067         * class.c (mono_class_inflate_generic_method_full): Set
13068         'generic_container' field only for generic method definitions.
13069         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
13070         Use presense of 'generic_container' field as indication of being a
13071         generic method definition.
13072
13073 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
13074
13075         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13076
13077         * object-internals.h: Reflect changes in the layout of the managed Delegate
13078         class.
13079         
13080         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
13081         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
13082         runtime memory used by the dynamic method. Fixes #77146.
13083
13084 2007-06-21  Dick Porter  <dick@ximian.com>
13085
13086         * file-io.h: 
13087         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
13088         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
13089         81767.
13090
13091 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13092
13093         * reflection.c (method_encode_methodspec): Add a tripwire.
13094         * class.c (inflate_generic_type): The fully open generic type is
13095         not the same as the generic type definition.
13096
13097 2007-06-21  Martin Baulig  <martin@ximian.com>
13098
13099         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
13100
13101         * mono-debug-debugger.h
13102         (MonoDebuggerBreakpointInfo): Removed.
13103         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
13104         (mono_debugger_remove_breakpoint): Likewise.
13105         (mono_debugger_breakpoint_callback): Likewise.
13106         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
13107
13108 2007-06-21  Raja R Harinath  <rharinath@novell.com>
13109
13110         * metadata.c (mono_metadata_lookup_generic_class): The fully open
13111         generic type is not the same as the generic type definition.
13112         * class.c (mono_generic_class_get_class): Likewise.
13113
13114 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
13115
13116         * icall.c: The second argument to 
13117         System.Reflection.MethodBase.GetMethodFromHandleInternalType
13118         is a MonoType not a MonoClass.
13119
13120 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13121
13122         * verify.c: support for function pointers in the verifier
13123
13124 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
13125
13126         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
13127
13128 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
13129
13130         * assembly.c: removed Mono.Data.SqliteClient from the list of
13131         forward-compatible assemblies as it breaks the ABI (bug #81899).
13132
13133 2007-06-19  Raja R Harinath  <rharinath@novell.com>
13134
13135         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
13136         lookup/update with the loader lock.
13137         * reflection.c (mono_class_bind_generic_parameters): No need to
13138         protect mono_metadata_lookup_* with the loader lock.
13139         * class.c (inflate_generic_type): Likewise.
13140         
13141         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
13142         on a generic instantiated type.
13143
13144 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
13145
13146         *verify.c: produce meanfull error messages on verification error
13147         *verify.c: fixed some cases of verification errors reported as validation errors
13148         *pedump.c: fixed the error name array, now it shows validation errors properly
13149         *verify.h: fixed the contant that should be used for verification errors
13150
13151 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
13152
13153         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
13154         for bug #77596, 81858 and 80743 (generics data structures on domain
13155         unload).
13156
13157 2007-06-15  Raja R Harinath  <rharinath@novell.com>
13158
13159         Avoid allocating 'MonoGenericContext' on the heap.
13160         * class-internals (_MonoMethodInflated::context): Make field
13161         inline, not a pointer.
13162         * loader.c (method_from_methodspec): Allocate 'new_context' on the
13163         stack.  Use the context embedded within the inflated method as the
13164         hash key, rather than 'new_context'.
13165         * class.c (inflate_generic_context): Simplify.  Return a struct
13166         rather than allocating on the heap.
13167         (mono_class_inflate_generic_method_full): Update to changes.  Now,
13168         doesn't salt away a copy of the context -- simplifying the
13169         lifetime rules of a 'MonoGenericContext *'.
13170         (mono_method_get_context): Return pointer to embedded context.
13171         (setup_generic_array_ifaces): Allocate temporary context on stack.
13172         * reflection.c (inflate_mono_method): Likewise.
13173         (mono_reflection_bind_generic_method_parameters): Likewise.
13174         Use the context embedded within the inflated method as the hash key.
13175
13176         Avoid a source of allocation of 'MonoGenericContext'.
13177         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
13178         and 'cached_context' fields into embedded 'MonoGenericContext' field.
13179         * class.c: Update to changes.
13180         (mono_generic_class_get_context): Simplify drastically.  Now just
13181         returns a pointer to the field.
13182         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
13183         argument as a const pointer.
13184         (mono_metadata_generic_context_equal): Likewise.
13185         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
13186         Update to changes.
13187
13188 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
13189
13190         * verify.c improved the handling of brtrue/brfalse, factored out common code
13191
13192 2007-06-14  Raja R Harinath  <rharinath@novell.com>
13193
13194         Kill MonoGenericMethod.
13195         * class-internals.h (MonoGenericContext::method_inst): Rename from
13196         'gmethod' and convert to a MonoGenericInst.
13197         (MonoGenericMethod): Remove.
13198         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
13199         * loader.c (method_from_methodspec): Update to changes.  Use a
13200         MonoGenericContext as the key to the hashtable.
13201         * metadata.c (mono_metadata_generic_context_equal): Rename from 
13202         'mono_metadata_generic_method_equal' and take MonoGenericContext.
13203         (mono_metadata_generic_context_hash): Likewise from
13204         'mono_metadata_generic_method_hash'.  Change hash function.
13205         (mono_metadata_load_generic_params): Update to changes.
13206         (mono_get_shared_generic_method): Remove.
13207         * metadata-internals.h (mono_get_shared_generic_method): Remove.
13208         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
13209         (inflate_generic_context): Likewise.
13210         (mono_class_inflate_generic_method_full): Likewise.
13211         (setup_generic_array_ifaces): Likewise.
13212         (mono_class_create_from_typespec): Likewise.
13213         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
13214         (method_encode_methodspec): Update callsite.
13215         (reflection_methodbuilder_to_mono_method): Update to changes.
13216         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
13217         MonoGenericContext as the key to the hashtable.
13218         (inflate_mono_method): Update to changes.
13219
13220         * class-internals.h (MonoGenericMethod::container): Remove.
13221         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
13222
13223 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
13224
13225         * profiler-private.h, profiler.c, profiler.h: added API to profile
13226         exception events.
13227
13228 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13229
13230         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
13231
13232 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
13233
13234         * verify.c: method invocation is now validated, now we verify parameter types on stack.
13235         Fixed overflow and underflow not aborting the verification process.
13236
13237 2007-06-13  Mark Probst  <mark.probst@gmail.com>
13238
13239         * class-internals.h (MonoStats): Added stats entries for dynamic
13240         code allocations.
13241
13242 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
13243
13244         * loader.c (mono_free_method): Free header->locals and header->clauses.
13245
13246         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
13247         dynamic case.
13248
13249         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
13250
13251         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
13252
13253 2007-06-12  Raja R Harinath  <rharinath@novell.com>
13254
13255         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
13256         the tables.
13257
13258 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13259
13260         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
13261
13262 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13263
13264         MonoGenericMethod on a diet
13265         * class-internals.h (_MonoMethodInflated::reflection_info): Move
13266         here ...
13267         (_MonoGenericMethod::reflection_info): ... from here.
13268         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
13269         Update to changes.
13270         * reflection.c (inflate_mono_method): Likewise.
13271         (mono_reflection_bind_generic_method_parameters): Likewise.
13272
13273 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13274
13275         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
13276         *verify.c: factored long ldarg forms to share code with short forms
13277
13278 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
13279
13280         *verify.c: fixed code formating factored some duplicate code
13281         into a new function
13282
13283         *verify.h: fixed binary incompatibility introduced earlier
13284
13285         *pedump.c: fixed formating
13286
13287 2007-06-11  Raja R Harinath  <harinath@gmail.com>
13288
13289         Fix assertion when disassembling Mono.C5.dll
13290         * loader.c (method_from_methodspec): Avoid inflating a method
13291         twice with the same context.  If the methodref is inflated, use
13292         the declaring method instead.
13293
13294         * class.c (mono_class_from_generic_parameter): Fix case similar to
13295         bug #81830 handled below, but for method containers.
13296
13297 2007-06-10  Raja R Harinath  <harinath@gmail.com>
13298
13299         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
13300         get_shared_generic_class.  Directly inflate the instance.
13301         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
13302         (inflate_generic_class): Delete.
13303         (get_shared_generic_class): Delete.  Move setting of
13304         'cached_class' and 'cached_context' ...
13305         * metadata.c (mono_metadata_lookup_generic_class): ... here.
13306
13307         * metadata.c (mono_metadata_lookup_generic_class): Change
13308         signature to take the components of a MonoGenericClass rather than
13309         an allocated MonoGenericClass.  Change semantics to be intern-like.
13310         * reflection.c (mono_class_bind_generic_parameters): Update to
13311         changes.  Make locking region tighter.
13312         * class.c (inflate_generic_class): Update to changes.
13313         (get_shared_generic_class): Likewise.
13314         * metadata-internals.h: Likewise.
13315
13316         * reflection.c (mono_class_bind_generic_parameters): Take and
13317         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
13318         (mono_reflection_bind_generic_parameters): Use
13319         'mono_class_bind_generic_parameters' rather than duplicate the code.
13320         * class.c (mono_bounded_array_class_get): Update to changes.
13321         * object-internals.h: Likewise.
13322
13323         * reflection.c (mono_class_bind_generic_parameters): Only support
13324         parameterizing generic type definitions.  Remove support for other
13325         open types.
13326
13327 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
13328
13329         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
13330
13331         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
13332         in the dynamic case.
13333
13334 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
13335
13336         * threads.c: When cleaning up thread, reset the Background bit.
13337         Fixes bug #81720.
13338
13339 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
13340
13341        * metadata.c: Move variable declarations to top of scope.
13342        * verify.c: Move variable declarations to top of scope.
13343
13344        Code is contributed under MIT/X11 license.
13345
13346 2007-06-08  Raja R Harinath  <rharinath@novell.com>
13347
13348         * reflection.c (mono_class_bind_generic_parameters): Replace
13349         open-coded loop with mono_metadata_inflate_generic_inst.
13350
13351         * class.c (get_shared_generic_class): Don't call
13352         mono_get_shared_generic_inst.  Use the container's own
13353         'class_inst'.
13354
13355         * metadata.c (mono_metadata_load_generic_params): Move
13356         initialization of 'context' field here from ...
13357         * class.c (mono_class_create_from_typedef): ... here, and ...
13358         * loader.c (mono_get_method_from_token): ... here.
13359
13360         * class.c (get_shared_generic_class): Rename from
13361         mono_get_shared_generic_class and make static.
13362         (mono_get_shared_generic_inst): Move to metadata.c.
13363         * loader.c (mono_get_shared_generic_method): Likewise.
13364         * class-internals.h, metadata-internals.h: Update to changes.
13365
13366         Fix #81830
13367         * class.c (mono_class_from_generic_parameter): Don't assume a
13368         generic container owner exists.  Generic containers from monodis
13369         don't have any.
13370
13371 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
13372
13373         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
13374         * verify.h: new typedefs to returns the non-verifiable status
13375         * verify.c: initial implementation of generics, stack merging and object compatibility check
13376
13377 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13378
13379         * class.c, image.c, class-internals.h (MonoImage): class_cache is
13380         a MonoInternalHashTable again (fixed bug in internal hash table
13381         code).
13382
13383 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13384
13385         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
13386         MonoInternalHashTable again (fixed bug in internal hash table
13387         code).
13388
13389 2007-06-06  Mark Probst  <mark.probst@gmail.com>
13390
13391         * class.c, image.c, class-internals.h, domain.c,
13392         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
13393         changes.  Have to figure out what makes them break the SWF
13394         regression.
13395
13396 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13397
13398         * class.c, image.c, class-internals.h (MonoImage): class_cache is
13399         a MonoInternalHashTable now.
13400
13401 2007-06-04  Mark Probst  <mark.probst@gmail.com>
13402
13403         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
13404         MonoInternalHashTable now.
13405
13406 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
13407
13408         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
13409         invoke_impl code.
13410
13411         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
13412
13413         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
13414         dependent trampoline.
13415
13416         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13417
13418         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
13419
13420 2007-05-29  Robert Jordan  <robertj@gmx.net>
13421
13422         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
13423
13424 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
13425
13426         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
13427
13428 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
13429
13430        * marshal.c: Fix interface lookup loops for
13431        cominterop_get_com_slot_for_method and 
13432        cominterop_get_method_interface. Only need to lookup
13433        if type is a class, else use interface type method is on.
13434
13435        Code is contributed under MIT/X11 license.
13436
13437 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
13438
13439         * reflection.c: HasSecurity can be present even if no specially 
13440         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
13441         SecurityAttribute). Fix CAS regression tests on buildbot.
13442
13443 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
13444
13445        * appdomain.c: Add configure checks for header files.
13446        * image.c: Add configure checks for header files.
13447        * file-io.c: Add configure checks for header files.
13448        * debug-mono-symfile.c: Add configure checks for header files.
13449        * threadpool.c: Add configure checks for header files.
13450        * console-io.c: Add configure checks for header files.
13451        * profiler.c: Add configure checks for header files.
13452        * rawbuffer.c: Add configure checks for header files.
13453        * icall.c: Add configure checks for header files.
13454        * rand.c: Add configure checks for header files.
13455        * socket-io.c: Add configure checks for header files.
13456
13457        Code is contributed under MIT/X11 license.
13458
13459 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
13460
13461         * reflection.c (mono_custom_attrs_from_builders): Remove the 
13462         assertion as it breaks the build.
13463         
13464         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
13465
13466         * reflection.c (lookup_custom_attr): Make a copy here too.
13467
13468         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
13469         dynamic images.
13470
13471         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
13472         images.
13473
13474         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
13475         info.
13476
13477 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
13478
13479         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
13480         (load_cattr_value): Ditto.
13481
13482 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
13483
13484         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
13485
13486 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
13487
13488         * threads.c: In "start_wrapper", set apartment_state to MTA if
13489         apartment_state is Unknown and we're running on 2.0 profile or
13490         higher.
13491         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
13492         to main method, then set apartment_state to Unknown on 1.0 profile,
13493         and MTA on 2.0 profile.
13494
13495 2007-05-16  Jb Evain  <jb@nurv.fr>
13496
13497         * class-internals.h (MonoDefaults): Add an attribute_class and
13498           customattribute_data_class.
13499         * domain.c (mono_init_internal): Populate them.
13500         * reflection.c: Use them to remove duplicates. Make a vew
13501         MonoClass variables `static'.
13502
13503 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
13504
13505         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
13506         step in implementing IMT, so that all isinst checks now can go
13507         through the bitmap.
13508         This was needed because vtables for TransparentProxy need to look
13509         like the vtable of the "target" class, so they need to point to
13510         its interface bitmap directly.
13511
13512         * object.c: inside "mono_class_create_runtime_vtable" and
13513         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
13514
13515 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
13516
13517         * object-internals.h
13518           culture-info.h : added territory field in MonoCulture and
13519           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
13520         * locales.c : fill territory field above too.
13521         * culture-info-table.h : regenerated.
13522
13523 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
13524
13525         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
13526         Fixes #81599.
13527
13528 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
13529
13530         * object.c: Always initialize apartment, even if 
13531         there is no custom attributes on entry point.
13532         
13533         Code is contributed under MIT/X11 license.
13534
13535 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
13536
13537         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
13538         * metadata.c: If no encoding is set, check for unicode
13539         on class.
13540         
13541         Code is contributed under MIT/X11 license.
13542
13543 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
13544
13545         * threads.c: Handle if mono_thread_current returns NULL 
13546         
13547         Code is contributed under MIT/X11 license.
13548
13549 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
13550
13551         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
13552         in start_wrapper. Added mono_thread_init_apartment_state and
13553         mono_thread_cleanup_apartment_state.
13554         * object.c: Initialize thread apartment state on main thread
13555         by checking for STAThreadAttribute on entry point.
13556         * object-internals.h: Add apartment_state field to MonoThread.
13557         * threads-types.h: Add unmanaged definition of 
13558         System.Threading.ApartmentState, MonoThreadApartmentState.
13559         
13560         Code is contributed under MIT/X11 license.
13561         
13562 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
13563
13564         * class.c: Fix windows build.
13565         * class-internals.h: Fix windows build.
13566         
13567         Code is contributed under MIT/X11 license.
13568
13569 2007-05-08  Robert Jordan  <robertj@gmx.net>
13570
13571         * process.c (CreateProcess_internal):
13572         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
13573         .CreateNoWindow was specified. Fixes #81496.
13574
13575 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
13576
13577         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
13578         step in implementing IMT, replaced it with two compact arrays
13579         (interfaces_packed and interface_offsets_packed) and a bitmap that
13580         is used for isinst checks (interface_bitmap).
13581
13582         * class.c: (compare_interface_ids): compare function to pass to
13583         bsearch when looking for an interface with a given id.
13584         (mono_class_interface_offset): reimplemented using bsearch on
13585         interfaces_packed, getting the offset from interface_offsets_packed.
13586         (print_implemented_interfaces): utility debugging function.
13587         (setup_interface_offsets): reworked to initialize interfaces_packed,
13588         interface_offsets_packed and interface_bitmap.
13589
13590         * object.c: replaced all accesses to "MonoClass.interface_offsets"
13591         with uses of interfaces_packed and interface_offsets_packed.
13592
13593 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
13594
13595         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
13596         mono_class_interface_offset prototype to wrap all accesses to
13597         "MonoClass.interface_offsets".
13598
13599         * class.c: Implemented mono_class_interface_offset, and wrapped all
13600         accesses to "MonoClass.interface_offsets".
13601
13602         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
13603         "MonoClass.interface_offsets".
13604
13605 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
13606
13607         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
13608         GetMethodFromHandle overloads (bug #78637).
13609
13610 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
13611
13612         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
13613         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
13614
13615 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
13616
13617         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
13618         #81498.
13619
13620         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
13621         gracefully.
13622         (mono_custom_attrs_from_index): Ditto.
13623
13624         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
13625         Fixes #81501.
13626
13627 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
13628
13629         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
13630         is now allocated from a mempool.
13631
13632 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
13633
13634         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
13635         caller holds threads_lock, leading to deadlocks. Fixes #81476.
13636
13637 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
13638
13639         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
13640         mono_loader_clear_error () too late. Fixes #81463.
13641
13642 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
13643
13644         * culture-info-table.h : regenerated.
13645
13646 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
13647
13648         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
13649         is missing.
13650
13651 2007-04-25  Dick Porter  <dick@ximian.com>
13652
13653         * Makefile.am: Put the mingw enforced-optimisation back into the
13654         PLATFORM_WIN32 section.
13655
13656 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
13657
13658         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
13659         patch.
13660
13661         * image.c (mono_image_load_module): New API function to load a module reference.
13662
13663         * image.c (load_modules): Load modules lazily. Fixes #80812.
13664
13665         * class.c (mono_class_from_typeref): Use mono_image_load_module.
13666         
13667         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
13668
13669         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
13670         to mono_image_load_module_dynamic.
13671
13672 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
13673
13674         * marshal.c: Fix calling convention for CCW on non-windows
13675         platforms. STDCALL on windows, CDECL everywhere else to work 
13676         with XPCOM and MainWin COM.
13677         
13678         Code is contributed under MIT/X11 license.
13679
13680 2007-04-23  Martin Baulig  <martin@ximian.com>
13681
13682         Fix #80969.
13683
13684         * loader.c
13685         (method_from_memberref): Added `gboolean *used_context' argument.
13686         (mono_get_method_from_token): Likewise.
13687         (mono_get_method_full): Don't insert the method in the cache when
13688         `used_context' is true.
13689
13690 2007-04-23  Raja R Harinath  <rharinath@novell.com>
13691
13692         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
13693
13694         * reflection.c (mono_reflection_bind_generic_parameters): Don't
13695         create new MonoTypes for returned types.
13696         * class.c (mono_generic_class_get_class): Export mono-internal.
13697         * class-internals.h: Update to changes.
13698
13699 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
13700
13701         * threadpool.c, threadpool.h, icall-def.h: patch from
13702         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
13703
13704 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
13705
13706         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
13707         
13708         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
13709
13710         * threads.c (mono_thread_get_stack_bounds): New helper function.
13711
13712         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
13713         Correctly compute stack bounds when attaching. Fixes #81394.
13714
13715 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
13716
13717         * reflection.c: fix handling of doubles in custom attributes
13718         for the arm-fpa format (bug #81368).
13719
13720 2007-04-18  Raja R Harinath  <rharinath@novell.com>
13721
13722         * reflection.c (assembly_add_win32_resources): Mildly relax an
13723         bounds check to let the end pointer point just past the end of the
13724         allocated buffer.  (may fix #81384)
13725
13726 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
13727
13728         * culture-info-table.h : regenerated.
13729
13730 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
13731
13732         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
13733         the thread is aborted early.
13734
13735 2007-04-05  Dick Porter  <dick@ximian.com>
13736
13737         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
13738         FindFirstFile()/FindNextFile() to find entries.  This lets the
13739         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
13740         81038.
13741
13742         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
13743         the parameters of
13744         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
13745
13746 2007-04-04  Martin Baulig  <martin@ximian.com>
13747
13748         * debug-helpers.c
13749         (mono_method_desc_full_match): Add support for nested classes.
13750
13751 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
13752
13753         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
13754
13755 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
13756
13757         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
13758         waiting for too many threads.
13759
13760 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
13761
13762         * environment.c: Fix return value check on uname so we can get the 
13763         executing version on Solaris operating systems.
13764
13765 2007-03-28  Jb Evain  <jbevain@gmail.com>
13766
13767         * class.c (mono_type_get_name_recurse): Complete the
13768         fix for the creation of assembly qualified names for
13769         pointer types. Fixes #81208.
13770
13771 2007-03-27  Dick Porter  <dick@ximian.com>
13772
13773         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
13774         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
13775         changed.
13776
13777         * threads.c
13778         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
13779         the value of ReleaseMutex().
13780
13781 2007-03-27  Dick Porter  <dick@ximian.com>
13782
13783         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
13784         in little-endian order, not network endian, so must be converted
13785         to host endian here.  Fixes bug 80593.
13786
13787 2007-03-22  Jb Evain  <jbevain@gmail.com>
13788
13789         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
13790         qualified names for pointer types. Fixes #81208.
13791
13792 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
13793
13794         * marshal.c: Add support for PreserveSigAttribute. 
13795         
13796         Code is contributed under MIT/X11 license.
13797
13798 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
13799
13800         * process.c: Fix endianness issues. Fixes #81126.
13801
13802         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
13803         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
13804
13805         * image.c (mono_image_lookup_resource): Make this work on big-endian
13806         machines.Change API contract so the caller needs to free the return value.
13807         
13808         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
13809         API change.
13810         
13811 2007-03-14  Martin Baulig  <martin@ximian.com>
13812
13813         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
13814         mono_type_get_desc() as well.
13815
13816 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
13817
13818         * icall.c:  Fix environ access in VS.  
13819         
13820 2007-03-13  Alp Toker  <alp@atoker.com>
13821
13822         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
13823         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
13824         #63841.
13825
13826 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
13827
13828         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
13829         circular references among dynamic methods. Fixes #81091.
13830
13831         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
13832
13833 2007-03-09  Martin Baulig  <martin@ximian.com>
13834
13835         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
13836
13837 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
13838
13839         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
13840         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
13841         
13842         Code is contributed under MIT/X11 license.
13843         
13844 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
13845
13846         * loader.c: Reapply patch for bug #79424.
13847
13848 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
13849
13850         * metadata.c (mono_type_to_unmanaged): Only convert object to
13851         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
13852
13853 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
13854
13855         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
13856         (and incorrectly set) is_reference field from MonoGenericInst.
13857
13858 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
13859
13860         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
13861         a little earlier.
13862
13863         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
13864
13865         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
13866
13867 2007-03-05  Miguel de Icaza  <miguel@novell.com>
13868
13869         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
13870         FileOptions.1 value to mean "temporary", map that to
13871         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
13872
13873         Fixes 80688
13874
13875 2007-03-03  Marek Habersack  <mhabersack@novell.com>
13876
13877         * appdomain.c: implement MS .Net style shadow copying. Copies of
13878         the assemblies are made in a subdirectory of the dynamic base
13879         directory, the assembly names are preserved.
13880         Copy .mdb and .config files along with the assemblies being shadowed.
13881
13882 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
13883
13884         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
13885         (emit_marshal_handleref): Ditto.
13886
13887         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
13888         on Visual C++. Fixes #80671.
13889
13890 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
13891
13892         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
13893         for clone operations.
13894
13895 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
13896
13897         * marshal.c: Fix warnings.
13898
13899 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
13900
13901         * loader.c: allow case-insensitive matching of the dll name
13902         in dllmap handling when prefixed with "i:".
13903
13904 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
13905
13906         * threads.c: Fix #ifdef for dummy_apc function for VS.
13907
13908 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
13909
13910         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
13911
13912 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
13913         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
13914         giving precedence to the methods with a fully qualified name
13915         (InterfaceName.MethodName) when building the interface sections
13916         of the vtable.
13917
13918 2007-02-16  Dick Porter  <dick@ximian.com>
13919
13920         * threadpool.c (append_job): Fix fast-path array handling, so it's
13921         less likely the array will grow exponentially when the load is
13922         heavy.
13923
13924 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
13925
13926         * metadata-internals.h, loader.c: fix dllmap lookup order
13927         for non-function maps, too, and prepare for fallback code.
13928
13929 2007-02-12  Robert Jordan  <robertj@gmx.net>
13930
13931         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
13932         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
13933         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
13934         GlobalFree. Fixes a part of bug #77075.
13935
13936 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
13937
13938         * loader.c: implemented typedef parent in field memberref.
13939
13940 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
13941
13942         * marshal.c: Fix warnings and remember to call Release on
13943         IUnknown of RCW.
13944         
13945         Code is contributed under MIT/X11 license.
13946
13947 2007-02-10  Miguel de Icaza  <miguel@novell.com>
13948
13949         * class-internals.h: Add MonoHandleRef definition, and
13950         handleref_class to mono_defaults. 
13951
13952         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
13953         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
13954
13955         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
13956         (do nothing on this stage)
13957         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
13958         (emit_marshal_handleref): New method, used for argument handling
13959         of HandleRefs. 
13960
13961 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
13962
13963         * class.c (mono_class_setup_parent): Lazily init com types.
13964         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
13965         init com types.
13966         * object.c (mono_remote_class_vtable): Lazily init com types.
13967         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
13968         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
13969         * domain-internals.h: Expose mono_init_com_types.
13970         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
13971         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
13972         Add support for COM Callable Wrapper marshalling.
13973         * marshal.h: Add icall definitions.
13974         * gc.c: Handle freeing of CCWs in finalizer code.
13975         
13976         Code is contributed under MIT/X11 license.
13977
13978 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
13979
13980         * reflection.c: changed all the signature encoding code to use
13981         a variable-sized buffer.
13982
13983 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13984
13985         * marshal.c: locking fixes: never take the loader lock
13986         or other runtime locks when holding the marshal lock
13987         (fixes bug#80664).
13988
13989 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
13990
13991         * marshal.c: make the delegate function pointer mapping
13992         work for the moving GC.
13993
13994 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
13995
13996         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
13997         for bug #80618.
13998
13999 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
14000
14001         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
14002         gmodule.
14003
14004 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
14005
14006         * threadpool.c: made the code moving-GC safe.
14007
14008 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14009
14010         * assembly.c, boehm-gc.c, class-internals.h, class.c,
14011         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
14012         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
14013         warning cleanup.
14014         * reflection.c: warning cleanup, some threading and moving GC fixes.
14015
14016 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
14017
14018         * class.c, loader.c: create the needed Set/Get/Address array methods
14019         as well as the .ctors in mono_class_init (), fixes bug #80567.
14020
14021 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
14022
14023         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
14024         we doesn't decrease its alignment. Should fix the sparc build.
14025
14026 2007-01-24  Dick Porter  <dick@ximian.com>
14027
14028         * socket-io.c
14029         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14030         Create the returned object if we need to ignore an unsupported
14031         socket option.  Fixes a segfault reported by Atsushi.
14032
14033 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14034
14035         * class.c, object.c: restrict GC-tracked fields to
14036         UIntPtr fields used inside corlib, so we provide better
14037         type info to the GC and also allow broken packing as in
14038         bug #80580.
14039
14040 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
14041
14042         * sgen-gc.c: removed duplicated function.
14043
14044 2007-01-19  Miguel de Icaza  <miguel@novell.com>
14045
14046         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
14047         value that means that the value is not supported, but that we
14048         should not return a failure, but instead report this as a
14049         successful operation.
14050
14051 2007-01-19  Raja R Harinath  <rharinath@novell.com>
14052
14053         Fix tests/bug79956.2.il
14054         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
14055         (mono_generic_class_get_class): If the generic definition in an
14056         enum, copy over other fields related to it.
14057
14058 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
14059
14060         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
14061         genericinst enums (bug #79215).
14062
14063 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
14064         * class.c: Fix bug 80307.
14065
14066 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
14067
14068         * image.c: if the file table is not present, try to load
14069         all the modules, since we don't have info about them
14070         having or not metadata (bug #80517).
14071         * assembly.c: allow mono_assembly_load_references () to
14072         work for netmodules.
14073
14074 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14075
14076         * image.c, metadata-internals.h, object.c: execute module
14077         cctors when running on the 2 runtime if present (bug #80487).
14078
14079 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14080
14081         * icall.c: optimized InitializeArray() on bigendian.
14082
14083 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
14084
14085         * icall.c: fix for the broken ARM FPA double format.
14086
14087 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
14088
14089         * icall.c: handle endian issues for r4 and r8 types, too, in
14090         the InitializeArray() icall.
14091
14092 2007-01-15  Miguel de Icaza  <miguel@novell.com>
14093
14094         * loader.c (mono_loader_error_prepare_exception): Clear the error
14095         once we have extracted the information from it, do this before we
14096         call into the JIT's class loading mechanisms.
14097
14098         * object.c (mono_class_create_runtime_vtable): Do not clear the
14099         loader error before calling mono_class_get_exception_for_failure
14100         as the loader error is needed inside
14101         mono_class_get_exception_for_failure to throw the error (thinko).
14102
14103         Fixes #80521
14104         
14105 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
14106
14107         * reflection.c: align fields rva data so it's faster to load at
14108         runtime.
14109
14110 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14111
14112         Prepare to simplify GenericMethod handling.
14113         * class-internals.h (mono_method_get_context): New accessor function.
14114         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
14115         rather than directly accessing '->context' field.
14116
14117         * class-internals.h (_MonoGenericParam.method): Move ...
14118         (_MonoGenericContainer): ... here.  Add into union with klass field.
14119         * class.c, icall.c, loader.c, metadata.c, reflection.c:
14120         Update to changes.
14121
14122 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
14123
14124         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
14125         the wrapper type enum and reduce relocations.
14126
14127 2007-01-12  Raja R Harinath  <rharinath@novell.com>
14128
14129         * reflection.c (inflate_mono_method): Reuse method instantiation
14130         from the generic method, if available.
14131
14132 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14133
14134         * marshal.c (emit_marshal_variant): Fix conv_arg
14135         type in last commit, based on whether parameter is byref.
14136         
14137 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14138
14139         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
14140         marshalling.
14141         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
14142         MONO_TYPE_OBJECT back for VARIANT support.
14143
14144 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
14145
14146         * marshal.c, marshal.h, icall-def.h: Implement 
14147         Marshal.ReAllocCoTaskMem.
14148
14149 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
14150
14151         * marshal.c: memory retention fixes: use the proper
14152         image cache for runtime_invoke method lookups.
14153
14154 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
14155
14156         * mempool.c: added code to help debug mempool allocations.
14157
14158 2007-01-11  Dick Porter  <dick@ximian.com>
14159
14160         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
14161         support (experimenting with faking it with IP_MTU_DISCOVER for
14162         systems that don't have IP_DONTFRAGMENT.)
14163         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
14164         icall.
14165
14166         * icall-def.h: new System.Net.Sockets.Disconnect icall.
14167
14168         * socket-io.h: Add new fields to MonoSocketAsyncResult
14169         corresponding to the new ones in Socket.cs.
14170
14171 2007-01-11  Raja R Harinath  <rharinath@novell.com>
14172
14173         Fix IronPython regression mentioned in #80249
14174         * metadata.c (do_mono_metadata_parse_generic_class): Clear
14175         'cached_context' field, since it may have been initialized as a
14176         side-effect of metadata parsing.
14177
14178         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
14179         (_MonoGenericClass.cached_class): Move here and rename from lone
14180         remaining field of ...
14181         (_MonoInflatedGenericClass): ... this.  Remove.
14182         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
14183         to changes.
14184
14185         Fix mcs/tests/test-128.cs regression.
14186         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
14187         2007-01-10 change below.
14188         [MONO_TYPE_OBJECT]: Recurse into array case.
14189
14190 2007-01-11  Raja R Harinath  <harinath@gmail.com>
14191
14192         * class-internals.h (mono_get_inflated_generic_class): Remove.
14193         * class.c (mono_get_inflated_generic_class): Remove.
14194         (mono_generic_class_get_class): Rename from
14195         mono_class_create_generic.
14196         (mono_class_from_mono_type) [GENERICINST]: Use it.
14197         * reflection.c, metadata.c: Update to changes.  Use
14198         'mono_class_from_mono_type'.
14199
14200 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
14201
14202         * reflection.c: use passed type when encoding an array element
14203         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
14204
14205 2007-01-09  Robert Jordan  <robertj@gmx.net>
14206
14207         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
14208         result arguments (someDelegate.EndInvoke (unrelatedAres)).
14209         Fixes bug #80392.
14210
14211 2007-01-09  Raja R Harinath  <rharinath@novell.com>
14212
14213         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
14214
14215         * object.c (set_value): Avoid aliasing between type->data.klass
14216         and type->data.generic_class.
14217
14218         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
14219
14220 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14221
14222         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
14223         between type->data.klass and type->data.generic_class.
14224
14225 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
14226
14227         * marshal.c: In MS.NET, StringBuilder objects are not copied by
14228         value in out parameters.
14229
14230 2007-01-08  Raja R Harinath  <rharinath@novell.com>
14231
14232         Simplify invariant for MonoGenericClass::klass field.
14233         * class.c (mono_class_create_generic): Verify 'klass' is null.
14234         * metadata.c (do_mono_metadata_parse_generic_class): Don't
14235         initialize 'klass' field.
14236
14237 2007-01-05  Raja R Harinath  <rharinath@novell.com>
14238
14239         Ongoing work to avoid redundant data and simplify invariants.
14240         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
14241         'generic_class', and change type to a GenericInst.
14242         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
14243         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14244
14245 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
14246
14247         * class.c : skip io-layer under PLATFORM_WIN32.
14248
14249 2007-01-03  Tor Lillqvist  <tml@novell.com>
14250
14251         Fix #80305: In a bundled executable, look in the bundled exe
14252         assembly to determine the runtime version. Add the possibility to
14253         bundle also the machine.config file.
14254         
14255         * assembly.c (mono_assembly_open_from_bundle): Make
14256         non-static. Allow being called even if we have no bundled
14257         assemblies, and return NULL right away in that case.
14258
14259         * domain-internals.h: Declare mono_assembly_open_from_bundle()
14260         here.
14261
14262         * domain.c (app_config_parse): Take an assembly exe file name as
14263         parameter instead of a config file name. Check for a bundled
14264         config file for that assembly by calling
14265         mono_config_string_for_assembly_file() (see below) before looking
14266         for one in the file system.
14267         (get_runtimes_from_exe): Corrsponding change to call of
14268         app_config_parse().
14269         (get_runtimes_from_exe): Check for bundled assembly exe file first
14270         by calling mono_assembly_open_from_bundle(). If no bundled
14271         assembly exe file is found, call mono_image_open() as before to
14272         look it up in the file system.
14273
14274         * mono-config.c: Add variable bundled_machinec_onfig.
14275         (mono_config_string_for_assembly_file): New function.
14276         (mono_config_for_assembly): Move code snippet that looks for a
14277         bundled assembly .config file into the above new function. Call
14278         it.
14279         (mono_register_machine_config, mono_get_machine_config): New
14280         functions to set and retrieve
14281
14282         * assembly.h: Declare mono_register_machine_config().
14283
14284         * mono-config.h: Declare mono_get_machine_config() and
14285         mono_config_string_for_assembly_file().
14286
14287         * icall.c: No declaration of environ necessary on Win32. It is
14288         declared (as a macro expanding to a function call) in stdlib.h.
14289         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
14290         New internal mono function. Returns the value of
14291         mono_get_machine_config() as a Mono string.
14292
14293         * icall-def.h: Add get_bundled_machine_config().
14294
14295 2007-01-04  Raja R Harinath  <rharinath@novell.com>
14296
14297         Remove redundant field
14298         * class-internals.h (_MonoGenericContext.container): Remove field.
14299         * loader.c (mono_method_get_signature_full): Don't parse a
14300         "container" for a signature parse when the signature is inflated
14301         immediately.
14302         (method_from_methodspec): Likewise, for a generic_inst.
14303         * class.c, metadata.c, reflection.c: Update to changes.
14304
14305 2006-01-04  Raja R Harinath  <rharinath@novell.com>
14306
14307         * class-internals.h (_MonoGenericClass): Rename 'context' field to
14308         'cached_context', and change semantics -- it starts off NULL, and
14309         is initialized on demand.
14310         * class.c (mono_generic_class_get_context): New accessor to
14311         replace 'context' field accesses.
14312         (mono_class_get_context): New helper.
14313         (*): Update to changes.
14314         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
14315
14316 2007-01-03  Miguel de Icaza  <miguel@novell.com>
14317
14318         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
14319         before the memcpy.   Fixes Marshal2 regression.
14320
14321 2007-01-02  Jb Evain  <jbevain@gmail.com>
14322
14323         * blob.h: add a MONO_TYPE_ENUM definition
14324         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
14325         fix the encoding of arrays of enums in custom attributes.
14326
14327         Fixes #79666.
14328
14329 2007-01-01  Miguel de Icaza  <miguel@novell.com>
14330
14331         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
14332         string is null terminated, but only cut the string short if it
14333         overflows the buffer.   
14334         
14335         (mono_string_to_byvalstr): Also fix this routine.   The code here
14336         was not properly terminating a string (it was only terminated
14337         because of the previous catch-all memset). 
14338
14339         I left the memset, because I do not know if applications expect
14340         the runtime to clear this region. 
14341
14342         Fixes #79944.
14343
14344         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
14345         Clear the error before returning to unmanaged code to prevent the
14346         runtime from being confused later on (fixes  80420).
14347         (ves_icall_type_from_name): Always call mono_loader_clear_error
14348         after parsing a type that could have failed.
14349         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
14350
14351         * loader.c (mono_loader_clear_error): Fix indentation.
14352
14353 2006-12-28  Martin Baulig  <martin@ximian.com>
14354
14355         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
14356
14357 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
14358
14359         * reflection.c: patch from Rolf Bjarne Kvinge to fix
14360         getting a token for an EnumBuilder.
14361
14362 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
14363
14364         * reflection.c: be more careful in case resource generation
14365         fails to create the data array.
14366
14367 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
14368
14369         * sgen-gc.c: write barrier for clone and fix unregister handles.
14370
14371 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
14372
14373         * reflection.c: some fixes needed in the generics code for the moving GC.
14374
14375 2006-12-22  Robert Jordan  <robertj@gmx.net>
14376
14377         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
14378         account. Fixes bug #80299.
14379
14380 2006-12-21  Raja R Harinath  <rharinath@novell.com>
14381
14382         Fix WaitHandle usage in delegates.
14383         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
14384         * object.c (mono_wait_handle_new): Use the property set method to
14385         initialize the handle.
14386         (mono_wait_handle_get_handle): New.
14387         * threadpool.c (mono_async_invoke): Use it.
14388         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
14389         Likewise.
14390         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
14391
14392 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
14393
14394         * marshal.c (emit_marshal): Call emit_marshal_variant and
14395         emit_marshal_com_interface when applicable.
14396         (emit_marshal_variant, emit_marshal_com_interface): Add
14397         methods for this case and remove if's from emit_marshal_object.
14398         
14399 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
14400
14401         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
14402
14403 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
14404
14405         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
14406         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
14407         and GlobalFree on Windows. Remove FIXME.
14408
14409 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
14410
14411         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
14412         implementation for managed objects.
14413
14414 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
14415
14416         * object.c: implemented code to be used for checking
14417         that no reference field overlaps with non-references.
14418
14419 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14420
14421         * threadpool.c: fix queue code to be compatible with the
14422         moving GC.
14423
14424 2006-12-18  Miguel de Icaza  <miguel@novell.com>
14425
14426         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
14427         in structures by throwing ArgumentNullException.
14428
14429         (emit_marshal_safehandle): Also when they are null parameters.
14430
14431         (emit_marshal_safehandle): Add support for ref
14432         SafeHandles parameters
14433
14434 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
14435
14436         * profiler.c: updated to use the mono-dl API instead of
14437         gmodule.
14438
14439 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14440
14441         * profiler.c: updated to use the mono-dl dynamic loading
14442         API instead of gmodule.
14443
14444 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
14445
14446         * profiler.c: use readlink, older versions of glib don't have
14447         g_file_read_link ().
14448
14449 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
14450
14451         * profiler.c: try to detect the path to mono if libc fails to provide
14452         a useful name (bug #80286).
14453
14454 2006-12-16  Raja R Harinath  <rharinath@novell.com>
14455
14456         Fix #80242
14457         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
14458         instance, use the generic type definition instead.
14459         (ves_icall_Type_GetNestedTypes): Likewise.
14460         * class.c (mono_class_create_generic): Always set the
14461         nested_classes of a generic instance to NULL, even if the generic
14462         type definition has nested types.
14463
14464 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
14465
14466         * marshal.c (mono_string_from_bstr): Revert previous Windows change
14467         and fix on Linux.
14468         
14469 2006-12-15  Miguel de Icaza  <miguel@novell.com>
14470
14471         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
14472         my arguments were in the wrong order.   I also fixed the Windows
14473         version which seems to have had the same issue.
14474
14475         (mono_free_bstr): On Unix, this is g_free.
14476         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
14477         conversions (for the tests in corlib to pass).
14478
14479 2006-12-14  Miguel de Icaza  <miguel@novell.com>
14480
14481         * marshal.c (emit_ptr_to_object_conv): For now, ignore
14482         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
14483         exception if a ref SafeHandle in a struct has changed).
14484         
14485         (emit_struct_conv): Do not perform layout checks for classes
14486         derived from SafeHandle, as those are specially handled. 
14487
14488         (emit_object_to_ptr_conv): Add support for
14489         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
14490
14491         (emit_marshal_safehandle): Implement conversion of return values
14492         of safehandles (MARSHAL_ACTION_CONV_RESULT).
14493         
14494         * threads.c: WaitHandle now is compiled with two different handles
14495         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
14496         for 2.0.
14497         
14498         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
14499         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
14500         these routines to cope with both kinds of fields.
14501
14502 2006-12-12  Miguel de Icaza  <miguel@novell.com>
14503
14504         * metadata.c (mono_type_to_unmanaged): Handle the case where
14505         type->data.klass is a SafeHandle, and in that case, return the
14506         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
14507         MONO_MARSHAL_CONV_SAFEHANDLE. 
14508
14509 2006-12-11  Miguel de Icaza  <miguel@novell.com>
14510
14511         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
14512         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
14513         calling emit_marshal_object.
14514
14515         (emit_marshal_safehandle): Implement marshalling of
14516         SafeHandle parameters (no ref support yet).
14517
14518         (MarshalAction): Document the defines as I implement
14519         them for SafeHandle.
14520
14521         (emit_marshal_object): indentation police.
14522
14523         * class-internals.h: Define MonoSafeHandle.
14524         Add safehandle_class to MonoDefaults type.
14525
14526         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
14527         list of classes to check for fields. 
14528
14529         * domain.c (mono_init_internal): Add SafeHandle to the list of
14530         mono_defaults loaded.
14531
14532 2006-12-15  Raja R Harinath  <rharinath@novell.com>
14533
14534         Fix #80253
14535         * reflection.c (mono_reflection_bind_generic_parameters): If the
14536         generic type definition is a type builder, ensure that it is fully
14537         initialized before instantiating it.  Kill some dead code.
14538
14539 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
14540
14541         * object.c: clear the loader_error () before loading
14542         more metadata stuff (bug #80258).
14543
14544 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
14545
14546         * icall.c, icall-defs.h: type modifiers icalls for
14547         parameters and properties.
14548
14549 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
14550
14551         * object.c, icall.c: fixed warnings.
14552
14553 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
14554
14555         * marshal.c: fixed a couple of leaks and coding style in a few places.
14556
14557 2006-12-08  Dick Porter  <dick@ximian.com>
14558
14559         * process.c: Cope with NULL ProcessStartInfo arguments on windows
14560         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
14561         80173.
14562
14563 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
14564
14565         * process.c: ProcessStartInfo may have only filename set and
14566         arguments can be NULL.
14567
14568 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
14569
14570         * icall.c: fix leak found by Robert Jordan.
14571
14572 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
14573
14574         * marshal.c, marshal.h: generate managed method to access an element
14575         of a multi-dimensional array.
14576
14577 2006-11-30  Paolo Molaro (lupus@ximian.com)
14578
14579         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
14580
14581 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
14582
14583         * icall.c: back out GetFields () fix until the serialization code is
14584         fixed to not depend on the incorrect behaviour.
14585
14586 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
14587
14588         * profiler.c: provide defaults if none are set.
14589
14590 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
14591
14592         * Makefile.am, attrdefs.h: new public header file with
14593         constants for attributes for use by embedders.
14594
14595 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
14596
14597         * icall.c: GetFields () fix for bug #80064.
14598
14599 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
14600
14601         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
14602         removed long unused icalls.
14603
14604 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
14605   
14606         * marshal.c: 
14607                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
14608                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
14609                 can be generated without a delegate class.
14610                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
14611         
14612         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
14613
14614 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14615
14616         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
14617         #80069.
14618
14619 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
14620
14621         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
14622         icall-def.h: added icalls needed by System.GC.
14623
14624 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
14625
14626         * loader.c: ensure the class in catch clauses is handled
14627         correctly for generics methods (fixes bug#79980).
14628
14629 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
14630
14631         * monitor.h, monitor.c: added mono_locks_dump () function
14632         to help debug deadlocks involving managed locks.
14633
14634 2006-11-13  Dick Porter  <dick@ximian.com>
14635
14636         * file-io.c (get_file_attributes): If the file is a symlink try
14637         and get the stat data for the target, but also add the
14638         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
14639         the specs for the windows symlink support, but will probably have
14640         to be reworked when I have test data from a vista machine.  Fixes
14641         bug 79887.
14642
14643 2006-11-13  Dick Porter  <dick@ximian.com>
14644
14645         * gc.c (mono_domain_finalize): 
14646         * marshal.c (mono_delegate_begin_invoke): 
14647         * threadpool.c (socket_io_init, mono_thread_pool_init)
14648         (mono_thread_pool_finish): 
14649         * monitor.c (mono_monitor_try_enter_internal): 
14650         * threads.c (mono_thread_resume, mono_thread_init)
14651         (mono_thread_suspend_all_other_threads)
14652         (mono_thread_execute_interruption): 
14653         * appdomain.c (mono_domain_unload): Check for NULL error returns
14654         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
14655         75733.
14656
14657 2006-11-11  Miguel de Icaza  <miguel@novell.com>
14658
14659         * process.c
14660         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
14661         Only close the handle if the value of the handle is not
14662         INVALID_HANDLE_VALUE.  This just makes the process a bit more
14663         robust.
14664
14665         Improvement for #75733, so that we do not run into this problem. 
14666
14667         
14668         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
14669         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
14670         internal variables.  Fixes #79462 
14671         
14672
14673 2006-11-09  Dick Porter  <dick@ximian.com>
14674
14675         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
14676         Use poll() not select().  Fixes bug 79397.
14677
14678 2006-11-09  Raja R Harinath  <rharinath@novell.com>
14679
14680         Fix #79872
14681         * assembly.c (mono_assembly_load_from_full): Check that the given
14682         image has an assembly manifest.
14683
14684 2006-11-09  Ankit Jain  <jankit@novell.com>
14685
14686         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
14687         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
14688         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
14689
14690 2006-11-07  Dick Porter  <dick@ximian.com>
14691
14692         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
14693         Put the old resolver behaviour back for pre-2.0 profiles.
14694
14695 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
14696
14697         * threadpool.c: precise GC and locking fixes.
14698
14699 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
14700
14701         * class.c: don't load types that have an explicit unaligned
14702         managed reference. Provide better info in the TypeLoad exception.
14703         Part of the fix for bug #79744.
14704         * object.c: use the correct check for class type load issues.
14705
14706 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
14707
14708         * class.c: enforce alignment of fields with managed references
14709         even when Pack=1 is forced by the user (bug #77788).
14710
14711 2006-11-03  Dick Porter  <dick@ximian.com>
14712
14713         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
14714         If the address reverse lookup fails, return it as the hostname
14715         anyway.  Fixes bug 79721.
14716
14717 2006-11-03  Dick Porter  <dick@ximian.com>
14718
14719         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
14720         Fix build on Windows.
14721
14722 2006-11-02  Dick Porter  <dick@ximian.com>
14723
14724         * icall-def.h: 
14725         * object-internals.h: 
14726         * exception.c (mono_get_exception_thread_interrupted): 
14727         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
14728         Fixes bug 74525.
14729
14730         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
14731         Check for pending Thread.Interrupt.
14732
14733 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
14734         * loader.c: Fixed bug 79684.
14735
14736 2006-10-27  Dick Porter  <dick@ximian.com>
14737
14738         * file-io.c (get_file_attributes): Force symlinks to directories
14739         to be returned as a regular file.  Fixes bug 79733.
14740 2006-10-26  Dick Porter  <dick@ximian.com>
14741
14742         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
14743         CreateFile to open a directory then we need to set the
14744         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
14745
14746 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
14747
14748         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
14749         friends.
14750
14751 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
14752
14753         * sgengc.c: small cleanup of timer code.
14754
14755 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
14756
14757         * sgen-gc.c: fix some warnings and start adding support for
14758         complete object removal on domain unload.
14759
14760 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
14761
14762         * assembly.c: build_assembly_name should not consider a version
14763         number without build or revision number invalid. Fixes bug #79715.
14764
14765 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
14766
14767         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
14768         call kernel32 function OutputDebugString directly.
14769         
14770         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
14771         
14772 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
14773
14774         * reflection.c: small cleanup, using a function to insert a MonoString
14775         in the string heap.
14776
14777 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
14778
14779         * reflection.c: moving GC fixes.
14780
14781 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
14782
14783         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
14784         all the objects with finalizers belonging to an unloading appdomain.
14785
14786 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
14787
14788         * sgen-gc.c: added ability to allocate even when the nursery is fully
14789         pinned and fixed a couple of bugs.
14790
14791 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
14792
14793         * threads.h: Revert the last change for now.
14794
14795         * threads.h (mono_thread_get_pending_exception): Rename this to
14796         mono_thread_get_undeniable_exception ().
14797
14798 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
14799
14800         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
14801         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
14802         when fname does not refer to valid assembly. This result in a more
14803         meaningful error message.
14804         * exception.c: added mono_get_exception_bad_image_format2 which 
14805         constructs a BadImageFormatException using the ctor taking a custom
14806         message and the file name. Passing in a NULL msg results in a default
14807         message.
14808         * exception.h: define mono_get_exception_bad_image_format2 function.
14809         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
14810         when file name pointed to an invalid IL image. Use 
14811         mono_get_exception_file_not_found2 to construct FileNotFoundException,
14812         as this results in a more meaningful error message.
14813
14814 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
14815
14816         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
14817         #79465.
14818
14819 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
14820
14821         * metadata.c (mono_type_size): Change the align parameter to guint32 for
14822         consistency with the other _size functions.
14823         (mono_type_stack_size): Ditto.
14824
14825         * class.c object.c icall.c: Fix warnings caused by the above change.
14826
14827         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
14828
14829         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
14830
14831         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
14832
14833 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
14834
14835         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
14836         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
14837         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
14838         threadpool.h, threads-types.h: mark more internal functions.
14839
14840 2006-10-11  Dick Porter  <dick@ximian.com>
14841
14842         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
14843         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
14844         reproduce the bug even before applying the fix.)
14845
14846 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
14847
14848         * reflection.c: allow retrieving attributes for arguments in generic
14849         methods (bug #79241).
14850
14851 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
14852
14853         * debug-mono-symfile.c: properly check fopen () result (found by
14854         coverity).
14855
14856 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
14857
14858         * reflection.c: make error message clearer and fixed two
14859         issuelets found by Coverity.
14860
14861 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
14862
14863         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
14864
14865 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
14866
14867         * object-internals.h, gc-internal.h, profiler-private.h:
14868         mark internal functions.
14869
14870 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
14871
14872         * reflection.c: put data in the text section.
14873         * icall.c: recognize more types in type_from_typename ().
14874         * process.c, marshal.c: added some GC FIXMEs.
14875
14876 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
14877
14878         * loader.c: check for NULL before initializing.
14879
14880 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
14881
14882         * gc.c (finalizer_thread): Use a non-alertable wait here.
14883
14884         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
14885         until the correct solution is found.
14886
14887 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
14888
14889         * reflection.c (mono_module_get_object): Avoid an assert when operating on
14890         modules with no metadata. Fixes #79596.
14891
14892         * image.c (load_metadata_ptrs): Put back the error message when
14893         the #- heap is encountered since the support is not complete yet.
14894
14895 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
14896
14897         * gc.c: do not allow the user to SuppressFinalize () a
14898         delegate because it would leak the trampoline if present.
14899
14900 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
14901
14902         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
14903         PropertyPtr table.
14904
14905 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
14906
14907         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
14908
14909         * metadata.c (mono_metadata_get_param_attrs): Ditto.
14910
14911         * row-indexes.h: Add definitions for *Ptr tables.
14912
14913         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
14914
14915         * metadata.c (mono_metadata_translate_token_index): New helper function to
14916         translate table indexes used in uncompressed metadata.
14917         (mono_metadata_decode_table_row): Ditto.
14918         (mono_metadata_decode_table_row_col): Ditto.
14919
14920         * metadata.c: Add table schema for *Ptr tables.
14921
14922         * class.c loader.c: Use the new helper function to access the affected metadata
14923         tables.
14924         
14925         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
14926         #38532.
14927         
14928 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
14929
14930         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
14931         sequences which can be unbounded in size. Fixes #79583.
14932
14933 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
14934
14935         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
14936         static initialization.
14937
14938         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
14939
14940         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
14941
14942         * domain.c (mono_domain_free): Free up type_init_exception_hash.
14943
14944         * object.c (mono_runtime_class_init): Implement correct semantics when a static
14945         ctor fails, i.e. throw the same exception on subsequent accesses.
14946         
14947 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
14948
14949         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
14950         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
14951         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
14952         Handle marshalling of interfaces and VARIANTs contained in structs.
14953         
14954         Code is contributed under MIT/X11 license.
14955         
14956 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
14957
14958         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
14959         
14960         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
14961         mempool.
14962
14963 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14964
14965         * console-io.c: ignore previous SIGINT handler.
14966
14967 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
14968
14969         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
14970         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
14971         #79460, #79461, #79485.
14972
14973         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
14974
14975         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
14976         #79217.
14977
14978 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
14979
14980         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
14981         could be generated from it.
14982
14983 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
14984
14985         * rand.c: fix read loop to correctly handle EINTR.
14986
14987 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
14988
14989         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
14990         internal calls are defined to keep methods closer to the declaring
14991         type and allow a significant reduction in runtime relocations and
14992         memory usage.
14993
14994 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
14995
14996         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
14997         exception message to have FileNotFoundException use the default
14998         assembly load error message. Fixes bug #79426.
14999         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
15000
15001 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15002
15003         * threadpool.c: (start_thread_or_queue) use the root domain when
15004         creating the thread instead of the async object one.
15005
15006 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
15007
15008         * class.c, object.c, class-internals.h, reflection.c:
15009         for arrays, store element_size inside MonoClass (speedup
15010         for array object creation).
15011
15012 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
15013
15014         * icall.c: fixed CodeBase to use the file name and not the module
15015         name (bug #79365).
15016
15017 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
15018
15019         * mono-debug.c, mono-debug.h: export find_method as
15020         mono_debug_find_method ().
15021
15022 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
15023
15024         * debug-helpers.c, class-internals.h: added a few functions useful
15025         when debugging under gdb.
15026
15027 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15028
15029         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
15030         characters that need special handling.
15031
15032 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
15033
15034         * mono-config.c: make the os/cpu specification more flexible,
15035         allowing lists and negation.
15036
15037 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
15038
15039         * marshal.c: COM Interop fixes. Handle case where method->klass.
15040         is interface. Handle BSTR/MonoString when null. Use CDECL as 
15041         calling convention on non-windows platforms. This is for
15042         compatibility with XPCOM and MainWin COM.
15043         
15044         Code is contributed under MIT/X11 license.
15045         
15046
15047 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
15048
15049         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
15050         correctly. Fixes #79217.
15051
15052         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
15053
15054 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
15055
15056         * mono-config.c: allow both an os and cpu attribute for dllmap
15057         and dllentry elemnets to enable a single config file to be used
15058         for multiple architectures.
15059
15060 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
15061
15062         * loader.c: MonoLoaderError was cleared too soon on load failure.
15063         Fixes bug #79424.
15064
15065 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
15066
15067         * icall.c: use the defining class vtable when accessing a
15068         static field, not a pobblibly derived class.
15069
15070 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
15071
15072         * icall.c string-icalls.c: Remove references to unicode.h.
15073
15074         * unicode.h unicode.c Makefile.am: Remove these unused source files.
15075
15076         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
15077
15078         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
15079         indicating the image where custom marshaller types should be looked up.
15080         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
15081         custom marshallers, instead of corlib. Fixes #79425.
15082
15083 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
15084
15085         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
15086
15087 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
15088
15089         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
15090         Implement Environment.ProcessorCount.
15091         
15092         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
15093         Implement Environment.ProcessorCount.
15094         
15095         * icall.c: 
15096         Add Environment.ProcessorCount icall.
15097         
15098         Patch by Jason McFall.
15099
15100 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15101
15102         * assembly.c: don't append .exe/.dll when the filename already contains
15103         one of those extensions.
15104
15105 2006-09-12  Martin Baulig  <martin@ximian.com>
15106
15107         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
15108         to array interfaces.
15109
15110 2006-09-11  Martin Baulig  <martin@ximian.com>
15111
15112         * reflection.c (mono_image_build_metadata): Create the
15113         MethodImpl's after emitting all types and methods, so we don't
15114         need another fixup pass for them.
15115
15116 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
15117
15118         * class.c (mono_class_from_name_case): Fix regression introduced by the last
15119         change.
15120
15121 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
15122
15123         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
15124         unload.
15125
15126 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
15127
15128         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
15129         args is not set. Fixes #78926.
15130
15131 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
15132
15133         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
15134
15135         * image.c (load_class_names): Move this to class.c, and rename it to 
15136         'mono_image_init_name_cache'.
15137         (load_modules): Fix a warning.
15138
15139         * class.c icall.c image.c: Initialize image->name_cache lazily.
15140
15141         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
15142         on its name using information in the AOT file.
15143
15144         * class.c (mono_class_from_name): Use the new hook function.
15145
15146 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
15147
15148         * reflection.c (mono_param_get_objects): Handle enum default parameter values
15149         correctly.
15150
15151         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
15152         Fixes #79289.
15153         
15154 2006-09-06  Martin Baulig  <martin@ximian.com>
15155
15156         * icall.c (mono_lookup_internal_call): Small fix.
15157
15158 2006-09-05  Raja R Harinath  <rharinath@novell.com>
15159
15160         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
15161         double g_free.
15162
15163 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
15164
15165         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
15166         when --debug is specified.
15167
15168 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
15169
15170         * class.c (setup_generic_array_ifaces): Fix a warning.
15171
15172 2006-09-04  Miguel de Icaza  <miguel@novell.com>
15173
15174         * Temporarily remove the patch to assemly.c that checks the
15175         assembly versions as it breaks our gacutil.
15176
15177 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
15178
15179         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
15180
15181         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
15182         a net 1.0 runtime.
15183
15184         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
15185         created using the default ctor. Fixes #79152.
15186         (mono_string_builder_to_utf16): Ditto.
15187
15188 2006-09-01  Martin Baulig  <martin@ximian.com>
15189
15190         Fix handling of the generic array interfaces.
15191
15192         * class-internals.h
15193         (MonoDefaults): Removed `generic_array_class' and added
15194         `generic_ilist' class.
15195
15196         * class.c
15197         (mono_bounded_array_class_get): Add the new generic array interfaces.
15198         (setup_generic_array_ifaces): New static method; create vtable
15199         entries for each method in the generic array interfaces.
15200
15201         * metadata.c
15202         (select_container): Allow "parent-less" generic methods.
15203
15204         * marshal.c
15205         (mono_marshal_get_generic_array_helper): New public method.
15206
15207         * icall.c
15208         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
15209         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
15210         moved the interncall into System.Array.
15211
15212 2006-09-01  Raja R Harinath  <rharinath@novell.com>
15213
15214         A few more cases of avoiding work on types with ->byref set.
15215         Has the real fix for #79238
15216         * icall.c (is_generic_parameter): New helper.
15217         (ves_icall_Type_GetGenericParameterPosition): Use it.
15218         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
15219         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
15220         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
15221         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
15222         reference types.
15223         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
15224         reference types.
15225         (ves_icall_Type_get_IsGenericInstance): Likewise.
15226         (ves_icall_Type_get_IsGenericType): Likewise.
15227
15228 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
15229
15230         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
15231         class if possible.
15232
15233         * mempool.h (mono_mempool_get_allocated): New helper function.
15234
15235         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
15236         change.
15237
15238         * mempool.c: Fix warnings and the calculation of stats.
15239
15240         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
15241
15242         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
15243
15244         * loader.c (mono_get_method_from_token): Update method_count stat.
15245
15246         * class-internals.h (MonoStats): Add some stats.
15247
15248 2006-08-31 Robert Jordan  <robertj@gmx.net>
15249
15250         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
15251         with managed variants.
15252         All code is contributed under the MIT/X11 license.
15253         
15254 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
15255
15256         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
15257         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
15258
15259         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
15260
15261         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
15262         with cycles in classes.
15263
15264         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
15265
15266         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
15267         missing a [MarshalAs] directive. Fixes #79203.
15268
15269         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
15270         klass->marshal_info. Fixes #79217.
15271
15272 2006-08-30  Martin Baulig  <martin@ximian.com>
15273
15274         Committing a patch from Joachim Ante <joe@otee.dk>:
15275         Add support for binary data symbol stores.
15276
15277         * debug-mono-symfile.c
15278         (mono_debug_open_mono_symbol_file): Renamed into
15279         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
15280         arguments.
15281
15282         * mono-debug.c
15283         (mono_debug_open_image): Added `raw_contents' and `size' args.
15284         (mono_debug_init_2_memory): New public function.
15285
15286 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
15287
15288         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
15289
15290 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15291
15292         * appdomain.c: implement support for ShadowCopyFiles.
15293
15294 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
15295
15296         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
15297         when value is NULL (and should remove CID #51).
15298
15299 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15300
15301         * image.c: moved 2 functions to ../utils.
15302
15303 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
15304
15305         * gc.c: cope with the target object of a GC handle being NULL
15306         (bug #78877).
15307
15308 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
15309
15310         * class.c: recursively check parent's explicit implementations
15311         of interface methods (fixes bug #79125).
15312
15313 2006-08-19  Miguel de Icaza  <miguel@novell.com>
15314
15315         * filewatcher.c: Avoid warnings when building, do not redefine
15316         constants that are defined.
15317
15318         Remove warnings.
15319
15320 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15321
15322         * image.c: don't fail when the link points to an absolute path.
15323
15324 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
15325
15326         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
15327         Fix CID #3.
15328
15329 2006-08-17  Miguel de Icaza  <miguel@novell.com>
15330
15331         * image.c (full_path): A new method used to obtain the actual path
15332         of an assembly even in the presence of symbolic links.  
15333
15334         This is necessary for the case where we are running a binary that
15335         has been GACed, but we are using the "published" path name
15336         ($prefix/mono/1.0/blah.exe) which happens to point to the real
15337         file in the GAC.
15338
15339         This was the source of the failure for the `xsp' command with the
15340         recent AppDomain changes, as far as the runtime was concerned,
15341         there were two different assemblies: $prefix/mono/1.0/blah.exe and
15342         $prefix/mono/gac/blah/version/blah.exe.
15343
15344         (do_mono_image_open): use full path
15345
15346 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15347
15348         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
15349
15350 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
15351
15352         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
15353         domain_id is supplied. Fix CID #241 and corlib's unit tests.
15354
15355 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15356
15357         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
15358         small structures. Fixes #78990.
15359
15360 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
15361
15362         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
15363
15364         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
15365
15366 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15367
15368         * appdomain.c:
15369         * marshal.c: don't load all the assemblies from a domain into newly
15370         created ones. The new domains might have different rules and load
15371         assemblies from different locations. Fixes bug #76757.
15372
15373         Patch by Lluis. Conflicts resolved by Brian Crowell.
15374
15375 2006-08-16  Alp Toker  <alp@atoker.com>
15376
15377         * socket-io.c: First half of the fix for #79084.
15378         Set sa_size to the length of the content, not that of the struct.
15379         Don't add NULL suffix to the content, this should be done in
15380         managed code if needed.
15381
15382 2006-08-14  Raja R Harinath  <rharinath@novell.com>
15383
15384         Fix part of #79012
15385         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
15386         mono_metadata_parse_type returns NULL.
15387
15388 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
15389
15390         * normalization-tables.h : new file for string normalization data.
15391         * locales.c, locales.h, icall.c :
15392           added load_normalization_resource() for string normalization,
15393           and icall as well.
15394         * Makefile.am : added normalization-tables.h to the sources.
15395
15396 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
15397
15398         * marshal.c: Add more helper functions to reduce code duplication and use them
15399         everywhere.
15400
15401 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
15402
15403         * marshal.c: Fix non-x86 stdcall warnings.
15404         
15405         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
15406         them everywhere.
15407
15408 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
15409
15410         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
15411         type check on multi-dimensional arrays. Fixes #79000.
15412
15413 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
15414
15415         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
15416         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
15417         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
15418         * class-internals.h: add is_com_object to class structure.
15419         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
15420         null checks to COM object marshalling. Fix .ctor call on RCW.
15421         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
15422         
15423         All code is contributed under the MIT/X11 license.
15424
15425 2006-08-09  Dick Porter  <dick@ximian.com>
15426
15427         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
15428         racing mono_monitor_allocator_lock() somewhere, so don't delete
15429         the critical section for now.  Found by running and exiting
15430         monodevelop.
15431
15432 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
15433
15434         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
15435         (ves_icall_System_ComObject_FindInterface): Ditto.
15436         (ves_icall_System_ComObject_CacheInterface): Ditto.
15437
15438         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
15439         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
15440
15441 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15442
15443         * threadpool.c: treat pipes from process asynchronous reads as sockets
15444         when reading from them, so we get select/poll or epoll to wait for
15445         data.
15446
15447 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
15448
15449         * loader.c: Fix a typo (CID #233) in the null check.
15450
15451 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
15452
15453         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
15454         Hopefully fixes #78949.
15455         
15456         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
15457         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
15458         bytes. Fixes #78972.
15459
15460 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15461
15462         * filewatcher.c: we need to set errno here.
15463
15464 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15465
15466         * filewatcher.c: let Win32Exception get the error value.
15467
15468 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15469
15470         * filewatcher.c: translate errno into win32 errors for Win32Exception
15471         to know what happened.
15472
15473 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
15474
15475         * threadpool.c: Fix more warnings.
15476
15477         * assembly.c (search_loaded): Fix warnings.
15478
15479         * threadpool.c (mono_thread_pool_finish): Fix warnings.
15480         (mono_async_invoke): Ditto.
15481
15482 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
15483
15484         * object.c (mono_remote_class_vtable): Need to create proxy vtable
15485         entries for __ComObject type in addition to ComImport types.
15486         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
15487         about hash table.
15488         
15489         All code is contributed under the MIT/X11 license.
15490
15491 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
15492
15493         * image.c: avoid tentative loading of modulerefs that contain
15494         no metadata (P/Invoke library names).
15495
15496 2006-07-28  Dick Porter  <dick@ximian.com>
15497
15498         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
15499         mono_loader_lock() somewhere, so don't delete the critical section
15500         for now.  Found by running and exiting monodevelop.
15501
15502 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15503
15504         * filewatcher.c: define the inotify syscalls when we're building on
15505         linux and have sys/syscall.h. The build system might not have support
15506         for inotify but the target system might have it.
15507
15508 2006-07-26  Miguel de Icaza  <miguel@novell.com>
15509
15510         * domain.c: Documentation updates.
15511
15512         * loader.c (mono_free_method): Do not release the method
15513         information if we are being profiled, as profilers will use this
15514         information at shut down to present some data to the user.
15515
15516         This is needed so that the profiler does not crash, as the
15517         profiler tends to keep MonoMethods around, and they might become
15518         invalid if we free these.
15519
15520         (mono_get_method_constrained): Return the original CIL stream
15521         method as well, so verification can be performed against it.
15522
15523 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15524
15525         * filewatcher.[ch]: support for inotify file system watcher.
15526         * icall.c: add new internal calls for the inotify file system watcher.
15527
15528 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15529
15530         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
15531         #78888.
15532
15533 2006-07-20  Dick Porter  <dick@ximian.com>
15534
15535         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
15536         warning.
15537
15538 2006-07-20  Dick Porter  <dick@ximian.com>
15539
15540         * threads.c (start_wrapper): Do the thread cleanup while we still
15541         hold a reference to its object.  Fixes bug 78123.
15542
15543 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
15544
15545         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
15546         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
15547           "managed-to-managed".
15548         * icall.c: Redirect string constructors that take sbyte* to
15549           ves_icall_System_String_ctor_RedirectToCreateString.
15550         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
15551           to CreateString () methods with matching signature.
15552         * reflection.c: Use original security informations for
15553           MONO_WRAPPER_MANAGED_TO_MANAGED.
15554         * security-manager.c: Use original security informations for
15555           MONO_WRAPPER_MANAGED_TO_MANAGED.
15556         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
15557           that is a placeholder and only its address should be used.
15558         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
15559           that is a placeholder and only its address should be used.
15560
15561 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
15562
15563         Begin implementing COM Interop.
15564         * appdomain.c: Increment corlib version.
15565         * class.c: Set ComImport classes' parent to __ComObject.
15566         * loader.c: Mark cominterop methods as such.
15567         * domain.c: Add __ComObject class to MonoDefaults structure.
15568         * image.c: Add 2 hashtables to the image for COM Interop related methods
15569         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
15570         using the mempool allocator
15571         
15572         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
15573         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
15574         declaration for mono_metadata_type_dup_mp.
15575         
15576         * debug-helpers.c: Added strings for two additional wrapper types
15577         * object.c: Create proxy objects for ComImport classes
15578         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
15579         and added __ComObject class to MonoDefaults structure.
15580         
15581         * object-internals.h: Finish MonoRealProxy definition, and add definition of
15582         MonoComInteropProxy and MonoComObject.
15583         
15584         * marshal.c: Added support for COM Interop
15585         (signature_cominterop): Converts managed signature to corresponding
15586         unmanaged COM signature.
15587         (cominterop_get_function_pointer): gets unmanaged function pointer via
15588         COM object vtable
15589         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
15590         (cominterop_get_method_interface): returns interface type that method is defined on
15591         (mono_mb_emit_cominterop_call): emits native call to function pointer
15592         gotten from vtable
15593         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
15594         that matches signature of unmanaged function.
15595         (cominterop_get_native_wrapper): wrapper around adjusted method call.
15596         (cominterop_get_invoke): forwards call from proxy to __ComObject
15597         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
15598         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
15599         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
15600         
15601         * marshal.h: Added Marshal icall declarations.
15602         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
15603         so we can access them in finalizer
15604         
15605 2006-07-14  Dick Porter  <dick@ximian.com>
15606
15607         * object.c (mono_type_initialization_cleanup): Fix a race
15608         condition by temporarily commenting out the critical section
15609         deletion.
15610
15611 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
15612
15613         * reflection.c (create_custom_attr): Fix some warnings.
15614         (create_custom_attr_data): Ditto.
15615         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
15616         types. Fixes #78855.
15617
15618 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
15619
15620         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
15621
15622         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
15623
15624 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
15625
15626         * reflection.c (resolve_object): Add support for DynamicMethod.
15627
15628         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
15629         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
15630
15631 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
15632
15633         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
15634         don't leak GPtrArray's pdata has we have no use (nor free) for it.
15635
15636 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
15637
15638         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
15639         Fixes #77888.
15640
15641 2006-06-30  Raja R Harinath  <rharinath@novell.com>
15642
15643         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
15644         slightly: remove a shadow local variable.
15645
15646 2006-06-29  Raja R Harinath  <rharinath@novell.com>
15647
15648         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
15649         definition that introduces the virtual function slot.
15650         Also fix Coverity #105.
15651
15652 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
15653
15654         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
15655         for dynamic assemblies. Fixes #78724.
15656
15657 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
15658
15659         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
15660         Fixes #78722.
15661
15662 2006-06-21  Martin Baulig  <martin@ximian.com>
15663
15664         * reflection.c
15665         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
15666         fixes #76484.
15667
15668 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
15669
15670         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
15671
15672 2006-06-20  Raja R Harinath  <rharinath@novell.com>
15673
15674         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
15675         nor TYPEREFs.
15676         * class.c (mono_class_create_from_typespec): Add 'context' argument.
15677         Inflate result if necessary.
15678         (mono_class_get_full): Remove old version.  Rename from
15679         'mono_class_get' and add 'context' argument.  Pass it to
15680         ..._create_from_typespec.
15681         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
15682         (mono_ldtoken): Revert change below.
15683
15684 2006-06-20  Martin Baulig  <martin@ximian.com>
15685
15686         * class.c (mono_ldtoken): Don't pass the generic context to
15687         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
15688
15689 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
15690
15691         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
15692         and later freeing it. Fixes #78638.
15693
15694 2006-06-15  Miguel de Icaza  <miguel@novell.com>
15695
15696         * icall.c (mono_class_get_throw): Revert over-zealous error
15697         throwing, the caller for mono_class_get_throw will cope with
15698         errors when classes are not properly initialized already.
15699
15700         The code still copes with loader exceptions though.
15701
15702         Fixes the regression in reftype1 and reftype3 from the CAS tests.
15703         
15704 2006-06-14  Miguel de Icaza  <miguel@novell.com>
15705
15706         Fixes the `make run1' version of RuntimeAbort (to be commited,
15707         source is in Bugzilla).
15708         
15709         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
15710         FALSE on class loading failure instead of returning true.
15711
15712         * class.c (mono_class_create_from_typedef): It is possible for
15713         mono_metadata_interfaces_from_typedef_full to fail if a class is
15714         not found, cope with this.
15715         
15716
15717 2006-06-14  Dick Porter  <dick@ximian.com>
15718
15719         * socket-io.c: 
15720         * process.c: Fix a bunch of signed/unsigned warnings from gcc
15721         4.1.1
15722
15723 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
15724
15725         * culture-info-table.h : oops, forgot to make it nsync with r61548.
15726
15727 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15728
15729         * icall.c: Another fix for building mono in Visual Studio.
15730
15731 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
15732
15733         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
15734         
15735 2006-06-09  Martin Baulig  <martin@ximian.com>
15736
15737         * debug-mono-symfile.c: Put this back and really fix it this
15738         time. Sorry for all the trouble.
15739
15740 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
15741
15742         * icall.c (mono_class_get_throw): Fix a warning.
15743         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
15744         ReflectionTypeLoadException if needed. Fixes #78606.
15745
15746         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
15747         (mono_class_init): Ditto.
15748
15749         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
15750         ref_only exceptions.
15751         (mono_loader_clear_error): Make this work even if there is no error.
15752
15753 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
15754
15755         * object-internals.h marshal.c marshal.h icall.c: Implement method 
15756         Marshal.GetComSlotForMethodInfo using internal call.
15757
15758 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
15759
15760         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
15761         a function for signalling it.
15762
15763         * class.c (mono_class_from_typeref): Use the new kind of loader error when
15764         a referenced assembly is not found.
15765
15766         * loader.c (mono_loader_error_prepare_exception): Add support for 
15767         LOADER_ERROR_ASSEMBLY. Fix formatting.
15768
15769 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
15770
15771         * domain.c appdomain.c class-internals.h marshal.c: Add support 
15772         for VARIANT marshalling on windows and increment corlib version
15773         since Variant struct was added.
15774
15775 2006-06-03  Miguel de Icaza  <miguel@novell.com>
15776
15777         * debug-mono-symfile.c: Revert Martin's previous patch which broke
15778         stack trace line information:
15779
15780         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
15781         (Martin) when looking up B which is between A and C, return A not C.
15782
15783         Bug is #78573.
15784
15785         Thanks to Alexander Olk for tracking this down.
15786
15787 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
15788
15789         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
15790         
15791         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
15792         avoid clobbering its value.
15793         (mono_string_to_lpstr): Fix a warning on windows.
15794
15795 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
15796
15797         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
15798
15799         * reflection.c loader.c: Removed references to 'dummy' flag.
15800
15801         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
15802
15803         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
15804         it gets GC tracking.
15805
15806         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
15807         GC tracking.
15808         
15809         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
15810
15811         * marshal.c threadpool.c: Update callers of mono_async_result_new.
15812
15813         * appdomain.c: Bump corlib version.
15814
15815 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
15816
15817         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
15818         CEE_STIND_REF when working with object references.
15819
15820 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
15821
15822         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
15823         Fixes #78539.
15824
15825 2006-05-30  Miguel de Icaza  <miguel@novell.com>
15826
15827         * loader.c (method_from_memberref): Fix argument value for
15828         mono_loader_set_error_method_load (I was passing the MonoClass
15829         instead of the class name char *).
15830
15831 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
15832
15833         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
15834         CEE_STIND_REF when working with object references.
15835
15836 2006-05-30  Martin Baulig  <martin@ximian.com>
15837
15838         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
15839         mono_method_full_name() change and replace the ':' with a '.'
15840         here.
15841
15842 2006-05-30  Martin Baulig  <martin@ximian.com>
15843
15844         * debug-mono-symfile.c
15845         (mono_debug_symfile_lookup_location): Fix the algorithm:
15846         when looking up B which is between A and C, return A not C.
15847
15848 2006-05-29  Martin Baulig  <martin@ximian.com>
15849
15850         * mono-debug.h
15851         (MonoDebugMethodInfo): Make the typedef public.
15852         (MonoDebugSourceLocation): New public struct.
15853
15854         * mono-debug.c
15855         (mono_debug_source_location_from_address): Removed.
15856         (mono_debug_source_location_from_il_offset): Removed.
15857         (mono_debug_il_offset_from_address): Removed.
15858         (mono_debug_address_from_il_offset): Removed.
15859         (mono_debug_lookup_method): New public function.
15860         (mono_debug_lookup_source_location): New public function; replaces
15861         the old mono_debug_source_location_from_*() functions; see the
15862         inline documentation.
15863         (mono_debug_free_source_location): New public function.
15864         (mono_debug_print_stack_frame): New public function; see the
15865         inline documentation.
15866
15867         * debug-mono-symfile.c
15868         (mono_debug_find_source_location): Renamed into
15869         mono_debug_symfile_lookup_location(); only take a
15870         `MonoDebugMethodInfo *' and an `offset' argument; added inline
15871         documentation.
15872         (mono_debug_find_method): Renamed into
15873         mono_debug_symfile_lookup_method().
15874
15875 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
15876
15877         * assembly.c (mono_assembly_open_full): Dont overwrite the status
15878         returned by mono_image_open_full ().
15879
15880         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
15881         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
15882         #78517.
15883
15884         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
15885         #78518.
15886
15887 2006-05-27  Miguel de Icaza  <miguel@novell.com>
15888
15889         * class.c (mono_class_from_typeref): handle missing images
15890         earlier, deals with bug #78418.   Refactor code; 
15891
15892         Fix a warning introduced in my previous commit (some stale code
15893         from before I revisited my patch).
15894
15895         * class.c (mono_class_create_from_typedef): On failure, remove the
15896         class from the MonoImage->class_cache as the class is not
15897         initialized;   Fixes the leak pointed out by Paolo.
15898
15899 2006-05-25  Dick Porter  <dick@ximian.com>
15900
15901         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
15902         DeleteCriticalSections until I figure out which one may still be
15903         sometimes locked when mono_thread_cleanup is called.
15904
15905 2006-05-24  Dick Porter  <dick@ximian.com>
15906
15907         * threads.c (mono_thread_cleanup): Move the threading cleanup out
15908         of mono_thread_manage and back into its own function, so it can be
15909         called after the finalizer thread has finished.
15910
15911         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
15912
15913 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
15914
15915         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
15916         Fixes #78495.
15917
15918         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
15919         with non-blittable elements.
15920         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
15921
15922 2006-05-24  Martin Baulig  <martin@ximian.com>
15923
15924         * mono-debug-debugger.h (MonoDebuggerEvent): Added
15925         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
15926
15927         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
15928         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
15929         `mono_debugger_event_handler' to NULL.
15930
15931 2006-05-24  Martin Baulig  <martin@ximian.com>
15932
15933         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
15934
15935 2006-05-24  Martin Baulig  <martin@ximian.com>
15936
15937         * mono-debug-debugger.h
15938         (mono_debugger_create_notification_function): Added
15939         `MonoCodeManager *' argument.
15940
15941 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
15942
15943         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
15944
15945 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
15946
15947         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
15948         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
15949         implementation.
15950
15951 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
15952
15953         * icall.c: precise GC support: objects can't be stored in unmanaged
15954         memory anymore, even if they are kept alive by other references: since
15955         they can move the GC needs to be able to always find them.
15956
15957 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
15958
15959         * object.c: precise GC support for static fields. Support
15960         for moving GCs: write barriers and pinned allocation for interned
15961         strings.
15962
15963 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
15964
15965         * domain.c, domain-internals.h: precise GC support for the MonoDomain
15966         structure.
15967
15968 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
15969
15970         * class.c, gc.c: sgen and precise GC updates.
15971
15972 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
15973
15974         * marshal.h, marshal.c: added write barrier wrapper and precise type
15975         fixes.
15976
15977 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
15978
15979         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
15980         support.
15981
15982 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
15983
15984         * reflection.c: precise and sgen GC updates.
15985
15986 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
15987
15988         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
15989
15990 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
15991
15992         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
15993
15994 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
15995
15996         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
15997         MONO_TYPE_OBJECT. Fixes #78462.
15998
15999 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
16000
16001         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
16002         and blittable types.
16003
16004 2006-05-17  Miguel de Icaza  <miguel@novell.com>
16005
16006         * class.c (mono_class_get_exception_for_failure): Implement parts
16007         of a TODO: if the loader error is set (instead of the class
16008         error), we return a Loader exception that can be properly thrown
16009         elsewhere.
16010
16011         This was exposed by some Winforms 2.0 code that I tried to run
16012         (Atsushi pointed me to it).
16013
16014 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
16015
16016         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
16017         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
16018         
16019         * marshal.c (emit_marshal_vtype): Add limited support for 
16020         UnmanagedType.LPStruct. Fixes #78427.
16021
16022         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
16023         Applied a patch from kangaroo to fix #77523.
16024
16025 2006-05-17  Martin Baulig  <martin@ximian.com>
16026
16027         * threads.c
16028         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
16029         (debugger_thread_created): Removed.
16030         (debugger_thread_exited): Removed.
16031
16032 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
16033
16034         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16035
16036         * object-internals.h (MonoReflectionResource): Sync with managed version.
16037
16038 2006-05-12  Wade Berrier <wberrier@novell.com>
16039
16040         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
16041
16042 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
16043
16044         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
16045         functions try to allocate from the image mempool.
16046
16047 2006-05-12  Dick Porter  <dick@ximian.com>
16048
16049         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
16050
16051 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
16052
16053         * object.c: The FieldGetter and FieldSetter methods require the full
16054         name of the class, not only the name. Fixes bug #78277.
16055
16056 2006-05-11  Miguel de Icaza  <miguel@novell.com>
16057
16058         * loader.c (method_from_memberref): Do not pass the NULL klass to
16059         mono_loader_set_error_() methods.  Pass the non-NULL value
16060         (class). 
16061
16062 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
16063
16064         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
16065         (mono_assembly_close): Null out assembly->image->references after freeing it.
16066
16067         * image.c (mono_image_close): Free image->references.
16068         
16069         * reflection.c (mono_image_basic_init): Fix a small memory leak.
16070
16071 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16072
16073         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
16074         before checking if it's NULL (g_assert).
16075
16076 2006-05-10  Martin Baulig  <martin@ximian.com>
16077
16078         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
16079         I thought I already killed that two months ago, but now it somehow reappeared.
16080
16081 2006-05-10  Martin Baulig  <martin@ximian.com>
16082
16083         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
16084
16085 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
16086
16087         * reflection.c: Allocate memory for dynamically created methods in the image
16088         mempools.
16089
16090 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
16091
16092         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
16093         don't use the ad pointer before checking if it's NULL (g_assert).
16094
16095 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
16096
16097         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
16098         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
16099
16100         * marshal.c: Allocate all signatures from mempools.
16101
16102         * marshal.c: Allocate some more signatures from mempools.
16103
16104 2006-05-09  Miguel de Icaza  <miguel@novell.com>
16105
16106         * object.c (mono_load_remote_field): The code used to provide a
16107         temporary variable for returning results if the user did not
16108         provide a result pointer.  But our temporary variable was allocted
16109         on the satck.
16110
16111         Fix calling code to always pass a result area.   Coverity ID 103.
16112
16113 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
16114
16115         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
16116         value, not the old. Fixes #78312.
16117         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
16118
16119         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
16120         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
16121         per-image cache.
16122
16123         * assembly.c (mono_assembly_close): Free image->references.
16124
16125         * assembly.c (mono_assembly_names_equal): Fix a warning.
16126         (mono_assemblies_cleanup): Cleanup more global data.
16127
16128         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
16129
16130         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
16131         ptr_cache and image->modules.
16132
16133         * image.c (mono_image_init): Allocate array_cache lazily.
16134         
16135 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16136
16137         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
16138         behavior was changed recently and has bad side effects.
16139
16140 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
16141
16142         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
16143         
16144         * assembly.c (mono_assembly_close): Remove a debug printf.
16145
16146         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
16147
16148         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
16149         to also allow for temporary references between mono_image_open ()/close ().
16150
16151         * domain.c (get_runtimes_from_exe): Add a FIXME.        
16152
16153 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
16154
16155         * marshal.c: Fix support for dynamic methods.
16156
16157         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
16158
16159         * marshal.c (mono_marshal_cleanup): New cleanup function.
16160
16161         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
16162         image mempools.
16163
16164         * class.c (mono_class_init): Fix leaking class->nested_classes.
16165
16166         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
16167
16168         * image.c (mono_image_init): Initialize the new cashes.
16169
16170         * image.c (mono_image_close): Destroy the new cashes.
16171
16172         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
16173
16174         * mempool.c (mono_mempool_strdup): New helper function.
16175
16176         * class-internals.h: Add prototype for mono_loader_unlock ().
16177
16178         * domain.c (mono_jit_info_table_find): Fix a warning.
16179         (mono_debugger_check_runtime_version): Ditto.
16180
16181         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
16182         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
16183         functions to these modules.
16184
16185         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
16186         metadata modules.
16187         
16188         * marshal.c (mono_free_bstr): Fix a warning.
16189
16190         * assembly.c (mono_assembly_open_full): Fix another small leak.
16191
16192         * object.c: Fix some unload leaks in the remoting code.
16193
16194         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
16195         function.
16196
16197         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
16198
16199         * reflection.c: Fix some unload leaks in dynamic assemblies.
16200
16201 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
16202
16203         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
16204         * marshal.h: Add BSTR support on Win32
16205         * icall.c: Add BSTR icalls
16206         * metadata.h: Add BSTR enums
16207
16208 2006-04-28  Miguel de Icaza  <miguel@novell.com>
16209
16210         Work to catch the crash from #76795 and turn it into an
16211         exception.   As I stubbed out pieces of the VisualBasic support,
16212         I found a number of places where the code was failing and I added
16213         checks to those places. 
16214         
16215         * metadata.c (do_mono_metadata_parse_generic_class): Make this
16216         function return a status code.  If we fail to parse the signature
16217         from mono_metadata_parse_generic_inst, return FALSE.
16218
16219         * loader.c (mono_get_method_from_token): If we fail to load the
16220         method (mono_class_get) return NULL.   
16221
16222         * (method_from_memberref): Return NULL if we are unable to parse
16223         the method signature
16224
16225         (mono_loader_error_prepare_exception): Since we now use the
16226         loader_error flag internally to stop processing, and obtaining
16227         exceptions that might be thrown will walk this code path the
16228         proper way of going from a MonoLoaderError into a
16229         MonoException was convoluted.   This new routine encapsulates the
16230         process of turning the error into an exception and *clearing* the
16231         error afterwards.
16232         
16233 2006-04-27  Miguel de Icaza  <miguel@novell.com>
16234
16235         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
16236         with missing assemblies), and to cope with:
16237
16238                 * Missing fieldref from a non-existing assembly.
16239                 * Missing methodref from a non-existing assembly.
16240
16241         The first batch of work to address *some* of the issues from 76661.
16242         
16243         * object.c (mono_class_create_runtime_vtable): If we fail to
16244         initialize the class raise the exception here. 
16245
16246         * metadata.c (mono_class_get_overrides_full): If any methods fail
16247         to load return the failure to the caller.
16248
16249         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
16250         flagging assemblies that failed to load.   
16251
16252         Do not crash if we are unable to load the assembly.
16253
16254         (mono_assembly_close): Do nothing with REFERENCE_MISSING
16255         assemblies. 
16256
16257         * loader.c (mono_loader_set_error_type_load): Change the
16258         convention to always pass unallocated strings, so we make our own
16259         copies (I know our own code had duplicated strings before, but
16260         this keeps the normal conventions).
16261         (method_from_memberref): Call mono_loader_set_error_method_load
16262         for all possible failures of loading the class. 
16263         Remove assert, turn into a loader error.
16264
16265         (mono_loader_error_to_exception): Move this routine from mini
16266         (mini_loader_error_to_exception) there was no need to have that in
16267         mini. 
16268
16269         * class.c (mono_class_from_typeref): If we were not able to load
16270         the assembly with mono_assembly_load_reference, call the
16271         mono_loader_set_error_type_load to register the problem.
16272
16273         (mono_class_setup_fields): If we fail to load the type from
16274         mono_metadata_parse_type_full, call mono_class_set_failure and
16275         break from the loop.
16276
16277         If class->exception_type is set, we do not layout the fields as
16278         that might crash the runtime, and instead return (from breaking
16279         from the previous loop).
16280
16281         (mono_class_setup_vtable): This now returns a boolean indicating
16282         whether the table was properly setup.   The decision is driven by
16283         mono_class_get_overrides_full which might run into non-existing
16284         methods. 
16285         
16286         (mono_class_init): Returns TRUE on success or FALSE if there was a
16287         problem in loading the type (incorrect assemblies, missing
16288         assemblies, methods, etc).
16289
16290         When we call mono_class_setup_fields we also check for a potential
16291         error inside this call (either a class exception or a general
16292         loader exception).
16293
16294         (mono_class_create_from_typedef): If the parent fails to load
16295         (calling mono_class_get_full) return NULL.
16296         
16297         ** Important **
16298
16299         calls to mono_metadata_parse_type_full should be checked
16300         everywhere and set the mono_class_set_failure
16301         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
16302
16303         The current patch checks the places where my manually constructed
16304         tests show the errors are showing up, but we should do it
16305         everywhere. 
16306
16307         ** Important2 **
16308
16309         mono_class_init return values should be tested everywhere, like
16310         the previous case this is something that we should audit
16311         everywhere and not only on the cases exposed by the tests I
16312         created. 
16313
16314 2006-04-26  Miguel de Icaza  <miguel@novell.com>
16315
16316         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
16317         boolean parameter and instead pass the information on `options'
16318         parameter (FileOptions).
16319
16320         * icall.c: Register the new signature for MonoIO.Open.
16321
16322         * debug-helpers.c (dis_one): Trying to understand how coverity
16323         works.  Fix Run 5, item 78.
16324
16325 2006-04-26  Dick Porter  <dick@ximian.com>
16326
16327         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
16328         dereference.
16329
16330 2006-04-25  Martin Baulig  <martin@ximian.com>
16331
16332         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
16333
16334         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
16335         debugger_thread_created().
16336         (debugger_gc_push_all_stacks): Don't handle the main thread in any
16337         special way.
16338         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
16339         (mono_debugger_finalize_threads): New function; undo the effects
16340         of mono_debugger_init_threads().
16341         (mono_debugger_create_all_threads): Removed.
16342
16343 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
16344
16345         * image.c (mono_image_close): Tidy up trace messages.
16346
16347         * assembly.c (mono_assembly_close): Ditto.
16348
16349         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
16350         no longer references an already freed assembly. Fixes #78168.
16351
16352 2006-04-21  Dick Porter  <dick@ximian.com>
16353
16354         * threads.c (mono_thread_detach): Fix reference counting when
16355         detaching threads.
16356
16357 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
16358
16359         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
16360         #78155.
16361
16362 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
16363
16364         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
16365         (mono_type_to_stind): Ditto.
16366
16367         * marshal.c: Use the new helper functions to simplify code.
16368
16369         * image.c (mono_image_close): Add some code for help debug assembly unloading
16370         problems.
16371
16372         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
16373         image mempool.
16374
16375         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
16376         assembly was already loaded in another appdomain. Fixes #78083.
16377
16378 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
16379
16380         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
16381         referenced assemblies.
16382         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
16383
16384         * domain.c (mono_domain_free): Add a trace message.
16385
16386         * appdomain.c (add_assemblies_to_domain): Ditto.        
16387
16388         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
16389         field.  
16390
16391 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
16392
16393         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
16394
16395 2006-04-12  Martin Baulig  <martin@ximian.com>
16396
16397         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
16398         `USE_INCLUDED_LIBGC'.   
16399
16400 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
16401
16402         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
16403         the patch contains ../ and a small directory name later. Hopefully fixes
16404         #78035.
16405
16406 2006-04-10  Martin Baulig  <martin@ximian.com>
16407
16408         Clean up the debugger's thread-handling code.
16409
16410         The debugger's thread-handling code has been moved from
16411         ../mini/debug-debugger.c to threads.c.  We now iterate directly
16412         over the `threads' hash, keep track of exiting threads and also
16413         use proper locking.
16414
16415         We can now debug XSP and XSP based applications with the debugger.
16416
16417         * object-internals.h (MonoThread): Added `gpointer end_stack'.
16418
16419         * threads.h
16420         (MonoThreadCallbacks): Removed; this was only used by the debugger.
16421         (mono_install_thread_callbacks): Likewise.      
16422
16423         * threads.c (mono_thread_callbacks): Removed.
16424         (debugger_thread_created, debugger_thread_exited): New static functions.
16425         (start_wrapper): Call debugger_thread_created().
16426         (thread_cleanup): Call debugger_thread_exited().
16427         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
16428         (mono_debugger_init_threads): New public function.
16429         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
16430         iterate directly over the `threads' hash and also use proper locking.
16431
16432         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
16433
16434         * mono-debug-debugger.h
16435         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
16436
16437 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
16438
16439         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
16440         argument type=array. Fixes #78057.
16441
16442 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
16443
16444         * culture-info-table.h : regenerated. Fixed bug #69652.
16445
16446 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
16447
16448         * loader.c metadata.c: Reapply a variant r59116.
16449         
16450         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
16451
16452         * class.c (mono_class_setup_interface_offsets): New internal function.
16453
16454         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
16455         interfaces too. Fixes #77398.
16456
16457         * reflection.c (encode_cattr_value): Add support for 
16458         parameter type=object, argument type=array.
16459         (load_cattr_value): Ditto. Fixes #77916.
16460
16461         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
16462         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
16463
16464         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
16465         a byval char array and CharSet is Ansi.
16466
16467         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
16468
16469 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
16470
16471         * metadata.c: Add some locking comments.
16472         
16473         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
16474         mempool.
16475         (mono_metadata_free_method_signature): Don't free the signature itself.
16476
16477         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
16478
16479         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
16480         reference the same MonoImage.
16481         (mono_assembly_load_from_full): Add an assert.
16482
16483 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
16484
16485         * image.c (mono_image_close): Don't put the image we are about to free into the
16486         loaded_images_guid_hash.
16487
16488         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
16489         to reduce code duplication.
16490
16491         * marshal.c: Register the native functions called by this module as icalls, to
16492         somewhat centralize the creation of MonoMethodSignature's.
16493
16494         * loader.c (mono_method_signature): Add a cache for method signatures.
16495
16496         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
16497         the parameter attributes of a method.
16498         (mono_metadata_parse_method_signature_full): Refactored the computation of
16499         parameter attributes into a separate function. Also avoid one allocation in
16500         most cases.
16501
16502         * assembly.c (mono_assembly_close): Ditto.
16503
16504         * image.c (mono_image_close): Log trace messages with INFO level.
16505
16506         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
16507
16508         * image.c reflection.c: Correct reference counting of image modules.
16509         
16510         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
16511         of this function from the image mempool.
16512         
16513         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
16514         to allow more cached types to be used.
16515
16516         * mono-debug.c (mono_debug_add_method): Appled patch from
16517         David S. Miller  <davem@sunset.davemloft.net>: Access 
16518         minfo->lexical_blocks[] entry elements using read32().
16519
16520 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
16521
16522         * loader.c (mono_free_method): No longer free the method header for non-dynamic
16523         methods as it is allocated from the mempool.
16524
16525         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
16526         image mempool.
16527
16528         * metadata-internals.h: Add comments describing the reference counting scheme
16529         used for MonoImage and MonoAssembly.
16530
16531         * image.c assembly.c reflection.c: Rework reference counting of images and 
16532         assemblies so they are freed when the runtime is shut down. Free some 
16533         additional memory structures when an image is unloaded.
16534         
16535 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
16536
16537         * class.c loader.c reflection.c: Allocate more data structures in
16538         the image mempool.
16539
16540 2006-03-31  Miguel de Icaza  <miguel@novell.com>
16541
16542         * icall.c
16543         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
16544         build on pre glib 2.4 systems.
16545
16546 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
16547
16548         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
16549
16550         * icall.c: Fix some warnings.
16551
16552 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
16553
16554         * culture-info-table.h : regenerated.
16555
16556 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
16557
16558         * threads.c, object-internals.h, verify.c: changed the culture caching
16559         code to use a normal MonoArray for storage so the GC can keep track of
16560         them easily. Fixed bits of the cache logic, too and simplified the
16561         code.
16562
16563 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
16564
16565         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
16566         thread for non-Boehm GCs.
16567
16568 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
16569
16570         * domain.c, object.c, domain-internals.h: reduce the amount of memory
16571         needed to keep track of the data for static fields.
16572
16573 2006-03-29  Raja R Harinath  <rharinath@novell.com>
16574
16575         Fix #75172
16576         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
16577         for interface classes.  Use 'num_methods' instead.
16578         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
16579         before using '->vtable_size' field.
16580
16581 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
16582
16583         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
16584         doesn't contain managed pointers, so use a normal hashtable.
16585
16586 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
16587
16588         * reflection.c, class-internals.h, domain.c: fixed handling of types
16589         used as values for objects in custom attributes (bug #77915):
16590
16591 2006-03-24  Martin Baulig  <martin@ximian.com>
16592
16593         * class.c (mono_class_setup_fields): Added support for generic
16594         instances; fixes #77580.
16595
16596 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16597
16598         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
16599
16600 2006-03-24  Dick Porter  <dick@ximian.com>
16601
16602         * file-io.c (get_file_attributes): More stat macro breakage.
16603         Fixes bug 77759.
16604
16605 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
16606
16607         * profiler.c: added the file=filename option in the default profiler
16608         to output the profile data to filename.
16609
16610 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16611
16612         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
16613         bug #77877.
16614
16615 2006-03-22  Martin Baulig  <martin@ximian.com>
16616
16617         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
16618         allocated `MonoClassField *' in `fb->handle'.
16619
16620 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16621
16622         * class.c, image.c, metadata-internals.h: implemented new mechanism to
16623         allocate interface ID to save memory and allow better ID reuse on
16624         appdomain unload. setup_generic_vtable () removal from Martin.
16625
16626 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
16627
16628         * object.h, appdomain.c, domain.c, exception.c, icall.c,
16629         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
16630         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
16631         write barriers for reference stores with managed objects accessed with
16632         C structures in the runtime and in embedding programs.
16633
16634 2006-03-20  Raja R Harinath  <rharinath@novell.com>
16635
16636         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
16637         'interface_id' and 'max_interface_id' fields of MonoClasses
16638         representing open generic types.
16639
16640 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
16641
16642         * object.h, object.c, icall.c: added functions to deal with
16643         storing valuetypes that contain references in managed objects.
16644         * reflection.c, string-icalls.c, threads.c, marshal.c: small
16645         fixes and comments around uses of mono_array_addr ().
16646
16647 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
16648
16649         * object.h, icall.c, monitor.c: object.GetHashCode ()
16650         implementation that supports the moving garbage collector.
16651
16652 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
16653
16654         * icall.c, threads-types.h, threads.c: implemented finalizer for
16655         LocalDataStoreSlot.
16656
16657 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
16658
16659         * metadata.c (mono_type_size): Add a fixme.
16660         (mono_type_stack_size): Ditto.
16661
16662         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
16663         'type_forwarders' field.
16664
16665         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
16666         attribute from net 2.0.
16667
16668         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
16669         from class.c.
16670
16671         * class.c (mono_class_setup_fields): Fix a warning.
16672         
16673         * class.c (mono_class_from_name): Add support for assemblyref entries
16674         in the EXPORTEDTYPE table.
16675
16676         * reflection.c: Add support for handling type forwarders under net 2.0.
16677
16678         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
16679         
16680 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
16681
16682         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
16683         overwriting entries in ModuleBuild->types, also clean up the code
16684         a little. Fixes #77774.
16685
16686 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
16687
16688         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
16689         load friend assembly info when present.
16690
16691 2006-03-14  Raja R Harinath  <rharinath@novell.com>
16692
16693         Fix crasher on gtest-158.cs.
16694         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
16695         the return value if the MonoClass we want is yet in an
16696         inconsistent state.
16697         * class.c (mono_class_create_from_typedef): Add an comment
16698         explaining an order dependency between mono_class_setup_parent and
16699         mono_class_setup_mono_type.
16700
16701 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
16702
16703         * class.c: documentation updates and events bug fix.
16704
16705 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
16706
16707         * class.c: some cleanup, locking fixes.
16708
16709 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
16710
16711         * class.c: fix the generics code to setup nested
16712         type info to the instantiated type (bug #77770).
16713
16714 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
16715
16716         * marshal.c: fixed a few type correctness issues.
16717
16718 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16719
16720         * loader.c: the Set/Get/Addrtess array methods should be public.
16721
16722 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
16723
16724         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
16725         
16726         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
16727         info->wrapper.
16728
16729 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
16730
16731         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
16732
16733         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
16734
16735         * mempool.c (mono_mempool_alloc): Speed this up a bit.
16736         (mono_mempool_alloc0): Ditto.
16737
16738 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16739
16740         * socket-io.c:
16741         (create_object_from_sockaddr): it was allocating 4 extra bytes
16742         for the AF_UNIX data. Fixes bug #77747.
16743
16744 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
16745
16746         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
16747
16748 2006-03-09  Dick Porter  <dick@ximian.com>
16749
16750         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
16751         Fixes bug 76966 again.
16752
16753 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
16754
16755         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
16756         names from r57532
16757         * appdomain.c: Bumped corlib version to 48 (due to r57532)
16758
16759 2006-03-07  Martin Baulig  <martin@ximian.com>
16760
16761         * object.c
16762         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
16763
16764 2006-03-07  Martin Baulig  <martin@ximian.com>
16765
16766         * class.c
16767         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
16768         regression introduced in r56970; see gtest-252.cs.
16769
16770         * loader.c (mono_get_method_constrained): Correctly handle generic
16771         methods; see gtest-253.cs.
16772
16773 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
16774
16775         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
16776
16777 2006-03-04  Martin Baulig  <martin@ximian.com>
16778
16779         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
16780         compute the parent type at runtime, just like we're already doing
16781         it for interfaces.
16782
16783         * reflection.c
16784         (mono_reflection_bind_generic_parameters): Don't compute the
16785         parent type anymore.
16786
16787         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
16788
16789 2006-03-04  Martin Baulig  <martin@ximian.com>
16790
16791         * mono-debug-debugger.h
16792         (mono_debugger_create_notification_function): Allocate memory at
16793         runtime and return a pointer to it.
16794
16795 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
16796
16797         * assembly.c: Fix windows build.
16798         
16799         * assembly.c: Fix build.
16800
16801         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
16802
16803         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
16804         
16805 2006-03-03  Dick Porter  <dick@ximian.com>
16806
16807         * process.c
16808         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
16809         Check parameters before dereferencing them.  Fixes Aaron's part of
16810         bug 77393.
16811
16812 2006-03-03  Raja R Harinath  <rharinath@novell.com>
16813
16814         Fix performance regression.
16815         * loader.c (find_method_in_class): Add 'from_class' argument.
16816         Rename 'klass' argument to 'in_class'.  The signature is compared
16817         against the method in 'in_class', and the corresponding method is
16818         returned from 'from_class'.
16819         (find_method): Walk both 'in_class' and 'from_class' in parallel.
16820         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
16821         type definition and generic instantiation in parallel.
16822         (mono_get_method_constrained): Update to changes.
16823
16824 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
16825
16826         * threads.c: make sure the domain is correct, too when doing
16827         mono_thread_attach ().
16828
16829 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
16830
16831         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
16832         windows. Fixes #77683.
16833
16834 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
16835
16836         * object.h, *: introduced specific way to set elements of an array
16837         of references to be used as write barrier. Still need to audit the
16838         uses of mono_array_addr.
16839
16840 2006-03-01  Miguel de Icaza  <miguel@novell.com>
16841
16842         * object-internals.h: New field to cache the assmebly name, patch
16843         from Tambet Ingo (tambet@ximian.com)
16844
16845 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
16846
16847         * decimal.h, class-internals.h, metadata-internals.h,
16848         file-io.h: mark a few function declarations as internal, to
16849         reduce the number of PLT entries.
16850
16851 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16852
16853         * file-io.c: fix typo in warning message.
16854
16855 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
16856
16857         * loader.c: on unix, lookup the "*A" version of a function
16858         if charset is auto as a second option before failing.
16859
16860 2006-02-28  Raja R Harinath  <rharinath@novell.com>
16861
16862         * class.h (mono_class_inflate_generic_method): Revert to two
16863         argument version.
16864         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
16865         (mono_class_inflate_generic_method_full): Add.
16866         * class.c (mono_class_inflate_generic_method_full): Rename from
16867         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
16868         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
16869         * loader.c, reflection.c: Update to changes.
16870
16871 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
16872
16873         * icall.c: const fixes and small improvements.
16874
16875 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16876
16877         * threadpool.c: for asynchronous connect(), enable the same workaround
16878         for BSD 6 as for the Mac. Fixes bug #77637.
16879
16880 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
16881
16882         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
16883         formatted classes. Fixes #77524.
16884
16885 2006-02-24  Raja R Harinath  <rharinath@novell.com>
16886
16887         * class.c (inflate_generic_type): Add a couple more
16888         micro-optimizations.
16889         (inflate_generic_context): Don't use the 'gmethod' from
16890         'inflate_with'.
16891         (mono_class_inflate_generic_method): If the method has generic
16892         parameters, but the passed-in context doesn't have a 'gmethod',
16893         create one.  Use the possibly simplified generic instantiation
16894         from the declaring class instead of the one passed in.
16895
16896 2006-02-24  Raja R Harinath  <harinath@gmail.com>
16897
16898         Make generic method signature and method header handling lazy.
16899         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
16900         (inflate_generic_header): Likewise.
16901         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
16902         parameter to avoid inflating types.
16903         (mono_get_inflated_method): Empty out.
16904         * class.h (mono_class_inflate_generic_method): Update to changes.
16905         * loader.c (mono_get_method_from_token): Don't parse signature for
16906         generic methods, nor methods of generic classes.
16907         (mono_method_signature): Rename from 'mono_method_signature'.
16908         Inflate signature on demand.
16909         (mono_method_get_header): Inflate method header on demand.
16910         * reflection.c: Update to changes.
16911
16912 2006-02-23  Raja R Harinath  <rharinath@novell.com>
16913
16914         * metadata.c (mono_metadata_inflate_generic_inst): If the
16915         instantiation is closed, don't bother expanding it in the new
16916         context.
16917         * class.c (inflate_generic_class): If the generic instantiation
16918         doesn't change after inflation, return the argument itself.
16919         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
16920         Add bounds checks.
16921         (inflate_generic_context): If neither the generic class nor the
16922         generic method instantiations change, return the original context.
16923         * reflection.c (mono_method_get_object): Do
16924         'mono_get_inflated_method' before accessing the ->klass field.
16925         (inflate_mono_method): Don't create a MonoGenericMethod unless
16926         necessary.
16927         (inflate_method): Don't pass a constructed type as the declaring
16928         type of a methodbuilder.
16929
16930 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
16931
16932         * object.c: fix memory overwrite.
16933
16934 2006-02-22  Dick Porter  <dick@ximian.com>
16935
16936         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
16937         it doesn't work any more.
16938         (mono_threads_request_thread_dump): Fix unused variable warnings.
16939
16940 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16941
16942         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
16943         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
16944         the public header file.
16945
16946 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
16947
16948         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
16949
16950 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
16951
16952         * class-internals.h, object.c: reduce the size of MonoVTable
16953         and store the interface_offsets array at negative offsets.
16954
16955 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
16956
16957         * metadata.c: tweak table descriptors data structures to reduce
16958         size and runtime relocations.
16959
16960 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16961
16962         * marshal.c: fix some types and opcodes to be type-safe
16963         in marshaling wrappers.
16964
16965 2006-02-21  Ankit Jain  <jankit@novell.com>
16966
16967         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
16968
16969 2006-02-21  Raja R Harinath  <rharinath@novell.com>
16970
16971         * metadata.c (get_constraints): Relax debugging checks for monodis.
16972
16973 2006-02-21  Ankit Jain  <jankit@novell.com>
16974
16975         * metadata.c (mono_metadata_load_generic_params): Move the code
16976         checking for ambiguous generic params from here to mono/dis/get.c
16977         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
16978
16979 2006-02-21  Raja R Harinath  <harinath@gmail.com>
16980
16981         Fix assertion triggered when compiling nemerle.
16982         * class.c (mono_get_shared_generic_inst): Rename from
16983         get_shared_inst and make non-static.
16984         * loader.c (mono_get_shared_generic_method): New.  Used to create
16985         the MonoGenericContext-equivalent of a MonoGenericContainer.
16986         (mono_get_method_from_token): Initialize the 'context' field of
16987         the created MonoGenericContainer.
16988         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
16989         * metadata.c (get_constraints): Add sanity check.
16990         * class-internals.h: Add new internal methods.
16991
16992         * reflection.c (verify_safe_for_managed_space): New sanity check.
16993         Currently checks that owner-less generic parameters aren't allowed
16994         in managed space.
16995         (mono_type_get_object): Use it.
16996         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
16997         that are now in mono_type_get_object.
16998         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
16999
17000 2006-02-19  Raja R Harinath  <harinath@gmail.com>
17001
17002         * metadata.c (mono_type_create_from_typespec): Rename from
17003         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
17004         argument and caching of types in the generic container.
17005         (unwrap_arrays, find_generic_param): Remove.
17006         * metadata-internals.h: Update.
17007         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
17008
17009 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
17010
17011         * class.c (mono_class_get_exception_for_failure): Fix a warning.
17012
17013         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
17014         return values. Fixes #77581.
17015
17016         * class.c (mono_fnptr_class_get): Switch name and name_space.
17017
17018         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
17019         classes and add support for [In, Out] attributes.
17020         (mono_marshal_free_asany): Ditto. Fixes #77524.
17021
17022 2006-02-18  Raja R Harinath  <harinath@gmail.com>
17023
17024         * class.c (mono_class_from_generic_parameter): Make more robust to
17025         incomplete MonoGenericContainers from monodis.
17026
17027 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17028
17029         * class-internals.h: added some more exception types.
17030         * class.c, metadata.c: added a few checks to handle missing
17031         types.
17032
17033 2006-02-17  Raja R Harinath  <rharinath@novell.com>
17034
17035         Use owner-less generic-params some more.
17036         * class.c (my_mono_class_from_generic_parameter): Remove.
17037         (mono_class_from_generic_parameter): Handle null image,
17038         param->name and param->owner.
17039         (mono_class_from_mono_type): Update.
17040         (mono_class_create_from_typespec): Remove 'container' parameter.
17041         If that parameter is non-null, the result is always inflated by
17042         'mono_class_get_full' anyway.
17043         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
17044         parameter.
17045         (mono_class_get_full): Update.
17046
17047         * class.c (inflate_generic_type) [GENERICINST]: If the generic
17048         instance is not open, don't bother inflating.
17049         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
17050         parse metadata for inflated classes.
17051         (_mono_class_get): Change GenericContext* parameter to
17052         GenericContainer*.
17053         (mono_class_create_from_typespec): Likewise.  Simplify, and
17054         implement trivially.  All the cases are handled in
17055         mono_class_from_mono_type.  Don't inflate returned class.
17056         (mono_class_get_full): Delegate GENERICINST optimization to
17057         inflate_generic_type.
17058         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
17059
17060 2006-02-16  Dick Porter  <dick@ximian.com>
17061
17062         * socket-io.c (create_object_from_sockaddr): Fix typo.
17063         (create_sockaddr_from_object): Check array lengths before
17064         potentially accessing items off the end.
17065         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
17066         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
17067         (ves_icall_System_Net_Sockets_Socket_Send_internal)
17068         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
17069         length checks to avoid wraparound overflows.
17070         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
17071         contents of the array of sockets
17072         (hostent_to_IPHostEntry2)
17073         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
17074         Check return value of inet_ntop ().
17075         (addrinfo_to_IPHostEntry): Fix typo
17076
17077 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17078
17079         Type metadata parsing doesn't use generic-instantiation information.
17080         * metadata.c (mono_metadata_parse_array_full): Change
17081         MonoGenericContext* parameter to MonoGenericContainer*.
17082         (mono_metadata_parse_type_full): Likewise.
17083         (mono_type_create_from_typespec_full): Likewise.
17084         (mono_metadata_parse_mh_full): Likewise.
17085         (mono_metadata_parse_generic_inst): Likewise.
17086         (do_mono_metadata_parse_generic_class): Likewise.
17087         (do_mono_metadata_parse_type): Likewise.
17088         * metadata-internals.h: Update to changes.
17089         * class.c (mono_class_find_enum_basetype): Likewise.
17090         (mono_class_setup_fields): Likewise.
17091         (mono_class_create_from_typespec): Likewise.
17092         * loader.c (method_from_methodspec): Likewise.
17093         (mono_get_method_from_token): Likewise.
17094         (mono_method_get_header): Likewise.
17095
17096 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17097
17098         * marshal.c: handle additional GENERICINST case (patch from
17099         Thong Nguyen <tum@veridicus.com>).
17100         Fix a few cases where LDIND_I/STIND_I was used for references.
17101
17102 2006-02-16  Raja R Harinath  <rharinath@novell.com>
17103
17104         * reflection.c (mono_reflection_get_token): Remove unused variable.
17105
17106 2006-02-16  Martin Baulig  <martin@ximian.com>
17107
17108         * reflection.c (mono_reflection_get_token): Add support for fields
17109         in instantiated generic types.
17110
17111         * icall.c
17112         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
17113
17114 2006-02-15  Martin Baulig  <martin@ximian.com>
17115
17116         * icall.c
17117         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
17118         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
17119         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
17120         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
17121
17122 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17123
17124         * class.c, metadata.c, metadata.h, object.c, icall.c,
17125         marshal.c: changed mono_type_get_underlying_type () to do
17126         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
17127         Fixed handling of instantiated generic valuetypes (bug #75479).
17128
17129 2006-02-15  Raja R Harinath  <rharinath@novell.com>
17130
17131         * metadata.c (mono_metadata_decode_signed_value): Simplify.
17132         Delegate to mono_metadata_decode_value, and work on the returned value.
17133
17134         * icall.c (ves_icall_MonoType_GetGenericArguments):
17135         Add consistency check here too.
17136         
17137 2006-02-15  Ankit Jain  <jankit@novell.com>
17138
17139         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
17140         char/short etc.
17141
17142 2006-02-15  Ankit Jain  <jankit@novell.com>
17143
17144         * metadata.c (mono_metadata_decode_signed_value): New function to decode
17145         signed values, used only for representing lower bounds of arrays.
17146         (mono_metadata_parse_array_full): Use new
17147         mono_metadata_decode_signed_value to decode lower bounds.
17148
17149 2006-02-14  Martin Baulig  <martin@ximian.com>
17150
17151         * reflection.c
17152         (mono_reflection_get_token): Support "MonoGenericMethod" and
17153         "MonoGenericCMethod" and allow generic instances / methods.
17154
17155 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
17156
17157         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
17158         to obtain the terminal size using an ioctl.
17159
17160         * object.c (mono_nullable_init): Revert this as nullable reference
17161         types are not valid.
17162         (mono_nullable_box): Ditto.
17163
17164 2006-02-09  Dick Porter  <dick@ximian.com>
17165
17166         * threads.c (mono_thread_detach): Drop a reference to the thread
17167         we're detaching.
17168
17169 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
17170
17171         * object.c (mono_nullable_init): Handle nullable reference types.
17172         (mono_nullable_box): Ditto. Fixes #77446.
17173
17174 2006-02-07  Martin Baulig  <martin@ximian.com>
17175
17176         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
17177
17178 2006-02-07  Ankit Jain  <jankit@novell.com>
17179
17180         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
17181         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
17182         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
17183         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
17184         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
17185         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
17186
17187 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
17188
17189         * class.c (mono_class_create_generic): Set type_token as well.
17190
17191         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
17192         compatible with MS.
17193
17194 2006-02-02  Martin Baulig  <martin@ximian.com>
17195
17196         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
17197         has never been used so far.
17198
17199 2006-02-02  Martin Baulig  <martin@ximian.com>
17200
17201         * mono-debug-debugger.h: Changed comment at the top of this file;
17202         the header is not installed, but it's safe to #include it from
17203         within the JIT.
17204
17205         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
17206         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
17207
17208 2006-02-02  Martin Baulig  <martin@ximian.com>
17209
17210         * mono-debug.h
17211         (MonoSymbolTable): Removed the `metadata_info' field.
17212
17213         * mono-debug.c
17214         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
17215
17216         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17217         (mono_debugger_add_builtin_types): Removed.
17218         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
17219         (mono_debugger_create_notification_function): We now operate on a
17220         pre-allocated area; take a `gpointer' and return `void'.
17221
17222         * mono-debug-debugger.c
17223         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
17224         (mono_debugger_add_builtin_types): Removed.
17225
17226 2006-02-02  Martin Baulig  <martin@ximian.com>
17227
17228         * threads.c (mono_debugger_create_all_threads): New public method.
17229
17230 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17231
17232         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
17233         breaks on several platforms.
17234
17235 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
17236
17237         * assembly.c: the VS.NET build doesn't supply default values for
17238         MONO_ASSEMBLIES and MONO_CFG_DIR.
17239
17240 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
17241
17242         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
17243         helper function.
17244
17245         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
17246
17247         * loader.c (method_from_memberref): Fix a warning.
17248
17249         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
17250
17251         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
17252         with explicit layout. Fixes #77433.
17253
17254 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
17255
17256         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
17257         max_interface_id is initialized before using it. Fixes #77398.
17258         (ves_icall_Type_GetInterfaces): Ditto.
17259
17260 2006-01-30  Raja R Harinath  <rharinath@novell.com>
17261
17262         * metadata.c (mono_metadata_parse_method_signature_full): Don't
17263         allocate memory for parameter attributes when parsing memberref
17264         signatures.
17265         * loader.c (mono_loader_set_error_method_load): Don't warn.
17266         (method_from_memberref): Ensure MissingMethodException gets thrown
17267         if method is not found.  Make warning more informative.
17268
17269 2006-01-29  Raja R Harinath  <harinath@gmail.com>
17270
17271         Fix #77397
17272         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
17273         return true if is byref.
17274         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
17275         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
17276         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
17277
17278 2006-01-27  Raja R Harinath  <rharinath@novell.com>
17279
17280         Fix tests/find-method.2.il
17281         * loader.c (find_method, find_method_in_class): Remove is_inflated
17282         argument.  Revert 2006-01-18 change.
17283         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
17284         is generic, search for method in its generic definition.
17285         * class.c (mono_class_setup_vtable_general): Print generic
17286         arguments of generic types in debugging printf.
17287
17288 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
17289
17290         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
17291
17292         * threads.c (mono_threads_request_thread_dump): New helper function.
17293
17294 2006-01-25  Raja R Harinath  <rharinath@novell.com>
17295
17296         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
17297
17298 2006-01-25  Ankit Jain  <jankit@novell.com>
17299
17300         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
17301         move definition to ..
17302         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
17303         
17304 2006-01-25  Ankit Jain  <jankit@novell.com>
17305             Raja R Harinath  <rharinath@novell.com>
17306
17307         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
17308         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
17309         as necessary.
17310
17311 2006-01-25  Martin Baulig  <martin@ximian.com>
17312
17313         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
17314         `MonoDebuggerThread' into debug-debugger.c.
17315
17316 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
17317
17318         * profiler.c: fix printing of data.
17319
17320 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
17321
17322         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
17323           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
17324
17325 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17326
17327         * object.c: fix deadlock related to string interning.
17328
17329 2006-01-23  Martin Baulig  <martin@ximian.com>
17330
17331         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
17332
17333         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
17334
17335 2006-01-23  Martin Baulig  <martin@ximian.com>
17336
17337         * mono-debug.h: Moved the prototypes of some functions which are
17338         used by the JIT here from mono-debug-debugger.h.
17339
17340 2006-01-21  Martin Baulig  <martin@ximian.com>
17341
17342         * Makefile.am: Don't install mono-debug-debugger.h.
17343
17344 2006-01-21  Martin Baulig  <martin@ximian.com>
17345
17346         * mono-debug-debugger.h: Enforce the private status of this header
17347         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
17348         Moved some stuff from mono-debugger-jit-wrapper.h here.
17349
17350 2006-01-20  Raja R Harinath  <rharinath@novell.com>
17351
17352         * class.c (mono_class_from_typeref): Add a sanity test to help
17353         catch lack of assembly load/search hooks.
17354
17355 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
17356
17357         * marshal.c (emit_struct_conv): Relax the fields with same offset
17358         check even more. Fixes #77230.
17359
17360 2006-01-18  Martin Baulig  <martin@ximian.com>
17361
17362         * loader.c (find_method_in_class): Added `gboolean is_inflated'
17363         argument; if false, we compare the uninstantiated signatures.
17364         (method_from_memberref): Compare the uninstantiated signatures;
17365         fixes #76417.
17366
17367 2006-01-18  Robert Jordan  <robertj@gmx.net>
17368
17369         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
17370         Clear the weak link. Fixes bug #77170.
17371
17372         * gc.c (mono_gchandle_free):
17373         Reflect *-gc.c changes (tiny optimization).
17374
17375 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
17376
17377         * metadata.c (mono_metadata_signature_dup): Applied patch from
17378         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
17379         Fixes #77288.
17380
17381 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
17382
17383         * marshal.c (emit_struct_conv): Allow fields with the same offset when
17384         marshalling from native to managed code. Fixes #77230.
17385
17386 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17387
17388         * threadpool.c: fix problem (Mac only) when more than one asynchronous
17389         connect. Fixes bug #77020.
17390
17391 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17392
17393         * class.c: fixed id assignement for nested interfaces (bug #77275).
17394         Added also better info for --print-vtable debugging.
17395
17396 2006-01-12  Martin Baulig  <martin@ximian.com>
17397
17398         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
17399         interfaces on-the-fly; fixes #76625.
17400
17401         * class-internals.h
17402         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
17403         don't need that anymore.
17404
17405 2006-01-12  Miguel de Icaza  <miguel@novell.com>
17406
17407         * socket-io.c
17408         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17409         To avoid initing the nested_classes when not needed I turned the
17410         PeerCredData as a toplevel internal class, as it has to be shared
17411         anyways. 
17412
17413         Fixes the CASA issue.
17414
17415 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
17416
17417         * domain.c: Accessors for MonoJitInfo
17418
17419         * profiler-private.h: Add jitinfo to the end jit hook
17420
17421         * profiler.[ch]: Define new hooks, called after jitting which give
17422         the MonoJitInfo that was compiled
17423
17424 2006-01-10  Martin Baulig  <martin@ximian.com>
17425
17426         * class.c (mono_class_setup_events): Add support for generic
17427         classes; fixes #76440.
17428
17429 2006-01-06  Raja R Harinath  <rharinath@novell.com>
17430
17431         Fix #77160.
17432         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
17433         on passed-in method.
17434
17435 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
17436
17437         * object.c (mono_runtime_invoke_array): Add Nullable support.
17438
17439         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
17440
17441 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
17442
17443         * file-io.c: Don't consider sockets as directory and avoid an endless
17444         loop. Fix bug #76966.
17445
17446 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
17447
17448         * object.c (mono_nullable_init): New helper function.
17449         (mono_nullable_box): Ditto.
17450
17451         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
17452
17453         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
17454
17455         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
17456         
17457 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
17458
17459         * class.c (mono_class_is_assignable_from): Make T assignable to 
17460         Nullable<T>.
17461
17462 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
17463
17464         * appdomain.c: Bump corlib version to 46.
17465         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
17466         serialization purpose) and changed ves_icall_System_Reflection_
17467         Assembly_get_code_base signature to accept a boolean (to escape, or 
17468         not, the assembly code base).
17469
17470 2005-12-23  Dick Porter  <dick@ximian.com>
17471
17472         * icall.c: 
17473         * threads-types.h: 
17474         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
17475         CreateEvent icall now returns "created" boolean parameter.
17476
17477 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
17478
17479         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
17480         #76967.
17481
17482         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
17483         when attr_klass is an interface. Fixes #77045.
17484
17485 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
17486
17487         * marshal.c (emit_struct_conv): Fix previous patch.
17488         
17489         * marshal.c (emit_struct_conv): Add a check for fields with the same
17490         offset.
17491
17492 2005-12-20  Raja R Harinath  <rharinath@novell.com>
17493
17494         Fix regression in Mono.C5.
17495         * class.c (mono_class_create_generic): If 'klass' is an interface
17496         set up the interface offsets.
17497         (mono_class_is_assignable_from): Don't throw away generic arguments.
17498
17499 2005-12-19  Raja R Harinath  <rharinath@novell.com>
17500
17501         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
17502         type parameters.
17503
17504 2005-12-15  Raja R Harinath  <rharinath@novell.com>
17505
17506         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
17507         dead store.
17508         (do_mono_metadata_parse_generic_class): Don't pass the current
17509         generic context when parsing the type being instantiated: it
17510         cannot use it, anyway.
17511
17512         * loader.c (method_from_memberref): Don't inflate a signature if
17513         it doesn't contain any type parameters.
17514
17515 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
17516
17517         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
17518
17519 2005-12-14  Martin Baulig  <martin@ximian.com>
17520
17521         * class.c
17522         (mono_type_get_name_recurse): Don't return null for type
17523         parameters and open generic classes.
17524         (mono_class_setup_methods): Don't exclude generic instances.
17525         (mono_get_unique_iid): Use different IDs for different
17526         instantiations of the same generic type.
17527         (mono_class_setup_vtable): Only use setup_generic_vtable() for
17528         open generic instances; create a normal vtable for closed generic
17529         instances.
17530         (mono_class_setup_vtable_general): We're now also called for
17531         closed generic instances.
17532
17533         * reflection.c
17534         (mono_reflection_bind_generic_parameters): Correctly use
17535         mono_metadata_lookup_generic_inst() everywhere.
17536
17537 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
17538
17539         * object.c (mono_class_create_runtime_vtable): Call 
17540         mono_class_setup_vtable ().
17541
17542         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
17543         function.
17544         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
17545         #76959.
17546
17547         * loader.c (mono_loader_set_error_type_load): Print the type load
17548         warnings to the console so they are more visible to the user.
17549         (mono_loader_set_error_method_load): Ditto.
17550
17551         * reflection.c (ensure_runtime_vtable): Revert the last change as it
17552         is still broken.
17553         
17554         * reflection.c (ensure_runtime_vtable): Fix build.
17555
17556         * reflection.c (ensure_runtime_vtable): Disable an optimization which
17557         doesn't work in all cases.
17558
17559 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
17560
17561         * object.c (mono_array_new_full): Treat a single dimensional array
17562         with 0 lower bounds as an szarray. Fixes #76973.
17563
17564         * reflection.c (custom_attr_visible): Really fix this.
17565
17566 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
17567
17568         * reflection.c (custom_attr_visible): Allow nested public attributes
17569         as well.
17570
17571         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
17572         interface check.
17573
17574 2005-12-12  Raja R Harinath  <harinath@gmail.com>
17575
17576         * class.c (set_generic_param_owner): Delete.
17577         (mono_class_create_from_typedef): Don't set ->owner field of
17578         generic parameters to "param containers" of enclosing classes.
17579         * reflection.c (mono_reflection_initialize_generic_parameter):
17580         Likewise.
17581
17582 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
17583
17584         * reflection.c (custom_attr_visible): Fix build.
17585
17586 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
17587
17588         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
17589         private attributes.
17590         
17591         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
17592         handling of null parameter defaults.
17593
17594 2005-12-09  Raja R Harinath  <rharinath@novell.com>
17595
17596         * class.c (mono_class_from_generic_parameter): Don't set
17597         klass->generic_container.
17598         (my_mono_class_from_generic_parameter): Likewise.
17599
17600 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
17601
17602         * reflection.c (load_public_key): Fix a warning.
17603         (method_encode_code): Fix unaligned accesses.
17604
17605 2005-12-07  Martin Baulig  <martin@ximian.com>
17606
17607         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
17608
17609         * reflection.c
17610         (write_generic_param_entry): Encode our custom attrs.
17611
17612         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
17613
17614 2005-12-07  Martin Baulig  <martin@ximian.com>
17615
17616         * reflection.c (encode_new_constraint): Removed; we don't use the
17617         `NewConstraintAttribute' anymore.
17618
17619 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
17620
17621         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
17622         not fire a TypeResolve event when Assembly.GetType () is called.
17623
17624 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
17625
17626         Beginning of support for nullable types in the runtime. Parts of
17627         this patch are from Martin.
17628
17629         * appdomain.c (MONO_CORLIB_VERSION): Bump
17630
17631         * domain.c (mono_init_internal): get the nullable type
17632
17633         * class.c (mono_class_is_nullable): New method
17634         (mono_class_get_nullable_param): New mehod
17635         (mono_class_create_generic): In types T? set cast_class to T
17636
17637         * class-internals.h (MonoDefaults): new nullable default class
17638         (mono_class_get_nullable_param, mono_class_get_nullable_param):
17639         new methods.
17640
17641 2005-12-05  Raja R Harinath  <rharinath@novell.com>
17642
17643         * metadata.c (select_container): New.  Refactor code to select the
17644         appropriate GenericContainer given the type of generic parameter
17645         we are looking for.
17646         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
17647         not a MonoGenericContext.  Use select_container.  Update parameters.
17648         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
17649         and MONO_TYPE_MVAR.
17650         (unwrap_arrays): Remove duplicate tests.
17651         (find_generic_param): Rename from 'has_same_context'.  Now walks a
17652         generic instantiated class to find any arguments that are generic
17653         parameters.
17654         (mono_type_create_from_typespec_full): Use find_generic_param to
17655         avoid evicting some generic instantiations from the typespec
17656         cache.
17657
17658 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
17659
17660         * reflection.c: fixed writing of doubles on ARM FPA.
17661
17662 2005-12-02  Robert Jordan  <robertj@gmx.net>
17663
17664         * icall.c: Fixed EventInfo.ReflectedType (#76829).
17665
17666 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17667
17668         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
17669         least on SUSE 10 they are not the same (on debian, they are just the
17670         same thing).
17671
17672 2005-12-01  Raja R Harinath  <rharinath@novell.com>
17673
17674         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
17675         DeclaringType for VARs and MVARs.
17676         * class.c (set_generic_param_owner): Fix initialization of owner
17677         fields.
17678
17679 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
17680
17681         * icall.c: fixed Enum.ToObject() to correctly convert the values.
17682
17683 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17684
17685         * threadpool.c: workaround for a bug that shows up on the Mac:
17686         select()+connect() on a blocking socket is not like it should
17687         be, so we proceed to connect() in that case, wasting the I/O
17688         threadpool thread until connect succeedes. Fixes bug #75436.
17689
17690 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17691
17692         * threadpool.c: fix typo when setting file descriptor states.
17693
17694 2005-11-28  Raja R Harinath  <rharinath@novell.com>
17695
17696         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
17697         * metadata.c (mono_metadata_parse_method_signature_full): Don't
17698         create a temporary signature container.
17699         (mono_metadata_parse_generic_param): Update to changes.
17700         (mono_type_create_from_typespec_full): Update to changes.
17701         * loader.c (method_from_memberref): Don't use a
17702         MonoGenericContainer while parsing a memberref signature.
17703         (method_from_methodspec): Remove dead-store of the 'container'
17704         variable.  It's overwritten before use.
17705
17706         * metadata.c (mono_type_create_from_typespec_full): Make debugging
17707         checks tighter.
17708         (mono_metadata_parse_generic_param): Likewise.
17709         * loader.c (find_method_in_class): Does not need a
17710         MonoGenericContainer.  Use 'mono_method_signature' rather than
17711         'mono_method_signature_full'.
17712         (find_method, mono_get_method_constrained, method_from_memberref):
17713         Update to changes.
17714
17715         * metadata.c (mono_type_create_from_typespec_full): Ensure that
17716         owner-less generic-parameters are never evicted from the typespec
17717         cache.
17718
17719         * loader.c (method_from_memberref): Don't use the current context
17720         when parsing signatures.
17721         (method_from_methodspec, mono_get_method_from_token): Update to changes.
17722
17723         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
17724         side-effects in g_assert.
17725         * loader.c (mono_get_method_from_token): Resolve klass earlier so
17726         that we don't potentially lose information.
17727
17728 2005-11-26  Dick Porter  <dick@ximian.com>
17729
17730         * icall.c:
17731         * threads.c: icalls to implement basic (ie, not named)
17732         System.Threading.Semaphore.
17733
17734 2005-11-24  Dick Porter  <dick@ximian.com>
17735
17736         * process.c
17737         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
17738         Use GetProcessId() if it's available.
17739
17740 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
17741
17742         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
17743
17744 2005-11-23  Raja R Harinath  <rharinath@novell.com>
17745             Ankit Jain  <jankit@novell.com>
17746
17747         * loader.c (mono_get_method_from_token): Initialize 'method' field
17748         of all generic parameters before parsing the signature.  Remove
17749         code that "fixed"-up MVAR references.
17750
17751 2005-11-23  Ankit Jain  <jankit@novell.com>
17752
17753         * metadata.c (mono_metadata_has_generic_params):
17754         (mono_metadata_load_generic_param_constraints):
17755         (mono_metadata_load_generic_params): Move duplicate code ...
17756         (mono_metadata_get_generic_param_row): ... here. Returns the
17757         first row-id in GenericParam table for a given owner (token).
17758         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
17759         prototype.
17760
17761 2005-11-23  Raja R Harinath  <rharinath@novell.com>
17762             Ankit Jain  <jankit@novell.com>
17763
17764         * metadata.c (mono_metadata_class_equal): Pass signature_only when
17765         comparing VARs too.
17766         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
17767         type->data.generic_param only if the type is an MVAR.
17768         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
17769         leak owner-less VARs and MVARs into managed space.
17770
17771 2005-11-21  Martin Baulig  <martin@ximian.com>
17772
17773         * class-internals.h
17774         (MonoMethod): Moved the `generic_container' here from
17775         `MonoMethodNormal' since we now also need it for
17776         `MonoMethodPInvoke';
17777         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
17778         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
17779         an union containing both `MonoMethodNormal' and
17780         `MonoMethodPInvoke'.
17781
17782         * loader.c
17783         (mono_get_method_from_token): Allow implementing generic methods
17784         as interncalls.
17785
17786         * threads.c
17787         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
17788         icall.
17789
17790 2005-11-17  Dick Porter  <dick@ximian.com>
17791
17792         * icall.c: 
17793         * process.h: 
17794         * process.c: Split the Process Start_internal icall into
17795         ShellExecuteEx_internal and CreateProcess_internal, which are
17796         called depending on whether UseShellExecute is true.  Fixes bug
17797         76670.
17798
17799         * appdomain.c (MONO_CORLIB_VERSION): Incremented
17800
17801 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
17802
17803         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
17804         'msize' parameters, use the information in 'mspec' instead.
17805         (emit_object_to_ptr_conv): Ditto.
17806
17807         * marshal.c (emit_struct_conv): Handle explicit layout structs with
17808         fields out of order. Fixes #76733.
17809
17810 2005-11-17  Ankit Jain  <jankit@novell.com>
17811
17812         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
17813
17814 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
17815
17816         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
17817           bug #76575.
17818
17819 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
17820
17821         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
17822         for types with non-auto layout. Fixes #76717.
17823
17824 2005-11-16  Ankit Jain  <jankit@novell.com>
17825
17826         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
17827         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
17828         if generic_context is null.
17829           (mono_metadata_generic_param_equal): param->owner can be null.
17830           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
17831         null.
17832
17833 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
17834
17835         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
17836         the correct value.
17837
17838 2005-11-15  Martin Baulig  <martin@ximian.com>
17839
17840         * object.c (set_value): Use mono_class_from_mono_type() instead of
17841         the hack for generic instances; fixes #76136.
17842
17843 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
17844
17845         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
17846         fields.
17847
17848         * image.c (load_metadata_ptrs): Initialize the new fields.
17849
17850         * reflection.c (create_dynamic_mono_image): Ditto.
17851
17852         * reflection.c (build_compressed_metadata): Use the new fields.
17853
17854         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
17855         icall.
17856
17857         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
17858         icall.
17859         
17860 2005-11-15  Ankit Jain  <jankit@novell.com>
17861             Raja R Harinath  <harinath@gmail.com>
17862
17863         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
17864         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
17865         new per-generic_container cache if the cached MonoType's context matches
17866         the current context.
17867           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
17868         to the expected context.
17869           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
17870
17871 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
17872
17873         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
17874         we changed the signature of an icall.
17875         * icall.c: Modify to mono_double_ParseImpl return true/false 
17876         depending on the success, instead of throwing the exception. This will
17877         help us in Double.TryParse methods.
17878         
17879 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
17880
17881         * marshal.c (emit_marshal_object): Throw an exception when
17882         marshalling 'object' instead of crashing. Fixes #76696.
17883
17884 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
17885
17886         * class-internals.h: Add prototype for mono_type_get_full_name ().
17887
17888 2005-11-11  Dick Porter  <dick@ximian.com>
17889
17890         * threads.c (mono_thread_manage): Make sure the main thread has
17891         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
17892
17893 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
17894
17895         * loader.c (mono_loader_set_error_type_load): Log a warning to the
17896         console about the missing type.
17897         (mono_loader_set_error_method_load): Ditto.
17898
17899 2005-11-09  Miguel de Icaza  <miguel@novell.com>
17900
17901         * mono-config.c (mono_get_config_dir): Set the system defaults if
17902         none is specified.
17903
17904         * assembly.c (mono_set_dirs): New API entry point to set the
17905         assembly and the config directory in one call
17906
17907 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
17908
17909         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
17910         the ftnptr was created from a delegate in a domain other than the
17911         current domain. Fixes #75377.
17912
17913         * exception.h exception.c: Add mono_get_exception_not_supported ().
17914
17915 2005-11-08  Martin Baulig  <martin@ximian.com>
17916
17917         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
17918
17919 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
17920
17921         * security-manager.h: Added definitions to deal with strongname key 
17922         pairs bigger (and smaller) than 1024 bits.
17923         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
17924         adjust wrt the public key length being used.
17925
17926 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
17927
17928         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
17929           Windows build (r51396-51397).
17930
17931 2005-11-03  Martin Baulig  <martin@ximian.com>
17932
17933         * class.c (mono_class_setup_vtable_general): Also add generic
17934         methods to the vtable; fixes #76581.
17935
17936 2005-11-01  Miguel de Icaza  <miguel@novell.com>
17937
17938         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
17939         sure that we lookup GetString method from the System.Text.Encoding
17940         class, not the derived class or we get an empty method.
17941
17942         Fixed class #76612.
17943
17944 2005-10-25  Miguel de Icaza  <miguel@novell.com>
17945
17946         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
17947         if it has been previously set (embedders). 
17948
17949         Make mono_set_rootdir available also on Unix.
17950
17951 005-10-24  Robert Jordan  <robertj@gmx.net>
17952
17953         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
17954
17955 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
17956
17957         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
17958         only calls which are made to native code use this flag.
17959
17960         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
17961
17962 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
17963
17964         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
17965         Add support for FieldBuilders.
17966
17967 2005-10-29  Martin Baulig  <martin@ximian.com>
17968
17969         * mono-debug.c
17970         (mono_debug_using_mono_debugger): New public method; returns
17971         whether we're running inside the debugger.
17972
17973 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
17974
17975         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
17976         for Method/Constructor/FieldBuilders.
17977
17978 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
17979
17980         * reflection.c (module_add_cattrs): Save custom attributes for global methods
17981         and fields as well.
17982
17983 2005-10-26  Martin Baulig  <martin@ximian.com>
17984
17985         * mono-debug-debugger.c
17986         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
17987
17988 2005-10-24  Raja R Harinath  <harinath@gmail.com>
17989
17990         * icall.c (base64_to_byte_array): Don't pass an out-of-range
17991         integer to isspace.
17992
17993 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
17994
17995         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
17996         when passing valuetypes byref. Fixes #76502.
17997
17998 2005-10-19  Jackson Harper  <jackson@ximian.com>
17999
18000         * profiler.c: Don't put a . in front of types that are not in a
18001         namespace.
18002
18003 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
18004
18005         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
18006
18007 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
18008
18009         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
18010         #76436.
18011         (mono_marshal_get_ldflda_wrapper): Fix a warning.
18012
18013 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18014
18015         * assembly.c metadata-internals.h icall.c: Define an additional
18016         parameter for mono_assembly_name_parse_full, so we can avoid creating
18017         S.R.AssemblyName.Version when no version info wasn't passed.
18018         
18019 2005-10-09  Miguel de Icaza  <miguel@novell.com>
18020
18021         * class.c (mono_type_get_full_name): Reimplement method that was
18022         removed. 
18023
18024         * image.c: Some docs
18025
18026 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
18027
18028         * profiler.c (output_newobj_profile): Fix printing of Total memory
18029         on x86.
18030
18031 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18032
18033         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
18034
18035 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
18036
18037         * threads.c: remove debug output.
18038
18039 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
18040
18041         * threads.c (mono_thread_manage): Fix crashes if more than 64
18042         threads need to be aborted. Hopefully fixes #75899.
18043
18044         * assembly.c (mono_stringify_assembly_name): New helper function.
18045
18046         * class.c: Use mono_stringify_assembly_name instead of the similar
18047         static function.
18048
18049         * assembly.h assembly.c: Add support for calling a postload search 
18050         hook if an assembly cannot be loaded.
18051
18052         * appdomain.c: Register new search hooks which call the AssemblyResolve
18053         events in AppDomain. Fixes #75231
18054
18055 2005-10-07  Martin Baulig  <martin@ximian.com>
18056
18057         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
18058         methods without debug info.
18059
18060 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
18061
18062         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
18063         wrappers.
18064
18065 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18066
18067         * file-io.c: now that we return symlinks, use lstat and, when the file
18068         is a symbolic link, stat, to get the file attributes. Also avoid the
18069         conversion to/from utf16/external.
18070
18071 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
18072
18073         * class.c (mono_class_layout_fields): Compute klass->has_references
18074         correctly if an embedded valuetype is not yet initialized. Fixes
18075         #76331.
18076
18077 2005-10-04  Martin Baulig  <martin@ximian.com>
18078
18079         * metadata.c
18080         (mono_metadata_load_generic_param_constraints): New public
18081         function; splitted the constraints loading out from
18082         mono_metadata_load_generic_params().
18083
18084         * class.c (mono_class_create_from_typedef): Call
18085         mono_metadata_load_generic_param_constraints() after setting up
18086         the type and creating our parent; fixes #75329.
18087
18088 2005-10-04  Martin Baulig  <martin@ximian.com>
18089
18090         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
18091         non-dynamic parent classes.
18092
18093 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
18094
18095         * file-io.c : win32 build fix (ETXTBSY seems not found).
18096
18097 2005-10-04  Martin Baulig  <martin@ximian.com>
18098
18099         * reflection.c
18100         (mono_image_get_methodspec_token): Make the cache actually work;
18101         fixes #75974.
18102
18103 2005-10-04  Martin Baulig  <martin@ximian.com>
18104
18105         * class.c (mono_class_name_from_token): Removed the unneccessary
18106         `MonoGenericContext *' argument.
18107
18108 2005-10-04  Martin Baulig  <martin@ximian.com>
18109
18110         * loader.c
18111         (method_from_methodspec): Make the caching work again; fixes the
18112         performance regression from #76262.
18113
18114 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18115
18116         * file-io.c:
18117         * file-io.h:
18118         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
18119         GetFileSystemEntries that performs the same work but without going
18120         into io-layer, locking, etc.
18121
18122 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
18123
18124         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
18125         ThreadState_Stopped as well. Fixes #76047.
18126
18127 2005-09-29  Martin Baulig  <martin@ximian.com>
18128
18129         * class.c
18130         (inflate_generic_context): If the new context has a `gmethod', set
18131         its `container' that that gmethod's `container'.
18132
18133         * metadata.c
18134         (mono_metadata_parse_generic_param): Simplify things;
18135         `generic_container = generic_context->container;' is just fine.
18136
18137         * loader.c (method_from_methodspec): Code cleanups.
18138
18139 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
18140
18141         * decimal.c: fix warning (and let gcc generate correct
18142         code on ARM with optimizations).
18143
18144 2005-09-28  Martin Baulig  <martin@ximian.com>
18145
18146         * loader.c
18147         (method_from_memberref): Added `MonoGenericContext *class_context'
18148         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
18149         (method_from_methodspec): If we're a memberref, use the enclosing
18150         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
18151
18152 2005-09-28  Martin Baulig  <martin@ximian.com>
18153
18154         * object.c (mono_runtime_invoke_array): Added support for
18155         MONO_TYPE_GENERICINST; fixes #75917.
18156
18157 2005-09-27  Martin Baulig  <martin@ximian.com>
18158
18159         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
18160         `k->byval_arg.type' to determine the actual type.
18161
18162         * loader.c (method_from_methodspec): Removed some hacks.
18163
18164 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
18165
18166         * class-internals.h (mono_field_is_deleted): Do the test for
18167         rtspecialname before we check the actual name of the field. This
18168         prevents us from dereferencing a pointer into the string table,
18169         saving us from accessing a few pages
18170
18171         * *.c: Replace the use of {Enter,Leave}CriticalSection with
18172         macros. This will allow a deadlock debugger to easily be plugged
18173         in.
18174
18175 2005-09-27  Martin Baulig  <martin@ximian.com>
18176
18177         * loader.c (method_from_methodspec): Create a "signature"
18178         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
18179
18180 2005-09-27  Martin Baulig  <martin@ximian.com>
18181
18182         * class.c
18183         (inflate_generic_class): Correctly set the new context's
18184         container.
18185
18186         * loader.c
18187         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
18188         instead of a `MonoGenericContext *'.
18189         (mono_method_signature_full): Take a `MonoGenericContainer *'
18190         instead of a `MonoGenericContext *'.
18191
18192         * metadata.c
18193         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
18194         instead of a `MonoGenericContext *'.
18195         (mono_metadata_parse_method_signature_full): Likewise.
18196
18197 2005-09-26  Martin Baulig  <martin@ximian.com>
18198
18199         * class.c
18200         (mono_class_from_generic_parameter): Set `klass->generic_container'
18201         (mono_class_from_generic_parameter): Likewise.
18202         (mono_bounded_array_class_get): We inherit the generic container
18203         from the element class.
18204
18205         * loader.c
18206         (find_method, find_method_in_class): Take a `MonoGenericContext *'
18207         argument rather than computing it here.
18208         (method_from_memberref): Correctly set the generic context before
18209         parsing the signature.  Fixes #75681.
18210
18211 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
18212
18213         * object.c (mono_class_has_special_static_fields): Fix warnings.
18214
18215 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18216
18217         * assembly.c: Add parse_public_key function, to
18218         par the public keys. Also added mono_assembly_name_parse_full,
18219         to define it the parsed key should be freed or not.
18220         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
18221         to parse a long format assembly name.
18222         * metadata-internals.h: Keep mono_assembly_name_parse_full as
18223         private, since calling it to preserve the key requires
18224         freeing it manually.
18225         
18226 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
18227
18228         * locales.c : removed HAVE_ICU part.
18229
18230 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
18231
18232         * object.c (mono_class_create_runtime_vtable): Avoid calling 
18233         field_is_special_static if the klass has no special static fields.
18234
18235         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
18236         (MonoCachedClassInfo): Likewise.
18237
18238         * object.c (mono_class_has_special_static_fields): New helper function.
18239
18240 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18241
18242         * class.c (mono_class_create_from_typedef): Don't call 
18243         interfaces_from_typedef_full for enums.
18244         (mono_class_create_from_typedef): Compute the base types of enums directly
18245         without calling mono_class_setup_fields ().
18246         (mono_class_find_enum_basetype): New helper function.
18247
18248         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
18249         one place inside the string heap.
18250         
18251 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
18252
18253         * class.c: locking fixes, code cleanups, some docs added.
18254         Allocate some data structures in the image mempool.
18255
18256 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18257
18258         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18259         the example code.
18260         
18261 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
18262
18263         * class-internals.h, class.c, reflection.c: reduce memory taken by
18264         MonoClass.
18265
18266 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
18267
18268         * metadata.c, metadata.h, loader.h: documentation updates, code and
18269         API cleanups.
18270
18271 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
18272
18273         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
18274         the example code.
18275
18276         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
18277         page faults caused by the runtime while reading metadata.
18278
18279 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18280
18281         * socket-io.c: the field names were changed 3 months ago and no one
18282         realized until bug #76077 got filed!
18283
18284 2005-09-20  Martin Baulig  <martin@ximian.com>
18285
18286         * icall.c (assembly_icalls): Removed some unused debugger icalls.
18287
18288 2005-09-20  Martin Baulig  <martin@ximian.com>
18289
18290         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
18291         write the rank into the class entry.
18292
18293 2005-09-20  Martin Baulig  <martin@ximian.com>
18294
18295         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
18296
18297 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
18298
18299         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18300
18301         * icall.c (custom_attrs_defined_internal): New icall.
18302
18303         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
18304         function.
18305         (mono_custom_attrs_construct_by_type): New helper function.
18306
18307 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
18308
18309         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
18310         terminate the resulting string. Fixes #76123.
18311
18312 2005-09-16  Martin Baulig  <martin@ximian.com>
18313
18314         * mono-debug.c
18315         (mono_debug_add_method): Ignore inflated methods for the moment.
18316
18317 2005-09-14  Martin Baulig  <martin@ximian.com>
18318
18319         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
18320
18321 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
18322
18323         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
18324         return a success/failure indication.
18325         (mono_metadata_interfaces_from_typedef_full): Ditto.
18326         (get_constraints): Ditto.
18327
18328 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
18329
18330         * marshal.c (emit_marshal_array): Fix handling of null arrays.
18331         
18332         * marshal.c (emit_marshal_array): Add support for returning string
18333         arrays from delegates. Fixes #76063.
18334
18335         * marshal.c: Use the emit_ldloc/stloc macros where possible.
18336
18337 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
18338
18339         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
18340         icall.
18341
18342 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
18343
18344         * reflection.c icall.c: Fix after mono_get_exception_type_load
18345         signature change.
18346
18347         * assembly.c (mono_assembly_get_assemblyref): New helper function.
18348         (mono_assembly_load_reference): Use the new helper.
18349
18350         * class-internals.h (MonoLoaderError): New structure containing 
18351         information about type loading errors.
18352
18353         * class-internals.h loader.c: Add APIs to store per-thread loader
18354         error information.
18355
18356         * loader.c class.c: Set the loader error if needed.
18357
18358         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
18359
18360 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
18361
18362         * decimal.c: fixed to handle the broken ARM fp format.
18363
18364 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
18365
18366         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
18367         broken.
18368
18369 2005-09-06  Martin Baulig  <martin@ximian.com>
18370
18371         * domain.c (supported_runtimes): Added v2.0.50727.
18372
18373 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
18374
18375         * culture-info.h: reduce the size of some structures.
18376
18377 2005-09-05  Martin Baulig  <martin@ximian.com>
18378
18379         Reflect latest API changes in the August CTP.
18380
18381         * icall.c
18382         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
18383         ("MonoType.HasGenericArguments"): Removed.
18384         ("MonoMethod.BindGenericParameters"): Renamed to
18385         "MakeGenericMethod".
18386         ("MethodBuilder.BindGenericParameters"): Renamed to
18387         "MakeGenericMethod".    
18388
18389 2005-09-05  Martin Baulig  <martin@ximian.com>
18390
18391         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
18392
18393 2005-09-05  Martin Baulig  <martin@ximian.com>
18394
18395         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18396
18397         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
18398         generic_container is non-NULL.
18399
18400 2005-09-05  Martin Baulig  <martin@ximian.com>
18401
18402         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18403
18404         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
18405
18406 2005-08-29  Michal Moskal  <malekith@nemerle.org>
18407
18408         * reflection.c (encode_locals,
18409         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
18410         for large generic types.
18411
18412 2005-09-05  Martin Baulig  <martin@ximian.com>
18413
18414         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18415
18416         * class.c (mono_dup_array_type): New public method.
18417         (mono_metadata_signature_deep_dup): New public method.
18418         (dup_type): Correctly duplicate array and function types.
18419
18420 2005-09-05  Martin Baulig  <martin@ximian.com>
18421
18422         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18423
18424         * reflection.c (get_default_param_value_blobs): Handle generic types
18425         and generic methods.
18426
18427 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
18428
18429         * class.c: Fixed error reporting (method/class were inversed) for 
18430         inheritance demands.
18431         * security-manager.c|h: Added the AppDomain when calling the managed
18432         System.Security.SecurityManager.InheritanceDemand method.
18433
18434 2005-09-01  Raja R Harinath  <rharinath@novell.com>
18435
18436         * reflection.c (encode_marshal_blob): 'marshaltype' and
18437         'marshaltyperef' are alternate sources for the custom marshaler
18438         name.
18439
18440 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
18441
18442         * class.c: fix creation of array classes with rank == 1
18443         (patch by Ankit Jain <jankit@novell.com>).
18444
18445 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
18446
18447         * object.c: fix check for creating the bound data for arrays vs
18448         szarrays.
18449
18450 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18451
18452         * object.c: configuration file name is now based on the executable name,
18453         not the image name. Fixes bug #75931.
18454
18455 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
18456
18457         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
18458         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
18459
18460 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
18461
18462         * rand.c: Use wincrypt.h instead of WinCrypt.h.
18463
18464 2005-08-24  Ankit Jain  <jankit@novell.com>
18465             Raja R Harinath  <rharinath@novell.com>
18466
18467         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
18468           called by it recursively.
18469           (mono_class_init): Remove special case in pending_init handling, since it's
18470           superseded by the fix to mono_class_from_typeref.
18471
18472 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
18473
18474         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
18475         BROKEN_THREAD_START stuff.
18476
18477 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
18478
18479         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
18480         trampoline.
18481
18482         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
18483         
18484         * object.c (mono_delegate_ctor): Replace the original function address with
18485         a delegate trampoline.
18486
18487 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
18488
18489         * icall.c: add boolean argument to base64_to_byte_array and 
18490         InternalFromBase64String to control whether a whitespace-only string
18491         is allowed (or should casue a FormatException to be thrown). We need
18492         this as the behavior has changed between MS.NET 1.x and 2.0, and we
18493         to match the MS behaviour in both profiles.
18494         * appdomain.c: Bump corlib version.
18495
18496 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18497
18498         This patch implements a big portion of publisher policy
18499         support, used to bind assembly versions and redirect
18500         one assembly from version A to version B.
18501
18502         * assembly.c:
18503         New GSList loaded_assembly_bindings, for storing the cached
18504         assembly bindings.
18505         (assembly_binding_maps_name): New static function for checking if a 
18506         assembly binding information maps an assembly name.
18507         (mono_assembly_binding_info_free): New function for freeing
18508         assembly binding information resources.
18509         (get_publisher_policy_info): New static function for retrieving 
18510         assembly binding information from a MonoImage.
18511         (compare_versions): New static function for comparing an assembly
18512         binding information data and the version of an assembly name.
18513         (check_policy_versions): New static function for checking if an
18514         assembly binding info mapping an assembly name is valid for it.
18515         (mono_assembly_load_publisher_policy): New static function for
18516         loading the 'policy.major.minor.MyAssembly' image for an assembly
18517         with an assembly name 'aname'.
18518         (mono_assembly_bind_version): New static function for updating
18519         assembly redirection.
18520         (mono_assembly_apply_binding): New static function for applying
18521         assembly binding.
18522         (search_binding_loaded): New static function for searching 
18523         loaded assembly binding infos in the cache domain.
18524         (mono_assembly_load_full): Don't apply assembly binding for
18525         reflection only assemblies.
18526
18527         * metadata-internals.h: Add MonoAssemblyBindingInfo,
18528         which contains information about assembly binding. Also
18529         declare signature for mono_config_parse_publisher_policy ()
18530         function, used to retrieve pub policy info.
18531         
18532         * mono-config.c:
18533         (publisher_policy_start): New static function used to parse publisher 
18534         policy config files.
18535         (publisher_policy_parser): New static MonoParseHandler containing 
18536         the functions used when parsing config files.
18537         (mono_config_parse_publisher_policy): New function for parsing
18538         publisher policy files.
18539         
18540 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
18541
18542         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
18543
18544         * marshal.c (mono_delegate_free_ftnptr): Ditto.
18545
18546         * object.c (mono_get_addr_from_ftnptr): New helper function.
18547
18548         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
18549
18550         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
18551
18552 2005-08-19  Dick Porter  <dick@ximian.com>
18553
18554         * threads.c, threads.h, appdomain.c, appdomain.h,
18555         profiler-private.h, monitor.c, object.c, object-internals.h,
18556         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
18557         store the thread ID, so it can hold a 64 bit value if needed.
18558
18559 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
18560
18561         * reflection.c (mono_reflection_create_dynamic_method): Store the
18562         handle class into the method references as well so ldtoken works in
18563         dynamic methods.
18564
18565         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
18566         types.
18567
18568 2005-08-19  Ankit Jain <jankit@novell.com>
18569
18570         Fix #75847.
18571         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
18572           here rather than using the method signature of a arbitrary function
18573           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
18574           two arguments.
18575           Hack done with Harinath.
18576
18577 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18578
18579         * threadpool.c: disable printing stack traces when we get a exception
18580         in a threadpool thread. I need to do more testing to figure out which
18581         cases actually print this. Fixes bug #75828.
18582
18583 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18584
18585         * icall.c: there might be ignored whitespace after the last '='. This
18586         fixes length computation and bug #75840.
18587
18588 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
18589
18590         * assembly.c (mono_assembly_load_full): Consider .exe extension as
18591         well. Fixes #75809.
18592
18593         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
18594         #75784.
18595         
18596         * reflection.c (create_custom_attr_data): Ditto.
18597
18598 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
18599
18600         * locales.c, culture-info.h : removed RegionLCIDMap.
18601         * culture-info-tables.h : regenerated.
18602
18603 2005-08-16  Martin Baulig  <martin@ximian.com>
18604
18605         * class.c (mono_type_get_name_recurse): Small fix.
18606
18607 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
18608
18609         * locales.c : indentation fixie.
18610
18611 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
18612
18613         * object-internals.h,
18614           locales.h,
18615           locales.c,
18616           culture-info.h,
18617           icall.c : added RegionInfo table support.
18618         * culture-info-table.h : regenerated for region support.
18619
18620 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
18621
18622         * reflection.c (resolve_object): handle all kinds of MonoMethod
18623         including generic ones
18624
18625 2005-08-12  Ankit Jain <jankit@novell.com>
18626
18627         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
18628           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
18629
18630 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
18631
18632         * process.c: Don't close a thread handle when it's NULL. This is a
18633         workaround for bug #75733.
18634
18635 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
18636
18637         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
18638
18639 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
18640
18641         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
18642
18643 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18644
18645         * threadpool.c: if a work item in the thread pool has a callback that
18646         catches a exception, don't propagate it after invoking the callback.
18647         Fixes bug #75336.
18648
18649 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
18650
18651         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
18652
18653         * class-internals.h (MonoCachedClassInfo): Add some new fields.
18654
18655         * class.c (mono_class_init): Load field info lazily in the AOT case.    
18656
18657         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
18658
18659 2005-08-03  Ankit Jain  <jankit@novell.com>
18660
18661         Fix #75683.
18662         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
18663           PInvoke calling convention is 0.
18664
18665 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
18666
18667         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
18668         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
18669
18670 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
18671
18672         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
18673         to handle threads not started by the GC (patch by Michael Meeks
18674         <michael.meeks@novell.com>).
18675
18676 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
18677
18678         * reflection.c: Make buffer used in emitting types larger for some
18679         big generic types (patch by Michal Moskal).
18680
18681 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
18682
18683         * mono-debug.c: Fix some (not all) alignment problems.
18684
18685 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18686
18687         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
18688         Invoke mono_image_load_from_data_full passing the refonly
18689         parameter.
18690
18691         * assembly.c
18692         (mono_assembly_open_from_bundle): Add the refonly argument, 
18693         in order to pass it to other methods it calls to.
18694         (do_mono_assembly_open): Add the refonly argument, in order 
18695         to pass it to other methods it calls to.
18696         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
18697         the refonly parameter to it.
18698
18699         * image.c: Add loaded_images_refonly_hash and
18700         loaded_images_refonly_guid_hash to cache the reflection
18701         only loaded images.
18702         (mono_images_init): Initialize the hash tables used for
18703         caching the reflection only images.
18704         (load_modules): Invoke mono_image_open_full passing the refonly
18705         parameter to load the modules the correct way.
18706         (build_guid_table): Add the refonly argument, to re-build the 
18707         correct hash table.
18708         (do_mono_image_open): Added the refonly argument, in order to
18709         define it for the loaded image.
18710         (mono_image_loaded_full): New function, which receives an
18711         additional parameter to look for the image in the refonly or
18712         non-refonly section.
18713         (mono_image_loaded): Updated, using mono_image_loaded_full.
18714         (mono_image_loaded_by_guid_full): The same case that happens
18715         with mono_image_loaded_full.
18716         (mono_image_loaded_by_guid): Likewise.
18717         (register_image): Use the ref_only variable inside MonoImage
18718         to decide in which hash table store the current image.
18719         (mono_image_open_from_data_full): Rename
18720         mono_image_open_from_data to mono_image_open_from_data_full,
18721         adding the refonly argument, to define the ref_only variable 
18722         inside MonoImage.
18723         (mono_image_open_from_data): Return 
18724         mono_image_open_from_data_full.
18725         (mono_image_open_full): Rename mono_image_open to
18726         mono_image_open_full, receiving the new refonly argument,
18727         to pass it to inner methods.
18728         (mono_pe_file_open): Update this function, to open
18729         a MonoImage as a non-refonly image.
18730         (mono_image_close): Use the refonly variable inside
18731         MonoImage to remove the image from the correct caches.
18732
18733         * image.h: Add the signatures of mono_image_open_full,
18734         mono_image_open_from_data_full, mono_image_loaded_full,
18735         mono_image_loaded_by_guid_full.
18736
18737         * metadata-internals.h: Add the ref_only field to 
18738         MonoImage.
18739         
18740 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
18741
18742         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
18743         Fix the last behavior, which used to load the assemblies and
18744         extract MonoReflectionAssemblyName information, instead of
18745         extract it from the metadata tables. Needed for Reflection
18746         Only assemblies.
18747         
18748 2005-07-29  Martin Baulig  <martin@ximian.com>
18749
18750         * mono-debug-debugger.c
18751         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
18752         not initialized.
18753
18754         * mono-debug.c
18755         (mono_debug_address_from_il_offset): Check whether we have
18756         debugging support before attempting to take the lock.
18757         (mono_debug_source_location_from_address): Likewise.
18758         (mono_debug_source_location_from_il_offset): Likewise.
18759         (mono_debug_il_offset_from_address): Likewise.
18760         (mono_debug_address_from_il_offset): Likewise.
18761
18762 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
18763
18764         * class.c (mono_class_from_name_case): Add support for dynamic images.
18765         Fixes #75650.
18766
18767         * object.c (mono_class_compute_gc_descriptor): Add a workaround
18768         for #75479.
18769
18770 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
18771         
18772         * reflection.c (mono_method_get_object): Fix warning.
18773
18774 2005-07-28  Martin Baulig  <martin@ximian.com>
18775
18776         * mono-debug.c
18777         (mono_debug_add_wrapper): Also write the wrapper type.
18778
18779 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
18780
18781         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
18782         
18783         * class.c (mono_class_init): Avoid reading nested classes if the AOT
18784         data indicates the class has none.
18785
18786 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
18787
18788         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
18789         loader lock with the debugger lock. Prevents deadlocks for beagle.
18790
18791         Beagle can now run on an smp box for a weekend without any
18792         issues. Woohoo!
18793
18794 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
18795
18796         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
18797         in a module. Fixes #75629.
18798
18799 2005-07-26  Martin Baulig  <martin@ximian.com>
18800
18801         * mono-debug.c (mono_debug_add_wrapper): New static method.
18802         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
18803         interncall or a wrapper.
18804
18805         * mono-debug.h (MonoDebugWrapperData): New public typedef.
18806         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
18807         (MONO_DEBUGGER_VERSION): Bump to 51.
18808
18809         * mono-debug-debugger.c
18810         (mono_debugger_add_type): Removed this empty function.
18811         (mono_debugger_add_method): Likewise.
18812
18813 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
18814
18815         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
18816         before accessing method->slot.
18817
18818 2005-07-21  Jb Evain  <jbevain@gmail.com>
18819
18820         * reflection.c (method_encode_clauses/class): Handle filters clauses.
18821         Fixes #75010.
18822
18823 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
18824
18825         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
18826         #75587.
18827
18828 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
18829
18830         * image.h image.c: Add mono_image_get_guid () API function.
18831
18832 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
18833
18834         There were issues when multiple threads tried to load
18835         assemblies. A deadlock was created between assemblies_mutex and
18836         mono_domain_assemblies_lock. This fixes the issue by making the
18837         assembly ref counting be lock free. See bug 75586.
18838         
18839         * image.c (mono_image_close): The add ref function here was using
18840         Interlocked operations while the unref was using a mutex and a
18841         --. I don't think this was ever a bug that would be exposed in a
18842         non-pendantic way (ie, by an embedder doing a ref on one thread
18843         and an unref on another), but for the sake of correctness, this is
18844         now Interlocked.
18845
18846         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
18847         (mono_assembly_load_reference): Call mono_assembly_addref rather
18848         than touching the refcount ourselves.
18849         (mono_assembly_close): Use InterlockedDecrement to unref the
18850         assembly. Don't acquire the lock unless it is actually needed.
18851
18852 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
18853
18854         * class.c (mono_class_layout_fields): Fix calculation of has_references
18855         for generic types.
18856
18857 2005-07-12  Martin Baulig  <martin@ximian.com>
18858
18859         Applying a patch from Michal Moskal <malekith@nemerle.org>.
18860
18861         * metadata.c
18862         (mono_type_hash): Provide better hashing for generic instances.
18863         (mono_generic_inst_hash): Improve hashing.
18864         (mono_generic_class_hash): Likewise.
18865
18866         * reflection.c (mymono_metadata_type_hash): Improve hashing for
18867         generic instances.
18868
18869 2005-07-12  Martin Baulig  <martin@ximian.com>
18870
18871         * reflection.c (mono_reflection_create_runtime_class): Remove the
18872         hack for generic type definitions and non-`Run' assemblies.
18873         (mono_reflection_bind_generic_parameters): Also use
18874         `klass->wastypebuilder' to check for TypeBuilders.
18875
18876 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
18877
18878         * class.c (mono_class_layout_fields): Fix calculation of has_references
18879         for generic types.
18880
18881         * class.c (inflate_generic_class): Fix a leak.
18882         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
18883         for generic types.
18884
18885 2005-07-11  Martin Baulig  <martin@ximian.com>
18886
18887         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
18888         on error.
18889
18890 2005-07-11  Martin Baulig  <martin@ximian.com>
18891
18892         * loader.c (find_method): Also lookup in
18893         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
18894
18895 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
18896
18897         * appdomain.c (mono_domain_unload): Don't free the error message
18898         before passing it to mono_get_exception_...
18899
18900         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
18901         
18902 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
18903
18904         * threads.c: try to better guess an available RT signal (bug #75387).
18905
18906 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
18907
18908         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
18909         and CACHE_OBJECT.
18910
18911 2005-07-07  Martin Baulig  <martin@ximian.com>
18912
18913         * class.c (mono_type_get_name_full): Return NULL for
18914         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
18915         fixes #75408.
18916
18917 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
18918
18919         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
18920         exit the appdomain as well being aborted.
18921
18922         * threadpool.c: Create all threadpool threads inside the root appdomain, and
18923         change back to the root domain after calling managed code. This enables
18924         appdomains using threadpools to be unloaded.
18925
18926 2005-07-07  Martin Baulig  <martin@ximian.com>
18927
18928         * class-internals.h
18929         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
18930         into `MonoDynamicGenericClass' since we only need it for dynamic
18931         types.
18932
18933         * reflection.c (mono_class_bind_generic_parameters): We don't need
18934         to compute the `parent' here.
18935
18936 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
18937
18938         * culture-info-table.h : regenerated.
18939
18940 2005-07-06  Martin Baulig  <martin@ximian.com>
18941
18942         * icall.c
18943         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
18944
18945         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
18946
18947 2005-07-06  Martin Baulig  <martin@ximian.com>
18948
18949         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
18950         we're doing a signature-only comparision; fixes #74945.
18951
18952 2005-07-06  Martin Baulig  <martin@ximian.com>
18953
18954         * class-internals.h (MonoGenericClass): Moved some things out into
18955         a new `MonoInflatedGenericClass' type.  
18956         (MonoInflatedGenericClass): New type; the `klass' of a
18957         `MonoGenericClass' is now computed lazyly in
18958         mono_get_inflated_generic_class().      
18959
18960         * class.c (mono_get_inflated_generic_class): New public function.
18961         (mono_class_inflate_generic_method): Removed the unused
18962         `MonoClass *' argument.
18963         (setup_generic_vtable): Don't call mono_get_inflated_method() on
18964         all the methods.
18965         (mono_class_create_generic): Make this static and merge it with
18966         mono_class_create_generic_2(); we're now called automatically from
18967         mono_get_inflated_generic_class().
18968
18969         * loader.c (mono_method_signature): Call
18970         mono_get_inflated_method() here.
18971
18972 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
18973
18974         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
18975         type of fields with RVA.
18976
18977         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
18978         for this pseudo class.
18979         (my_mono_class_from_generic_parameter): Likewise.
18980         (mono_class_init): Allow interfaces to have cctors.
18981
18982 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
18983
18984         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
18985         lazily for AOT methods.
18986
18987 2005-07-05  Martin Baulig  <martin@ximian.com>
18988
18989         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
18990         returns FALSE for a successful match, not TRUE.
18991
18992 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
18993
18994         * loader.c (mono_method_get_index): Optimize this a bit.
18995
18996 2005-07-04  Martin Baulig  <martin@ximian.com>
18997
18998         * class.c
18999         (class_compute_field_layout): Move the check for generic type
19000         definitions into mono_class_layout_fields().  Fixes #74684.
19001         (mono_class_from_generic_parameter): Correctly compute
19002         `klass->parent'; fixes #75457.
19003
19004         * reflection.c (register_assembly, register_module): Make sure
19005         `domain->rejobject_hash' is already created.
19006
19007 2005-07-02  Martin Baulig  <martin@ximian.com>
19008
19009         * class-internals.h
19010         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
19011         `MonoDynamicGenericClass'.      
19012
19013 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
19014
19015         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
19016         returned by a field getter is null, since null is a valid value.
19017
19018 2005-07-01  Martin Baulig  <martin@ximian.com>
19019
19020         * reflection.c (mono_reflection_generic_class_initialize): Update
19021         the `dgclass->fields [i].parent' to the correct class.
19022         (mono_image_get_fieldref_token): Use the declaring type, not the
19023         reflected type.
19024
19025 2005-07-01  Martin Baulig  <martin@ximian.com>
19026
19027         * loader.c (find_method): Also look in the interfaces; fixes #75429.
19028
19029 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
19030
19031         * threads.c (thread_cleanup): assert that thread != NULL
19032         (wait_for_tids_or_state_change): We were using the wrong variable
19033         when accessing wait->threads. `i' was always out of the bounds of
19034         the array.
19035
19036 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19037
19038         * loader.c: map user32 and kernel32 to libMonoSupportW
19039
19040 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
19041
19042         * appdomain.c (unload_thread_main): Mark this as WINAPI.
19043
19044 2005-06-28  Martin Baulig  <martin@ximian.com>
19045
19046         * loader.c (method_from_methodspec): Fix #75334.
19047
19048 2005-06-28  Martin Baulig  <martin@ximian.com>
19049
19050         Fix #74953 - Arrays now implement the generic IList<T> interface
19051         on the 2.0 platform.
19052
19053         * class-internals.h (MonoDefaults): Added `generic_array_class'.
19054
19055         * reflection.c (mono_class_bind_generic_parameters): New public
19056         function; similar to mono_reflection_bind_generic_parameters(),
19057         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
19058
19059         * domain.c (mono_init_internal): Try to initialize.
19060         `mono_defaults.generic_array_class' here; this'll only succeed if
19061         we're using the 2.0 corlib.
19062
19063         * icall.c
19064         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
19065         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
19066         (mono_lookup_internal_call): Added support for nested classes.
19067
19068         * loader.c
19069         (mono_get_method_from_token): Set `result->signature->pinvoke' if
19070         we're an interncall and have generic arguments.
19071
19072         * class.c
19073         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
19074         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
19075         instance of System.Array.InternalArray<T> for arrays, so they
19076         implement the generic IList<T> interface.
19077
19078 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
19079
19080         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
19081         (chastamar@yahoo.com). Fixes #75374.    
19082
19083 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
19084
19085         * culture-info-table.h: regenerated.
19086
19087 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19088
19089         * icall.c: handle spaces correctly for base64 strings.
19090
19091 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
19092
19093         * *.c: Kill some warnings.
19094
19095 2005-06-23  Duncan Mak  <duncan@novell.com>
19096
19097         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
19098         that this builds on Solaris 10 (x86).
19099
19100 2005-06-23  Martin Baulig  <martin@ximian.com>
19101
19102         * class.c
19103         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
19104         generic type definitions.
19105
19106 2005-06-23  Martin Baulig  <martin@ximian.com>
19107
19108         Fix #75331.
19109
19110         * metadata.c (mono_class_get_overrides): Renamed to
19111         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
19112         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
19113         pass it to mono_get_method_full().
19114
19115 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
19116
19117         * reflection.c (mono_reflection_create_runtime_class): take the
19118         mono_domain_lock in this method. Prevents deadlocks
19119
19120 2005-06-22  Martin Baulig  <martin@ximian.com>
19121
19122         * loader.c (method_from_methodspec): Fix #75330.
19123
19124 2005-06-22  Martin Baulig  <martin@ximian.com>
19125
19126         * reflection.c (type_get_qualified_name): Use
19127         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
19128         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
19129         argument; use it if we don't have an assembly name.
19130
19131 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
19132
19133         * object.c: In mono_message_init, set "copy out" flag for in
19134         parameters with the [Out] flag.
19135
19136 2005-06-21  Martin Baulig  <martin@ximian.com>
19137
19138         * class.c
19139         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
19140         and MONO_TYPE_PTR.
19141
19142 2005-06-21  Martin Baulig  <martin@ximian.com>
19143
19144         * class.c (mono_class_init): Don't initialize `class->fields' for
19145         generic instances since they're initialized again in
19146         compute_field_layout(). 
19147         (compute_field_layout): Set the field's `generic_info' here; fix
19148         #75320. 
19149
19150 2005-06-21  Martin Baulig  <martin@ximian.com>
19151
19152         * class-internals.h
19153         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
19154
19155         * metadata.c (mono_metadata_generic_method_equal): Also
19156         distinguish the `generic_class'; fixes #75334.
19157
19158 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19159
19160         * domain.c:
19161         * appdomain.c:
19162         * domain-internals.h:
19163         * reflection.c: 'domain_assemblies' field is now protected by its own
19164         lock. Don't call into managed code to run the AssemblyLoad event if we
19165         now there are no registered delegates for it.
19166
19167 2005-06-20  Martin Baulig  <martin@ximian.com>
19168
19169         * class.c (mono_class_is_assignable_from): Use a custom version of
19170         mono_class_has_parent() to make things work for generic instances;
19171         fix #75300.
19172
19173 2005-06-20  Martin Baulig  <martin@ximian.com>
19174
19175         * loader.c (method_from_methodspec): Apply a patch from
19176         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
19177
19178 2005-06-20  Martin Baulig  <martin@ximian.com>
19179
19180         * class.c (mono_class_init): Reverted Zoltan's last change; it
19181         breaks generics.
19182
19183 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
19184
19185         * threads.c (wait_for_tids_or_state_change): Add missing locking.
19186
19187 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19188
19189         * socket-io.c: fix the index in the socket array for writable/error
19190         sockets. Fixes bug #75306.
19191
19192 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
19193
19194         * class.c (mono_class_init): Allow interfaces to have static ctors.
19195
19196 2005-06-17  Martin Baulig  <martin@ximian.com>
19197
19198         * loader.c (method_from_methodspec): Use `context->container' when
19199         parsing the `gmethod->inst'.
19200
19201 2005-06-17  Martin Baulig  <martin@ximian.com>
19202
19203         * class.c (mono_type_get_name_recurse): Don't add the assembly
19204         name for type arguments.
19205
19206 2005-06-15  Martin Baulig  <martin@ximian.com>
19207
19208         * reflection.c (mono_image_get_inflated_method_token): Encode
19209         correct klass; fixes #75260.
19210
19211 2005-06-13 Michal Moskal <malekith@nemerle.org>
19212
19213         * icall.c: Make GetCorrespondingMethod/Constructor take
19214         MonoReflectionMethod method not MonoMethod. Removed
19215         MonoType.GetCorrespondingField, and make
19216         MonoGenericType.GetCorrespondingField take name not
19217         MonoClassField.
19218
19219 2005-06-13  Michal Moskal <malekith@nemerle.org>
19220
19221         * reflection.c (field_encode_signature, encode_locals):
19222          Make sizes of buffers for types larger (for big generic types).
19223          (create_generic_typespec,
19224          mono_reflection_sighelper_get_signature_local,
19225          mono_reflection_sighelper_get_signature_field):
19226          Add asserts for too small buffers.
19227
19228 2005-06-15  Martin Baulig  <martin@ximian.com>
19229
19230         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
19231         if our parent is not a dynamic type.
19232
19233 2005-06-15  Martin Baulig  <martin@ximian.com>
19234
19235         * class-internals.h (MonoTypeNameFormat): New enum.
19236
19237         * class.c
19238         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
19239         (mono_type_get_full_name): Removed.
19240         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
19241         argument instead of the boolean's.
19242
19243         * icall.c (ves_icall_System_MonoType_getFullName):
19244         Added `gboolean assembly_qualified'.    
19245
19246         * reflection.h
19247         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
19248
19249         * reflection.c (mono_reflection_parse_type): Parse the new type
19250         name format.
19251
19252 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19253
19254         * icall.c: no need to convert from utf16 to utf8 and then back again
19255         after the call to GetLogicalDrives.
19256
19257 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19258
19259         * icall.c: frombase64. Fix problems exposed by new tests.
19260
19261 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19262
19263         * icall.c: added internal calls for converting char [] and strings in
19264         base64 into byte [].
19265
19266 2005-06-10  Martin Baulig  <martin@ximian.com>
19267
19268         * class.c (mono_class_create_generic_2): Read the nested classes
19269         from the metadata rather than from `gklass->nested_classes' since
19270         `gklass' might not be initialized yet.
19271
19272 2005-06-09  Duncan Mak  <duncan@novell.com>
19273
19274         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
19275         all public headers. Fixes #74919.
19276
19277 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
19278
19279         * domain.c: The key for proxy_vtable_hash is now a pointer
19280         array. Added new GHashFunc and GCompareFunc functions for this.
19281
19282         * class.h: The list of interfaces in MonoRemoteClass is known in
19283         advance and can't grow (we create a new MonoRemoteClass if needed),
19284         so now the interface array can be allocated together with
19285         MonoRemoteClass.
19286         
19287         * object.c: Added a new method create_remote_class_key.
19288         Fixed mono_remote_class so it does not depend on
19289         mono_upgrade_remote_class.
19290         Removed extend_interface_array.
19291         Added new method clone_remote_class(), which makes a copy of a remote
19292         class and adds a new interface or class to it.
19293         mono_upgrade_remote_class() now creates a new remote class (or gets
19294         it from the cache) if an vtable upgrade is needed. In this way
19295         we make sure that other objects sharing the same remote class
19296         don't get the new vtable with unwanted interfaces.
19297         
19298         * object-internals.h:
19299         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
19300         
19301         * marshal.c: Track changes in mono_upgrade_remote_class().
19302
19303 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
19304         * icall.c: Add runtime methods for obtaining members of inflated
19305         class, which were created from supplied non-inflated members. It
19306         is used in internal Get{Method,Constructor,Field} methods in
19307         System.Type
19308
19309 2005-06-09  Martin Baulig  <martin@ximian.com>
19310
19311         * reflection.c
19312         (mono_reflection_bind_generic_method_parameters): Fix #75169.
19313
19314 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19315         * reflection.c (mono_image_basic_init): Define
19316         Version in MonoDynamicAssembly. 
19317         
19318 2005-06-08  Martin Baulig  <martin@ximian.com>
19319
19320         Fix #75136.
19321
19322         * loader.c
19323         (mono_method_signature_full): New public method; takes a
19324         `MonoGenericContext *'.
19325         (find_method): Use mono_method_signature_full() and pass the
19326         klass'es context to it.
19327
19328         * class.c (mono_class_is_inflated_method): Use
19329         mono_method_signature_full() and pass the context to it.
19330
19331 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
19332
19333         * object.c: add proper locking in mono_remote_class_vtable(),
19334         fixes possible memory corruption.
19335
19336 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
19337
19338         * marshal.c (mono_remoting_marshal_init): set
19339         initialized after initialization.
19340
19341 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
19342
19343         * locales.c : hush.
19344
19345 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
19346
19347         * object.c (extend_interface_array): fix really silly
19348         memory corrupting / comparison bug.
19349
19350 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19351
19352         * reflection.c: Functions added to support the creation
19353         of CustomAttributeData, which includes Attribute data
19354         used by ReflectionOnly methods.
19355
19356         * reflection.h:  mono_reflection_get_custom_attrs_data and
19357          mono_custom_attrs_data_construct added (functions exposed).
19358
19359          * icall.c: Added mono_reflection_get_custom_attrs_data
19360          as icall.
19361         
19362 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
19363
19364         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
19365         lupus's request.
19366
19367 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
19368
19369         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
19370
19371         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
19372         dynamic DllImportAttribute.
19373
19374         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
19375         dynamic DllImportAttribute.
19376
19377         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
19378         Fixes #75162.
19379
19380 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19381
19382         * threads.c: avoid segfault when an unstarted thread is aborted.
19383
19384 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
19385
19386         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
19387         Returns the name and version of the runtime for reporting.
19388
19389 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19390
19391         * appdomain.c: bump corlib version.
19392         * object-internals.h: new field in MonoReflectionAssembly.
19393
19394 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19395
19396         * object-internals.h: Carlos forgot to add this field.
19397
19398 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19399
19400         * icall.c: Added create_version to create instances
19401         of Version of MonoReflectionAssemblyName. This change helps
19402         the AssemblyName tests to keep running fine.
19403         
19404 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
19405   
19406         * object.c (mono_method_return_message_restore): A somehow less
19407         intrusive fix for #75138.
19408
19409 2005-06-03  Raja R Harinath  <rharinath@novell.com>
19410
19411         * object.c (mono_method_return_message_restore): Fix computation
19412         of expected number of out args.
19413
19414 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
19415
19416         * reflection.c (mono_image_get_method_info): Fix the case when the
19417         charset is empty.
19418
19419 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
19420
19421         * object.c: Added missing null check in
19422           mono_method_return_message_restore.
19423
19424 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
19425
19426         * reflection.c (mono_image_get_method_info): Handle the case when
19427         dllentry is empty.
19428
19429 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
19430
19431         * object.c: When creating the vtable for a proxy, take into account
19432         all inherited interfaces, not only the ones registered in
19433         iclass->interfaces. This fixs bug #74996.
19434         Also, in mono_method_return_message_restore, verify that the array
19435         of out args has the expected lengh.
19436
19437 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19438
19439         * socket-io.c: update the timeout in Poll when the call is interrupte.
19440
19441 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19442
19443         * socket-io.c: support abort/suspend in Select_internal after last
19444         change.
19445
19446 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19447
19448         * threadpool.c: remove warning.
19449
19450 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19451
19452         * icall.c:
19453         * socket-io.[ch]: Select_internal uses poll() now when available, thus
19454         removing the 1024 limit from select(). Runtime part of the fix for
19455         bug #71203.
19456
19457 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19458
19459         * socket-io.c: when resolving the addresses for the same
19460         host returned by gethostname(), get the local IPs from the interface
19461         list. Loopback addresses are discarded if the are interfaces up with
19462         non-loopback ones. Fixes bug #63265.
19463
19464 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
19465
19466         * appdomain.c, verify.c, object-internals.h, reflection.c:
19467         bumped corlib number to 36, and added new extra_flags field
19468         to ReflectionMethodBuilder and friends.  Fixes #75060.
19469
19470 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
19471
19472         * gc.c: register a new weak link only if the object is non-null
19473         (fixes bug#75047).
19474
19475 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
19476
19477         * culture-info.h : short time pattern too.
19478
19479 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
19480
19481         * culture-info.h : expand long time pattern string length.
19482
19483 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
19484
19485         * culture-info-table.h : update (more French date format; #72788).
19486
19487 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
19488
19489         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
19490         the method is static. Fixes #75029.
19491
19492 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
19493
19494         * reflection.c: Update the table_idx field of method builders after
19495         saving the module, since it can change. This is a workaround for
19496         bug #74914. 
19497
19498 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
19499
19500         * culture-info-table.h : update (additional French date format).
19501
19502 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
19503
19504         * icall.c (ves_icall_type_Equals): Revert last change.
19505         
19506         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
19507
19508         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
19509
19510 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
19511
19512         * class-internals.h: Added executioncontext_class field to 
19513         MonoDefaults structure.
19514         * domain.c: Cache System.Threading.ExecutionContext class in 
19515         mono_defaults.
19516         * object.c: Capture the ExecutionContext for asynchroneous calls in
19517          mono_async_result_new.
19518         * object-internals.h: Added execution_context and original_context 
19519         fields to MonoAsyncResult. Added execution_context to MonoThread.
19520         * security-manager.c|.h: Added mono_get_context_capture_method to 
19521         return the capture method (if required by the security manager or by
19522         the framework version used).
19523         * threadpool.c: Apply capture (if present) ExecutionContext in 
19524         mono_async_invoke and revert to original context after it completes.
19525
19526 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
19527
19528         * culture-info-table.h : updated (real hacky solution for zh-CHT).
19529
19530 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
19531
19532         * culture-info-table.h : zh-CHT related workaround.
19533
19534 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
19535
19536         * marshal.c (emit_marshal_custom): Add some error checking and call the
19537         methods in the ICustomMarshaler interface. Fixes #74875.
19538         
19539         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
19540         native->managed wrappers.
19541
19542 2005-05-12  Martin Baulig  <martin@ximian.com>
19543
19544         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
19545         here and use the loader lock.
19546
19547         * mono-debug.c: Properly lock when the debugger is not attached.
19548         (mono_debug_init): Release the initial lock if we're not running
19549         in the debugger.
19550
19551 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
19552
19553         * marshal.c (emit_marshal_custom): Pass through NULL values without
19554         calling the custom marshalling routines.
19555
19556         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
19557         conversion in structures. Fixes #74882.
19558
19559 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
19560
19561         * culture-info-table.h : zh-* cultures were missing.
19562
19563 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
19564
19565         * threads.c: Added a new event background_change_event which is signaled
19566         when a thread changes its background mode.
19567         Moved here several checks previously done in managed code. The checks
19568         require the thread lock, and using the thread lock in managed code
19569         can result in deadlocks.
19570         Merged Start_internal and Thread_internal into a single method. Now 
19571         Thread_internal does all work of creating and starting a thread.
19572         Added icalls for setting and getting the state of the object. Moved from
19573         managed code to avoid locking there.
19574         Added wait_for_tids_or_state_change() which is called instad of
19575         wait_for_tids when waiting for non-backround threads to end. This method
19576         will return if one of the threads ends or the background_change_event
19577         is signaled.
19578         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
19579         the background mode. This method signals the background_change_event
19580         event.
19581         * icall.c:
19582         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
19583         removed Start_internal.
19584         
19585 2005-05-11  Martin Baulig  <martin@ximian.com>
19586
19587         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
19588         to order of some fields to get proper alignment on 64-bit machines.
19589
19590 2005-05-11  Martin Baulig  <martin@ximian.com>
19591
19592         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
19593         changes as they're broken and completely fuck up the debugger.
19594
19595         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
19596
19597 2005-05-10  Martin Baulig  <martin@ximian.com>
19598
19599         * reflection.c (mono_reflection_generic_class_initialize): Don't
19600         call mono_class_setup_parent() here.
19601
19602 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19603
19604         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
19605         send/receive timeout use an integer in milliseconds. We were using a
19606         struct timeval.
19607
19608 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19609
19610         * locales.c:
19611         (internal_get_cultures): reserve the first slot of the array for the
19612         InvariantCulture, which will be filled in managed code.
19613
19614 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
19615
19616         * reflection.c (mono_image_fill_module_table): Initialize the
19617         GENERATION field as well.
19618
19619 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19620
19621         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
19622         Monitor.Enter on the object.
19623
19624 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
19625
19626         * threads.c: Enable the wait for running threads when exiting.
19627         * icall.c: Suspend all threads before exiting.
19628
19629 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
19630
19631         * assembly.c (mono_assembly_load_reference): Fix warning.
19632
19633 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19634
19635         * threadpool.c: changed the default number of threads per cpu. From now
19636         on, the default will be 20 + (5 * number of cpus) instead of 50.
19637
19638 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
19639
19640         * loader.c (mono_method_get_signature_full): Add locking here.
19641
19642 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
19643
19644         * appdomain.c: Moved methods for parsing and freeing assembly
19645         names to assembly.c.
19646         * assembly.c, domain-internals.h: Created public methods for parsing
19647         assembly names. Fixed mono_assembly_load_with_partial_name:
19648         it now finds the best match, taking into account the version,
19649         token and culture specified in the partial name. Also return
19650         the latest version if no version information is specified.
19651
19652 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
19653
19654         * threadpool.c: replace check for SocketAsyncCall class.
19655
19656 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19657
19658         * threadpool-internals.h:
19659         * Makefile.am: added threadpool-internals.h
19660
19661         * threadpool.c: call mono_unhandled_exception on exceptions not handled
19662         that happen in threadpool threads (tested on MS).
19663         (mono_thread_pool_remove_socket): new function that dispatch any pending
19664         AIO call on a socket that is closing. By now only epoll really needs it,
19665         as select/poll wake up when the socket closes.
19666
19667
19668         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
19669
19670 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
19671
19672         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
19673
19674 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
19675
19676         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
19677
19678 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
19679
19680         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
19681         has an abort request, convert it into a suspend request.
19682
19683 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
19684
19685         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
19686         warning for the usage of `UnmanagedFunctionPointerAttribute' which
19687         is not supported yet.
19688
19689 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19690
19691         * image.c: register assemblies loaded from data (bundles) in the loaded
19692         assemblies hash. Fixes bug #74772.
19693
19694 2005-04-29  Martin Baulig  <martin@ximian.com>
19695
19696         * class.c (mono_type_get_name_recurse): Update to the new naming
19697         schema from the latest .NET 2.x beta2.
19698         (mono_class_setup_vtable_general): If we're a generic instance,
19699         copy the vtable from our generic type definition and inflate all
19700         the methods in it.
19701
19702         * loader.c (find_method): Update to the new naming schema from the
19703         latest .NET 2.x beta2.
19704
19705 2005-04-29  Raja R Harinath  <harinath@gmail.com>
19706
19707         * class.c (mono_class_init): Add a mono_loader_unlock to the
19708         #74734 fix.
19709
19710 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
19711
19712         * icall.c (ves_icall_System_Environment_Exit): Remove the 
19713         suspend_all_other_threads () call for the time being, since it can hang.
19714
19715         * threads.c (mono_thread_manage): Similarly, disable the waiting for
19716         the background threads to exit, since it can also hang.
19717
19718         * class.c (mono_class_init): Applied patch from Ankit Jain 
19719         (radical@gmail.com). Avoid pending init errors when a field refers
19720         to a nested class using a typeref. Fixes #74734.
19721
19722         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
19723         this for dynamic modules.
19724
19725 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19726
19727         * threads.c: don't wait for threads that are in the process of aborting
19728         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
19729         and waiting for background threads to finish. This makes xsp and
19730         mod-mono-server exit without random length delays and/or hangs.
19731
19732 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19733
19734         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
19735
19736 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
19737
19738         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
19739         dynamic types to prevent infinite loops. Fixes #74727.
19740
19741         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
19742         ..._is_assignable_to.
19743
19744 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
19745
19746         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
19747
19748 2005-04-25  Martin Baulig  <martin@ximian.com>
19749
19750         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
19751
19752         * domain.c
19753         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
19754
19755         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
19756
19757         * reflection.c (build_compressed_metadata): Set metadata header
19758         version to 2.0.
19759
19760 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
19761
19762         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
19763         number into an integral and a decimal part. Fixes #70473.
19764
19765         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
19766
19767 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
19768
19769         * culture-info-table.h : reflected the latest locale-builder output.
19770
19771 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19772
19773         * threadpool.c: check for SuspendRequested too when deciding if
19774         mono_thread_interruption_checkpoint should be called.
19775
19776 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19777
19778         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
19779         * threads.c: remove interruption_mutex and use Interlocked instead. When
19780         suspending all the threads, wait for all the suspended events at once.
19781         If we're shutting down and get an APC that is going to be queued,
19782         call mono_thread_execute_interruption immediately, as the thread might
19783         be sleeping on a pthread condition or mutex.
19784
19785         * icall.c: call mono_runtime_set_shutting_down before suspending the
19786         threads.
19787
19788         Fixes bug #74693. And now xsp is happier when exiting.
19789
19790 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
19791
19792         * loader.c (mono_stack_walk): Fix #74690.
19793
19794 2005-04-22  Martin Baulig  <martin@ximian.com>
19795
19796         * mono-debug.h (MonoDebugMethodJitInfo): Added
19797         `MonoDebugMethodJitInfo *jit'.
19798
19799         * mono-debug.c (mono_debug_read_method): Cache the
19800         MonoDebugMethodJitInfo in `address->jit'.
19801         (mono_debug_free_method_jit_info): New public method.
19802
19803 2005-04-22  Martin Baulig  <martin@ximian.com>
19804
19805         * class.c (mono_class_is_assignable_from): Disallow
19806         type parameter -> interface.
19807
19808 2005-04-21  Dick Porter  <dick@ximian.com>
19809
19810         * threads.c (mono_thread_create): Turn an assertion into an error.
19811
19812 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
19813
19814         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
19815         
19816         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
19817         Fix some gcc 4.0 warnings.
19818
19819 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
19820
19821         * file-io.c: fix alt dir separator char on unix systems
19822         and cleanup (fixes bug #71214).
19823
19824 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
19825
19826         * marshal.c: Use CALLVIRT instead of CALL when dispatching
19827         a call to a remote domain, since the method may be an
19828         interface method in the client domain. This fixes bug #74192.
19829
19830 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19831
19832         * threadpool.c: recv/send are now performed before going back to managed
19833         code to save one transition.
19834
19835 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19836
19837         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
19838
19839         * metadata/threadpool.c: removed hack to workaround the bug above.
19840
19841         Fixes bug #74618.
19842
19843 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
19844
19845         * reflection.c reflection.h: Fix handling of parameter defaults in
19846         dynamic methods. Also fixes handling of parameter attributes.
19847         Fixes #74609.
19848
19849         * mono-debug.c (mono_debug_close_image): Fix warning.
19850
19851 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19852
19853         * socket-io.h: replaced old unused field with new 'blocking'.
19854         * threadpool.c: restore socket blocking state on windows(tm).
19855
19856 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
19857
19858         * icall.c: don't return the codebase in the AssemblyName[] returned by
19859         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
19860         * object-internals.h: Removed FIXME (fields were presents) and fixed
19861         versioncompat declaration.
19862
19863 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19864
19865         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
19866         not closed, so don't cleanup when it happens.
19867
19868 2005-04-13  Chris Toshok  <toshok@ximian.com>
19869
19870         * mono-debug-debugger.h: change prototype for
19871         mono_debugger_lookup_type.
19872
19873         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
19874         this function, although it should probably be named
19875         mono_debugger_init_type.
19876
19877 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19878
19879         * threadpool.c: fix non-AIO case.
19880
19881 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
19882
19883         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
19884         the built-in profiler to measure just JIT compilation times.
19885
19886 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19887
19888         * threadpool.c: the epollfd might be closed by another thread at
19889         any time, so ignore EBADF at treat it as a "we're closing" sign.
19890
19891 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19892
19893         * threadpool.c: release the semaphores with a count equals to the number
19894         of working threads in both IO and regular pools. Fixed typo that messed
19895         up the count of IO pool threads. Don't initialize the pipe handles if
19896         we're using epoll.
19897
19898 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19899
19900         * threadpool.c: some systems don't like a NULL when deleting the socket
19901         from epoll.
19902
19903 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19904
19905         * threadpool.c: fix semaphore allocation.
19906
19907 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19908
19909         * threadpool.c: added epoll() based implementation for asynchronous IO
19910         that is used instead of the default poll() when available.
19911         It can be disabled by setting MONO_DISABLE_AIO.
19912
19913 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19914
19915         * threadpool.c: windows needs 'closesocket' and instead of returning
19916         0 when the stream is closed while in select, it returns -1. Fixes bug
19917         #74573.
19918
19919 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
19920
19921         * class.c (class_compute_field_layout): Fix the regression caused by
19922         the previous try.
19923
19924 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19925
19926         * threadpool.c: separate pool for socket async. IO.
19927         * threadpool.h: mono_max_worker_threads is not a global any more.
19928
19929 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
19930
19931         * class.c (class_compute_field_layout): Fix #74549.
19932
19933 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19934
19935         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
19936         use 2 connected sockets instead.
19937
19938 2005-04-08  Miguel de Icaza  <miguel@novell.com>
19939
19940         * mono-config.c: Add new entry point for mkbundle
19941         mono_config_parse_memory. 
19942
19943 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19944
19945         * threadpool.c: removed another unused function.
19946
19947 2005-04-08  Ankit Jain  <radical@corewars.org>
19948
19949         * reflection.c (get_default_param_value_blobs): Add 'types'
19950         parameter to get the types encoded in the constant table.
19951         (mono_param_get_objects): Use the type from the constant table,
19952         not the type of the parameter, when creating default values.
19953         Handle null default values correctly.
19954
19955 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19956
19957         * file-io.c:
19958         * file-io.h:
19959         * threadpool.c:
19960         * threadpool.h:
19961         * icall.c:
19962         * socket-io.c: removed dead code for async IO.
19963
19964 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19965
19966         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
19967
19968         * threadpool.c: intercept socket async. calls and pass them to a thread
19969         that is polling and dispatching the job items to the threadpool as
19970         socket become ready. Fixes bugs #71217, #71933.
19971
19972         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
19973         between char and short/ushort arrays.
19974
19975         * socket-io.c: remove dead code.
19976
19977 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
19978
19979         * locales.c,
19980           icall.c : removed InternalToUpper_Comp() and
19981           InternalToLower_Comp().
19982
19983 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
19984
19985         * char-conversions.h : The tables were incorrectly generated. Should
19986           be generated against invariant culture.
19987
19988 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
19989
19990         * object.c (mono_runtime_invoke_array): Fix return value when 
19991         passing pre-created valuetype objects to ctors.
19992
19993         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
19994         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
19995         Fixes #74338.
19996
19997 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
19998
19999         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
20000         only used with --security and hides the wrong corlib version error.
20001
20002 2005-03-30  Joshua Tauberer  <tauberer@for.net>
20003
20004         * class.c: Changed mono_class_name_from_token so that types
20005         outside of a namespace don't have an initial period.  Improved
20006         the g_warning message used in _mono_class_get when loading
20007         fails.
20008         * assembly.c: In mono_assembly_load_reference, when an assembly
20009         can't be found, "No such file or directory" is misleading and
20010         unhelpful because a few paths were checked for the presence of
20011         the assembly.  When that happens (ENOENT), display a nicer
20012         message indicating the directories that were searched.  In all
20013         cases, the warning is made easier to read for non-hackers.
20014
20015 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
20016
20017         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
20018         project/solution.
20019         * appdomain.h|domain.c: Removed inline from functions.
20020         * appdomain.c: Reduced warnings when compiling on windows.
20021         * icall.c: Fixed output_debug declaration to gunichar2*.
20022         * mono-config.c: Reduced warnings when compiling on windows.
20023         * rand.c: Added missing "windows.h". Added missing return value.
20024         * rawbuffer.c: Added missing winsock2.h for windows.
20025         * sysmath.h: Added mono-compiler.h header to allow/ease 
20026         compilation with non-GCC compilers.
20027         * threads.c: Fixed declarations to compile with VS.NET C compiler.
20028         Removed cast warnings.
20029
20030         Adapted from the work of J Lothian (for VC6).
20031
20032 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
20033
20034         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
20035         from default_path.
20036
20037 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
20038
20039         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
20040         the 2.0 profile.
20041
20042 2005-03-27  Raja R Harinath  <harinath@gmail.com>
20043
20044         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
20045         has to be in $(exec_prefix).  $(prefix) is for arch-independent
20046         stuff, and it would probably use $(prefix)/share rather than
20047         $(prefix)/lib.
20048
20049 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20050
20051         * console-io.c: added 2 includes that might be missing.
20052
20053 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
20054
20055         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
20056         profile.
20057
20058         * reflection.c (create_custom_attr): Allocate the params array using
20059         alloca so it gets GC tracking.
20060
20061 2005-03-23  Chris Toshok  <toshok@ximian.com>
20062
20063         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
20064         out some spew.
20065
20066 2005-03-24  Raja R Harinath  <rharinath@novell.com>
20067
20068         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
20069         changes to pick up any changes in prefix, etc.
20070
20071 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20072
20073         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
20074         
20075         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
20076         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
20077
20078 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
20079
20080         * class-internals.h object-internals.h class.c reflection.c: Extend the
20081         mono_lookup_dynamic_token () function to return the class of the
20082         token as well. 
20083
20084         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
20085         well. Fixes #73848.
20086
20087 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
20088
20089         * security-manager.c: Skip inheritance checks for intra-corlib
20090         class inheritance and method overrides. This skips a lot of checks
20091         and (anyway) permissions cannot work until corlib is loaded.
20092
20093 2005-03-23  Martin Baulig  <martin@ximian.com>
20094
20095         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
20096         MONO_TYPE_GENERICINST.  
20097
20098 2005-03-23  Martin Baulig  <martin@ximian.com>
20099
20100         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
20101
20102 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20103
20104         * class.c: added locking comments to some functions.
20105         Cache the interface offsets arrays (saves about 20 KB
20106         of runtime memory in a typical app).
20107         Reduce the time overhead in mono_class_setup_supertypes ().
20108
20109 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
20110
20111         * icall.c: speedup and fix leaks in GetMethodsByName and
20112         GetPropertiesByName.
20113
20114 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20115
20116         * reflection.c: some locking fixes.
20117
20118 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
20119
20120         * metadata.c: added missing break in case statement.
20121
20122 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
20123
20124         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
20125         typedbyref return values. Fixes #73941.
20126
20127 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
20128
20129         * security-manager.c|h: Added demandunmanaged method and 
20130         suppressunmanagedcodesecurity class to MonoSecurityManager.
20131         Renamed aptc class to allowpartiallytrustedcallers.
20132
20133 2005-03-17  Martin Baulig  <martin@ximian.com>
20134
20135         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
20136
20137 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20138
20139         * file-io.c: disabled file async. IO using aio_*. It uses the
20140         threadpool now. Workaround for bug #73718.
20141
20142 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20143
20144         * assembly.h, mono-config.c: added code to deal with bundled configs
20145         for bundled assemblies.
20146
20147 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
20148
20149         * *.c, private.h: cleanup, removing old private.h header file.
20150
20151 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
20152
20153         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
20154         and throw_on_unmappable_char attributes.
20155
20156 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
20157
20158         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
20159         _ProcessName_internal.
20160
20161 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
20162
20163         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
20164         #73631.
20165
20166         * icall.c threads.c threads-types.h: Remove slothash icalls as they
20167         are no longer used.
20168
20169 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
20170
20171         * object.c (compute_class_bitmap): Add support for generics. Fixes
20172         #73527.
20173
20174 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20175
20176         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
20177
20178 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20179
20180         * filewatcher.c: commented out the code for windows watcher, as we don't
20181         use it (we use the managed implementation instead).
20182
20183 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
20184
20185         * object-internals.h (MonoThread): Remove 'unused1' field.
20186
20187         * appdomain.c: Bump corlib version.
20188
20189         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
20190
20191         * reflection.c (mono_reflection_create_runtime_class): Remove the
20192         AssemblyBuilder.Save optimization since it causes too many problems.
20193
20194 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
20195
20196         * exception.c|h: Added mono_get_exception_reflection_type_load to
20197         create a ReflectionTypeLoadException object.
20198         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
20199         to return NULL is a InheritanceDemand fails during reflection. Updated
20200         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
20201         ReflectionTypeLoadException if an InheritanceDemand fails during 
20202         reflection. Added icall mapping for GetLinkDemandSecurity.
20203         * security-manager.c|h: Added ves_icall_System_Security_
20204         SecurityManager_GetLinkDemandSecurity internal call to return the
20205         class and methods permissions set for a LinkDemand. Removed unused
20206         fields in MonoSecurityManager.
20207
20208 2005-03-10  Martin Baulig  <martin@ximian.com>
20209
20210         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
20211         it's a generic instance.
20212
20213 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
20214
20215         * reflection.c (mono_get_object_from_blob): Applied patch from
20216         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
20217
20218         * class.c (mono_class_is_assignable_from): Another try at fixing 
20219         #73469 without breaking anything.
20220
20221 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
20222
20223         * class.c: (mono_class_is_assignable_from): Revert the last changes
20224         since they don't work with generics.
20225         
20226         * class.c (mono_class_is_assignable_from): Fix build bustage.
20227
20228         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
20229         the managed IsAssignableFrom method. Fixes #73469.
20230
20231         * reflection.c (mono_reflection_call_is_assignable_from): New helper
20232         function.
20233
20234 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
20235
20236         * object.c (mono_load_remote_field_new): Fix returning uninitialized
20237         memory when the remoting callback does not sets the out arguments.
20238         Fixes #73007.
20239
20240         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
20241         by mistake.
20242
20243         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
20244
20245         * object-internals.h (MonoStackFrame): Sync with managed object layout.
20246
20247         * appdomain.c: Bump corlib version.
20248
20249 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
20250
20251         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
20252         function.
20253
20254         * threads.c (mono_thread_attach): Detect threads which are not started
20255         by the GC pthread wrappers.
20256
20257 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
20258
20259         * icall.c: Added new icall for RNG.
20260         * rand.c|h: Added new icall to open the RNG. This allows to share a 
20261         single handle on Linux to access /dev/urandom and fix #73183.
20262
20263 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
20264
20265         * object.c: setting the new vtable in a transparent proxy object must
20266         not change the GC descriptor.
20267
20268 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20269
20270         * object.c: fixed compilation without GCJ support.
20271         * reflection.c: for runtime-created types ensure klass->has_references
20272         is correct (bug #73215).
20273
20274 2005-03-02  Martin Baulig  <martin@ximian.com>
20275
20276         * class.c (mono_class_is_assignable_from): Make this work if
20277         `oklass' is a generic instance; fixes #72831.
20278
20279 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20280
20281         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
20282         with hasthis set.
20283         
20284         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
20285
20286         * marshal.c: Reorganize native->managed marshalling code to also use
20287         the emit_marshal_... functions.
20288
20289 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20290
20291         * object.c: typed allocs have issues with bitmap sizes > 30,
20292         so check for max_set >= 30.
20293
20294 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
20295
20296         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
20297         managed code. Fixes #73012.
20298
20299         * metadata.h (MonoMarshalSpec): Add elem_mult field.
20300
20301         * metadata.c reflection.c: Load/Emit elem_mult as well.
20302         
20303         * metadata.h (MonoMarshalSpec): Add comment.
20304
20305         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
20306
20307         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
20308         num_elem to -1 if not given.
20309
20310         * object-internals.h (MonoReflectionMarshal): Add has_size field.
20311
20312         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
20313         given values.
20314
20315 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
20316
20317         * null-gc.c (mono_gc_free_fixed): Was not compilable.
20318
20319 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
20320
20321         * reflection.c (encode_marshal_blob): Encode param_num field as well.
20322
20323         * object-internals.h (MonoReflectionMarshal): Add param_num field.
20324
20325 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
20326
20327         * object.c: generalized the reference bitmap creation
20328         and added hooks for the new GC.
20329         * class-internals.c: removed the gc_bitmap field from MonoClass.
20330
20331 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20332
20333         * domain.c: help the compiler to produce better code
20334         in mono_jit_info_table_find ().
20335
20336 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
20337
20338         * object.c: make all allocations look typed.
20339
20340 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20341
20342         * socket-io.c: load Mono.Posix if it's not loaded already
20343         (fixes bug#73033).
20344
20345 2005-02-24  Martin Baulig  <martin@ximian.com>
20346
20347         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
20348         * reflection.c (dup_type): Likewise.
20349
20350 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
20351
20352         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
20353         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
20354
20355 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20356
20357         * domain.c, threads.c, object-internals.h: make the critical thread
20358         local vars use the fast access mode (even when we're compiled in
20359         a lib). Provide accessors to be used by the jit during codegen.
20360
20361 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20362
20363         * appdomain.c: Changed hook functios behavior to include
20364         support for the reflection only assemblies. Some icalls were changed
20365         to support the mentioned assemblies too. Signatures of static methods
20366         try_assembly_resolve and real_load now have an additional parameter:
20367         refonly.
20368
20369         * assembly.c: General changes to mono_assembly_ methods to support
20370         reflection only api. Functions mono_assembly_open, mono_assembly_load,
20371         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
20372         suffix, to support an additional gbool parameter to specify whether
20373         the assembli is reflection only or not. Created some new hook functions 
20374         to add support for reflection only assemblies. Signatures of static 
20375         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
20376         have now an additional parameter: refonly.
20377
20378         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
20379         indicating whether the assembly is reflection only or not.
20380
20381         * exception.c: Add mono_get_exception_invalid_operation.
20382
20383         * icall.c: Throw an InvalidOperationException when trying to invoke
20384         a property/method/event, or trying to set/get the value of a field.
20385         Also add an icall to retrieve the ref_only flag to the
20386         MonoReflectionAssembly.
20387
20388 2005-02-23  Chris Toshok  <toshok@ximian.com>
20389
20390         Part of fix for #72827.
20391         * mono-debug.c (mono_debug_add_method): add lexical block data to
20392         the info we write.  Kind of a hack at the moment - we copy the
20393         lexical block info from the MonoDebugMethodInfo to the
20394         MonoDebugMethodJitInfo here, before writing it.
20395         (mono_debug_read_method): read the lexical block info.
20396
20397         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
20398
20399         * debug-mono-symfile.h: add lexical block support.
20400
20401         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
20402         support.
20403
20404 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
20405
20406         * loader.c (mono_lookup_pinvoke_call): Fix warning.
20407
20408         * object.c (mono_runtime_free_method): Call mono_free_method () and
20409         put the TODOs there.
20410
20411         * loader.c (mono_free_method): Free up most memory allocated for 
20412         dynamic methods.
20413
20414 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
20415
20416         * reflection.c: properly flag a Type argument to a
20417         named custom attr value (bug #72248).
20418
20419 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
20420
20421         * reflection.c: reduce code duplication in named custom
20422         attribute encoding.
20423
20424 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
20425
20426         * reflection.c: properly encode custom attrs of type object
20427         (bug #72649).
20428
20429 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
20430
20431         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
20432
20433 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
20434
20435         * socket-io.c: load System.dll if it's not loaded already
20436         (bug #72850 and #70477).
20437
20438 2005-02-21  Martin Baulig  <martin@ximian.com>
20439
20440         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
20441         generic instances.
20442
20443 2005-02-21  Martin Baulig  <martin@ximian.com>
20444
20445         * reflection.c (mono_image_build_metadata): We also need to
20446         "fixup" the MethodImpl table after we computed the final method
20447         indices.  Call fixup_methodimpl() to do that.
20448         (fixup_methodimpl): New private method.
20449
20450 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
20451
20452         * assembly.c: special case mscorlib.dll (bug#72536),
20453         patch from Carlos Alberto Cortez.
20454
20455 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
20456
20457         * threads-types.h threads.c: Fix build bustage.
20458
20459         * threads.c: Use a union for long<->double conversions.
20460
20461         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
20462         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
20463
20464         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
20465         containing the checkpoint call with NOT_TAKEN.
20466         
20467         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
20468         checkpoint before pushing the arguments, so they won't have to be
20469         spilled to stack.
20470
20471 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20472
20473         * domain.c, assembly.c, domain-internals.h: make some data
20474         const and relocation-free.
20475
20476 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
20477
20478         * object.c, appdomain.c, class-internals.h: introduce the
20479         MonoClassRuntimeInfo structure to hold the info needed to
20480         use a class at runtime. Made mono_class_vtable() lock-free
20481         for all the appdomains.
20482
20483 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
20484
20485         * metadata-internals.h, image.c: introduce a per-image mempool to
20486         be used for memory that has the same lifetime as the image.
20487
20488 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
20489
20490         * domain.c: In mono_init_internal(), instead of selecting the first
20491         runtime version supported by an executable, get a list of all
20492         supported versions and select the one for which an mscorlib exists
20493         (since even if the runtime supports a given version, it doesn't mean
20494         that the framework for that version is installed).
20495         Modified get_runtimes_from_exe to support this behavior.
20496         In supported_runtimes, added information about additional system
20497         assembly versions.
20498         
20499         * assembly.c: Added support for more than one system assembly version
20500         per runtime version. Updated the assembly list.
20501         In mono_assembly_remap_version, removed the initial version check,
20502         since we don't know to which version we need to compare until we
20503         get the version set on which the assembly is based.
20504         Moved the code for loading corlib into the new method
20505         mono_assembly_load_corlib(), so it can be used by the initialization
20506         code.
20507         
20508         * domain-internals.h: Updated data structures and added declaration
20509         for mono_assembly_load_corlib.
20510
20511 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
20512
20513         * reflection.c (resolve_object): Fix the creation of the signature in 
20514         the SignatureHelper case.
20515
20516         * assembly.c (mono_assembly_remap_version): Fix binary search.
20517         
20518 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
20519  
20520         * class.c: Added inheritance check when a method is overloaded (from a
20521         virtual method or when implementing an interface) and when a class is
20522         inherited. Added functions to set a failure for a class and to 
20523         retreive the exception from a failure.
20524         * class-internals.h: Added fields to MonoClass to keep the exception
20525         information status for inheritance (or other exceptions) to be thrown
20526         later (i.e. not at load time).
20527         * object.c: Throw the inheritance SecurityException when a type is to 
20528         be created with either class or method inheritance violations.
20529         * reflection.c|h: Fix when getting declsec from a class. Removed 
20530         unrequired code for class. Improved sanity in parameter naming.
20531         * security-manager.c|h: Added functions to check for class and method
20532         inheritance.
20533
20534 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
20535
20536         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
20537         and has_finalize in dynamic types as well.
20538
20539 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
20540
20541         * culture-info-table.h : fixed currency format for en-GB (and so on).
20542
20543 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
20544
20545         * gc.c: ensure the GC handles never have 0 as a value.
20546
20547 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
20548
20549         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
20550         a pointer to a struct to unmanaged code. Fixes #72625.
20551
20552 2005-02-16  Martin Baulig  <martin@ximian.com>
20553
20554         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
20555
20556 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
20557
20558         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
20559
20560 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
20561
20562         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
20563
20564         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
20565         UnmanagedFunctionPointerAttribute, use it for determining calling convention
20566         etc. Fixes #71471.
20567
20568         * reflection.c (mono_custom_attrs_get_attr): New helper function.
20569
20570         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
20571
20572 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
20573
20574         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
20575         changes to make the current context a field in MonoThread.
20576
20577 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
20578
20579         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
20580         the last change.
20581         
20582         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
20583         extracted from mono_marshal_get_native_wrapper.
20584
20585         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
20586         to create wrappers around native functions.
20587
20588         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
20589         delegates for arbitrary function pointers. Fixes #71472.
20590
20591 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
20592
20593         * threads.c: cleaned up the code a little.
20594
20595 2005-02-15  Martin Baulig  <martin@ximian.com>
20596
20597         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
20598         the data table.
20599
20600         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
20601         allocate larger chunks if needed.
20602
20603 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
20604
20605         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
20606         in by mistake.
20607
20608 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
20609
20610         * domain.c: keep the domains in an array and ensure the domain ids
20611         are kept small, so they can be used as indexes to domain-specific data
20612         with a small memory overhead.
20613
20614 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
20615
20616         * icall.c: Handle byref types in Type icalls. Fixes #72544.
20617
20618 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
20619
20620         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
20621
20622 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
20623
20624         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
20625
20626         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
20627         values.
20628
20629         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
20630         
20631 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
20632
20633         * domain-internals.h: add the hashtable here.
20634
20635         * class-internals.h: Remove `info' from MonoMethod
20636
20637         * domain.c: Add a new hashtable, jit_trampoline_hash
20638
20639 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
20640
20641         * object.c: don't set the value of static fields
20642         (fixes bug#72494).
20643
20644 2005-02-11  Martin Baulig  <martin@ximian.com>
20645
20646         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
20647         (mono_debug_add_method): Silently ignore the method if it's too big.
20648         (mono_debug_add_type): Likewise.
20649
20650 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
20651
20652         * threads.c, appdomain.c: remove #ifdefs from the code.
20653
20654 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
20655
20656         * metadata-internals.h: Added flags to MonoAssembly to cache the most
20657         common security informations. This allows us to stay in unmanaged code
20658         when doing LinkDemand and it's special cases (except for the first 
20659         time for initialization). The flags a very much used with --security.
20660         * reflection.c|h: Added code to get declarative security attributes 
20661         for LinkDemand and InheritanceDemand. This required to refactor the
20662         existing code for Demand.
20663         * security-manager.c|h: Added new method fields for the special cases
20664         of LinkDemand.
20665
20666 2005-02-10  Martin Baulig  <martin@ximian.com>
20667
20668         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
20669         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
20670
20671 2005-02-10  Martin Baulig  <martin@ximian.com>
20672
20673         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
20674         debugging code; this is almost a complete rewrite.
20675
20676         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
20677
20678 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20679
20680         * domain.c, object.h: expose mono_string_equal () and 
20681         mono_string_hash ().
20682         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
20683         it's implemented in managed code.
20684
20685 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
20686
20687         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
20688         lo leak objects between appdomains.
20689
20690 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20691
20692         * assembly.c: old compilers compilation fix from 
20693         robertj@gmx.net (Robert Jordan).
20694
20695 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
20696
20697         * class-internals.h: Little reminder for the future.
20698
20699         * debug-helpers.c: Fix up wrapper_type_names
20700
20701 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20702
20703         * image.c, metadata-internals.h: when loading an image from a file,
20704         mmap all of it and use the same codepaths as when using a
20705         in-memory image: the code is simpler and we use less memory
20706         (both writable and readonly).
20707
20708 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
20709
20710         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
20711         API to alloc runtime data structures that need to be tracked by the
20712         GC and contain pointers.
20713         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
20714         make the code more readable and eventually use a different GC.
20715
20716 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
20717
20718         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
20719         for out arguments.
20720         
20721 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
20722
20723         * object.c: In release_type_locks(), don't release the cctor lock
20724         if it has already been released. This fixes a crash in the
20725         thread5 test.
20726
20727 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
20728
20729         * gc.c, marshal.c, icall.c: register a delegate for finalization
20730         only when the native function pointer has been allocated for it.
20731
20732 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
20733
20734         * object.c: cleaned up some code, allocate objects that are
20735         pointer free with the atomic malloc variant. Allocate memory
20736         for static data from the mempool if it's pointer-free.
20737         Allocate the bounds array at the end of the array data, when needed.
20738         * object-internals.h, object.h: move a private function in a private
20739         header.
20740         * class.c: handle missing case in tracking references in fields.
20741
20742 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
20743
20744         * class.c, class-internals.h: keep track if a type has
20745         reference fields in either the instance or static fields.
20746
20747 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
20748
20749         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
20750         and renamed to MonoRuntimeInfo. Added fields to store the expected
20751         framework assembly version. Changed mono_get_framework_version and
20752         mono_get_runtime_version for a single mono_get_runtime_info method.
20753         
20754         * assembly.c: Added method to remap system assembly versions to the
20755         current executing runtime version. Removed old mapping code.
20756         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
20757         
20758         * icall.c, reflection.c: Track api changes.
20759
20760 2005-02-06  Miguel de Icaza  <miguel@novell.com>
20761
20762         * loader.c (method_from_memberref): Improve error reporting,
20763         produce the class name instead of the typeref/typedef index. 
20764
20765 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
20766
20767         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
20768
20769 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
20770
20771         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
20772         stdcall and charset name mangling.  Reorganize the code and add
20773         some tracing stuff.
20774
20775 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
20776
20777         * monodiet.c: More iters!
20778
20779         * marshal.c: Iter usage.
20780
20781         * icall.c: Iter usage.
20782
20783         * object.c: Use iters.
20784
20785         * debug-helpers.c: More iters
20786
20787 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
20788
20789         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
20790         under win32.
20791
20792 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
20793
20794         * mono-debug-debugger.c: use iters
20795
20796         * class.c, class-internals.h: mono_class_setup_events is static
20797         now
20798
20799         * All callers: use iters
20800
20801 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
20802
20803         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
20804         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
20805
20806 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
20807
20808         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
20809
20810         * marshal.h: Add prototypes for ldfld/stfld_remote.
20811
20812         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
20813         this is called during startup.
20814         
20815 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
20816
20817         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
20818         MonoThreadsSync struct private in monitor.c. Changed the way
20819         MonoThreadsSync is allocated so it's faster and there is no
20820         need to keep track of it with a finalizer and it uses less memory.
20821         This also finally allows us to allocate mono objects as ptrfree when
20822         there are no reference fields.
20823
20824 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
20825
20826         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
20827         disappearing link to the GC interface and use them to simplify
20828         the gchandles code.
20829
20830 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
20831
20832         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
20833         stfld_remote which call mono_load/store_field_new. This allows methods
20834         calling ldfld/stfld wrappers to be AOTed.
20835
20836         * console-io.c: Include sys/filio.h under solaris.
20837         
20838         * console-io.c: Include curses.h if needed correctly.
20839
20840 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
20841         
20842         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
20843         method->klass as well.
20844
20845         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
20846
20847         * class.c (mono_class_init): Switch on lazy initialization of 
20848         methods.
20849
20850         * class.c (mono_class_get_finalizer): Handle the case when the 
20851         finalizer is inherited.
20852
20853 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20854
20855         * console-io.c: <curses.h> is needed by term.h on solaris.
20856
20857 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
20858
20859         * icall.c, class-internals.h, monodiet.c, class.c: Remove
20860         mono_class_setup_properties where possible. Remove this ftn from
20861         the header file, and make it static.
20862
20863 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
20864
20865         * loader.c: Add missing setup_... call.
20866
20867         * class.c: Add missing setup_... calls.
20868
20869         * class.c (mono_class_init): Switch on lazy initialization of 
20870         the generic vtable.
20871         
20872         * class.c (mono_class_init): Fix generics broken by the recent changes.
20873
20874         * monodiet.c (handle_type): Add missing setup_... calls.
20875
20876         * class.c: Back out garbage in previous patch.
20877         
20878         * class.c: Add missing setup_... calls.
20879
20880         * class.c (mono_class_get_method_from_name_flags): Avoid calling
20881         mono_class_setup_methods () if possible.
20882
20883         * class-internals.h (MonoClass): Add 'has_cctor' flag.
20884
20885         * class-internals.h (MonoCachedClassInfo): New structure.
20886
20887         * class.c: Initialize properties and events fields of MonoClass lazily.
20888
20889         * class.c: Add infrastructure for lazily initializing the methods and
20890         vtable fields of MonoClass. Not yet used.
20891
20892         * class.c (mono_class_get_finalizer): New helper function.
20893
20894         * class.c: Add infrastructure for loading some class related data from
20895         an AOT file.
20896
20897         * object.c: Add infrastructure for initializing the vtable from data
20898         in the AOT file.
20899
20900         * gc.c (run_finalize): Use mono_class_get_finalizer ().
20901
20902         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
20903         appropriate initialization function before accessing parts of the
20904         MonoClass structure.
20905
20906         * marshal.c: Fix warnings.
20907         
20908         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
20909
20910         * mono-debug-debugger.c (get_exception_message): Use 
20911         mono_class_get_method_from_name_flags ().
20912
20913 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
20914
20915         * reflection.c, appdomain.c: Replace a few manual searches that
20916         Zoltan missed. (Paolo approved this part of my initial patch).
20917
20918 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
20919
20920         * profiler.c: disable recording statistical events at report time.
20921
20922 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
20923
20924         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
20925         to byteswap arrays of enum values, too (bug #72080).
20926
20927 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
20928
20929         * appdomain.c (set_domain_search_path): Allow this to be called if
20930         domain->setup is not yet set.
20931
20932         * loader.c (mono_method_get_index): New helper function.
20933
20934         * loader.c reflection.c: Use mono_method_get_index ().
20935
20936         * class.c (mono_class_get_method_from_name_flags): New helper method.
20937
20938         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
20939         this.
20940
20941         * class.c (mono_class_get_cctor): New helper method.
20942
20943         * string-icalls.c object.c class.c marshal.c reflection.c: Use
20944         mono_class_get_method () to look up methods.
20945
20946 2005-02-01  Miguel de Icaza  <miguel@novell.com>
20947
20948         * console-io.c: Fix the build, this should work on Windows.
20949
20950 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
20951
20952         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
20953         be set to null to keep things valid
20954
20955 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20956
20957         * icall.c: added Console 2.0 icalls.
20958         * Makefile.am: added console-io.[ch]
20959         * console-io.[ch]: internal calls for Console 2.0 API.
20960
20961 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
20962
20963         * class.c: make sure we consider all the interfaces
20964         when calculating max_interface_id (bug found by
20965         Jeroen Frijters running ikvm).
20966
20967 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
20968
20969         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
20970         valuetype fields to null.
20971
20972         * object.c (set_value): Ditto. Fixes #71669.    
20973
20974 2005-01-31  Martin Baulig  <martin@ximian.com>
20975
20976         * metadata.c (mono_metadata_has_generic_params): New public
20977         function; checks whether something is a generic method.
20978
20979 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
20980
20981         * appdomain.c: fix infinite recursion when adding assemblies.
20982
20983 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
20984
20985         * object.c: Fix small typo to return all items for Environment.
20986         GetCommandLineArgs.
20987
20988 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
20989
20990         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
20991         reflection.c: more domain and assembly-unload related fixes
20992         and memory leaks plugs.
20993
20994 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
20995
20996         * 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.
20997
20998 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
20999
21000         * loader.c (mono_method_signature): Make this method lazy
21001         (mono_get_method_from_token): Don't computate the signature here.
21002
21003         Doing this saves quite a bit of memory. I got 90 kb on starting up
21004         monodoc. It should also save some disk reads on startup.
21005
21006         * *: MonoMethod->signature might be NULL now. You *MUST* use
21007         mono_method_signature.
21008
21009 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
21010
21011         * object.c (mono_runtime_get_main_args): Return an array from the
21012         current domain here. Fixes #71938.
21013
21014 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
21015
21016         * monitor.c: formatting changes to comply with the
21017         mono coding style and remove #ifdefs from the code.
21018
21019 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21020
21021         * metadata.c, private.h: remove some unneeded data
21022         and use a more compact representation for table schemas.
21023
21024 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
21025
21026         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
21027         to get a better distribution in hash tables.
21028         * *.c: use mono_aligned_addr_hash() where appropriate.
21029         * assembly.c: make var static.
21030
21031 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
21032
21033         * domain-internals.h: Put MonoJitInfo on a diet.
21034
21035         * domain.c: Fix a warning.
21036
21037 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21038
21039         * gc.c: rework the gc handles code to reuse handles
21040         when freed.
21041
21042 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
21043
21044         * domain.c: fixed long standing bug in mono_string_equal() which
21045         was brought to light with the ldstr changes.
21046
21047 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
21048
21049         * reflection.c: Remove warning by adding missing include for marshal.h
21050
21051 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21052
21053         * domain.c, object.c: change the ldstr_table to hold
21054         MonoString* as keys: makes the runtime isinterned lookup
21055         faster and simplifies memory management.
21056
21057 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
21058  
21059         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
21060         possible to add imperative security checks before calling the icall.
21061         * reflection.c: Return security attributes on the original MonoMethod
21062         (and not the wrapped one). This fix permissions on icalls.
21063
21064 2005-01-25  Dick Porter  <dick@ximian.com>
21065
21066         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
21067         the check for mktime() support actually test the mktime() return
21068         value.  "Fixes" bug 71682, though the output is still different to
21069         MS.
21070
21071 2005-01-25  Martin Baulig  <martin@ximian.com>
21072
21073         * class.c (mono_class_is_assignable_from): Make this work for
21074         generic instances.
21075
21076 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
21077
21078         * marshal.c (mono_string_utf8_to_builder)
21079         (mono_string_builder_to_utf16): We might not have ownership of the
21080         string. In thise case, we need to create a new buffer.
21081
21082         * object-internals.h (mono_stringbuilder_capacity): sb->str might
21083         be null, in which case, use the default capacity.
21084
21085 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21086
21087         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
21088         GC events to the profiler.
21089
21090 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21091
21092         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
21093         if you don't want the GC to run.
21094
21095 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
21096
21097         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
21098         start providing a GC API and keeping different implementations in
21099         their own file.
21100         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
21101
21102 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
21103
21104         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
21105         mmap rather than allocating a huge buffer.
21106         (mono_debug_close_mono_symbol_file): Free the buffer allocated
21107         above.
21108
21109 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
21110
21111         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
21112         and CheckExecutionRights.
21113         * reflection.c|h: Keep the index of the declarative security to be 
21114         used, instead of the pointer, when AOT compiler is used. Also add 
21115         class initialization when requesting demands.
21116         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
21117         CheckExecutionRights. Both properties are now FALSE by default, and
21118         unmodifiable, unless the --security option is used.
21119
21120 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21121
21122         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
21123         reflection.c: properly refcount images and assemblies, many leaks fixed.
21124
21125 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21126
21127         * threadpool.c: increase the timeout for threads in the thread pool to
21128         10s.  Fixes bug #67159.
21129
21130 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
21131
21132         * class-internals.h: Sun's compiler insists on explicit
21133         signed on bit fields to handle then correctly.
21134
21135 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
21136
21137         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
21138         Make the size of the array fit only the number of invalid path
21139         chars that we have.
21140
21141         * class.c (_mono_class_get): Improve the error reporting when a
21142         class referenced is not found, to assist debugging. 
21143
21144 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
21145
21146         * threads.c: fix off-by-one error.
21147         * domain.c: free data allocated in the domain.
21148
21149 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21150
21151         * reflection.c (mono_method_body_get_object): Fill out exception info
21152         as well.
21153
21154         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
21155         structure.
21156         
21157 2005-01-19  Martin Baulig  <martin@ximian.com>
21158
21159         * loader.c (mono_get_method_constrained): Make this work again.
21160
21161 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
21162
21163         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
21164         guint16 to match the managed side.
21165
21166         * reflection.c (mono_reflection_body_get_object): Fill out local
21167         variables array.
21168
21169         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
21170         as well.
21171
21172         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
21173         'local_var_sig_token'.
21174
21175 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
21176
21177         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
21178         System.Drawing.
21179
21180         * reflection.c (mono_method_body_get_object): Handle abstract and
21181         runtime methods.
21182
21183 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
21184
21185         * marshal.c, loader.c, class-internals.h, reflection.c:
21186         store the emthod data for a wrapper in an array instead of a list.
21187
21188 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
21189
21190         * marshal.c: change the code to allocate memory more
21191         conservatively for method wrappers.
21192
21193 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
21194
21195         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
21196         fields from MonoClass to the marshal info structure where they belong.
21197
21198 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
21199
21200         * class.c, object.c, class-internals.h, marshal.c: rearrange
21201         some fields and tweak some types to lower memory usage.
21202
21203 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
21204
21205         * threads.c (signal_thread_state_change): Handle the case when the
21206         target thread is the current thread.
21207
21208         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
21209
21210         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
21211         emit_ptr_to_object_conv. 
21212
21213         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
21214         marshalling. Fixes #71352.
21215
21216 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
21217
21218         * metadata.h, blob.h: move table enum to blob.h so it can be included
21219         in any header.
21220         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
21221         cut the size of MonoImage/MonoDynamicImage.
21222
21223 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
21224
21225         * profiler.c (mono_profiler_install_simple): Fix default arguments.
21226
21227 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
21228
21229         * reflection.c, reflection.h, icall.c: add a function to check
21230         if an attribute type is defined for a metadata object.
21231
21232 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
21233
21234         * object-internals.h: Added some needed fields from StringBuilder class.
21235         * marshal.c: Set the maxCapacity when creating a StringBuilder.
21236
21237 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
21238
21239         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
21240         threads before shutting down the runtime.
21241
21242         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
21243
21244 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
21245
21246         * object-internal.h, threads.c: implement stacksize and 
21247         parameterized thread start functionality (requires
21248         matching corlib). Marked broken code for later removal.
21249
21250 2005-01-12  Martin Baulig  <martin@ximian.com>
21251
21252         * class-internals.h (MonoGenericClass): Moved the `initialized'
21253         flag to MonoDynamicGenericClass, removed `init_pending'.
21254         (MonoGenericInst): Added `is_reference' flag.
21255
21256 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
21257
21258         * reflection.c (mono_image_create_pefile): Only set the pe_offset
21259         inside the MSDOS header. Fixes #71201.
21260
21261         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
21262         gc thread.
21263         (mono_domain_finalize): Ditto.
21264
21265 2005-01-12  Martin Baulig  <martin@ximian.com>
21266
21267         * class.c (mono_get_shared_generic_class): Use the cache for
21268         non-dynamic generic classes.
21269
21270         * class-internals.h (mono_class_create_generic_2): Removed
21271         function prototype, this function is now static inside class.c.
21272
21273         * class.c (mono_class_create_generic_2): Made this static, only
21274         call it from mono_class_init() and mono_class_setup_parent().
21275         (collect_implemented_interfaces_aux): Call mono_class_init() on
21276         the interfaces we collect.
21277         (mono_class_setup_vtable): Call mono_class_init (class->parent).
21278
21279 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21280
21281         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
21282         it a real thread handle.
21283
21284         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
21285         MonoJitExceptionInfo, since each catch clause needs its own variable.
21286         
21287 2005-01-11  Dick Porter  <dick@ximian.com>
21288
21289         * image.c (mono_pe_file_open): New variant on mono_image_open()
21290         that does not set up the CLI metadata; used for FileVersionInfo so
21291         it can get the data for windows binaries too.
21292         
21293         * process.c (process_read_string_block): Don't read off the end of
21294         the StringTable block.
21295
21296         These both fix bug 70766.
21297
21298 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
21299
21300         * gc.c: set some fields to NULL at GC cleanup time.
21301         * threads.c: if we quit the main thread, call exit ().
21302
21303 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
21304
21305         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
21306
21307 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
21308
21309         * threads.h, threads.c, object.c: added accessor and settor for
21310         main_thread. Handle it specially when exiting from it: wait
21311         for other foreground threads to exit.
21312
21313 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
21314
21315         * process.c, verify.c: remove some bloat.
21316
21317 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
21318
21319         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
21320         the calling convention to cdecl under win32.
21321
21322 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
21323
21324         * object.c (mono_object_get_size): New function to get the size of
21325         an object instance.
21326
21327         * profiler.c (simple_allocation): Use above.
21328
21329 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
21330
21331         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
21332         ves_icall_System_AppDomain_getRootDomain (as it's not required to
21333         get an appdomain by it's id and we can't assume the root's id is 0).
21334         * domain-internals.h: Change the function prototype to match.
21335         * icall.c: Change the icall table for AppDomain.
21336
21337 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
21338
21339         * locales.c (string_invariant_compare_char): Only compute
21340         GUnicodeTypes in the case where we need them.  Test for ordinality
21341         first and return if so.
21342
21343         From the commit:
21344
21345                 /*
21346                  * FIXME: here we must use the information from c1type and c2type
21347                  * to find out the proper collation, even on the InvariantCulture, the
21348                  * sorting is not done by computing the unicode values, but their
21349                  * actual sort order.
21350                  */
21351
21352 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
21353
21354         * loader.c: for P/Invoke methods, allow the "Internal" shared
21355         library name to refer to the calling process symbol namespace.
21356
21357 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
21358
21359         * Makefile.am: Add the security manager to the build.
21360         * security-manager.c|h: New. Initialization of the security manager.
21361
21362 2005-01-07  Dick Porter  <dick@ximian.com>
21363
21364         * threads.c: 
21365         * monitor.c: Update thread state during Monitor and WaitHandle
21366         waits.  Fixes bug 71031.
21367
21368 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
21369
21370         * reflection.c (property_encode_signature): Correctly handle when the
21371         property has no methods.
21372
21373 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
21374
21375         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
21376         
21377         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
21378         fields from mb, not rmb. Fixes #71017.
21379
21380         * marshal.c (emit_ptr_to_str_conv): Add support for 
21381         ByValTStr -> string conversion. Fixes #71015.
21382
21383         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
21384
21385         * mempool.c (mono_mempool_contains_addr): New helper function.
21386
21387 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21388
21389         * metadata.c (mono_metadata_compute_size): Fix size calculation of
21390         HasSematics encoded fields.
21391         
21392         * metadata.c (mono_type_to_unmanaged): Improve error message for 
21393         invalid string marshalling.
21394
21395         * metadata.c: Fix warnings.
21396         
21397 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
21398
21399         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
21400         profiler support.
21401
21402 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
21403
21404         * domain.c object.c domain-internals.h: Revert part of r38077 since the
21405         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
21406         tests.
21407
21408 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
21409
21410         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
21411         so methods containing these can be AOTed.
21412
21413 2005-01-03  Martin Baulig  <martin@ximian.com>
21414
21415         * loader.c (find_method): Removed the hack for generic instances.
21416         (method_from_memberref): If our parent is a generic instance, pass
21417         its generic type definition to find_method() and then inflate the
21418         method.
21419         (mono_get_method_constrained): Pass the generic type definition to
21420         find_method() and inflate the method later.
21421
21422         * class-internals.h (MonoStats): Added `generic_class_count'.
21423
21424         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
21425         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
21426
21427         * reflection.c (mono_custom_attrs_from_params): Don't ignore
21428         generic type definitions.
21429
21430 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
21431
21432         * loader.c icall.c: Fix warnings.
21433
21434 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
21435
21436         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
21437         blittable types. Fixes #70864.
21438
21439 2004-12-29  Martin Baulig  <martin@ximian.com>
21440
21441         * icall.c
21442         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
21443
21444         * reflection.c (mono_method_get_object): Create a
21445         "System.Reflection.MonoGenericMethod" for inflated methods; don't
21446         call mono_get_inflated_method().
21447
21448         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
21449
21450 2004-12-27  Martin Baulig  <martin@ximian.com>
21451
21452         * class-internals.h (MonoMethod): Added `is_inflated' flag.
21453         (MonoMethodInflated): Added `inflated' field.
21454
21455         * class.c (mono_class_inflate_generic_method): Don't really
21456         inflate the method here; just set the `is_inflated' flag in the
21457         MonoMethod.
21458         (mono_class_get_inflated_method): Actually inflate the method here
21459         if it's not already inflated; we use the MonoMethodInflated's new
21460         `inflated' field as a cache.
21461
21462 2004-12-26  Martin Baulig  <martin@ximian.com>
21463
21464         * class.c
21465         (inflate_generic_class): Moved some code out of inflate_generic_type().
21466         (mono_class_inflate_generic_method): If we're already inflated,
21467         inflate the context and use the declaring method; ie. make sure
21468         the declaring method of an inflated method is always the generic
21469         method definition.
21470         (mono_class_create_from_typedef): Create
21471         `class->generic_container->context->gclass'.
21472
21473 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
21474
21475         * metadata-internals.h, marshal.c, reflection.c: More
21476         MonoGHashTable->GHashTable.
21477
21478         * domain-internals.h, class.c: Change MonoGHashTable's into
21479         GHashTables for some cases where no gc stuff is used
21480
21481         All users: update apis
21482
21483 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
21484
21485         * metadata.c (builtin_types): Make this `const'. Makes this get
21486         put into the shareable section.
21487         (mono_metadata_init): Casts to make gcc happy.
21488
21489 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
21490
21491         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
21492
21493 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
21494
21495         * icall.c: Added an internal call to retrieve the position and length
21496         of assembly-level declarative security attributes (RequestMinimum, 
21497         RequestOptional and RequestRefuse). This is used by the Assembly class
21498         to re-create the corresponding permission sets.
21499
21500 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
21501
21502         * marshal.c: fix the stelemref wrapper to be type correct
21503         (and faster).
21504
21505 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
21506
21507         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
21508         to do key & 0x7fffffff. Hashtable already does this. It just
21509         results in longer code.
21510
21511 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
21512
21513         * appdomain.c: Bump corlib version.
21514         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
21515         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
21516         * reflection.c|h: Add functions to get declarative security infos
21517         (blob position and length) for assemblies, classes and methods.
21518
21519 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
21520
21521         * reflection.c: sort the constant table (bug #70693).
21522
21523 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
21524
21525         * object-internals.h, threads.c, domain.c: add accessors for
21526         the MonoThread and MonoDomain tls keys.
21527
21528 2004-12-18  Martin Baulig  <martin@ximian.com>
21529
21530         * class.c (inflate_generic_type): If we're inflating a generic
21531         instance, set `ngclass->context->container = context->container';
21532         ie. the container we inflated into.
21533
21534         * metadata.c (mono_metadata_parse_generic_param): Reflect above
21535         inflate_generic_type() changes.
21536
21537 2004-12-17  Martin Baulig  <martin@ximian.com>
21538
21539         * class-internals.h
21540         (MonoGenericClass): Replaced `MonoType *generic_type' with
21541         `MonoClass *generic_class'.  Removed `dynamic_info'; if
21542         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
21543         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
21544
21545 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
21546
21547         * exception.c (mono_exception_from_token): New helper function.
21548
21549 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
21550
21551         * assembly.c (mono_assembly_load_with_partial_name): Call 
21552         mono_assembly_loaded before invoking the preload hooks. Fixes
21553         #70564.
21554
21555         * object-internals.h (MonoThread): Change culture_info and 
21556         ui_culture_info into an array.
21557
21558         * threads.c: Cache culture info objects from more than one appdomain.
21559
21560         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
21561         current UI culture.
21562
21563 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
21564
21565         * threads.h threads.c appdomain.c: Clear the culture_info field of
21566         all threads during unloading if they point to an object in the dying
21567         appdomain.
21568
21569 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
21570
21571         * culture-info.h (TextInfoEntry): New struct
21572         * object-internals.h: sync with managed
21573         * locales.c: fill the `text_info_data' field
21574         * culture-info-tables.h: update
21575
21576 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
21577
21578         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
21579         collector.
21580
21581 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
21582
21583         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
21584         (ves_icall_ModuleBuilder_getMethodToken): Ditto
21585
21586 2004-12-12  Martin Baulig  <martin@ximian.com>
21587
21588         * mono-debug-debugger.c (write_type): If we're an enum and the
21589         builtin types have already been initialized, call mono_class_init().
21590
21591 2004-12-11  Martin Baulig  <martin@ximian.com>
21592
21593         * metadata.c (mono_metadata_load_generic_params): Added
21594         `MonoGenericContainer *parent_container' argument; automatically
21595         compute `container->is_method'; pass the correct owner to
21596         get_constraints().      
21597
21598         * reflection.c (compare_genericparam): Sort the GenericParam table
21599         according to increasing owners. 
21600
21601 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
21602
21603         * profiler.c: allow disabling the default profiler.
21604
21605 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
21606
21607         * decimal.c, icall.c: allow disabling System.Decimal support.
21608
21609 2004-12-09  Marek Safar <marek.safar@seznam.cz>
21610
21611         * reflection.c: Add support for null attribute arguments.
21612
21613 2004-12-09  Martin Baulig  <martin@ximian.com>
21614
21615         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
21616         names to get rid of compiler warnings.
21617
21618 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
21619
21620         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
21621         mono_marshal_load_type_info (). Fixes #69625.
21622         (mono_marshal_get_ptr_to_struct): Likewise.
21623
21624 2004-12-08  Martin Baulig  <martin@ximian.com>
21625
21626         * mono-debug.h: Bumped version number to 47.
21627
21628         * mono-debug-debugger.c
21629         (mono_debugger_event_handler, mono_debugger_event): Take two
21630         guint64 arguments insteed of a gpointer and a guint32.  
21631
21632 2004-12-08  Martin Baulig  <martin@ximian.com>
21633
21634         * debug-mono-symfile.h
21635         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
21636         `address' to `native_offset'.
21637
21638 2004-12-08  Martin Baulig  <martin@ximian.com>
21639
21640         * class.c (mono_class_create_from_typespec): Only inflate if we
21641         either have `context->gclass' or `context->gmethod'.
21642
21643 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
21644
21645         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
21646
21647         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
21648
21649         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
21650
21651         * reflection.c (mono_assembly_get_object): Remove the workaround put
21652         in for the release.
21653         
21654         * appdomain.c: Use the corlib_internal field from MonoAssembly.
21655
21656         * appdomain.c: Bump corlib version.
21657
21658         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
21659         be visible in other appdomains.
21660
21661 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
21662
21663         * threads.c: Interlocked inc and dec for longs were messed up,
21664         use a KISS based impl for this. Fixes 70234
21665
21666 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
21667
21668         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
21669
21670 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
21671
21672         * icall.c: fix to follow policy not to allow struct
21673         arguments in icalls.
21674
21675 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21676
21677         * process.c: make the patch that handles spaces in file paths work
21678         on mono/windows too.
21679
21680 2004-12-06  Martin Baulig  <martin@ximian.com>
21681
21682         * class.c (mono_class_create_generic): Call
21683         mono_class_setup_supertypes() if we're dynamic.
21684         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
21685
21686 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
21687
21688         * object-internals.h: Add new fields to MonoThread.
21689
21690         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21691
21692         * icall.c threads-types.h threads.c: Add new icalls.
21693
21694         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
21695
21696         * object-internals.h (MonoReflectionAssembly): Sync object layout with
21697         managed side.
21698
21699         * appdomain.c: Bump corlib version.
21700
21701         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
21702         internal assemblies. Fixes #69181.
21703
21704 2004-12-05  Martin Baulig  <martin@ximian.com>
21705
21706         * class.c (mono_class_inflate_generic_signature): Make this a
21707         no-op if `context' is NULL or we don't have any type parameters;
21708         also copy `sentinelpos'.        
21709
21710 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
21711
21712         * image.c: Add unbox_wrapper_cache.
21713
21714         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
21715
21716         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
21717         function generator.
21718         
21719         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
21720         Fixes #70173.
21721
21722         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
21723         
21724 2004-12-04  Martin Baulig  <martin@ximian.com>
21725
21726         * loader.c (mono_method_get_signature_full): New public function;
21727         like mono_method_get_signature(), but with an additional
21728         `MonoGenericContext *' argument.
21729
21730         * class.c (mono_class_inflate_generic_signature): Formerly known
21731         as inflate_generic_signature(); make this public.
21732
21733 2004-12-04  Martin Baulig  <martin@ximian.com>
21734
21735         * metadata.c
21736         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
21737         instead of a `MonoGenericContainer *'.  
21738         (mono_metadata_parse_array_full): Likewise.
21739         (mono_metadata_parse_signature_full): Likewise.
21740         (mono_metadata_parse_method_signature_full): Likewise.
21741         (mono_metadata_parse_generic_inst): Likewise.
21742         (mono_metadata_parse_generic_param): Likewise.
21743         (mono_metadata_parse_mh_full): Likewise.
21744         (mono_type_create_from_typespec_full): Likewise.
21745
21746 2004-12-03  Martin Baulig  <martin@ximian.com>
21747
21748         * class-internals.h (MonoGenericContainer): Replaced the
21749         `MonoGenericContext * pointer with a `MonoGenericContext'
21750         structure and made it the first element.
21751
21752 2004-12-03  Martin Baulig  <martin@ximian.com>
21753
21754         * class.c
21755         (inflate_generic_type): Set the `context->container' when creating
21756         a new MonoGenericContext.
21757         (mono_class_inflate_generic_method): Likewise.
21758         (mono_class_create_from_typespec): Just use `context->container'
21759         to get the container.
21760
21761         * loader.c (method_from_methodspec): Set `context->parent' from
21762         `context->container' - and if that's a method container, use its
21763         parent.  Also set the `context->container' when creating a new
21764         MonoGenericContext.
21765         (mono_get_method_from_token): Use just `context->container' to get
21766         the container.
21767
21768         * metadata.c (do_mono_metadata_parse_generic_class): Also set
21769         `gclass->context->container'.
21770
21771         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
21772         the `context->container' when creating a new MonoGenericContext.
21773
21774 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
21775
21776         * reflection.c (compare_genericparam): Sort params with identical
21777         owner by their number. Fixes gen-111 on sparc.
21778
21779 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
21780
21781         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
21782         around the domain changes.
21783
21784         * appdomain.c (mono_domain_unload): Handle the case when the thread
21785         calling Unload is itself being aborted during unloading. Fixes #70022.
21786
21787         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
21788
21789         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
21790         checkpoint_func as an icall so it gets a wrapper.
21791         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
21792         in the cross-appdomain wrappers too.
21793
21794         * threads.c (mono_thread_has_appdomain_ref): Make this public.
21795
21796         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
21797
21798         * reflection.c: Fix some memory leaks.
21799         
21800 2004-12-02  Martin Baulig  <martin@ximian.com>
21801
21802         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
21803
21804         * metadata.c (generic_class_cache): New static hashtable.
21805         (mono_metadata_lookup_generic_class): New public method.
21806
21807 2004-12-02  Martin Baulig  <martin@ximian.com>
21808
21809         * class.c (mono_class_create_from_typedef): Call
21810         mono_class_setup_parent() and mono_class_create_mono_type() before
21811         parsing the interfaces.
21812
21813 2004-12-02  Martin Baulig  <martin@ximian.com>
21814
21815         * metadata.c (generic_inst_cache): New static hashtable.
21816         (mono_metadata_lookup_generic_inst): New public function.
21817         (mono_metadata_inflate_generic_inst): New public function.
21818         (mono_metadata_parse_generic_inst): New public function.
21819         (do_mono_metadata_parse_generic_class): Use the new
21820         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
21821         since this'll also use the cache.
21822
21823         * reflection.c (mono_reflection_bind_generic_method_parameters):
21824         Use mono_metadata_lookup_generic_inst() to use the new cache.
21825
21826         * class.c (inflate_mono_type): Use
21827         mono_metadata_inflate_generic_inst() to inflate a generic
21828         instance; this'll also use the new cache.
21829
21830         * loader.c (method_from_methodspec): Use
21831         mono_metadata_parse_generic_inst() and
21832         mono_metadata_inflate_generic_inst() rather than parsing it
21833         manually, so we can use the new cache.
21834
21835 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
21836
21837         * threads.c (wait_for_tids): Do not incorrectly free threads when 
21838         the wait times out.
21839
21840 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
21841
21842         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
21843         iter->args based on whether parameters are passed in registers (i.e.
21844         MONO_ARCH_REGPARMS is defined)
21845
21846 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
21847
21848         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
21849         the exception message. Fixes #70070.
21850         (method_from_methodspec): Fix warnings.
21851
21852 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21853
21854         * process.c: (complete_path) return the path quoted
21855
21856 2004-12-01  Martin Baulig  <martin@ximian.com>
21857
21858         * class-internals.h (MonoGenericInst): New structure.
21859         (MonoGenericClass): Replaced `type_argc', `type_argv' and
21860         `is_open' with `MonoGenericInst *inst'.
21861         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
21862         `is_open' with `MonoGenericInst *inst'.
21863
21864 2004-11-30  Martin Baulig  <martin@ximian.com>
21865
21866         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
21867
21868         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
21869         to `generic_class_cache'.
21870
21871         * metadata.c
21872         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
21873         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
21874         (mono_generic_inst_is_valuetype): Renamed to
21875         mono_generic_class_is_valuetype().
21876
21877         * class-internals.h
21878         (MonoGenericInst): Renamed to MonoGenericClass.
21879         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
21880         (MonoClass): Renamed `generic_inst' to `generic_class'.
21881         (MonoGenericContext): Renamed `ginst' to `gclass'.
21882
21883         * object-internals.h
21884         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
21885
21886         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
21887         mono_reflection_generic_class_initialize().
21888
21889         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
21890         now known as "System.Reflection.MonoGenericClass".
21891         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
21892
21893 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
21894
21895         * class-internals.h: Added a flag field to MonoClass to cache the
21896         declarative security attributes actions associated with the class.
21897         * domain-internals.h: Added booleans to MonoJitInfo to cache the
21898         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
21899         applicable to the JITted method.
21900         * reflection.c|h: Added functions to extract (as flags) which security
21901         actions are available (declaratively) for a method, class or assembly.
21902         * metadata.c|h: Added functions to search the declarative security
21903         table in the metadata.
21904         
21905 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
21906
21907         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
21908         EXPORTEDTYPES are already in the class name cache, so there is no
21909         need to add extra code here to look at them. Just removes a bit of
21910         cruft.
21911
21912         (ves_icall_System_Environment_get_TickCount): No need for #if
21913         WINDOWS. We already have the code in io-layer.
21914
21915 2004-11-28  Martin Baulig  <martin@ximian.com>
21916
21917         * loader.c
21918         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
21919         Fixes gen-112.cs.
21920
21921 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
21922
21923         * assembly.c (do_mono_assembly_open): Instead of having a
21924         conditional WITH_BUNDLE, incorporate support for bundles here, by
21925         having a global `bundles' variable holding a pointer to the actual
21926         bundles. 
21927
21928         (mono_register_bundled_assemblies): New API call used by the
21929         bundle code. 
21930
21931         See mkbundle.1 for details.
21932         
21933 2004-11-27  Martin Baulig  <martin@ximian.com>
21934
21935         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
21936         the vtable for generic methods.
21937
21938 2004-11-26  Martin Baulig  <martin@ximian.com>
21939
21940         * metadata.c
21941         (mono_metadata_generic_method_hash): New public function.
21942         (mono_metadata_generic_method_equal): Likewise.
21943
21944         * class-internals.h
21945         (MonoGenericContainer): Added `GHashTable *method_hash'.
21946
21947         * reflection.c (ReflectionMethodBuilder): Added
21948         `MonoGenericContainer *generic_container'.
21949         (reflection_methodbuilder_to_mono_method): Don't create a new
21950         MonoGenericContainer each time we're called.
21951         (mono_reflection_bind_generic_method_parameters): Use
21952         `container->method_hash' to cache the results so we don't create a
21953         different method if we're called several times with the same
21954         arguments.
21955
21956         * loader.c (method_from_methodspec): Use the new
21957         `container->method_hash' here, too.
21958
21959 2004-11-26  Martin Baulig  <martin@ximian.com>
21960
21961         * class.c (inflate_generic_signature): Correctly compute
21962         `res->has_type_parameters'.
21963         (mono_class_vtable): Use the `has_type_parameters' flag to
21964         determine whether we're a generic method.
21965
21966         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
21967
21968 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
21969
21970         * object.c (mono_runtime_run_main): Fix a small memory leak.
21971
21972 2004-11-25  Martin Baulig  <martin@ximian.com>
21973
21974         * class.c (set_generic_param_owner): Fixed the loop.
21975
21976 2004-11-25  Martin Baulig  <martin@ximian.com>
21977
21978         * object.c (mono_class_vtable): Don't create any JIT wrappers for
21979         generic methods.
21980
21981 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
21982
21983         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
21984         names. Fixes #69787.
21985
21986 2004-11-24  Martin Baulig  <martin@ximian.com>
21987
21988         * class.c (mono_class_create_generic_2): If we don't have a
21989         `ginst->parent', inflate `gklass->parent' to get our parent.
21990
21991 2004-11-24  Martin Baulig  <martin@ximian.com>
21992
21993         * reflection.c (compare_genericparam): Correctly sort the
21994         GenericParam table; fixes #69779.
21995
21996 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
21997
21998         * reflection.c: When writing a PE file, don't create a huge
21999         buffer in memory. Just write the arrays we have to the file.
22000         This reduces memory usage.
22001
22002         * metadata-internals.h: MonoDynamicStream pefile is no longer used
22003         globally.
22004
22005 2004-11-17  Martin Baulig  <martin@ximian.com>
22006
22007         * class.c (mono_class_init): Don't setup `class->parent' for
22008         dynamic instances; moved this to mono_class_generic_2().
22009         (mono_class_create_generic): Also set `klass->inited' for dynamic
22010         generic instances.
22011         (mono_class_create_generic_2): Don't do anything for dynamic
22012         generic instances.  Set `klass->parent' here and also call
22013         mono_class_setup_parent() here. 
22014
22015         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
22016         `MonoType *parent' argument; set `ginst->parent' before calling
22017         mono_class_create_generic_2(), so we set the correct parent.
22018
22019 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
22020
22021         * reflection.c: allow getting attributes from ModuleBuilder
22022         (used by ikvm).
22023
22024 2004-11-17  Martin Baulig  <martin@ximian.com>
22025
22026         * class.c (mono_class_create_from_typedef): If a type parameter is
22027         inherited from an outer class, set its owner to that class.
22028
22029 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
22030
22031         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
22032           for (int*) written size. This fixes bug #69592.
22033
22034 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
22035
22036         * icall.c: Added IsAuthenticodePresnet internal call.
22037         * image.c|h: New function that check a MonoImage for an Authenticode
22038         signature in the certificate PE data directory.
22039         * security.c|h: New internal call to ask the runtime if an 
22040         Authenticode signature seems referenced in the PE header.
22041
22042 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
22043
22044         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
22045
22046         * reflection.c (mono_image_create_pefile): Free the assembly streams
22047         after writing out the assembly file.
22048
22049         * object.c (mono_runtime_run_main): Fix small memory leak.
22050
22051         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
22052         property access modifiers. Fixes #69389.
22053
22054 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
22055
22056         * domain.c, object.c, object-internals.h, domain-internals.h,
22057         object.h, marshal.c: keep dynamic code info per domain.
22058
22059 2004-11-15  Martin Baulig  <martin@ximian.com>
22060
22061         * class.c (mono_type_get_name_recurse): Put type arguments in
22062         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
22063         see bug #68387.
22064
22065 2004-11-15  Martin Baulig  <martin@ximian.com>
22066
22067         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
22068         (mono_class_setup_vtable): When computing `the_cname' for a
22069         generic instance, don't include the namespace since we'd otherwise
22070         add it twice.
22071
22072 2004-11-15  Martin Baulig  <martin@ximian.com>
22073
22074         * class.c (mono_class_create_generic): Changed return type to void.
22075         (mono_class_create_generic_2): New public function; setup
22076         `class->method', `class->field' and `class->interfaces' here
22077         instead of in mono_class_init().
22078
22079         * class.h (mono_class_create_generic): Moved to class-internals.h.
22080
22081 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
22082
22083         * reflection.c (mono_image_create_pefile): take a file HANDLE.
22084         rather than writing to memory, write to this file. Right now,
22085         we are just writting into a buffer, and copying that. However
22086         we can avoid the buffer later.
22087
22088         (mono_dynamic_stream_reset): new function
22089
22090         * icall.c, object-internals.h: update for the above.
22091
22092 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
22093
22094         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
22095         have been using gc'd memory. First it is slower, unlikely
22096         the comment in the source code said, secondly, it increases
22097         our footprint to do it in the gc.
22098
22099         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
22100         the method so that it does not have to copy to managed code.
22101
22102 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
22103
22104         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
22105
22106 2004-11-12  Martin Baulig  <martin@localhost>
22107
22108         * reflection.c (mono_image_create_token): Allow generic method
22109         definitions here, since they may appear in an `.override'; see
22110         gen-98/gen-99 for an example.
22111
22112 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
22113
22114         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
22115         #69365.
22116
22117         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
22118         descriptive.
22119
22120 2004-11-11  Martin Baulig  <martin@ximian.com>
22121
22122         * class.c (mono_class_setup_vtable): In an explicit interface
22123         implementation, the method name now includes the arity.
22124
22125 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
22126
22127         * object.c (mono_array_full_copy): Fix warning.
22128
22129 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
22130
22131         * appdomain.c: Removed look_for_method_by_name(). Use the new method
22132         mono_class_get_method_from_name() instead.
22133         
22134         * class-internals.h: Added two new types of wrappers. 
22135         Added MonoRemotingTarget enum. Added new trampoline function type, which
22136         takes an additional MonoRemotingTarget value as parameter, so it is
22137         possible to request a trampoline for a specific target.
22138         
22139         * class.c: Added new mono_class_get_method_from_name() method.
22140         
22141         * class.h: In MonoRemoteClass, we can have now to vtables, one for
22142         general remoting sinks and one specific for cross domain calls.
22143         
22144         * debug-helpers.c: Added new wrapper names.
22145         
22146         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
22147         of a remote class.
22148         
22149         * image.c: Porperly delete value objects form the remoting invoke hashtable.
22150         
22151         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
22152         with several other methods (mono_marshal_get_xappdomain_dispatch,
22153         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
22154         and others) can generate a fast remoting wrapper for cross domain calls.
22155         More information can be found in docs/remoting.
22156         Other changes: Removed mono_find_method_by_name, and used
22157         mono_class_get_method_from_name instead.
22158         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
22159         is stored in the remoting invoke hashtable.
22160         
22161         * marshal.h: published the new method for getting the xdomain wrapper,
22162         and also added a method for getting the adequate wrapper for a given
22163         method and target.
22164         
22165         * object-internals.h, object.c: Added a couple of methods for capying and
22166         cloning arrays.
22167         Modified mono_install_remoting_trampoline, which takes the new remoting
22168         trampoline that has a remoting target as parameter.
22169         mono_class_proxy_vtable now also takes a remoting target as parameter, and
22170         will return the most suitable vtable for the target.
22171         Added mono_remote_class_vtable, which returns the vtable of a remote class
22172         (which can be the normal remoting vtable or the xdomain vtable).
22173         
22174         * threads.c: the xdomain invoke and dispatch wrappers must also be
22175         protected against interruptions.
22176
22177 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22178
22179         * icall.c: use memmove in BlockCopyInternal when the source and
22180         destination arrays are the same.
22181
22182 2004-11-09  Martin Baulig  <martin@ximian.com>
22183
22184         * class-internals.h (MonoGenericContainer): Removed `method' and
22185         `signature', replaced them with `is_method' and `is_signature'
22186         flags.  Added `context'.
22187
22188         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
22189         instead of a `MonoGenericContainer *'.
22190
22191         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
22192         for dynamic type parameters.
22193         (mono_metadata_load_generic_params): Setup `container->context'.
22194
22195         * reflection.c (mono_reflection_setup_generic_class): Setup
22196         `tb->generic_container->context'.
22197         (do_mono_reflection_bind_generic_parameters): Use
22198         mono_class_inflate_generic_type() to correctly inflate types,
22199         rather than using our own hack just for MONO_TYPE_VAR.
22200
22201 2004-11-09  Martin Baulig  <martin@ximian.com>
22202
22203         * class.c (mono_class_inflate_generic_method): Small fix; don't
22204         crash here.
22205
22206         * icall.c
22207         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
22208         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
22209         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
22210         (ves_icall_Type_BindGenericParameters): Likewise.
22211         (ves_icall_Type_get_IsGenericInstance): Likewise.
22212         (ves_icall_Type_GetGenericParameterPosition): Likewise.
22213         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
22214         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
22215         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
22216
22217 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
22218
22219         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
22220         assembly versions and public key tokens. Fixes #69113.
22221
22222 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
22223
22224         * metadata.c: fix bug introduced with the type cache changes
22225         on 2004-11-06.
22226
22227 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
22228
22229         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
22230         the MonoClass pointer instead of the token in exception clauses.
22231         * reflection.c: updates for the above and make the code not depend
22232         on the structure of MonoExceptionClause.
22233
22234 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
22235
22236         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22237         Add support for dynamic assemblies. Fixes #69114.
22238
22239         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
22240
22241 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
22242
22243         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
22244         since most only those methods use it. the code member of
22245         MonoMethodPInvoke was dead, so that can be removed too. Also,
22246         remove inline_count (again, not used), and move slot so that it
22247         can share bits with some other flags. This saves 8 bytes in the
22248         structure and gives us about 50 kb back for mcs helloworld.cs
22249
22250         * *.[ch]: Do naming changes for the above.
22251
22252         * loader.c (mono_method_get_header): Lazily init the header
22253         on first access.
22254         (mono_get_method_from_token): don't init the header here
22255         (mono_free_method): the header may never be allocated
22256
22257         Overall, this saves 150 kb of unmanaged allocations
22258         for mcs helloworld.cs. That accounts for 10% of the unmanaged
22259         memory at runtime.
22260         
22261         * loader.c, loader.h (mono_method_get_header): new accessor.
22262
22263         * *.[ch]: use the above method. Prepares us to lazily load
22264         the header.
22265
22266         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
22267         three warnings, which are actual bugs (see 69206).
22268
22269         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
22270         unused. Saves a cool 4 bytes / method.
22271
22272 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
22273
22274         * metadata.c (builtin_types): Add types for System.Object here.
22275         (mono_metadata_parse_type_full): Cache MonoType*'s that are
22276         for a class or valuetype from klass->this_arg or klass->byval_arg.
22277
22278         On mcs for a hello world, this gets us down from 21836 MonoType's
22279         to 14560.
22280
22281         (mono_metadata_free_type): Account for the above change.
22282
22283 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
22284
22285         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
22286         exception instead of asserting if name is null.
22287         (ves_icall_System_AppDomain_GetData): Ditto.
22288
22289 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
22290
22291         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
22292         EnumBuilder.
22293
22294         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
22295         Return NULL when the domain does not have entry_assembly set.
22296
22297         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
22298         Add a 'resource_modules' argument.
22299         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
22300
22301         * reflection.c (mono_reflection_create_runtime_class): Move setting
22302         of wastypebuilder here, so mono_get_type_object () returns a MonoType
22303         for enums too.
22304
22305         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
22306         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
22307         Throw an ArgumentNullException if 'ptr' is null.
22308
22309         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
22310         assemblies here. Fixes #69020.
22311
22312 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
22313
22314         * reflection.c (build_compressed_metadata): Fix the previous patch for
22315         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
22316         the stack.
22317
22318 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
22319
22320         * assembly.c (mono_assembly_names_equal): Allow a match if one of
22321         the cultures is false. Fixes #69090.
22322
22323         * reflection.c (build_compressed_metadata): Fix invalid memory read 
22324         detected by valgrind.
22325         
22326         * reflection.c (mono_reflection_get_type): Avoid triggering a 
22327         TypeResolve multiple times for the same type. Fixes #65577.
22328
22329 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
22330
22331         * marshal.c: Avoid using ldftn to call managed functions. It is
22332         much slower than just a call.
22333
22334         * reflection.c (mono_module_get_object): free the basename we
22335         allocate here from glib.
22336         
22337         * reflection.c (ensure_runtime_vtable): make sure to free
22338         overrides.  Also, we were allocating an array of MonoMethod not an
22339         array of MonoMethod*.
22340
22341         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
22342
22343         * image.c (mono_image_close): free image->guid here.
22344
22345 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
22346
22347         * reflection.c: Fix some spec conformance issues with the PE file
22348         structures so mcs compiled apps run on the Net 2.0 beta.
22349
22350 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
22351
22352         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
22353         Implement this. Fixes #67264.
22354
22355         * debug-helpers.h debug-helpers.c marshal.c: Move 
22356         mono_find_method_by_name to debug-helpers.c.
22357
22358 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
22359
22360         * object.c (mono_release_type_locks): type_initialization_hash is
22361         a GHashTable.
22362
22363         * reflection.c object.c object-internals.h: Fix warnings.
22364
22365         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
22366         without accessors. Fixes #61561.
22367
22368         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
22369         application base from the root domain if not set. Fixes #65641.
22370         (mono_runtime_init): Fix warning.
22371
22372 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22373
22374         * appdomain.c: call mono_thread_pool_init.
22375         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
22376         of worker threads based on the number of CPUs and the environment
22377         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
22378         for non-windows (windows) systems.
22379
22380 2004-10-27  Chris Toshok  <toshok@ximian.com>
22381
22382         * mono-debug-debugger.c (write_class): don't call mono_class_init
22383         here, as even with the check for (!klass->init_pending), we get
22384         into a situation where we're hitting cycles in class
22385         initialization.  Fixes #68816.
22386
22387 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
22388
22389         * image.c: Avoid overwriting values in the loaded_images_hash when an
22390         assembly is loaded multiple times. Fixes #61152.
22391
22392         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
22393         so multiple satellite assemblies for the same name can be loaded.
22394         Fixes #68259.
22395
22396         * mono_domain_assembly_preload: Actually return the loaded assembly, 
22397         not NULL.
22398
22399         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
22400         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
22401
22402         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
22403         pending finalizers are not invoked after the appdomain has been 
22404         unloaded. Fixes #67862.
22405
22406 2004-10-22  Martin Baulig  <martin@ximian.com>
22407
22408         * mono-debug-debugger.c
22409         (mono_debugger_runtime_invoke): Don't box valuetypes.
22410
22411 2004-10-22  Chris Toshok  <toshok@ximian.com>
22412
22413         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
22414         don't hide private methods.
22415
22416 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
22417
22418         * icall.c: Allows the runtime to "share" (when known) the public key
22419         token of an assembly. This avoid the need to recalculate the token 
22420         (from the public key) in managed code.
22421
22422 2004-10-21  Chris Toshok  <toshok@ximian.com>
22423
22424         * debug-helpers.c (append_class_name): argh, revert last patch.
22425         
22426 2004-10-21  Chris Toshok  <toshok@ximian.com>
22427
22428         * debug-helpers.c (append_class_name): use '+' as the delimiter,
22429         not '/', so that it matches what the debugger uses to look up
22430         methods.
22431
22432 2004-10-21  Martin Baulig  <martin@ximian.com>
22433
22434         * mono-debug-debugger.c (mono_debugger_throw_exception): New
22435         public method; this is called each time an exception is thrown and
22436         allows the debugger to use exception catch points.
22437
22438 2004-10-21  Martin Baulig  <martin@ximian.com>
22439
22440         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
22441         the stack pointer and the exception object in some struct and pass
22442         that to the debugger.
22443
22444 2004-10-21  Chris Toshok  <toshok@ximian.com>
22445
22446         * mono-debug-debugger.c (do_write_class): add instance/static
22447         event support.  We don't expose "raise" or "other" yet.
22448         (event_is_static): new method.
22449
22450 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
22451
22452         * mono-debug-debugger.c
22453         (mono_debugger_handle_exception): Remove
22454         bogus return value for fussy compilers.
22455
22456 2004-10-20  Martin Baulig  <martin@ximian.com>
22457
22458         * mono-debug-debugger.c
22459         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
22460         (mono_debugger_handled_exception): Likewise.
22461
22462 2004-10-20  Martin Baulig  <martin@ximian.com>
22463
22464         * mono-debug-debugger.h (MonoDebuggerEvent): Added
22465         MONO_DEBUGGER_EVENT_EXCEPTION.
22466
22467         * mono-debug-debugger.c (mono_debugger_handle_exception): New
22468         public function to send the debugger a notification for an
22469         exception and inform it about a catch/finally clause.
22470
22471 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
22472
22473         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
22474         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
22475         fix 2.95 build. 
22476
22477         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
22478
22479 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
22480
22481         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
22482         marshalled as [In,Out]. Fixes #58325.
22483
22484 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
22485
22486         * reflection.c (mono_method_body_get_object): Implement some fields.
22487
22488 2004-10-12  Martin Baulig  <martin@ximian.com>
22489
22490         * reflection.c (mono_reflection_bind_generic_parameters): Small
22491         fix, correctly retrieve our parent from a generic instance.
22492
22493 2004-10-12  Martin Baulig  <martin@ximian.com>
22494
22495         * metadata.c (mono_metadata_generic_param_equal): We always have
22496         an owner.
22497
22498         * class.c
22499         (mono_class_from_generic_parameter): We need to have an owner.
22500         (my_mono_class_from_generic_parameter): Likewise.
22501
22502         * reflection.c (mono_reflection_setup_generic_class): Renamed to
22503         mono_reflection_create_generic_class() and added a new
22504         mono_reflection_setup_generic_class().  
22505         (mono_reflection_initialize_generic_param): If we're a nested
22506         generic type and inherited from the containing class, set our
22507         owner to the outer class.
22508
22509 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
22510
22511         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
22512
22513         * reflection.c (mono_method_body_get_object): New function to create
22514         a MethodBody object.
22515
22516         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
22517
22518 2004-10-11  Martin Baulig  <martin@ximian.com>
22519
22520         * metadata.c (_mono_metadata_type_equal): Renamed to
22521         do_mono_metadata_type_equal() and made static.
22522
22523 2004-10-11  Martin Baulig  <martin@ximian.com>
22524
22525         * appdomain.c: Bump corlib version number to 28.
22526
22527 2004-10-10  Martin Baulig  <martin@ximian.com>
22528
22529         * class-internals.h
22530         (MonoGenericInst): Added `MonoGenericContainer *container'.
22531         (MonoGenericMethod): Likewise.
22532         (MonoGenericContext): Likewise.
22533         (MonoGenericParam): Added `MonoGenericContainer *owner'.
22534
22535         * metadata.c
22536         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
22537         (do_mono_metadata_parse_generic_inst): Likewise.
22538         (mono_metadata_parse_type_full): New public method.  This is the actual
22539         mono_metadata_parse_type() implementation - with an additional
22540         `MonoGenericContainer *' argument.
22541         (mono_metadata_parse_array_full): Likewise.
22542         (mono_metadata_parse_signature_full): Likewise.
22543         (mono_metadata_parse_method_signature_full): Likewise.
22544         (mono_metadata_parse_mh_full): Likewise.
22545         (mono_type_create_from_typespec): Likewise.
22546         (mono_metadata_interfaces_from_typedef_full): New public method;
22547         this is similar to the other _full() methods, but we take a
22548         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
22549         (mono_metadata_parse_generic_param): Take an additional
22550         `MonoGenericContainer *' argument and lookup the MonoGenericParam
22551         from that container.
22552         (mono_metadata_generic_param_equal): New static method to compare
22553         two type parameters.
22554         (_mono_metadata_type_equal): New static method; takes an
22555         additional `gboolean signature_only' argument - if true, we don't
22556         compare the owners of generic parameters.
22557         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
22558         with a TRUE argument - do a signature-only comparision.
22559
22560         * loader.c: Use the new _full() methods and pass the
22561         MonoGenericContainer to them.
22562
22563         * object-internals.h (MonoReflectionTypeBuilder): Added
22564         `MonoGenericContainer *generic_container' field.
22565         (MonoReflectionMethodBuilder): Likewise.
22566
22567 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
22568
22569         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
22570         case initial images of dynamic assemblies.
22571
22572         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
22573
22574         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
22575
22576         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
22577         length of event->other array.
22578         (typebuilder_setup_events): Ditto.
22579
22580         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
22581         'assembly_by_name' and add an 'assemblies' list.
22582
22583         * assembly.h assembly.c: Add a new search hook for determining whenever
22584         an assembly is already loaded. Use this instead of searching in the
22585         loaded_assemblies list.
22586
22587         * domain.c appdomain.c: Implement the new search hook so loaded 
22588         assemblies are now scoped by appdomain. Fixes #67727.
22589
22590 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
22591
22592         * threads.c (mono_thread_attach): Initialize synch_lock field so
22593         mono_thread_detach works again.
22594
22595         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
22596         'lib' too. Fixes #63130.
22597
22598 2004-10-06  Jackson Harper  <jackson@ximian.com>
22599
22600         * culture-info-tables.h: regenerated.
22601
22602 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
22603
22604         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
22605         implemented by other interfaces in the result. Fixes #65764.
22606         
22607         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22608         Handle unloadable modules without crashing.
22609
22610         * image.c (load_modules): Revert the previous patch since modules must
22611         have a fixed index inside the array.
22612         
22613         * image.c (load_modules): Don't include native modules in the modules
22614         array.
22615
22616 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
22617
22618         * reflection.h: Add param_defaults field.
22619
22620         * reflection.c: Add support for parameter defaults in dynamic methods.
22621         Fixes #64595.
22622
22623         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
22624         an empty string when a type has no namespace. Fixes #64230.
22625
22626 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
22627
22628         * tabledefs.h: Added "internal" security actions to support non-CAS
22629         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
22630         Note: they do not seems to be used anymore in 2.0 (new metadata format)
22631
22632 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
22633
22634         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
22635         constructor of abstract class. Fixes #61689.
22636
22637 2004-10-04  Martin Baulig  <martin@ximian.com>
22638
22639         * class-internals.h (MonoGenericContainer): New type.
22640         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
22641         `MonoGenericContainer *generic_container'.
22642         (MonoClass): Replaced `gen_params' and `num_gen_params' with
22643         `MonoGenericContainer *generic_container'.
22644
22645         * metadata.c (mono_metadata_load_generic_params): Return a
22646         `MonoGenericContainer *' instead of a `MonoGenericParam *';
22647         removed the `num' argument.
22648
22649 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
22650
22651         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
22652         for dynamic images.
22653
22654         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
22655         machine fields.
22656
22657         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
22658
22659         * reflection.c: Save pe_kind and machine values into the generated
22660         image file.
22661
22662         * appdomain.c: Bump corlib version number.
22663
22664         * object-internals.h: Reorganize layout of LocalBuilder.
22665
22666         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
22667         New helper function.
22668
22669         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
22670         created MonoType for dynamic types. Fixes #66180.
22671
22672 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
22673
22674         * threadpool.c: the ares hashtable needs a critical section around it.
22675         this prevents some nasty segfaults
22676
22677 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
22678
22679         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
22680         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
22681         bug 67324).
22682         
22683 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
22684
22685         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
22686         
22687 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
22688
22689         * image.c: Always canonicalize image file names, to avoid loading
22690         the same assembly twice when referenced using a relative path.
22691
22692 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
22693
22694         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
22695
22696         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
22697
22698         * marshal.c: Fix warnings.
22699
22700 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
22701
22702         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
22703         attempting to marshal the delegate_trampoline as the method_addr.
22704         This patch has a static hashtable of marshalled delegates so that 
22705         we can map delegate_trampoline addresses back to delegates.  This
22706         allows a delegate passed to managed code to be passed back into native
22707         code.  Fixes #67039
22708
22709 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
22710
22711         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
22712
22713         * reflection.c (method_encode_code): Align method headers properly.
22714         Fixes #66025.
22715
22716 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
22717
22718         * marshal.c: In the runtime invoke wrapper, reset the abort
22719         exception if it is cached. This avoids the automatic rethrowal of 
22720         the exception after the catch of the wrapper. Also check for pending
22721         interruptions before calling the managed method. This is done using
22722         the new method emit_thread_force_interrupt_checkpoint, since the
22723         normal checkpoint method is ignored when running the invoke wrapper.
22724         * object.c: If the abort exception is rethrown, set the abort_exc
22725         field of the thread, so it will be rethrown aftere every catch.
22726         * threadpool.c: Only run an interruption checkpoint if what has been
22727         requested is a stop of the thread (aborts will be ignored).
22728         * threads.c: By default, a thread will now never be interrumped while
22729         running the runtime invoke wrapper (this ensures that runtime_invoke
22730         will always return to the caller if an exception pointer is provided).
22731         There is a new special method mono_thread_force_interruption_checkpoint()
22732         to force an interruption checkpoint even if running a protected
22733         wrapper, which is used by the same runtime invoke wrapper to do a check
22734         at a safe point.
22735
22736 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
22737
22738         * object.c, object-internals.h: Implemented mono_release_type_locks,
22739         which releases the cctor locks held by a thread.
22740         * threads.c, threads.h: In thread_cleanup, release cctor locks held
22741         by a thread. Added mono_thread_exit() method to be used to safely stop
22742         a thread.
22743
22744 2004-09-28  Raja R Harinath  <rharinath@novell.com>
22745
22746         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
22747         Move null check before dereference.  Avoid indexing beyond the end
22748         of the 'modules' array.
22749
22750 2004-09-28  Raja R Harinath  <rharinath@novell.com>
22751
22752         * metadata-internals.h (MonoImage): Add module_count field.
22753         * image.c (load_modules): Set image->module_count.
22754         (mono_image_load_file_for_image): Use image->module_count.
22755         * reflection.c (mono_image_load_module): Append to image->modules array 
22756         of dynamic assembly.
22757         (mono_module_get_object): Fix loop to actually increment index.
22758         Use image->module_count.
22759         * assembly.c (mono_assembly_load_references): Use image->module_count.
22760         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
22761         Likewise.
22762
22763 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
22764
22765         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
22766         Avoid assert on generic types.
22767
22768 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
22769
22770         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
22771
22772         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
22773
22774         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
22775         function to convert a MarshalSpec structure to its managed counterpart.
22776
22777         * reflection.c: Fix warnings.
22778         
22779         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
22780         field.
22781
22782         * icall.c (mono_create_icall_signature): Fix build.
22783
22784 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
22785
22786         * icall.c: Add MakePointType icall.
22787
22788         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
22789         warnings.
22790
22791 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22792
22793         * threadpool.c: reuse allocated slots in the queue.
22794
22795 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
22796
22797         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
22798
22799         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
22800
22801         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
22802         previous change.
22803
22804         * tabledefs.h: Add constants for pinvoke attributes BestFit and
22805         ThrowOnUnmappableChar.
22806
22807         * icall.c (ves_icall_Type_GetPacking): New icall.
22808
22809 2004-09-24  Martin Baulig  <martin@ximian.com>
22810
22811         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
22812
22813 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22814
22815         * appdomain.c:
22816         (mono_domain_set): allow setting a domain that is being unloaded.
22817         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
22818         being unloaded.
22819
22820 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
22821
22822         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
22823         the GetCustomAttributes icall.
22824
22825 2004-09-23  Martin Baulig  <martin@ximian.com>
22826
22827         * object-internals.h (MonoReflectionGenericParam): Replaced
22828         'has_ctor_constraint', `has_reference_type' and `has_value_type'
22829         with `guint32 attrs'.
22830
22831 2004-09-23  Martin Baulig  <martin@ximian.com>
22832
22833         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
22834
22835 2004-09-23  Martin Baulig  <martin@ximian.com>
22836
22837         * object-internals.h (GenericParameterAttributes): New enum.
22838
22839 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
22840
22841         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
22842         
22843         * class.c (init_events): Fill out event->other field.
22844
22845         * class.c: Fix warnings.
22846
22847         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
22848
22849 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
22850
22851         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
22852         walk which doesn't supply the IL offset.
22853
22854 2004-09-22  Martin Baulig  <martin@ximian.com>
22855
22856         * reflection.c (mono_reflection_setup_internal_class): If we're
22857         System.ValueType, System.Object or System.Enum, set
22858         `klass->instance_size' and create the vtable.
22859         (mono_reflection_create_internal_class): If we're an enum type,
22860         get the base class from our current corlib.
22861
22862 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
22863
22864         * reflection.h (MonoResolveTokenError): New type.
22865
22866         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
22867         icall.
22868
22869         * icall.c: Add an 'error' argument to the ResolveToken icalls.
22870
22871 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
22872
22873         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
22874         Support also calling constructors, but only for already allocated objects.
22875
22876 2004-09-17  Geoff Norton <gnorton@customerdna.com>
22877
22878         * reflection.c (type_get_qualified_name): If the klass is null
22879         return the typename to avoid a NullRefEx.
22880         (encode_cattr_value): Get the qualified name of the boxed type,
22881         not the underlying enumtype.  Fixes #62984.
22882
22883 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
22884
22885         * marshal.c: Fix problems with previous checkin.
22886
22887 2004-09-21    <vargaz@freemail.hu>
22888
22889         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
22890         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
22891
22892         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
22893
22894 2004-09-21  Geoff Norton <gnorton@customerdna.com>
22895
22896         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
22897         should only return a type for pointers, arrays, and passbyref types.
22898         Fixes bug #63841.
22899
22900 2004-09-21  Martin Baulig  <martin@ximian.com>
22901
22902         * domain.c (mono_debugger_check_runtime_version): New public
22903         function.
22904
22905         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
22906
22907 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
22908
22909         * reflection.c: Added missing sort to the declarative security 
22910         attributes table. MS implementation stops seeing the attributes if the
22911         token number regress in the table (as shown by ildasm and permview).
22912
22913 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
22914
22915         * object-internals.h (MonoReflectionModule): Add 'token' field.
22916         
22917         * reflection.c (mono_reflection_get_token): Add support for Module
22918         and Assembly.
22919         (mono_module_get_object): Set 'token' field.
22920         (mono_module_file_get_object): Set 'token' field.
22921
22922         * icall.c: Add new Assembly and Module icalls.
22923
22924         * appdomain.c: Bump corlib version.
22925
22926 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
22927
22928         * loader.h loader.c class.h class.c: Add helper functions for obtaining
22929         tokens of metadata objects.
22930
22931         * reflection.h reflection.c (mono_reflection_get_token): New function
22932         to obtain the token of a metadata object.
22933
22934         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
22935
22936 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
22937
22938         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
22939         
22940         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
22941
22942 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
22943
22944         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
22945         * object-internals.h: Added 3 MonoArray* members to MonoReflection
22946         AssemblyBuilder to access the permissions set in the class lib.
22947         * reflection.c: Added security attributes encoding step in 
22948         mono_image_build_metadata.
22949         * tabledefs.h: Added new security actions defined in 2.0:
22950         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
22951
22952 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
22953
22954         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
22955         macro parameter.
22956
22957 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
22958  
22959         * locales.c: nullify the ICU_collator member of CompareInfo when it is
22960           finalized. There where random SIGSEVs at program termination, when
22961           an object being finalized was trying to do a string comparison and
22962           the current culture was already finalized.
22963  
22964 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22965
22966         * threads.c: call thread_cleanup before finishing the thread if we get
22967         there.
22968
22969 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
22970
22971         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
22972         assemblies from the parent. Fixes #65665.
22973
22974 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
22975
22976         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
22977         modifiers.
22978
22979 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
22980
22981         * reflection.h: add prototype for mono_get_dbnull_object
22982         * reflection.c: add prototypes for get_default_param_value_blobs 
22983         and mono_get_object_from_blob for fussier compilers
22984
22985 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
22986  
22987         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
22988         false deadlock checks in class initialization.
22989  
22990 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
22991
22992         * image.c (mono_image_addref): Fix comment.
22993
22994         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
22995         possible.
22996
22997 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
22998
22999         * reflection.c (mono_param_get_objects): Modified to return
23000         ParameterInfo.DefaultValue object.
23001
23002         (get_default_param_value_blobs):
23003         (mono_get_object_from_blob):
23004         (mono_get_dbnull_object): New helper routines. 
23005
23006         * object.c (mono_get_constant_value_from_blob): New helper routine
23007         carved out from get_default_field_value ()
23008
23009         * object-internals.h (mono_get_constant_value_from_blob): Added
23010         function declaration.
23011
23012 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
23013
23014         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
23015         referenced assemblies. Fixes #62135.
23016
23017         * exception.h exception.c (mono_get_exception_file_not_found2): New
23018         helper function.
23019
23020 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
23021
23022         * class.h class.c: Add mono_type_get_underlying_type ().
23023
23024 2004-09-09  Geoff Norton <gnorton@customerndna.com>
23025
23026         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
23027         Fix GetTypes() to support dynamically created assemblies.
23028
23029 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
23030
23031         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
23032         
23033         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
23034         previous patch.
23035
23036         * reflection.h reflection.c loader.c: Allow dynamic construction of
23037         pinvoke methods. Fixes #65571.
23038         
23039         * reflection.c (mono_reflection_get_type): Revert previous change since
23040         it causes regressions.
23041
23042 2004-09-08  Martin Baulig  <martin@ximian.com>
23043
23044         * class.c (class_compute_field_layout): Don't call
23045         mono_class_layout_fields() for open generic instances.
23046
23047 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
23048         * threads.c appdomain.c: fix typo in GC macro
23049
23050 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23051
23052         * threads.c: don't call mono_thread_detach() in start_wrapper(),
23053         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
23054
23055 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
23056
23057         * image.c (mono_image_close): Applied patch from 
23058         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
23059         assembly is loaded multiple times from data.
23060         
23061         * image.c (mono_image_open): Fix warning.
23062
23063 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23064
23065         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
23066         once. Fixes #58334.
23067         
23068         * reflection.c (mono_reflection_create_runtime_class): Initialize
23069         klass->nested_classes. Fixes #61224.
23070
23071 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
23072
23073         * threads.c: sched_yield() on exit, to allow threads to quit.
23074
23075 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23076
23077         * object.c (mono_unhandled_exception): Remove leftover debug code.
23078
23079 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
23080
23081         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
23082
23083 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
23084
23085         * marshal.c (emit_marshal_array): Really null terminate string arrays.
23086         
23087         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
23088
23089 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23090
23091         * marshal.c (emit_marshal_array): Null terminate string arrays.
23092         
23093         * marshal.c (raise_auto_layout_exception): Fix warning.
23094
23095         * reflection.c (mono_param_get_objects): Initialize the default value
23096         with DBNull.Value, not null. Fixes #62123.
23097
23098 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
23099
23100         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
23101         throw an exception with a cute explanation.
23102
23103 2004-09-06  Dick Porter  <dick@ximian.com>
23104
23105         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
23106         Close the new process's thread handle, as we don't use it.  The
23107         handle stays around forever otherwise.
23108
23109 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23110
23111         * object.c (arith_overflow): Fix warning.
23112
23113         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
23114         calling conventions in method refs. Fixes #65352.
23115
23116         * reflection.c: Fix warnings.
23117
23118 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23119
23120         * icall.c: Add a new icall for Array.Clear
23121
23122 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
23123
23124         * object.c: When allocating an array, we have to throw
23125         an overflow exception if any of the lengths are < 0.
23126
23127 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
23128
23129         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
23130         properly. Also move implementation of string array marshalling to 
23131         managed code. Fixes #42316.
23132
23133 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23134
23135         * assembly.c: provide more information when loading an assembly fails.
23136
23137 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23138
23139         * filewatcher.c: don't expect the development fam package to be
23140         installed.
23141
23142 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
23143
23144         * marshal.c: Make a copy of the signature cookie since it will be
23145         freed by the caller.
23146         
23147         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
23148
23149         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
23150
23151         * metadata.c (mono_metadata_free_marshal_spec): New function to free
23152         marshal specs.
23153
23154         * marshal.c: More refactoring.
23155         
23156         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
23157         smaller functions.
23158
23159 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
23160
23161         * object.c: In mono_message_invoke, fill the output parameter array after
23162           calling the managed method (it was done before the call). This fixes
23163           bug #59299.
23164
23165 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23166
23167         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
23168         as well.
23169
23170 2004-09-02  Martin Baulig  <martin@ximian.com>
23171
23172         * class.c (mono_class_instance_size): Don't allow generic type
23173         definitions or open generic instances.
23174         (mono_class_array_element_size): If we're a value type, call
23175         mono_class_instance_size() on the original class.
23176
23177         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
23178         handle generic instances.
23179
23180         * mono-debug-debugger.c (write_type): Handle generic instances
23181         like classes.
23182
23183 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
23184
23185         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
23186         the allocation request fails. Fixes #65089.
23187
23188         * object.c (mono_runtime_free_method): Do not call mono_free_method.
23189         
23190         * object.c (mono_runtime_free_method): New function to free a dynamic
23191         method.
23192
23193         * marshal.c (mono_delegate_free_ftnptr): New function to free the
23194         delegate trampoline.
23195
23196         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
23197         with hasthis as dynamic,
23198
23199         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
23200
23201         * domain.c (mono_jit_info_table_remove): New function to remove an
23202         entry from the jit info table.
23203
23204         * class-internals.h (MonoMethod): Add 'dynamic' field.
23205
23206         * loader.c: Fix warnings.
23207
23208 2004-09-01  Martin Baulig  <martin@ximian.com>
23209
23210         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
23211         instead of mono_debugger_lock() because the latter one is a no-op
23212         unless running in the debugger.
23213
23214 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23215
23216         * class.c (class_compute_field_layout): Classes with auto-layout or
23217         reference fields are not blittable.
23218         
23219 2004-09-01  Dick Porter  <dick@ximian.com>
23220
23221         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
23222         mono_image_get_filename() to get the assembly location.
23223
23224         * icall.c:
23225         * metadata.h: Fix compile warnings
23226
23227 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
23228
23229         * class.c (class_compute_field_layout): System.Object is blittable.
23230
23231         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
23232         as in/out. Fixes #59909.
23233
23234 2004-09-01  Martin Baulig  <martin@ximian.com>
23235
23236         * metadata.h (MONO_TYPE_ISREFERENCE): Call
23237         mono_metadata_generic_inst_is_valuetype() if we're a generic
23238         instance to check whether our underlying type is a reference type.
23239
23240 2004-09-01  Martin Baulig  <martin@ximian.com>
23241
23242         * metadata.c (mono_type_size): If we're a generic instance, call
23243         mono_class_value_size() for value types.
23244
23245 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
23246
23247         * marshal.c: Implement more custom marshalling functionality. Fixes
23248         #64915.
23249
23250 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
23251
23252         * mono-debug.c, debug-mono-symfile.c: add some locking love.
23253
23254 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
23255
23256         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
23257
23258         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
23259
23260         * icall.c: Fix some warnings.
23261
23262         * threads.c (abort_appdomain_thread): Fix unref errors.
23263         (mono_thread_current): Fix THREAD_DEBUG define.
23264
23265 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
23266
23267         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
23268
23269         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
23270
23271 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
23272
23273         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
23274         string arrays.
23275
23276 2004-08-28  Martin Baulig  <martin@ximian.com>
23277
23278         * metadata.c
23279         (mono_metadata_generic_inst_is_valuetype): New public function.
23280
23281         * metadata.h (MONO_TYPE_ISSTRUCT): Call
23282         mono_metadata_generic_inst_is_valuetype() if we're a generic
23283         instance to check whether our underlying type is a valuetype.
23284
23285 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
23286
23287         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
23288         #63768.
23289
23290 2004-08-25  Martin Baulig  <martin@ximian.com>
23291
23292         * loader.c (mono_get_method_from_token): Abstract methods can also
23293         be generic and thus have type parameters.
23294
23295         * metadata-internals.h
23296         (MonoDynamicImage): Added `GPtrArray *gen_params'.
23297
23298         * reflection.c (mono_image_get_generic_param_info): Don't create a
23299         metadata row, just add an entry to the `gen_params' array.
23300         (build_compressed_metadata): Sort the `gen_params' array and then
23301         actually create the metadata.
23302
23303 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23304
23305         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
23306
23307 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
23308
23309         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
23310
23311 2004-08-24  Martin Baulig  <martin@ximian.com>
23312
23313         * class.cs (mono_class_is_subclass_of): Like an interface, a
23314         generic instance also derives from System.Object.
23315
23316 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
23317
23318         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
23319         custom modifiers to be in any order. Fixes #61990.
23320
23321 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
23322
23323         * object.c: Register mono_object_new_fast icall.
23324         
23325         * object.c (mono_class_get_allocation_ftn): Return to calling
23326         mono_object_new_fast, since it seems faster to compute the object 
23327         size in unmanaged code than passing it as a parameter.
23328
23329         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
23330
23331         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
23332         this function with Boehm as the oom handler, so we don't have to check
23333         the result of GC_malloc.
23334
23335         * object.c: Remove checks for oom.
23336
23337         * object.h object.c (mono_class_get_allocation_ftn): New function to
23338         return the icall which can be used to allocate an instance of a given
23339         class. 
23340
23341         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
23342
23343         * class-internals.h: Add 'enabled' field.
23344
23345 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
23346
23347         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
23348
23349 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
23350         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
23351         value 0x0010.
23352
23353 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
23354
23355         * appdomain.c: use the Tls function for appdomain too,
23356         at Zoltan's request. Actually return in mono_context_get
23357
23358         * appdomain.c, profiler.c, threads.c: use __thread
23359
23360 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
23361
23362         * appdomain.c threads.c: Call GC_CreateThread on windows.
23363
23364         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
23365         multiple libraries since this don't work on windows.
23366
23367 2004-08-18  Martin Baulig  <martin@ximian.com>
23368
23369         * class-internals.h
23370         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
23371         MonoMethodHeader.
23372
23373         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
23374         MonoMethodNormal since we also need it for abstract and interface
23375         methods.
23376
23377         * reflection.c
23378         (build_compressed_metadata): Sort the GenericParam table.
23379         (mono_image_create_token): Added `gboolean create_methodspec'
23380         argument; this is false when generating a MethodImpl token.
23381         (reflection_methodbuilder_to_mono_method): Abstract and interface
23382         methods may also have generic parameters.
23383
23384 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
23385
23386         * appdomain.c: thread local alloc
23387
23388 2004-08-17  Martin Baulig  <martin@ximian.com>
23389
23390         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
23391
23392         * icall.c
23393         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
23394         argument.
23395
23396         * class.c (mono_type_get_full_name): New public function.
23397         (mono_type_get_name): Don't include the type arguments.
23398
23399 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
23400
23401         * Makefile.am: Build static versions of libmetadata and libmonoruntime
23402         for inclusion into the mono executable.
23403
23404 2004-08-16  Martin Baulig  <martin@ximian.com>
23405
23406         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
23407         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
23408
23409 2004-08-14  Martin Baulig  <martin@ximian.com>
23410
23411         * class.c (dup_type): Also copy the `byref' field.
23412
23413 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
23414
23415         * reflection.c (create_dynamic_mono_image): Revert the last change 
23416         since it breaks bootstrap.
23417
23418 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
23419
23420         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
23421
23422         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
23423         not free them with g_free.
23424
23425 2004-08-11  Martin Baulig  <martin@ximian.com>
23426
23427         * reflection.c (mono_reflection_setup_internal_class): Also call
23428         mono_class_setup_mono_type() if we already have a `tb->type.type'.
23429
23430 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
23431
23432         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
23433         called during default (first) AppDomain creation. Keep track of
23434         Evidence when loading assemblies.
23435
23436 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
23437
23438         * opcodes.c, opcodes.h: reduce runtime relocations.
23439
23440 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
23441
23442         * culture-info.h, locales.c: fixes and chages to sue the new
23443         optimized format of the locale data.
23444         * culture-info-tables.h: regenerated.
23445
23446 2004-08-06  Geoff Norton <gnorton@customerdna.com>
23447         
23448         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
23449
23450 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
23451
23452         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
23453         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
23454         * domain-internals.h: icall declaration.
23455         * icall.c: icall registration.
23456         * object-internals.h: New fields in MonoAssembly for CAS.
23457
23458 2004-08-05  Duncan Mak  <duncan@ximian.com>
23459
23460         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
23461         CEE_LDELEM_ANY.
23462
23463 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
23464
23465         * reflection.c: fix to deal with object[] arrays in custom ctors
23466         (bug #62550).
23467
23468 2004-08-05  Martin Baulig  <martin@ximian.com>
23469
23470         * class.c (mono_class_array_element_size): Added support for
23471         generic instances and correctly handle "recursive" types.
23472
23473 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
23474
23475         * assembly.c: Fix warnings.
23476
23477 2004-08-04  Martin Baulig  <martin@ximian.com>
23478
23479         * class.c
23480         (mono_type_get_name_recurse): Added `gboolean include_arity'
23481         argument specifying whether or not we should include the generic
23482         arity in the type name.
23483         (_mono_type_get_name): New static function.
23484         (mono_class_setup_vtable): If we're a generic instance, don't
23485         include the generic arity in the names of explicit method
23486         implementations.        
23487
23488 2004-08-03  Martin Baulig  <martin@ximian.com>
23489
23490         * class.c (mono_type_get_name_recurse): Enclose the generic type
23491         arguments in `<', '>'.
23492
23493 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
23494
23495         * gc.c: make GC warning messages use the trace API, they are just
23496         noise to most of the users.
23497
23498 2004-08-03  Martin Baulig  <martin@ximian.com>
23499
23500         * debug-mono-symfile.c (read_string): Correctly read the string.
23501
23502 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
23503
23504         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
23505         
23506         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
23507         icalls.
23508         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
23509
23510 2004-07-30  Martin Baulig  <martin@ximian.com>
23511
23512         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
23513         Reflect latest symbol writer changes.   
23514
23515 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
23516
23517         * object.c: always create an object if null is passed
23518         to Invoke() where a valuetype is expected.
23519
23520 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
23521
23522         * marshal.c (mono_marshal_init): make managed
23523         signatures match native ones better for 64bits.
23524
23525 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23526
23527         * appdomain.c: hack to build correctly the private bin path on windows.
23528         Fixes bug #61991.
23529
23530 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
23531
23532         * assembly.c: Load mscorlib from the correct framework directory
23533           (mono/<version>/mscorlib.dll).
23534         * appdomain.h: Added prototypes for new functions.
23535         * internals.h: Added some prototypes.
23536         * domain.c: When initializing the runtime, get from the executable and
23537           the configuration files the runtime version that the app supports.
23538           Added support methods for reading app.exe.config. Added list of versions
23539           supported by the JIT. Added two new methods: mono_init_from_assembly,
23540           which initializes the runtime and determines the required version from
23541           the provided exe file, and mono_init_version, which initializes
23542           the runtime using the provided version.
23543         * icall.c: Get machine.config from version-specific directory.
23544         * reflection.c: When generating an image, embed the version number
23545           of the current runtime.
23546
23547 2004-07-28  Dick Porter  <dick@ximian.com>
23548
23549         * socket-io.c
23550         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
23551         returned sockaddr size before creating the remote address object.
23552         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
23553         61608.
23554
23555 2004-07-28  Dick Porter  <dick@ximian.com>
23556
23557         * locales.c (string_invariant_compare_char): Fix invariant char
23558         compares between upper and lower cases.  Fixes bug 61458.
23559
23560 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
23561         
23562         * marshal.c: actually cache stelem.ref wrappers.
23563         
23564 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
23565
23566         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
23567         sections and remove the mono_cli_rva_map () function.
23568
23569 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
23570
23571         * debug-mono-symfile.c: fix one more endianess issue, from a patch
23572         by Geoff Norton (<gnorton@customerdna.com>).
23573
23574 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
23575
23576         * class.c: fix class loads for pointer types (typeof(int) !=
23577         typeof(int*)).
23578
23579 2004-07-27  Martin Baulig  <martin@ximian.com>
23580
23581         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
23582         reading the debugging information from an external ".mdb" file.
23583
23584 2004-07-24  Martin Baulig  <martin@ximian.com>
23585
23586         * reflection.c (mono_image_get_type_info): Only write a class
23587         layout entry if we actually have a size or a packing size.
23588
23589 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
23590
23591         * reflection.c (type_get_fully_qualified_name): 
23592         insert cast to get type checking of ?: with non-gcc compilers
23593
23594 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
23595
23596         * rand.c: use g_getenv for both lookups of
23597         MONO_EGD_SOCKET
23598
23599 2004-07-17  Martin Baulig  <martin@ximian.com>
23600
23601         * reflection.c (mono_reflection_bind_generic_method_parameters):
23602         Set `gmethod->reflection_info'.
23603
23604 2004-07-17  Martin Baulig  <martin@ximian.com>
23605
23606         * class.c (mono_class_create_from_typedef): Insert the newly
23607         created class into the hash table before computing the interfaces
23608         since we could be called recursively.
23609
23610 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
23611
23612         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
23613         function to implement stelem.ref in managed code
23614         * class-internals.h, debug-helpers.c: a new wrapper type
23615         for the above.
23616
23617 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
23618
23619         * gc.c: allow GC handles to work even when no GC is compiled in.
23620         Fix part of bug #61134 (GetAddrOfPinnedObject).
23621
23622 2004-07-13  Peter Williams  <peter@newton.cx>
23623  
23624         * process.c (complete_path): Make sure we don't attempt to execute
23625         directories.
23626  
23627 2004-07-12  Geoff Norton <gnorton@customerdna.com>
23628
23629         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
23630           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
23631           and will add/subtract the hour if needed
23632
23633 2004-07-12  Martin Baulig  <martin@ximian.com>
23634
23635         * reflection.c (mono_field_get_object): If we have
23636         `field->generic_info', take the attributes from
23637         `field->generic_info->generic_type'.    
23638
23639 2004-07-12  Martin Baulig  <martin@ximian.com>
23640
23641         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
23642         This function must be called before initializing the runtime.
23643         (mono_debug_init_1): New function; call this after initializing
23644         the runtime, but before loading the assembly.  It tells the
23645         debugger to load corlib and the builtin types.
23646
23647         * mono-debug-debugger.c: Did some larger changes in the debugging
23648         code; support recursive class declarations, make sure we actually
23649         add all classes.
23650
23651 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23652
23653         * debug-helpers.c: undo my previous patch and fixed the real issue in
23654         ../mini/exceptions-x86.c
23655
23656 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23657
23658         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
23659         when no HOME env. variable was set and a NullRef was thrown in a .cctor
23660         called from other .cctors.
23661
23662 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
23663
23664         * loader.c: Removed the mono_loader_wine_init hack now that we are
23665         doing a managed version of Windows.Forms.
23666
23667 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
23668
23669         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
23670         threadpool.c, threads.c: remove static data from rootset.
23671
23672 2004-07-09  Dick Porter  <dick@ximian.com>
23673
23674         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
23675         Don't do any more processing if the matched length was 0.  It was
23676         increasing the size of the string before.  Fixes bug 61167.
23677
23678 2004-07-09  Dick Porter  <dick@ximian.com>
23679
23680         * socket-io.h:
23681         * socket-io.c
23682         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
23683         Add support for SO_PEERCRED if its available.
23684
23685 2004-07-09  Peter Bartok <pbartok@novell.com>
23686         * loader.c: winelib.exe.so error message is now only displayed if
23687         MONO_DEBUG is set. To help us avoid questions when people are trying
23688         out the new Managed.Windows.Forms.
23689
23690 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
23691
23692         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
23693         for isinst and castclass wrappers.
23694
23695         * class-internals.h icall.c: Move registration and lookup of JIT icalls
23696         to libmetadata from the JIT, so they could be used by the marshalling
23697         code and the interpreter.
23698
23699         * marshal.c: Register marshalling related JIT icalls here instead of
23700         in mini.c. Use CEE_MONO_ICALL instead of the family of 
23701         CEE_MONO_PROC<x> opcodes to call marshalling functions.
23702
23703         * metadata.h: Remove unneeded marshalling conversions.
23704
23705         * opcodes.c: Update for new opcodes.
23706         
23707 2004-07-08  Martin Baulig  <martin@ximian.com>
23708
23709         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
23710         (mono_debug_get_domain_data): Make this function static.
23711
23712 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
23713
23714         * gc.c, object.h: add nice GC handle API for embedders.
23715
23716 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
23717
23718         * reflection.c: more changes for the new api
23719
23720         * object.c: When we reflect on a field w/ a constant value, it
23721         will not have a memory location, so we must access metadata. Also,
23722         allow easier reading of strings so that we can read them from
23723         the constant data.
23724
23725         * class.c (mono_class_layout_fields): no need for literal fields here.
23726
23727         * class-internals.h: api changes for const fields
23728
23729         * icall.c (ves_icall_get_enum_info): use new apis for const fields
23730
23731 2004-07-06  Martin Baulig  <martin@ximian.com>
23732
23733         * mono-debug.h: Increment version number to 44.
23734
23735         * mono-debug.c (mono_debug_add_wrapper): The second argument is
23736         now a gpointer, rewrote this whole method.
23737
23738         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
23739         function.  Add information about the wrapper in a new "misc table".
23740
23741         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
23742         for the new misc table.
23743
23744 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
23745
23746         * metadata-internals.h image.c: Add a cache for helper signatures.
23747
23748         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
23749
23750 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
23751
23752         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
23753         delegates from a delegate. Fixes #61033.
23754         
23755         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
23756         marshalling of stringbuilder arrays. Fixes #59900.
23757
23758 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
23759
23760         * icall.c: Add EnumBuilder:setup_enum_type icall.
23761
23762 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
23763
23764         * icall.c: Added a new icall for the property version of
23765         OffsetOfStringData.
23766
23767 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
23768
23769         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
23770         it has a constant size across platforms.
23771
23772         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
23773         stack trace.
23774
23775 2004-06-29  Martin Baulig  <martin@ximian.com>
23776
23777         * mono-debug.c (mono_debug_add_method): Protect the whole function
23778         in mono_debugger_lock(), not just parts of it.
23779
23780 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
23781
23782         * reflection.c: make sure padding bytes in heaps are zeroed.
23783
23784 2004-06-24  David Waite  <mass@akuma.org>
23785
23786         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
23787         image.c, loader.c, locales.c, marshal.c, metadata.c,
23788         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
23789         string-icalls.c, threads.c: change to C90-style comments from C99 /
23790         C++ -style
23791
23792 2004-06-24  Dick Porter  <dick@ximian.com>
23793
23794         * threads.c
23795         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
23796         return createdNew.  Fixes bug 60412.
23797
23798         * threads-types.h: 
23799         * icall.c: Add createdNew parameter to CreateMutex icall
23800
23801 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
23802
23803         * reflection.c, object-internals.h: save default value in params.
23804
23805 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23806
23807         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
23808         no need to build a new path combining that with the application base.
23809         Fixes bug #60442.
23810
23811 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
23812
23813         * reflection.c: fixed minor standard compliance issues.
23814
23815 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
23816
23817         * reflection.c: fixed issue with encoding some custom attributes
23818         (arrays in properties and fields, bug #60411).
23819
23820 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23821
23822         * reflection.c: fix start address when copying the public key token.
23823
23824 2004-06-23  Martin Baulig  <martin@ximian.com>
23825
23826         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
23827         the `exc' object in a static object to put it into the GC's root set.
23828
23829 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
23830
23831         * reflection.c: make mono_reflection_setup_internal_class ()
23832         callable a second time to setup a new parent class.
23833
23834 2004-06-23  Dick Porter  <dick@ximian.com>
23835
23836         * threads.c: Check for WAIT_IO_COMPLETION return values.
23837
23838 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
23839
23840         * appdomain.c: Removed the g_free on the public key token. Now copy 
23841         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
23842         * assembly.c: Added public key token string value when loading 
23843         assemblies. Fix bug #60439.
23844         * icall.c: Added missing informations (like public key) in 
23845         GetReferencedAssemblies. Fix #60519.
23846         * image.h: Changed definition for public key token from const char*
23847         public_tok_value to guchar public_key_token [17];
23848         * reflection.c: Updated for changes to public key token.
23849
23850 2004-06-22  Lluis Sanchez Gual
23851
23852         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
23853         for the field in base classes.
23854
23855 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
23856
23857         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
23858         mark headers as not supported, they are installed only for use by the
23859         debugger.
23860
23861 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
23862
23863         * *.c, *.h: avoid namespace pollution in public headers.
23864
23865 2004-06-21  Martin Baulig  <martin@ximian.com>
23866
23867         * exception.c (mono_get_exception_security): It's in
23868         "System.Security", not in "System".
23869
23870         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
23871         the exception classes.
23872
23873 2004-06-21  Martin Baulig  <martin@ximian.com>
23874
23875         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
23876         Protect the exception object from being finalized.
23877
23878 2004-06-21  Martin Baulig  <martin@ximian.com>
23879
23880         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
23881         public function.
23882
23883 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
23884
23885         * reflection.c: Load the assembly in mono_reflection_type_from_name,
23886         if it was not loaded before. Fix parts of #60439.
23887
23888 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
23889
23890         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
23891         code that was broken since Ben's change: wrappers are now
23892         dependent on the method signature only again.
23893
23894 2004-06-21  Martin Baulig  <martin@ximian.com>
23895
23896         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
23897         added interface support.
23898
23899 2004-06-21  Martin Baulig  <martin@ximian.com>
23900
23901         * class.c (mono_vtable_get_static_field_data): New public method.
23902
23903 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
23904
23905         * filewatcher.c : Windows build fix to be compliant with API changes.
23906
23907 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
23908
23909         * class.h, class.c: more accessors.
23910         * metadata.h, metadata.c: prepare for hiding MonoType and
23911         MonoMethodSignature: people should use the accessors from now on
23912         outside of the tree.
23913
23914 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
23915
23916         * *.c, *.h: more API cleanups.
23917
23918 2004-06-18  Jackson Harper  <jackson@ximian.com>
23919
23920         * assembly.c: Trace loading assemblies.
23921         * loader.c: Trace loading native libraries.
23922         * mono-config.c: Trace loading config files.
23923         
23924 2004-06-18  Dick Porter  <dick@ximian.com>
23925
23926         * locales.c: Tell ICU the lengths of strings, it can cope with
23927         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
23928
23929 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
23930
23931         * image.c: swapped name/filename;
23932
23933 2004-06-18  Martin Baulig  <martin@ximian.com>
23934
23935         * mono-debug-debugger.c (write_class): Write the parent class at
23936         the end of the header.
23937
23938 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
23939
23940         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
23941
23942 2004-06-17  Raja R Harinath  <rharinath@novell.com>
23943
23944         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
23945         (bundle_obj): New conditional define.
23946         (BUILT_SOURCES): Remove.
23947         ($(bundle_srcs)): Make parallel-make safe.
23948         (libmonoruntime_la_LIBADD): Make unconditional.
23949         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
23950         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
23951
23952 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
23953
23954         * culture-info-tables.h: It was inconsistent with the latest
23955           supp info files.
23956
23957 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
23958
23959         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
23960         be loaded.
23961
23962         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
23963         with gcc 2.95.
23964
23965 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
23966
23967         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
23968         cleaned up public header threads.h.
23969
23970 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
23971
23972         * Makefile.am, *.c, *.h: more API cleanups.
23973
23974 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
23975
23976         * Makefile.am: removed monosn from compilation.
23977         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
23978         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
23979         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
23980         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
23981         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
23982         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
23983
23984 2004-06-15  Jackson Harper  <jackson@ximian.com>
23985
23986         * assembly.c: Make locales lower case when searching the GAC for
23987         assemblies. gacutil will always make locales lowercase when
23988         installing so this effectively makes them case insensitive.
23989         
23990 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
23991
23992         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
23993         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
23994           parameter which allows to choose whether the wait can be interrupted or 
23995           not. Also added the method mono_monitor_enter(), which locks the monitor
23996           using an infinite wait and without allowing interruption.
23997           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
23998           interrupted.
23999         * object.h: Added new fields in MonoThread. suspend_event holds the event
24000           used to susped/resume the thread. synch_lock is the lock object to use for
24001           modifying the thread state.
24002         * threads.c: Use the new synch_lock object for locking, instead of "this",
24003           which can generate deadlocks.
24004           Moved thread state change in Thread.Sleep and Thread.Join from managed
24005           to unmanaged code. This avoids a deadlock when the thread was suspended
24006           just after acquiring the thread lock.
24007           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
24008           Implemented Thread.Suspend using an event instead of ThreadSuspend,
24009           which is not fully implemented in the io-layer.
24010         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
24011
24012 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
24013
24014         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
24015         threads-types.h: more API cleanups.
24016
24017 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
24018
24019         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
24020         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
24021         threadpool.c, threads.c: first pass at the exported API cleanup.
24022
24023 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
24024
24025         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
24026
24027 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24028
24029         * icall.c: added internalGetHome.
24030
24031 2004-06-14  Dick Porter  <dick@ximian.com>
24032
24033         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
24034         possible to return successfully when '.' or '..' were the only
24035         entries in a directory, but were skipped.  The MonoIOStat was not
24036         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
24037         Fixes bug 59574.
24038
24039 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
24040
24041         * reflection.c: make binaries run on .Net 1.1 by default.
24042
24043 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
24044
24045         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
24046
24047 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
24048
24049         * marshal.c: keep track of struct size with explicit layout
24050         (bug #59979).
24051
24052 2004-06-12  Martin Baulig  <martin@ximian.com>
24053
24054         * mono-debug-debugger.c: Comment out a debugging g_message().
24055
24056 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
24057
24058         * reflection.c, reflection.h: do not free custom attrs that are cached.
24059         * icall.c: use braces to make code clearer.
24060
24061 2004-06-11  Martin Baulig  <martin@ximian.com>
24062
24063         * class.h (MonoInflatedField): New type.
24064         (MonoClassField): Replaced `MonoType *generic_type' with
24065         `MonoInflatedField *generic_info'.
24066
24067         * icall.c
24068         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
24069
24070 2004-06-11  Martin Baulig  <martin@ximian.com>
24071
24072         * reflection.c (mono_image_create_method_token): Correctly encode
24073         varargs methods.
24074
24075 2004-06-11  Martin Baulig  <martin@ximian.com>
24076
24077         * metadata.c (mono_metadata_parse_method_signature): When parsing
24078         a MethodDef which has VarArgs, also set sentinelpos if we don't
24079         have any parameters.
24080
24081 2004-06-11  Martin Baulig  <martin@ximian.com>
24082
24083         * verify.c (mono_method_verify): In CEE_CALL, use
24084         mono_method_get_signature() to get the method's signature, unless
24085         we're a PInvoke method.
24086
24087 2004-06-10  Jackson Harper  <jackson@ximian.com>
24088
24089         * assembly.c: Use <path>/lib/mono/gac for the extra paths
24090         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
24091         logical name as the supplied path is just a prefix to the gac not
24092         the direct path to it.
24093         
24094 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
24095
24096         * reflection.c: make the token for a created method match
24097         the token of the MethodBuilder it was created from
24098         (IKVM requires this behaviour now).
24099
24100 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
24101
24102         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
24103         reflection.c, socket-io.c: leak fixes.
24104
24105 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
24106
24107         * icall.c: handle sentinel pos in vararg methods in position different
24108         from 0.
24109
24110 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24111
24112         * culture-info-tables.h: freshly generated.
24113
24114 2004-06-09  Martin Baulig  <martin@ximian.com>
24115
24116         * loader.c (mono_get_method_constrained): Call `mono_class_init
24117         (constrained_class)'.   
24118
24119 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
24120
24121         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
24122         any methods. Fixes #59629.
24123
24124 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24125
24126         * culture-info-tables.h: reflecting locale-builder updates.
24127
24128 2004-06-08  Dick Porter  <dick@ximian.com>
24129
24130         * object.h:
24131         * locales.c: Fixed compile warnings, including a real bug in
24132         CompareInfo_internal_compare.
24133         
24134 2004-06-08  Dick Porter  <dick@ximian.com>
24135
24136         * locales.c
24137         (ves_icall_System_Globalization_CompareInfo_internal_index):
24138         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24139         Double-check the resuls of usearches, because ICU currently
24140         ignores most of the collator settings here.  Fixes bug 59720.
24141         
24142 2004-06-08  Dick Porter  <dick@ximian.com>
24143
24144         * locales.c
24145         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
24146         Fix memory leak and segfault-causing typo.  No idea how this one
24147         lasted so long without being noticed.
24148
24149 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
24150
24151         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
24152         any methods. Fixes #59629.
24153
24154 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24155
24156         * assembly.c:
24157         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
24158         own the critical section before). Removed dead code (that's done
24159         in the preload hook).
24160
24161         (mono_assembly_load_with_partial_name): call the preload hook.
24162
24163 2004-06-08  Martin Baulig  <martin@ximian.com>
24164
24165         * metadata.c (mono_metadata_signature_alloc): Default
24166         `sentinelpos' to -1.
24167
24168         * reflection.c (mono_image_get_array_token): Likewise.
24169
24170 2004-06-08  Martin Baulig  <martin@ximian.com>
24171
24172         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
24173
24174         * metadata.c (mono_metadata_parse_method_signature): When parsing
24175         a MethodDef which has VarArgs, set sentinelpos.
24176
24177         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
24178         `gint16' since we're using -1 for non-varargs methods.
24179
24180         * reflection.c
24181         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
24182         (method_encode_signature): Added varargs support.
24183         (method_builder_encode_signature): Likewise.
24184         (mono_image_get_varargs_method_token): New static method.
24185         (mono_image_create_method_token): New public method; this is
24186         called via an icall instead of mono_image_create_token() when
24187         calling a varargs method.       
24188
24189 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
24190
24191         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
24192
24193 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24194
24195         * culture-info-tables.h : Reflecting the latest locale-builder that
24196           fixed empty array representation ({} to {0}).
24197
24198 2004-06-07  Jackson Harper  <jackson@ximian.com>
24199
24200         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
24201         looking up extra gac paths. This allows MONO_GAC_PATH to act
24202         exactly like a prefix.
24203         
24204 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24205
24206         * reflection.c (mono_reflection_type_from_name): Make a copy of the
24207         type name before modifying it. Fixes #59405.
24208
24209 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
24210
24211         * culture-info.h: added fields for "all datetime patterns".
24212         * locales.c: (  ves_icall_System_Globalization_CultureInfo
24213           _construct_datetime_format ()): fill xxx_patterns fields.
24214         * object.h: added fields for "all datetime patterns" to
24215           MonoDateTimeFormatInfo.
24216         * culture-info-tables.h: reflecting locale-builder updates.
24217
24218 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
24219
24220         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
24221         the event has no add and remove methods. Fixes #59629.
24222
24223 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
24224
24225         * object.c: Fixed possible integer overflow when allocating large
24226         strings.
24227
24228 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24229
24230         * culture-info-tables.h: reflecting locale-builder updates.
24231
24232 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
24233
24234         * culture-info-tables.h: reflecting locale-builder updates.
24235
24236 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
24237
24238         * culture-info-tables.h: reflecting locale-builder updates.
24239
24240 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
24241
24242         * threads.c: Made Thread.Sleep abortable.
24243
24244 2004-06-02  Martin Baulig  <martin@ximian.com>
24245
24246         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
24247
24248         * debug-mono-symfile.h: Bumped symbol file version number to 37.
24249
24250 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
24251
24252         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
24253
24254 2004-05-30  Jackson Harper  <jackson@ximian.com>
24255
24256         * reflection.c: Do not hardcode assembly versions or public key
24257         tokens anymore. All of this except the corlib section was dead
24258         code anyways.
24259         
24260 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
24261
24262         * object.c (mono_runtime_invoke_array): Automatically create boxed
24263         objects for byref valuetypes if needed. Fixes #59300.
24264         
24265         * object.c (mono_method_return_message_restore): Handle 
24266         MONO_TYPE_OBJECT as well.
24267
24268 2004-05-28  Jackson Harper  <jackson@ximian.com>
24269
24270         * reflection.c: The modified type encoding was causing build
24271         problems. Reverted for now.
24272         
24273 2004-05-28  Jackson Harper  <jackson@ximian.com>
24274
24275         * reflection.c/h: Take an assembly ref so that we dont create
24276         fully qualified names when encoding types in the same assembly as
24277         the custom attribute being emitted.
24278         * appdomain.c: Increment version number.
24279         
24280 2004-05-26  Duncan Mak  <duncan@ximian.com>
24281
24282         * icall.c
24283         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
24284         Set the full version number (major, minor, build, revision).
24285
24286 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
24287
24288         * marshal.c (emit_struct_conv): increment src/dst after blit
24289         (mono_marshal_get_managed_wrapper,
24290         mono_marshal_get_native_wrapper): make sure we have marshalling
24291         info before marshalling params (info computation affects
24292         blittable)
24293
24294         * class.c (class_compute_field_layout): correctly deal with
24295         blittable
24296         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
24297         value types (as per what windows dows by default)
24298         (mono_class_setup_mono_type): System.ValueType is blittable
24299         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
24300         blittable
24301
24302         * marshal.c (mono_marshal_load_type_info): flag types  as
24303         non-blittable if the native layout doesn't match the managed
24304         layout
24305
24306 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24307
24308         * appdomain.c: don't add stuff in the private search path that is
24309         above the application base. If application base is not set, there's
24310         no private search path.
24311
24312 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
24313
24314         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
24315         byref struct arguments in native->managed marshalling.
24316
24317 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
24318
24319         * marshal.c (mono_marshal_get_runtime_invoke): correctly
24320         cache methods using signature (special case for methods
24321         that are value type or string class)
24322         
24323         * image.c (mono_image_close): clean up allocated GSList's
24324         in runtime_invoke_cache.
24325
24326 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24327
24328         * mono-config.c: set the correct path for mono_cfg_dir on windows when
24329         there's no MONO_CFG_DIR environment variable defined.
24330
24331 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24332
24333         * threads.c: windows version must be >= 0x0500 to include OpenThread.
24334
24335 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
24336
24337         * threadpool.c: Really wait for 500ms after the async call, even if the wait
24338           is interrumped.
24339         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
24340           before waiting for it, and call CloseHandle after the wait to unref it.
24341           This will make sure that handles are not disposed too early.
24342
24343 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24344
24345         * appdomain.c:
24346         * appdomain.h:
24347         * icall.c: removed
24348         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
24349         needed now.
24350
24351         * object.c: se the application_base only for the domain that runs
24352         Main. Fixes bug #59216,
24353
24354 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24355
24356         * appdomain.c:
24357         * object.c: only the domain in which Main is run have
24358         SetupInformation.ConfigurationFile set, so moved a few lines from
24359         appdomain.c to object.c.
24360
24361 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24362
24363         * appdomain.c: we tried to load [name].(dll|exe), but according
24364         to bug #57710, we must also try [culture]/[name].(dll|exe) and
24365         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
24366         There's a test case attached to bug #58922.
24367
24368 2004-05-27  Dick Porter  <dick@ximian.com>
24369
24370         * icall.c:
24371         * file-io.c: Implemented icalls for locking and unlocking regions
24372         in a file.
24373         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
24374         FALSE on error (fixes both compiler warning and real bug.)
24375
24376 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
24377
24378         * culture-info-tables.h: reflecting locale-builder updates.
24379
24380           (Added missing ChangeLog entry for 05/26)
24381
24382 2004-05-27  Jackson Harper  <jackson@ximian.com>
24383
24384         * locales.c: Fix some cut and paste errors.
24385         
24386 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24387
24388         * mono-config.c: set the correct path for config. directory on windows.
24389
24390 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
24391
24392         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
24393           on win32.
24394
24395 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
24396
24397         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
24398         from pinvoke functions.
24399         
24400         * marshal.c (mono_ftnptr_to_delegate): Implement this.
24401
24402 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
24403
24404         * culture-info-tables.h: reflecting locale-builder updates.
24405
24406 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
24407
24408         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
24409         #59086.
24410
24411 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
24412
24413         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
24414         * icall.c: Modified icalls for RNG.
24415         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
24416         Windows (CryptoAPI).
24417
24418 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
24419
24420         * locales.c: Fix build.
24421
24422 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
24423
24424         * culture-info-tables.h: reflecting locale-builder updates.
24425
24426 2004-05-25  Jackson Harper  <jackson@ximian.com>
24427
24428         * locales.c: When creating the current culture use the $LANGs
24429         specific culture. So DateTimeFormat and NumberFormat entries are created.
24430         
24431 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
24432
24433         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
24434         a char array as parameter.
24435
24436 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
24437
24438         * image.c: In mono_image_open(), always use an absolute path name to
24439           look for already loaded images.
24440
24441 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
24442
24443         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
24444         missing in the windows build (like older cygwin include files).
24445
24446 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
24447
24448         * icall.c: Fixed check for possible integer overflow in Buffer_
24449         BlockCopy icall. Replaced comments style // by /* */.
24450
24451 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
24452
24453         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
24454         
24455         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
24456         check after MONO_VTADDR. Fixes pinvoke2.exe.
24457
24458         * marshal.h marshal.c metadata.h: Add beginnings of support for
24459         ftnptr -> delegate marshalling.
24460
24461 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
24462
24463         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
24464         * threads.c: Fix warnings.
24465
24466 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
24467
24468         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
24469         * icall.c: Registered icalls for Suspend and Resume.
24470         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
24471           Thread.Abort.
24472         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
24473         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
24474         * process.c: Use WaitForSingleObjectEx.
24475         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
24476           checkpoints.
24477         * threads.c, threads.h: Make use of new Ex wait methods. Improved
24478           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
24479           for Suspend and Resume. Added new mono_thread_stop, used for stoping
24480           background threads. Added basic support for Abort in Windows.
24481           Start new threads using a managed delegate invoke wrapper. This wrapper
24482           has an interruption checkpoint that is needed since an interruption
24483           can be requested before the thread leaves the unmanaged code that starts 
24484           the thread.
24485         * marshal.c: Added interruption checkpoint after every native call, and
24486           also before managed calls for wrappers called from unmanaged code to
24487           go into managed code.
24488         * object.h: Added new field in MonoThread to keep track of interruption
24489           requests.
24490
24491 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
24492
24493         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
24494         calls.
24495
24496 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24497
24498         * appdomain.c:
24499         * assembly.c:
24500         * gc.c:
24501         * locales.c:
24502         * mono-config.c:
24503         * rand.c: getenv -> g_getenv (windows!)
24504
24505         * process.c: complete_path is also used on non-windows platforms.
24506
24507 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24508
24509         * icall.c: new signature for Process_Start.
24510
24511         * process.[ch]: new signature for Process_Start. If we're on windows
24512         and UseShellExecute is false, we have to search for the program by
24513         ourselves if we don't get a full path.
24514
24515 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
24516
24517         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
24518         marshalling and call CleanUpNativeData if needed. Fixes #58646.
24519
24520 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24521
24522         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
24523         Fixes bug #58373.
24524
24525 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24526
24527         * process.c: use double quotes to quote program name and arguments on
24528         windows. Fixes bug #58575.
24529
24530 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24531
24532         * file-io.c: don't return "." and ".." when using windows Find*File.
24533
24534 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
24535
24536         * marshal.c: Don't pass wrappers to message init because method 
24537         addressed used to lookup metadata. part of remoting[2|3] fix.
24538
24539 2004-05-15  Jackson Harper  <jackson@ximian.com>
24540
24541         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
24542         path is essentially the same as MONO_PATH except that it points to
24543         GACs instead of lib directories.
24544         * loader.h: The user gac is gone so we dont need function to
24545         enable/disable it.
24546         * mono-config.c: user gac option is now gone.
24547         
24548 2004-05-15  Jackson Harper  <jackson@ximian.com>
24549
24550         * culture-info.h: Make defines more consistent, add calendar data
24551         to the culture info table.
24552         * culture-info-tables.h: Add basic calendar data. Basically
24553         everyone gets default gregorian until all the data is
24554         updated.
24555         * locales.c: Use the new consistent defines. Set calendar data for
24556         culture info objects.
24557         * object.h: add a field for calendar data to CultureInfo
24558         
24559 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
24560
24561         * image.c: image->runtime_invoke_cache is keyed on signatures now.
24562         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
24563         a signature.
24564         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
24565         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
24566         an extra param that is the pointer of the method to invoke. The IL for
24567         the invoke method is no longer specific to the method, but to the
24568         signature of the method. Thus, we can share the same code for multiple
24569         methods. This reduces the number of methods that have to be compiled.
24570
24571 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
24572
24573         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
24574
24575         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24576
24577         * icall.c: Optimize Buffer.BlockCopy.
24578
24579 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24580
24581         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
24582         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
24583         quote). Changed them to "MMMM yyyy".
24584
24585 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
24586
24587         * rand.c
24588         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
24589
24590 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
24591
24592         * reflection.h: Updated after changes to managed structures.
24593
24594         * appdomain.c: Bump corlib version.
24595
24596 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24597
24598         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
24599         windows.
24600
24601 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24602
24603         * Makefile.am: link to ../os/libmonoos.la on windows.
24604
24605         * assembly.c:
24606                 -If MONO_DEBUG, warn about non-existing directories in
24607                 MONO_PATH.
24608                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
24609                 compile time variable.
24610                 -Removed init_default_path and call mono_set_rootdir from
24611                 libmonoos.a instead (windows only).
24612
24613         * assembly.h: declare mono_assembly_getrootdir().
24614
24615         * domain.c:
24616         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
24617
24618         * loader.c: s/getenv/g_getenv/
24619
24620 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
24621
24622         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
24623
24624         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
24625
24626         * metadata.h: Add new marshalling conversions.
24627
24628         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
24629         function.
24630
24631         * reflection.c (mono_reflection_get_type): Lookup the type in all
24632         modules of a multi-module assembly. Fixes #58291.
24633
24634 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
24635
24636         * threads.c: Before aborting a background, set the StopRequested
24637         state.  This avoids throwing the Abort exception.
24638         In mono_thread_manage, don't continue with the shutdown until all
24639         aborted threads have actually stopped.
24640
24641 2004-05-10  Jackson Harper  <jackson@ximian.com>
24642
24643         * locales.c: Remove the modifier from culture names.
24644         
24645 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24646
24647         * Makefile.am: monosn is not installed any more. It has been deprecated
24648         in favor of sn.
24649
24650 2004-05-07  Jackson Harper  <jackson@ximian.com>
24651
24652         * locales.c
24653         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
24654         Fix array construction, add bailout if the length is 0.
24655
24656 2004-05-07  Dick Porter  <dick@ximian.com>
24657
24658         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
24659         machine doesn't have a DNS entry.  Patch by Urs Muff
24660         (umuff@quark.com), fixes bug 57928.
24661
24662 2004-05-06  Jackson Harper  <jackson@ximian.com>
24663
24664         * reflection.c: Handle null PublicTokens properly. alloc mem for
24665         assembly names culture so we dont crash when freeing it.
24666         
24667 2004-05-06  Jackson Harper  <jackson@ximian.com>
24668
24669         * assembly.c: Check the usergac when loading with partial names.
24670         
24671 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
24672
24673         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
24674         does nothing for now (not required for Linux/Windows) but the class
24675         library can call it (and a newer or modified runtime could need it).
24676         * icall.c: Registred icall.
24677
24678 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24679
24680         * loader.c: prints a message on module loading error we set MONO_DEBUG
24681         environment variable.
24682
24683 2004-05-05  Jackson Harper  <jackson@ximian.com>
24684
24685         * appdomain.c: Handle PublicKeyToken=null properly.
24686         
24687 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
24688
24689         * environment.c|h: Added icall ves_icall_System_Environment_
24690         GetOSVersionString to get the current OS version as a string.
24691         * icall.c: Registred icall.
24692
24693 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
24694
24695         * object.c: in mono_object_get_virtual_method(), take into account that
24696         non-virtual methods don't have a slot in the vtable. Check needed when
24697         the object is a proxy.
24698
24699 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
24700
24701         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
24702         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
24703
24704         * object.c (mono_class_compute_gc_descriptor): Fix warning.
24705
24706         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
24707         passed when a valuetype is expected.
24708
24709         * object.c (mono_unhandled_exception): Only set the exit code if the
24710         exception happens in the main thread. Fixes thread5.exe.
24711
24712         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
24713         invalid names. Fixes #58047.
24714
24715 2004-05-03  Jackson Harper  <jackson@ximian.com>
24716
24717         * assembly.c: This line was committed accidently and is unneeded.
24718         
24719 2004-05-03  Jackson Harper  <jackson@ximian.com>
24720
24721         * icall.c: Add new icall for Assembly::LoadWithPartialName
24722         * assembly.c/.h: new function that probes the GAC to load partial
24723         assembly names by Paolo Molaro.
24724         
24725 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24726
24727         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
24728         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
24729         (type_get_fully_qualified_name): Added PublicKeyToken when building a
24730         full type name.
24731
24732 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24733
24734         * appdomain.c: fixed check for 'neutral' culture and removed warning.
24735         * reflection.c: fix bug when parsing a full type name and Version is not
24736         the last thing in the string.
24737
24738 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
24739
24740         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
24741         crashes when it is freed.
24742
24743 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24744
24745         * assembly.c: print the compat warning to stderr.
24746
24747 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
24748
24749         * assembly.c (mono_assembly_load_references): Add a compatibility
24750         hack to run old applications that might be still referencing the
24751         3300-based assemblies, only do this for System.xxx.
24752
24753 2004-05-01  Jackson Harper  <jackson@ximian.com>
24754
24755         * appdomain.c: If the culture is neutral we set it to "".
24756         
24757 2004-04-29  Jackson Harper  <jackson@ximian.com>
24758
24759         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
24760
24761 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
24762  
24763         * string-icalls.c: added low overhead function for copying chars
24764         * icall.c: added needed icall for the above function
24765  
24766 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24767
24768         * icall.c: fix return value of get_global_assembly_cache.  Implemented
24769         Environment.GetLogicalDrives.
24770
24771 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
24772
24773         * rand.c: try and talk to egd or prngd
24774         for random bytes if opening devices fail.
24775
24776 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
24777
24778         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
24779         alignment for the type using the native alignment of its members 
24780         instead of using klass->min_align.
24781
24782         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
24783
24784 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24785
24786         * file-io.c:
24787         * socket-io.c: added check for sys/aio.h.
24788
24789 2004-04-28  Dick Porter  <dick@ximian.com>
24790
24791         * threads.c: Don't abort a thread thats already aborting, when
24792         terminating everything.
24793
24794 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24795
24796         * icall.c: added 2 new async calls for Socket.
24797
24798         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
24799         IO on *nix systems.
24800
24801         * threadpool.c: removed unused variable.
24802
24803 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
24804
24805         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
24806
24807 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
24808
24809         * locales.c: put back string_invariant_tolower () and
24810         string_invariant_toupper ().
24811
24812 2004-04-26 David Waite <mass@akuma.org>
24813
24814         * file-io.h:
24815         * socket-io.h:
24816         * threads.h:
24817         * unicode.h: remove comma from end of enumeration declarations
24818
24819 2004-04-26 David Waite <mass@akuma.org>
24820
24821         * debug-mono-symfile.h:
24822         * decimal.c:
24823         * mono_debug.h:
24824         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
24825
24826
24827 2004-04-26  Jackson Harper  <jackson@ximian.com>
24828
24829         * appdomain.c: Increment version number.
24830         
24831 2004-04-26  Jackson Harper  <jackson@ximian.com>
24832
24833         * appdomain.c: Set assembly references public token value when
24834         PublicKeyToken is specified, not the hash_value. Free public token
24835         values when free assembly name data. Previously the public key
24836         token was hex decoded, however we are using hex encoded public key
24837         tokens, so this is not neccasary.
24838         * assembly.c: Lookup assemblies in the gac if their public token
24839         value is set. Add function to allow enabling user gac
24840         lookups. Specify whether or not the assembly was loaded from the
24841         GAC. Compare full assembly names when checking the cache for
24842         assemblies (Temporarily disabled see comment in code). Remove
24843         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
24844         specifies trace-loader they get extra info to stdout on the
24845         loading of assemblies.
24846         * image.h: Add a field for an assembly references public token
24847         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
24848         whether an assembly has been loaded from the GAC.
24849         * image.c: Remove a corlib -> mscorlib name mapping.
24850         * loader.h: Add function to enable/disable the user gac.
24851         * mono-config.c: Check if the usergac is enabled in the config
24852         file.
24853         * icall.c: New icall to determine whether or not an assembly has
24854         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
24855         * tabldefs.h: Add constant for assemblyref flag that specifies a
24856         full public key is used instead of a public token.
24857         * reflection.c: Remove mscorlib -> corlib mappings. Set
24858         PublicTokenValue instead of hash value. This value is a hex
24859         string so it does not need to be expanded.
24860
24861 2004-04-26  Martin Baulig  <martin@ximian.com>
24862
24863         * mono-debug-debugger.c (mono_debugger_initialize): Set
24864         `mono_debugger_initialized' before calling mono_debug_lock().
24865
24866 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
24867
24868         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
24869           InternalToUpper/InternalToLower.
24870         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
24871           removed invariant culture shortcut.  This is now done in managed code.
24872         * locales.c: (string_invariant_toupper/tolower) removed.
24873
24874 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24875
24876         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
24877         Added Poll internal call.
24878
24879         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
24880         call for Poll. Select was too heavy for polling a single socket.
24881
24882         * threadpool.[ch]: added mono_threadpool_cleanup.
24883         * threads.c: use it. Don't use Thread_Abort on windows.
24884
24885 2004-04-23  Martin Baulig  <martin@ximian.com>
24886
24887         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
24888
24889 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
24890
24891         * icall.c: Registred new icalls for key pair protection and added an
24892         icall for Environment.GetFolderPath on Windows.
24893         * security.c|h: Added new icalls for key pair protection.
24894
24895 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24896
24897         * socket-io.c: don't display the non-supported family warning for known
24898         families. Now this is not displayed on windows when checking support
24899         for IPv4/IPv6.
24900
24901 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24902
24903         * class.c: don't display the layout warning for static fields.
24904
24905 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
24906
24907         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
24908         * locales.c, locales.h: Added new icalls for culture-specific
24909         Char.ToLower and Char.ToUpper.
24910
24911 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24912
24913         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
24914         by David Waite.
24915
24916 2004-04-20  Martin Baulig  <martin@ximian.com>
24917
24918         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
24919         of the type name before passing it to mono_reflection_type_from_name().
24920
24921 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
24922
24923         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
24924         encodings here. Fixes #56965.
24925
24926 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
24927
24928         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
24929         fix test on strstr result not that I can see anything that
24930         relies on the result.
24931
24932 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
24933
24934         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
24935         Fixes #57081.
24936
24937         * marshal.c (mono_marshal_get_string_encoding): New helper function.
24938
24939         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
24940         function to determine which marshalling to use for strings. Fixes
24941         #56965.
24942
24943         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
24944
24945         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
24946
24947 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
24948
24949         * icall.c: #include mono-config.h
24950
24951 2004-04-15  Jackson Harper  <jackson@ximian.com>
24952
24953         * culture-info-tables.h: Fix date formats for en-US culture.
24954         
24955 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
24956
24957         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
24958         ThreadPool.SetMinThreads.
24959         * threadpool.c: Implemented ThreadPool.GetMinThreads and
24960         ThreadPool.SetMinThreads.
24961
24962 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
24963
24964         * mono-config.c: also load the .config file in the directory
24965         where the assembly was found.
24966
24967 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
24968
24969         * assembly.c: load per-assembly config files.
24970         * icall.c: decrapified code to get the config dir and moved to
24971         mono-config.c.
24972         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
24973         per-assembly config files. When doing a dll map lookup give precedence
24974         to the per-assembly data.
24975
24976 2004-04-14  Martin Baulig  <martin@ximian.com>
24977
24978         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
24979         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
24980         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
24981
24982         * mono-debugger-debugger.c: While the debugger is locked, remember
24983         whether the symbol tables have changes and send one single
24984         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
24985
24986 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
24987
24988         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
24989
24990         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
24991         function.
24992
24993         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
24994         account when marshalling string arrays. Fixes #56965.
24995
24996 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
24997
24998         * icall.c: Add new icalls mapping for security.
24999         * security.c|h: Add internal calls for WindowsIdentity,
25000         WindowsImpersonationContext and WindowsPrincipal.
25001
25002 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
25003
25004         * class.c: Added comment to ensure the System.MonoDummy class
25005         is removed when no longer necessary
25006
25007 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
25008
25009         * appdomain.c: Pass arguments to the bootstraping exceptions to
25010         minimize JITed methods at boot
25011
25012         * metadata.c (mono_exception_from_name_two_strings): Allow for the
25013         second string to be null.
25014
25015         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
25016         Change the protocol to minimize the JIT methods at startup.  Now
25017         it Returns the internal codepage, if the value of "int_code_page"
25018         is 1 at entry, and we can not compute a suitable code page
25019         number, returns the code page as a string.
25020
25021 2004-04-13  Jackson Harper  <jackson@ximian.com>
25022
25023         * culture-info-tables.h: Fix number of decimal digits for all
25024         english locales.
25025
25026 2004-04-13  Jackson Harper  <jackson@ximian.com>
25027
25028         * icall.c: Clairfy out of sync error message. It is not always
25029         your corlib that is out of sync.
25030
25031 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
25032
25033         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
25034         properties when only the set accessor is overriden. Fixes #55874.
25035
25036 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
25037
25038         * assembly.c (mono_assembly_load_references): Make this thread safe.
25039         Fixes #56327.
25040
25041 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
25042
25043         * monosn.c: Add missing initialization calls.
25044
25045 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
25046
25047         * locales.c:
25048         ves_icall_System_Globalization_CultureInfo_construct_number_format
25049         Fix g_assert so it compiles on fussier compilers re int/ptr
25050         mismatch
25051
25052 2004-04-08  Dick Porter  <dick@ximian.com>
25053
25054         * socket-io.h:
25055         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
25056         53992.  Also rearrange the code so that the internal calls return
25057         an error value and exceptions are thrown from managed code.
25058
25059         * icall.c: Add type info to the socket icalls.
25060
25061 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25062
25063         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
25064         owes me a beer.
25065
25066 2004-04-07  Martin Baulig  <martin@ximian.com>
25067
25068         * class.c (mono_class_from_generic_parameter): Don't default
25069         `klass->parent' to `mono_defaults.object_type'.
25070
25071 2004-04-07  Martin Baulig  <martin@ximian.com>
25072
25073         * reflection.c (mono_reflection_initialize_generic_parameter): Set
25074         `param->pklass->reflection_info'.       
25075
25076 2004-04-07  Jackson Harper  <jackson@ximian.com>
25077
25078         * culture-info-tables.h: Fix date separator symbol.
25079         
25080 2004-04-07  Martin Baulig  <martin@ximian.com>
25081
25082         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
25083         from System.Type to System.MonoType.
25084
25085 2004-04-07  Martin Baulig  <martin@ximian.com>
25086
25087         * reflection.h
25088         (MonoReflectionGenericParam): Added `has_reference_type' and
25089         `has_value_type' fields.
25090
25091         * reflection.c (mono_image_get_generic_param_info): Encode the
25092         correct flags if we have the `class' or `struct' constraint.
25093
25094 2004-04-07  Martin Baulig  <martin@ximian.com>
25095
25096         * reflection.h
25097         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
25098
25099 2004-04-07  Jackson Harper  <jackson@ximian.com>
25100
25101         * appdomain.c: Revert extra patches, just wanted to bump the
25102         version number.
25103         
25104 2004-04-07  Jackson Harper  <jackson@ximian.com>
25105
25106         * Makefile.am: Add culture-info private headers.
25107         * icall.c: Add new icalls for contructing locales.
25108         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
25109         * locales.h: Declare new culture info construction methods.
25110         * object.h: Add new fields used to avoid the CultureMap to
25111         MonoCultureInfo.
25112         * culture-info.h: Definition of structs used in the culture info
25113         tables.
25114         * culture-info-tables.h: Autogenerated tables that contain culture
25115         info data. This file was generated with the locale-builder tool.
25116         * appdomain.c: Incement corlib version number.
25117         
25118 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
25119
25120         * appdomain.c: (mono_runtime_init) move mono_thread_init
25121         to before mono_object_new calls so critical sections
25122         are initialized before use.
25123
25124 2004-04-07  Martin Baulig  <martin@ximian.com>
25125
25126         * icall.c
25127         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
25128         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
25129         (ves_icall_MonoGenericParam_initialize): Removed.
25130         (monogenericparam_icalls): Removed.
25131         (generictypeparambuilder_icalls): Added new table for
25132         System.Reflection.Emit.GenericTypeParameterBuilder.
25133
25134         * reflection.c
25135         (mono_reflection_define_generic_parameter): Removed.
25136         (mono_reflection_initialize_generic_parameter): This is now called
25137         from GenericTypeParameterBuilder's .ctor.
25138
25139 2004-04-06  Martin Baulig  <martin@ximian.com>
25140
25141         * class.c (mono_class_init): Don't inflate nested classes in a
25142         generic instance.
25143         (mono_type_get_name_recurse): Include the generic arguments for
25144         generic instances and generic type declarations.
25145         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
25146         (_mono_class_get_instantiation_name): Removed.
25147         (mono_class_create_generic): Always use `gklass->name' as our name.
25148
25149         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
25150
25151         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
25152         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
25153         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
25154         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
25155         closed generic methods here.
25156
25157         * reflection.c
25158         (mono_reflection_generic_inst_get_nested_types): Removed.
25159         (inflate_mono_method): Copy the generic parameters from the
25160         MonoMethodHeader into out MonoGenericMethod.
25161
25162 2004-04-06  Martin Baulig  <martin@ximian.com>
25163
25164         * row-indexes.h
25165         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
25166
25167         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
25168
25169         * reflection.c (build_compressed_metadata): If we have any entries
25170         in the GenericParam, MethodSpec or GenericParamConstraint tables,
25171         set the header version to 1.1.
25172
25173 2004-04-06  Martin Baulig  <martin@ximian.com>
25174
25175         * class.c (mono_class_init): If we're a generic instance,
25176         initialize our nested classes, too.
25177         (_mono_class_get_instantiation_name): Deal with the new `!%d'
25178         suffix. 
25179
25180 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25181
25182         * process.c: quote the argument passed to the shell on windows.
25183
25184 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
25185
25186         * threads.c (mono_alloc_special_static_data): Allow this to be
25187         called during startup.
25188
25189 2004-04-02  Martin Baulig  <martin@ximian.com>
25190
25191         * icall.c
25192         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
25193
25194 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
25195
25196         * icall.c: Fix build.
25197
25198 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
25199
25200         * Makefile.am: Added security.c|h.
25201         * icall.c: Added icall for get_UserName;
25202         * security.c: New file for security related icalls. Added function
25203         get_UserName for System.Environment (fix #56144).
25204         * security.h: New. Header file for security.c
25205
25206 2004-04-02  Dick Porter  <dick@ximian.com>
25207
25208         * icall.c: Deleted the icalls that were obsoleted some time ago
25209         by the ICU string code, and which were mixed into the icall
25210         rearranging.  Fixes bug 55969.
25211
25212         * string-icalls.h: 
25213         * string-icalls.c: Deleted the code that those icalls reference.
25214
25215 2004-04-01  Martin Baulig  <martin@ximian.com>
25216
25217         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
25218
25219         * class.c (mono_class_from_generic_parameter): Don't set 
25220         TYPE_ATTRIBUTE_INTERFACE.
25221         (my_mono_class_from_generic_parameter): Likewise.
25222
25223 2004-04-01  Martin Baulig  <martin@ximian.com>
25224
25225         * loader.c (find_method): Added an optional `MonoClass *ic'
25226         argument to search in a specific interface.
25227         (mono_get_method_constrained): New public function.
25228
25229 2004-04-01  Martin Baulig  <martin@ximian.com>
25230
25231         * reflection.c (mono_image_get_generic_field_token): Use the
25232         `handleref' cache here.
25233
25234 2004-04-01  Martin Baulig  <martin@ximian.com>
25235
25236         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
25237
25238         * reflection.c (create_generic_typespec): Use the `typespec' hash
25239         here, not the `typeref' one.    
25240
25241 2004-04-01  Martin Baulig  <martin@ximian.com>
25242
25243         * class.c (mono_class_inflate_generic_type): Moved the
25244         functionality into a new static inflate_generic_type() which
25245         returns NULL if it didn't do anything.  Only increment the
25246         `mono_stats.inflated_type_count' if we actually inflated
25247         something.
25248         (mono_class_get_full): Check the classes type to see whether we
25249         need to inflate it; also inflate MONO_TYPE_(M)VAR.
25250
25251 2004-04-01  Jackson Harper  <jackson@ximian.com>
25252
25253         * reflection.c: Set culture for assembly references.
25254         
25255 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
25256
25257         * reflection.[ch], icall.[ch], Fix support for pinning variables.
25258
25259 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25260
25261         * assembly.c:
25262         (do_mono_assembly_open): the critical section also covers
25263         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
25264
25265 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25266
25267         * threads.c:
25268         (mono_manage_threads): abort the background threads when finishing.
25269         Fixes bug #47232.
25270
25271 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25272
25273         * gc.c: only close the done_event handle if there was no timeout.
25274         C-ified comments.
25275
25276 2004-03-30  Martin Baulig  <martin@ximian.com>
25277
25278         * icall.c (icall_entries): It's called "System.Activator", not
25279         "System.Activation".    
25280
25281 2004-03-30  Martin Baulig  <martin@ximian.com>
25282
25283         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
25284         (mono_class_create_from_typespec): Likewise.
25285
25286 2004-03-30  Martin Baulig  <martin@ximian.com>
25287
25288         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
25289         `has_ctor_constraint' and `initialized'.
25290
25291 2004-03-30  Martin Baulig  <martin@ximian.com>
25292
25293         * reflection.c (encode_new_constraint): New static function to add
25294         the constructor constraint attribute to a type parameter.
25295         (encode_constraints): Call encode_new_constraint() if necessary.
25296
25297         * reflection.h
25298         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
25299
25300         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
25301         
25302 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
25303
25304         * reflection.c, icall.c: add support for pinning variables. 
25305
25306 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
25307
25308         * marshal.c (mono_marshal_get_managed_wrapper):
25309         init bool local with zero rather than null.
25310
25311 2004-03-29  Martin Baulig  <martin@ximian.com>
25312
25313         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
25314         the "official" behavior here.
25315         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
25316
25317 2004-03-29  Martin Baulig  <martin@ximian.com>
25318
25319         * icall.c: Reflect latest API changes.
25320
25321 2004-03-29  Martin Baulig  <martin@ximian.com>
25322
25323         * loader.c (mono_get_method_from_token): Also call
25324         mono_metadata_load_generic_params () for abstract and interface
25325         methods; replace the type arguments in the method signature with
25326         the ones which are loaded from the metadata.
25327
25328 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
25329
25330         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
25331         of the lock is not the current thread. MS.NET don't do it, in spite of
25332         what the documentation says. See bug #56157.
25333
25334 2004-03-28  Martin Baulig  <martin@ximian.com>
25335
25336         * class.c (mono_class_init): Don't call init_properties() and
25337         init_events() for generic instances; set `prop->parent' when
25338         inflating properties.
25339
25340         * reflection.c (mono_generic_inst_get_object): Call
25341         `mono_class_init (ginst->klass)'.
25342         (mono_type_get_object): Only create a MonoGenericInst if your
25343         generic type is a TypeBuilder.
25344         (do_mono_reflection_bind_generic_parameters): Only set
25345         `ginst->is_dynamic' if our generic type is a TypeBuilder.
25346
25347 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
25348
25349         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
25350         Fixes #56091.
25351
25352 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25353
25354         * icall.c: added Kill_internal icall.
25355         * process.[ch]: added Kill_internal icall.
25356
25357 2004-03-25  Martin Baulig  <martin@ximian.com>
25358
25359         * class.h (MonoStats): Added `generic_instance_count',
25360         `inflated_method_count', `inflated_type_count' and
25361         `generics_metadata_size'.       
25362
25363 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25364
25365         * reflection.c: no warnings now.
25366
25367 2004-03-25  Martin Baulig  <martin@ximian.com>
25368
25369         * class.c (mono_class_get_full): New public function; does a
25370         mono_class_get(), but also takes a `MonoGenericContext *'.
25371
25372         * loader.c (mono_field_from_memberref): Renamed to
25373         `field_from_memberref', made static and added `MonoGenericContext *'
25374         argument.
25375         (mono_field_from_token): Added `MonoGenericInst *' argument.
25376         (method_from_memberef): Likewise.
25377         (mono_get_method_from_token): Likewise.
25378         (mono_get_method_full): New public function; does a
25379         mono_get_method(), but also takes a `MonoGenericContext *'.
25380
25381         * verify.c (mono_method_verify): Get the method's generic context
25382         and pass it to mono_field_from_token(), mono_get_method_full() and
25383         mono_class_get_full().
25384
25385 2004-03-25  Martin Baulig  <martin@ximian.com>
25386
25387         * class.c (mono_class_inflate_generic_type): Take a
25388         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
25389         `MonoGenericMethod *'.
25390
25391 2004-03-25  Martin Baulig  <martin@ximian.com>
25392
25393         * loader.h (MonoMethodInflated): Store the MonoGenericContext
25394         instead of the MonoGenericMethod here.
25395
25396 2004-03-25  Martin Baulig  <martin@ximian.com>
25397
25398         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
25399         each time we create a new MonoGenericInst, we also create a new
25400         context which points back to us.
25401
25402         * class.c (inflate_method): Use `ginst->context' instead of
25403         creating a new context.
25404
25405         * loader.c (method_from_memberref): Use
25406         `klass->generic_inst->context' instead of creating a new context.
25407
25408 2004-03-25  Martin Baulig  <martin@ximian.com>
25409
25410         * class.h (MonoGenericContext): New struct.
25411         (MonoGenericMethod): Removed `generic_inst'.
25412
25413         * class.c (mono_class_inflate_generic_method): Take a
25414         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
25415
25416 2004-03-25  Martin Baulig  <martin@ximian.com>
25417
25418         * loader.h (MonoMethodInflated): New typedef.
25419
25420         * metadata.h (MonoMethodSignature): Removed `gen_method', make
25421         `generic_param_count' consume just 30 bits, added `is_inflated'
25422         and `has_type_parameters' flags (one bit each).
25423
25424         * class.c (mono_class_inflate_generic_method): Create a
25425         MonoMethodInflated instead of a MonoMethodNormal and set
25426         `is_inflated' in the method signature.
25427
25428         * class.h (MonoGenericMethod): Removed `generic_method'.
25429
25430 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
25431
25432         * image.c: Make sure the name of a MonoImage is always an absolute path.
25433           This fixes bug #54415.
25434
25435 2004-03-24  Martin Baulig  <martin@ximian.com>
25436
25437         * class.c (mono_class_setup_vtable): If we're a generic instance,
25438         use our generic type's vtable size.
25439
25440 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
25441
25442         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
25443         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
25444         problems.
25445
25446 2004-03-23  Martin Baulig  <martin@ximian.com>
25447
25448         * class.h (MonoDynamicGenericInst): Added `int count_events' and
25449         `MonoEvent *events'.
25450
25451         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
25452         (typebuilder_icalls): Added "get_event_info"; calls
25453         mono_reflection_event_builder_get_event_info(). 
25454
25455         * reflection.c (mono_reflection_generic_inst_initialize): Added
25456         `MonoArray *events'.
25457         (mono_reflection_event_builder_get_event_info): New function.
25458
25459 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
25460
25461         * object.h: add mono_type_initialization_init
25462
25463         * object.c (mono_runtime_class_init): 
25464         implement class constructor synchronization rules
25465         to cope with threading issues.  
25466         add mono_type_initialization_init
25467
25468         * appdomain.c (mono_runtime_init): call 
25469         mono_type_initialization_init
25470
25471         * class.h: removing initializing field from MonoVTable
25472
25473 2004-03-23  Martin Baulig  <martin@ximian.com>
25474
25475         * class.c (my_mono_class_from_generic_parameter): Use
25476         `param->name' if it's not NULL. 
25477
25478 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
25479
25480         * class.c: do not insert non-virtual methods in the vtable.
25481         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
25482         that means the method is non-virtual. This never would have
25483         happened before.
25484
25485 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
25486
25487         * profiler.c: Added lock for accessing coverage_hash.
25488
25489 2004-03-22  Martin Baulig  <martin@ximian.com>
25490
25491         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
25492         `method->method->signature->generic_param_count != 0' to make it
25493         work for interface methods.
25494
25495 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25496
25497         * process.c: quote the string passed to the shell using g_shell_quote.
25498
25499 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25500
25501         * threads.c:
25502         (mono_threads_manage): don't remove the finalizer thread and self
25503         from the threads hash table so that mono_thread_manage can be called
25504         more than once.
25505
25506 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25507
25508         * process.c: quote the arguments when UseShellExecute is true. Fixes
25509         bug #55790.
25510
25511 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25512
25513         * threads.c: set mono_thread_detach as a cleanup routine for every
25514         thread. This way it's always executed upon thread termination, either
25515         aborted or finished normally. No more xsp hangs!
25516
25517 2004-03-17  Martin Baulig  <martin@ximian.com>
25518
25519         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
25520         `int count_nested' and a `MonoType **nested'.
25521
25522         * reflection.c (mono_reflection_bind_generic_parameters): Moved
25523         most of the functionality into a new static
25524         do_mono_reflection_bind_generic_parameters() and don't take a
25525         `MonoType *nested_in' argument any more.  Don't compute nested
25526         types here.
25527         (mono_reflection_generic_inst_get_nested_types): New public method
25528         to get nested types.
25529
25530         * class.c (mono_class_create_generic): Set `klass->nested_in' if
25531         we're a nested class.
25532
25533         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
25534         mono_reflection_generic_inst_get_nested_types() to compute the
25535         nested types.
25536
25537 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
25538
25539         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
25540         descriptive error message under windows.
25541         
25542 2004-03-17  Martin Baulig  <martin@ximian.com>
25543
25544         * class.c (dup_type): Added `const MonoType *original' argument;
25545         copy the attrs from the original type.
25546
25547 2004-03-17  Martin Baulig  <martin@ximian.com>
25548
25549         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
25550         `m->generic_inst_cache' here.
25551
25552 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
25553
25554         * exception.h exception.c: Add stack_overflow_exception.
25555
25556 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25557
25558         * threadpool.c:
25559         (overlapped_callback): call SetEvent *after* invoking the callback.
25560         No need to call CloseHandle.
25561
25562 2004-03-16  Martin Baulig  <martin@ximian.com>
25563
25564         * reflection.c (mono_image_get_fieldref_token): Take a
25565         `MonoReflectionField *' instead of a `MonoClassField *' and a
25566         `MonoClass *'; store the `MonoReflectionField *' in the hash.
25567
25568 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25569
25570         * appdomain.c: don't add the culture to the filename we're looking for
25571         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
25572
25573 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25574
25575         * locales.c: don't ignore symbols when doing case insensitive compares.
25576         Thanks Dick! Fixes bug #54046.
25577
25578         * threads.c: surround 'threads' usage with enter/leave in
25579         mono_thread_manage.
25580
25581 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
25582
25583         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
25584         implicitly marshalled as [Out]. Fixes #55450.
25585
25586         (mono_marshal_get_runtime_invoke): Zero out the result if there is
25587         an exception.
25588
25589 2004-03-16  Martin Baulig  <martin@ximian.com>
25590
25591         * class.c (mono_class_from_generic_parameter): Use the actual
25592         parameter name. 
25593
25594 2004-03-16  Martin Baulig  <martin@ximian.com>
25595
25596         * reflection.c (type_get_signature_size): New static function.
25597         Compues the size of the type in a method signature.
25598         (method_get_signature_size): New static function; calls
25599         type_get_signature_size() to compute the actual size of the
25600         method's signature.
25601         (method_encode_signature): Use method_get_signature_size() to get
25602         the signature's size rather than using `nparams * 10'.
25603
25604 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25605
25606         * file-io.h: define here WapiOverlapped on windows. I don't want the
25607         regular OVERLAPPED one.
25608
25609         * file-io.c:
25610         * threadpool.c: somehow, BindIoCompletionCallback is not found.
25611         Disabling AIO on windows.
25612
25613 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25614
25615         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
25616         bug #55385.
25617
25618 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25619
25620         * appdomain.c: upgraded corlib version.
25621
25622         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
25623         and BeginWrite. Allow opening files for asynchrnous operations.
25624
25625         * file-io.h: new struct that maps FileStreamAsyncResult.
25626         * icall.c: added new icalls.
25627         * process.[ch]: support setting child process environment variables
25628         and use the SHELL or COMSPEC when UseShellExecute is true.
25629
25630         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
25631         callback for async. IO is here and also BindHandle.
25632
25633         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
25634         from here.
25635
25636 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
25637
25638         * reflection.c (create_custom_attr): Allow len == 0.
25639
25640         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
25641         computation on big-endian machines.
25642
25643 2004-03-13  Martin Baulig  <martin@ximian.com>
25644
25645         * class.h (MonoGenericInst): Added `int count_ifaces'.
25646
25647         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
25648         `ginst->count_ifaces' instead `klass->interface_count' since we
25649         may get called before the vtable is created.
25650
25651         * loader.c (mono_method_get_param_names): If we're a generic
25652         instance, return and don't initialize the class.
25653
25654         * reflection.c (mono_reflection_setup_generic_class): Don't call
25655         ensure_runtime_vtable().
25656         (mono_reflection_bind_generic_parameters): Set
25657         `ginst->count_ifaces'.
25658
25659 2004-03-11  Jackson Harper <jackson@ximian.com>
25660
25661         * icall.c:
25662         * unicode.c:
25663         * unicode.h: Remove unused System.Char icalls.
25664         
25665 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
25666
25667         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
25668         code when we P/Invoke the first library in Windows.Forms, instead
25669         of when we first open the assembly.
25670
25671         * assembly.c: Drop the lookup from here.
25672
25673 2004-03-10  Martin Baulig  <martin@ximian.com>
25674
25675         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
25676         class for properties, fields and events.  Finally fixes #54945.
25677
25678 2004-03-10  Martin Baulig  <martin@ximian.com>
25679
25680         * metadata.c (mono_metadata_class_equal): New static function;
25681         checks whether two generic instances or two generic parameters are
25682         equal.
25683         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
25684         compare classes.        
25685
25686 2004-03-10  Martin Baulig  <martin@ximian.com>
25687
25688         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
25689
25690         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
25691         argument and write it into the `reflection_info' field.
25692
25693         * icall.c
25694         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
25695         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
25696
25697 2004-03-09  Jackson Harper  <jackson@ximian.com>
25698
25699         * char-conversions.h: use 8 bits for numeric data its all we need
25700         * icall.c: numeric data is only 8 bits now.
25701
25702 2004-03-09  Martin Baulig  <martin@ximian.com>
25703
25704         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
25705
25706         * class.c (init_properties, init_events): Initialize the new
25707         `parent' field.
25708
25709         * reflection.c (typebuilder_setup_properties): Likewise.
25710         (typebuilder_setup_events): Likewise.
25711
25712         * reflection.h (MonoEventInfo): Replaced `parent with
25713         `declaring_type' and `reflected_type'.
25714
25715         * icall.c (ves_icall_get_property_info): Distinguish between
25716         declaring and reflected type.
25717         (ves_icall_get_event_info): Likewise.
25718
25719 2004-03-09  Martin Baulig  <martin@ximian.com>
25720
25721         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
25722         (ves_icall_Type_GetField): Correctly set field->klass.
25723
25724 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
25725
25726         * loader.h: Fix warning.
25727
25728 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
25729
25730         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
25731         library routine if present.  Notice that it will still continue
25732         executing even if its missing, for those working on the Gtk#
25733         edition of Windows.Forms.
25734
25735         * assembly.c (do_mono_assembly_open): If loading the
25736         System.Windows.Forms call mono_loader_wini_init.
25737
25738 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
25739
25740         * class.h: Added MonoRemoteClass struct.
25741         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
25742         function for MonoStrings.
25743         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
25744         Added internal call for getting the proxy type.
25745         * marshal.c: Get the type of transparent proxies from its remote_class.
25746         Added methods that generate the IL for type checks and casts:
25747         mono_marshal_get_isinst, mono_marshal_get_castclass, 
25748         mono_marshal_get_proxy_cancast.
25749         * marshal.h: Declaration of the previous new methods.
25750         * object.c: Added new moethods for creating and updating MonoRemoteClass
25751         instances: mono_remote_class, mono_upgrade_remote_class, 
25752         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
25753         * verify.c: FIx transparent_proxy_fields layout.
25754         * appdomain.c: Bump corlib version.
25755
25756 2004-03-04  Jackson Harper  <jackson@ximian.com>
25757
25758         * icall.c: Add icall to access char conversion tables.
25759         * char-conversions.h: Character conversion tables.
25760         * Makefile.am: Add char-conversions.h private header file.
25761         
25762 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
25763
25764         * appdomain.c (unload_thread_main): Increase unloading timeout to
25765         10 sec as a temporary workaround for Nant problems.
25766
25767 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
25768
25769         * gc.c: Add checks for GC_enable and GC_disable.
25770
25771         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
25772         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
25773         (bug #54988).
25774         
25775 2004-02-27  Martin Baulig  <martin@ximian.com>
25776
25777         * reflection.c (mono_reflection_bind_generic_parameters): Take a
25778         `MonoReflectionType *' instead of a `MonoType *'.
25779
25780 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
25781
25782         * gc.c (run_finalize): Avoid finalizing the object representing the
25783         finalizer thread.
25784         (finalizer_thread): Fix warning.
25785
25786 2004-02-25  Martin Baulig  <martin@ximian.com>
25787
25788         * class.c (_mono_class_get_instantiation_name): Added `int offset'
25789         argument for nested types.
25790         (mono_class_create_generic): Added support for nested generictypes.
25791
25792         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
25793         `GList *nested'.
25794
25795         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
25796
25797         * reflection.c (method_encode_signature): Increase the minimum
25798         value of `size' from 10 to 11.
25799         (mono_reflection_bind_generic_parameters): Take `int type_argc'
25800         and `MonoType **types' arguments instead of the `MonoArray
25801         *types'; added `MonoType *nested_in'.  Recursively instantiate
25802         nested classes. 
25803
25804 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
25805
25806         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
25807         stack_overflow_ex members which are used by exception handling.
25808
25809         * appdomain.c (mono_runtime_init): Initialize the new members.
25810
25811         * gc.c (mono_gc_enable): New helper function.
25812         * gc.c (mono_gc_disable): New helper function.
25813
25814 2004-02-23  Martin Baulig  <martin@ximian.com>
25815
25816         * icall.c: I must have been really stupid - make it actually work
25817         this time ;-)
25818
25819 2004-02-23  Martin Baulig  <martin@ximian.com>
25820
25821         * loader.c (method_from_memberref): Only inflate the method if
25822         it's in another klass.
25823
25824 2004-02-23  Martin Baulig  <martin@ximian.com>
25825
25826         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
25827         (mono_class_init): If we're a generic instance and an interface,
25828         compute `class->interface_id'; also create `class->interfaces'
25829         here and inflate them.
25830
25831         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
25832         `ginst->is_open'.
25833         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
25834
25835         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
25836
25837 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
25838
25839         * reflection.c (method_encode_code): Improved the error message
25840         generated by the exception.
25841
25842 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25843
25844         * icall.c: Martin did not do what he said in the ChangeLog for
25845         2004-02-18, but put back the changes for properties and events.
25846         Commenting those changes out again and adding comment to bug #54518.
25847         
25848         * process.c: removed warning.
25849
25850 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
25851
25852         * marshal.c (emit_struct_conv): Print an error message instead of
25853         asserting when a type does not have the StructLayout attribute.
25854
25855 2004-02-20  Martin Baulig  <martin@ximian.com>
25856
25857         * reflection.c (mono_type_get_object): Also use the cache for
25858         generic instances.
25859         (mono_reflection_bind_generic_parameters): Always compute
25860         `ginst->ifaces'.        
25861
25862 2004-02-20  Martin Baulig  <martin@ximian.com>
25863
25864         * class.h (MonoGenericMethod): Removed `klass'.
25865
25866         * class.c (mono_class_inflate_generic_method): Added `MonoClass
25867         *klass' argument.
25868
25869 2004-02-20  Martin Baulig  <martin@ximian.com>
25870
25871         * reflection.c (method_encode_methodspec): Actually use the
25872         uninflated signature for the memberref.
25873
25874 2004-02-20  Martin Baulig  <martin@ximian.com>
25875
25876         * class.h (MonoGenericMethod): Removed `declaring'.
25877
25878         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
25879         is NULL, compute it here.
25880
25881 2004-02-20  Martin Baulig  <martin@ximian.com>
25882
25883         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
25884
25885         * metadata.c (mono_metadata_generic_inst_hash): New method.
25886         (mono_metadata_generic_inst_equal): New method.
25887
25888         * reflection.c (mono_reflection_bind_generic_parameters): Use the
25889         `klass->image->generic_inst_cache' cache to avoid creating
25890         duplicate MonoGenericInst's.
25891
25892         * class.c (mono_class_inflate_generic_type): Use the cache.
25893
25894 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
25895
25896         * object.c: fixed gc descriptor calculation for embedded valuetypes.
25897
25898 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25899
25900         * icall.c: added Socket.WSAIoctl icall.
25901
25902         * socket-io.[ch]: implemented
25903         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
25904
25905 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
25906
25907         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
25908
25909 2004-02-18  Urs C Muff  <umuff@quark.com>
25910
25911         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
25912         this work on PPC and other big-endian architectures.
25913
25914         * debug-mono-symfile.h: Prepended the names of all the `guint32'
25915         fields with an underscore to make sure they're only accessed by
25916         the read32() macro.
25917
25918 2004-02-18  Martin Baulig  <martin@ximian.com>
25919
25920         * icall.c: Put the klass->refclass changes back for methods and
25921         fields, but not for properties and events.  We're currently not
25922         distinguishing between DeclaringType and ReflectedType for
25923         properties and events, that's what caused the regressions.
25924
25925 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25926
25927         * object.c:
25928         (mono_async_result_new): the handle can be NULL.
25929
25930         * threadpool.c: Use an event instead of a semaphore, don't initialize
25931         it until needed. This saves quite a few semaphores from being created
25932         when using the threadpool.
25933
25934 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
25935
25936         * object.c (mono_string_is_interned_lookup): Fix interning of long
25937         strings. Fixes #54473.
25938
25939         * domain.c (ldstr_equal): Optimize if the two strings are equal.
25940
25941         * icall.c: Revert the klass->refclass changes since they introduce
25942         regressions (bug #54518).
25943
25944 2004-02-18  Martin Baulig  <martin@ximian.com>
25945
25946         * class.c (mono_class_init): If we're a generic instance and don't
25947         come from a TypeBuilder, inflate our members here.
25948         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
25949         (mono_class_create_generic): New public method.
25950         (mono_class_initialize_generic): Removed.
25951         (get_instantiation_name): Renamed to
25952         _mono_class_get_instantiation_name() and made it public.
25953
25954 2004-02-18  Martin Baulig  <martin@ximian.com>
25955
25956         * class.c (mono_class_inflate_generic_type): Clear the new
25957         instance's `nginst->klass' when inflating a generic instance.
25958         (mono_class_is_subclass_of): Added (basic) support for generic
25959         instances.
25960
25961 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
25962
25963         * appdomain.h, domain.c: use a MonoCodeManager instead of a
25964         MonoMempool to hold compiled native code.
25965
25966 2004-02-17  Martin Baulig  <martin@ximian.com>
25967
25968         * class.h (MonoDynamicGenericInst): Added `count_properties' and
25969         `properties'.
25970
25971         * reflection.c (mono_reflection_generic_inst_initialize): Added
25972         `MonoArray *properties' argument.
25973
25974         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
25975
25976 2004-02-17  Martin Baulig  <martin@ximian.com>
25977
25978         * icall.c (ves_icall_Type_GetFields): Renamed to
25979         ves_icall_Type_GetFields_internal() and added a
25980         `MonoReflectionType *rtype' argument; pass it to
25981         mono_field_get_object() to set the field's "reflected" type.
25982         (ves_icall_Type_GetConstructors): Likewise.
25983         (ves_icall_Type_GetEvents): Likewise.
25984         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
25985         argument; pass it to mono_method_get_object() to set the method's
25986         "reflected" type.       
25987
25988 2004-02-17  Martin Baulig  <martin@ximian.com>
25989
25990         * class.h (MonoDynamicGenericInst): New type.
25991         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
25992
25993         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
25994         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
25995         (ves_icall_MonoGenericInst_GetFields): New interncall.
25996
25997         * class.c (mono_class_from_generic): Don't call
25998         mono_class_initialize_generic() if this is a dynamic instance;
25999         ie. it's being created from a TypeBuilder.
26000         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
26001         `class->byval_arg.type'.
26002
26003         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
26004         to `inflate_method' and made static.
26005         (mono_reflection_inflate_field): Removed.
26006         (mono_reflection_generic_inst_initialize): New public method.
26007
26008         * reflection.h (MonoReflectionGenericInst): Removed `methods',
26009         `ctors' and `fields'; added `initialized'.
26010
26011 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
26012
26013         * debug-helpers.c (mono_method_full_name): Fix output for empty
26014         namespaces.
26015
26016 2004-02-12  Martin Baulig  <martin@ximian.com>
26017
26018         * class.h (MonoClassField): Added `MonoType *generic_type'.
26019
26020         * reflection.c (mono_image_get_fieldref_token): Added support for
26021         instantiated generic types.
26022         (field_encode_inflated_field): Removed.
26023         (mono_image_get_inflated_field_token): Removed.
26024         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
26025
26026         * reflection.h (MonoReflectionInflatedField): Removed.
26027
26028 2004-02-12  Martin Baulig  <martin@ximian.com>
26029
26030         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
26031         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
26032
26033         * reflection.c (mono_image_get_methodspec_token): Take a
26034         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
26035         (mono_image_create_token): Check whether we have a
26036         `method->signature->gen_method' and call
26037         mono_image_get_methodspec_token() if appropriate.
26038         (inflated_method_get_object): Removed.
26039         (mono_reflection_bind_generic_method_parameters): Return a
26040         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
26041         (mono_reflection_inflate_method_or_ctor): Likewise.
26042
26043         * reflection.h (MonoReflectionInflatedMethod): Removed.
26044
26045 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
26046
26047         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
26048         for custom valuetype marshalling.
26049
26050         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
26051
26052 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26053
26054         * icall.c: fixed WSAGetLastError_internal name.
26055
26056 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
26057
26058         * threads.c (mono_thread_attach): Allow this to be called multiple
26059         times for a thread.
26060         
26061         * threads.c (build_wait_tids): Do not wait for ourselves.
26062
26063         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
26064         appdomain list is empty.
26065
26066         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
26067         memory returned by mono_string_builder_to_utf16, since it points into
26068         managed memory. Thanks to Bernie Solomon for noticing this.
26069
26070         * icall.c: Add AppDomainSetup icalls.
26071
26072         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
26073
26074         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
26075         types.
26076
26077         * reflection.c (reflection_methodbuilder_to_mono_method): Save
26078         custom attributes to the method_aux struct. Also fix array indexes etc.
26079
26080         * loader.c (mono_method_get_param_names): Make dynamic case work again.
26081         
26082 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
26083
26084         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
26085         (both static and runtime) and reduce startup time.
26086
26087 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
26088
26089         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
26090         AsAny marshalling conversion instead of crashing.
26091
26092         * marshal.c: Fix warnings.
26093
26094 2004-02-09  Martin Baulig  <martin@ximian.com>
26095
26096         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
26097
26098         * reflection.h (MonoReflectionInflatedMethod): Removed the
26099         `declaring' field, it's now in the unmanaged MonoGenericMethod.
26100
26101         * reflection.c (method_encode_methodspec): Removed the `method'
26102         argument; we get it from `gmethod->declaring'.
26103         (inflated_method_get_object): Removed the `declaring' argument.
26104
26105 2004-02-09  Martin Baulig  <martin@ximian.com>
26106
26107         * class.h (MonoGenericMethod): New type.
26108         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
26109         `generic_method'.
26110
26111         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
26112         a `MonoGenericMethod *gen_method' one.
26113
26114         * class.c (mono_class_inflate_generic_type): Take an additional
26115         `MonoGenericMethod * argument.  This is only non-NULL if we're
26116         inflating types for a generic method.   
26117         (mono_class_inflate_generic_signature): Renamed to
26118         inflate_generic_signature() and made static; take a
26119         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26120         (inflate_generic_header): Take a `MonoGenericMethod *' argument
26121         instead of a `MonoGenericInst *' one.
26122         (mono_class_inflate_generic_method): Likewise.
26123
26124         * reflection.c (encode_generic_method_sig): Take a
26125         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
26126         (method_encode_methodspec): Likewise.
26127         (inflated_method_get_object): Likewise. 
26128
26129         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
26130         field with a `MonoGenericMethod *gmethod' one.  
26131
26132 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
26133
26134         * class.h (mono_class_has_parent): add parens to expansion
26135         so you can ! this.
26136
26137 2004-02-08  Martin Baulig  <martin@ximian.com>
26138
26139         * image.h (MonoImage): Removed `generics_cache'.
26140
26141         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
26142         instead of a `MonoType *' argument; removed the `inflate_methods'
26143         argument.  Don't inflate methods here.
26144
26145         * loader.c (find_method): If it's a generic instance, call
26146         mono_class_init() on the `sclass->generic_inst->generic_type'.
26147
26148         * metadata.c (mono_type_size): Make this work on uninitialized
26149         generic instances; call it on the `ginst->generic_type's class.
26150
26151         * reflection.c (mono_reflection_bind_generic_parameters): Call
26152         mono_class_from_generic() to create the `ginst->klass'.
26153
26154 2004-02-08  Martin Baulig  <martin@ximian.com>
26155
26156         * class.h (MonoClass): Changed type of `generic_inst' from
26157         `MonoType *' to `MonoGenericInst *'.
26158
26159 2004-02-08  Martin Baulig  <martin@ximian.com>
26160
26161         * icall.c (ves_icall_Type_BindGenericParameters): Just call
26162         mono_type_get_object(), this is now creating a `MonoGenericInst'
26163         for MONO_TYPE_GENERICINST.
26164         (ves_icall_MonoGenericInst_GetParentType): Likewise.
26165         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
26166
26167         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
26168         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
26169         (inflated_method_get_object): Added `MonoClass *refclass' argument.
26170         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
26171         and reflected type.
26172
26173         * reflection.h (MonoReflectionInflatedMethod): Removed
26174         `declaring_type' and `reflected_type'.
26175
26176 2004-02-08  Martin Baulig  <martin@ximian.com>
26177
26178         * class.h (MonoGenericInst): Added `MonoType *parent' and
26179         `MonoType **ifaces'.
26180
26181         * reflection.h (MonoReflectionGenericInst): Removed `klass',
26182         `parent' and `interfaces'.
26183
26184         * reflection.c (mono_reflection_bind_generic_parameters): Take a
26185         `MonoType *' argument and return a `MonoType *'.
26186
26187         * icall.c
26188         (ves_icall_MonoGenericInst_GetParentType): New interncall.
26189         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
26190
26191 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26192
26193         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
26194         valuetype marshalling.
26195
26196 2004-02-06  Martin Baulig  <martin@ximian.com>
26197
26198         * class.c
26199         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
26200         (my_mono_class_from_generic_parameter): Likewise.
26201
26202 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
26203
26204         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
26205         contents of the symbol files lazily.
26206
26207         * object.h (MonoThread): Add 'name' and 'name_len' fields.
26208
26209         * threads.h threads.c icall.c: New icalls for getting and setting the
26210         threads name.
26211
26212 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
26213
26214         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
26215         Raise an exception when the domain is not found.
26216
26217 2004-02-03  Martin Baulig  <martin@ximian.com>
26218
26219         * reflection.c (mono_image_get_methodspec_token): Use the
26220         uninflated signature; fixes gen-33.
26221
26222 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
26223
26224         * gc.c threads.c: Make the finalizer thread a normal managed thread so
26225         the finalizer code can use thread functionality.
26226
26227         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
26228         the finalizer thread.
26229
26230         * threads.c: Make some functions more robust.
26231
26232         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
26233
26234         * metadata.h: Add new marshalling conventions.
26235
26236         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
26237         stringbuilder marshalling. Fixes #53700.
26238
26239         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
26240
26241         * reflection.c (mono_image_get_type_info): Save declarative security
26242         info.
26243
26244         * reflection.c (mono_image_get_field_info): Handle uninitialized 
26245         unmanaged fields as well.
26246
26247         * appdomain.c: Bump corlib version.
26248
26249 2004-02-01  Martin Baulig  <martin@ximian.com>
26250
26251         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
26252         method type arguments.  
26253
26254 2004-01-30  Duncan Mak  <duncan@ximian.com>
26255
26256         * marshal.h: Add prototype for
26257         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
26258         and
26259         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
26260         fix the build.
26261
26262 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
26263
26264         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
26265         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
26266
26267 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26268
26269         * marshal.c (mono_marshal_get_native_wrapper): Add support for
26270         custom marshalling of valuetypes.
26271
26272         * marshal.c: Fix some warnings.
26273
26274 2004-01-29  Martin Baulig  <martin@ximian.com>
26275
26276         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
26277         for generic method parameters.
26278
26279         * reflection.c (method_encode_methodspec): Write the uninflated
26280         signature into the methodspec table.
26281         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
26282         is always the uninflated method.
26283         (reflection_methodbuilder_to_mono_method): Copy the generic
26284         parameters from the MethodBuilder into `header->gen_params'.
26285
26286 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
26287
26288         * class.c (mono_class_from_generic_parameter): Fix warning.
26289
26290 2004-01-27  Martin Baulig  <martin@ximian.com>
26291
26292         * class.c (mono_class_from_generic_parameter): Don't create
26293         `klass->methods' here.  
26294
26295 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
26296
26297         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
26298         extension since it does not work with libraries named lib<FOO>.dll.so.
26299
26300 2004-01-25  Martin Baulig  <martin@ximian.com>
26301
26302         * class.c (mono_class_inflate_generic_type): Added support for
26303         MONO_TYPE_GENERICINST.
26304
26305         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
26306         inflate methods on open constructed types.      
26307
26308 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26309
26310         * object.c: fire ProcessExit event in the root AppDomain after running
26311         Main. Fixes bug #53299.
26312
26313 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
26314
26315         * socket-io.c: include the new socket-wrappers.h header.
26316         Use the wrappers instead of the unix socket functions to make the code
26317         more clear.
26318
26319 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
26320
26321         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
26322
26323         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26324         Fixes #22532.
26325
26326 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
26327
26328         * reflection.c (mono_image_create_pefile): Handle the case when the
26329         entry point is not a MethodBuilder.
26330
26331         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26332         field to ReflectionMethod since it is not allways a builder.
26333
26334         * reflection.c (type_get_fully_qualified_name): New helper function to
26335         return the fully qualified name of a type.
26336
26337         * reflection.c (encode_marshal_blob): Always emit the fully qualified
26338         type name for custom marshallers.
26339
26340         * reflection.c (mono_marshal_spec_from_builder): Ditto.
26341
26342         * class.c (mono_class_setup_vtable): If a parent class already 
26343         implements an interface, use the implementing methods from that class.
26344         Fixes #53148.
26345
26346 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26347
26348         * threadpool.c: just return instead of ExitThread to allow for thread
26349         clean up earlier.
26350
26351 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
26352
26353         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
26354         when closing resource modules.
26355
26356         * reflection.c (mono_image_create_pefile): Handle the case when the
26357         entry point is not a MethodBuilder.
26358
26359         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
26360         field to ReflectionMethod since it is not allways a builder.
26361
26362 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
26363
26364         * marshal.c (mono_marshal_get_managed_wrapper): 
26365         mono_marshal_alloc takes native int so CONV_I
26366         the arg for 64bits.
26367
26368 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
26369
26370         * reflection.c (fixup_cattrs): New function to fixup the methoddef
26371         tokens in the cattr table. Fixes #53108.
26372
26373 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26374
26375         * loader.c: don't trim ".dll" before looking up in the config file.
26376         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
26377
26378 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
26379
26380         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
26381         Return the module which contains the resource as well.
26382         (ves_icall_System_Reflection_Module_Close): New icall.
26383
26384         * appdomain.c: Bump corlib version number.
26385
26386         * image.c (mono_image_addref): New public function.
26387
26388         * assembly.c: Call mono_image_addref.
26389
26390         * reflection.c (mono_module_get_object): Increase reference count of 
26391         the image.
26392
26393         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
26394         Fixes #22532.
26395
26396         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
26397         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
26398         proper exceptions on DllImport problems.
26399
26400 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
26401
26402         * class.c, metadata.c: eliminate CSIZE macro.
26403
26404 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
26405
26406         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
26407         * object.h: Added async_callback field in MonoAsyncResult.
26408         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
26409         * verify.c: Added async_callback in MonoAsyncResult layout.
26410
26411 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
26412
26413         * reflection.c (mono_reflection_get_custom_attrs): Add support
26414         for Modules.
26415
26416 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
26417
26418         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
26419         marshalling.
26420         (mono_marshal_method_from_wrapper): Add null pointer check.
26421
26422 2004-01-16  Martin Baulig  <martin@ximian.com>
26423
26424         * debug-mono-symfile.h: Set version number to 36 and reflect
26425         latest symbol writer changes.
26426
26427 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
26428
26429         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
26430         multi-dimensional arrays.
26431         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
26432         (mono_class_from_mono_type): Use bounded_array_class_get.
26433         
26434         * class.c (mono_bounded_array_class_get): New function which takes
26435         a 'bounded' bool argument to distinguish vectors from one dimensional
26436         arrays.
26437
26438         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
26439         bounded_array_class_get if the array has bounds.
26440
26441         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
26442         Search modules loaded using AssemblyBuilder:AddModule as well.
26443
26444 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26445
26446         * appdomain.c: increased corlib version.
26447         * filewatcher.c: removed g_print.
26448         * icall.c:
26449         (get_property_info): only allocate what is actually requested.
26450         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
26451
26452 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26453
26454         * Makefile.am: added filewatcher.[ch]
26455         * filewatcher.[ch]: FileSystemWatcher runtime support.
26456         * icall.c: added new FSW icalls.
26457
26458 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
26459
26460         * string-icalls.c: fix stringbuilder regression as suggested by
26461         Iain McCoy <iain@mccoy.id.au>.
26462
26463 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
26464
26465         * process.c (process_read_stringtable_block): Recognize '007f' as
26466         a language neutral stringtable block.
26467
26468 2004-01-12  Patrik Torstensson
26469
26470         * object.h (MonoStringBuilder) : Changed layout to support our
26471         new stringbuilder class.
26472         * marshal.c: Change marshalling to support the new layout of 
26473         string builder.
26474         * appdomain.c: increased version number because new layout of
26475         string builder.
26476
26477 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
26478
26479         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
26480         assembly name as an string instead of an AssemblyName, since it is
26481         easier to extract info from it.
26482
26483         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
26484         the culture subdirectories too. Fixes #52231.
26485
26486 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26487
26488         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
26489         It takes 2 new parameters with an optional name for the method to look
26490         for and case ignoring info.
26491
26492         * threadpool.c: removed unused variable.
26493
26494 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26495
26496         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
26497         It takes 2 new parameters with an optional name for the property to look
26498         for and case ignoring info.
26499         Fixes bug #52753.
26500
26501 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
26502
26503         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
26504         Fix #52451.
26505
26506 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26507
26508         * appdomain.c:
26509         * assembly.c: escape the uri before passing it to g_filename_from_uri.
26510         Fixes bug #52630.
26511
26512 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
26513
26514         * reflection.c: Add support for more than one unmanaged resource.
26515
26516         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
26517         in field->def_value, as done in all other cases.
26518
26519         * reflection.c (mono_reflection_get_custom_attrs): Add support for
26520         TypeBuilders.
26521
26522         * reflection.c (mono_reflection_create_runtime_class): Remove 
26523         errorneous assignment to klass->element_class, since it is already
26524         done in mono_reflection_setup_internal_class.
26525
26526 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26527
26528         * gc.c: added missing LeaveCriticalSection.
26529         * icall.c: indented a couple of lines.
26530         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
26531         if we call EndInvoke inside a callback. Fixes bug #52601.
26532
26533 2004-01-07  Martin Baulig  <martin@ximian.com>
26534
26535         * mono-debug-debugger.h
26536         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
26537
26538 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
26539
26540         * appdomain.c: Use messages in NotImplementedException.
26541
26542         * exception.c (mono_get_exception_not_implemented): Now this takes
26543         a message argument.
26544
26545         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
26546         exception instead of g_asserting an aborting when something is not
26547         implemented.
26548
26549         Add some inline docs.
26550
26551 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
26552
26553         * reflection.h: Update after changes to object layout.
26554
26555         * reflection.c: Implement saving of unmanaged aka win32 resources.
26556
26557         * appdomain.c: Bump version number.
26558
26559         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
26560         Handle missing domains gracefully.
26561
26562 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
26563
26564         * file-io.c : On Windows, there are much more invalid_path_chars.
26565
26566 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
26567
26568         * class.h, object.c: prepare for GetType () speedup.
26569
26570 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
26571
26572         * profiler.c: workaround for --profile null reference exception on
26573           cygwin. Patch by Patrik Torstensson.
26574
26575 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
26576
26577         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
26578         make work for unaligned access.
26579
26580 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
26581
26582         * class.c: small cleanup (class->fields [i] -> field).
26583         * image.c: check address of metadata is valid.
26584
26585 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
26586
26587         * assembly.h assembly.c (mono_assembly_loaded): New public function to
26588         search the list of loaded assemblies.
26589
26590         * reflection.c (mono_reflection_type_from_name): Use 
26591         mono_assembly_loaded instead of mono_image_loaded.
26592
26593         * reflection.c: Fix warnings.
26594
26595 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
26596
26597         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
26598         is dynamic. This is needed since an assembly can contain both dynamic and
26599         non-dynamic images.
26600
26601         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
26602         assembly->dynamic.
26603
26604         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
26605
26606         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
26607         to store modules loaded using AddModule.
26608
26609         * reflection.c (mono_image_fill_file_table): Generalize this so it works
26610         on Modules.
26611
26612         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
26613
26614         * reflection.c (mono_image_fill_export_table_from_module): New function to
26615         fill out the EXPORTEDTYPES table from a module.
26616
26617         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
26618         into a separate function. Also handle loaded non-dynamic modules.
26619
26620         * reflection.c (mono_image_basic_init): Fix memory allocation.
26621
26622         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
26623
26624         * assembly.c (mono_assembly_load_references): Make this public.
26625
26626 2003-12-19  Martin Baulig  <martin@ximian.com>
26627
26628         * class.c (mono_class_initialize_generic): Made this static, take
26629         a `MonoGenericInst *' instead of a `MonoClass *'.
26630         (mono_class_from_generic): Call mono_class_initialize_generic()
26631         unless we're already initialized or being called from
26632         do_mono_metadata_parse_generic_inst().
26633
26634         * class.h (MonoGenericInst): Added `initialized' and
26635         `init_pending' flags.
26636
26637         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
26638         `mono_class_init (gklass)' or mono_class_initialize_generic()
26639         here; set `generic_inst->init_pending' while parsing the
26640         `type_argv'.
26641
26642 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
26643
26644         * locales.c: include string.h for memxxx prototypes
26645
26646 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
26647
26648         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
26649         constructor when accessing literal fields.
26650
26651 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
26652
26653         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
26654
26655         * reflection.c (assembly_add_resource_manifest): New function to fill
26656         the MANIFESTRESOURCE table.
26657
26658         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
26659
26660         * reflection.h: Update to changes in class layout.
26661
26662         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
26663         Reenable call to mono_runtime_is_shutting_down ().
26664
26665         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
26666         determine if the runtime is shutting down.
26667
26668 2003-12-16  Jackson Harper <jackson@ximian.com>
26669
26670         * icall.c: comment out call to mono_runtime_is_shutting_down to
26671         fix build.
26672         
26673 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
26674
26675         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
26676         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
26677
26678 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
26679
26680         * reflection.c: move definition of swap_with_size
26681         to before its first call
26682
26683 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
26684
26685         * appdomain.c (mono_runtime_is_shutting_down): New public function.
26686
26687         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
26688         icall.
26689
26690         * object.c: Fix warnings.
26691
26692         * icall.c (ves_icall_Type_Get...): Only consider inherited static
26693         members if FlattenHierarchy is set.
26694
26695         * reflection.c (mono_image_add_decl_security): New function to emit
26696         declarative security.
26697
26698         * reflection.h reflection.c: Add support for declarative security.
26699
26700         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
26701         
26702 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
26703
26704         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
26705         
26706         * appdomain.c verify.c: Moved corlib version checking into its own
26707         function in appdomain.c since it needs to create vtables etc.
26708
26709 2003-12-13  Patrik Torstensson <p@rxc.se>
26710
26711         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
26712         instead of unwrapped server.
26713
26714 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
26715
26716         * verify.c (check_corlib): Fix field index.
26717
26718 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
26719
26720         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
26721         GetGacPath icall.
26722
26723 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
26724
26725         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
26726         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
26727         cope with sizeof(size_t) != sizeof(guint32).
26728
26729 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26730
26731         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
26732         in case of failure.
26733
26734 2003-12-10  Mark Crichton <crichton@gimp.org>
26735
26736         * icall.c: removed the GetNonZeroBytes.  We now handle this case
26737         in managed code.
26738
26739         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
26740
26741 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
26742
26743         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
26744         marked as deleted.
26745
26746 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
26747
26748         * verify.c (check_corlib): Handle the case when the version field is 
26749         initialized by a static constructor.
26750
26751 2003-12-08  Patrik Torstensson  <p@rxc.se>
26752
26753     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
26754
26755 2003-12-08  Martin Baulig  <martin@ximian.com>
26756
26757         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
26758         a MonoReflectionGenericParameter, also take the parameter index
26759         and name as arguments.
26760         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
26761         (ves_icall_MonoGenericParam_initialize): New interncall.
26762         (ves_icall_Type_make_byref_type): New interncall.
26763
26764         * reflection.h (MonoReflectionGenericParam): Derive from
26765         MonoReflectionType, not just from MonoObject.  Added `refobj' and
26766         `index' fields.
26767
26768         * reflection.c (mono_reflection_define_generic_parameter): Create
26769         and return a new MonoReflectionGenericParam; don't initialize the
26770         constraints here.
26771         (mono_reflection_initialize_generic_parameter): New public method;
26772         initializes the constraints and creates the `param->pklass'.
26773
26774 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
26775
26776         * reflection.h reflection.c: Use the new fields 'num_types', 
26777         'num_fields' and 'num_methods' to track the number of types etc.
26778
26779         * verify.c (check_corlib): Check corlib version number.
26780
26781 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
26782
26783         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
26784         function works on all methods.
26785
26786 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
26787
26788         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
26789         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
26790         the custom_type_info flag of the transparent proxy.
26791         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
26792         objects that supports IRemotingTypeInfo.
26793         * object.h: Added custom_type_info field in transparent proxy.
26794
26795 2003-12-06  Martin Baulig  <martin@ximian.com>
26796
26797         * class.c (mono_class_create_from_generic): Removed.
26798         (mono_class_from_generic): Check `ginst->klass' before doing
26799         anything else.  This is important to fully support "recursive"
26800         generic types.
26801
26802         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
26803         empty `generic_inst->klass' before doing anything else.
26804
26805 2003-12-06  Dick Porter  <dick@ximian.com>
26806
26807         * verify.c: 
26808         * object.h:
26809         * icall.c:
26810         * locales.c: Use C structs to access class fields.  Don't do a
26811         conversion between MonoString and UChar because both are
26812         platform-endian UTF-16.  Compare now takes startindex and count
26813         parameters.  Add a char overload for IndexOf.  Speed up the
26814         invariant string IndexOf.
26815
26816 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
26817
26818         * Makefile.am (monosn_LDADD): Fix parallel build.
26819
26820 2003-12-04  Martin Baulig  <martin@ximian.com>
26821
26822         * icall.c
26823         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
26824         (ves_icall_Type_make_array_type): New interncall.       
26825
26826 2003-12-04  Martin Baulig  <martin@ximian.com>
26827
26828         * locales.c: also change it in the !HAVE_ICU case.
26829
26830 2003-12-04  Dick Porter  <dick@ximian.com>
26831
26832         * icall.c:
26833         * locales.c: construct_compareinfo is now in CompareInfo, not
26834         CultureInfo.
26835
26836 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
26837
26838         * image.c (mono_image_load_file_for_image): Cache loaded images in the
26839         image->files array.
26840
26841         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
26842         table as well.
26843
26844         * assembly.c (mono_assembly_load_references): Only load references
26845         once.
26846
26847         * class.c (mono_class_from_name): Avoid linear search of the 
26848         EXPORTEDTYPE table.
26849
26850         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
26851
26852 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
26853
26854         * image.h (MonoImage): Add 'field_cache' field.
26855
26856         * loader.c (mono_field_from_token): Cache field lookups.
26857         
26858         * reflection.c (mono_module_get_object): Fix name property.
26859
26860         * icall.c (ves_icall_get_enum_info): Update after changes to 
26861         mono_metadata_get_constant_index ().
26862
26863         * icall.c: Get rid of get_type_info icall, use a separate icall for
26864         each type property to avoid needless memory allocations. Fixes #51514.
26865
26866         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
26867         to avoid needless binary searches.
26868
26869         * class.c (class_compute_field_layout): Move the initialization of
26870         field->def_value to mono_class_vtable ().
26871
26872         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
26873         non-corlib types.
26874
26875         * object.c (mono_object_allocate): Make it inline.
26876
26877         * object.c (mono_object_allocate_spec): Make it inline.
26878         
26879 2003-12-02  Dick Porter  <dick@ximian.com>
26880
26881         * locales.c (create_NumberFormat): NumberFormatInfo construction.
26882         Patch by Mohammad DAMT (mdamt@cdl2000.com).
26883
26884 2003-12-01  Dick Porter  <dick@ximian.com>
26885
26886         * threads.c: Fix signature and call in CreateMutex and
26887         CreateEvent.
26888
26889 2003-12-01  Dick Porter  <dick@ximian.com>
26890
26891         * icall.c: 
26892         * locales.c: Implement string compares and searching
26893
26894         * object.h: Add extra Thread field
26895
26896 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
26897
26898         * reflection.c (fixup_method): Add support for MonoCMethod.
26899
26900 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
26901
26902         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
26903
26904         * reflection.c (assembly_name_to_aname): Allow extra characters in
26905         assembly names. Fixes #51468.
26906
26907 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
26908
26909         * exception.c (mono_exception_from_name_domain): New helper function.
26910
26911         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
26912         exception object in the correct domain.
26913
26914         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
26915         formatting + make a copy a the input data.
26916
26917         * loader.c (mono_get_method_from_token): Methods which contain
26918         native code do not have entries in the ImplMap.
26919
26920         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
26921         Thanks to Gonzalo for spotting this.
26922         
26923         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
26924         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
26925
26926         * assembly.h (mono_assembly_load_from): Split the second part of 
26927         assembly loading into a new public function.
26928
26929         * exception.h (mono_get_exception_bad_image_format): New function.
26930
26931 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
26932
26933         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
26934         Enumerate all modules inside a dynamic assembly. Fixes #51293.
26935         
26936         * icall.c: Add new icall for creating dynamic methods.
26937
26938         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
26939
26940         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
26941
26942         * reflection.c (mono_reflection_create_dynamic_method): New icall to
26943         create a dynamic method.
26944
26945         * reflection.c (resolve_object): New helper function.
26946
26947         * reflection.c: Generalize ReflectionMethodBuilder and the functions
26948         which manipulate it so they can also work on dynamic methods.
26949
26950         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
26951         creating the MonoReflectionMethodAux structure if it is not needed.
26952         
26953         * reflection.h verify.c: Update after changes to object layout.
26954
26955         * reflection.c (method_builder_encode_signature): Fix compilation on
26956         gcc 2.95.x.
26957
26958 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
26959
26960         * appdomain.h: Added support for context static fields. Added static_data
26961           field to MonoAppContext and renamed thread_static_fields to a more
26962           generic special_static_fields in MonoAppDomain, since it can now contain
26963           context static fields.
26964         * domain.c: Updated hashtable name.
26965         * object.c: Replaced field_is_thread_static() for a more generic
26966           field_is_special_static() which also checks for context static attribute.
26967           In mono_class_vtable(), added support for static context fields.
26968         * threads.c: Changed methods that manage thread static fields to more
26969           generic methods so they can be reused both for thread and context static
26970           data.
26971         * threads.h: Declared some new methods.
26972
26973 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
26974
26975         * reflection.h: Update after changes to the managed types.
26976
26977         * reflection.c (encode_custom_modifiers): New helper function.
26978
26979         * reflection.c (method_encode_signature): Emit custom modifiers.
26980
26981         * reflection.c (field_encode_signature): Emit custom modifiers.
26982
26983 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
26984
26985         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
26986
26987         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
26988         implementation.
26989
26990         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
26991         icall.
26992
26993         * object.c (mono_field_get_value_object): New function.
26994
26995         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
26996         specific.
26997
26998 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
26999
27000         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
27001         return a preallocated out-of-memory exception instance.
27002
27003         * object.c (out_of_memory): Use the new function.
27004
27005         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
27006         flag is before the custom modifiers. Fixes #49802.
27007
27008 2003-11-16  Martin Baulig  <martin@ximian.com>
27009
27010         * class.c (mono_class_is_open_constructed_type): Implemented the
27011         MONO_TYPE_GENERICINST case.
27012
27013 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
27014
27015         * assembly.c (mono_assembly_fill_assembly_name): New function to
27016         fill out the MonoAssemblyName structure.
27017         (mono_assembly_open): Use the new function.
27018
27019         * icall.c (fill_reflection_assembly_name): New helper function.
27020
27021         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
27022         new function.
27023
27024         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
27025
27026 2003-11-15  Martin Baulig  <martin@ximian.com>
27027
27028         * class.c (mono_class_is_open_constructed_type): New public
27029         function; checks whether a type is an open constructed type,
27030         ie. whether it still contains type parameters.
27031         (mono_class_inflate_generic_type): If we're a type parameter and
27032         the inflated type is also a MONO_TYPE_(M)VAR, return the original
27033         type.
27034
27035         * class.h (MonoGenericInst): Added `guint32 is_open'.
27036
27037         * loader.c (method_from_methodspec): Check whether we're an open
27038         or closed constructed type and set `ginst->is_open'.
27039
27040         * reflection.c (mono_reflection_bind_generic_parameters): Check
27041         whether we're an open or closed constructed type and set
27042         `ginst->is_open'.
27043         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
27044         from open constructed types.
27045
27046 2003-11-15  Martin Baulig  <martin@ximian.com>
27047
27048         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27049         a generic instance (instead of a generic type declaration) with
27050         unbound generic parameters, bind them to our actual types.
27051
27052 2003-11-14  Martin Baulig  <martin@ximian.com>
27053
27054         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
27055
27056         * reflection.c (mono_reflection_bind_generic_parameters): If we're
27057         an interface type, populate `res->interfaces' with instantiated
27058         versions of all the interfaces we inherit.
27059
27060 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
27061
27062         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
27063         when MONO_PATH is set but doesn't contain the install dir.
27064
27065 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27066
27067         * icall.c:
27068         (ves_icall_Type_GetInterfaces): don't return an interface twice when
27069         it's also implemented in base classes. Fixes bug #50927.
27070
27071 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
27072
27073         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
27074         if this method is called from a finalizer. Fixes #50913.
27075
27076 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
27077
27078         * threads.c: Implement VolatileRead/VolatileWrite
27079
27080         * icall.c: Add new icalls for VolatileRead/VolatileWrite
27081
27082 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27083
27084         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
27085         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
27086         2.95.3.
27087
27088         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
27089         from Peter Ross (pro@missioncriticalit.com).
27090         
27091 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
27092
27093         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
27094
27095 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27096
27097         * assembly.c (mono_assembly_load_references): Disable check because it
27098         triggers on older corlibs which lots of people have.
27099
27100 2003-11-12  Jackson Harper  <jackson@ximian.com>
27101
27102         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
27103         load corlib.dll if mscorlib.dll is not found.
27104         * assembly.h: Remove corlib name define.
27105         * class.c:
27106         * domain.c:
27107         * image.c: Change corlib name to mscorlib.
27108         
27109 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
27110
27111         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
27112
27113 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
27114
27115         * appdomain.h: Added loader_optimization here to sync with the C#
27116         code, and add disallow_binding_redirects field.
27117
27118 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27119
27120         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
27121
27122         * reflection.c (mono_image_build_metadata): Fix crash on modules
27123         with no types.
27124
27125         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
27126
27127         * icall.c (ves_icall_get_method_info): Return callingConvention as
27128         well.
27129
27130         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
27131         namespaces from the EXPORTEDTYPE table as well.
27132
27133         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
27134         from all modules inside the assembly.
27135         
27136 2003-11-11  Martin Baulig  <martin@ximian.com>
27137
27138         * reflection.c (mono_reflection_bind_generic_parameters): Make
27139         this work for interfaces.
27140
27141 2003-11-11  Martin Baulig  <martin@ximian.com>
27142
27143         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
27144
27145 2003-11-11  Martin Baulig  <martin@ximian.com>
27146
27147         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
27148         "MonoInflatedMethod" and "MonoInflatedCtor".
27149
27150 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
27151
27152         * reflection.c (resolution_scope_from_image): Use the assembly table
27153         from the manifest module, since other modules don't have it.
27154
27155         * debug-helpers.c (mono_type_full_name): New helper function.
27156
27157         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
27158
27159         * image.c (mono_image_load_file_for_image): New public function which
27160         is a replacement for the load_file_for_image in class.c.
27161
27162         * assembly.c (mono_assembly_load_module): A wrapper for the function
27163         above which does assembly association and reference loading too.
27164
27165         * class.c (mono_class_from_name): Call mono_assembly_load_module.
27166
27167 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27168
27169         * appdomain.c: not all of the attributes for the full assembly name
27170         are required and the order doesn't matter. Fixes bug #50787.
27171
27172 2003-11-10  Dick Porter  <dick@ximian.com>
27173
27174         * locales.c: Use platform-endian UTF16
27175
27176 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27177
27178         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27179         
27180 2003-11-10  Martin Baulig  <martin@ximian.com>
27181
27182         * metadata.c
27183         (mono_metadata_load_generic_params): Make this actually work.
27184
27185         * reflection.c (mono_reflection_bind_generic_parameters): If our
27186         parent is a generic instance, pass all the `types' to it, no
27187         matter whether it has the same number of type parameters or not.
27188
27189 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
27190
27191         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
27192
27193         * assembly.c (mono_assembly_load_references): Move the image<->assembly
27194         assignment code to this function so it gets called recursively for all
27195         modules.
27196
27197         * image.c (load_modules): Remove the assembly assignment since it is
27198         now done by mono_assembly_load_references.
27199         
27200         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
27201         Add 'module' argument.
27202         (mono_module_get_types): New helper function.
27203         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
27204
27205 2003-11-08  Martin Baulig  <martin@ximian.com>
27206
27207         * class.c (mono_class_inflate_generic_method): Interface method
27208         don't have a header.
27209
27210         * reflection.c (mono_image_get_methodspec_token): Take an
27211         additional `MonoGenericInst *' argument instead of reading it from
27212         the header; this is necessary to support interfaces.
27213         (mono_image_create_token): Pass the `MonoGenericInst *' from the
27214         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
27215         (inflated_method_get_object): Take an additional `MonoGenericInst *'
27216         argument.
27217
27218         * reflection.h (MonoReflectionInflatedMethod): Added
27219         `MonoGenericInst *ginst'.
27220
27221 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
27222
27223         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
27224
27225 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
27226
27227         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
27228
27229 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
27230
27231         * reflection.c 
27232         (reflection_methodbuilder_from_method_builder):
27233         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
27234         initialize a ReflectionMethodBuilder structure.
27235         (mono_image_get_methodbuilder_token):
27236         (mono_image_get_ctorbuilder_token): New functions to emit memberref
27237         tokens which point to types in another module inside the same assembly.
27238
27239         * reflection.c: Use the new helper functions.
27240         
27241         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
27242
27243         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
27244         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
27245
27246         * reflection.c (resolution_scope_from_image): Emit a moduleref if
27247         neccesary.
27248
27249         * reflection.c (mono_image_build_metadata): Emit metadata only for the
27250         current module. Emit the manifest only for the main module.
27251
27252         * reflection.c (mono_image_create_token): Add assertion when a 
27253         memberref needs to be created.
27254
27255         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
27256
27257         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
27258         larger buffer for the custom attribute blob. Fixes #50637.
27259         
27260 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27261
27262         * threadpool.c: notify listener on async processing handles after
27263         invoking the async callback. Thanks to Zoltan.
27264
27265 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27266
27267         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
27268         avoid code duplication.
27269
27270         * reflection.h (MonoDynamicImage): New type which is currently unused,
27271         but will be used through the ref.emit code in place of 
27272         MonoDynamicAssembly.
27273
27274         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27275         object layout.
27276
27277         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
27278         a MonoDynamicImage instead of just a MonoImage.
27279         
27280         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
27281         icalls to ModuleBuilder but keep their semantics, so they will work
27282         with moduleb->assemblyb. This will change later.
27283         
27284 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27285
27286         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
27287         object layout.
27288
27289         * reflection.c (mono_image_build_metadata): Avoid creation of a default
27290         main module, since it is now done by the managed code.
27291
27292 2003-11-03  Martin Baulig  <martin@ximian.com>
27293
27294         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
27295         `ginst->klass' here.
27296         (method_encode_methodspec): Don't use the `ginst->generic_method's
27297         klass if it's a generic instance, use `ginst->klass' in this case.
27298
27299 2003-11-03  Martin Baulig  <martin@ximian.com>
27300
27301         * reflection.c (mono_image_get_generic_method_param_info):
27302         Removed, use mono_image_get_generic_param_info() instead.
27303         (mono_image_get_type_info): Write the GenericParam table before
27304         the Method table.  This is neccessary because in the GenericParam
27305         table, type parameters of the class (ie. '!0' etc.) must come
27306         before the ones from its generic methods (ie. '!!0' etc).
27307
27308 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
27309
27310         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
27311
27312 2003-11-02  Martin Baulig  <martin@ximian.com>
27313
27314         * reflection.c (create_generic_typespec): Take a
27315         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
27316         the generic parameters from it.
27317
27318 2003-11-02  Martin Baulig  <martin@ximian.com>
27319
27320         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
27321         instead of a `MonoClassField *' since we just need the type.
27322         (create_generic_typespec): New static function.  Creates a
27323         TypeSpec token for a generic type declaration.
27324         (mono_image_get_generic_field_token): New static function.
27325         (mono_image_create_token): If we're a FieldBuilder in a generic
27326         type declaration, call mono_image_get_generic_field_token() to get
27327         the token.
27328
27329 2003-11-02  Martin Baulig  <martin@ximian.com>
27330
27331         * reflection.h
27332         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
27333         `MonoReflectionGenericInst *declaring_type' and
27334         `MonoReflectionGenericInst *reflected_type' fields.
27335
27336         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
27337         `MonoReflectionGenericInst *declaring_type' and a
27338         `MonoReflectionGenericInst *reflected_type' argument instead of a
27339         single `MonoReflectionGenericInst *type' one.  Set
27340         `res->declaring_type' and `res->reflected_type' from them.
27341         (mono_reflection_inflate_field): Likewise.      
27342
27343 2003-11-02  Martin Baulig  <martin@ximian.com>
27344
27345         * class.c (mono_class_setup_vtable): Don't store generic methods
27346         in the vtable.  
27347
27348 2003-11-02  Martin Baulig  <martin@ximian.com>
27349
27350         * reflection.h (MonoReflectionGenericInst): Added
27351         `MonoReflectionType *declaring_type'.
27352
27353         * reflection.c (mono_reflection_bind_generic_parameters): Use
27354         `if (tb->parent)' instead of `klass->parent'.
27355
27356 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
27357
27358         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
27359         with an empty ASSEMBLY table.
27360
27361         * reflection.c (mono_image_build_metadata): Avoid using the same loop
27362         variable in the inner and outer loops.
27363
27364 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
27365
27366         * metadata.h (mono_metadata_make_token): Put parentheses around macro
27367         argument.
27368
27369         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
27370         
27371         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
27372         icalls. Instead, do everything in managed code. This is needed since
27373         it is hard to restore the original domain etc. in unmanaged code in the
27374         presence of undeniable exceptions.
27375
27376         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
27377         New icalls to push and pop appdomain refs.
27378
27379 2003-10-31  Martin Baulig  <martin@ximian.com>
27380
27381         * class.c (inflate_generic_type): Renamed to
27382         mono_class_inflate_generic_type() and made it public.
27383
27384         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
27385         New interncall.
27386
27387         * loader.c (mono_field_from_memberref): Also set the retklass for
27388         typespecs.
27389
27390         * fielder.c (mono_image_get_inflated_field_token): New static
27391         method; creates a metadata token for an inflated field.
27392         (mono_image_create_token, fixup_method): Added support for
27393         "MonoInflatedField".
27394         (fieldbuilder_to_mono_class_field): New static function.
27395         (mono_reflection_inflate_field): New public function.
27396
27397         * reflection.h
27398         (MonoReflectionGenericInst): Added `MonoArray *fields'.
27399         (MonoReflectionInflatedField): New typedef.     
27400
27401 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
27402
27403         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
27404         for Solaris and other platforms without s6_addr16
27405
27406 2003-10-30  Martin Baulig  <martin@ximian.com>
27407
27408         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
27409         argument instead of two.
27410         (mono_class_inflate_generic_signature): Likewise.
27411         (inflate_generic_header): Likewise.
27412         (mono_class_inflate_generic_method): Likewise.  In addition, if
27413         `ginst->klass' is set, it becomes the new `method->klass'.
27414
27415         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
27416         field.
27417
27418         * reflection.c (encode_generic_method_sig): Write a 0xa as the
27419         first byte. [FIXME]
27420         (method_encode_methodspec): If we have generic parameters, create
27421         a MethodSpec instead of a MethodRef.
27422         (fixup_method): Added support for "MonoInflatedMethod" and
27423         "MonoInflatedCtor".
27424         (mono_image_create_token): Added support for "MonoInflatedMethod"
27425         and "MonoInflatedCtor".
27426         (inflated_method_get_object): New static function; returns a
27427         managed "System.Reflection.MonoInflatedMethod" object.
27428         (mono_reflection_bind_generic_method_parameters): Return a
27429         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
27430         (mono_reflection_inflate_method_or_ctor): Likewise.
27431         (mono_image_get_generic_method_param_info): Initialize unused
27432         fields to zero.
27433         (mono_image_get_generic_param_info): Likewise.
27434
27435         * reflection.h (MonoReflectionInflatedMethod): New public
27436         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
27437         "S.R.MonoInflatedCtor" classes.
27438
27439         * loader.c (method_from_memberref): If we're a TypeSpec and it
27440         resolves to a generic instance, inflate the method.
27441
27442 2003-10-28  Dick Porter  <dick@ximian.com>
27443
27444         * object.c (mono_runtime_run_main): Convert command-line arguments
27445         into utf8, falling back to the user's locale encoding to do so.
27446
27447 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
27448
27449         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
27450         at this time.
27451
27452         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
27453
27454         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
27455         up icalls at method definition time. Partially fixes #33569.
27456
27457 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
27458
27459         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
27460         marshalling of arrays. Fixes #50116.
27461
27462         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
27463
27464         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
27465         points to a vtable in the dying appdomain.
27466
27467         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
27468         listeners into unmanaged code inside the lock.
27469
27470         * object.c (mono_class_vtable): Turn off typed allocation in non-root
27471         domains and add some comments.
27472
27473 2003-10-25  Martin Baulig  <martin@ximian.com>
27474
27475         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
27476
27477         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
27478
27479         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
27480         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
27481         currently parsing.  Create the generic class and store it in
27482         `generic_inst->klass' before parsing the type arguments.  This is
27483         required to support "recursive" definitions; see mcs/tests/gen-23.cs
27484         for an example.
27485         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
27486         to support recursive typespec entries.
27487
27488         * class.c (mono_class_setup_parent): If our parent is a generic
27489         instance, we may get called before it has its name set.
27490         (mono_class_from_generic): Splitted into
27491         mono_class_create_from_generic() and mono_class_initialize_generic().
27492
27493 2003-10-25  Martin Baulig  <martin@ximian.com>
27494
27495         * icall.c (ves_icall_Type_BindGenericParameters): Return a
27496         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
27497         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
27498         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
27499
27500         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
27501         (create_typespec): Likewise.
27502         (mono_reflection_bind_generic_parameters): Return a
27503         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
27504         (mono_reflection_inflate_method_or_ctor): New public function.
27505
27506         * reflection.h (MonoReflectionGenericInst): New typedef.        
27507
27508 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
27509
27510         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
27511         inside the domain lock. Fixes #49993.
27512         
27513         * object.c (mono_class_vtable): When typed allocation is used, 
27514         allocate vtables in the GC heap instead of in the mempool, since the
27515         vtables contain GC descriptors which are used by the collector even
27516         after the domain owning the mempool is unloaded.
27517
27518         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
27519
27520         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
27521         reflect what it does. Also invalidate mempools instead of freeing
27522         them if a define is set.
27523
27524         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
27525         of the appdomain.
27526         
27527         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
27528         hold the finalizable objects in this domain.
27529
27530         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
27531         appdomain.
27532
27533         * appdomain.c (mono_domain_set): New function to set the current
27534         appdomain, but only if it is not being unloaded.
27535
27536         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
27537         appdomain which is being unloaded.
27538         
27539         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
27540         unloading of the root appdomain.
27541
27542         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
27543         icall to execute a method in another appdomain. Intended as a 
27544         replacement for InternalSetDomain, which can confuse the code 
27545         generation in the JIT.
27546
27547         * appdomain.c (mono_domain_is_unloading): New function to determine
27548         whenever an appdomain is unloading.
27549
27550         * appdomain.c (mono_domain_unload): New function to correctly unload
27551         an appdomain.
27552
27553         * assembly.c (mono_assembly_load_references): Check that an assembly
27554         does not references itself.
27555
27556         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
27557         domain manually, it asks the finalizer thread to do it, then waits for
27558         the result. Also added a timeout.
27559
27560         * icall.c: Register the new icalls.
27561
27562         * threads.h threads.c: Export the mono_gc_stop_world and 
27563         mono_gc_start_world functions.
27564         
27565         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
27566         function to fill out the mempool with 0x2a.
27567
27568 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
27569
27570         * reflection.h (MonoReflectionMethodAux): New structure to store
27571         information which is rarely used, thus is not in the MonoMethod
27572         structure.
27573
27574         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
27575         store the aux info.
27576
27577         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
27578         and marshalling info into the aux structure.
27579
27580         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
27581         from the aux structure.
27582
27583         * loader.c (mono_method_get_param_names): Retrieve the param names from
27584         the aux structure.
27585         
27586 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
27587
27588         * exception.h exception.c: Add AppDomainUnloadedException && fix 
27589         warning.
27590
27591 2003-10-21  Dick Porter  <dick@ximian.com>
27592
27593         * socket-io.c
27594         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
27595         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
27596
27597 2003-10-21  Martin Baulig  <martin@ximian.com>
27598
27599         * reflection.c (mono_reflection_bind_generic_parameters):
27600         `klass->parent' is NULL for interfaces.
27601
27602 2003-10-21  Martin Baulig  <martin@ximian.com>
27603
27604         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
27605
27606 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
27607
27608         * exception.c (mono_exception_from_name_msg): New helper function for
27609         creating exceptions and initializing their message field.
27610
27611         * exception.c: Simplify functions using the new helper.
27612
27613         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
27614         New function.
27615
27616         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
27617         mono_raise_exception, since otherwise gcc doesn't generate the function
27618         epilog for raise_exception, confusing the stack unwinding in the JIT.
27619         Fixes #45043.
27620
27621         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
27622         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
27623         Fixes #49499.
27624
27625 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27626
27627         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
27628         utf8.
27629
27630 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
27631
27632         * icall.c: Removed GetUninitializedObject method because
27633           AllocateUninitializedClassInstance does the same.
27634
27635 2003-10-18  Martin Baulig  <martin@ximian.com>
27636
27637         * class.c (inflate_generic_signature): Renamed to
27638         mono_class_inflate_generic_signature() and made it public.
27639         (my_mono_class_from_generic_parameter): New static function; if we
27640         don't already have the generic parameter's MonoClass, create a
27641         very simple one which is just used internally in the runtime and
27642         not passed back to managed code.
27643
27644         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
27645
27646         * metadata.h (MonoMethodSignature): Moved the
27647         `MonoGenericParam *gen_params' to the MonoMethodHeader.
27648         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
27649
27650         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
27651         ves_icall_MonoMethod_GetGenericArguments(); this is now an
27652         interncall on the MonoMethod class, not on MethodInfo.
27653         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
27654         calling mono_reflection_bind_generic_method_parameters() directly.
27655
27656         * loader.c (mono_method_get_signature): If this is a MethodSpec;
27657         return the already computed `method->signature'.
27658         (method_from_methodspec): New static function to load a method
27659         from a MethodSpec entry.
27660         (mono_get_method_from_token): Call the new method_from_methodspec()
27661         for MethodSpec tokens.  
27662         (mono_get_method_from_token): If we're a generic method, load the
27663         type parameters.
27664
27665         * reflection.c (mono_image_get_memberref_token): Allow
27666         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
27667         table.
27668         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
27669         (mono_image_create_token): First check whether it's a generic
27670         method (so we'd need to create a MethodSpec), then do the other
27671         two alternatives.
27672         (mono_reflection_bind_generic_method_parameters): Return a
27673         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
27674         called directly from the interncall.
27675
27676 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
27677
27678         * reflection.c (load_public_key): Move loading of the public key
27679         into managed code.
27680
27681         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
27682
27683         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
27684         fields.
27685
27686         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
27687         culture, hash_alg and public_key. Fixes #49555.
27688
27689 2003-10-17  Martin Baulig  <martin@ximian.com>
27690
27691         * class.h (MonoGenericInst): Moved this declaration here and added
27692         `MonoMethod *generic_method'.
27693
27694         * icall.c
27695         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
27696         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
27697
27698         * metadata.c (mono_metadata_type_equal): Two types of
27699         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
27700         index; ie. don't compare the address of the `MonoGenericParam'
27701         structure.
27702         (mono_metadata_load_generic_params): Removed the `MonoMethod
27703         *method' argument.
27704
27705         * metadata.h (MonoGenericInst): Moved declaration to class.h.
27706         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
27707
27708         * reflection.c (method_encode_signature): Encode the number of
27709         generic parameters.
27710         (encode_generic_method_sig): New static function.
27711         (method_encode_methodspec): New static function; creates an entry
27712         in the MethodSpec table for a generic method.
27713         (mono_image_get_methodspec_token): New static function.
27714         (mono_image_create_token): Call mono_image_get_methodspec_token()
27715         for generic methods.
27716         (mono_reflection_bind_generic_method_parameters): New public
27717         function.  Instantiates a generic method.
27718
27719 2003-10-16  Martin Baulig  <martin@ximian.com>
27720
27721         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
27722         *gen_params' here from MonoMethodHeader.
27723
27724         * metadata.c (mono_metadata_parse_method_signature): If we have
27725         generic parameters, initialize `method->gen_params' and then set
27726         the correct `type->data.generic_param' in all the parameters.
27727
27728 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
27729
27730         * threads.c (mono_threads_get_default_stacksize): New function to 
27731         return the default stacksize.
27732
27733         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
27734         termination of the finalizer thread, since the previous method had
27735         race conditions. Fixes #49628.
27736
27737         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
27738         as for the other managed threads.
27739
27740 2003-10-16  Martin Baulig  <martin@ximian.com>
27741
27742         * class.c (inflate_generic_signature): Copy `generic_param_count'
27743         and `gen_params'.
27744
27745         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
27746         New interncall.
27747
27748         * metadata.c (mono_metadata_parse_method_signature): Actually set
27749         the `method->generic_param_count' here.
27750         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
27751
27752 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
27753
27754         * object.h: Add a new field to TypedRef to simplify the implementation
27755         of the REFANY opcodes in the JIT.
27756
27757         * icall.c: Make use of the new field.
27758
27759         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
27760         dynamically.
27761
27762 2003-10-15  Martin Baulig  <martin@ximian.com>
27763
27764         * class.c (mono_class_from_gen_param): Renamed to
27765         mono_class_from_generic_parameter() and moved most of the
27766         functionality from mono_reflection_define_generic_parameter()
27767         here; ie. we create a "real" class here.
27768         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
27769         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
27770         previously been called.
27771
27772         * class.h (MonoGenericParam): Moved the declaration of this struct
27773         here from metadata.h and added `MonoMethod *method'.
27774
27775         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
27776         interncall.
27777
27778         * loader.c (mono_get_method_from_token): If we have any generic
27779         parameters, call mono_metadata_load_generic_params() to read them
27780         from the MONO_TABLE_GENERICPAR.
27781
27782         * metadata.c (mono_metadata_load_generic_params): Added
27783         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
27784
27785         * metadata.h (MonoMethodSignature): Replaced
27786         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
27787         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
27788
27789         * reflection.c (mono_reflection_define_generic_parameter): Moved
27790         most of the functionality into the new
27791         mono_class_from_generic_parameter(); set the `method' field if
27792         we're a method parameter.       
27793
27794 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
27795
27796         * marshal.c (emit_struct_conv): if native size is 0
27797         emit no code.
27798
27799 2003-10-14  Martin Baulig  <martin@ximian.com>
27800
27801         * icall.c: The generics API has changed in the spec since it was
27802         added to System.Type; these modifications make it match the spec
27803         again.
27804         (ves_icall_Type_GetGenericParameters): Renamed to
27805         `ves_icall_Type_GetGenericArguments'.
27806         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
27807         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
27808         `ves_icall_MonoType_get_HasGenericArguments'.
27809         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
27810         `ves_icall_MonoType_get_IsGenericParameter'.
27811         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
27812         this is no interncall anymore.
27813         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
27814         `ves_icall_TypeBuilder_get_IsGenericParameter'.
27815
27816 2003-10-14  Martin Baulig  <martin@ximian.com>
27817
27818         * reflection.c (mono_reflection_bind_generic_parameters): Also
27819         inflate generic methods if we're reading the class from IL.
27820
27821 2003-10-13  Martin Baulig  <martin@ximian.com>
27822
27823         * reflection.c (mono_reflection_define_generic_parameter): This
27824         method isn't called directly from the icall anymore; take a
27825         `MonoReflectionAssemblyBuilder *' so we can use this for type and
27826         method generic parameters.
27827         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
27828         (method_builder_encode_signature): Encode generic parameters.
27829         (mono_image_get_method_info): Write generic params to the
27830         MONO_TABLE_GENERICPARAM table.
27831
27832         * reflection.h (MonoReflectionMethodBuilder): Added
27833         `MonoArray *generic_params'.
27834
27835         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
27836
27837         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
27838         wrapper for mono_reflection_define_generic_parameter().
27839         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
27840
27841 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
27842
27843         * marshal.h: Add missing function to fix build.
27844
27845         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
27846         the SetLastError pinvoke attribute.
27847
27848         * marshal.c (mono_marshal_set_last_error): New helper function called
27849         by the generated code.
27850         
27851         * marshal.c (mono_mb_emit_branch): New helper function.
27852
27853         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
27854
27855         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
27856         classes as parameters and return values of delegates. Fixes #29256. 
27857
27858 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
27859
27860         * locales.c: use gint32 in non HAVE_ICU case
27861
27862 2003-10-11  Martin Baulig  <martin@ximian.com>
27863
27864         * mono-debug.c (mono_debug_add_method): Added a workaround for
27865         bug #48591.
27866
27867 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
27868
27869         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
27870         delegates passed to native code must use the STDCALL calling 
27871         convention. Fixes #35987.
27872
27873 2003-10-10  Martin Baulig  <martin@ximian.com>
27874
27875         * class.c (inflate_generic_type): If we're inflating for a generic
27876         type instance (and not for a generic method), return
27877         MONO_TYPE_MVAR unchanged.
27878
27879 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27880
27881         * string-icalls.c: Join ignores null strings in the source array.
27882         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
27883         * threads.c: GetAvailableTheads is slightly more accurate.
27884
27885 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
27886
27887         * threads.h threads.c : add mono_threads_set_default_stacksize
27888         and pass default to CreateThread calls.
27889
27890 2003-10-09  Dick Porter  <dick@ximian.com>
27891
27892         * icall.c:
27893         * locales.h:
27894         * locales.c: Internal calls for constructing CultureInfo and
27895         related objects from libicu (if its available.)
27896
27897 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
27898
27899         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
27900
27901 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27902
27903         * threadpool.c: added an argument to async_invoke_thread that is the
27904         item to process, pass the MonoAsyncResult to the thread start function
27905         when creating a new thread. This way we don't need to acquire any lock
27906         when we're creating a new thread. Readded a semaphore for faster
27907         response times (instead of that Sleep i added).
27908
27909 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
27910
27911         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
27912         get daylight change dates better on Windows, fix handling
27913         of platforms without tm_gmtoff.
27914
27915 2003-10-06  Martin Baulig  <martin@ximian.com>
27916
27917         * class.c (inflate_generic_method): Renamed to
27918         mono_class_inflate_generic_method() and made public.
27919         (mono_class_init): Don't inflate the generic methods here.
27920         (mono_class_from_generic): Added `gboolean inflate_methods'
27921         argument.  Inflate the methods here.
27922
27923         * loader.c (mono_method_get_param_names): Ignore instances of
27924         generic types for the moment.
27925
27926         * reflection.c (fixup_method): Added support for inflated methods.
27927         (mono_image_create_token): Use mono_image_get_methodref_token()
27928         for inflated methods.
27929         (mono_custom_attrs_from_param): Ignore instances of generic types
27930         for the moment.
27931         (mono_reflection_bind_generic_parameters): New public function.
27932         Moved all the functionality from
27933         ves_icall_Type_BindGenericParameters() here and added support for
27934         dynamic types.
27935         (mono_reflection_define_generic_parameter): Initialize
27936         `klass->methods' here.
27937
27938         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
27939         functionality into mono_reflection_define_generic_parameter().
27940         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
27941         TypeBuilder, return that TypeBuilder.
27942
27943 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27944
27945         * appdomain.c: removed mono_delegate_semaphore.
27946
27947         * threadpool.c:
27948         (mono_thread_pool_add): moved hash table creation inside and the thread 
27949         creation outside of the critical region.
27950         (mono_thread_pool_finish): removed obsolete code.
27951         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
27952         continue or exit the thread depending on the queue.
27953
27954 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
27955
27956         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
27957         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
27958         handle more bool marshalling options
27959
27960 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
27961
27962         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
27963         arrays of structs. Also add a more descriptive error message when
27964         a structure member is marshalled as LPArray.
27965
27966 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
27967
27968         * marshal.c (mono_marshal_get_native_wrapper): Add support for
27969         marshalling arrays of complex types. Fixes #29098. Also remove an
27970         usused and incomplete function.
27971
27972 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
27973
27974         * gc.c: report heap_size - free_bytes as total memory allocated
27975         (bug#49362).
27976
27977 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
27978
27979         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
27980         fix timezone handling problems on Windows.
27981         
27982         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
27983         asserts when the year is outside the range handled by ms the functions.
27984
27985         * class.c (setup_interface_offsets): If the class is an interface,
27986         fill out its interface_offsets slot.
27987
27988 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27989
27990         * threadpool.c: mark threadpool threads as background.
27991
27992 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
27993
27994         * decimal.c - define DECINLINE to nothing if not using GCC
27995
27996 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
27997
27998         * assembly.c: More refcount fixes.
27999
28000 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28001
28002         * string-icalls.c: if we're not trimming, return the same string.
28003         When not splitting, don't create a new string.
28004
28005 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28006
28007         * image.c:
28008         (mono_image_open): increment the ref_count inside the critical section.
28009
28010 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
28011
28012         * image.c (mono_image_open): Fix reference counting bug.
28013
28014 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
28015
28016         * marshal.c (mono_marshal_type_size) struct alignment changed for 
28017         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
28018         64bits. Avoid leak in mono_marshal_get_native_wrapper when
28019         mono_lookup_pinvoke_call throws.        
28020
28021 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
28022
28023         * reflection.c (mono_reflection_parse_type): Fix #49114.
28024
28025         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
28026         temporary workaround for cygwin header problem.
28027
28028         * object.c (mono_object_isinst): Synchronize this with the code
28029         generated by the JIT for casts.
28030
28031 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
28032
28033         * reflection.c (encode_type): Fix #38332.
28034
28035 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
28036
28037         * marshal.c (mono_marshal_method_from_wrapper): New function to return
28038         the original method from the wrapper method.
28039
28040 2003-09-25  Martin Baulig  <martin@ximian.com>
28041
28042         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
28043         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
28044         (ves_icall_Type_get_IsGenericInstance): New interncall.
28045
28046 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
28047
28048         * object.c: fix cast warning in big endian code.
28049
28050 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
28051
28052         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
28053         
28054 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28055
28056         * assembly.c: don't call check_env from mono_assembly_load. It's
28057         already done once in mono_assemblies_init and may cause headaches when
28058         multiple threads are loading assemblies.
28059
28060 2003-09-19  Martin Baulig  <martin@ximian.com>
28061
28062         * reflection.c (mono_reflection_define_generic_parameter): Don't
28063         allocate `klass->methods', set `klass->flags' to
28064         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
28065
28066 2003-09-18  Martin Baulig  <martin@ximian.com>
28067
28068         * class.c (mono_class_init): Don't create `class->methods' if it's
28069         already initialized.
28070
28071         * metadata.c (mono_metadata_load_generic_params): Make this
28072         actually work.
28073
28074         * reflection.c (mono_reflection_define_generic_parameter): Set
28075         parent class and interfaces from the constraints.
28076
28077         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
28078         to keep this struct in sync with the declaration in TypeBuilder.cs.
28079
28080 2003-09-17  Martin Baulig  <martin@ximian.com>
28081
28082         * metadata.h (MonoType): Replaced the data's `int type_param'
28083         field with `MonoGenericParam *generic_param'.
28084         (MonoGenericParam): Added `MonoClass *klass'.
28085
28086         * class.c (mono_class_from_gen_param): Removed the
28087         `MonoImage *image' and `int type_num' arguments.
28088
28089         * metadata.c (mono_metadata_parse_generic_param): New static
28090         method; creates a MonoGenericParam which just contains the index.
28091         (do_mono_metadata_parse_type): Call
28092         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
28093         MONO_TYPE_MVAR.
28094
28095         * reflection.c (mono_image_typedef_or_ref): Generic type
28096         parameters may be in the same assembly, but never use a typedef
28097         for them.
28098         (mono_reflection_define_generic_parameter): We're now creating a
28099         "real" class for the type parameter; it's now safe to call
28100         mono_class_from_mono_type() on the class'es type, it'll do the
28101         right thing.
28102
28103 2003-09-16  Martin Baulig  <martin@ximian.com>
28104
28105         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
28106         `symfile->range_entry_size' and `symfile->class_entry_size' here;
28107         the `symfile' data structure must be fully initialized before it
28108         gets added to the table.
28109
28110 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
28111
28112         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
28113
28114         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
28115         class init trampolines.
28116
28117 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
28118
28119         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
28120         to the built-in profiler to turn off time and allocation profiling
28121         respectively.
28122
28123 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
28124
28125         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
28126         g_direct_equal.
28127
28128         * debug-helpers.c (mono_method_full_name): Print the wrapper type
28129         in human readable form.
28130
28131 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
28132
28133         * reflection.c icall.c: Fixed warnings.
28134
28135         * image.c (load_class_names): Use a temporary hash table to hold the
28136         namespaces in order to avoid doing many string comparisons.
28137
28138         * image.h: Fix typo.
28139
28140         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
28141         Pass NULL instead of g_direct_equal to the GHashTable constructor 
28142         since the NULL case is short-circuited inside g_hash_table_lookup, 
28143         leading to better performance.  
28144
28145         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
28146         obtain the first custom attribute for a given index. Depends on the
28147         CustomAttribute table being sorted by the parent field.
28148
28149         * reflection.c (mono_custom_attrs_from_index): Use the new function 
28150         for better performance.
28151
28152 2003-09-07  Martin Baulig  <martin@ximian.com>
28153
28154         * class.c (mono_class_init): If we're a generic instance, inflate
28155         all our methods instead of loading them from the image.
28156         (mono_class_from_generic): Set `class->methods = gklass->methods'.
28157
28158 2003-09-07  Martin Baulig  <martin@ximian.com>
28159
28160         * mono-debug-debugger.c: Added support for constructors.
28161
28162 2003-09-06  Martin Baulig  <martin@ximian.com>
28163
28164         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
28165         New interncall.
28166
28167         * reflection.c (mono_reflection_setup_generic_class): Call
28168         ensure_runtime_vtable() to create the vtable.
28169
28170 2003-09-05  Martin Baulig  <martin@ximian.com>
28171
28172         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
28173         MONO_TYPE_MVAR.
28174
28175 2003-09-04  Martin Baulig  <martin@ximian.com>
28176
28177         * reflection.c (mono_reflection_define_generic_parameter): Generic
28178         parameters start with zero.
28179
28180 2003-09-04  Martin Baulig  <martin@ximian.com>
28181
28182         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28183
28184         * reflection.h (MonoReflectionGenericParam): New typedef.
28185         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
28186         the generic parameters from the managed TypeBuilder.
28187
28188         * reflection.c (mono_reflection_define_generic_parameter): New function.
28189         (mono_reflection_create_runtime_class): Encode generic parameters.
28190         (mono_reflection_setup_generic_class): New function; this is
28191         called after adding adding all generic params to the TypeBuilder.
28192         (encode_type): Added MONO_TYPE_VAR.
28193
28194 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
28195
28196         * class.h class.c (mono_class_needs_cctor_run): Moved this method
28197         here from the JIT.
28198
28199         * assembly.h assembly.c: Moved the AOT loading code into an assembly
28200         load hook.
28201
28202 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
28203
28204         * reflection.h reflection.c class.h class.c: Delete duplicate 
28205         definition of mono_type_get_name () from reflection.c and export the
28206         one in class.c.
28207
28208         * class.c: Class loading fixes from Bernie Solomon 
28209         (bernard@ugsolutions.com).
28210
28211         * reflection.c: Endianness fixes from Bernie Solomon 
28212         (bernard@ugsolutions.com).
28213         
28214 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
28215
28216         * assembly.h assembly.c: Define a file format version for AOT
28217         libraries.
28218         
28219         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
28220
28221         * appdomain.h (MonoJitInfo): New field to determine whenever the
28222         code is domain neutral.
28223         
28224 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
28225
28226         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
28227
28228 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
28229
28230         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
28231         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
28232         Avoid caching the result since strings must be domain specific. Fixes
28233         #48050.
28234
28235 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
28236
28237         * marshal.c (mono_marshal_init): Make this callable multiple times
28238         since it is hard to find a correct place to call it.
28239
28240         * object.c (mono_runtime_class_init): Execute static constructors in
28241         the correct appdomain.
28242
28243         * image.c (build_guid_table): Handle the case when multiple images have
28244         the same GUID.
28245
28246 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28247
28248         * icall.c: added a couple of icalls for System.Web.
28249
28250 2003-08-28  Martin Baulig  <martin@ximian.com>
28251
28252         * icall.c (ves_icall_Type_BindGenericParameters): Use
28253         `klass->generic_inst' instead of `&klass->byval_arg' in the
28254         mono_type_get_object() call.  The returned type must be
28255         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
28256
28257 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
28258
28259         * NOTES: New file.
28260
28261         * object.c (mono_class_proxy_vtable): Make it thread safe.
28262
28263         * pedump.c: Fix warning.
28264
28265         * object.c appdomain.h: Get rid of metadata_section. 
28266         It is no longer needed and it was causing deadlocks with domain->lock.
28267
28268         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
28269
28270 2003-08-26  Martin Baulig  <martin@ximian.com>
28271
28272         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
28273
28274 2003-08-26  Martin Baulig  <martin@ximian.com>
28275
28276         * pedump.c (main): Call mono_metadata_init(),
28277         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
28278         and mono_loader_init().
28279
28280 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
28281
28282         * loader.h: Add missing include to fix build.
28283
28284         * image.h: mono_image_load_references is no more.
28285
28286         * assembly.c: Reworked assembly loading to make it really thread safe.
28287         After these changes, the assembly returned by mono_assembly_open is
28288         fully initialized, i.e. all its references assemblies are loaded.
28289
28290         * assembly.c (mono_image_load_references): Renamed to 
28291         mono_assembly_load_references, and made private, since clients no
28292         longer need to call it.
28293
28294         * class.c: Removed calls to mono_assembly_load_references, since it was
28295         a source of deadlocks.
28296
28297         * loader.h loader.c class.h class.c: Protect data structures using a 
28298         new lock, the loader lock.
28299
28300         * class.c (mono_class_setup_vtable): Create temporary hash tables and
28301         GPtrArrays only when needed.
28302
28303         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
28304         into empty structures by mcs. Fixes pinvoke7.cs.
28305         
28306         * domain.c (mono_init): Call a new initialization function.
28307
28308         * appdomain.c (mono_runtime_init): Call the new initializer function
28309         of the marshal module.
28310
28311         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
28312         inserted into empty structures by mcs. Fixes pinvoke7.cs.
28313
28314         * marshal.h marshal.c: Added locks around the wrapper caches to make
28315         this module thread safe.
28316
28317         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
28318         this argument. Fixes pinvoke1.exe.
28319
28320 2003-08-25  Lluis Sanchez <lluis@ximian.com>
28321
28322         * object.h: Added call_type field to MonoMethodMessage and the corresponding
28323         enumeration of values. Removed fields to store remote call output values in
28324         MonoAsyncResult. Not needed any more.
28325         * object.c: Initialize call_type and async_result fields in mono_message_init.
28326         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
28327         dispatching the message.
28328         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
28329         async call to finish. To do it use a message with EndInvoke call type.
28330
28331 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
28332
28333         * loader.h loader.c (mono_method_hash_marhal_info): New function which
28334         determines whenever a method has marshalling info.
28335
28336 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28337
28338         * assembly.c: fix the build on windows.
28339
28340 2003-08-22 Lluis Sanchez <lluis@ximian.com>
28341
28342         * object.cs: Fixed bug #47785.
28343
28344 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
28345
28346         * string-icalls.c (StringReplace): If their are no occurances of
28347         the old string found return a reference to the supplied
28348         string. This saves some memory and matches MS behavoir.
28349         
28350 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28351
28352         * socket-io.c: fixed compilation for systems that define AF_INET6
28353         and don't define SOL_IP/SOL_IPV6.
28354
28355 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
28356
28357         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
28358         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
28359
28360         * rawbuffer.c rawbuffer.h: Make this module thread safe.
28361
28362         * domain.c: Make this module thread safe.
28363
28364         * domain.c (mono_init): Call new initialization function.
28365
28366         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
28367         reference types too. Fixes #38812.
28368
28369         * image.c (mono_image_init): Fixed warnings.
28370
28371         * class.c (mono_class_from_typeref): Handle assembly load failure
28372         correctly.
28373
28374         * appdomain.c (add_assemblies_to_domain): Handle the case when
28375         the references of an assembly are not yet loaded.
28376
28377         * metadata.c image.c assembly.c: Moved initialization of global
28378         variables to a separate function called at startup since lazy 
28379         initialization of these variables is not thread safe.
28380         
28381         * image.c assembly.c: Made this module thread safe by adding locks in 
28382         the appropriate places.
28383
28384         * domain.c (mono_init): Call the new initialization functions of the
28385         three modules.
28386
28387 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
28388
28389         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
28390           make a direct call. It is proxy's work to make the call asynchronous.
28391           mono_delegate_end_invoke(): If the targe is a proxy, just collect
28392           the return values.
28393         * object.cs: mono_method_call_message_new(): read AsyncResult and
28394           state object from parameters list, if this info is requested.
28395         * object.h: Added fields to store remote call output values in
28396           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
28397
28398 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
28399
28400         * object.h: add needed fields to MonoThread.
28401         * threads.c, threads.h: allow registering a function to cleanup data
28402         allocated per thread by the JIT.
28403
28404 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
28405
28406         * loader.h: portability fix by Bernie Solomon
28407         * <bernard@ugsolutions.com>.
28408
28409 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
28410
28411         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
28412         return a MonoArray. This simplifies the code and also ensures that
28413         the cache allways contains an object reference as a value.
28414
28415         * icall.c (ves_icall_get_parameter_info): Simplified using the new
28416         function.
28417
28418 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28419
28420         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
28421         fixes a problem with byte ordering when getting the address family for
28422         a socket.
28423
28424 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
28425
28426         * .cvsignore: Added monosn.
28427
28428         * reflection.h reflection.c loader.c: Added support for parameter
28429         marshalling to dynamically created types. Fixes #47295.
28430
28431 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
28432
28433         * rand.c: remove useless warnings.
28434
28435 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
28436
28437         * class.c: implemented ldtoken for methods and fieldrefs.
28438
28439 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28440
28441         * threadpool.c: when mono_async_invoke was called, no one took care of
28442         monitoring the queue. So if the method invoked took some time and we
28443         got new async invoke requests after 500 ms (the thread created waited
28444         that long in WaitForSingleObject), the new async invoke was not called
28445         until the previous one finished.
28446
28447         This is fixed now. Thanks to Totte for helping with it.
28448
28449 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28450
28451         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
28452
28453 2003-08-11  Martin Baulig  <martin@ximian.com>
28454
28455         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
28456
28457 2003-08-06  Martin Baulig  <martin@ximian.com>
28458
28459         * mono-debug-debugger.c: Added support for static fields,
28460         properties and methods.
28461
28462 2003-08-06  Martin Baulig  <martin@ximian.com>
28463
28464         * mono-debug-debugger.c: Don't store the MonoString's vtable to
28465         make this work for applications with multiple application domains.
28466
28467 2003-08-04  Martin Baulig  <martin@ximian.com>
28468
28469         * mono-debug-debugger.c: Completely reworked the type support; the
28470         most important thing is that we're now just using one single
28471         `MonoType' instance per type.
28472
28473 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
28474
28475         * mono-endian.h, mono-endian.c, icall.c: Added icall
28476         ves_icall_System_Double_AssertEndianity to assert double word endianity
28477         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
28478
28479 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
28480
28481         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
28482         support, icalls and fixes.
28483
28484 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
28485
28486         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
28487         classes that are a punctuation character in .NET is not the same a
28488         g_unichar_ispunct.
28489
28490 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
28491
28492         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
28493
28494 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
28495
28496         * icall.c: Add new MemCopy internalcall.
28497         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
28498         Simplified code; It is not necessary to handle all the cases here,
28499         as the C# code takes care of it.  Only handle the case of the name
28500         resource embedded into the assembly.
28501
28502         Changed signature to return the data pointer and the size of the
28503         data. 
28504
28505 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
28506
28507         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
28508         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
28509
28510 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
28511
28512         * socket-io.c: ignore EINTR error in select.
28513
28514 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
28515
28516         * class.h, class.c: removed unused subclasses field in MonoClass.
28517
28518 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
28519
28520         * icall.c: improve fix of get_base_definition(). If the parent class
28521           doesn't have the mehod, look at the parent of the parent.
28522         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
28523           to check if a parameter is an in or out parameter
28524           (PARAM_ATTRIBUTE_IN is not set by default).
28525           mono_method_return_message_restore(): Use mono_class_value_size to
28526           get the size of a value type. mono_type_stack_size (parameterType)
28527           does not return the correct value if parameterType is byRef.
28528           mono_load_remote_field(), mono_load_remote_field_new(),
28529           mono_store_remote_field(), mono_store_remote_field_new():
28530           raise exception if the remote call returns an exception.
28531
28532 2003-07-28  Martin Baulig  <martin@ximian.com>
28533
28534         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
28535         method.  This is a wrapper around mono_runtime_invoke() which
28536         boxes the instance object if neccessary.
28537
28538 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
28539
28540         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
28541         metadata.h, row-indexes.h, verify.c: first cut of generics support.
28542
28543 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
28544
28545         * icall.c: disable mcs bug workaround.
28546
28547 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
28548
28549         * object.c (mono_runtime_class_init): Take the metadata_section
28550         mutex before obtaining the domain mutex.
28551
28552         * appdomain.h: Added definition of metadata_section mutex here. 
28553
28554         * object.c: define metadata_mutex here.
28555
28556 2003-07-24  Ravi Pratap  <ravi@ximian.com>
28557
28558         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
28559         fixed.
28560
28561 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
28562
28563         * reflection.c: Fix bug #46669
28564
28565 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28566
28567         * exception.c:
28568         * exception.h:
28569         * icall.c:
28570         * object.h: fill in the type name for TypeLoadException.
28571
28572 2003-07-23  Ravi Pratap  <ravi@ximian.com>
28573
28574         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
28575         relationship between TypeBuilders while compiling corlib) and bug
28576         45993 (Array types returned from the runtime while compiling
28577         corlib were from the loaded corlib).
28578
28579 2003-07-22  Martin Baulig  <martin@ximian.com>
28580
28581         * mono-debug-debugger.c: Reworked the type support a bit more;
28582         distinguish between types and classes.
28583
28584 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
28585
28586         * icall.c: add IsArrayImpl icall.
28587
28588 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
28589
28590         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
28591         initializing real_size only once. Also fix bug #46602.
28592
28593 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
28594
28595         * object.c: Renamed mono_metadata_section to metadata_section.
28596
28597 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
28598
28599         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
28600           empty array if the type is an array. Fixed.
28601           ves_icall_MonoMethod_get_base_definition: if the base method
28602           is abstract, get the MethodInfo from the list of methods of
28603           the class.
28604         * reflection.c: ParameterInfo.PositionImpl should be zero-based
28605           and it was 1-based. Fixed in mono_param_get_objects.
28606
28607 2003-07-20  Martin Baulig  <martin@ximian.com>
28608
28609         * mono-debug.h: Set version number to 31.
28610         (mono_debug_init): Added `MonoDomain *' argument.
28611
28612         * mono-debug-debugger.c: Reworked the type support; explicitly
28613         tell the debugger about builtin types; pass the `klass' address to
28614         the debugger.
28615
28616 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
28617
28618         * image.c: Allow new metadata tables to be loaded without a
28619         warning. Also update the warning message to give the new constant value.
28620                 
28621 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
28622
28623         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
28624         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
28625         array type representation changes.
28626
28627 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
28628
28629         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
28630         on Environment.Exit () call.
28631
28632 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
28633
28634         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
28635         requires a matching corlib.
28636
28637 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
28638
28639         * Changelog: My editor decided to add a CR to each line. Sorry about that.
28640           Committed again without the CRs.
28641         
28642 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
28643
28644         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
28645           getting it from the "this" socket instance. Did not work
28646           if the socket is a subclass of Socket.
28647           Also fixed bug #35371.
28648
28649 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
28650
28651         * metadata.c: fixed size for TypedByRef.
28652         * loader.c: when searching for a method, consider the vararg amrker.
28653         * unicode.c, decimal.c: constify some arrays.
28654
28655 2003-07-15  Dick Porter  <dick@ximian.com>
28656
28657         * socket-io.c: Fixed compilation for gcc < 3.2.
28658
28659         Fixed compilation for machines that don't have AF_INET6 (thanks to
28660         Bernie Solomon <bernard@ugsolutions.com> for that part.)
28661
28662         Fixed compile warnings.
28663         
28664         Fixed formatting and line endings.
28665
28666 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
28667
28668         * socket-io.h:
28669         * socket-io.c: Added IPv6 support.
28670
28671 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
28672
28673         * class.c (mono_class_is_assignable_from): New function to implement
28674         the is_assignable_from logic. Used by mono_object_isinst, 
28675         Type::IsAssignableFrom () and the interpreter.
28676
28677         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
28678         Object, even interfaces.
28679         
28680         * object.c (mono_object_isinst): Implement in terms of 
28681         is_assignable_from.
28682
28683         * icall.c (ves_icall_type_is_assignable_from): New icall.
28684
28685 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
28686
28687         * domain.c (foreach_domain): fix compiler warning.
28688
28689 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
28690
28691         * image.c (load_metadata_ptrs): use g_strndup because strndup is
28692         not available on all plattforms
28693
28694 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
28695
28696         * image.h image.c: Store the metadata version string in MonoImage.
28697         * icall.c: New icall to retrieve the image version.
28698         * reflection.c (create_dynamic_image): Fill in the image version field
28699         * reflection.c (build_compressed_metadata): Use the image version
28700         from the image structure.
28701
28702 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28703
28704         * appdomain.c: modified comment.
28705         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
28706         That will be its last iteration when mono_gc_cleanup is called from
28707         mono_runtime_cleanup and before the domain is unloaded.
28708
28709         Fixes bug #45962.
28710
28711 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
28712
28713         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
28714         attributes.
28715
28716 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
28717
28718         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
28719         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
28720         Bernie Solomon <bernard@ugsolutions.com>.
28721
28722 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
28723
28724         * object.c, object.h: provide mono_object_new_fast() for faster
28725         allocation in some special cases.
28726
28727 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
28728
28729         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
28730         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
28731
28732 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
28733
28734         * threadpool.c: fix leaks.
28735
28736 2003-07-01  Dick Porter  <dick@ximian.com>
28737
28738         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
28739         using MonoGHashTables.  Fixes threadpool bug posted to list.
28740
28741 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
28742
28743         * image.h, image.c: added support to load an assembly from a byte array.
28744         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
28745         assembly bundle support.
28746
28747 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
28748
28749         * threadpool.c (mono_thread_pool_add): keep a reference to the
28750         AsyncResult to prevent GC
28751
28752 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
28753
28754         * class.c: leak fix.
28755
28756 2003-06-25  Dick Porter  <dick@ximian.com>
28757
28758         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
28759         for the async object, the WaitHandle object will close the handle.
28760         Fixes bug 45321.
28761
28762 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
28763
28764         * class.c: in mono_array_class_get (), lookup from the hash with the
28765         same type we insert: this works around a bug in
28766         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
28767         lluis. The real fix will have to wait for after the release.
28768
28769 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
28770
28771         * icall.c: fix memory leak when getting type members.
28772
28773 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
28774
28775         * reflection.c: added more pubtoken special cases.
28776
28777 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
28778
28779         * class.c: handle field offset correctly when class size
28780         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
28781
28782 2003-06-20  Martin Baulig  <martin@ximian.com>
28783
28784         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
28785         *image' field.
28786
28787 2003-06-20  Martin Baulig  <martin@ximian.com>
28788
28789         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
28790
28791 2003-06-20  Martin Baulig  <martin@ximian.com>
28792
28793         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
28794         just distinguish between variables in registers and variables at
28795         an offset relative to a register.
28796
28797 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28798
28799         * icall.c: #ifdef out latest changes until mcs is fixed.
28800
28801 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
28802
28803         * icall.c: return members in metadata order.
28804
28805 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
28806
28807         * icall.c: avoid infinite loop in GetTimeZoneData.
28808
28809 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
28810
28811         * icall.c: added Marshal.Prelink/All icalls.
28812
28813 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
28814
28815         * object.c, object.h: fix warnings and do some overflow checking
28816         when creating arrays.
28817
28818 2003-06-17  Dick Porter  <dick@ximian.com>
28819
28820         * file-io.h:
28821         * file-io.c: File attributes need to be tweaked slightly when
28822         passed from the managed to the w32 world.
28823
28824 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
28825         * profiler.h profiler-private.h profiler.c: Rework last patch
28826         based on suggestion by Paolo.
28827         
28828 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
28829
28830         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
28831         instruction level coverage data collection.
28832         * profiler.h profiler.c (: Added new callback function which can be
28833         used by the profiler to limit which functions should have coverage
28834         instrumentation.
28835         * profiler.c (mono_profiler_load): Call g_module_build_path to
28836         generate the file name of the profiler library.
28837
28838 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
28839
28840         * profiler.c, profiler.h, profiler-private.h: added basic block 
28841         coverage profiling API.
28842
28843 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
28844
28845         * reflection.c (mono_reflection_create_runtime_class): Add support
28846         for events in dynamically generated code.
28847
28848         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
28849         not allocated.
28850
28851 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
28852
28853         * icall.c: when getting timezone info, return reasonable values if we
28854         can't get the actual data.
28855
28856 2003-06-14  Dick Porter  <dick@ximian.com>
28857
28858         * threads.c (start_wrapper): Remove the reference to the thread
28859         object in the TLS data, so the thread object can be finalized.
28860         This won't be reached if the thread threw an uncaught exception,
28861         so those thread handles will stay referenced :-( (This is due to
28862         missing support for scanning thread-specific data in the Boehm GC
28863         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
28864
28865 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
28866
28867         * reflection.c: ensure streams and tables are first allocated with
28868         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
28869
28870 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
28871
28872         * icall.c: fixed GetElementType for byrefs (bug# 44792).
28873
28874 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
28875
28876         * reflection.c (mono_reflection_create_runtime_class): Add support for
28877         properties to dynamically created classes.
28878         * reflection.c: Fix a few places where non-MonoObjects were inserted
28879         into the tokens hashtable.
28880
28881 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
28882
28883         * object.c: some support to handle out of memory exceptions.
28884
28885 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
28886
28887         * marshal.c (mono_marshal_get_native_wrapper): support reference
28888         return types
28889
28890 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
28891
28892         * object.h, object.c: more portability stuff from Bernie Solomon.
28893         Unexport mono_object_allocate(). Added mono_object_unbox ().
28894         Set exitcode when an unhandled exception is thrown.
28895
28896 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
28897
28898         * marshal.c (mono_marshal_get_native_wrapper): use custom
28899         marshaler for return types.
28900
28901 2003-06-10  Dick Porter  <dick@ximian.com>
28902
28903         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
28904         ip_mreq is available
28905
28906 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
28907
28908         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
28909         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
28910         by Bernie Solomon <bernard@ugsolutions.com>.
28911
28912 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
28913
28914         * gc.c (mono_gc_init): Avoid error message on shutdown when
28915         GC_DONT_GC=1 is used.
28916
28917         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
28918         New icall to return the GUID of a module.
28919
28920 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
28921
28922         * class.c: ensure instance size always includes the parent's size
28923         even whem class size is set explicitly (fixes bug#44294).
28924
28925 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
28926
28927         * profiler.h, profiler.c: made the simple profiler thread-safe,
28928         get more accurate timing info. Allow the loading of an
28929         externally-developed profiler module.
28930
28931 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
28932
28933         * marshal.c (mono_marshal_get_native_wrapper): improved
28934         class/byref arguments.
28935         (mono_marshal_get_native_wrapper): better string marshaling support.
28936
28937 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
28938
28939         * class.c: ensure .pack and .size are handled correctly and
28940         simplified layout of static fields.
28941
28942 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
28943
28944         * appdomain.c
28945         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
28946
28947         * loader.c (mono_lookup_pinvoke_call): look for modules in the
28948         current directory (fix bug 44008)
28949
28950 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
28951
28952         * marshal.c (mono_marshal_get_native_wrapper): started support for
28953         custom marshalers.
28954         (mono_delegate_to_ftnptr): consider marshalling specifications
28955
28956 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
28957
28958         * reflection.c, reflection.h: emit custom marshal info.
28959
28960 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28961
28962         * object.c: free the GError.
28963         * icall.c: added CloseEvent_internal.
28964         * threads.[ch]:
28965         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
28966         call.
28967
28968 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
28969
28970         * loader.c (mono_method_get_signature): Add support for dynamic
28971         assemblies.
28972
28973 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
28974
28975         * reflection.c: fixed bug #43905.
28976
28977 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
28978
28979         * class.c, domain.c, icall.c, metadata.h, object.h: support for
28980         handling TypedReference and ArgIterator.
28981         * loader.c, loader.h: added function to get signature at call site.
28982
28983 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
28984
28985         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
28986         data readonly. Buglets and warning fixes. Some MethodSpec support.
28987
28988 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
28989
28990         * class.h, class.c, object.c: remove relative numbering support.
28991
28992 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
28993
28994         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
28995         free the string, until we get a chance to fix Gtk#
28996
28997 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28998
28999         * marshal.c: revert last patch.
29000
29001 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
29002
29003         * icall.c: updates for new mono_class_vtable() not calling
29004         the type constructor anymore.
29005
29006 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
29007
29008         * object.h, object.c: separate vtable creation from type
29009         initialization. Make running the .cctor thread safe.
29010
29011 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
29012
29013         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
29014
29015 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
29016
29017         * loader.c (mono_get_method): consider calling convention
29018
29019 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
29020
29021         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
29022         to return the invisible global type for a module.
29023
29024         * reflection.c (mono_image_build_metadata): Emit global fields too.
29025
29026 2003-05-20  Peter Williams  <peterw@ximian.com>
29027
29028         * loader.c (mono_lookup_internal_call): Add a few newlines.
29029
29030 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
29031
29032         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
29033         literal strings.
29034
29035         * appdomain.c (set_domain_search_path): Recalculate search path when
29036         AppDomainSetup.PrivateBinPath changes.
29037
29038         * object.c (mono_class_compute_gc_descriptor): It turns out some
29039         parts of the class libs (like System.Thread) holds pointers to
29040         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
29041         to treat native int a pointer type here.
29042         
29043 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
29044
29045         * appdomain.h, domain.c: add hashtable for jump target resolution.
29046
29047 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
29048
29049         * reflection.h reflection.c icall.c: Added new icalls 
29050         GetManifestResourceInfoInternal, GetModulesInternal and support
29051         infrastructure.
29052
29053 2003-05-16  Dick Porter  <dick@ximian.com>
29054
29055         * icall.c:
29056         * file-io.h:
29057         * file-io.c: Implement System.IO.MonoIO::GetTempPath
29058
29059 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
29060
29061         * object.c: mono_store_remote_field: little fix to previous patch.
29062
29063 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
29064
29065         * class.c: add constructors to array classes.
29066         * icall.c: special case array construction for InternalInvoke (),
29067
29068 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
29069
29070         * class.h class.c reflection.c object.c: Added support for field
29071         defaults in dynamically generated classes.
29072
29073 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
29074
29075         * reflection.c: properly encode charset for ddlimport.
29076
29077 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
29078
29079         * threads.c: allow compiling without GC.
29080
29081 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
29082
29083         * appdomain.h, object.c, object.h, threads.c, threads.h: added
29084         handling of thread static data.
29085
29086 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
29087
29088         * reflection.h, reflection.c: added mono_custom_attrs_free ().
29089
29090 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
29091
29092         * class.c (mono_array_class_get): always set the serializable flags
29093         (mono_array_class_get): always set the SEALED attribute for array types
29094
29095 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
29096
29097         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
29098         attributes (fix for bug 42021).
29099
29100 2003-05-12  Dick Porter  <dick@ximian.com>
29101
29102         * gc.c: Don't run finalizers when the finalizer thread is
29103         finishing up, because the default domain has already been
29104         destroyed.
29105
29106 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
29107
29108         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
29109         value is null, we should throw an exception.   This is slightly
29110         different than the other conventions used for the constructor.
29111
29112 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29113
29114         * socket-io.c: fixed windows build.
29115
29116 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29117
29118         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
29119
29120 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
29121
29122         * object.c (mono_string_new_wrapper): Compatibility fix for MS
29123         compilers.
29124
29125 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
29126
29127         * class.c (mono_class_layout_fields): Add experimental GC aware
29128         auto layout facility. Requires class library changes to work correctly.
29129
29130         (mono_class_setup_vtable): Avoid overriding explicit interface
29131         method implementations. Fixes iface3.exe test.
29132
29133         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
29134         object reference.
29135         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
29136         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
29137
29138         * metadata.h: Add new type classification macro which determines
29139         whenever the type holds an object reference.
29140
29141 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
29142
29143         * marshal.c (mono_marshal_get_native_wrapper): cleanups
29144
29145 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
29146
29147         * gc.c (finalizer_thread): Work around a GC bug.
29148
29149 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
29150
29151         * marshal.c (emit_struct_conv): allow unions
29152
29153         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
29154
29155 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
29156
29157         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
29158
29159 2003-05-06  Martin Baulig  <martin@ximian.com>
29160
29161         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
29162
29163 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29164
29165         * socket-io.c:
29166         (Select_internal): allow NULLs, don't create arrays if not needed.
29167         Coupled with Socket.cs changes.
29168
29169         * threadpool.c:
29170         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
29171         register a finalizer for it that will close the semaphore handle. This
29172         fixes the leak and make Lupus' test run with > 4080 loops.
29173
29174 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
29175
29176         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
29177         Jerome Laban (bug #42287)
29178
29179 2003-05-02  Martin Baulig  <martin@ximian.com>
29180
29181         * debug-mono-symfile.h
29182         (MonoSymbolFile): Moved declaration into mono-debug.h.
29183         (MonoDebugMethodJitInfo): Likewise.
29184         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
29185         argument.
29186         (_mono_debug_address_from_il_offset): Take a
29187         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
29188
29189         * mono-debug.h
29190         (MonoDebugDomainData): New struct.
29191         (mono_debug_get_domain_data): New function.
29192         (mono_debug_add_method): Take an additional `MonoDomain *'
29193         argument.
29194         (mono_debug_source_location_from_address): Likewise.
29195         (mono_debug_il_offset_from_address): Likewise.
29196         (mono_debug_address_from_il_offset): Likewise.
29197
29198 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
29199
29200         * reflection.c: one more check for null type in custom attrs.
29201
29202 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29203
29204         * reflection.c: avoid warning (comparison is always false due to limited
29205         range of data type).
29206
29207 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29208
29209         * icall.c: throw an exception in Type.GetField if the argument 'name'
29210         is NULL.
29211
29212 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
29213
29214         * reflection.c: fixed handling of enums in named arguments to custom
29215         attributes (bug #42123).
29216
29217 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
29218
29219         * reflection.c: use the right array element type and handle
29220         a null for a Type argument, too.
29221
29222 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
29223
29224         * reflection.c: handle arrays as arguments to custom attributes.
29225
29226 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
29227
29228         * reflection.c: handle a string value in a custom attr
29229         ctor that takes an object.
29230
29231 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
29232
29233         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
29234         (fix bug #42063)
29235
29236 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
29237
29238         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
29239
29240 2003-04-27  Martin Baulig  <martin@ximian.com>
29241
29242         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
29243         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
29244         MONO_DEBUGGER_EVENT_BREAKPOINT.
29245         (mono_breakpoint_trampoline_code): Removed.
29246         (mono_debugger_event_handler): The last argument is now a
29247         `guint32'.
29248         (mono_debugger_insert_breakpoint_full): Removed the
29249         `use_trampoline' argument.
29250         (mono_debugger_method_has_breakpoint): Likewise.
29251         (mono_debugger_trampoline_breakpoint_callback): Renamed to
29252         mono_debugger_breakpoint_callback(); take the method and
29253         breakpoint number as arguments.
29254
29255 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
29256
29257         * metadata.c: fix off by one when loading parameters attributes.
29258
29259 2003-04-24  Martin Baulig  <martin@ximian.com>
29260
29261         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
29262
29263 2003-04-24  Martin Baulig  <martin@ximian.com>
29264
29265         * mono-debug-debugger.c: Moved all code which interacts with the
29266         Mono Debugger here.
29267
29268         * debug-mono-symfile.c: This code now just deals with the symbol
29269         file itself, the debugger code is now in mono-debug-debugger.c.
29270
29271 2003-04-23  Martin Baulig  <martin@ximian.com>
29272
29273         * mono-debug.c (mono_debug_source_location_from_il_offset):
29274         New method; like mono_debug_source_location_from_address(), but
29275         takes an IL offset instead of a machine address.
29276
29277 2003-04-23  Martin Baulig  <martin@ximian.com>
29278
29279         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
29280         `line' field; this is now computed by the debugger.
29281
29282 2003-04-23  Martin Baulig  <martin@ximian.com>
29283
29284         * mono-debug.[ch]: New files.  This is the new debugging interface.
29285
29286         * mono-debug-debugger.[ch]: New files.  Moved all code which
29287         interacts with the Mono Debugger here.
29288
29289 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
29290
29291         * domain.c (mono_init): initialize mono_defaults.monitor_class
29292
29293 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
29294
29295         * reflection.c (method_encode_code): Add a spicy exception to help
29296         future compiler authors.
29297
29298 2003-04-21  Martin Baulig  <martin@ximian.com>
29299
29300         * icall.c
29301         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
29302         Make this work with relative pathnames; g_filename_to_uri() needs
29303         an absolute filename.
29304
29305 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
29306
29307         * icall.c: Track name changes in Object and ValueType.
29308
29309 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
29310
29311         * metadata.c (mono_type_stack_size): size should be a multiple of
29312         sizeof (gpointer)
29313
29314 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29315
29316         * gc.c:
29317         (internal_domain_finalize): moved into mono_domain_finalize. No need
29318         to create another thread because the finalizers will be run in the
29319         finalizer thread.
29320         
29321         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
29322         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
29323         to be run (MS does this too).
29324
29325 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
29326
29327         * object.c (mono_class_compute_gc_descriptor): Update comment.
29328
29329         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
29330
29331         * image.h: Add synchronized wrapper cache.
29332
29333         * image.c (do_mono_image_open): Initialize cache.
29334
29335         * reflection.c (create_dynamic_mono_image): Initialize cache.
29336
29337 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29338
29339         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
29340         ves_icall_System_Buffer_ByteLengthInternal.
29341
29342 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
29343
29344         * reflection.c: setup klass->nested_in earlier. Allow
29345         a dash in the assembly name.
29346
29347 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
29348
29349         * metadata.c (mono_type_to_unmanaged): dont access
29350         type->data.klass for MONO_TYPE_OBJECT
29351         (mono_type_to_unmanaged): consider System.Delegate class
29352
29353 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
29354
29355         * class.c: just setup supertypes in the proper place instead of
29356         initializing the full element class for arrays.
29357
29358 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
29359
29360         * class.c: ensure the element class of arrays is initialized.
29361         Setup the supertype info for array classes, too.
29362
29363 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
29364
29365         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
29366
29367 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29368
29369         * Makefile.am: re-added -m option when running cygpath. This way,
29370         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
29371         separator.
29372         * mono-config.c: same codepath for locating mono config file for WIN32
29373         and the rest.
29374         * assembly.c: if mono_assembly_setrootdir is called, don't override
29375         the value set.
29376
29377 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29378
29379         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
29380         MONO_ASSEMBLIES variable.
29381
29382 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
29383
29384         * icall.c: added Assembly::GetNamespaces() icall.
29385
29386 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29387
29388         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
29389
29390 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
29391
29392         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
29393         * object.c: fixed bug in the construction of vtable for proxies
29394
29395 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
29396
29397         * object.c (mono_array_new): Mark mono_array_new as an icall.
29398
29399 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29400
29401         * class.c: fixed test for public method when overriding interfaces.
29402         Closes bug #40970.
29403
29404 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
29405
29406         * appdomain.h, domain.c: added mono_domain_foreach() to
29407         be able to access the currently loaded appdomains.
29408         * object.c: make string interning work across sppdomains.
29409         Mark some functions for use as icalls.
29410
29411 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
29412
29413         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
29414
29415         * reflection.h reflection.c: Allocate long living data using 
29416         GC_MALLOC_ATOMIC so the collector does not need to scan it.
29417
29418         * reflection.c: Double the allocation size in streams instead of
29419         increasing it, to prevent unneccesary copying on large assemblies.
29420         
29421         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
29422         creation if the assembly does not have the Run flag set.
29423
29424 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
29425
29426         * class.h: avoid the C++ keywords in header files (Jerome Laban
29427         spotted and fixed this).
29428
29429 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29430
29431         * object.c:
29432         (mono_unhandled_exception): fill in the arguments for the
29433         UnhandledException event. Only trigger that event for the default
29434         domain (as MS does).
29435
29436 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
29437
29438         * object.c: Improve typed allocation stuff based on suggestions from
29439         Paolo. Also turn it on if the GC library supports it.
29440
29441 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
29442
29443         * object.c object.h class.h: Added experimental typed allocation
29444         facility using the interfaces in gc_gcj.h.
29445
29446         * os/gc_wrapper.h: Added new include files.
29447         
29448 2003-04-03  Martin Baulig  <martin@ximian.com>
29449
29450         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
29451         which is not yet enabled by default.
29452
29453         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
29454         functions.
29455         (mono_gc_lock, mono_gc_unlock): New static functions.
29456
29457         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
29458         functions; stop/start the world for the garbage collector.  This
29459         is using the windows API; we need to complete the SuspendThread()/
29460         ResumeThread() implementation in the io-layer to make this work on Unix.
29461         (mono_gc_push_all_stacks): New public function; tells the garbage
29462         collector about the stack pointers from all managed threads.
29463
29464 2003-04-03  Martin Baulig  <martin@ximian.com>
29465
29466         * object.h (MonoThread): Added `gpointer stack_ptr'.
29467
29468         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
29469
29470 2003-04-03  Martin Baulig  <martin@ximian.com>
29471
29472         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
29473
29474 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
29475
29476         * reflection.c (typebuilder_setup_fields): Initialize field.first and
29477         field.last.
29478
29479 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
29480
29481         * loader.c (mono_lookup_internal_call): Report the corlib that is
29482         out of sync.
29483
29484 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
29485
29486         * icall.c (ves_icall_type_GetTypeCode): fixed check for
29487         System.DBNull (it's class not valuetype).
29488
29489 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
29490
29491         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
29492         if the array method was already assigned a token (fixes bug#40646).
29493
29494 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
29495
29496         * reflection.c (mono_reflection_get_type): Attempt type resolve even
29497         if no assembly is given.
29498
29499 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
29500
29501         * metadata.h: Added the new tables.
29502
29503         * row-indexes.h: Added definitions for new tables.
29504
29505         * metadata.c: Add schemas for new tables, and add support for
29506         computing the sizes of them.
29507
29508         * class.c: Update for handling the new type cases.
29509
29510 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
29511
29512         * metadata.h (MONO_TYPE_IS_VOID): new macro
29513
29514 2003-03-31  Martin Baulig  <martin@ximian.com>
29515
29516         * threads.h (MonoThreadCallbacks): Added `thread_created'.
29517
29518         * threads.c (mono_thread_new_init): Call `thread_created' in the
29519         mono_thread_callbacks.
29520
29521 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
29522
29523         * loader.h: added marshalbyrefobject_class to mono_defaults
29524         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
29525         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
29526           generation of output parameters.
29527           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
29528         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
29529           contextbound and the target object belongs to the context of the caller.
29530         * object.h: added context and unwrapped_server variables in MonoRealProxy.
29531         * object.c: Implemented support for interfaces and abstract classes
29532           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
29533           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
29534
29535 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
29536
29537         * class.h class.c (mono_class_is_subclass_of): New function.
29538         
29539         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
29540         routines for most common case (calls from ArrayList::ToArray).
29541
29542         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
29543         routine so programs which call Environment::Exit() can be profiled.
29544
29545         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
29546         Added MONO_ARCH_SAVE_REGS.
29547
29548         * icall.c (ves_icall_type_is_subtype_of): Use new function.
29549
29550 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
29551
29552         * blob.h: Add a couple of new MonoType types definitions.
29553
29554         * tabledefs.h: Add a couple of new call convs.
29555
29556 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
29557
29558         * reflection.h (MonoReflectionDynamicAssembly): track changes in
29559         the layout of the class.
29560
29561         * reflection.c (alloc_table): double the size on overflow to avoid
29562         unnecessary copying.
29563
29564         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
29565         avoid filling out metadata tables and blobs. Also set mb->ilgen to
29566         null so it can be garbage collected.
29567         
29568 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
29569
29570         * reflection.c (mono_reflection_get_type): Return the resolved type
29571         only if it is in the assembly we searched.
29572
29573         * reflection.c (ensure_runtime_vtable): Initialize method slots.
29574
29575         * class.c (mono_class_setup_vtable): Set the slot of the overriding
29576         method.
29577
29578 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29579
29580         * appdomain.c:
29581         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
29582         the right one is 'file:///blah', but MS allows it.
29583         * assembly.c:
29584         (mono_assembly_open): allow 'file://blah'
29585
29586         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
29587
29588 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
29589
29590         * socket-io.c: fixes bug #40310.
29591
29592 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
29593
29594         * reflection.c (mono_reflection_parse_type): handle deeply nested
29595         types correctly.
29596
29597         * reflection.c (mono_image_create_token): Use unique token values
29598         since they will be put into a hash table.
29599
29600         * class.c (mono_class_setup_vtable): If a method occurs in more than
29601         one place in the vtable, and it gets overriden, then change the
29602         other occurances too.
29603
29604         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
29605         object as return type.
29606
29607 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
29608
29609         * icall.c: Deleted "ToString" implementation for double and float
29610         because they are full implemented in managed code.
29611
29612 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
29613
29614         * reflection.c, reflection.h: implemented and exported functions
29615         to retrieve info about custom attributes.
29616
29617 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29618
29619         * appdomain.c: moved Uri handling to assembly.c
29620         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
29621         work when using a file Uri in *nix and windows.
29622
29623         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
29624         GetReferencedAssemblies.
29625
29626 2003-03-18  Dick Porter  <dick@ximian.com>
29627
29628         * icall.c: Rename a couple of internal calls
29629
29630         * threads.c: Set the thread state to Stopped when a thread exits.
29631         Fixes bug 39377.
29632
29633 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
29634
29635         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
29636         New icall.
29637
29638         * object.c (mono_class_vtable): fix warning.
29639
29640 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
29641
29642         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
29643
29644         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
29645         memory.
29646         (method_encode_clauses): Create exception info structures in the right
29647         order.
29648         (mono_reflection_setup_internal_class): Initialize supertypes field.
29649
29650         * class.c object.c: Handle interfaces which implement other interfaces 
29651         correctly.
29652
29653         * class.h class.c: Move the supertypes array initialization code into 
29654         a separate function so it can be used for dynamic types too. Also call
29655         it earlier, in mono_class_init(), since it can be used before the
29656         type is initialized.
29657
29658 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29659
29660         * Makefile.am:
29661         * assembly.c:
29662         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
29663
29664         * appdomain.c:
29665         * appdomain.h:
29666         * marshal.c:
29667         * object.c: remove warnings.
29668
29669 2003-03-13  Martin Baulig  <martin@ximian.com>
29670
29671         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
29672         (MonoDebugLexicalBlockEntry): New types.
29673
29674         * debug-mono-symfile.c
29675         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
29676
29677 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29678
29679         * process.c: ret can be any non-zero value accroding to MS doc.
29680
29681 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
29682
29683         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
29684         fixing a warning for a miss-used prototype, would have cause
29685         random memory corruption.
29686
29687 2003-03-07  Martin Baulig  <martin@ximian.com>
29688
29689         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
29690         getting really annoying ....
29691
29692 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
29693
29694         * reflection.c (fixup_method): added support for array methods.
29695
29696 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
29697
29698         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
29699         (pointed out by Michael Adams).
29700
29701 2003-03-04  Dick Porter  <dick@ximian.com>
29702
29703         * icall.c: Temporarily reverted the Double and Single ToString()
29704         change, because it broke nunit.
29705
29706 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
29707
29708         * object.h, threads.h: make include files compatible with C++
29709         (patch by Jerome Laban <jlaban@wanadoo.fr>).
29710
29711 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
29712
29713         * icall.c: Erased ToString helper functions for Double and Single.
29714         Now, that implementations ar all in managed code (Double and Single
29715         Formatters).
29716
29717 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
29718
29719         * appdomain.c: Added method for initializing the default context of
29720         a domain. Added internal call for getting the default context.
29721         * appdomain.h: Added context variable in MonoDomain struct.
29722         * domain.c: mono_domain_set also sets the default context of the domain
29723         * icall.c: Mapped internal method InternalGetDefaultContext.
29724         * object.c: mono_object_get_virtual_method returns always a remoting
29725         wrapper if the object is a transparent proxy.
29726         mono_runtime_invoke_array: when creating an object by calling the
29727         constructor, if the created object is a proxy, then the constructor should
29728         be called using the a remoting wrapper.
29729
29730 2003-03-03  Dick Porter  <dick@ximian.com>
29731
29732         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
29733         variable so it compiles on solaris.  Problem spotted by
29734         Christopher Taylor <ct@cs.clemson.edu>
29735
29736 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29737
29738         * appdomain.c:
29739         (get_info_from_assembly_name): don't leak value.
29740
29741         * icall.c:
29742         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
29743         result.
29744
29745 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
29746
29747         * assembly.c: export mono_image_load_references ().
29748         * class.c: handle function pointers. mono_class_from_name() now
29749         supports nested type names directly.
29750
29751 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
29752
29753         * reflection.h reflection.c: Encode already created dynamic methods 
29754         and fields correctly as a DEF instead of a REF.
29755
29756         * reflection.c: Get rid of the force_ref argument to 
29757         mono_image_typedef_or_ref since it was wrong in the first place.
29758
29759         * string-icalls.c: add error checking to string constructors according
29760         to the MSDN docs.
29761
29762         * reflection.c: Emit types in the order their TypeBuilders were 
29763         created. Previously, a new table index was assigned to each type before
29764         the tables were emitted. This was wrong because the signature blob
29765         might already refer to a type by its original table index.
29766
29767 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
29768
29769         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
29770         change.
29771         
29772 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29773
29774         * Makefile.am: make assemblies dir have \ instead of / on windows.
29775
29776 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
29777
29778         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
29779         iterate over the NESTEDCLASS table using a linear search since the
29780         table is not guaranteed to be sorted by the secondary key.
29781
29782         * class.c (mono_class_create_from_typedef): fixed up call to
29783         mono_metadata_nesting_typedef.
29784         
29785 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
29786
29787         * marshal.c (mono_string_to_byvalstr): clear the memory as
29788         suggested by Jerome Laban <jlaban@wanadoo.fr>
29789
29790 2003-02-26  Dick Porter  <dick@ximian.com>
29791
29792         * process.c: Cope with padding in .rsrc blocks
29793
29794 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
29795
29796         * metadata.h: reverted the filter_len change, it breaks reflection
29797         
29798 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
29799
29800         * metadata.h: added a new field to store the filter_len
29801         
29802
29803 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
29804
29805         * reflection.c: handle custom attributes for types and members
29806         created with Reflection.Emit (bug#38422).
29807
29808 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
29809
29810         * reflection.c: define RTSpecialName automatically for constructors for
29811         compatibility with MS.NET.
29812
29813         * reflection.c (mono_reflection_create_runtime_class): initialize
29814         nested_in field of dynamically created classes.
29815
29816 2003-02-22  Martin Baulig  <martin@ximian.com>
29817
29818         * debug-mono-symfile.h: Incremented version number.
29819
29820 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
29821
29822         * object.h icall.c process.c: fix warnings.
29823
29824 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
29825
29826         * appdomain.h appdomain.c:
29827         (mono_domain_try_type_resolve): split the 
29828         name_or_tb argument into a name and a tb argument.
29829         (mono_domain_has_type_resolve): new function to check whenever the
29830         application has registered a TypeResolve event handler.
29831         
29832         * icall.c reflection.h reflection.c: move the type resolve logic into
29833         mono_reflection_get_type () so it will be invoked when 
29834         Assembly::GetType () is called.
29835
29836         * reflection.c:
29837         (mono_reflection_get_type): renamed to get_type_internal.
29838         (mono_reflection_get_type): fixed type name generation so it works 
29839         for nested types too.
29840         (mono_reflection_get_type): call has_type_resolve () to avoid the 
29841         costly type name generation if there is no resolve event handler.
29842
29843 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
29844
29845         * class.c, image.c: load exported types from file references.
29846
29847 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
29848
29849         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
29850           used to cache the managed methods used to create proxies and make 
29851           remote invocation of methods.
29852         * class.h: Added in MonoVTable a flag to indicate that a class needs 
29853           to be remotely created.
29854         * object.c: Modified the method mono_class_vtable(). It now initializes 
29855           the remote flag of the vtable. Modified mono_object_new_specific(), 
29856           so now it checks the remote flag.
29857         * icall.c: Added a couple of internal methods, one for enabling instance 
29858           creation interception for a type, and one for creating objects bypassing
29859           the remote check.
29860
29861 2003-02-18  Martin Baulig  <martin@ximian.com>
29862
29863         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
29864         New interncall to get a method's metadata token.
29865
29866         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
29867         New interncall for the debugger.
29868
29869 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
29870
29871         * class.c (mono_class_setup_vtable): allocate supertype array
29872
29873 2003-02-18  Martin Baulig  <martin@ximian.com>
29874
29875         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
29876
29877 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29878
29879         * reflection.c:
29880         (assembly_name_to_aname): jump over unknown properties (i've found
29881         something like: 'type, assembly, version=xxx, custom=null, public...',
29882         so now will ignore custom=null and still get the rest of the values).
29883
29884 2003-02-17  Dick Porter  <dick@ximian.com>
29885
29886         * threads.c: Have Thread.Start() wait for a semaphore to signal
29887         that the thread has set up all its local data.  This fixes bug
29888         34323, where Abort() raced the new thread's TLS data.
29889
29890         Also removes the handle_store() call from start_wrapper, because
29891         threads are now always created suspended and there is no longer a
29892         race between the parent and child threads to store the info.
29893
29894 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
29895
29896         * image.c: explain the #- heap issue in a message, hopefully
29897         avoiding FAQs on mono-list.
29898
29899 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29900
29901         * icall.c:
29902         (GetEntryAssembly): if the domain has not invoked
29903         AppDomain.ExecuteAssembly yet, return the assembly of the default
29904         AppDomain.
29905
29906 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
29907
29908         * class.c (mono_ldtoken): make it work in dynamic assemblies.
29909
29910 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
29911
29912         * metadata.c, reflection.c: simple speedup to type hash
29913         and equals code.
29914
29915 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
29916
29917         * image.c, image.h, class.c, assembly.c: move module loading
29918         to MonoImage. When loading metadata, consider alignemnet from
29919         the start of metadata, not from the metadata address in memory.
29920
29921 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
29922
29923         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
29924         AssemblyBuilder objects. Factored out custom attribute creation into
29925         a separate function.
29926         (create_custom_attr): new function to create custom attributes.
29927
29928 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
29929
29930         * Makefile.am: Got tired of typing the full pathname to pedump.
29931         Until there is another option, am installing this.
29932
29933 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
29934
29935         * class.c (class_compute_field_layout): always set field->parent 
29936         (mono_ldtoken): use mono_defaults.fieldhandle_class;
29937
29938 2003-02-11  Dick Porter  <dick@ximian.com>
29939
29940         * threads-types.h:
29941         * monitor.c: Rewrote Monitor, making lock much faster and
29942         Pulse/Wait work as specified.  Also uses much fewer handles, and only
29943         creates them as needed.
29944
29945         * exception.c: Added SynchronizationLockException
29946
29947         * threads.c: Deleted old Monitor implementation.  The new one is
29948         in a new file.
29949
29950 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
29951
29952         * class.c: handled TypedReference type code. Set the correct size for
29953         class data. Setup interface_offsets for interface classes, too.
29954
29955 2003-02-09  Martin Baulig  <martin@ximian.com>
29956
29957         * debug-mono-symfile.h: Reflect latest symbol writer changes.
29958
29959 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
29960
29961         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
29962         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
29963         * object.c: fixed mono_object_get_virtual_method () for interfaces.
29964         * verify.c: check for code that runs after the end of the method.
29965
29966 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
29967
29968         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
29969         "System.Math::Round2".
29970         * sysmath.h: Added Floor, Round and Round2 definitions.
29971         * sysmath.c: Modified certain functions that were not 100% compliant
29972         with MS.NET (math precision) and added the implementation of Floor,
29973         Round and Round2.
29974
29975 2003-02-07  Martin Baulig  <martin@ximian.com>
29976
29977         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
29978
29979 2003-02-07  Martin Baulig  <martin@ximian.com>
29980
29981         * debug-mono-symfile.c: Reflected latest symwriter changes.
29982         (mono_debug_create_mono_symbol_file): Removed.
29983         (mono_debug_open_mono_symbol_file): Take an argument which
29984         specifies whether to create a dynamic symbol file.
29985
29986 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
29987
29988         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
29989
29990 2003-02-05  Martin Baulig  <martin@ximian.com>
29991
29992         * reflection.c (mono_image_build_metadata): Make this public,
29993         protect it against being called multiple times, don't create
29994         resources and don't build the compressed metadata here.
29995         (mono_image_create_pefile): Do this here.
29996
29997         * icall.c
29998         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
29999
30000 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30001
30002         * socket-io.c: fixed bug #36322.
30003
30004 2003-02-06  Piers Haken <piersh@friskit.com>
30005
30006         * appdomain.[ch]:
30007         * class.h:
30008         * debug-mono-symfile.c:
30009         * icall.c:
30010         * loader.c:
30011         * mono-config.c:
30012         * monosn.c:
30013         * reflection.c:
30014         * socket-io.c: warning cleanups
30015
30016 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
30017
30018         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
30019         function. works like remoting invoke, but does a check for the Proxy first.
30020
30021 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
30022
30023         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
30024
30025 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
30026
30027         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
30028         array of pointers.
30029         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
30030         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
30031
30032         * object.c (mono_store_remote_field_new): used by the new jit
30033         instead of mono_store_remote_field
30034         (mono_load_remote_field_new): used by the new jit
30035         instead of mono_load_remote_field
30036
30037 2003-02-05  Patrik Torstensson
30038
30039         * appdomain.c: changed unload to take the domain id instead
30040         of domain
30041         
30042         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
30043
30044
30045 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30046
30047         * appdomain.c: don't look for assemblies in ApplicationBase if
30048         PrivateBinPathProbe is set.
30049
30050 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30051
30052         * object.c: make the first argument in main_args contain the absolute
30053         path to the assembly. Fixes bug #37511.
30054
30055 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30056
30057         * icall.c: get correct UTC offset for countries not using daylight
30058         time saving. Fixes bug #30030.
30059
30060 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30061
30062         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
30063         and 1 are the family).
30064
30065 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
30066
30067         * icall.c (ves_icall_InternalExecute): removed wrong assertion
30068
30069         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
30070
30071 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
30072
30073         * reflection.c: added support for SignatureHelper tokens, which is
30074         needed by the Calli opcode.
30075
30076         * reflection.h: track changes to SignatureHelper class.
30077
30078         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
30079
30080 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30081
30082         * appdomain.c: fixed loading assemblies from PrivateBinPath.
30083
30084 2003-02-03  Patrik Torstensson
30085         * appdomain.[c|h], domain.c : 
30086          - Added support for getting a domain via domain id
30087          - Support for setting and getting domain from System.AppDomain 
30088            (used in cross appdomain channel)
30089          - Added support for get/set for a MonoAppContext on a thread 
30090            (Context class in System.Runtime.Remoting.Contexts),
30091          - Removed hack in Get/SetData and ExecuteAssembly.
30092         
30093         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
30094         the managed world to get control when a proxy is created.
30095
30096         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
30097         
30098 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
30099
30100         * icall.c
30101         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
30102         Populate the codebase field as well.
30103
30104 2003-02-02  Martin Baulig  <martin@ximian.com>
30105
30106         * debug-mono-symfile.c
30107         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
30108         (mono_debug_symfile_add_method): Allow interncalls.
30109
30110 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30111
30112         * icall.c: throw parse exception if strtod fails or the string is empty.
30113
30114 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
30115
30116         * marshal.c: handle object type separately from defined
30117         class types.
30118
30119 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
30120
30121         * marshal.c: handle NATIVE_LPSTR for strings when it's
30122         explicitly specified.
30123
30124 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
30125
30126         * reflection.c, reflection.h, icall.c: setup the reflection
30127         handle cache for ModuleBuilders and AssemblyBuilders.
30128
30129 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
30130
30131         * reflection.c (reflection_methodbuilder_to_mono_method): set
30132         pinvoke flag
30133
30134 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30135
30136         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
30137
30138 2003-01-29  Dick Porter  <dick@ximian.com>
30139
30140         * threads.c: No need for the fake_thread kludge now that Thread
30141         doesn't run a class constructor
30142         
30143 2003-01-29  Dick Porter  <dick@ximian.com>
30144
30145         * threads.c: Use g_direct_hash instead of the rather bogus
30146         g_int_hash
30147
30148 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
30149
30150         * marshal.c (mono_marshal_get_native_wrapper): add check for null
30151         (fix pinvoke12.exe)
30152         (mono_marshal_get_struct_to_ptr): generate valid IL code
30153         (mono_marshal_get_ptr_to_struct): generate valid IL code
30154         (*): correctly set sig->pinvoke, we need to memdup the signature
30155         to do that
30156
30157 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
30158
30159         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
30160         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
30161
30162 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30163
30164         * profiler.c: provide more callers information.
30165
30166 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
30167
30168         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
30169
30170         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
30171
30172         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
30173
30174 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30175
30176         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
30177         exception instead of going into an infinite loop on dates which it 
30178         can't yet handle.
30179
30180         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
30181         out-of-range exception if needed.
30182
30183         * class.c (mono_class_setup_vtable): allow a virtual method to provide
30184         an implementation for an interface method and to override an inherited
30185         method at the same time. 
30186         Imagine a scenario when a virtual method is used to override a
30187         virtual abstract method in a parent class, and this same method 
30188         provides an implementation for an method inherited from an interface. 
30189         In this case, the interface resolution code will set im->slot, which 
30190         means that the virtual method override pass will skip this method 
30191         which means a pointer to the abstract method inherited from the parent
30192         will remain in the vtable of this non-abstract class.
30193
30194         * class.c: (mono_class_setup_vtable): continue search for a real 
30195         method if only an abstract method is found.     
30196
30197 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
30198
30199         * reflection.c: add size to encoding for ByValStr and ByValArray
30200         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
30201
30202 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30203
30204         * class.c (mono_class_setup_vtable): pass the override info as an
30205         argument.
30206
30207         * class.c (mono_class_setup_vtable): set the slot of overriding methods
30208         correctly.
30209         
30210         * reflection.c (ensure_runtime_vtable); add support for method 
30211         overrides.
30212         
30213 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30214
30215         * reflection.c (resolution_scope_from_image): Hack to work to work with
30216         dynamic assemblies.
30217
30218         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
30219         added a 'force_ref' argument to force this function to allways return 
30220         a TypeRef. This is needed by mono_image_get_memberref_token ().
30221         
30222 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30223
30224         * reflection.c (mono_image_get_type_info): interfaces really don't have
30225         a parent.
30226
30227         * reflection.c (mono_image_basic_init): fill out missing fields of
30228         image structure.
30229
30230         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
30231         dynamic assemblies. This is required so dynamic assemblies show up in
30232         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
30233         Type::GetType() etc. This is consistent with MS behaviour.
30234
30235         * image.c image.h reflection.c: add newly created classes to the name 
30236         cache so mono_class_get () will find them.      
30237
30238 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
30239
30240         First part of changes to get IKVM.NET running under mono.
30241         
30242         * appdomain.h, appdomain.c: added new function 
30243         mono_domain_try_type_resolve() which will emit TypeResolve events. 
30244         This function will call AppDomain::DoTypeResolve to do the actual work.
30245
30246         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
30247         moved existing code dealing with dynamic tokens to a new function 
30248         called mono_reflection_lookup_dynamic_token (). This function will 
30249         raise TypeResolve events when appropriate. Since reflection.c is not 
30250         part of libmetadata, a new hook function called 
30251         mono_lookup_dynamic_token() is added to class.c which will call this.
30252
30253         * assembly.h assembly.c: make the invoke_load_hook function public,
30254         so it can be called for dynamic assemblies.
30255
30256         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
30257
30258         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
30259         type isn't found.
30260
30261         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
30262         MonoGHashTable, since it contains pointers to objects which the GC 
30263         needs to track.
30264
30265         * assembly.c (search_loaded): remove unused variable.
30266         
30267 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
30268
30269         * object.c: fixed issue exposed by gcc-generated IL programs
30270         that use RVA data for pointers.
30271
30272 2003-01-25  Martin Baulig  <martin@ximian.com>
30273
30274         * threads.c (start_wrapper): Moved the initialization of
30275         `start_func' above the mono_new_thread_init() call to which we
30276         pass it as argument.
30277
30278 2003-01-24  Martin Baulig  <martin@ximian.com>
30279
30280         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
30281         the MonoThread pointer.
30282
30283 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
30284
30285         * icall.c: Rename `PowImpl' to Pow.
30286
30287 2003-01-23  Dick Porter  <dick@ximian.com>
30288
30289         * threads.c (start_wrapper): Create a Thread object if needed, so
30290         the Main() thread can do the class initialisation in a subthread
30291         that has been set up to allow managed code execution.
30292
30293         Pass the thread ID instead of the MonoThread pointer to the thread
30294         start and attach callbacks.  This change is required, because the
30295         jit thread start callback must be called _before_ the Thread
30296         object can be created.
30297         
30298         (mono_thread_init): Removed much object creation code that is no
30299         longer needed.  No managed code is called from here now.
30300
30301         * object.c (mono_runtime_exec_managed_code): Create a subthread
30302         for Main, and call back to the runtime to use it.
30303         Set the exit code when Main exits.
30304
30305         * gc.c: Make sure domain finalisation happens in a subthread.
30306         Re-enable threaded GC, fixing bug 31333 (again).
30307
30308         * environment.c: System.Environment internall calls (so far just
30309         ExitCode is here, the others are still in icall.c)
30310
30311         * appdomain.c (mono_runtime_cleanup): All threads running managed
30312         code should have finished before mono_runtime_cleanup() is
30313         reached, so no need to clean up threads.
30314
30315 2003-01-22  Martin Baulig  <martin@ximian.com>
30316
30317         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
30318         `gpointer func' arguments.      
30319         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
30320         but added `MonoThread *thread' argument.
30321         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
30322
30323         * threads.c (mono_new_thread_init): Added `gpointer func' argument
30324         and pass it to the mono_thread_start_cb callback.
30325         (mono_install_thread_callbacks): New public function to install a
30326         set of callbacks which are set by the debugger.
30327         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
30328
30329 2003-01-22  Martin Baulig  <martin@ximian.com>
30330
30331         * Makefile.am: Install debug-mono-symfile.h.
30332
30333 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
30334
30335         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
30336
30337 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
30338
30339         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
30340         * class.c (mono_ptr_class_get): correctly set access levels of pointers
30341         (mono_array_class_get): correctly set access levels of arrays
30342
30343 2003-01-20      Patrik Torstensson
30344         * image.h (MonoAssemblyName): changed major, minor, build, revision
30345         from signed to unsigned.
30346
30347 2003-01-20  sean kasun <skasun@azstarnet.com>
30348
30349         * reflection.c (load_cattr_value): Now this handles
30350         MONO_TYPE_SZARRAY.  Fixes bug #35629
30351
30352 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
30353
30354         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
30355         integer value
30356
30357 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30358
30359         * decimal.c: fixed bug #26056.
30360
30361 2003-01-17  Martin Baulig  <martin@ximian.com>
30362
30363         * gc.c: Raise an ExecutionEngineException instead of using g_error().
30364
30365 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30366
30367         * exception.[ch]:
30368         (mono_get_exception_type_initialization): new function.
30369
30370         * object.c: throw a TypeInitializationException when an exception is
30371         thrown invoking the class constructor.
30372
30373 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30374
30375         * reflection.c: fixed attribute reading.
30376
30377 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30378
30379         * icall.c:
30380         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
30381         provided, look for the type in the calling assembly and then in
30382         mscorlib; if the assembly name is provided, only try that one.
30383
30384 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
30385
30386         * object.c: register the vtable before there is a chance it's
30387         queried again recursively.
30388
30389 2003-01-13  Duncan Mak  <duncan@ximian.com>
30390
30391         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
30392         gc-internal.h. 
30393         
30394 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
30395
30396         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
30397
30398 2003-01-11  Martin Baulig  <martin@ximian.com>
30399
30400         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
30401         this to 20 for the release.
30402
30403 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
30404
30405         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
30406
30407         * loader.c (mono_method_get_marshal_info): bug fix
30408
30409         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
30410         structures with explicit layout
30411
30412 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
30413
30414         * profiler.c: made the output more readable (and sorted). 
30415         Added caller information for the allocation profiler.
30416
30417 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
30418
30419         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
30420
30421 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30422
30423         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
30424         to get value types.
30425         
30426 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
30427
30428         * object.c, profiler.h, profiler.c, profiler-private.h:
30429         Added object allocation profiler.
30430
30431 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
30432
30433         * reflection.h, reflection.c: handle global methods.
30434         Compress blob entries.
30435
30436 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
30437
30438         * marshal.c: fix compilation.
30439
30440 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
30441
30442         * loader.c (mono_method_get_marshal_info): impl.
30443
30444         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
30445
30446 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30447
30448         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
30449         for reference types.
30450
30451 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
30452
30453         * loader.c: fixed off by one error in loaded parameter names.
30454
30455 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
30456
30457         * marshal.c (mono_marshal_get_icall_wrapper): like
30458         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
30459         instead of a MonoMethod.
30460
30461 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30462
30463         * decimal.c: fixed bug #36537.
30464
30465 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
30466
30467         * marshal.c: throw a missing method exception if a
30468         P/Invoke method is not found.
30469
30470 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
30471
30472         * icall.c: allow a null this for constructors.
30473
30474 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
30475
30476         * icall.c: raise the proper exceptions if the arguments to the
30477         internal Invoke are incorrect.
30478
30479 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
30480
30481         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
30482
30483 2003-01-03  Martin Baulig  <martin@ximian.com>
30484
30485         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
30486
30487 2002-12-31  Martin Baulig  <martin@ximian.com>
30488
30489         * debug-mono-symfile.c: Completely rewrote the type section.
30490         Instead of using individual malloc()ed fields, we use one big
30491         continuous memory area and offsets into this area.
30492         See the comments in the source code for details.
30493
30494 2002-12-30  Martin Baulig  <martin@ximian.com>
30495
30496         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
30497
30498 2002-12-30  Martin Baulig  <martin@ximian.com>
30499
30500         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
30501         line number table in this data blob instead of using an external
30502         pointer.
30503
30504 2002-12-28  Martin Baulig  <martin@ximian.com>
30505
30506         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
30507
30508 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
30509
30510         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
30511         as a boxed return type.
30512
30513 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
30514
30515         * appdomain.c
30516         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
30517         g_build_filename to properly get separators on the filename created.
30518
30519         * object.h: Small change, introduce MonoMarshalByRefObject to
30520         track the layout of that structure in the C# universe as we make
30521         changes there.
30522
30523 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
30524
30525         * object.c: removed assert to allow static fields on interfaces.
30526         * loader.c: a TypeSpec may be used for any type, not just arrays.
30527
30528 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
30529
30530         * class.c, class.h: added mono_class_array_element_size ().
30531         Ignore static methods in interfaces.
30532
30533 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30534
30535         * threads.c: fixed the build under cygwin.
30536
30537 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
30538
30539         * reflection.c: handle nullref constants. Allocate keys for
30540         reflection handles with the GC.
30541
30542 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
30543
30544         * threads.c, threads.h: added mono_thread_get_abort_signal()
30545         to get a suitable signal for thread abort.
30546
30547 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
30548
30549         * metadata.c: fix handling of ExportedType table.
30550
30551 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30552
30553         * icall.c: added WriteWindowsDebugString internal call.
30554
30555 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30556
30557         * reflection.h: added fields to match C# implementation.
30558
30559 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30560
30561         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
30562
30563 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
30564
30565         * gc.h, gc-internal.h: Rename header for GC internal calls to
30566         gc-internal.h from gc.h as to not clash with Boehm GC having its
30567         header installed as <gc.h> in outside include paths.
30568         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
30569         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
30570
30571 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30572
30573         * icall.c: assign minor, build and revision in FillName.
30574
30575 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
30576
30577         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
30578         Added support for running code generated by Reflection.Emit.
30579
30580 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30581
30582         * appdomain.c: check for NULL argument in LoadFrom.
30583
30584 2002-12-10  Dick Porter  <dick@ximian.com>
30585
30586         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
30587
30588 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30589
30590         * appdomain.c: fix buglet when building exe file name.  Handle full
30591         assembly name (needed after latest changes to AssemblyName).
30592         * image.c:
30593         (mono_image_close): free some hashtables.
30594
30595 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
30596
30597         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
30598         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
30599         on some systems (redhat 7.3) 
30600
30601 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
30602
30603         * threads.c: delete the critical section of a sync block,
30604         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
30605
30606 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
30607
30608         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
30609
30610 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30611
30612         * appdomain.[ch]: handle the assembly preload event to try loading the
30613         assemblies using the paths we have in the current domain.
30614
30615         * assembly.[ch]: created an assembly preload hook that is called to try
30616         loading the assembly by other means that the ones provided here.
30617
30618         * domain.c: initialize the domain search path.
30619
30620         From now on, assemblies (TODO: except corlib and System) are loaded
30621         according to these rules when using mono_assembly_load ():
30622
30623                 1. It tries to load the assembly from the ApplicationBase
30624                 of the current domain appending .dll and .exe (TODO: have to
30625                 try loading from name/name.dll and name/name.exe).
30626
30627                 2. It tries the search path specified in PrivateBinPath for the
30628                 current domain (if any).
30629
30630                 3. Previous behavior.
30631
30632 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
30633
30634         * icall.c: implemented GetInterfaceMap() related icall.
30635         * domain.c, loader.h: load MethodInfo in mono_defaults.
30636
30637 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
30638
30639         * gc.c: disable the finalizer thread for now, untill all the issues
30640         with it are resolved.
30641
30642 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
30643
30644         * string-icalls.c: handle embedded nulls in string ctor when the
30645         length is specified.
30646
30647 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
30648
30649         * class.c: look for explicit interface implementation in parent
30650         classes, too.
30651
30652 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
30653
30654         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
30655
30656 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
30657
30658         * gc.c: protect handles with a critical section.
30659
30660 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30661
30662         * icall.c:
30663         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
30664         parameters. If no assembly specified, try getting the type from all
30665         the assemblies in the current domain, else, load the assembly and get
30666         the type from it.
30667
30668 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30669
30670         * marshal.c: applied patch from Aleksey Demakov that fixes
30671         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
30672
30673 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30674
30675         * icall.c: fixed get_location.
30676
30677 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
30678
30679         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
30680         declarations to make it work with older gcc. 
30681
30682         * loader.c (mono_get_method): set signature->pinvoke for native calls
30683
30684 2002-11-20  Dick Porter  <dick@ximian.com>
30685
30686         * threads.c (mono_thread_init): Set the main thread's handle
30687
30688 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
30689
30690         * gc.c: allow compilation without GC support. Changed to match the
30691         mono coding style.
30692
30693 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
30694
30695         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
30696
30697 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
30698
30699         * reflection.c: set a public key token on the core assemblies.
30700
30701 2002-11-18  Dick Porter  <dick@ximian.com>
30702
30703         * threads.c: Split out some thread initialisation so that other
30704         files can set the start callback function.
30705
30706         * gc.c: Run finalisers in a separate thread, to avoid stack
30707         overflow.  Fixes bug 31333.
30708
30709         * appdomain.c: Set up GC finalisation thread.
30710
30711         * reflection.c: 
30712         * object.c: 
30713         * domain.c: Use gc.h macros for GC_malloc
30714         
30715 2002-11-15  Dick Porter  <dick@ximian.com>
30716
30717         * threadpool.c: 
30718         * threads.c:
30719         * appdomain.c: Removed mono_runtime_init_with_attach(),
30720         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
30721         merging the extra parameter with the existing function.  Removed
30722         unneeded code in mono_thread_attach().
30723
30724 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
30725
30726         * image.c (mono_image_loaded_by_guid): a method to get loaded
30727         images by guid. 
30728         (load_metadata_ptrs): we store the guid as string.
30729
30730 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
30731
30732         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
30733
30734         * metadata.c (mono_guid_to_string): imported method form Zoltan
30735         Varga (slightly modified)
30736
30737         * assembly.c (mono_assembly_open): load precompiled code
30738
30739         * loader.h (MonoMethod): we store the method token for use in the
30740         aot compiler. 
30741
30742 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30743
30744         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
30745         the hook function called when an assembly is loaded.
30746         
30747         * domain.c: Modified file.
30748         (mono_domain_assembly_load): removed hash table insertion of assemblies.
30749
30750         Fixes bug #33196.
30751
30752 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
30753
30754         * reflection.c: Map PEFileKind to the value expected by the WinNT
30755         image loader. 
30756
30757 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30758
30759         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
30760         Read until the buffer is filled completely.
30761
30762 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30763
30764         * icall.c: implemented MonoType.InternalGetEvent ().
30765
30766 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30767
30768         * appdomain.c: implemented InitAppDomainSetup. Delayed
30769         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
30770         the entry_assembly.
30771
30772         * assembly.c: base_dir is now an absolute path ending with
30773         G_DIR_SEPARATOR.
30774
30775         * icall.c: modified get_location according to the above changes.
30776
30777         * object.c: init AppDomain.SetupInformation for the default domain after
30778         we have the entry assembly.
30779
30780         * domain.c: when unloading a domain, setup = NULL.
30781
30782 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
30783
30784         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
30785
30786 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
30787
30788         * object.h, object.c: introduced mono_object_get_virtual_method ()
30789         to lookup the method invoked on an object when a callvirt is done on
30790         a method.
30791         * icall.c: make MethodInfo::Invoke() always do a virtual call.
30792
30793 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30794
30795         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
30796         current domain when loaded an assembly and failed to load it.
30797
30798         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
30799
30800 2002-10-31  Dick Porter  <dick@ximian.com>
30801
30802         * icall.c: 
30803         * file-io.h: 
30804         * file-io.c: Return the error status in a parameter, as the
30805         GetLastError() value has long since been blown away if we try and
30806         look it up in a subsequent internal call invocation.  Delete the
30807         GetLastError() internal call, because it's useless.
30808
30809 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
30810
30811         * class.[ch]: added cast_class to fix bug 29517
30812
30813 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
30814
30815         * marshal.c: create valid IL code in the filter clause:
30816         the new JIT is less forgiving:-)
30817
30818 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30819
30820         * icall.c: removed get_property internal call.
30821
30822 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
30823
30824         * appdomain.h domain.c: Added an ID to appdomains.
30825         
30826         * threads.c threads.h icall.c: Implement icall
30827         Thread:GetDomainID(), and remove unused icall 
30828         CurrentThreadDomain_internal.
30829
30830 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30831
30832         * icall.c: Don't recurse through the base types in GetConstructor.
30833         Fixes bug #32063. 
30834
30835 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
30836
30837         * mempool.h, mempool.c: added mono_mempool_empty() and
30838         mono_mempool_stats().
30839
30840 2002-10-23  Dick Porter  <dick@ximian.com>
30841
30842         * file-io.c: 
30843         * file-io.h: 
30844         * icall.c: Added MonoIO.GetFileType internal call
30845
30846 2002-10-17  Dick Porter  <dick@ximian.com>
30847
30848         * appdomain.c (mono_runtime_cleanup): Don't signal the async
30849         delegate semaphore before waiting for all threads to finish,
30850         because new threads can also call async delegates.  Fixes bug
30851         32004.
30852
30853         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
30854         of 3 seconds, in case another async job is queued.  (This part is
30855         needed because the bug fix reintroduced the 3s exit lag.)  This
30856         makes the mono_runtime_shutdown flag superfluous.
30857
30858 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
30859
30860         * reflection.c: include ehader size in method section headers.
30861         Really check for suplicated modules entries.
30862
30863 2002-10-17  Martin Baulig  <martin@gnome.org>
30864
30865         * debug-mono-symfile.c: Added back support for locals.
30866
30867 2002-10-14  Martin Baulig  <martin@gnome.org>
30868
30869         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
30870         MONO_TYPE_VOID.
30871
30872 2002-10-14  Martin Baulig  <martin@gnome.org>
30873
30874         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
30875         mono_class_get() instead of looking in the class cache. 
30876
30877 2002-10-13  Martin Baulig  <martin@gnome.org>
30878
30879         * debug-mono-symfile.c: Set version number to 28, include the
30880         signature in method names.
30881
30882 2002-10-13  Martin Baulig  <martin@gnome.org>
30883
30884         * debug-mono-symfile.h: Set version number to 27.
30885
30886 2002-10-11  Martin Baulig  <martin@gnome.org>
30887
30888         * gc.c: Don't register/unregister NULL pointers as disappearing links.
30889
30890 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
30891
30892         * metadata.c, metadata.h: added helper function to allocate signatures.
30893
30894 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30895
30896         * icall.c: added internal call to get the location of machine.config.
30897
30898 2002-10-08  Martin Baulig  <martin@gnome.org>
30899
30900         * debug-mono-symfile.c: Ignore classes with a pending init for the
30901         moment.
30902
30903 2002-10-03  Dick Porter  <dick@ximian.com>
30904
30905         * threads.c: Freebsd pthread_t is a pointer
30906
30907 2002-10-03  Dick Porter  <dick@ximian.com>
30908
30909         * socket-io.c: Implemented GetHostName_internal
30910
30911 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30912
30913         * mono-config.c:
30914         (mono_config_parse_file): don't leak the text.
30915
30916 2002-10-02  Martin Baulig  <martin@gnome.org>
30917
30918         * debug-mono-symfile.c: Added support for methods.
30919
30920 2002-10-01  Martin Baulig  <martin@gnome.org>
30921
30922         * debug-mono-symfile.c: Don't emit methods and line numbers for
30923         the dynamic symbol file, just write the type table.  We can easily
30924         have an external helper program which creates a symbol file for an
30925         IL file.        
30926
30927 2002-10-01  Dick Porter  <dick@ximian.com>
30928
30929         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
30930         Only add the handle to the cleanup array when we're about to
30931         launch the thread.  Bug 31425 deadlocked when the test was run on
30932         mono under w32.
30933
30934 2002-10-01  Martin Baulig  <martin@gnome.org>
30935
30936         * debug-mono-symfile.c: Added support for properties.
30937
30938 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
30939
30940         * reflection.c: unaligned store fix from Mark Crichton
30941         <crichton@gimp.org>.
30942
30943 2002-09-27  Martin Baulig  <martin@gnome.org>
30944
30945         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
30946         New interncall.
30947
30948 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
30949
30950         * assembly.h, assembly.c: use a sane API to hook into the assembly
30951         loading process instead of a useless special-purpouse hack
30952         (ngen needs a hook, too, for example).
30953
30954 2002-09-27  Dick Porter  <dick@ximian.com>
30955
30956         * threads.c (mono_thread_init): Call GetCurrentProcess() so
30957         io-layer can set up some process handle info.  Not needed on w32,
30958         but doesn't hurt either.
30959
30960         * process.c: Pass the program name in the second parameter to
30961         CreateProcess, so the path is searched.  Include the working
30962         directory. Implemented process name, process enumeration, and some
30963         process detail internal calls.
30964         
30965         * icall.c: Added internal calls for process lookup, and some
30966         process details
30967
30968 2002-09-26  Martin Baulig  <martin@gnome.org>
30969
30970         * assembly.c (mono_install_open_assembly_hook): New global
30971         function to install a function to be invoked each time a new
30972         assembly is loaded.
30973         (mono_assembly_open): Run this callback function if set.
30974
30975         * debug-mono-symfile.c: Put back line numbers for the dynamic
30976         symbol file and also record the .il file as source file.  This
30977         allows us to install the temporary symbol file as `file.dbg' just
30978         like a compiler-generated one.
30979
30980 2002-09-26  Nick Zigarovich <nick@chemlab.org>
30981
30982         * Corrected typo in gc.c (BOHEM vs BOEHM).
30983
30984 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30985
30986         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
30987         GetProperties. Also avoid calling g_slist_length in GetProperties and
30988         GetMethods.
30989
30990 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
30991
30992         * reflection.c: avoid unaligned stores (bug spotted by
30993         Mark Crichton  <crichton@gimp.org>).
30994
30995 2002-09-25  Martin Baulig  <martin@gnome.org>
30996
30997         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
30998         instead of guint64 for addresses and added prologue/epilogue info.
30999
31000 2002-09-25  Martin Baulig  <martin@gnome.org>
31001
31002         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
31003         store line number info.  For the dynamic symbol file, we only need
31004         to provide the JIT generated dynamic line number info for the dynamic
31005         symbol file.
31006
31007 2002-09-25  Martin Baulig  <martin@gnome.org>
31008
31009         * debug-mono-symfile.h: Incremented version number.
31010
31011 2002-09-24  Martin Baulig  <martin@gnome.org>
31012
31013         * class.c (mono_debugger_class_init_func): New global function
31014         pointer variable.
31015         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
31016         call it.
31017
31018         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
31019         function.  This is called via the mono_debugger_class_init_func
31020         hook to add all types to the dynamic type table.
31021         (ves_icall_MonoDebugger_GetType): New interncall to get a class
31022         from its metadata token.
31023
31024         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
31025         New interncall for the debugger.
31026
31027 2002-09-24  Nick Drochak <ndrochak@gol.com>
31028
31029         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
31030         before using it in case it is null.
31031         
31032 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31033
31034         * metadata.c: allow custom modifiers in local var signatures
31035         (bug spotted by Zoltan Varga).
31036
31037 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
31038
31039         * class.c: deal with the <Module> class that may have a NULL vtable.
31040         Eliminate warnings.
31041
31042 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31043
31044         * image.c, image.h: more strong name helpers.
31045         * monosn.c: more work: convert pem keys to cryptoapi format.
31046
31047 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
31048
31049         * string-icalls.c: speedup IndexOf.
31050
31051 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31052
31053         * icall.c: updates from Zoltan.2.Varga@nokia.com.
31054
31055 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31056
31057         * icall.c: cleanup: use mono_object_domain ().
31058
31059 2002-09-23  Martin Baulig  <martin@gnome.org>
31060
31061         * debug-mono-symfile.c: Improved type support.
31062
31063 2002-09-22  Martin Baulig  <martin@gnome.org>
31064
31065         * debug-mono-symfile.c: Added support for reference types and strings.
31066
31067 2002-09-22  Martin Baulig  <martin@gnome.org>
31068
31069         * debug-mono-symfile.c: Started to work on the type table.
31070
31071 2002-09-21  Martin Baulig  <martin@gnome.org>
31072
31073         * debug-mono-symfile.c: Largely reworked the symbol table format.
31074         The symbol table is now incrementally updated each time a new
31075         method is added.  We're now also using our own magic and version
31076         so that you don't need to recompile all your classes if the
31077         dynamic table changes.
31078         (mono_debug_update_mono_symbol_file): Removed.
31079         (mono_debug_symfile_add_method): New function to add a method.
31080
31081 2002-09-21  Martin Baulig  <martin@gnome.org>
31082
31083         * icall.c
31084         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
31085         New interncall.
31086
31087         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
31088         New interncall to get a method from its metadata token.
31089
31090 2002-09-21  Martin Baulig  <martin@gnome.org>
31091
31092         * debug-mono-symfile.c: Create type table.
31093
31094 2002-09-20  Martin Baulig  <martin@gnome.org>
31095
31096         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
31097
31098 2002-09-20  Martin Baulig  <martin@gnome.org>
31099
31100         * debug-mono-symfile.c: Provide information about params and locals.
31101
31102 2002-09-20  Martin Baulig  <martin@gnome.org>
31103
31104         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
31105         New interncall.
31106
31107         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
31108         interncall to get a method from its metadata token.
31109
31110 2002-09-20  Martin Baulig  <martin@gnome.org>
31111
31112         * debug-mono-symfile.c: Added a few checks for method->header
31113         being non-NULL.  This should never happen, but for the moment
31114         let's use a g_warning() rather than a g_assert().
31115
31116 2002-09-19  Mark Crichton  <crichton@gimp.org>
31117
31118         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
31119         even if support for it isn't present.  Added an #ifdef to fix this.
31120
31121         * socket-io.c: Added checks back for Solaris support.
31122
31123 2002-09-19  Martin Baulig  <martin@gnome.org>
31124
31125         * debug-mono-symfile.c (read_string, write_string): Reflect latest
31126         changes in the symbol file format.
31127
31128 2002-09-18  Martin Baulig  <martin@gnome.org>
31129
31130         * debug-mono-symfile.c: Set version number to 21.
31131
31132 2002-09-18  Dick Porter  <dick@ximian.com>
31133
31134         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
31135         on netbsd.  Fixes bug 30051.
31136
31137 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31138
31139         * reflection.c:
31140         (set_version_from_string): little fix.
31141
31142 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31143
31144         * monosn.c, Makefile.am: added strong name utility.
31145         * reflection.h, reflection.c: implemented delayed signing,
31146         locale, version and hash id assembly attributes.
31147
31148 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
31149
31150         * loader.c, metadata.c: load param attributes in signatures.
31151
31152 2002-09-16  Martin Baulig  <martin@gnome.org>
31153
31154         * debug-mono-symfile.c: Added string table with all method names.
31155
31156 2002-09-14  Martin Baulig  <martin@gnome.org>
31157
31158         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
31159         fast method lookup.
31160
31161 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31162
31163         * reflection.c: record the public key token of referenced assemblies.
31164
31165 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31166
31167         * image.c, image.h: added functions to get the strong name and the
31168         public key of an assembly.
31169         * pedump.c: use them.
31170
31171 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
31172
31173         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
31174
31175 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
31176
31177         * marshal.c (mono_marshal_get_managed_wrapper): Added
31178         MONO_TYPE_BOOLEAN 
31179
31180 2002-09-11  Martin Baulig  <martin@gnome.org>
31181
31182         * gc.c: Call GC_unregister_disappearing_link() on all links when
31183         finalizing them, this is necessary to aviod a crash in boehm's
31184         finalize handler.
31185
31186 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31187
31188         * gc.c: handle GetTarget for finalized objects spotted and fixed by
31189         nick@chemlab.org.
31190
31191 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
31192
31193         * icall.c: implemented MonoType::Module.
31194         * reflection.c, reflection.h: mono_module_get_object () from
31195         Tomi Pakarinen <tomi.pakarinen@welho.com>.
31196
31197 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
31198
31199         * icall.c: ignore overridden methods in GetMethods ().
31200         Fix for FieldInfo::SetValue().
31201         * object.c: handle float/double in runtime invoke.
31202
31203 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
31204
31205         * object.c: allow a constructor to be called again on an object.
31206
31207 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31208
31209         * class.h, class.c: move field layout code to it's own function and
31210         export it. Get an interface id earlier. Move fields in MonoClass
31211         so they are more cache friendly and align the bitfields.
31212         * loader.c: temporary handle get_param_names() for a runtime method.
31213         * reflection.c, reflection.h: more code to handle runtime creation of
31214         types.
31215
31216 2002-09-09  Martin Baulig  <martin@gnome.org>
31217
31218         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
31219         signature with the pinvoke field being set for the actual call.
31220
31221 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31222
31223         * icall.c: removed some unused icalls. Start of map of glib charsets
31224         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
31225
31226 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
31227
31228         * debug-helpers.c: break infinite loop (found and fixed by
31229         Holger Arnold <harnold@gmx.de>).
31230
31231 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
31232
31233         * icall.c: target may be null in create_delegate.
31234
31235 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
31236
31237         * marshal.c: handle a boolean return type.
31238
31239 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
31240
31241         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
31242
31243 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31244
31245         * gc.c: fix weakreferences.
31246
31247 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
31248
31249         * icall.c: added icall to get default codepage.
31250
31251 2002-09-03  Dick Porter  <dick@ximian.com>
31252
31253         * threads.h: 
31254         * threads.c: Use MonoThread instead of MonoObject where
31255         apropriate.
31256
31257         Store running thread objects in a hash table, so that we have all
31258         the info to hand when waiting for them to finish
31259         (means we don't need OpenThread() any more, so mingw builds should
31260         be fully functional again.)
31261
31262         * verify.c:
31263         * object.h: Added thread ID to MonoThread
31264
31265 2002-09-03  Martin Baulig  <martin@gnome.org>
31266
31267         * icall.c (System.Reflection.Assembly::get_location): New interncall.
31268
31269 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31270
31271         * icall.c: fixed leak in get_temp_path. Thanks lupus.
31272
31273 2002-09-03  Martin Baulig  <martin@gnome.org>
31274
31275         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
31276         argument to store the end address of the disassembled instruction.
31277
31278         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
31279         here from debug-symfile.h.
31280         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
31281         JIT into this struct.
31282         (MonoSymbolFile): Added `char *image_file' field.
31283         (MonoDebugGetMethodFunc): Removed.
31284         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
31285         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
31286         (mono_debug_find_method): New method.
31287
31288         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
31289         create a full symbol file.
31290         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
31291         and static symbol files.
31292         (mono_debug_find_method): The symbol file keeps an internal method hash,
31293         call this to get a MonoDebugMethodInfo from a MonoMethod.
31294
31295         * debug-symfile.[ch]: Removed.
31296
31297 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
31298
31299         * image.c (do_mono_image_open): Remove linker version check.
31300
31301 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
31302
31303         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
31304         wrappers for instance methods.
31305         
31306 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31307
31308         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
31309
31310 2002-08-28  Dick Porter  <dick@ximian.com>
31311
31312         * Makefile.am: Export HOST_CC for w32 builds
31313
31314 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
31315
31316         * file-io.c process.c: MonoString are null terminated, no
31317         need for mono_string_to_utf16() anymore.
31318
31319 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31320
31321         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
31322
31323 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
31324
31325         * icall.c, reflection.h: speedup System.MonoType.
31326
31327 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
31328
31329         * reflection.c: allow null as the value of a string argument in
31330         custom attributes constructors.
31331
31332 2002-08-27  Martin Baulig  <martin@gnome.org>
31333
31334         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
31335         `trampoline_address' field.
31336
31337 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
31338
31339         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
31340         check (fixes bug #29486) 
31341
31342 2002-08-27  Martin Baulig  <martin@gnome.org>
31343
31344         * debug-mono-symfile.c: Changed the file format in a way that allows us
31345         open it read-only and to use a specially malloced area for all the
31346         dynamic data.  We can now also generate a symbol file on-the-fly if we're
31347         debugging IL code and there is no MCS generated symbol file for it.
31348
31349 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
31350
31351         * object.c: added a define for a good string and array
31352         creation speedup (not enabled by default because we need to deal with
31353         the synch stuff).
31354
31355 2002-08-26  Martin Baulig  <martin@gnome.org>
31356
31357         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
31358         function to create a dynamic symbol file.  This is used by the
31359         debugger to create a symbol file for IL code on-the-fly.
31360
31361 2002-08-26  Martin Baulig  <martin@gnome.org>
31362
31363         * loader.c (mono_lookup_pinvoke_call): Include the error message
31364         from g_module_error() in the error message.
31365
31366 2002-08-24  Martin Baulig  <martin@gnome.org>
31367
31368         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
31369         function to update the symbol file.  The symbol file is mmap()ed
31370         writable, but private.  This allows us to install the symbol file
31371         together with the assembly.
31372
31373 2002-08-24  Martin Baulig  <martin@gnome.org>
31374
31375         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
31376         but they can read the new symbol file format which mcs is now creating.
31377
31378         * debug-symfile.c (mono_debug_find_source_location): Moved to
31379         debug-mono-symfile.c; this is now operating on the new symbol file.
31380
31381 2002-08-23  Martin Baulig  <martin@gnome.org>
31382
31383         * debug-helpers.c (mono_method_desc_from_method): New function to get
31384         a MonoMethodDesc from a MonoMethod.
31385
31386 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
31387
31388         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
31389         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
31390
31391 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
31392
31393         * string-icalls.[ch]: make helper methods static.
31394
31395 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31396
31397         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
31398         types to it and to SetValueInternal.
31399
31400         * object.c: Moved handle_enum label to its proper place. This was the
31401         f... bug! ;-)
31402
31403         This time i compiled mcs and gtk-sharp and they both work.
31404
31405 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31406
31407         * icall.c: reverted partially my previous patch until 
31408         object.c:set_value handles enums correcly.
31409
31410 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31411
31412         * icall.c:
31413         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
31414         (ves_icall_System_Environment_get_MachineName): removed warning when
31415         compiling under cygwin.
31416
31417 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
31418
31419         * object.c: fixed field_get_value() for reference types.
31420
31421 2002-08-22  Dick Porter  <dick@ximian.com>
31422
31423         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
31424         Don't free a buffer while it's still needed.  Patch from Jonathan
31425         Liger <Jonathan.liger@wanadoo.fr>
31426
31427 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
31428
31429         * icall.c (ves_icall_System_Environment_get_Platform): Add new
31430         internal call.
31431
31432 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
31433
31434         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
31435         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
31436
31437         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
31438         we call unmanaged code which throws exceptions.
31439
31440 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31441
31442         * appdomain.h: added per-domain entry_assembly.
31443         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
31444         arguments.
31445         * icall.c: Assembly::GetEntryAssembly icall.
31446         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
31447         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
31448
31449 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
31450
31451         * appdomain.h, gc.c: added mono_domain_finalize ().
31452
31453 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31454
31455         * object.c:
31456         (mono_print_unhandled_exception): changed g_warning by g_printerr
31457         because g_log has a 1024 characters limit (yeah, i got a big stack
31458         trace). Don't print exception name, that should be in ToString 
31459         returned string.
31460
31461 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31462
31463         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
31464         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
31465
31466 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31467
31468         * object.c:
31469         (mono_print_unhandled_exception): after previous commit, i realized
31470         that MS calls ToString on the exception. I changed this function to
31471         do that. This way we get stack_trace for free.
31472
31473 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31474
31475         * object.c:
31476         (mono_print_unhandled_exception): invoke Message property instead of
31477         getting 'message' field from Exception. Don't allocate memory for
31478         'trace' and 'message' if not needed.
31479
31480 2002-08-18  Dick Porter  <dick@ximian.com>
31481
31482         * unicode.c: Fix asserts to match Encoder.cs checks
31483
31484 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31485
31486         * marshal.c: fix unaligned store issue and a few wrong
31487         opcode argument types.
31488
31489 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31490
31491         * icall.c: added GetUninitializedObjectInternal internal call.
31492
31493 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
31494
31495         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
31496         to the right domain.
31497
31498 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
31499
31500         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
31501
31502         * class.c (class_compute_field_layout): set blittable to false for Strings
31503
31504         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
31505
31506 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31507
31508         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
31509         first chunk of code to create types at runtime. Code to
31510         handle ReflectedType/DeclaringType. Make reflection handles
31511         domain specific.
31512
31513 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
31514
31515         * class.c: set correct name in arrays.
31516
31517 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
31518
31519         * appdomain.c (mono_domain_transfer_object): make it work with
31520         valuetypes. bug fixes.
31521
31522 2002-08-12  Dick Porter  <dick@ximian.com>
31523
31524         * object.h: Rename some parameters to avoid c++ keywords (Patch
31525         from Joseph Wenninger <kde@jowenn.at>)
31526
31527 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
31528
31529         * icall.c: added icall to implement Assembly.GetFile*.
31530
31531 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31532
31533         * reflection.h, reflection.c: code to embed managed resources.
31534
31535 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
31536
31537         * class.c: move all the type size stuff into
31538         class_compute_field_layout().
31539
31540 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
31541
31542         * class.c: ensure enums have always the correct instance size.
31543         * unicode.c: remove wrong assert.
31544
31545 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
31546
31547         * assembly.c: fix mem corruption issue.
31548         * image.h, image.c: added mono_image_get_resource () to access
31549         managed resources.
31550         * icall.c: implemented Assembly.EntryPoint property and some
31551         Managed Resources related internalcalls.
31552
31553
31554 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
31555
31556         * image.c, image.h: impemented mono_image_get_entry_point ().
31557         * appdomain.c: use mono_image_get_entry_point.
31558
31559 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
31560
31561         * reflection.c: support the object type argument when loading
31562         custom attributes.
31563
31564 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
31565
31566         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
31567         String as return type.
31568
31569 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
31570
31571         * reflection.c: fix encoding of named args for custom attrs to match
31572         the ms implementation. Read them back when instantiating custom
31573         attributes.
31574
31575 2002-08-02  Radek Doulik  <rodo@ximian.com>
31576
31577         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
31578         by Dietmar as quick fix
31579         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
31580         16 as stack size, used on more places as quick fix before Dietmar
31581         will fix it properly
31582
31583 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
31584
31585         * object.h, object.c: added accessors for fields and properties.
31586
31587 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
31588
31589         * class.c, class.h: made mono_class_get_field_from_name ()
31590         loop on parent types.
31591         Added mono_class_get_property_from_name ().
31592
31593 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
31594
31595         * class.c, class.h: move the code to setup the type vtable in its own
31596         function so that it can be reused also for types created at runtime.
31597         Eliminate the "class" identifier from the header file.
31598         * reflection.c: setup the vtable for enums so that we can create
31599         objects for use in SetConstant ().
31600
31601 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
31602
31603         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
31604         instead of the delegate itself as this pointer (bug #28383)
31605
31606 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
31607
31608         * marshal.c (mono_marshal_get_managed_wrapper): added return type
31609         conversions.
31610
31611 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31612
31613         * loader.c: don't set the pinvoke bit on icalls.
31614
31615 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
31616
31617         * debug-helpers.c (mono_method_full_name): only print a number to
31618         indicate wrapper type (so that the output is more readable in traces).
31619
31620 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
31621
31622         * class.c (mono_class_init): include method override patch from Paolo
31623
31624 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
31625
31626         * icall.c: fixed GetTypeCode().
31627
31628 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
31629
31630         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
31631         use real delegate invoke function to make it work with multicast
31632         delegates (fix bug# 28291).
31633
31634 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
31635
31636         * object.c: load constant strings.
31637
31638 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
31639
31640         * reflection.c: no magic numbers.
31641         * tabledefs.h: security action enum.
31642
31643 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
31644
31645         * assembly.c: fix possible memory corruption.
31646
31647 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
31648
31649         * reflection.h, reflection.c: added support for linking resources.
31650         * verify.c: check we have an updated corlib.
31651
31652 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
31653
31654         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
31655         string arrays.
31656         (mono_marshal_string_array): null terminate unmanaged string arrays.
31657         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
31658
31659 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
31660
31661         * icall.c: Type.GetType () can now return also types from the
31662         calling assembly.
31663
31664 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
31665
31666         * loader.h, loader.c: stack walking support.
31667         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
31668         GetCallingAssembly.
31669
31670 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
31671
31672         * marshal.c: added optimisations for blittable types 
31673
31674         * class.c (mono_array_class_get): do not set blittable attribute on arrays
31675         (mono_class_setup_mono_type): set blittable attribute for single
31676         and double.
31677
31678         * marshal.c (mono_string_utf8_to_builder): impl.
31679         (mono_string_builder_to_utf8): impl.
31680         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
31681
31682 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
31683
31684         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
31685         (mono_marshal_get_managed_wrapper): impl. byref types
31686
31687 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31688
31689         * icall.c:
31690         (search_method): don't display debug message. 
31691
31692 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
31693
31694         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
31695
31696 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
31697
31698         * appdomain.c: set the missing filename when throwing exception.
31699
31700 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
31701
31702         * metadata.c (mono_type_size): code cleanup
31703         (mono_type_stack_size): removed some test code
31704
31705 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
31706
31707         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
31708         mono_get_exception_file_not_found now.
31709
31710         * exception.c (mono_exception_from_name_two_strings): New version
31711         that will call a constructor with two string arguments. 
31712         (mono_get_exception_file_not_found): New helper routine, used to
31713         report file-not-found errors.
31714
31715 2002-07-20  Dick Porter  <dick@ximian.com>
31716
31717         * process.h:
31718         * process.c: Pass file handles to CreateProcess
31719         
31720         * icall.c:
31721         * file-io.h:
31722         * file-io.c: Implemented CreatePipe
31723
31724 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
31725
31726         * metadata.c (mono_get_param_info): set alignment for value types
31727
31728 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
31729
31730         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
31731         Constify mono_domain_assembly_open().
31732         * loader.c: handle null namespace in icalls.
31733
31734 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
31735
31736         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
31737         (emit_str_to_ptr_conv): marshal object as structs
31738
31739         * metadata.c (mono_type_to_unmanaged): marshal object as structs
31740
31741         * marshal.c (mono_marshal_get_runtime_invoke): support value types
31742
31743 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
31744
31745         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
31746         (mono_marshal_get_native_wrapper): we an now return value types
31747
31748 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
31749
31750         * verify.c: more checks implemented.
31751
31752 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
31753
31754         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
31755         (fix bug #27695)
31756         (mono_marshal_get_native_wrapper): allow byref arguments
31757         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
31758         impl. PtrToStringXXX methods
31759         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
31760         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
31761         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
31762         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
31763         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
31764
31765 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31766
31767         * reflection.c: fix buglet in parsing an assembly name.
31768
31769 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
31770
31771         * marshal.c (emit_ptr_to_str_conv): first impl.
31772
31773 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
31774
31775         * object.c, class.h: cache the vtable in the class as suggested by
31776         vargaz@freemail.hu (Zoltan Varga).
31777
31778 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
31779
31780         * class.h, loader.c: added mono_field_from_token().
31781         * verify.c: first cut of type checking code.
31782
31783 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
31784
31785         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
31786
31787 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
31788
31789         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
31790         (fix bug #27782)
31791         (mono_marshal_get_remoting_invoke): impl.
31792         (mono_delegate_begin_invoke): impl.
31793         (mono_mb_emit_save_args): impl.
31794         (mono_delegate_end_invoke): impl.
31795         (mono_marshal_get_delegate_begin_invoke):
31796         (mono_marshal_get_delegate_end_invoke):
31797         (mono_marshal_get_delegate_invoke): generate a special name for
31798         those methods (including the signature) and associate them whith
31799         the delegate class. 
31800
31801 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
31802
31803         * reflection.[ch]: 
31804         (mono_reflection_type_from_name): now it has a MonoImage parameter
31805         which is used as the default image to search the type in. If the image
31806         is NULL or getting the type from it fails, it defaults to corlib.
31807
31808         * icall.c: changed 1 call to mono_reflection_type_from_name to match
31809         new parameter.
31810
31811 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
31812
31813         * reflection.c: update the parameter table index.
31814
31815 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
31816
31817         * domain.c: don't include the mark byte in the string hash.
31818
31819 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
31820
31821         * icall.cs: icall for Type.GetTypeCode ().
31822         * verify: a couple of fixes and disabled local initialization checks.
31823
31824 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
31825
31826         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
31827
31828         * debug-helpers.c (mono_method_full_name): print the type of the
31829         runtime wrapper
31830
31831         * metadata.c (mono_signature_hash): a hash function for signatures
31832         (mono_signature_hash): better hash algorithm
31833
31834         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
31835
31836         * debug-helpers.c (mono_method_full_name): this can now generate
31837         method names with signatures
31838
31839         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
31840         method dont have this pointers.
31841
31842 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
31843
31844         * reflection.c: fixup typebuilder tokens.
31845         * image.c: fix buglet.
31846         * marshal.h: remove whitespace.
31847         * metadata.h, metadata.c: reinstate code that was removed.
31848         * verify.c: handle catch directives and fix another couple of bugs.
31849
31850 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
31851
31852         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
31853         (mono_marshal_get_native_wrapper): make it comp. with the old code
31854         (mono_marshal_get_native_wrapper): support boolean
31855         (mono_marshal_get_managed_wrapper): support more types
31856
31857 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
31858
31859         * class.c (class_compute_field_layout): compute class->blittable attribute.
31860
31861 2002-07-09  Dick Porter  <dick@ximian.com>
31862
31863         * threads.c: Make the thread cleaning up cope with threads that
31864         call ExitThread()
31865
31866 2002-07-08  Radek Doulik  <rodo@ximian.com>
31867
31868         * reflection.c (method_encode_code): use non-translated values to
31869         compute finally_start, this fixes exception handling on ppc, yay!
31870
31871         * decimal.h (struct signscale): fix endianess
31872
31873 2002-07-07  Radek Doulik  <rodo@ximian.com>
31874
31875         * reflection.c: swap box_val and not val
31876
31877 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
31878
31879         * reflection.c, reflection.h: handle full assembly info in type name.
31880         Handle Type arguments when loading custom attributes.
31881         * icall.c: updated to use new mono_reflection_type_from_name () method.
31882
31883 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31884
31885         * loader.c:
31886         (method_from_memberref): also print assembly name when method not found.
31887
31888 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31889
31890         * icall.c:
31891         (ves_icall_TypeGetProperties): fixed bug #27473. 
31892
31893 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31894
31895         * reflection.c: display image name and token when cannot find the
31896         .ctor for an attribute.
31897
31898 2002-07-05  Martin Baulig  <martin@gnome.org>
31899
31900         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
31901
31902 2002-07-04  Dick Porter  <dick@ximian.com>
31903
31904         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
31905         compile on mingw.  This will cause mingw builds to not wait for
31906         subthreads to terminate after the main thread does.  I've lodged a
31907         bug with the mingw developers for them to wrap OpenThread().
31908
31909 2002-07-03  Dick Porter  <dick@ximian.com>
31910
31911         * threads.c: Store thread IDs instead of handles, because
31912         GetCurrentThread() returns a pseudohandle and therefore stores
31913         useless values.  mono_thread_cleanup() continues checking the
31914         array of threads until it is empty, to cope with subthreads
31915         spawning new threads after the main thread has finished.
31916
31917         * profiler.h:
31918         * profiler.c:
31919         * profiler-private.h: Pass the thread ID to thread profiler
31920         functions, instead of a handle
31921
31922 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
31923
31924         * verify.c: fixes to make it more usable.
31925         * pedump.c: added --verify code to verify IL code in an assembly.
31926
31927 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
31928
31929         * reflection.c: turn errors into warnings to allow compiling corlib.
31930
31931 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
31932
31933         * reflection.c: add special cases to compile corlib.
31934
31935 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
31936
31937         * reflection.c: handle properties with only a set method.
31938
31939 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
31940
31941         * opcodes.h: add enum with opcodes in opval order.
31942
31943 2002-07-01  Dick Porter  <dick@ximian.com>
31944         
31945         * object.h:
31946         * object.c (mono_runtime_run_main): Removed unneeded argument
31947
31948 2002-06-28  Martin Baulig  <martin@gnome.org>
31949
31950         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
31951
31952 2002-06-27  Dick Porter  <dick@ximian.com>
31953
31954         * threads.c: Store the handle in both the parent thread and in the
31955         subthread, to minimise the time between starting a new thread and
31956         storing its ID.
31957
31958 2002-06-26  Dick Porter  <dick@ximian.com>
31959
31960         * appdomain.c (mono_runtime_cleanup): Close the socket library
31961         after all the threads have finished, not before
31962
31963 2002-06-26  Martin Baulig  <martin@gnome.org>
31964
31965         * debug-symfile.c (mono_debug_find_source_location): Added
31966         `guint32 *line_number' argument.  If it's not NULL, store the line number
31967         there and return the file name without the line number.
31968
31969 2002-06-25  Dick Porter  <dick@ximian.com>
31970
31971         * icall.c:
31972         * process.h:
31973         * process.c: Process forking and other support functions
31974
31975 2002-06-25  Dick Porter  <dick@ximian.com>
31976
31977         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
31978         things dont happen when the image is closed.
31979         (mono_image_lookup_resource): Walk the resource section looking
31980         for a particular entry
31981
31982         * cil-coff.h: PE resource section decoding
31983
31984 2002-06-25  Dick Porter  <dick@ximian.com>
31985         
31986         * assembly.h:
31987         * assembly.c: 
31988         (mono_assembly_foreach): Accessor functions to walk the list of
31989         loaded assemblies
31990         (mono_assembly_set_main):
31991         (mono_assembly_get_main): Process methods need to know which
31992         assembly is the "main" one
31993
31994         * object.c (mono_runtime_run_main): Record the main assembly
31995
31996         * debug-helpers.c: Fix typo
31997
31998 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
31999
32000         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
32001         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
32002
32003 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32004
32005         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
32006
32007 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
32008
32009         * image.c (do_mono_image_open): Initialize reference count,
32010         otherwise we leak the MonoImage.
32011
32012 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32013
32014         * reflection.c: small tweak to handle self-hosting.
32015
32016 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32017
32018         * reflection.c: fix type name parse code.
32019
32020 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32021
32022         * reflection.c: break out of the loop.
32023         * image.c: special case corlib.
32024
32025 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32026
32027         * reflection.c: add all the custom attrs at the end to ensure the
32028         ctors have been properly initialized when the attributes are defined
32029         in the current assembly.
32030
32031 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32032
32033         * reflection.c: handle correctly multiple-nested types.
32034
32035 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
32036
32037         * row-indexes.h: fix typos.
32038         * reflection.c: adjust for typos and fix method_def_or_ref
32039         encoding in MethodImpl table.
32040
32041 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32042
32043         * reflection.c: fix entry point patching (thanks Serge!).
32044
32045 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
32046
32047         * verify.c: add check for System.Exception
32048
32049 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
32050
32051         * image.c, class.c: minifix for code just c&p'ed.
32052         * reflection.c: warning fix.
32053         * object.h, loader.h, domain.c: load also StringBuilder.
32054
32055 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32056
32057         * marshal.h, marshal.c: some support code to handle complex marshaling.
32058
32059 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32060
32061         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
32062         Better signatures with vtable error dump.
32063
32064 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
32065
32066         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
32067
32068 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
32069
32070         * icall.c (ves_icall_Type_GetField): impl.
32071
32072 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32073
32074         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
32075         to retrieve a marshal description blob for a field or param.
32076
32077 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32078
32079         * reflection.h, reflection.c: change order of nested type emission
32080         to avoid table corruption. The NestedTypes table is sorted.
32081         * icall.c: change order of GetConstructor results to workaround mcs bug.
32082
32083 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32084
32085         * reflection.h, reflection.c: handle field and param marshal
32086         information.
32087
32088 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32089
32090         * icall.c, marshal.c marshal.h: more Marshal class implementation.
32091
32092 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32093
32094         * reflection.c: fix call convention.
32095
32096 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32097
32098         * reflection.h, reflection.c: mono_image_get_memberref_token()
32099         takes a type instead of a class, now. Added
32100         mono_image_get_array_token() to create tokens for the special
32101         multi-dim array methods.
32102
32103 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32104
32105         * assembly.c: handle modules (no assembly table). Split
32106         loading references in its own function.
32107         * class.c: handle moduleref resolution scope.
32108         * image.c, image.h: cache module name in image.
32109
32110 2002-06-07  Martin Baulig  <martin@gnome.org>
32111
32112         * reflection.c (mono_image_get_type_info): Only add a class layout entry
32113         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
32114
32115 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32116
32117         * icall.c: more signature fixes that used uint instead of int.
32118
32119 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32120
32121         * reflection.c: fixed signature of field refs.
32122
32123 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32124
32125         * class.c, reflection.c: handle typerefs of nested types
32126         (both on read and when writing files).
32127
32128 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
32129
32130         * icall.c: fix method signatures that tried to workaround the previous
32131         typo, d'oh!
32132
32133 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32134
32135         * debug-helpers.c: fix typo.
32136
32137 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32138
32139         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
32140         rewrote the PE/COFF writing code (our programs are understood by the
32141         ms runtime, now).
32142
32143 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32144
32145         * gc.c, gc.h, icall.c: weakreference support.
32146
32147 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32148
32149         * Makefile.am, mono-config.c: use $(sysconfdir).
32150
32151 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32152
32153         * icall.c: changed default precision of Double.ToString() to 15.
32154         Fixed memory leak. Unified with Single.ToString.
32155
32156 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
32157
32158         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
32159
32160 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32161
32162         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
32163         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
32164         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
32165         and myself.
32166
32167 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32168
32169         * debug-symfile.c, sysmath.c: yet more compilation fixes.
32170
32171 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32172
32173         * reflection.c, socket-io.c: more compilation fixes.
32174
32175 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32176
32177         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
32178         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
32179         unicode.c: warning and compiler compatibility fixes.
32180
32181 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32182
32183         * class.h, metadata.c: fixed warnings/compilation errors.
32184
32185 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
32186
32187         * Makefile.am, mono-config.c, mono-config.h: configuration file
32188         support routines.
32189         * loader.c, loader.h: make Dll mapping configurable at runtime in the
32190         config file. Export methods to insert and lookup mappings.
32191
32192 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32193
32194         * reflection.c: handle types and boxed objects in custom attr
32195         constructors.
32196
32197 2002-05-30  Martin Baulig  <martin@gnome.org>
32198
32199         * debug-symfile.c
32200         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
32201
32202 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
32203
32204         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
32205         to lookup the implmap row for a P/Invoke method.
32206         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
32207         P/Invoke method from the runtime on an as needed basis.
32208
32209 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
32210
32211         * metadata.c (mono_metadata_parse_signature): impl.
32212
32213 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32214
32215         * class.c: handle .pack directive.
32216
32217 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32218
32219         * object.c: initialize static fields with RVA data.
32220
32221 2002-05-25  Martin Baulig  <martin@gnome.org>
32222
32223         * debug-symfile.c
32224         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
32225
32226 2002-05-24  Martin Baulig  <martin@gnome.org>
32227
32228         * debug-symfile.c
32229         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
32230         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
32231         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
32232
32233 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32234
32235         * object.c: special case string ctros in invoke.
32236         * gc.c: silly whitespace changes.
32237
32238 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
32239
32240         * threadpool.[ch]: impl. a threadpool that can
32241         be used by mint and mono.
32242
32243 2002-05-22  Martin Baulig  <martin@gnome.org>
32244
32245         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
32246         The first argument is now a `MonoReflectionModuleBuilder *', the return
32247         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
32248         `methods' field to get the method builder.  The `token' argument is the
32249         unfixed token.
32250
32251         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
32252         invalid characters instead of g_assert_not_reached()ing.  This seems
32253         to be the behaviour of mscorlib.
32254
32255 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
32256
32257         * object.c (mono_runtime_invoke_array): applied patch from Rachel
32258         Hestilow to fix bug #25104
32259
32260 2002-05-21  Martin Baulig  <martin@gnome.org>
32261
32262         * debug-symfile.c (mono_debug_find_source_location): New function.
32263         Looks up an IL offset in the line number table and returns the source
32264         location as a string.
32265
32266 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32267
32268         * icall.c:
32269         (mono_double_ToStringImpl): changed %f by %g until we have something
32270         better.
32271
32272 2002-05-21  Nick Drochak  <ndrochak@gol.com>
32273
32274         * icall.c : Use different name for Math.Pow's icall.  Needed to check
32275         parameters first in C#.
32276
32277 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32278
32279         * icall.c, reflection.h: added icall to get info about an event.
32280
32281 2002-05-20  Radek Doulik  <rodo@ximian.com>
32282
32283         * object.c (mono_value_box): don't use memcpy for boxing on BIG
32284         endian
32285         (mono_value_box): don't use memcpy for small sizes on
32286         architectures with unaligned access
32287
32288 2002-05-20  Martin Baulig  <martin@gnome.org>
32289
32290         * reflection.c (mono_reflection_setup_internal_class): Don't crash
32291         if `tb->parent == NULL'.
32292         (mono_reflection_create_internal_class): New function.  This is
32293         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
32294         for enum types.
32295
32296         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
32297         New interncall.
32298
32299 2002-05-19  Martin Baulig  <martin@gnome.org>
32300
32301         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
32302         argument to get the length, don't default to the array length.
32303
32304 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
32305
32306         * assembly.c (mono_assembly_setrootdir): New function used to
32307         override the MONO_ASSEMBLIES directory.
32308
32309 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32310
32311         * icall.c: ValueType_GetHashCode() initialize local var.
32312
32313 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32314
32315         * reflection.c: sort custom attributes table.
32316
32317 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32318
32319         * reflection.c: support named args in custom attributes (write support).
32320
32321 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
32322
32323         * reflection.c: fix finally position calculation.
32324
32325 2002-05-15  Radek Doulik  <rodo@ximian.com>
32326
32327         * reflection.c: fixed endianess at many places
32328
32329         * icall.c (ves_icall_InitializeArray): comment out debug msg
32330
32331 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
32332
32333         * object.c (mono_unhandled_exception): new function to handle
32334         unhandled exceptions.
32335         (mono_unhandled_exception): call the UnhandledException event.
32336         (mono_runtime_delegate_invoke): impl.
32337
32338 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
32339
32340         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
32341         returns the RVA, not the direct pointer to the data. Handle the case
32342         when the class size is fixed.
32343
32344 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32345
32346         * reflection.c: fix some endianess issues.
32347
32348 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
32349
32350         * object.c (mono_runtime_invoke): is now able to catch exceptions.
32351
32352         * threads.c (mono_thread_init): added a callback which is invoked
32353         at thread start.
32354
32355 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32356         
32357         * icall.c: make GetHashCode return non-negative values.
32358
32359 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
32360
32361         * object.c, icall.c, gc.c: revert to address-based hashcode.
32362
32363 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
32364
32365         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
32366
32367 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32368
32369         * icall.c, class.c: special case <Module>.
32370
32371 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
32372
32373         * icall.c: fix bug in GetNow().
32374
32375 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
32376
32377         * object.c (mono_runtime_class_init): make sure that we call all
32378         static class constructors.
32379
32380 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32381
32382         * reflection.c: sort methodsemantics table.
32383
32384 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32385
32386         * reflection.h, reflection.c: honour init locals setting.
32387
32388 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
32389
32390         * icall.c: copied Double ToStringImpl for Single ToStringImpl
32391
32392 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32393
32394         * reflection.c: support ContructorBuilders in attribute blob creation.
32395
32396 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32397
32398         * reflection.c: some changes to build a binary that can be run
32399         directly in windows.
32400
32401 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
32402
32403         * loader.c: print a big message when an icall can't be found.
32404
32405 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32406
32407         * string-icalls.c: fix bug 24248.
32408
32409 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
32410
32411         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
32412         icall.c, reflection.h: separate assembly loading by pathname and by
32413         assembly name. Use the MONO_PATH env var to search for assemblies.
32414
32415 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32416
32417         * assembly.c, image.h: add some support for assemblies
32418         with multiple modules.
32419         * class.c, class.h: export mono_class_from_typeref().
32420         * loader.c: remove duplicated code and use mono_class_from_typeref(),
32421         instead.
32422
32423 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32424
32425         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
32426         documentation says (the ECMA one is correct).
32427
32428 2002-05-02  Dick Porter  <dick@ximian.com>
32429
32430         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
32431         Don't name the synchronisation mutex.
32432
32433 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
32434
32435         * rand.c
32436         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
32437         Make the prototypes match.
32438         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
32439         Same.
32440
32441         * icall.c
32442         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
32443         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
32444         all systems have tm.tm_zone, so use strftime() with %Z to print
32445         the timezone abreviation into a temp string.
32446
32447         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
32448         rather than mono_array_addr() on a MonoString on Big Endian
32449         machines.
32450
32451 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
32452
32453         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
32454         fix bug 24041
32455
32456 2002-04-30  Dick Porter  <dick@ximian.com>
32457
32458         * socket-io.c: Cope with SOCKET being an integer rather than a
32459         pointer now.
32460
32461         * threads.c: Added Thread_free_internal, to deal with thread
32462         handle cleanup.  Moved calls to handle_store() and handle_remove()
32463         to start_wrapper(), so each can only be called once.  Allocate
32464         synchronisation blocks with GC_malloc(), and use GC finalisation
32465         to close the handles.
32466
32467         * icall.c: added System.Threading.Thread::Thread_free_internal
32468
32469 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32470
32471         * icall.c: support Environment.Exit, CommandLineArgs().
32472
32473 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
32474
32475         * object.c, object.h: added mono_runtime_run_main () and
32476         mono_runtime_get_main_args () for use in System.Environment.
32477
32478 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
32479
32480         * gc.c: fix thinko, enable actual finalization since the jit is now
32481         fixed.
32482
32483 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32484
32485         * gc.c, object.c: take into account that an object may be offset wrt the address
32486         returned by GC_malloc().
32487
32488 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
32489
32490         * image.c: handle files without entries in the assembly table (modules).
32491
32492 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
32493
32494         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
32495         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
32496         allowed to be null when it's System.Object class setup.
32497
32498 2002-04-27  Martin Baulig  <martin@gnome.org>
32499
32500         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
32501         if `tb->parent == NULL' rather than crashing.
32502
32503 2002-04-28  Nick Drochak  <ndrochak@gol.com>
32504
32505         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
32506         calling acos() where asin() should have been called.
32507
32508 2002-04-26  Martin Baulig  <martin@gnome.org>
32509
32510         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
32511         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
32512         there's a subdirectory called `System', but we don't want to read that
32513         subdirectory as an assembly.
32514
32515 2002-04-25  Martin Baulig  <martin@gnome.org>
32516
32517         * debug-symfile.c: Reflect latest MonoString changes.
32518
32519 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32520
32521         * rand.c, rand.h: instance method icalls need to have an explicit
32522         this pointer as first argument in the C implementation.
32523
32524 2002-04-25  Nick Drochak <ndrochak@gol.com>
32525
32526         * icall.c: Fix typo in map for GetNonZeroBytes
32527
32528 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
32529
32530         * string-icalls.c : String does now passes unit tests without any 
32531         errors, the following changes has been made:
32532         
32533         Implemented replace methods.
32534         Renaming of methods to (try) follow the standard.
32535         Fixed compare ordinal
32536         Made all memory allocated directly to function instead of via icall function.
32537         Small performance fix in is_in_array function
32538                         
32539  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
32540
32541         c (mono_string_Internal_ctor_charp_int_int):
32542         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
32543         sindex < 0, throw ArgumentOutOfRangeException instead of
32544         ArgumentNullException.
32545
32546         Added new check for length == 0, however
32547         I need to make it return String.Empty from the C code.
32548         
32549         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
32550         that calculate the length for us here.
32551         
32552         (mono_string_Internal_ctor_sbytep_int_int): Replaced
32553         mono_string_new_utf16 with mono_string_new, since value is utf8.
32554
32555 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32556
32557         * object.c: register the object for finalization if needed.
32558         Allocate one more char in the string for the terminating 0 char.
32559
32560 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
32561
32562         * class.c, class.h, image.c: check if a type implemenst a destructor.
32563         Use the proper key for array class lookups.
32564         * icall.c: register the icalls in the System.GC class.
32565         * gc.c, gc.h: GC-related functions and icalls.
32566
32567 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32568
32569         * icall.c:
32570         * socket-io.c:
32571         * unicode.c: free some strings gotten from mono_string_to_utf8 and
32572         changed a couple of free () by g_free ().
32573
32574         * decimal.c: one-liner in the comments for decimal2string ().
32575
32576 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
32577
32578         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
32579
32580 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
32581
32582         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
32583         * object.c (mono_runtime_invoke_array) : handle null in params
32584
32585 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
32586
32587         * string-icalls.c: fixed bug in split (one off bug)
32588
32589 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
32590
32591         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
32592         * icalls.c: added String::Equals as internal method
32593
32594 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
32595
32596         * threads.c: fixed bug in the double interlocked functions
32597
32598 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
32599
32600         * threads.c: implemented all of the new interlocked icalls.
32601         * string-icalls.c: fix a bug in insert.
32602         * icalls.c: added the icalls for interlocked, removed old string functions.
32603         
32604 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
32605
32606         * loader.c: fix off-by-one error when reading argument names.
32607
32608 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32609
32610         * profiler.c: win32 counter implementation (untested).
32611         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
32612         (the latter needs testing and more complete impl. from win32 folks).
32613
32614 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
32615
32616         * object.c: mono_array_new_full workaround mono_array_class_get
32617         problem.
32618
32619 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32620
32621         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
32622         * object.h (mono_string_chars): Changed casting type.
32623
32624 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32625
32626         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
32627                            method signatures to use gunichar2 instead of gint16.
32628
32629 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
32630
32631         * object.h, object.c: domain-specific versions of mono_object_new and
32632         mono_array_new.
32633
32634 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
32635
32636         * object.c: changed String layout
32637
32638         * string-icalls.c (mono_string_Internal_ctor_chara): added
32639         internal string constructors.
32640
32641 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
32642
32643         * threads.c: pass 'this' to the thread start routine.
32644
32645 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32646
32647         * string-icalls.c: fix IndexOf and LastIndexOf. Now
32648         InternalCompareStr don't call twice mono_string_cmp_char for the last
32649         character. Improved performance in mono_string_cmp_char.
32650
32651 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32652
32653         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
32654         code into its own library: libmonoruntime.
32655
32656 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
32657
32658         * object.h, object.c: changed array format so that szarrays do not
32659         require a bounds structure.
32660         * icall.c, appdomain.c: support for new szarray format.
32661
32662 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
32663
32664         * metadata.c: compare also the retuns type when comparing signatures:
32665         we didn't do this as an optimization since really overloaded methods
32666         must differ also in the arguments, but this doesn't work with
32667         low-level IL code (or when using explicit conversion operators: see
32668         bug#23498 for an example).
32669
32670 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
32671
32672         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
32673
32674 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
32675
32676         * icall.c: make MonoType::GetElementType its own icall.
32677
32678 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
32679
32680         * icall.c: remove MonoMethod_get_Name().
32681         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
32682         object.
32683
32684 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32685
32686         * string-icalls.c: optimized a few methods.
32687
32688 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
32689
32690         * icall.c: added all new string internal calls
32691         * string-icalls.c: added, new string internal call implementation.
32692         * object.c: added mono_string_new_size for allocating a string a size
32693
32694 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
32695
32696         * object.c (mono_object_isinst): use the same code as in the
32697         optimized x86 version.
32698
32699 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
32700
32701         * profiler.c: TSC-based timer code (faster and more accurate).
32702         Not hooked up in configure, yet (set USE_X86TSC to 1).
32703
32704 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
32705
32706         * profiler.c, profiler.h: track time spent compiling methods.
32707         * threads.c: track thread creation/destruction.
32708
32709 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
32710
32711         * profiler.c, profiler.h, profiler-private.h: profiling interface
32712         and sample implementation. Moved here so that it can be used also by
32713         the jit.
32714
32715 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
32716
32717         * reflection.c, reflection.h: keep types and other handles separate in
32718         the hash tables for referred tokens. Add guid for modules.
32719
32720 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
32721
32722         * assembly.c: fix bugs found with valgrind.
32723         * metadata.h, metadata.c: added mono_metadata_guid_heap().
32724
32725 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
32726
32727         * threads: added icall support for getting current domain for
32728                    the thread.
32729  
32730 2002-04-13  Martin Baulig  <martin@gnome.org>
32731
32732         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
32733         (MonoDebugVarInfo): Added `index' field for register based addresses.
32734         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
32735         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
32736         `MonoDebugVarInfo *params' and `guint32 this_offset' with
32737         `MonoDebugVarInfo *this_var'.
32738
32739         * debug-symfile.c (relocate_variable): New static function to write
32740         a location description for a local variable or method parameter.
32741
32742 2002-04-12  Martin Baulig  <martin@gnome.org>
32743
32744         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
32745         stack offset and begin/end scope address of a local variable.
32746         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
32747         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
32748         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
32749
32750         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
32751         Added new relocation types for start/end scope of a local variable.
32752
32753 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
32754
32755         * object.h: add mono_object_domain() macro.
32756         * reflection.c: handle typespecs.
32757         * icall.c: MonoMethod::get_Name() implementation.
32758
32759 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32760
32761         * icall.c: String::GetHashCode() icall implementation.
32762
32763 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32764
32765         * icall.c: String::IndexOfAny icall.
32766         * object.c, object.h: make array->max_length more useful.
32767         Intrduced mono_object_class() and mono_string_length() macros.
32768
32769 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32770
32771         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
32772         instead of g_unichar_isdigit.
32773
32774 2002-04-11  Nick Drochak  <ndrochak@gol.com>
32775
32776         * icall.c: Implement a simple Double.ToString().
32777
32778 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
32779
32780         * appdomain.h: only io-layer.h is supposed to be included.
32781         * icall.c: explicitly import environ. Fix warning.
32782
32783 2002-04-10  Nick Drochak  <ndrochak@gol.com>
32784
32785         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
32786                 return true even if it's not Daylight Savings time.
32787                 Only return false for the case where the function isn't
32788                 implemented for a plaform (read Windows).
32789
32790 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32791
32792         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
32793         data with a mutex.
32794
32795 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
32796
32797         * mempool.c (mono_mempool_alloc): only use g_malloc when
32798         absolutely necessary.
32799
32800 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
32801
32802         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
32803
32804         * class.c (mono_class_vtable): use domain mempool to allocate vtable
32805         (mono_class_proxy_vtable): use domain mempool
32806
32807 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
32808
32809         * appdomain.h, appdomain.c: split initialization that requires the
32810         execution engine support into mono_runtime_init().
32811
32812 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
32813
32814         * class.c (mono_class_init): don't include vtable inside MonoClass
32815         to save some memory, gather some statistics.
32816         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
32817
32818 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32819
32820         * icall.c: internalcall implementation for ValueType.Equals().
32821
32822 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
32823
32824         * object.c (mono_message_init): moved 
32825         (mono_runtime_exec_main): new arch. independent impl.
32826         (mono_runtime_invoke_array): new method - like
32827         mono_runtime_invoke, but you can pass an array of objects.
32828         (mono_remoting_invoke): new arch. independent impl.
32829         (mono_message_invoke): new arch. independent impl.
32830         (mono_runtime_class_init): new arch. independent impl.
32831         (mono_runtime_object_init): new arch. independent impl.
32832
32833 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
32834
32835         * metadata.c, object.c, reflection.c: documented the exported
32836         functions.
32837
32838 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
32839
32840         * icall.c: simpler code to pass the assembly builder data to corlib.
32841         Implement GetNestedTypes() internalcall.
32842
32843 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
32844
32845         * class.c: warn if a type can't be loaded.
32846
32847 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
32848
32849         * image.h: typedef MonoImageOpenStatus
32850         * types.h: removed unused file
32851         
32852 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
32853
32854         * icall.c: Enum_ToObject accepts enum value arguments.
32855
32856 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
32857
32858         * class.c: move initialization of properties, events and nested
32859         classes, so that they happen for interfaces, too.
32860
32861 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
32862
32863         * icall.c: cleanup some ugly casts in Array_SetValue*.
32864
32865 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32866
32867         * icall.c: the values array fro enums is of the correct type, now.
32868         Implement (correctly) getFullName instead of assQualifiedName for
32869         MonoType.
32870         * reflection.h, reflection.c: added mono_type_get_name ().
32871
32872 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
32873
32874         * assembly.c, image.h: for each MonoImage, record from wich assembly
32875         it was loaded.
32876         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
32877         Make Type.Assembly work.
32878
32879 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
32880
32881         * debug-symfile.h: use char* instead of gpointer to avoid
32882         unnecessary casts.
32883
32884         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
32885
32886         * icall.c (ves_icall_InternalExecute): impl. FielSetter
32887         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
32888
32889 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
32890
32891         * icall.c (mono_message_init): impl. (code cleanup)
32892         (ves_icall_InternalExecute): impl. FieldGetter
32893
32894         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
32895         defined we call all (non-static)methods through the vtable. 
32896
32897 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
32898
32899         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
32900         finalizer even though the memory is still referenced (and the chunk of
32901         memory is not freed).
32902
32903 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
32904
32905         * assembly.c: fix brokeness.
32906
32907 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
32908
32909         * class.c: kill some warnings. Check explicit interface method
32910         implementation also without considering the namespace.
32911         Load also literal strings in static class data.
32912
32913 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
32914
32915         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
32916         (default_assembly_name_resolver): Make the resolver take the
32917         "base" directory where the assembly was originally defined, so we
32918         can load DLLs that are in the same directory as the assembly that
32919         is being referenced.
32920
32921 2002-03-28  Dick Porter  <dick@ximian.com>
32922
32923         * file-io.h: 
32924         * file-io.c:
32925         * socket-io.c: 
32926         * unicode.h: 
32927         * unicode.c: Warning cleanups
32928
32929 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
32930
32931         * object.h, reflection.h: use the correct type instead of MonoObject.
32932
32933 2002-03-28  Martin Baulig  <martin@gnome.org>
32934
32935         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
32936         (mono_debug_update_symbol_file): Initialize classes if necessary.
32937
32938 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
32939
32940         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
32941         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
32942
32943 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
32944
32945         * assembly.h: fix function prototype.
32946         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
32947         * mono-endian.h: use const cast.
32948
32949 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
32950
32951         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
32952
32953 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
32954
32955         * loader.c: don't assert when a typeref can't be loaded, give
32956         a chance to the runtime to trow an exception instead.
32957         * loader.h: fix warning.
32958
32959 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
32960
32961         * class.c (mono_class_proxy_vtable): added proxy support
32962
32963 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
32964
32965         * icall.c: removed last of PAL calls, added System.Environment
32966         * file-io.h, file-io.c: MonoIO implementation
32967         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
32968
32969 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
32970
32971         * appdomain.c: do not use the byte marker in ldstr table lookup.
32972         * debug-helpers.c: allow two ':' to separate class and method name.
32973         * object.c: allocate arrays bounds with the GC, too.
32974         * verify: add a few more checks.
32975
32976 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
32977
32978         * reflection.c: output also literal strings. Allocate parameter data
32979         with GC_malloc() (thanks, Martin, for catching this!).
32980
32981 2002-03-26  Martin Baulig  <martin@gnome.org>
32982
32983         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
32984         include the `this' offset in the `param_offsets'.
32985
32986 2002-03-25  Martin Baulig  <martin@gnome.org>
32987
32988         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
32989         mono_debug_get_class() function to get the classes. Added new
32990         relocation types for arrays and strings.
32991         (mono_debug_get_class): New static function to search in all
32992         referenced assemblies for a metadata token.
32993
32994         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
32995
32996 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32997
32998         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
32999         hold gc-allocated objects. Make the string heap a stream like the
33000         others. Removed duplicated code when writing stream info.
33001         Added asserts to catch possible buffer overflows. Set the sorted map
33002         for tables that need sorting. Added some documentation.
33003
33004 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
33005
33006         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
33007         for interned strings and vtables.
33008
33009 2002-03-24  Martin Baulig  <martin@gnome.org>
33010
33011         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
33012         it in the array since it was created with g_slist_prepend().
33013
33014 2002-03-24  Martin Baulig  <martin@gnome.org>
33015
33016         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
33017         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
33018         (mono_debug_method_from_token): Renamed to
33019         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
33020         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
33021
33022         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
33023         relocation types.
33024
33025         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
33026
33027 2002-03-24  Martin Baulig  <martin@gnome.org>
33028
33029         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
33030         (mono_debug_method_from_token): New func.
33031
33032         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
33033         New interncall, calls mono_debug_local_type_from_signature().
33034         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
33035         calls mono_debug_method_from_token().
33036
33037 2002-03-23  Martin Baulig  <martin@gnome.org>
33038
33039         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
33040         specifies the number of bytes to be converted, not the array size.
33041         Return the number of chars, not the number of bytes.
33042         (ves_icall_iconv_get_chars): The `byteCount' argument
33043         specifies the number of bytes to be converted, not the array size.
33044
33045 2002-03-23  Martin Baulig  <martin@gnome.org>
33046
33047         * reflection.h (MonoReflectionSigHelper): New type.
33048
33049         * reflection.c (mono_reflection_sighelper_get_signature_local),
33050         (mono_reflection_sighelper_get_signature_local): New functions.
33051
33052         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
33053         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
33054         interncalls.
33055
33056 2002-03-23  Martin Baulig  <martin@gnome.org>
33057
33058         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
33059         is_writeable is set.
33060         (mono_raw_buffer_update): New function to write the modified map
33061         back to disk.
33062
33063         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
33064
33065         * debug-symfile.c (mono_debug_update_symbol_file): Call
33066         mono_raw_buffer_update() when done writing.
33067
33068 2002-03-23  Martin Baulig  <martin@gnome.org>
33069
33070         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
33071
33072         * debug-symfile.c: Added support for arguments and local variables.
33073
33074 2002-03-23  Dick Porter  <dick@ximian.com>
33075
33076         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
33077         protected by ifdefs, hence breaking the w32 build.
33078
33079 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33080
33081         * object.c: implement is_interned() the right way.
33082
33083 2002-03-21  Martin Baulig  <martin@gnome.org>
33084
33085         * debug-symfile.[ch]: New files to handle debugging information
33086         files. There's also support to dynamically update these symbol
33087         files to include machine dependent information.
33088
33089 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
33090
33091         * threads.c (mono_thread_create): new function to create thread
33092         from C
33093
33094 2002-03-20  Martin Baulig  <martin@gnome.org>
33095
33096         * icall.c (ves_icall_InternalInvoke): Create a new object if the
33097         method is a constructor.
33098         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
33099         points to ves_icall_InternalInvoke().
33100
33101 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
33102
33103         * file-io.c: Flush shouldn't throw exceptions.
33104
33105 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
33106
33107         * file-io.c: FileStream flush support; FileSetLength now
33108         restores file pointer.
33109
33110 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
33111
33112         * class.c: set image for pointer classes.
33113
33114 2002/03/19  Nick Drochak <ndrochak@gol.com>
33115
33116         * sysmath.c: Forgot one.
33117
33118 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
33119
33120         * sysmath.c: Avoid redefining existing names.
33121
33122 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
33123
33124         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
33125         handled by runtime as icall rather than dllimport from libm.so
33126         * file-io.c, file-io.h: fixed handle argument type.
33127
33128 2002-03-18  Dick Porter  <dick@ximian.com>
33129
33130         * reflection.c (mono_image_get_type_info): rename interface to
33131         iface, because of "#define interface struct" on windows.
33132
33133 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
33134
33135         * class.c, class.h: rename and export mono_ptr_class_get().
33136         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
33137         * reflection.c, reflection.h, icall.c: better/saner type name
33138         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
33139         method signatures.
33140
33141 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
33142
33143         * class.c (mono_class_init): removed hardcoded GHC_SLOT
33144
33145         * icall.c (ves_icall_InternalInvoke): impl.
33146
33147 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33148
33149         * reflection.c: output the interface map table, too.
33150
33151 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33152
33153         * class.c (class_compute_field_layout): separate computation of 
33154         static field layout
33155
33156 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
33157
33158         * icall.c: added System.Buffer support.
33159         * file-io.c: moved file icalls from PAL to FileStream.
33160
33161 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
33162
33163         * icall.c (ves_icall_System_Object_GetHashCode): impl.
33164
33165 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
33166
33167         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
33168
33169 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33170
33171         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
33172
33173 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
33174
33175         * debug-helpers.{c,h}: moved here from monograph some useful functions
33176         to locate a method by name/signature in a class or image. Included
33177         also a small and flexible IL disassembler.
33178
33179 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33180
33181         * reflection.c: fixup tokens in methods with small header size, too.
33182
33183 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
33184
33185         * object.c (mono_string_to_utf8): remove assert(!error), instead
33186         print a warning. 
33187
33188 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
33189
33190         * icall.c: update to the new mono_Array_class_get interface.
33191
33192 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33193
33194         * appdomain.c, object.c: Boehm-GC enable.
33195         * icall.c: make get_data_chunk() support split data requests.
33196         Ensure a class is initialized in more cases. Return only the first
33197         property found in GetProperties() or the compiler gets confused. 
33198         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
33199         * reflection.h, reflection.c: add fixup mechanism for field and method
33200         tokens. Initialize assembly->typeref in a single place. Output
33201         properties after events. Support custom attributes for events, too.
33202         Typo fix for paramter custom attrs.
33203
33204 2002-03-07  Martin Baulig  <martin@gnome.org>
33205
33206         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
33207
33208 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
33209
33210         * class.c (mono_array_class_get): fix. for multi. dim. arrays
33211
33212 2002-03-06  Martin Baulig  <martin@gnome.org>
33213
33214         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
33215         non-zero lower bounds. See testcases #F10-#F13.
33216
33217 2002-03-05  Martin Baulig  <martin@gnome.org>
33218
33219         * exception.c (mono_get_exception_argument_out_of_range): New exception.
33220
33221         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
33222         ves_icall_System_Array_GetValue(), only calculate the absolute array position
33223         here.
33224         (ves_icall_System_Array_SetValue): Likewise.
33225         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
33226         as argument and does the actual work. This function is used when copying a
33227         multi-dimensional array.
33228         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
33229         now do all the widening conversions of value types.
33230         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
33231
33232 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33233
33234         * class.c: remove some magic numbers and use the smbolic names,
33235         instead. Added init_events() to load event info at class init time.
33236         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
33237         and mono_metadata_methods_from_event().
33238         * reflection.h, reflection.c: added support for writing out the evnets
33239         related information.
33240
33241 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
33242
33243         * reflection.h, icall.c: use a different method (GetInterfaces)
33244         to gather interface info and add isbyref, isprimitive and
33245         ispointer to the ves_icall_get_type_info() return value.
33246
33247 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
33248
33249         * class.h: stared adding support for events.
33250         * icall.c: split find_members implementation. Added debug icall to get
33251         the address of an object.
33252         * reflection.c: handle TypeBuilders in mono_type_get_object().
33253
33254 2002-03-01  Martin Baulig  <martin@gnome.org>
33255
33256         * icall.c (ves_icall_System_Array_GetLength): This must throw an
33257         ArgumentOutOfRangeException(), not an ArgumentException().
33258         (ves_icall_System_Array_GetLowerBound): Likewise.
33259         (ves_icall_System_Array_GetValue): Improved argument checking.
33260         (ves_icall_System_Array_SetValue): Improved argument checking.
33261
33262 2002-03-01  Martin Baulig  <martin@gnome.org>
33263
33264         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
33265         called with invalid arguments rather than just dying with g_assert().
33266         (ves_icall_System_Array_SetValue): Likewise.
33267         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
33268         raise a NotImplementedException instead.
33269         (ves_icall_System_Array_GetLength): Added argument checking.
33270         (ves_icall_System_Array_GetLowerBound): Added argument checking.
33271
33272 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
33273
33274         * object.h (mono_assert): new macros mono_assert and
33275         mono_assert_not_reached
33276
33277 2002-02-28  Martin Baulig  <martin@gnome.org>
33278
33279         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
33280         and "System::String::IsInterned" to "System::String::_IsInterned".
33281
33282 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
33283
33284         * icall.c: remove hacks for typebuilder. Added icall to create a
33285         modified type from a tybebuilder.
33286         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
33287         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
33288         to create a backing MonoClass for a TypeBuilder.
33289
33290 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33291
33292         * class.c, class.h: more refactoring of class init.
33293         Export mono_class_setup_mono_type() and mono_class_setup_parent().
33294
33295 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
33296
33297         * marshal.c, marshal.h: start of marshaling interface.
33298
33299 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
33300
33301         * icall.c: fix order in assembly qualified name icall.
33302
33303 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
33304
33305         * class.c: do not free str, since we store it in the hash table.
33306         * reflection.h: add label field to MonoILExceptionInfo.
33307         * reflection.c: handle references to more than one assembly. Handle
33308         case when there isn't a module created in the assembly.
33309
33310 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
33311
33312         * class.c: Fix typo. Start refactoring of class init code.
33313
33314 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
33315
33316         * appdomain.c: exit with 1 on error.
33317         * class.c: we already have the name in MonoClassField.
33318         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
33319         MonoStreamHeader instead of an offset of image->raw_metadata.
33320
33321 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
33322
33323         * appdomain.c (mono_init): Be even more descriptive about the error.
33324
33325 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
33326
33327         * appdomain.c: give the user an informative message when corlib can't
33328         be loaded.
33329
33330 2002-02-26  Martin Baulig  <martin@gnome.org>
33331
33332         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
33333         New icall to get the time zone data.
33334
33335 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33336
33337         * reflection.c: set virtual and raw size of section correctly.
33338         * threads.c: transfer domain information to newly created threads.
33339
33340 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
33341
33342         * class.c: when instancing a class in a domain, load the default
33343         vaules for static fields from the constant table. Fix System.Enum to
33344         not be an enum.
33345         * icall.c: implement Object::GetType() internalcall. Implemented
33346         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
33347         Fixed checking of binding flags in find_members().
33348         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
33349         * reflection.c: handle enumerations when writing to the constant
33350         table. Use a different object cache for types.
33351
33352
33353 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
33354
33355         * object.c (mono_object_isinst): fix for arrays
33356
33357         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
33358
33359 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
33360
33361         * object.c: don't use mprotect ()  and fix intern pool hash table
33362         lookup for big endian systems.
33363
33364 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33365
33366         * icall.c: change type_is_subtype_of () signature.
33367
33368 2002-02-21  Mark Crichton  <crichton@gimp.org>
33369
33370         * rand.c, rand.h: Added random number generator for
33371         System.Security.Cryptography classes.
33372
33373         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
33374
33375         * icall.c: Added System.Security.Cryptography calls.
33376
33377 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33378
33379         * class.c, icall.c, metadata.c: better support for pointer types.
33380         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
33381         * reflection.c: Add support for getting custom attrs for properties
33382         and simplify some code.
33383
33384 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
33385
33386         * icall.c: change getToken () and add custom attribute GetBlob()helper
33387         method.
33388         * reflection.h: add custom attrs array to the reflection builder structures.
33389         * reflection.c: encode and emit custom attributes for all the relevant
33390         reflection objects. Cache fieldref and methodref tokens. Change
33391         mono_image_create_token() interface to take a MonoDynamicAssembly.
33392         More complete custom attributes decoder. Load custom attributes for
33393         Assembly, Field, Method and Constructor objects, too. Make the
33394         returned array an Attribute[] one, not object[]. Added
33395         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
33396         custom attribute constructor.
33397
33398 2002-02-20  Dick Porter  <dick@ximian.com>
33399
33400         * icall.c:
33401         * rawbuffer.c:
33402         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
33403         problem code out for now).
33404
33405 2002-02-19  Radek Doulik  <rodo@ximian.com>
33406
33407         * object.c (mono_ldstr): use hash table to avoid multiple swapping
33408
33409 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
33410
33411         * icall.c: register the GetCustomAttributes method.
33412         * object.c, object.h: add mono_string_new_len ().
33413         * reflection.h, reflection.c: added mono_runtime_invoke(),
33414         mono_install_runtime_invoke(). Added
33415         mono_reflection_get_custom_attrs () to load custom attributes and
33416         create the attribute objects.
33417
33418 2002-02-19  Dick Porter  <dick@ximian.com>
33419         * threads-dummy-types.c:
33420         * threads-dummy-types.h:
33421         * threads-dummy.c:
33422         * threads-dummy.h:
33423         * threads-pthread-types.c:
33424         * threads-pthread-types.h:
33425         * threads-pthread.c:
33426         * threads-pthread.h:  Deleted obsolete files
33427
33428 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
33429
33430         * class.c (mono_class_vtable): runtime init the class when we
33431         allocate static class data.
33432
33433         * icall.c (ves_icall_System_Array_SetValue): check for null values.
33434
33435         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
33436         and String - but we will need generic marshalling support in the
33437         future. 
33438         (mono_init): set the domain name in a ms compatible way
33439
33440         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
33441         String[].
33442
33443 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
33444
33445         * object.c (mono_array_clone): use alloca() instead of g_malloc  
33446         for sizes
33447
33448         * appdomain.c (mono_domain_unload): impl.
33449
33450 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33451
33452         * appdomain.c, object.c: fix intern pool implementation.
33453         * class.c: fix alignment code.
33454
33455 2002-02-16  Radek Doulik  <rodo@ximian.com>
33456
33457         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
33458         and s2 > s1, just copy lower bytes to be compatible with little
33459         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
33460         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
33461
33462         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
33463         force big_endian to be 1 for big endian machines 
33464         (ves_icall_iconv_new_decoder): ditto
33465
33466 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
33467
33468         * socket-io.c (convert_sockopt_level_and_name): If the system
33469         doesn't define SOL_IP or SOL_TCP, get them by hand using
33470         getprotobyname() and caching the values (because this could be a
33471         slow operation).
33472         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
33473         Use the appropriate struct when the system does support it. Ie,
33474         not all systems have struct ip_mreqn so use struct ip_mreq when
33475         appropriate.
33476
33477 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
33478
33479         * reflection.c: handle finally clauses.
33480
33481 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
33482
33483         * socket-io.c: use g_snprintf() instead of snprintf.
33484
33485 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
33486
33487         * reflection.c (mono_param_get_objects): Cast second argument to
33488         mono_method_get_param_names to a const char** to silence the
33489         compiler warning.
33490
33491         * appdomain.c (mono_domain_assembly_open): Put parens around the
33492         truth statement in the for-loop.
33493
33494         * unicode.c (iconv_convert): Got rid of a compiler warning about
33495         int i being unused when the system has a new iconv.
33496         (iconv_get_length): Same.
33497
33498         * image.c (load_class_names): Cast the second argument to
33499         g_hash_table_insert() to char* to hush compiler warnings about the
33500         arg being a const.
33501         (mono_image_open): Same here.
33502
33503         * socket-io.c: Don't conditionally include sys/filio.h or
33504         sys/sockio.h here anymore since we now get them from
33505         io-layer/io-layer.h
33506         (inet_pton): If the system doesn't support inet_aton, implement
33507         using inet_addr and also #define INADDR_NONE if it isn't defined
33508         by the system.
33509
33510 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33511
33512         * metadata.c, metadata.h: added function to get packing and size info
33513         of a typedef.
33514         * reflection.h, reflection.c: handle field RVA data. Save info about
33515         the table layout if needed. Assign typedef indexes to all the types
33516         before dumping the info about them to avoid forward reference problems.
33517
33518 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
33519
33520         * socket-io.c (convert_sockopt_level_and_name): ifdef
33521         SO_ACCEPTCONN because it is not defined on my system (old debian)
33522
33523 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33524
33525         * opcode.c: use stddef.h to get NULL.
33526
33527 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
33528
33529         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
33530         for FIONBIO, FIONREAD and SIOCATMARK.
33531         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
33532         define INADDR_NONE and besides, inet_addr() is deprecated and
33533         should not be used. Use inet_pton() instead - it also has the
33534         added bonus that it can easily handle IPv6 addresses as well.
33535         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
33536
33537 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
33538
33539         * decimal.c: remove _MSC_VER conditional.
33540
33541 2002-02-13  Dick Porter  <dick@ximian.com>
33542
33543         * socket-io.c: 
33544         * icall.c: Internal calls for Blocking, Select, Shutdown,
33545         GetSocketOption and SetSocketOption
33546
33547 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33548
33549         * assembly.cs: better resolver: use it instead of some kludgy
33550         code.
33551
33552 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
33553
33554         * reflection.c: the best way to speed-up the compiler is to avoid
33555         infinite loops.
33556
33557 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
33558
33559         * class.c (mono_class_vtable): changed the object layout
33560         (obj->vtable->class). 
33561         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
33562
33563 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33564
33565         * assembly.c: look for assemblies in the assembly dir, too.
33566
33567 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33568
33569         * class.c: fix thinko in mono_class_from_type().
33570
33571 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33572
33573         * exception.h, exception.c: added TypeLoadException.
33574         * object.h, object.c: added mono_array_clone ().
33575         * icall.c: handle throwOnError in AssemblyGetType().
33576         Added Array.Clone().
33577         * opcode.h, opcode.c: use a single value for the opcode val.
33578         Compile fix for non-gcc compilers.
33579
33580 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
33581
33582         * opcodes.c, opcodes.h: export interesting info about opcodes.
33583
33584 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
33585
33586         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
33587         icalls. 
33588
33589         * class.c (class_compute_field_layout): set element_class for enums
33590         (mono_class_create_from_typedef): set element_class for normal classes
33591
33592         * icall.c (ves_icall_System_Enum_get_value): impl.
33593
33594         * class.c (mono_class_create_from_typedef): do not set valuetype
33595         flag for System.ValueType and System.Enum
33596
33597 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
33598
33599         * unicode.c (iconv_convert): fix big endian problem.
33600
33601 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33602
33603         * class.c: add asserts if we are ever going to scribble over memory.
33604         * socket-io.c: not all systems have AF_IRDA defined.
33605
33606 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
33607
33608         * class.c (class_compute_field_layout): do not consider static
33609         fields to compute alignment
33610
33611 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
33612
33613         * appdomain.c (mono_appdomain_get): impl.
33614         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
33615
33616 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
33617
33618         * icall.c: ignore "file://" prefix when loading an assembly.
33619
33620 2002-01-23  Dick Porter  <dick@ximian.com>
33621
33622         * socket-io.c:
33623         * icall.c:
33624         * Makefile.am: Added socket support
33625
33626 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
33627
33628         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
33629         code back.  This should return the assemblies that are loaded by
33630         the runtime on behalf of an application domain. 
33631
33632         The current implementation is still broken, it just returns every
33633         assembly loaded, but until we get real applications domain this
33634         will do.
33635
33636 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
33637
33638         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
33639         AppDomain object.
33640
33641 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
33642
33643         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
33644         the mono_class_from_name lookup.
33645         (ves_icall_get_parameter_info): ditto.
33646         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
33647         method.
33648         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
33649
33650 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33651
33652         * class.c: load also nested classes on class init.
33653         System.ValueType instance methods gets passed boxed
33654         values, unless methods in derived classed that get a pointer to the
33655         data.
33656         * icall.c: use better name parsing code in GetType().
33657         * image.c, image.h: add mono_image_loaded ().
33658         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
33659         * reflection.c, reflection.h: added mono_reflection_parse_type().
33660
33661 2002-01-22  Veronica De Santis <veron78@interfree.it>
33662
33663         * icall.c : Added mapping of internal calls for Manual and Auto reset events
33664         * threads.c : Added the implementation of internal calls for events
33665         * threads.h : Added prototypes of internal calls for events
33666         
33667 2002-01-21  Radek Doulik  <rodo@ximian.com>
33668
33669         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
33670
33671 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
33672
33673         * class.c (mono_class_init): set min_align to 1 (instead of 0)
33674         (mono_class_value_size): use min_align
33675
33676 2002-01-20  Dick Porter  <dick@ximian.com>
33677
33678         * threads.h:
33679         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
33680         so it compiles on w32.
33681
33682 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
33683
33684         * metadata.c (mono_type_stack_size): impl.
33685
33686         * class.c (mono_class_get_field): impl. memberref token
33687
33688 2002-01-16 Veronica De Santis <veron78@@interfree.it>
33689
33690         * icall.h : Added the internal calls mapping for CreateMutex_internal
33691                     and ReleaseMutex_internal.
33692         * threads.h : Added the prototype of mutexes internal calls.
33693         * threads.c : Added the implementations of mutexes internal calls.
33694
33695 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
33696
33697         * metaparse.h: removed unused file.
33698         * reflection.c, reflection.h: added stream_data_align () function 
33699         to align data in streams and keep stream aligned. Add support for
33700         exception support in method headers.
33701
33702 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
33703
33704         * unicode.c: make iconv_convert () return the number of bytess written
33705         in the output buffer.
33706
33707 2002-01-15  Dick Porter  <dick@ximian.com>
33708         * threads.c: Make the runtime's idea of infinite timeouts coincide
33709         with the class library's
33710
33711         Fix a particularly egregious bug in mono_thread_cleanup(). That
33712         code was so utterly bogus it must have been written on a Monday.
33713
33714 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
33715
33716         * reflection.h: add subtypes field to TypeBuilder.
33717         * reflection.c: encode constants for literal fields.
33718         Handle subtypes. Fix user string token (and add a zero byte)
33719         at the end.
33720         
33721 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
33722
33723         * class.c (mono_class_init): bug fix: assign slot numbers for
33724         abstract methods.
33725
33726 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33727
33728         * reflection.c: don't try to output a code RVA for abstract methods.
33729         Small fixes for method header format. Output parameter info to the
33730         ParamDef table. Save method overriding info to MethodImpl table.
33731         Fix property support. Allow typedef.extends to be a type in the
33732         building assembly.
33733         * verify.c: fix off-by-one error.
33734
33735 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
33736
33737         * class.c: fix mono_class_from_mono_type () for szarray types.
33738         Remove unused cache check in mono_class_from_type_spec().
33739         * icall.c: *type_from_name () functions handle simple arrays and byref.
33740         * reflection.c: handle byref and szarray types. Handle methods without
33741         body (gets P/Invoke compilation working). Handle types and fields in
33742         get_token ().
33743         * reflection.h: add rank to MonoTypeInfo.
33744
33745 2002-01-10  Dick Porter  <dick@ximian.com>
33746
33747         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
33748         internal calls
33749
33750 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
33751
33752         * icall.c: initialize class in type_from_handle ().
33753         Loop also in parent classes for get_method ().
33754         * reflection.c: properly encode class and valuetype types.
33755         Start on encoding TypeBuilder types. Handle fieldrefs.
33756         Use correct length when registering a user string.
33757         Handle ConstructorBuilder and MonoMethod in get_token ().
33758         Make mono_type_get_object () aware of cached types.
33759         * object.c: back out change to mono_string_new ().
33760
33761 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
33762         * object.c: mono_string_new should return a NULL when the string 
33763         passed in is NULL -- not try to deference it.
33764         
33765 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
33766
33767         * icall.c: hack to make IsSubType work for TypeBuilders.
33768         * reflection.c: emit constructors before methods.
33769         Retrieve param names in mono_param_get_objects().
33770
33771 2002/01/05  Nick Drochak  <ndrochak@gol.com>
33772
33773         * Makefile.am: fix list of headers and sources so automake 1.5
33774         doesn't complain. Removed \# at end of list.
33775
33776 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
33777
33778         * reflection.c: get token for a method ref. Set return type of
33779         constructor to void.
33780         * loader.c: debug message.
33781         * class.c: typo fix.
33782
33783 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
33784
33785         * icall.c: fix array init with rank > 1. FindMembers
33786         loops in parent class as well.
33787         * image.c: do not insert nested types in name cache.
33788         * reflection.c: warning fix.
33789         * reflection.h: add override method (for interface impl).
33790
33791 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
33792
33793         * metadata.c: fix customattr decoding.
33794
33795 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
33796
33797         * rawbuffer.cs: Added native Win32 implementation, avoids using
33798         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
33799
33800 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
33801
33802         * class.c: make the low-level routines handle the cache.
33803
33804 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
33805
33806         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
33807
33808 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
33809
33810         * class.c: fix mono_array_element_size() for objects.
33811         * class.h, class.c: add properties to MonoClass and load them
33812         at init time.
33813         * icall.c: check with isinst() when assigning a value to an array
33814         instead of requiring the classes to match exactly.
33815         Implemented icall for System.Type::GetType().
33816         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
33817         enums. Handle bindingflags when looking for methods and fields.
33818         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
33819         and mono_metadata_methods_from_property().
33820         * reflection.h, reflection.c: added structures for propreties,
33821         parameters and enums. Implemented mono_property_get_object() and
33822         mono_param_get_objects().
33823
33824 2001-12-18  Dick Porter  <dick@ximian.com>
33825
33826         * file-io.c: Use mono_string_to_utf16() instead of
33827         mono_string_chars()
33828
33829         * object.c: Added mono_string_to_utf16(), which copies the non
33830         NULL-terminated MonoString into a new double-null-terminated
33831         buffer.
33832
33833 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
33834
33835         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
33836
33837 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
33838
33839         * file-io.c: raise exceptions if handle is invalid.
33840
33841 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
33842
33843         * assembly.c: yet another check for mscorlib.
33844         * class.c, class.h: load nesting info for classes.
33845         * icall.c: many new functions to support the Reflection classes.
33846         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
33847         * reflection.h, reflection.c: mono_image_create_token(),
33848         mono_assembly_get_object(), mono_type_get_object(),
33849         mono_method_get_object(), mono_field_get_object(): methods to return
33850         objects that parallel the C representation of assemblies, types,
33851         methods, fields.
33852
33853 2001-12-11  Dick Porter  <dick@ximian.com>
33854
33855         * icall.c:
33856         * file-io.c: Internal calls for file IO.
33857
33858 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
33859
33860         * tabledefs.h: missing FileAttributes.
33861         * verify.h, verify.c: use is_valid_string () to simplify and check for
33862         valid strings more correctly. Fix warnings and speeling.
33863         Check more tables: Filed, File, ModuleRef, StandAloneSig.
33864         Check code: branches, maxstack, method calls.
33865
33866 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
33867
33868         * object.c (mono_object_allocate): removed static, so that the jit
33869         can allocate value types.
33870
33871         * icall.c (ves_icall_System_DateTime_GetNow): impl.
33872
33873 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
33874
33875         * class.c: init enum types right away and register the
33876         token->MonoClass map in mono_class_create_from_typedef ().
33877         * verify.h, verify.c: first cut of the verifier.
33878         * pedump.c: add --verify switch to verify metadata tables.
33879         * tabledefs.h: add some missing enums.
33880
33881 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
33882
33883         * class.c (mono_install_runtime_class_init): impl.
33884         (mono_class_init): renamed mono_class_metadata_init to
33885         mono_class_init, also removed the metadata_inited flag
33886
33887         * object.c (mono_object_isinst): use faster algorithm
33888
33889 2001-11-30  Radek Doulik  <rodo@ximian.com>
33890
33891         * mono-endian.h: reverted last change
33892         added function prototypes
33893
33894         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
33895         add mono-endian.c back
33896
33897         * mono-endian.c: returned back, as Paolo pointed out, it's needed
33898         for unaligned access, I've mistaked it with endianess. I am
33899         sorry.
33900         (mono_read16): fix reverted endianess
33901         (mono_read64): ditto
33902         (mono_read32): ditto
33903
33904 2001-11-30  Dick Porter  <dick@ximian.com>
33905
33906         * exception.c: Implement mono_exception_from_name()
33907
33908 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
33909
33910         * metadata.h, metadata.c: remove params_size and locals_size and their
33911         calculation from the metadata code: they are only usefult to the
33912         interp.
33913
33914 2001-11-29  Radek Doulik  <rodo@ximian.com>
33915
33916         * object.c (mono_ldstr): swap bytes here, it's probably not the
33917         best place, but works for me now, I'll redo it once I know mono
33918         better, also note that I add PROT_WRITE and don't reset back, also
33919         note that it's only affects big endians, so x86 should be OK
33920
33921         * mono-endian.h (read16): use just glib macros for both endians
33922
33923         * mono-endian.c: removed as glib macros are used in in
33924         mono-endian.h so we don't need to care about endianess for read
33925         macros as glib does that for us already
33926
33927 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
33928
33929         * class.h, class.h: take minimum alignment into consideration so
33930         that the fields of a class remain aligned also when in an array.
33931
33932 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
33933
33934         * loader.h, loader.c: add mono_method_get_param_names().
33935         * class.c: 0-init class fields.
33936
33937 2001-11-26  Dick Porter  <dick@ximian.com>
33938
33939         * icall.c:
33940         * threads-types.h:
33941         * threads.c: New file that handles System.Threading on all platforms
33942
33943         * object.c: 
33944         * object.h: Remove the synchronisation struct from MonoObject,
33945         replace it with a pointer that gets initialised on demand
33946
33947         * Makefile.am: Replace all the system-specific threading code with
33948         a single file that uses the new wrapper library
33949
33950 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
33951
33952         * class.c, class.h: add mono_install_trampoline() so that the runtime
33953         can register a function to create a trampoline: removes the ugly
33954         requirement that a runtime needed to export arch_create_jit_trampoline.
33955         * object.h, object.c: added mono_install_handler() so that the runtime
33956         can install an handler for exceptions generated in C code (with
33957         mono_raise_exception()). Added C struct for System.Delegate.
33958         * pedump.c: removed arch_create_jit_trampoline.
33959         * reflection.c: some cleanups to allow registering user strings and
33960         later getting a token for methodrefs and fieldrefs before the assembly
33961         is built.
33962         * row-indexes.h: updates and fixes from the new ECMA specs.
33963
33964 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
33965
33966         * class.h, class.c: add enum_basetype field to MonoClass.
33967         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
33968         to get index in the constant table reated to a field, param or
33969         property.
33970         * reflection.h, reflection.c: handle constructors. Set public-key and
33971         version number of the built assembly to 0.
33972         * row-indexes.h: update from new ECMA spec.
33973
33974 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
33975
33976         * class.h, class.c: add a max_interface_id to MonoClass.
33977         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
33978         since it's used to do that. Added mono_type_type_from_obj().
33979         Make GetType() return NULL instead of segfaulting if the type was not
33980         found. Handle simple arrays in assQualifiedName.
33981         * object.h: add a struct to represent an Exception.
33982         * reflection.c: output call convention in method signature.
33983         Add code to support P/Invoke methods and fixed offsets for fields.
33984
33985 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
33986
33987         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
33988         the value.
33989         * icall.c: use mono_array_addr instead of array->vector: fixes the
33990         reflection image writing.
33991         * reflection.c: init call convention byte to 0 in method signature.
33992         Encode the property signature. Don't output property-related methods
33993         twice. Really process the properties for a type (don't cast a field to
33994         a property, my mom always told me that).
33995         Fix 64 bit issues in pointer alignment in a different and more
33996         readable way.
33997
33998 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
33999
34000         * loader.h: Removed type class from MonoDefaults, added monotype
34001
34002         * loader.c: Loaded MonoType, removed loading of Type
34003
34004         * icall.c (my_mono_new_object): Now returns a System.MonoType,
34005         and fills in System.Type._impl with a RuntimeTypeHandle rather
34006         than the actual MonoClass *
34007
34008         (ves_icall_type_from_handle): change from type_class to
34009         monotype_class
34010
34011         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
34012         implemented
34013
34014         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
34015         implemented
34016
34017         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
34018
34019         (ves_icall_System_Reflection_Assembly_GetType): implemented
34020
34021         (ves_icall_System_MonoType_assQualifiedName): implemented
34022
34023         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
34024
34025 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
34026
34027         * assembly.c (mono_assembly_open): Implement a cache for the
34028         assemblies. 
34029
34030         (mono_assembly_close): only destroy the assembly when the last
34031         reference is gone.
34032         
34033 2001-11-09  Dick Porter  <dick@ximian.com>
34034
34035         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
34036
34037 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
34038
34039         * class.c (mono_class_metadata_init): bug fix: compute the right slot
34040
34041 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
34042
34043         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
34044         from Martin Weindel.
34045         * object.h: add mono_string_chars ().
34046
34047 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
34048
34049         * reflection.c (build_compressed_metadata): Eliminates warnings
34050         and uses 64-bit clean code.
34051
34052         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
34053         (mono_type_equal): Change signature to eliminate warnings.
34054
34055 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
34056
34057         * icall.c, loader.c: remove the internalcall array constructors.
34058         Changes to match the new MonoArray structure.
34059         * object.h, object.c: an array object doesn't allocate an extra
34060         vector. Add mono_array_new_full () to create jagged arrays easily.
34061
34062 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
34063
34064         * metadata.h, metadata.c: add mono_metadata_field_info () to
34065         retreive all the info about a field from vairous tables.
34066         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
34067         * class.h, class.c: augment MonoClassField with more info.
34068         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
34069         policy and load a field's RVA if needed.
34070
34071 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
34072
34073         * class.c (mono_class_metadata_init): create a trampoline for all
34074         virtual functions instead of actually compiling them.
34075
34076 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
34077
34078         * class.h, class.c: include name in MonoClassField.
34079         * class.c: fix fundamental type of System.Object and System.String.
34080         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
34081         tokens in ldtoken.
34082         * icall.c: remove internalcalls for the Reflection stuff that is now
34083         done in C# code.
34084         * loader.c: mono_field_from_memberref () implementation.
34085         * mono-endian.c: thinko (s/struct/union/g).
34086         * object.c, object.h: make the mono_string_* prototypes actually use
34087         MonoString instead of MonoObject.
34088         * reflection.c, reflection.h: updates for changes in the reflection
34089         code in corlib: we use C structures that map to the actual C# classes.
34090         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
34091         fat method header if needed and use the info from the ILGenerator for
34092         methods. Handle fields in types. Misc fixes.
34093
34094 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
34095
34096         * class.c (mono_class_metadata_init): bug fix: always allocate
34097         space for static class data
34098
34099 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
34100
34101         * class.c (mono_compute_relative_numbering): use relative
34102         numbering to support fast runtime type checks.
34103
34104 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
34105
34106         * class.c (mono_class_create_from_typeref): added debugging output
34107         to print class name when MonoDummy is returned instead of real class
34108
34109 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
34110
34111         * class.c (mono_class_metadata_init): interface offset table now
34112         contains pointers into the vtable - this is more efficient for the jit
34113
34114 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
34115
34116         * class.c (mono_class_metadata_init): use a temporary vtable (the
34117         old algorithm only worked for the interpreter, but not for the jit)
34118
34119 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
34120
34121         * loader.c (method_from_memberref): use mono_class_get to get the
34122         class of an array instead of using System.Array directly.
34123         (mono_get_method): also add MEMBERREF methods to the method cache
34124         which usefull for arrays.
34125
34126 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
34127
34128         * pedump.c (arch_compile_method): added to compute vtable entry
34129
34130         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
34131         number of interfaces.
34132         
34133         * class.h: merged MonoArrayClass into MonoClass
34134
34135         * class.c (mono_class_create_from_typedef): compute the vtable size and
34136         allocate space to include the vtable inside MonoClass
34137         (mono_class_metadata_init): initialize the vtable
34138
34139 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
34140
34141         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
34142         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
34143         * image.c: endian fixes by Laurent Rioux.
34144         * object.h, object.c: rename MonoStringObject to MonoString and
34145         MonoArrayObject to MonoArray. Change some function names to conform to
34146         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
34147         guint16* as first argument, so don't use char*.
34148         Provide macros to do the interesting things on arrays in a portable way.
34149         * threads-pthread.c: updates for the API changes and #include <sched.h>
34150         (required for sched_yield()).
34151         * icall.c: updates for the API changes above.
34152         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
34153         platforms that need them.
34154
34155 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34156
34157         * class.c: set the correct type for all the fundamental
34158         type when loading the class.
34159
34160 2001-10-05  Dick Porter  <dick@ximian.com>
34161
34162         * threads-pthread.c (pthread_mutex_timedlock): Simple
34163         compatibility version for C libraries that lack this call.
34164
34165 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34166
34167         * class.c: MonoTypes stored in MonoClass are stored as
34168         fundamental MonoTypes when the class represents a
34169         fundamental type (System.Int32, ...).
34170         The TypeHandle return by ldtoken is a MonoType*.
34171         * icall.c: ves_icall_get_data_chunk () write out all the
34172         PE/COFF stuff. Implement ves_icall_define_method (),
34173         ves_icall_set_method_body (), ves_icall_type_from_handle ().
34174         * image.c: properly skip unknown streams.
34175         * loader.h, loader.c: add type_class to mono_defaults.
34176         * metadata.c, metadata.h: export compute_size () as
34177         mono_metadata_compute_size () with a better interface.
34178         Typo and C&P fixes.
34179         * pedump.c: don't try to print the entry point RVA if there is no entry point.
34180         * reflection.c, reflection.h: many cleanups, fixes, output method
34181         signatures and headers, typedef and typeref info, compress the metadata
34182         tables, output all the heap streams, cli header etc.
34183         * row-indexes.h: typo fixes.
34184
34185 2001-10-04  Dick Porter  <dick@ximian.com>
34186
34187         * object.h: Add a synchronisation mutex struct to MonoObject
34188
34189         * object.c (mono_new_object): Initialise the object
34190         synchronisation mutexes
34191
34192         * icall.c: System.Threading.Monitor internal calls
34193         
34194         * threads-pthread.h:
34195         * threads-pthread.c: System.Threading.Monitor internal calls
34196
34197         * threads-types.h: New file, includes the system-specific thread
34198         structures
34199         
34200         * threads-pthread-types.h:
34201         * threads-pthread-types.c: New files, handle pthread-specific
34202         synchronisation types
34203
34204         * threads-dummy-types.h: 
34205         * threads-dummy-types.c: New files of dummy support for
34206         thread-specific types
34207
34208         * metadata.c:
34209         * image.c:
34210         * pedump.c: include mono-endian.h not endian.h
34211         
34212         * Makefile.am: More threads files.
34213         Name mono-endian.h not endian.h
34214
34215 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
34216
34217         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
34218         stuff and implement a few more bits.
34219         * icall.c: a field needs to be dereferenced twice. Do not use the same
34220         name for two variables in the same scope.
34221         * image.c, image.h: cleanups.
34222
34223 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
34224
34225         * class.c (mono_class_metadata_init): bug fix: compute the right size
34226
34227 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
34228
34229         * icall.c: implemented some of the Reflection internalcalls.
34230         * image.c, image.h: start writing out the PE/COFF image.
34231         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
34232         that does the reverse than decode_blob_size ().
34233         * object.c: use mono_metadata_encode_value (). Move here
34234         temporary implementation of mono_string_to_utf8 ().
34235         * rawbuffer.c: make malloc_map static.
34236
34237 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34238
34239         * metadata.c: fix type comparison for arrays.
34240         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
34241         Added a couple of new classes to monodefaults.
34242         * icall.c: added a couple of Reflection-related internalcalls.
34243         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
34244         Added a byval_arg MonoType to MonoClass.
34245
34246 2001-09-28  Dick Porter  <dick@ximian.com>
34247
34248         * icall.c:
34249         * threads-pthread.h: 
34250         * threads-pthread.c: Implemented internal calls for
34251         LocalDataStoreSlot operations.  Applied mutexes around all shared
34252         data.  Reworked the thread creation and Start() operations to
34253         avoid a race condition.
34254         
34255         * threads-dummy.h:
34256         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
34257
34258 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
34259
34260         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
34261
34262 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
34263
34264         * class.c, loader.c: warn and return NULL instead of erroring out.
34265         * icall.c: added System.AppDomain::getCurDomain().
34266         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
34267
34268 2001-09-25  Dick Porter  <dick@ximian.com>
34269
34270         * threads-pthread.h:
34271         * threads-pthread.c: Implemented timed thread joining and added
34272         System.Threading.Thread::Join_internal internal call
34273
34274         * icall.c: Added System.Threading.Thread::Join_internal internal call
34275
34276         * threads-dummy.h:
34277         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
34278
34279 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
34280
34281         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
34282         mono_string_intern () to implement the semantics of the ldstr opcode
34283         and the interning of System.Strings.
34284         * icall.c: provide hooks to make String::IsIntern and String::Intern
34285         internalcalls.
34286
34287 2001-09-23  Dick Porter  <dick@ximian.com>
34288
34289         * threads-dummy.c: 
34290         * threads-dummy.h: New files of dummy threading routines
34291
34292         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
34293         support code based on system specifics
34294
34295         Rename PTHREAD_LIBS to THREAD_LIBS
34296         
34297 2001-09-23  Dick Porter  <dick@ximian.com>
34298
34299         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
34300         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
34301         internal calls.
34302         (mono_thread_init): Set up a Thread object instance to return when
34303         the main thread calls Thread.CurrentThread
34304         (mono_thread_cleanup): Wait for all subthreads to exit
34305
34306         * icall.c: New internal calls for System.Threading.Thread::Sleep
34307         (including Schedule) and CurrentThread
34308
34309         * threads.h: New file, to insulate thread-specific stuff from the
34310         rest of the code
34311
34312 2001-09-21  Dick Porter  <dick@ximian.com>
34313
34314         * threads-pthread.h: 
34315         * threads-pthread.c: New file, for handling pthreads-style
34316         threading support.  Start() now starts a new thread and executes
34317         the ThreadStart delegate instance.
34318
34319         * icall.c: Added the internalcall for
34320         System.Threading.Thread::Start_internal
34321
34322         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
34323
34324 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
34325
34326         * loader.c: work around the different signatures for delegates
34327         constructors csc generates in compiled code vs the ones compiled in mscorlib.
34328
34329 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
34330
34331         * class.h, class.c: add mono_class_get_field_from_name ().
34332         * *: Fix C comments and other ANSI C issues.
34333
34334 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
34335
34336         * endian.h, assembly.c: fix some endianness issues.
34337
34338 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
34339
34340         * loader.h, load.c: add delegate_class to mono_defaults.
34341         Handle runtime provided methods in mono_get_method ().
34342
34343 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
34344
34345         * loader.c (mono_get_method): use pinvoke for internal call
34346
34347         * icall.c: use pinvoke for internal call
34348
34349         * loader.c (method_from_memberref): set the method name
34350
34351 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
34352
34353         * metadata.c: help the compiler generate better code for
34354         mono_class_from_mono_type ().
34355
34356 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
34357
34358         * class.c (mono_class_metadata_init): delayed computing of the
34359         class size to mono_class_metadata_init ()
34360
34361 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
34362
34363         * class.c, class.h: add an interfaces member to MonoClass.
34364         * image.c, image.h: add assembly_name field to MonoImage
34365         from the assembly table.
34366         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
34367
34368 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
34369
34370         * class.c: Handle Array in mono_class_from_mono_type ().
34371         * metadata.c, pedump.c: some endian fixes.
34372
34373 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
34374
34375         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
34376         * metadata.c: fix small problem introduced with the latest commit.
34377
34378 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
34379
34380         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
34381         We don't need a MonoMetadata pointer anymore to compare signatures in
34382         mono_metadata_signature_equal (), update callers.
34383         Reduced memory usage an number of allocations for MonoMethodHeader and
34384         MonoMethodSignature.
34385
34386 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
34387
34388         * metadata.c: added compare for szarray.
34389
34390 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
34391
34392         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
34393         and add a couple more types to it and mono_defaults. Give an hint on
34394         classes that need implementing in our corlib and are referenced
34395         in mscorlib.
34396
34397 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
34398
34399         * class.h, class.c: keep track if a class is also an Enum.
34400         * loader.c: Implement a couple more types for use in libffi
34401         marshalling. Gives better diagnostics when failing to dlopen
34402         a library. Set method->klass for P/Invoke methods, too.
34403
34404 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
34405
34406         * class.c, class.h: add a MonoType this_arg to MonoClass that
34407         represents a pointer to an object of the class' type that
34408         can be used by the interpreter and later the type cache.
34409         Add best guess alignment info for valuetype objects.
34410
34411 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
34412
34413         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
34414         into MonoType: one less level of indirection and allocation and
34415         simplifies quite a bit of code. Added cache for MonoTypes that are
34416         used frequently, so that we don't need to allocate them all the time.
34417
34418 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
34419
34420         * class.c (mono_class_create_from_typedef): System.Enum is also a
34421         value type, although it does not derive from System.ValueType
34422         (maybe a bug in the ms compiler?)
34423
34424         * metadata.c (mono_type_size): return the right size for value types
34425
34426         * loader.c (mono_get_method): only initialize method header if not abstract
34427
34428         * class.c (mono_class_from_mono_type): use mono_default values. 
34429
34430 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
34431
34432         * *: use MonoClass pointers instead of <type_tokens>
34433         
34434         * class.h: new flag: metadata_inited.
34435
34436         * class.c (mono_class_metadata_init): impl.
34437         (mono_class_instance_size): impl.
34438         (mono_class_data_size): impl.
34439
34440 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
34441
34442         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
34443         MonoClass now has the name and name_space fields. 
34444         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
34445         mono_get_method () takes and optional MonoClass as argument.
34446         Removed mono_typedef_from_name() and added mono_class_token_from_name()
34447         instead that takes advantage of a map from class names to typedef
34448         tokens in MonoImage.
34449
34450 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
34451
34452         * metadata.c: zero is not a valid alignment boundary.
34453         Merge MONO_TYPE_VOID in default decoding code.
34454
34455 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
34456
34457         * image.h: merged MonoMetadata into MonoImage
34458
34459         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
34460         identify the type of elements.
34461
34462 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
34463
34464         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
34465         * cil-coff.h: split MonoMSDOSHeader and add size info.
34466         * image.c: add some consistency checks.
34467         * metadata.c: fix row size computation: one programmer
34468         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
34469         add explanation for the locator routine.
34470         Fix decoding of size in method header.
34471         
34472 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
34473
34474         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
34475         (g_concat_dir_and_file): Bring g_concat_dir_and_file
34476         function from gnome-libs.  This uses the right path separator
34477         based on the OS, and also works around a bug in some systems where
34478         a double slash is not allowed. 
34479         (default_assembly_name_resolver): Use g_concat_dir_and_file
34480         (mono_assembly_open): ditto.
34481
34482 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
34483
34484         * metadata.c (mono_metadata_signature_equal): impl.
34485
34486         * *: void is now a realy MonoType (instead of using NULL)
34487         
34488         * metadata.c (do_mono_metadata_parse_type): use
34489         mono_metadata_parse_type to parse void value.
34490
34491 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
34492
34493         * metadata.c, metadata.h: in the signature and method header store
34494         only the space required for holding the loca vars and incoming arguments.
34495
34496 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
34497
34498         * metadata.c (do_mono_metadata_parse_type): treat void like any
34499         other type (instead of assigning NULL);
34500
34501 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
34502
34503         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
34504
34505 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
34506
34507         * image.c (do_mono_image_open): added a cache for arrays.
34508
34509 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
34510
34511         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
34512         decode a single column from a row in a metadata table and changes
34513         to take advantage of it in the typedef locator (gives a nice speed up).
34514         Store offset info for function params.
34515
34516 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
34517
34518         * image.h (MONO_IMAGE_IS_CORLIB): removed 
34519
34520 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
34521
34522         * assembly.c: how could mono_assembly_close () had ever worked?
34523         * metadata.c, metadata.h: provide offset info for local vars.
34524         Implement mono_type_size () to take care of alignment as well
34525         as size (it was mono_field_type_size in cli/class.c before).
34526
34527 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
34528
34529         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
34530
34531         * assembly.h (CORLIB_NAME): set to corlib.dll
34532
34533         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
34534
34535 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
34536
34537         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
34538         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
34539         tokentype.h: massive namespace cleanup.
34540
34541 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
34542
34543         * metadata.h, metadata.c: decode exception clauses when parsing method header.
34544
34545 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
34546
34547         * metadata.c (mono_metadata_free_type): added check for type !=
34548         NULL (void) before calling mono_metadata_free_type()
34549
34550 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
34551
34552         * metadata.h, row_indexes.h: added header with enumerations to use
34553         to index in the columns from tables in metadata and to decode coded
34554         tokens: we should start using this instead of embedding magic numbers
34555         all over the code.
34556
34557 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
34558
34559         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
34560         Move metadata_t info from cli_image_info_t to MonoImage, where
34561         it's easily accessible. Changed all the uses accordingly.
34562         Added the method and class caches to MonoImage.
34563         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
34564         and mono_metadata_decode_value () signature to be more consistent
34565         with the other parse functions (and simplify code). Taken advantage
34566         of zero-length array allocation with GCC. Removed reduntant (and
34567         wrong) MonoFieldType struct and use MonoParam instead. Changed
34568         mono_metadata_parse_field_type () to use common code for parsing.
34569         Added mono_metadata_typedef_from_field () and
34570         mono_metadata_typedef_from_method () to lookup a typedef index from a
34571         field or method token.
34572         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
34573
34574 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
34575
34576         * metadata.c (mono_metadata_parse_field_type): Implement. 
34577         (do_mono_metadata_parse_type): Split engine from
34578         mono_metadata_parse_type, so that we can create smaller structures
34579         for things that just have one pointer to the MonoType (look at
34580         the MonoFieldType)
34581
34582 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
34583
34584         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
34585         as Jan Gray found out, it is incorrect. 
34586
34587 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
34588
34589         * assembly.c: Implement asssembly loading.  This loads an image
34590         and loads all the referenced assemblies.  Come to think of it, we
34591         could always do lazy loading of the assemblies. 
34592
34593         * image.c (mono_image_open): Keep loaded images in a hashtable.
34594
34595         * image.h (MonoImage): Add reference count.
34596
34597 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
34598
34599         * assembly.c (mono_assembly_open): Keep track of the file name in
34600         case the assembly has no ASSEMBLY table.
34601
34602         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
34603         from get.c here.
34604
34605 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
34606
34607         * metadata.c, metadata.h: decode local vars in method header
34608         parse function. Change callers accordingly.
34609
34610 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
34611
34612         * metadata.h, cil-coff.h: protect against multiple inclusion.
34613         Added some new structures to hold information decoded from metadata:
34614         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
34615         and relevant decoding/free functions.
34616         * metadata.c: implement decoding functions. Add warning for out of bounds
34617         index in mono_metadata_locate(). Implement mono_get_method () to retreive
34618         all the info about a method signature and invocation. Remove check on
34619         uninitialized local var in parse_mh() and fix memory leak.
34620
34621 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
34622
34623         * metadata.h: More macros.
34624
34625         * tokentype.h: New file.
34626
34627 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
34628
34629         * assembly.c: added a consistency check and initialize
34630         some structures with g_new0().
34631         * metadata.c: fixed a couple more bugs in table size computation
34632         and add other checks for out-of bound access to metadata.
34633
34634 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
34635
34636         * metatada.c: fix bugs computing table sizes. Spew a
34637         warning when index in string heap is out of bounds.
34638
34639 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
34640
34641         * metadata.h: Add a couple of macros to manipulate tokens. 
34642
34643 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
34644
34645         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
34646         cli_section_tables).
34647
34648 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
34649
34650         * metadata.c (mono_metadata_user_string): New function, provides
34651         access to the UserString heap. 
34652
34653 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
34654
34655         * metadata.c: Add inline documentation.
34656
34657 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
34658
34659         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
34660         files. 
34661
34662 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
34663
34664         * typeattr.h: New file, TypeAttribute flags. 
34665
34666 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
34667
34668         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
34669         mono_assembly_ensure_section): Section loading code.
34670         (load_section_tables): Load the sections.
34671
34672         * mono/metadata/metadata.c (mono_metadata_locate_token,
34673         mono_metadata_locate): Functions to locate the information
34674         definition given a token or a table and an index.
34675         (mono_metadata_compute_table_bases): New.
34676         (compute_size): New function to compute the sizes of the various
34677         tables.
34678
34679         * mono/metadata/metadata.h: Finish listing the different index
34680         types. 
34681
34682         * mono/metadata/pedump.c: Improve to dump new information.
34683
34684 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
34685
34686         * mono/metadata/metadata.c: Entered all the tables matching
34687         Beta2. 
34688
34689         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
34690
34691
34692
34693